diff --git a/walletnode/api/design/cascade.go b/walletnode/api/design/cascade.go index 9d47975e8..5f558e224 100644 --- a/walletnode/api/design/cascade.go +++ b/walletnode/api/design/cascade.go @@ -145,6 +145,44 @@ var _ = Service("cascade", func() { }) }) + Method("downloadV2", func() { + Description("Starts downloading cascade Artifact.") + Meta("swagger:summary", "Downloads cascade artifact") + + Security(APIKeyAuth) + + Payload(DownloadPayload) + Result(FileDownloadV2Result) + + HTTP(func() { + GET("/v2/download") + Param("txid") + Param("pid") + + Response("UnAuthorized", StatusUnauthorized) + Response("NotFound", StatusNotFound) + Response("InternalServerError", StatusInternalServerError) + Response(StatusOK) + }) + }) + + Method("getDownloadTaskState", func() { + Description("Gets the state of download task") + Meta("swagger:summary", "Get history of states as a json string with a list of state objects.") + + Payload(func() { + Extend(DownloadTaskStatePayload) + }) + Result(ArrayOf(TaskHistory)) + + HTTP(func() { + GET("/downloads/{file_id}/status") + Response("NotFound", StatusNotFound) + Response("InternalServerError", StatusInternalServerError) + Response(StatusOK) + }) + }) + Method("registrationDetails", func() { Description("Get the file registration details") Meta("swagger:summary", "Get the file registration details") diff --git a/walletnode/api/design/common.go b/walletnode/api/design/common.go index 84c3db5c3..7bab7cdfa 100644 --- a/walletnode/api/design/common.go +++ b/walletnode/api/design/common.go @@ -68,6 +68,17 @@ var RegisterTaskPayload = Type("RegisterTaskPayload", func() { Required("taskId") }) +// DownloadTaskStatePayload represents a payload for returning task. +var DownloadTaskStatePayload = Type("DownloadTaskStatePayload", func() { + Attribute("file_id", String, "File ID returned by Download V2 API", func() { + TypeName("file_id") + MinLength(8) + MaxLength(8) + Example("n6Qn6TFM") + }) + Required("file_id") +}) + // RegisterTaskState is task streaming of the NFT registration. var RegisterTaskState = Type("TaskState", func() { Attribute("date", String, func() { @@ -224,6 +235,15 @@ var FileDownloadResult = Type("FileDownloadResult", func() { Required("file_id") }) +// FileDownloadV2Result is Asset download result. +var FileDownloadV2Result = Type("FileDownloadV2Result", func() { + Description("Asset download response V2 - returns task_id for the download task") + Attribute("file_id", String, func() { + Description("Task ID for the download task - caller can check the status of the download task using this task_id") + }) + Required("file_id") +}) + // DownloadResult is Asset download result. var DownloadResult = Type("DownloadResult", func() { Description("Asset download response") diff --git a/walletnode/api/gen/cascade/client.go b/walletnode/api/gen/cascade/client.go index 4ccafe2e2..338868a7e 100644 --- a/walletnode/api/gen/cascade/client.go +++ b/walletnode/api/gen/cascade/client.go @@ -15,27 +15,31 @@ import ( // Client is the "cascade" service client. type Client struct { - UploadAssetEndpoint goa.Endpoint - UploadAssetV2Endpoint goa.Endpoint - StartProcessingEndpoint goa.Endpoint - RegisterTaskStateEndpoint goa.Endpoint - GetTaskHistoryEndpoint goa.Endpoint - DownloadEndpoint goa.Endpoint - RegistrationDetailsEndpoint goa.Endpoint - RestoreEndpoint goa.Endpoint + UploadAssetEndpoint goa.Endpoint + UploadAssetV2Endpoint goa.Endpoint + StartProcessingEndpoint goa.Endpoint + RegisterTaskStateEndpoint goa.Endpoint + GetTaskHistoryEndpoint goa.Endpoint + DownloadEndpoint goa.Endpoint + DownloadV2Endpoint goa.Endpoint + GetDownloadTaskStateEndpoint goa.Endpoint + RegistrationDetailsEndpoint goa.Endpoint + RestoreEndpoint goa.Endpoint } // NewClient initializes a "cascade" service client given the endpoints. -func NewClient(uploadAsset, uploadAssetV2, startProcessing, registerTaskState, getTaskHistory, download, registrationDetails, restore goa.Endpoint) *Client { +func NewClient(uploadAsset, uploadAssetV2, startProcessing, registerTaskState, getTaskHistory, download, downloadV2, getDownloadTaskState, registrationDetails, restore goa.Endpoint) *Client { return &Client{ - UploadAssetEndpoint: uploadAsset, - UploadAssetV2Endpoint: uploadAssetV2, - StartProcessingEndpoint: startProcessing, - RegisterTaskStateEndpoint: registerTaskState, - GetTaskHistoryEndpoint: getTaskHistory, - DownloadEndpoint: download, - RegistrationDetailsEndpoint: registrationDetails, - RestoreEndpoint: restore, + UploadAssetEndpoint: uploadAsset, + UploadAssetV2Endpoint: uploadAssetV2, + StartProcessingEndpoint: startProcessing, + RegisterTaskStateEndpoint: registerTaskState, + GetTaskHistoryEndpoint: getTaskHistory, + DownloadEndpoint: download, + DownloadV2Endpoint: downloadV2, + GetDownloadTaskStateEndpoint: getDownloadTaskState, + RegistrationDetailsEndpoint: registrationDetails, + RestoreEndpoint: restore, } } @@ -137,6 +141,39 @@ func (c *Client) Download(ctx context.Context, p *DownloadPayload) (res *FileDow return ires.(*FileDownloadResult), nil } +// DownloadV2 calls the "downloadV2" endpoint of the "cascade" service. +// DownloadV2 may return the following errors: +// - "UnAuthorized" (type *goa.ServiceError) +// - "BadRequest" (type *goa.ServiceError) +// - "NotFound" (type *goa.ServiceError) +// - "InternalServerError" (type *goa.ServiceError) +// - error: internal error +func (c *Client) DownloadV2(ctx context.Context, p *DownloadPayload) (res *FileDownloadV2Result, err error) { + var ires any + ires, err = c.DownloadV2Endpoint(ctx, p) + if err != nil { + return + } + return ires.(*FileDownloadV2Result), nil +} + +// GetDownloadTaskState calls the "getDownloadTaskState" endpoint of the +// "cascade" service. +// GetDownloadTaskState may return the following errors: +// - "UnAuthorized" (type *goa.ServiceError) +// - "BadRequest" (type *goa.ServiceError) +// - "NotFound" (type *goa.ServiceError) +// - "InternalServerError" (type *goa.ServiceError) +// - error: internal error +func (c *Client) GetDownloadTaskState(ctx context.Context, p *GetDownloadTaskStatePayload) (res []*TaskHistory, err error) { + var ires any + ires, err = c.GetDownloadTaskStateEndpoint(ctx, p) + if err != nil { + return + } + return ires.([]*TaskHistory), nil +} + // RegistrationDetails calls the "registrationDetails" endpoint of the // "cascade" service. // RegistrationDetails may return the following errors: diff --git a/walletnode/api/gen/cascade/endpoints.go b/walletnode/api/gen/cascade/endpoints.go index c796f4c0a..47757992f 100644 --- a/walletnode/api/gen/cascade/endpoints.go +++ b/walletnode/api/gen/cascade/endpoints.go @@ -16,14 +16,16 @@ import ( // Endpoints wraps the "cascade" service endpoints. type Endpoints struct { - UploadAsset goa.Endpoint - UploadAssetV2 goa.Endpoint - StartProcessing goa.Endpoint - RegisterTaskState goa.Endpoint - GetTaskHistory goa.Endpoint - Download goa.Endpoint - RegistrationDetails goa.Endpoint - Restore goa.Endpoint + UploadAsset goa.Endpoint + UploadAssetV2 goa.Endpoint + StartProcessing goa.Endpoint + RegisterTaskState goa.Endpoint + GetTaskHistory goa.Endpoint + Download goa.Endpoint + DownloadV2 goa.Endpoint + GetDownloadTaskState goa.Endpoint + RegistrationDetails goa.Endpoint + Restore goa.Endpoint } // RegisterTaskStateEndpointInput holds both the payload and the server stream @@ -41,14 +43,16 @@ func NewEndpoints(s Service) *Endpoints { // Casting service to Auther interface a := s.(Auther) return &Endpoints{ - UploadAsset: NewUploadAssetEndpoint(s), - UploadAssetV2: NewUploadAssetV2Endpoint(s), - StartProcessing: NewStartProcessingEndpoint(s, a.APIKeyAuth), - RegisterTaskState: NewRegisterTaskStateEndpoint(s), - GetTaskHistory: NewGetTaskHistoryEndpoint(s), - Download: NewDownloadEndpoint(s, a.APIKeyAuth), - RegistrationDetails: NewRegistrationDetailsEndpoint(s), - Restore: NewRestoreEndpoint(s, a.APIKeyAuth), + UploadAsset: NewUploadAssetEndpoint(s), + UploadAssetV2: NewUploadAssetV2Endpoint(s), + StartProcessing: NewStartProcessingEndpoint(s, a.APIKeyAuth), + RegisterTaskState: NewRegisterTaskStateEndpoint(s), + GetTaskHistory: NewGetTaskHistoryEndpoint(s), + Download: NewDownloadEndpoint(s, a.APIKeyAuth), + DownloadV2: NewDownloadV2Endpoint(s, a.APIKeyAuth), + GetDownloadTaskState: NewGetDownloadTaskStateEndpoint(s), + RegistrationDetails: NewRegistrationDetailsEndpoint(s), + Restore: NewRestoreEndpoint(s, a.APIKeyAuth), } } @@ -60,6 +64,8 @@ func (e *Endpoints) Use(m func(goa.Endpoint) goa.Endpoint) { e.RegisterTaskState = m(e.RegisterTaskState) e.GetTaskHistory = m(e.GetTaskHistory) e.Download = m(e.Download) + e.DownloadV2 = m(e.DownloadV2) + e.GetDownloadTaskState = m(e.GetDownloadTaskState) e.RegistrationDetails = m(e.RegistrationDetails) e.Restore = m(e.Restore) } @@ -153,6 +159,34 @@ func NewDownloadEndpoint(s Service, authAPIKeyFn security.AuthAPIKeyFunc) goa.En } } +// NewDownloadV2Endpoint returns an endpoint function that calls the method +// "downloadV2" of service "cascade". +func NewDownloadV2Endpoint(s Service, authAPIKeyFn security.AuthAPIKeyFunc) goa.Endpoint { + return func(ctx context.Context, req any) (any, error) { + p := req.(*DownloadPayload) + var err error + sc := security.APIKeyScheme{ + Name: "api_key", + Scopes: []string{}, + RequiredScopes: []string{}, + } + ctx, err = authAPIKeyFn(ctx, p.Key, &sc) + if err != nil { + return nil, err + } + return s.DownloadV2(ctx, p) + } +} + +// NewGetDownloadTaskStateEndpoint returns an endpoint function that calls the +// method "getDownloadTaskState" of service "cascade". +func NewGetDownloadTaskStateEndpoint(s Service) goa.Endpoint { + return func(ctx context.Context, req any) (any, error) { + p := req.(*GetDownloadTaskStatePayload) + return s.GetDownloadTaskState(ctx, p) + } +} + // NewRegistrationDetailsEndpoint returns an endpoint function that calls the // method "registrationDetails" of service "cascade". func NewRegistrationDetailsEndpoint(s Service) goa.Endpoint { diff --git a/walletnode/api/gen/cascade/service.go b/walletnode/api/gen/cascade/service.go index 25b6d9d1f..7cbe9de81 100644 --- a/walletnode/api/gen/cascade/service.go +++ b/walletnode/api/gen/cascade/service.go @@ -30,6 +30,10 @@ type Service interface { GetTaskHistory(context.Context, *GetTaskHistoryPayload) (res []*TaskHistory, err error) // Download cascade Artifact. Download(context.Context, *DownloadPayload) (res *FileDownloadResult, err error) + // Starts downloading cascade Artifact. + DownloadV2(context.Context, *DownloadPayload) (res *FileDownloadV2Result, err error) + // Gets the state of download task + GetDownloadTaskState(context.Context, *GetDownloadTaskStatePayload) (res []*TaskHistory, err error) // Get the file registration details RegistrationDetails(context.Context, *RegistrationDetailsPayload) (res *Registration, err error) // Restore the files cascade registration @@ -56,7 +60,7 @@ const ServiceName = "cascade" // MethodNames lists the service method names as defined in the design. These // are the same values that are set in the endpoint request contexts under the // MethodKey key. -var MethodNames = [8]string{"uploadAsset", "uploadAssetV2", "startProcessing", "registerTaskState", "getTaskHistory", "download", "registrationDetails", "restore"} +var MethodNames = [10]string{"uploadAsset", "uploadAssetV2", "startProcessing", "registerTaskState", "getTaskHistory", "download", "downloadV2", "getDownloadTaskState", "registrationDetails", "restore"} // RegisterTaskStateServerStream is the interface a "registerTaskState" // endpoint server stream must satisfy. @@ -175,6 +179,21 @@ type FileDownloadResult struct { FileID string } +// FileDownloadV2Result is the result type of the cascade service downloadV2 +// method. +type FileDownloadV2Result struct { + // Task ID for the download task - caller can check the status of the download + // task using this task_id + FileID string +} + +// GetDownloadTaskStatePayload is the payload type of the cascade service +// getDownloadTaskState method. +type GetDownloadTaskStatePayload struct { + // File ID returned by Download V2 API + FileID string +} + // GetTaskHistoryPayload is the payload type of the cascade service // getTaskHistory method. type GetTaskHistoryPayload struct { diff --git a/walletnode/api/gen/http/cascade/client/cli.go b/walletnode/api/gen/http/cascade/client/cli.go index 31dc5ca8b..f407eb253 100644 --- a/walletnode/api/gen/http/cascade/client/cli.go +++ b/walletnode/api/gen/http/cascade/client/cli.go @@ -244,6 +244,72 @@ func BuildDownloadPayload(cascadeDownloadTxid string, cascadeDownloadPid string, return v, nil } +// BuildDownloadV2Payload builds the payload for the cascade downloadV2 +// endpoint from CLI flags. +func BuildDownloadV2Payload(cascadeDownloadV2Txid string, cascadeDownloadV2Pid string, cascadeDownloadV2Key string) (*cascade.DownloadPayload, error) { + var err error + var txid string + { + txid = cascadeDownloadV2Txid + if utf8.RuneCountInString(txid) < 64 { + err = goa.MergeErrors(err, goa.InvalidLengthError("txid", txid, utf8.RuneCountInString(txid), 64, true)) + } + if utf8.RuneCountInString(txid) > 64 { + err = goa.MergeErrors(err, goa.InvalidLengthError("txid", txid, utf8.RuneCountInString(txid), 64, false)) + } + if err != nil { + return nil, err + } + } + var pid string + { + pid = cascadeDownloadV2Pid + err = goa.MergeErrors(err, goa.ValidatePattern("pid", pid, "^[a-zA-Z0-9]+$")) + if utf8.RuneCountInString(pid) < 86 { + err = goa.MergeErrors(err, goa.InvalidLengthError("pid", pid, utf8.RuneCountInString(pid), 86, true)) + } + if utf8.RuneCountInString(pid) > 86 { + err = goa.MergeErrors(err, goa.InvalidLengthError("pid", pid, utf8.RuneCountInString(pid), 86, false)) + } + if err != nil { + return nil, err + } + } + var key string + { + key = cascadeDownloadV2Key + } + v := &cascade.DownloadPayload{} + v.Txid = txid + v.Pid = pid + v.Key = key + + return v, nil +} + +// BuildGetDownloadTaskStatePayload builds the payload for the cascade +// getDownloadTaskState endpoint from CLI flags. +func BuildGetDownloadTaskStatePayload(cascadeGetDownloadTaskStateFileID string) (*cascade.GetDownloadTaskStatePayload, error) { + var err error + var fileID string + { + fileID = cascadeGetDownloadTaskStateFileID + if utf8.RuneCountInString(fileID) < 8 { + err = goa.MergeErrors(err, goa.InvalidLengthError("file_id", fileID, utf8.RuneCountInString(fileID), 8, true)) + } + if utf8.RuneCountInString(fileID) > 8 { + err = goa.MergeErrors(err, goa.InvalidLengthError("file_id", fileID, utf8.RuneCountInString(fileID), 8, false)) + } + if err != nil { + return nil, err + } + } + v := &cascade.GetDownloadTaskStatePayload{} + v.FileID = fileID + + return v, nil +} + // BuildRegistrationDetailsPayload builds the payload for the cascade // registrationDetails endpoint from CLI flags. func BuildRegistrationDetailsPayload(cascadeRegistrationDetailsBaseFileID string) (*cascade.RegistrationDetailsPayload, error) { diff --git a/walletnode/api/gen/http/cascade/client/client.go b/walletnode/api/gen/http/cascade/client/client.go index e5a3b54e0..1dd0e1ad8 100644 --- a/walletnode/api/gen/http/cascade/client/client.go +++ b/walletnode/api/gen/http/cascade/client/client.go @@ -45,6 +45,14 @@ type Client struct { // endpoint. DownloadDoer goahttp.Doer + // DownloadV2 Doer is the HTTP client used to make requests to the downloadV2 + // endpoint. + DownloadV2Doer goahttp.Doer + + // GetDownloadTaskState Doer is the HTTP client used to make requests to the + // getDownloadTaskState endpoint. + GetDownloadTaskStateDoer goahttp.Doer + // RegistrationDetails Doer is the HTTP client used to make requests to the // registrationDetails endpoint. RegistrationDetailsDoer goahttp.Doer @@ -91,22 +99,24 @@ func NewClient( cfn = &ConnConfigurer{} } return &Client{ - UploadAssetDoer: doer, - UploadAssetV2Doer: doer, - StartProcessingDoer: doer, - RegisterTaskStateDoer: doer, - GetTaskHistoryDoer: doer, - DownloadDoer: doer, - RegistrationDetailsDoer: doer, - RestoreDoer: doer, - CORSDoer: doer, - RestoreResponseBody: restoreBody, - scheme: scheme, - host: host, - decoder: dec, - encoder: enc, - dialer: dialer, - configurer: cfn, + UploadAssetDoer: doer, + UploadAssetV2Doer: doer, + StartProcessingDoer: doer, + RegisterTaskStateDoer: doer, + GetTaskHistoryDoer: doer, + DownloadDoer: doer, + DownloadV2Doer: doer, + GetDownloadTaskStateDoer: doer, + RegistrationDetailsDoer: doer, + RestoreDoer: doer, + CORSDoer: doer, + RestoreResponseBody: restoreBody, + scheme: scheme, + host: host, + decoder: dec, + encoder: enc, + dialer: dialer, + configurer: cfn, } } @@ -262,6 +272,49 @@ func (c *Client) Download() goa.Endpoint { } } +// DownloadV2 returns an endpoint that makes HTTP requests to the cascade +// service downloadV2 server. +func (c *Client) DownloadV2() goa.Endpoint { + var ( + encodeRequest = EncodeDownloadV2Request(c.encoder) + decodeResponse = DecodeDownloadV2Response(c.decoder, c.RestoreResponseBody) + ) + return func(ctx context.Context, v any) (any, error) { + req, err := c.BuildDownloadV2Request(ctx, v) + if err != nil { + return nil, err + } + err = encodeRequest(req, v) + if err != nil { + return nil, err + } + resp, err := c.DownloadV2Doer.Do(req) + if err != nil { + return nil, goahttp.ErrRequestError("cascade", "downloadV2", err) + } + return decodeResponse(resp) + } +} + +// GetDownloadTaskState returns an endpoint that makes HTTP requests to the +// cascade service getDownloadTaskState server. +func (c *Client) GetDownloadTaskState() goa.Endpoint { + var ( + decodeResponse = DecodeGetDownloadTaskStateResponse(c.decoder, c.RestoreResponseBody) + ) + return func(ctx context.Context, v any) (any, error) { + req, err := c.BuildGetDownloadTaskStateRequest(ctx, v) + if err != nil { + return nil, err + } + resp, err := c.GetDownloadTaskStateDoer.Do(req) + if err != nil { + return nil, goahttp.ErrRequestError("cascade", "getDownloadTaskState", err) + } + return decodeResponse(resp) + } +} + // RegistrationDetails returns an endpoint that makes HTTP requests to the // cascade service registrationDetails server. func (c *Client) RegistrationDetails() goa.Endpoint { diff --git a/walletnode/api/gen/http/cascade/client/encode_decode.go b/walletnode/api/gen/http/cascade/client/encode_decode.go index efa5bbd29..009fbe9f8 100644 --- a/walletnode/api/gen/http/cascade/client/encode_decode.go +++ b/walletnode/api/gen/http/cascade/client/encode_decode.go @@ -728,6 +728,232 @@ func DecodeDownloadResponse(decoder func(*http.Response) goahttp.Decoder, restor } } +// BuildDownloadV2Request instantiates a HTTP request object with method and +// path set to call the "cascade" service "downloadV2" endpoint +func (c *Client) BuildDownloadV2Request(ctx context.Context, v any) (*http.Request, error) { + u := &url.URL{Scheme: c.scheme, Host: c.host, Path: DownloadV2CascadePath()} + req, err := http.NewRequest("GET", u.String(), nil) + if err != nil { + return nil, goahttp.ErrInvalidURL("cascade", "downloadV2", u.String(), err) + } + if ctx != nil { + req = req.WithContext(ctx) + } + + return req, nil +} + +// EncodeDownloadV2Request returns an encoder for requests sent to the cascade +// downloadV2 server. +func EncodeDownloadV2Request(encoder func(*http.Request) goahttp.Encoder) func(*http.Request, any) error { + return func(req *http.Request, v any) error { + p, ok := v.(*cascade.DownloadPayload) + if !ok { + return goahttp.ErrInvalidType("cascade", "downloadV2", "*cascade.DownloadPayload", v) + } + { + head := p.Key + req.Header.Set("Authorization", head) + } + values := req.URL.Query() + values.Add("txid", p.Txid) + values.Add("pid", p.Pid) + req.URL.RawQuery = values.Encode() + return nil + } +} + +// DecodeDownloadV2Response returns a decoder for responses returned by the +// cascade downloadV2 endpoint. restoreBody controls whether the response body +// should be restored after having been read. +// DecodeDownloadV2Response may return the following errors: +// - "UnAuthorized" (type *goa.ServiceError): http.StatusUnauthorized +// - "NotFound" (type *goa.ServiceError): http.StatusNotFound +// - "InternalServerError" (type *goa.ServiceError): http.StatusInternalServerError +// - error: internal error +func DecodeDownloadV2Response(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (any, error) { + return func(resp *http.Response) (any, error) { + if restoreBody { + b, err := io.ReadAll(resp.Body) + if err != nil { + return nil, err + } + resp.Body = io.NopCloser(bytes.NewBuffer(b)) + defer func() { + resp.Body = io.NopCloser(bytes.NewBuffer(b)) + }() + } else { + defer resp.Body.Close() + } + switch resp.StatusCode { + case http.StatusOK: + var ( + body DownloadV2ResponseBody + err error + ) + err = decoder(resp).Decode(&body) + if err != nil { + return nil, goahttp.ErrDecodingError("cascade", "downloadV2", err) + } + err = ValidateDownloadV2ResponseBody(&body) + if err != nil { + return nil, goahttp.ErrValidationError("cascade", "downloadV2", err) + } + res := NewDownloadV2FileDownloadV2ResultOK(&body) + return res, nil + case http.StatusUnauthorized: + var ( + body DownloadV2UnAuthorizedResponseBody + err error + ) + err = decoder(resp).Decode(&body) + if err != nil { + return nil, goahttp.ErrDecodingError("cascade", "downloadV2", err) + } + err = ValidateDownloadV2UnAuthorizedResponseBody(&body) + if err != nil { + return nil, goahttp.ErrValidationError("cascade", "downloadV2", err) + } + return nil, NewDownloadV2UnAuthorized(&body) + case http.StatusNotFound: + var ( + body DownloadV2NotFoundResponseBody + err error + ) + err = decoder(resp).Decode(&body) + if err != nil { + return nil, goahttp.ErrDecodingError("cascade", "downloadV2", err) + } + err = ValidateDownloadV2NotFoundResponseBody(&body) + if err != nil { + return nil, goahttp.ErrValidationError("cascade", "downloadV2", err) + } + return nil, NewDownloadV2NotFound(&body) + case http.StatusInternalServerError: + var ( + body DownloadV2InternalServerErrorResponseBody + err error + ) + err = decoder(resp).Decode(&body) + if err != nil { + return nil, goahttp.ErrDecodingError("cascade", "downloadV2", err) + } + err = ValidateDownloadV2InternalServerErrorResponseBody(&body) + if err != nil { + return nil, goahttp.ErrValidationError("cascade", "downloadV2", err) + } + return nil, NewDownloadV2InternalServerError(&body) + default: + body, _ := io.ReadAll(resp.Body) + return nil, goahttp.ErrInvalidResponse("cascade", "downloadV2", resp.StatusCode, string(body)) + } + } +} + +// BuildGetDownloadTaskStateRequest instantiates a HTTP request object with +// method and path set to call the "cascade" service "getDownloadTaskState" +// endpoint +func (c *Client) BuildGetDownloadTaskStateRequest(ctx context.Context, v any) (*http.Request, error) { + var ( + fileID string + ) + { + p, ok := v.(*cascade.GetDownloadTaskStatePayload) + if !ok { + return nil, goahttp.ErrInvalidType("cascade", "getDownloadTaskState", "*cascade.GetDownloadTaskStatePayload", v) + } + fileID = p.FileID + } + u := &url.URL{Scheme: c.scheme, Host: c.host, Path: GetDownloadTaskStateCascadePath(fileID)} + req, err := http.NewRequest("GET", u.String(), nil) + if err != nil { + return nil, goahttp.ErrInvalidURL("cascade", "getDownloadTaskState", u.String(), err) + } + if ctx != nil { + req = req.WithContext(ctx) + } + + return req, nil +} + +// DecodeGetDownloadTaskStateResponse returns a decoder for responses returned +// by the cascade getDownloadTaskState endpoint. restoreBody controls whether +// the response body should be restored after having been read. +// DecodeGetDownloadTaskStateResponse may return the following errors: +// - "NotFound" (type *goa.ServiceError): http.StatusNotFound +// - "InternalServerError" (type *goa.ServiceError): http.StatusInternalServerError +// - error: internal error +func DecodeGetDownloadTaskStateResponse(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (any, error) { + return func(resp *http.Response) (any, error) { + if restoreBody { + b, err := io.ReadAll(resp.Body) + if err != nil { + return nil, err + } + resp.Body = io.NopCloser(bytes.NewBuffer(b)) + defer func() { + resp.Body = io.NopCloser(bytes.NewBuffer(b)) + }() + } else { + defer resp.Body.Close() + } + switch resp.StatusCode { + case http.StatusOK: + var ( + body GetDownloadTaskStateResponseBody + err error + ) + err = decoder(resp).Decode(&body) + if err != nil { + return nil, goahttp.ErrDecodingError("cascade", "getDownloadTaskState", err) + } + for _, e := range body { + if e != nil { + if err2 := ValidateTaskHistoryResponse(e); err2 != nil { + err = goa.MergeErrors(err, err2) + } + } + } + if err != nil { + return nil, goahttp.ErrValidationError("cascade", "getDownloadTaskState", err) + } + res := NewGetDownloadTaskStateTaskHistoryOK(body) + return res, nil + case http.StatusNotFound: + var ( + body GetDownloadTaskStateNotFoundResponseBody + err error + ) + err = decoder(resp).Decode(&body) + if err != nil { + return nil, goahttp.ErrDecodingError("cascade", "getDownloadTaskState", err) + } + err = ValidateGetDownloadTaskStateNotFoundResponseBody(&body) + if err != nil { + return nil, goahttp.ErrValidationError("cascade", "getDownloadTaskState", err) + } + return nil, NewGetDownloadTaskStateNotFound(&body) + case http.StatusInternalServerError: + var ( + body GetDownloadTaskStateInternalServerErrorResponseBody + err error + ) + err = decoder(resp).Decode(&body) + if err != nil { + return nil, goahttp.ErrDecodingError("cascade", "getDownloadTaskState", err) + } + err = ValidateGetDownloadTaskStateInternalServerErrorResponseBody(&body) + if err != nil { + return nil, goahttp.ErrValidationError("cascade", "getDownloadTaskState", err) + } + return nil, NewGetDownloadTaskStateInternalServerError(&body) + default: + body, _ := io.ReadAll(resp.Body) + return nil, goahttp.ErrInvalidResponse("cascade", "getDownloadTaskState", resp.StatusCode, string(body)) + } + } +} + // BuildRegistrationDetailsRequest instantiates a HTTP request object with // method and path set to call the "cascade" service "registrationDetails" // endpoint diff --git a/walletnode/api/gen/http/cascade/client/paths.go b/walletnode/api/gen/http/cascade/client/paths.go index bf23e8203..e73017afe 100644 --- a/walletnode/api/gen/http/cascade/client/paths.go +++ b/walletnode/api/gen/http/cascade/client/paths.go @@ -41,6 +41,16 @@ func DownloadCascadePath() string { return "/openapi/cascade/download" } +// DownloadV2CascadePath returns the URL path to the cascade service downloadV2 HTTP endpoint. +func DownloadV2CascadePath() string { + return "/openapi/cascade/v2/download" +} + +// GetDownloadTaskStateCascadePath returns the URL path to the cascade service getDownloadTaskState HTTP endpoint. +func GetDownloadTaskStateCascadePath(fileID string) string { + return fmt.Sprintf("/openapi/cascade/downloads/%v/status", fileID) +} + // RegistrationDetailsCascadePath returns the URL path to the cascade service registrationDetails HTTP endpoint. func RegistrationDetailsCascadePath(baseFileID string) string { return fmt.Sprintf("/openapi/cascade/registration_details/%v", baseFileID) diff --git a/walletnode/api/gen/http/cascade/client/types.go b/walletnode/api/gen/http/cascade/client/types.go index 70c460ef0..4eb03f4fc 100644 --- a/walletnode/api/gen/http/cascade/client/types.go +++ b/walletnode/api/gen/http/cascade/client/types.go @@ -116,6 +116,18 @@ type DownloadResponseBody struct { FileID *string `form:"file_id,omitempty" json:"file_id,omitempty" xml:"file_id,omitempty"` } +// DownloadV2ResponseBody is the type of the "cascade" service "downloadV2" +// endpoint HTTP response body. +type DownloadV2ResponseBody struct { + // Task ID for the download task - caller can check the status of the download + // task using this task_id + FileID *string `form:"file_id,omitempty" json:"file_id,omitempty" xml:"file_id,omitempty"` +} + +// GetDownloadTaskStateResponseBody is the type of the "cascade" service +// "getDownloadTaskState" endpoint HTTP response body. +type GetDownloadTaskStateResponseBody []*TaskHistoryResponse + // RegistrationDetailsResponseBody is the type of the "cascade" service // "registrationDetails" endpoint HTTP response body. type RegistrationDetailsResponseBody struct { @@ -397,6 +409,99 @@ type DownloadInternalServerErrorResponseBody struct { Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"` } +// DownloadV2UnAuthorizedResponseBody is the type of the "cascade" service +// "downloadV2" endpoint HTTP response body for the "UnAuthorized" error. +type DownloadV2UnAuthorizedResponseBody struct { + // Name is the name of this class of errors. + Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"` + // ID is a unique identifier for this particular occurrence of the problem. + ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"` + // Is the error temporary? + Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"` + // Is the error a timeout? + Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"` + // Is the error a server-side fault? + Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"` +} + +// DownloadV2NotFoundResponseBody is the type of the "cascade" service +// "downloadV2" endpoint HTTP response body for the "NotFound" error. +type DownloadV2NotFoundResponseBody struct { + // Name is the name of this class of errors. + Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"` + // ID is a unique identifier for this particular occurrence of the problem. + ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"` + // Is the error temporary? + Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"` + // Is the error a timeout? + Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"` + // Is the error a server-side fault? + Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"` +} + +// DownloadV2InternalServerErrorResponseBody is the type of the "cascade" +// service "downloadV2" endpoint HTTP response body for the +// "InternalServerError" error. +type DownloadV2InternalServerErrorResponseBody struct { + // Name is the name of this class of errors. + Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"` + // ID is a unique identifier for this particular occurrence of the problem. + ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"` + // Is the error temporary? + Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"` + // Is the error a timeout? + Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"` + // Is the error a server-side fault? + Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"` +} + +// GetDownloadTaskStateNotFoundResponseBody is the type of the "cascade" +// service "getDownloadTaskState" endpoint HTTP response body for the +// "NotFound" error. +type GetDownloadTaskStateNotFoundResponseBody struct { + // Name is the name of this class of errors. + Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"` + // ID is a unique identifier for this particular occurrence of the problem. + ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"` + // Is the error temporary? + Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"` + // Is the error a timeout? + Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"` + // Is the error a server-side fault? + Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"` +} + +// GetDownloadTaskStateInternalServerErrorResponseBody is the type of the +// "cascade" service "getDownloadTaskState" endpoint HTTP response body for the +// "InternalServerError" error. +type GetDownloadTaskStateInternalServerErrorResponseBody struct { + // Name is the name of this class of errors. + Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"` + // ID is a unique identifier for this particular occurrence of the problem. + ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"` + // Is the error temporary? + Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"` + // Is the error a timeout? + Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"` + // Is the error a server-side fault? + Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"` +} + // RegistrationDetailsUnAuthorizedResponseBody is the type of the "cascade" // service "registrationDetails" endpoint HTTP response body for the // "UnAuthorized" error. @@ -953,6 +1058,102 @@ func NewDownloadInternalServerError(body *DownloadInternalServerErrorResponseBod return v } +// NewDownloadV2FileDownloadV2ResultOK builds a "cascade" service "downloadV2" +// endpoint result from a HTTP "OK" response. +func NewDownloadV2FileDownloadV2ResultOK(body *DownloadV2ResponseBody) *cascade.FileDownloadV2Result { + v := &cascade.FileDownloadV2Result{ + FileID: *body.FileID, + } + + return v +} + +// NewDownloadV2UnAuthorized builds a cascade service downloadV2 endpoint +// UnAuthorized error. +func NewDownloadV2UnAuthorized(body *DownloadV2UnAuthorizedResponseBody) *goa.ServiceError { + v := &goa.ServiceError{ + Name: *body.Name, + ID: *body.ID, + Message: *body.Message, + Temporary: *body.Temporary, + Timeout: *body.Timeout, + Fault: *body.Fault, + } + + return v +} + +// NewDownloadV2NotFound builds a cascade service downloadV2 endpoint NotFound +// error. +func NewDownloadV2NotFound(body *DownloadV2NotFoundResponseBody) *goa.ServiceError { + v := &goa.ServiceError{ + Name: *body.Name, + ID: *body.ID, + Message: *body.Message, + Temporary: *body.Temporary, + Timeout: *body.Timeout, + Fault: *body.Fault, + } + + return v +} + +// NewDownloadV2InternalServerError builds a cascade service downloadV2 +// endpoint InternalServerError error. +func NewDownloadV2InternalServerError(body *DownloadV2InternalServerErrorResponseBody) *goa.ServiceError { + v := &goa.ServiceError{ + Name: *body.Name, + ID: *body.ID, + Message: *body.Message, + Temporary: *body.Temporary, + Timeout: *body.Timeout, + Fault: *body.Fault, + } + + return v +} + +// NewGetDownloadTaskStateTaskHistoryOK builds a "cascade" service +// "getDownloadTaskState" endpoint result from a HTTP "OK" response. +func NewGetDownloadTaskStateTaskHistoryOK(body []*TaskHistoryResponse) []*cascade.TaskHistory { + v := make([]*cascade.TaskHistory, len(body)) + for i, val := range body { + v[i] = unmarshalTaskHistoryResponseToCascadeTaskHistory(val) + } + + return v +} + +// NewGetDownloadTaskStateNotFound builds a cascade service +// getDownloadTaskState endpoint NotFound error. +func NewGetDownloadTaskStateNotFound(body *GetDownloadTaskStateNotFoundResponseBody) *goa.ServiceError { + v := &goa.ServiceError{ + Name: *body.Name, + ID: *body.ID, + Message: *body.Message, + Temporary: *body.Temporary, + Timeout: *body.Timeout, + Fault: *body.Fault, + } + + return v +} + +// NewGetDownloadTaskStateInternalServerError builds a cascade service +// getDownloadTaskState endpoint InternalServerError error. +func NewGetDownloadTaskStateInternalServerError(body *GetDownloadTaskStateInternalServerErrorResponseBody) *goa.ServiceError { + v := &goa.ServiceError{ + Name: *body.Name, + ID: *body.ID, + Message: *body.Message, + Temporary: *body.Temporary, + Timeout: *body.Timeout, + Fault: *body.Fault, + } + + return v +} + // NewRegistrationDetailsRegistrationCreated builds a "cascade" service // "registrationDetails" endpoint result from a HTTP "Created" response. func NewRegistrationDetailsRegistrationCreated(body *RegistrationDetailsResponseBody) *cascadeviews.RegistrationView { @@ -1096,6 +1297,15 @@ func ValidateDownloadResponseBody(body *DownloadResponseBody) (err error) { return } +// ValidateDownloadV2ResponseBody runs the validations defined on +// DownloadV2ResponseBody +func ValidateDownloadV2ResponseBody(body *DownloadV2ResponseBody) (err error) { + if body.FileID == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("file_id", "body")) + } + return +} + // ValidateUploadAssetBadRequestResponseBody runs the validations defined on // uploadAsset_BadRequest_response_body func ValidateUploadAssetBadRequestResponseBody(body *UploadAssetBadRequestResponseBody) (err error) { @@ -1432,6 +1642,126 @@ func ValidateDownloadInternalServerErrorResponseBody(body *DownloadInternalServe return } +// ValidateDownloadV2UnAuthorizedResponseBody runs the validations defined on +// downloadV2_UnAuthorized_response_body +func ValidateDownloadV2UnAuthorizedResponseBody(body *DownloadV2UnAuthorizedResponseBody) (err error) { + if body.Name == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("name", "body")) + } + if body.ID == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("id", "body")) + } + if body.Message == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("message", "body")) + } + if body.Temporary == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("temporary", "body")) + } + if body.Timeout == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("timeout", "body")) + } + if body.Fault == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("fault", "body")) + } + return +} + +// ValidateDownloadV2NotFoundResponseBody runs the validations defined on +// downloadV2_NotFound_response_body +func ValidateDownloadV2NotFoundResponseBody(body *DownloadV2NotFoundResponseBody) (err error) { + if body.Name == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("name", "body")) + } + if body.ID == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("id", "body")) + } + if body.Message == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("message", "body")) + } + if body.Temporary == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("temporary", "body")) + } + if body.Timeout == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("timeout", "body")) + } + if body.Fault == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("fault", "body")) + } + return +} + +// ValidateDownloadV2InternalServerErrorResponseBody runs the validations +// defined on downloadV2_InternalServerError_response_body +func ValidateDownloadV2InternalServerErrorResponseBody(body *DownloadV2InternalServerErrorResponseBody) (err error) { + if body.Name == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("name", "body")) + } + if body.ID == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("id", "body")) + } + if body.Message == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("message", "body")) + } + if body.Temporary == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("temporary", "body")) + } + if body.Timeout == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("timeout", "body")) + } + if body.Fault == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("fault", "body")) + } + return +} + +// ValidateGetDownloadTaskStateNotFoundResponseBody runs the validations +// defined on getDownloadTaskState_NotFound_response_body +func ValidateGetDownloadTaskStateNotFoundResponseBody(body *GetDownloadTaskStateNotFoundResponseBody) (err error) { + if body.Name == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("name", "body")) + } + if body.ID == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("id", "body")) + } + if body.Message == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("message", "body")) + } + if body.Temporary == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("temporary", "body")) + } + if body.Timeout == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("timeout", "body")) + } + if body.Fault == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("fault", "body")) + } + return +} + +// ValidateGetDownloadTaskStateInternalServerErrorResponseBody runs the +// validations defined on getDownloadTaskState_InternalServerError_response_body +func ValidateGetDownloadTaskStateInternalServerErrorResponseBody(body *GetDownloadTaskStateInternalServerErrorResponseBody) (err error) { + if body.Name == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("name", "body")) + } + if body.ID == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("id", "body")) + } + if body.Message == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("message", "body")) + } + if body.Temporary == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("temporary", "body")) + } + if body.Timeout == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("timeout", "body")) + } + if body.Fault == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("fault", "body")) + } + return +} + // ValidateRegistrationDetailsUnAuthorizedResponseBody runs the validations // defined on registrationDetails_UnAuthorized_response_body func ValidateRegistrationDetailsUnAuthorizedResponseBody(body *RegistrationDetailsUnAuthorizedResponseBody) (err error) { diff --git a/walletnode/api/gen/http/cascade/server/encode_decode.go b/walletnode/api/gen/http/cascade/server/encode_decode.go index d264fd056..1027c2c2c 100644 --- a/walletnode/api/gen/http/cascade/server/encode_decode.go +++ b/walletnode/api/gen/http/cascade/server/encode_decode.go @@ -573,6 +573,202 @@ func EncodeDownloadError(encoder func(context.Context, http.ResponseWriter) goah } } +// EncodeDownloadV2Response returns an encoder for responses returned by the +// cascade downloadV2 endpoint. +func EncodeDownloadV2Response(encoder func(context.Context, http.ResponseWriter) goahttp.Encoder) func(context.Context, http.ResponseWriter, any) error { + return func(ctx context.Context, w http.ResponseWriter, v any) error { + res, _ := v.(*cascade.FileDownloadV2Result) + enc := encoder(ctx, w) + body := NewDownloadV2ResponseBody(res) + w.WriteHeader(http.StatusOK) + return enc.Encode(body) + } +} + +// DecodeDownloadV2Request returns a decoder for requests sent to the cascade +// downloadV2 endpoint. +func DecodeDownloadV2Request(mux goahttp.Muxer, decoder func(*http.Request) goahttp.Decoder) func(*http.Request) (any, error) { + return func(r *http.Request) (any, error) { + var ( + txid string + pid string + key string + err error + ) + txid = r.URL.Query().Get("txid") + if txid == "" { + err = goa.MergeErrors(err, goa.MissingFieldError("txid", "query string")) + } + if utf8.RuneCountInString(txid) < 64 { + err = goa.MergeErrors(err, goa.InvalidLengthError("txid", txid, utf8.RuneCountInString(txid), 64, true)) + } + if utf8.RuneCountInString(txid) > 64 { + err = goa.MergeErrors(err, goa.InvalidLengthError("txid", txid, utf8.RuneCountInString(txid), 64, false)) + } + pid = r.URL.Query().Get("pid") + if pid == "" { + err = goa.MergeErrors(err, goa.MissingFieldError("pid", "query string")) + } + err = goa.MergeErrors(err, goa.ValidatePattern("pid", pid, "^[a-zA-Z0-9]+$")) + if utf8.RuneCountInString(pid) < 86 { + err = goa.MergeErrors(err, goa.InvalidLengthError("pid", pid, utf8.RuneCountInString(pid), 86, true)) + } + if utf8.RuneCountInString(pid) > 86 { + err = goa.MergeErrors(err, goa.InvalidLengthError("pid", pid, utf8.RuneCountInString(pid), 86, false)) + } + key = r.Header.Get("Authorization") + if key == "" { + err = goa.MergeErrors(err, goa.MissingFieldError("key", "header")) + } + if err != nil { + return nil, err + } + payload := NewDownloadV2DownloadPayload(txid, pid, key) + if strings.Contains(payload.Key, " ") { + // Remove authorization scheme prefix (e.g. "Bearer") + cred := strings.SplitN(payload.Key, " ", 2)[1] + payload.Key = cred + } + + return payload, nil + } +} + +// EncodeDownloadV2Error returns an encoder for errors returned by the +// downloadV2 cascade endpoint. +func EncodeDownloadV2Error(encoder func(context.Context, http.ResponseWriter) goahttp.Encoder, formatter func(ctx context.Context, err error) goahttp.Statuser) func(context.Context, http.ResponseWriter, error) error { + encodeError := goahttp.ErrorEncoder(encoder, formatter) + return func(ctx context.Context, w http.ResponseWriter, v error) error { + var en goa.GoaErrorNamer + if !errors.As(v, &en) { + return encodeError(ctx, w, v) + } + switch en.GoaErrorName() { + case "UnAuthorized": + var res *goa.ServiceError + errors.As(v, &res) + enc := encoder(ctx, w) + var body any + if formatter != nil { + body = formatter(ctx, res) + } else { + body = NewDownloadV2UnAuthorizedResponseBody(res) + } + w.Header().Set("goa-error", res.GoaErrorName()) + w.WriteHeader(http.StatusUnauthorized) + return enc.Encode(body) + case "NotFound": + var res *goa.ServiceError + errors.As(v, &res) + enc := encoder(ctx, w) + var body any + if formatter != nil { + body = formatter(ctx, res) + } else { + body = NewDownloadV2NotFoundResponseBody(res) + } + w.Header().Set("goa-error", res.GoaErrorName()) + w.WriteHeader(http.StatusNotFound) + return enc.Encode(body) + case "InternalServerError": + var res *goa.ServiceError + errors.As(v, &res) + enc := encoder(ctx, w) + var body any + if formatter != nil { + body = formatter(ctx, res) + } else { + body = NewDownloadV2InternalServerErrorResponseBody(res) + } + w.Header().Set("goa-error", res.GoaErrorName()) + w.WriteHeader(http.StatusInternalServerError) + return enc.Encode(body) + default: + return encodeError(ctx, w, v) + } + } +} + +// EncodeGetDownloadTaskStateResponse returns an encoder for responses returned +// by the cascade getDownloadTaskState endpoint. +func EncodeGetDownloadTaskStateResponse(encoder func(context.Context, http.ResponseWriter) goahttp.Encoder) func(context.Context, http.ResponseWriter, any) error { + return func(ctx context.Context, w http.ResponseWriter, v any) error { + res, _ := v.([]*cascade.TaskHistory) + enc := encoder(ctx, w) + body := NewGetDownloadTaskStateResponseBody(res) + w.WriteHeader(http.StatusOK) + return enc.Encode(body) + } +} + +// DecodeGetDownloadTaskStateRequest returns a decoder for requests sent to the +// cascade getDownloadTaskState endpoint. +func DecodeGetDownloadTaskStateRequest(mux goahttp.Muxer, decoder func(*http.Request) goahttp.Decoder) func(*http.Request) (any, error) { + return func(r *http.Request) (any, error) { + var ( + fileID string + err error + + params = mux.Vars(r) + ) + fileID = params["file_id"] + if utf8.RuneCountInString(fileID) < 8 { + err = goa.MergeErrors(err, goa.InvalidLengthError("file_id", fileID, utf8.RuneCountInString(fileID), 8, true)) + } + if utf8.RuneCountInString(fileID) > 8 { + err = goa.MergeErrors(err, goa.InvalidLengthError("file_id", fileID, utf8.RuneCountInString(fileID), 8, false)) + } + if err != nil { + return nil, err + } + payload := NewGetDownloadTaskStatePayload(fileID) + + return payload, nil + } +} + +// EncodeGetDownloadTaskStateError returns an encoder for errors returned by +// the getDownloadTaskState cascade endpoint. +func EncodeGetDownloadTaskStateError(encoder func(context.Context, http.ResponseWriter) goahttp.Encoder, formatter func(ctx context.Context, err error) goahttp.Statuser) func(context.Context, http.ResponseWriter, error) error { + encodeError := goahttp.ErrorEncoder(encoder, formatter) + return func(ctx context.Context, w http.ResponseWriter, v error) error { + var en goa.GoaErrorNamer + if !errors.As(v, &en) { + return encodeError(ctx, w, v) + } + switch en.GoaErrorName() { + case "NotFound": + var res *goa.ServiceError + errors.As(v, &res) + enc := encoder(ctx, w) + var body any + if formatter != nil { + body = formatter(ctx, res) + } else { + body = NewGetDownloadTaskStateNotFoundResponseBody(res) + } + w.Header().Set("goa-error", res.GoaErrorName()) + w.WriteHeader(http.StatusNotFound) + return enc.Encode(body) + case "InternalServerError": + var res *goa.ServiceError + errors.As(v, &res) + enc := encoder(ctx, w) + var body any + if formatter != nil { + body = formatter(ctx, res) + } else { + body = NewGetDownloadTaskStateInternalServerErrorResponseBody(res) + } + w.Header().Set("goa-error", res.GoaErrorName()) + w.WriteHeader(http.StatusInternalServerError) + return enc.Encode(body) + default: + return encodeError(ctx, w, v) + } + } +} + // EncodeRegistrationDetailsResponse returns an encoder for responses returned // by the cascade registrationDetails endpoint. func EncodeRegistrationDetailsResponse(encoder func(context.Context, http.ResponseWriter) goahttp.Encoder) func(context.Context, http.ResponseWriter, any) error { diff --git a/walletnode/api/gen/http/cascade/server/paths.go b/walletnode/api/gen/http/cascade/server/paths.go index 086e9a83f..57a2e567e 100644 --- a/walletnode/api/gen/http/cascade/server/paths.go +++ b/walletnode/api/gen/http/cascade/server/paths.go @@ -41,6 +41,16 @@ func DownloadCascadePath() string { return "/openapi/cascade/download" } +// DownloadV2CascadePath returns the URL path to the cascade service downloadV2 HTTP endpoint. +func DownloadV2CascadePath() string { + return "/openapi/cascade/v2/download" +} + +// GetDownloadTaskStateCascadePath returns the URL path to the cascade service getDownloadTaskState HTTP endpoint. +func GetDownloadTaskStateCascadePath(fileID string) string { + return fmt.Sprintf("/openapi/cascade/downloads/%v/status", fileID) +} + // RegistrationDetailsCascadePath returns the URL path to the cascade service registrationDetails HTTP endpoint. func RegistrationDetailsCascadePath(baseFileID string) string { return fmt.Sprintf("/openapi/cascade/registration_details/%v", baseFileID) diff --git a/walletnode/api/gen/http/cascade/server/server.go b/walletnode/api/gen/http/cascade/server/server.go index cdd8f0058..4e8b7e79f 100644 --- a/walletnode/api/gen/http/cascade/server/server.go +++ b/walletnode/api/gen/http/cascade/server/server.go @@ -20,16 +20,18 @@ import ( // Server lists the cascade service endpoint HTTP handlers. type Server struct { - Mounts []*MountPoint - UploadAsset http.Handler - UploadAssetV2 http.Handler - StartProcessing http.Handler - RegisterTaskState http.Handler - GetTaskHistory http.Handler - Download http.Handler - RegistrationDetails http.Handler - Restore http.Handler - CORS http.Handler + Mounts []*MountPoint + UploadAsset http.Handler + UploadAssetV2 http.Handler + StartProcessing http.Handler + RegisterTaskState http.Handler + GetTaskHistory http.Handler + Download http.Handler + DownloadV2 http.Handler + GetDownloadTaskState http.Handler + RegistrationDetails http.Handler + Restore http.Handler + CORS http.Handler } // MountPoint holds information about the mounted endpoints. @@ -80,6 +82,8 @@ func New( {"RegisterTaskState", "GET", "/openapi/cascade/start/{taskId}/state"}, {"GetTaskHistory", "GET", "/openapi/cascade/{taskId}/history"}, {"Download", "GET", "/openapi/cascade/download"}, + {"DownloadV2", "GET", "/openapi/cascade/v2/download"}, + {"GetDownloadTaskState", "GET", "/openapi/cascade/downloads/{file_id}/status"}, {"RegistrationDetails", "GET", "/openapi/cascade/registration_details/{base_file_id}"}, {"Restore", "POST", "/openapi/cascade/restore/{base_file_id}"}, {"CORS", "OPTIONS", "/openapi/cascade/upload"}, @@ -88,18 +92,22 @@ func New( {"CORS", "OPTIONS", "/openapi/cascade/start/{taskId}/state"}, {"CORS", "OPTIONS", "/openapi/cascade/{taskId}/history"}, {"CORS", "OPTIONS", "/openapi/cascade/download"}, + {"CORS", "OPTIONS", "/openapi/cascade/v2/download"}, + {"CORS", "OPTIONS", "/openapi/cascade/downloads/{file_id}/status"}, {"CORS", "OPTIONS", "/openapi/cascade/registration_details/{base_file_id}"}, {"CORS", "OPTIONS", "/openapi/cascade/restore/{base_file_id}"}, }, - UploadAsset: NewUploadAssetHandler(e.UploadAsset, mux, NewCascadeUploadAssetDecoder(mux, cascadeUploadAssetDecoderFn), encoder, errhandler, formatter), - UploadAssetV2: NewUploadAssetV2Handler(e.UploadAssetV2, mux, NewCascadeUploadAssetV2Decoder(mux, cascadeUploadAssetV2DecoderFn), encoder, errhandler, formatter), - StartProcessing: NewStartProcessingHandler(e.StartProcessing, mux, decoder, encoder, errhandler, formatter), - RegisterTaskState: NewRegisterTaskStateHandler(e.RegisterTaskState, mux, decoder, encoder, errhandler, formatter, upgrader, configurer.RegisterTaskStateFn), - GetTaskHistory: NewGetTaskHistoryHandler(e.GetTaskHistory, mux, decoder, encoder, errhandler, formatter), - Download: NewDownloadHandler(e.Download, mux, decoder, encoder, errhandler, formatter), - RegistrationDetails: NewRegistrationDetailsHandler(e.RegistrationDetails, mux, decoder, encoder, errhandler, formatter), - Restore: NewRestoreHandler(e.Restore, mux, decoder, encoder, errhandler, formatter), - CORS: NewCORSHandler(), + UploadAsset: NewUploadAssetHandler(e.UploadAsset, mux, NewCascadeUploadAssetDecoder(mux, cascadeUploadAssetDecoderFn), encoder, errhandler, formatter), + UploadAssetV2: NewUploadAssetV2Handler(e.UploadAssetV2, mux, NewCascadeUploadAssetV2Decoder(mux, cascadeUploadAssetV2DecoderFn), encoder, errhandler, formatter), + StartProcessing: NewStartProcessingHandler(e.StartProcessing, mux, decoder, encoder, errhandler, formatter), + RegisterTaskState: NewRegisterTaskStateHandler(e.RegisterTaskState, mux, decoder, encoder, errhandler, formatter, upgrader, configurer.RegisterTaskStateFn), + GetTaskHistory: NewGetTaskHistoryHandler(e.GetTaskHistory, mux, decoder, encoder, errhandler, formatter), + Download: NewDownloadHandler(e.Download, mux, decoder, encoder, errhandler, formatter), + DownloadV2: NewDownloadV2Handler(e.DownloadV2, mux, decoder, encoder, errhandler, formatter), + GetDownloadTaskState: NewGetDownloadTaskStateHandler(e.GetDownloadTaskState, mux, decoder, encoder, errhandler, formatter), + RegistrationDetails: NewRegistrationDetailsHandler(e.RegistrationDetails, mux, decoder, encoder, errhandler, formatter), + Restore: NewRestoreHandler(e.Restore, mux, decoder, encoder, errhandler, formatter), + CORS: NewCORSHandler(), } } @@ -114,6 +122,8 @@ func (s *Server) Use(m func(http.Handler) http.Handler) { s.RegisterTaskState = m(s.RegisterTaskState) s.GetTaskHistory = m(s.GetTaskHistory) s.Download = m(s.Download) + s.DownloadV2 = m(s.DownloadV2) + s.GetDownloadTaskState = m(s.GetDownloadTaskState) s.RegistrationDetails = m(s.RegistrationDetails) s.Restore = m(s.Restore) s.CORS = m(s.CORS) @@ -130,6 +140,8 @@ func Mount(mux goahttp.Muxer, h *Server) { MountRegisterTaskStateHandler(mux, h.RegisterTaskState) MountGetTaskHistoryHandler(mux, h.GetTaskHistory) MountDownloadHandler(mux, h.Download) + MountDownloadV2Handler(mux, h.DownloadV2) + MountGetDownloadTaskStateHandler(mux, h.GetDownloadTaskState) MountRegistrationDetailsHandler(mux, h.RegistrationDetails) MountRestoreHandler(mux, h.Restore) MountCORSHandler(mux, h.CORS) @@ -461,6 +473,108 @@ func NewDownloadHandler( }) } +// MountDownloadV2Handler configures the mux to serve the "cascade" service +// "downloadV2" endpoint. +func MountDownloadV2Handler(mux goahttp.Muxer, h http.Handler) { + f, ok := HandleCascadeOrigin(h).(http.HandlerFunc) + if !ok { + f = func(w http.ResponseWriter, r *http.Request) { + h.ServeHTTP(w, r) + } + } + mux.Handle("GET", "/openapi/cascade/v2/download", f) +} + +// NewDownloadV2Handler creates a HTTP handler which loads the HTTP request and +// calls the "cascade" service "downloadV2" endpoint. +func NewDownloadV2Handler( + endpoint goa.Endpoint, + mux goahttp.Muxer, + decoder func(*http.Request) goahttp.Decoder, + encoder func(context.Context, http.ResponseWriter) goahttp.Encoder, + errhandler func(context.Context, http.ResponseWriter, error), + formatter func(ctx context.Context, err error) goahttp.Statuser, +) http.Handler { + var ( + decodeRequest = DecodeDownloadV2Request(mux, decoder) + encodeResponse = EncodeDownloadV2Response(encoder) + encodeError = EncodeDownloadV2Error(encoder, formatter) + ) + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + ctx := context.WithValue(r.Context(), goahttp.AcceptTypeKey, r.Header.Get("Accept")) + ctx = context.WithValue(ctx, goa.MethodKey, "downloadV2") + ctx = context.WithValue(ctx, goa.ServiceKey, "cascade") + payload, err := decodeRequest(r) + if err != nil { + if err := encodeError(ctx, w, err); err != nil { + errhandler(ctx, w, err) + } + return + } + res, err := endpoint(ctx, payload) + if err != nil { + if err := encodeError(ctx, w, err); err != nil { + errhandler(ctx, w, err) + } + return + } + if err := encodeResponse(ctx, w, res); err != nil { + errhandler(ctx, w, err) + } + }) +} + +// MountGetDownloadTaskStateHandler configures the mux to serve the "cascade" +// service "getDownloadTaskState" endpoint. +func MountGetDownloadTaskStateHandler(mux goahttp.Muxer, h http.Handler) { + f, ok := HandleCascadeOrigin(h).(http.HandlerFunc) + if !ok { + f = func(w http.ResponseWriter, r *http.Request) { + h.ServeHTTP(w, r) + } + } + mux.Handle("GET", "/openapi/cascade/downloads/{file_id}/status", f) +} + +// NewGetDownloadTaskStateHandler creates a HTTP handler which loads the HTTP +// request and calls the "cascade" service "getDownloadTaskState" endpoint. +func NewGetDownloadTaskStateHandler( + endpoint goa.Endpoint, + mux goahttp.Muxer, + decoder func(*http.Request) goahttp.Decoder, + encoder func(context.Context, http.ResponseWriter) goahttp.Encoder, + errhandler func(context.Context, http.ResponseWriter, error), + formatter func(ctx context.Context, err error) goahttp.Statuser, +) http.Handler { + var ( + decodeRequest = DecodeGetDownloadTaskStateRequest(mux, decoder) + encodeResponse = EncodeGetDownloadTaskStateResponse(encoder) + encodeError = EncodeGetDownloadTaskStateError(encoder, formatter) + ) + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + ctx := context.WithValue(r.Context(), goahttp.AcceptTypeKey, r.Header.Get("Accept")) + ctx = context.WithValue(ctx, goa.MethodKey, "getDownloadTaskState") + ctx = context.WithValue(ctx, goa.ServiceKey, "cascade") + payload, err := decodeRequest(r) + if err != nil { + if err := encodeError(ctx, w, err); err != nil { + errhandler(ctx, w, err) + } + return + } + res, err := endpoint(ctx, payload) + if err != nil { + if err := encodeError(ctx, w, err); err != nil { + errhandler(ctx, w, err) + } + return + } + if err := encodeResponse(ctx, w, res); err != nil { + errhandler(ctx, w, err) + } + }) +} + // MountRegistrationDetailsHandler configures the mux to serve the "cascade" // service "registrationDetails" endpoint. func MountRegistrationDetailsHandler(mux goahttp.Muxer, h http.Handler) { @@ -573,6 +687,8 @@ func MountCORSHandler(mux goahttp.Muxer, h http.Handler) { mux.Handle("OPTIONS", "/openapi/cascade/start/{taskId}/state", h.ServeHTTP) mux.Handle("OPTIONS", "/openapi/cascade/{taskId}/history", h.ServeHTTP) mux.Handle("OPTIONS", "/openapi/cascade/download", h.ServeHTTP) + mux.Handle("OPTIONS", "/openapi/cascade/v2/download", h.ServeHTTP) + mux.Handle("OPTIONS", "/openapi/cascade/downloads/{file_id}/status", h.ServeHTTP) mux.Handle("OPTIONS", "/openapi/cascade/registration_details/{base_file_id}", h.ServeHTTP) mux.Handle("OPTIONS", "/openapi/cascade/restore/{base_file_id}", h.ServeHTTP) } diff --git a/walletnode/api/gen/http/cascade/server/types.go b/walletnode/api/gen/http/cascade/server/types.go index b075eeaec..0d6643ffc 100644 --- a/walletnode/api/gen/http/cascade/server/types.go +++ b/walletnode/api/gen/http/cascade/server/types.go @@ -118,6 +118,18 @@ type DownloadResponseBody struct { FileID string `form:"file_id" json:"file_id" xml:"file_id"` } +// DownloadV2ResponseBody is the type of the "cascade" service "downloadV2" +// endpoint HTTP response body. +type DownloadV2ResponseBody struct { + // Task ID for the download task - caller can check the status of the download + // task using this task_id + FileID string `form:"file_id" json:"file_id" xml:"file_id"` +} + +// GetDownloadTaskStateResponseBody is the type of the "cascade" service +// "getDownloadTaskState" endpoint HTTP response body. +type GetDownloadTaskStateResponseBody []*TaskHistoryResponse + // RegistrationDetailsResponseBody is the type of the "cascade" service // "registrationDetails" endpoint HTTP response body. type RegistrationDetailsResponseBody struct { @@ -399,6 +411,99 @@ type DownloadInternalServerErrorResponseBody struct { Fault bool `form:"fault" json:"fault" xml:"fault"` } +// DownloadV2UnAuthorizedResponseBody is the type of the "cascade" service +// "downloadV2" endpoint HTTP response body for the "UnAuthorized" error. +type DownloadV2UnAuthorizedResponseBody struct { + // Name is the name of this class of errors. + Name string `form:"name" json:"name" xml:"name"` + // ID is a unique identifier for this particular occurrence of the problem. + ID string `form:"id" json:"id" xml:"id"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message string `form:"message" json:"message" xml:"message"` + // Is the error temporary? + Temporary bool `form:"temporary" json:"temporary" xml:"temporary"` + // Is the error a timeout? + Timeout bool `form:"timeout" json:"timeout" xml:"timeout"` + // Is the error a server-side fault? + Fault bool `form:"fault" json:"fault" xml:"fault"` +} + +// DownloadV2NotFoundResponseBody is the type of the "cascade" service +// "downloadV2" endpoint HTTP response body for the "NotFound" error. +type DownloadV2NotFoundResponseBody struct { + // Name is the name of this class of errors. + Name string `form:"name" json:"name" xml:"name"` + // ID is a unique identifier for this particular occurrence of the problem. + ID string `form:"id" json:"id" xml:"id"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message string `form:"message" json:"message" xml:"message"` + // Is the error temporary? + Temporary bool `form:"temporary" json:"temporary" xml:"temporary"` + // Is the error a timeout? + Timeout bool `form:"timeout" json:"timeout" xml:"timeout"` + // Is the error a server-side fault? + Fault bool `form:"fault" json:"fault" xml:"fault"` +} + +// DownloadV2InternalServerErrorResponseBody is the type of the "cascade" +// service "downloadV2" endpoint HTTP response body for the +// "InternalServerError" error. +type DownloadV2InternalServerErrorResponseBody struct { + // Name is the name of this class of errors. + Name string `form:"name" json:"name" xml:"name"` + // ID is a unique identifier for this particular occurrence of the problem. + ID string `form:"id" json:"id" xml:"id"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message string `form:"message" json:"message" xml:"message"` + // Is the error temporary? + Temporary bool `form:"temporary" json:"temporary" xml:"temporary"` + // Is the error a timeout? + Timeout bool `form:"timeout" json:"timeout" xml:"timeout"` + // Is the error a server-side fault? + Fault bool `form:"fault" json:"fault" xml:"fault"` +} + +// GetDownloadTaskStateNotFoundResponseBody is the type of the "cascade" +// service "getDownloadTaskState" endpoint HTTP response body for the +// "NotFound" error. +type GetDownloadTaskStateNotFoundResponseBody struct { + // Name is the name of this class of errors. + Name string `form:"name" json:"name" xml:"name"` + // ID is a unique identifier for this particular occurrence of the problem. + ID string `form:"id" json:"id" xml:"id"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message string `form:"message" json:"message" xml:"message"` + // Is the error temporary? + Temporary bool `form:"temporary" json:"temporary" xml:"temporary"` + // Is the error a timeout? + Timeout bool `form:"timeout" json:"timeout" xml:"timeout"` + // Is the error a server-side fault? + Fault bool `form:"fault" json:"fault" xml:"fault"` +} + +// GetDownloadTaskStateInternalServerErrorResponseBody is the type of the +// "cascade" service "getDownloadTaskState" endpoint HTTP response body for the +// "InternalServerError" error. +type GetDownloadTaskStateInternalServerErrorResponseBody struct { + // Name is the name of this class of errors. + Name string `form:"name" json:"name" xml:"name"` + // ID is a unique identifier for this particular occurrence of the problem. + ID string `form:"id" json:"id" xml:"id"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message string `form:"message" json:"message" xml:"message"` + // Is the error temporary? + Temporary bool `form:"temporary" json:"temporary" xml:"temporary"` + // Is the error a timeout? + Timeout bool `form:"timeout" json:"timeout" xml:"timeout"` + // Is the error a server-side fault? + Fault bool `form:"fault" json:"fault" xml:"fault"` +} + // RegistrationDetailsUnAuthorizedResponseBody is the type of the "cascade" // service "registrationDetails" endpoint HTTP response body for the // "UnAuthorized" error. @@ -679,6 +784,25 @@ func NewDownloadResponseBody(res *cascade.FileDownloadResult) *DownloadResponseB return body } +// NewDownloadV2ResponseBody builds the HTTP response body from the result of +// the "downloadV2" endpoint of the "cascade" service. +func NewDownloadV2ResponseBody(res *cascade.FileDownloadV2Result) *DownloadV2ResponseBody { + body := &DownloadV2ResponseBody{ + FileID: res.FileID, + } + return body +} + +// NewGetDownloadTaskStateResponseBody builds the HTTP response body from the +// result of the "getDownloadTaskState" endpoint of the "cascade" service. +func NewGetDownloadTaskStateResponseBody(res []*cascade.TaskHistory) GetDownloadTaskStateResponseBody { + body := make([]*TaskHistoryResponse, len(res)) + for i, val := range res { + body[i] = marshalCascadeTaskHistoryToTaskHistoryResponse(val) + } + return body +} + // NewRegistrationDetailsResponseBody builds the HTTP response body from the // result of the "registrationDetails" endpoint of the "cascade" service. func NewRegistrationDetailsResponseBody(res *cascadeviews.RegistrationView) *RegistrationDetailsResponseBody { @@ -908,6 +1032,78 @@ func NewDownloadInternalServerErrorResponseBody(res *goa.ServiceError) *Download return body } +// NewDownloadV2UnAuthorizedResponseBody builds the HTTP response body from the +// result of the "downloadV2" endpoint of the "cascade" service. +func NewDownloadV2UnAuthorizedResponseBody(res *goa.ServiceError) *DownloadV2UnAuthorizedResponseBody { + body := &DownloadV2UnAuthorizedResponseBody{ + Name: res.Name, + ID: res.ID, + Message: res.Message, + Temporary: res.Temporary, + Timeout: res.Timeout, + Fault: res.Fault, + } + return body +} + +// NewDownloadV2NotFoundResponseBody builds the HTTP response body from the +// result of the "downloadV2" endpoint of the "cascade" service. +func NewDownloadV2NotFoundResponseBody(res *goa.ServiceError) *DownloadV2NotFoundResponseBody { + body := &DownloadV2NotFoundResponseBody{ + Name: res.Name, + ID: res.ID, + Message: res.Message, + Temporary: res.Temporary, + Timeout: res.Timeout, + Fault: res.Fault, + } + return body +} + +// NewDownloadV2InternalServerErrorResponseBody builds the HTTP response body +// from the result of the "downloadV2" endpoint of the "cascade" service. +func NewDownloadV2InternalServerErrorResponseBody(res *goa.ServiceError) *DownloadV2InternalServerErrorResponseBody { + body := &DownloadV2InternalServerErrorResponseBody{ + Name: res.Name, + ID: res.ID, + Message: res.Message, + Temporary: res.Temporary, + Timeout: res.Timeout, + Fault: res.Fault, + } + return body +} + +// NewGetDownloadTaskStateNotFoundResponseBody builds the HTTP response body +// from the result of the "getDownloadTaskState" endpoint of the "cascade" +// service. +func NewGetDownloadTaskStateNotFoundResponseBody(res *goa.ServiceError) *GetDownloadTaskStateNotFoundResponseBody { + body := &GetDownloadTaskStateNotFoundResponseBody{ + Name: res.Name, + ID: res.ID, + Message: res.Message, + Temporary: res.Temporary, + Timeout: res.Timeout, + Fault: res.Fault, + } + return body +} + +// NewGetDownloadTaskStateInternalServerErrorResponseBody builds the HTTP +// response body from the result of the "getDownloadTaskState" endpoint of the +// "cascade" service. +func NewGetDownloadTaskStateInternalServerErrorResponseBody(res *goa.ServiceError) *GetDownloadTaskStateInternalServerErrorResponseBody { + body := &GetDownloadTaskStateInternalServerErrorResponseBody{ + Name: res.Name, + ID: res.ID, + Message: res.Message, + Temporary: res.Temporary, + Timeout: res.Timeout, + Fault: res.Fault, + } + return body +} + // NewRegistrationDetailsUnAuthorizedResponseBody builds the HTTP response body // from the result of the "registrationDetails" endpoint of the "cascade" // service. @@ -1074,6 +1270,26 @@ func NewDownloadPayload(txid string, pid string, key string) *cascade.DownloadPa return v } +// NewDownloadV2DownloadPayload builds a cascade service downloadV2 endpoint +// payload. +func NewDownloadV2DownloadPayload(txid string, pid string, key string) *cascade.DownloadPayload { + v := &cascade.DownloadPayload{} + v.Txid = txid + v.Pid = pid + v.Key = key + + return v +} + +// NewGetDownloadTaskStatePayload builds a cascade service getDownloadTaskState +// endpoint payload. +func NewGetDownloadTaskStatePayload(fileID string) *cascade.GetDownloadTaskStatePayload { + v := &cascade.GetDownloadTaskStatePayload{} + v.FileID = fileID + + return v +} + // NewRegistrationDetailsPayload builds a cascade service registrationDetails // endpoint payload. func NewRegistrationDetailsPayload(baseFileID string) *cascade.RegistrationDetailsPayload { diff --git a/walletnode/api/gen/http/openapi.json b/walletnode/api/gen/http/openapi.json index e066d4c2c..158be1c73 100644 --- a/walletnode/api/gen/http/openapi.json +++ b/walletnode/api/gen/http/openapi.json @@ -1 +1 @@ -{"swagger":"2.0","info":{"title":"WalletNode REST API","version":"1.0"},"host":"localhost:8080","consumes":["application/json","application/xml","application/gob"],"produces":["application/json","application/xml","application/gob"],"paths":{"/collection/register":{"post":{"tags":["collection"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"collection#registerCollection","parameters":[{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":false,"type":"string"},{"name":"RegisterCollectionRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/CollectionRegisterCollectionRequestBody","required":["collection_name","item_type","list_of_pastelids_of_authorized_contributors","max_collection_entries","max_permitted_open_nsfw_score","minimum_similarity_score_to_first_entry_in_collection","app_pastelid","spendable_address"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/collection/{taskId}/history":{"get":{"tags":["collection"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"collection#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/TaskHistoryResponse"}}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CollectionGetTaskHistoryNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CollectionGetTaskHistoryInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/collection/{taskId}/state":{"get":{"tags":["collection"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"collection#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/CollectionRegisterTaskStateResponseBody","required":["date","status"]}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CollectionRegisterTaskStateNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CollectionRegisterTaskStateInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/healthcheck_challenge/detailed_logs":{"get":{"tags":["HealthCheckChallenge"],"summary":"Fetches health-check-challenge reports","description":"Fetches health-check-challenge reports","operationId":"HealthCheckChallenge#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch health-check-challenge reports for","required":true,"type":"string"},{"name":"challenge_id","in":"query","description":"ChallengeID of the health check challenge to fetch their logs","required":false,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/HcDetailedLogsMessageResponse"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetDetailedLogsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetDetailedLogsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetDetailedLogsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetDetailedLogsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/healthcheck_challenge/summary_stats":{"get":{"tags":["HealthCheckChallenge"],"summary":"Fetches summary stats","description":"Fetches summary stats data over a specified time range","operationId":"HealthCheckChallenge#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"to","in":"query","description":"End time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","required":true,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts":{"get":{"tags":["nft"],"summary":"Returns the detail of NFT","description":"Gets the NFT detail","operationId":"nft#nftGet","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftNftGetResponseBody","required":["rareness_score","nsfw_score","is_likely_dupe","is_rare_on_internet","title","description","creator_name","copies","creator_pastelid","txid"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/NftNftGetBadRequestResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftNftGetNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftNftGetInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/download":{"get":{"tags":["nft"],"summary":"Downloads NFT","description":"Download registered NFT.","operationId":"nft#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftDownloadResponseBody","required":["file_id"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/NftDownloadUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftDownloadNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftDownloadInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/get_dd_result_file":{"get":{"tags":["nft"],"summary":"Duplication detection output file","description":"Duplication detection output file","operationId":"nft#ddServiceOutputFile","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileResponseBody","required":["file"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/get_dd_results":{"get":{"tags":["nft"],"summary":"Duplication detection output file details","description":"Duplication detection output file details","operationId":"nft#ddServiceOutputFileDetail","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileDetailResponseBody","required":["creator_name","creator_website","creator_written_statement","nft_title","nft_series_name","nft_creation_video_youtube_url","nft_keyword_set","total_copies","preview_hash","thumbnail1_hash","thumbnail2_hash","original_file_size_in_bytes","file_type","max_permitted_open_nsfw_score"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileDetailUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileDetailNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileDetailInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/register":{"get":{"tags":["nft"],"summary":"Returns list of tasks","description":"List of all tasks.","operationId":"nft#registerTasks","responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftTaskResponseTinyCollection"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftRegisterTasksInternalServerErrorResponseBody"}}},"schemes":["http"]},"post":{"tags":["nft"],"summary":"Registers a new NFT","description":"Runs a new registration process for the new NFT.","operationId":"nft#register","parameters":[{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"},{"name":"RegisterRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/NftRegisterRequestBody","required":["image_id","creator_name","name","creator_pastelid","spendable_address","maximum_fee"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/NftRegisterResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/NftRegisterBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/NftRegisterUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftRegisterInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/register/upload":{"post":{"tags":["nft"],"summary":"Uploads an image","description":"Upload the image that is used when registering a new NFT.","operationId":"nft#uploadImage","consumes":["multipart/form-data"],"parameters":[{"name":"UploadImageRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/NftUploadImageRequestBody","required":["file"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/NftUploadImageResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/NftUploadImageBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftUploadImageInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/nfts/register/{taskId}":{"get":{"tags":["nft"],"summary":"Find task by ID","description":"Returns a single task.","operationId":"nft#registerTask","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftRegisterTaskResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftRegisterTaskNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftRegisterTaskInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/nfts/register/{taskId}/state":{"get":{"tags":["nft"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"nft#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/NftRegisterTaskStateResponseBody","required":["date","status"]}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftRegisterTaskStateNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftRegisterTaskStateInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/nfts/search":{"get":{"tags":["nft"],"summary":"Streams the search result for NFT","description":"Streams the search result for NFT","operationId":"nft#nftSearch","parameters":[{"name":"artist","in":"query","description":"Artist PastelID or special value; mine","required":false,"type":"string","maxLength":256},{"name":"limit","in":"query","description":"Number of results to be return","required":false,"type":"integer","default":10,"maximum":200,"minimum":10},{"name":"query","in":"query","description":"Query is search query entered by user","required":true,"type":"string"},{"name":"creator_name","in":"query","description":"Name of the nft creator","required":false,"type":"boolean","default":true},{"name":"art_title","in":"query","description":"Title of NFT","required":false,"type":"boolean","default":true},{"name":"series","in":"query","description":"NFT series name","required":false,"type":"boolean","default":true},{"name":"descr","in":"query","description":"Artist written statement","required":false,"type":"boolean","default":true},{"name":"keyword","in":"query","description":"Keyword that Artist assigns to NFT","required":false,"type":"boolean","default":true},{"name":"min_copies","in":"query","description":"Minimum number of created copies","required":false,"type":"integer","maximum":1000,"minimum":1},{"name":"max_copies","in":"query","description":"Maximum number of created copies","required":false,"type":"integer","maximum":1000,"minimum":1},{"name":"min_block","in":"query","description":"Minimum blocknum","required":false,"type":"integer","default":1,"minimum":1},{"name":"max_block","in":"query","description":"Maximum blocknum","required":false,"type":"integer","minimum":1},{"name":"is_likely_dupe","in":"query","description":"Is this image likely a duplicate of another known image","required":false,"type":"boolean"},{"name":"min_rareness_score","in":"query","description":"Minimum pastel rareness score","required":false,"type":"number","maximum":1,"minimum":0},{"name":"max_rareness_score","in":"query","description":"Maximum pastel rareness score","required":false,"type":"number","maximum":1,"minimum":0},{"name":"min_nsfw_score","in":"query","description":"Minimum nsfw score","required":false,"type":"number","maximum":1,"minimum":0},{"name":"max_nsfw_score","in":"query","description":"Maximum nsfw score","required":false,"type":"number","maximum":1,"minimum":0},{"name":"user_pastelid","in":"header","description":"User's PastelID","required":false,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"user_passphrase","in":"header","description":"Passphrase of the User PastelID","required":false,"type":"string"}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/NftNftSearchResponseBody","required":["nft","matches","match_index"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/NftNftSearchBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftNftSearchInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/nfts/{taskId}/history":{"get":{"tags":["nft"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"nft#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/TaskHistoryResponse"}}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftGetTaskHistoryNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftGetTaskHistoryInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/nodes/challenges_score":{"get":{"tags":["Score"],"summary":"Fetches aggregated challenges score for sc and hc","description":"Fetches aggregated challenges score for SC and HC","operationId":"Score#getAggregatedChallengesScores","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","required":true,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/ChallengesScoresResponse"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ScoreGetAggregatedChallengesScoresBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ScoreGetAggregatedChallengesScoresUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ScoreGetAggregatedChallengesScoresNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ScoreGetAggregatedChallengesScoresInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/download":{"get":{"tags":["cascade"],"summary":"Downloads cascade artifact","description":"Download cascade Artifact.","operationId":"cascade#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CascadeDownloadResponseBody","required":["file_id"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CascadeDownloadUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CascadeDownloadNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeDownloadInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/registration_details/{base_file_id}":{"get":{"tags":["cascade"],"summary":"Get the file registration details","description":"Get the file registration details","operationId":"cascade#registrationDetails","parameters":[{"name":"base_file_id","in":"path","description":"Base file ID","required":true,"type":"string","maxLength":8}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeRegistrationDetailsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeRegistrationDetailsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CascadeRegistrationDetailsUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeRegistrationDetailsInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/cascade/restore/{base_file_id}":{"post":{"tags":["cascade"],"summary":"Restore the file details for registration, activation and multi-volume pastel","description":"Restore the files cascade registration","operationId":"cascade#restore","parameters":[{"name":"base_file_id","in":"path","description":"Base file ID","required":true,"type":"string","maxLength":8},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"},{"name":"RestoreRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/CascadeRestoreRequestBody","required":["app_pastelId"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeRestoreResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeRestoreBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CascadeRestoreUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeRestoreInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/start/{file_id}":{"post":{"tags":["cascade"],"summary":"Starts processing the image","description":"Start processing the image","operationId":"cascade#startProcessing","parameters":[{"name":"file_id","in":"path","description":"Uploaded asset file ID","required":true,"type":"string","maxLength":8,"minLength":8},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"},{"name":"StartProcessingRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/CascadeStartProcessingRequestBody","required":["app_pastelid"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeStartProcessingResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeStartProcessingBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CascadeStartProcessingUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeStartProcessingInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/start/{taskId}/state":{"get":{"tags":["cascade"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"cascade#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/CascadeRegisterTaskStateResponseBody","required":["date","status"]}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CascadeRegisterTaskStateNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeRegisterTaskStateInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/openapi/cascade/upload":{"post":{"tags":["cascade"],"summary":"Uploads Action Data","description":"Upload the asset file","operationId":"cascade#uploadAsset","consumes":["multipart/form-data"],"parameters":[{"name":"UploadAssetRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/CascadeUploadAssetRequestBody","required":["file"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeUploadAssetResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeUploadAssetBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeUploadAssetInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/cascade/v2/upload":{"post":{"tags":["cascade"],"summary":"Uploads Cascade File","description":"Upload the asset file - This endpoint is for the new version of the upload endpoint that supports larger files as well.","operationId":"cascade#uploadAssetV2","consumes":["multipart/form-data"],"parameters":[{"name":"UploadAssetV2RequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/CascadeUploadAssetV2RequestBody","required":["file"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeUploadAssetV2ResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeUploadAssetV2BadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeUploadAssetV2InternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/cascade/{taskId}/history":{"get":{"tags":["cascade"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"cascade#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/TaskHistoryResponse"}}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CascadeGetTaskHistoryNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeGetTaskHistoryInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/sense/download":{"get":{"tags":["sense"],"summary":"Download sense result; duplication detection results file.","description":"Download sense result; duplication detection results file.","operationId":"sense#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/SenseDownloadResponseBody","required":["file"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/SenseDownloadUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SenseDownloadNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseDownloadInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/sense/start/{image_id}":{"post":{"tags":["sense"],"summary":"Starts processing the image","description":"Start processing the image","operationId":"sense#startProcessing","parameters":[{"name":"image_id","in":"path","description":"Uploaded image ID","required":true,"type":"string","maxLength":8,"minLength":8},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"},{"name":"StartProcessingRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/SenseStartProcessingRequestBody","required":["burn_txid","app_pastelid"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/SenseStartProcessingResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/SenseStartProcessingBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/SenseStartProcessingUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseStartProcessingInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/sense/start/{taskId}/state":{"get":{"tags":["sense"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"sense#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/SenseRegisterTaskStateResponseBody","required":["date","status"]}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SenseRegisterTaskStateNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseRegisterTaskStateInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/openapi/sense/upload":{"post":{"tags":["sense"],"summary":"Uploads Action Data","description":"Upload the image","operationId":"sense#uploadImage","consumes":["multipart/form-data"],"parameters":[{"name":"UploadImageRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/SenseUploadImageRequestBody","required":["file"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/SenseUploadImageResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/SenseUploadImageBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseUploadImageInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/sense/{taskId}/history":{"get":{"tags":["sense"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"sense#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/TaskHistoryResponse"}}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SenseGetTaskHistoryNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseGetTaskHistoryInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/self_healing/detailed_logs":{"get":{"tags":["metrics"],"summary":"Fetches self-healing reports","description":"Fetches self-healing reports","operationId":"metrics#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch self-healing reports for","required":true,"type":"string"},{"name":"event_id","in":"query","description":"Specific event ID to fetch reports for","required":false,"type":"string"},{"name":"count","in":"query","description":"Number of reports to fetch","required":false,"type":"integer"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/self_healing/summary_stats":{"get":{"tags":["metrics"],"summary":"Fetches metrics data","description":"Fetches metrics data over a specified time range","operationId":"metrics#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"to","in":"query","description":"End time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","required":true,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/storage_challenges/detailed_logs":{"get":{"tags":["StorageChallenge"],"summary":"Fetches storage-challenge reports","description":"Fetches storage-challenge reports","operationId":"StorageChallenge#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch storage-challenge reports for","required":true,"type":"string"},{"name":"challenge_id","in":"query","description":"ChallengeID of the storage challenge to fetch their logs","required":false,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/StorageMessageResponse"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/StorageChallengeGetDetailedLogsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/StorageChallengeGetDetailedLogsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/StorageChallengeGetDetailedLogsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/StorageChallengeGetDetailedLogsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/storage_challenges/summary_stats":{"get":{"tags":["StorageChallenge"],"summary":"Fetches summary stats","description":"Fetches summary stats data over a specified time range","operationId":"StorageChallenge#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"to","in":"query","description":"End time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","required":true,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/userdatas/create":{"post":{"tags":["userdatas"],"summary":"Create new user data","description":"Create new user data","operationId":"userdatas#createUserdata","consumes":["multipart/form-data"],"parameters":[{"name":"CreateUserdataRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/UserdatasCreateUserdataRequestBody","required":["user_pastelid","user_pastelid_passphrase"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UserdatasCreateUserdataResponseBody","required":["response_code","detail"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UserdatasCreateUserdataBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UserdatasCreateUserdataInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/userdatas/update":{"post":{"tags":["userdatas"],"summary":"Update user data for an existing user","description":"Update user data for an existing user","operationId":"userdatas#updateUserdata","consumes":["multipart/form-data"],"parameters":[{"name":"UpdateUserdataRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/UserdatasUpdateUserdataRequestBody","required":["user_pastelid","user_pastelid_passphrase"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UserdatasUpdateUserdataResponseBody","required":["response_code","detail"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UserdatasUpdateUserdataBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UserdatasUpdateUserdataInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/userdatas/{pastelid}":{"get":{"tags":["userdatas"],"summary":"Returns the detail of Userdata","description":"Gets the Userdata detail","operationId":"userdatas#getUserdata","parameters":[{"name":"pastelid","in":"path","description":"Artist's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UserdatasGetUserdataResponseBody","required":["user_pastelid","user_pastelid_passphrase"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UserdatasGetUserdataBadRequestResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/UserdatasGetUserdataNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UserdatasGetUserdataInternalServerErrorResponseBody"}}},"schemes":["http"]}}},"definitions":{"ActivationAttemptResponseBody":{"title":"ActivationAttemptResponseBody","type":"object","properties":{"activation_attempt_at":{"type":"string","description":"Activation Attempt At in datetime format","example":"1977-11-30T10:16:09Z","format":"date-time"},"error_message":{"type":"string","description":"Error Message","example":"Velit facere sunt."},"file_id":{"type":"string","description":"File ID","example":"Quia velit fuga."},"id":{"type":"integer","description":"ID","example":3814091699999055171,"format":"int64"},"is_successful":{"type":"boolean","description":"Indicates if the activation was successful","example":true}},"example":{"activation_attempt_at":"2008-04-19T21:18:50Z","error_message":"Cumque esse voluptas.","file_id":"Iste nobis.","id":337857277724711965,"is_successful":false},"required":["id","file_id","activation_attempt_at"]},"AlternativeNSFWScoresResponseBody":{"title":"AlternativeNSFWScoresResponseBody","type":"object","properties":{"drawings":{"type":"number","description":"drawings nsfw score","example":0.1885888,"format":"float"},"hentai":{"type":"number","description":"hentai nsfw score","example":0.0070654918,"format":"float"},"neutral":{"type":"number","description":"neutral nsfw score","example":0.21138725,"format":"float"},"porn":{"type":"number","description":"porn nsfw score","example":0.049422737,"format":"float"},"sexy":{"type":"number","description":"sexy nsfw score","example":0.023406312,"format":"float"}},"example":{"drawings":0.6390544,"hentai":0.7168249,"neutral":0.43131202,"porn":0.70387167,"sexy":0.20076382}},"CascadeDownloadInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeDownloadNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeDownloadResponseBody":{"title":"CascadeDownloadResponseBody","type":"object","properties":{"file_id":{"type":"string","description":"File path","example":"Ut ea rerum deleniti quae natus."}},"example":{"file_id":"Explicabo vel praesentium similique."},"required":["file_id"]},"CascadeDownloadUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeGetTaskHistoryInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getTaskHistory_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeGetTaskHistoryNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegisterTaskStateInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTaskState_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegisterTaskStateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTaskState_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegisterTaskStateResponseBody":{"title":"CascadeRegisterTaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"CascadeRegistrationDetailsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registrationDetails_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegistrationDetailsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registrationDetails_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegistrationDetailsResponseBody":{"title":"Mediatype identifier: application/vnd.cascade.registration-detail; view=default","type":"object","properties":{"files":{"type":"array","items":{"$ref":"#/definitions/FileResponseBody"},"description":"List of files","example":[{"activation_attempts":[{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true}],"activation_txid":"Sequi qui eum et dolorum esse.","base_file_id":"Rerum iusto accusamus.","burn_txn_id":"Delectus dignissimos id dolorem et totam deserunt.","cascade_metadata_ticket_id":"Numquam voluptas.","done_block":4949105958821157300,"file_id":"Perspiciatis accusantium sed eveniet qui qui.","file_index":"Cumque est et fugiat qui.","hash_of_original_big_file":"Accusamus repellat commodi architecto aut quidem inventore.","is_concluded":false,"name_of_original_big_file_with_ext":"Perferendis unde qui qui dicta.","reg_txid":"Quasi est.","registration_attempts":[{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"}],"req_amount":0.11360537957590923,"req_burn_txn_amount":0.2916254651446542,"size_of_original_big_file":0.5209096568475247,"start_block":918621255,"task_id":"Sit tenetur labore illum numquam quia.","upload_timestamp":"1973-10-04T06:27:17Z","uuid_key":"Voluptatem aliquam molestias."},{"activation_attempts":[{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true}],"activation_txid":"Sequi qui eum et dolorum esse.","base_file_id":"Rerum iusto accusamus.","burn_txn_id":"Delectus dignissimos id dolorem et totam deserunt.","cascade_metadata_ticket_id":"Numquam voluptas.","done_block":4949105958821157300,"file_id":"Perspiciatis accusantium sed eveniet qui qui.","file_index":"Cumque est et fugiat qui.","hash_of_original_big_file":"Accusamus repellat commodi architecto aut quidem inventore.","is_concluded":false,"name_of_original_big_file_with_ext":"Perferendis unde qui qui dicta.","reg_txid":"Quasi est.","registration_attempts":[{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"}],"req_amount":0.11360537957590923,"req_burn_txn_amount":0.2916254651446542,"size_of_original_big_file":0.5209096568475247,"start_block":918621255,"task_id":"Sit tenetur labore illum numquam quia.","upload_timestamp":"1973-10-04T06:27:17Z","uuid_key":"Voluptatem aliquam molestias."}]}},"description":"RegistrationDetailsResponseBody result type (default view)","example":{"files":[{"activation_attempts":[{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true}],"activation_txid":"Sequi qui eum et dolorum esse.","base_file_id":"Rerum iusto accusamus.","burn_txn_id":"Delectus dignissimos id dolorem et totam deserunt.","cascade_metadata_ticket_id":"Numquam voluptas.","done_block":4949105958821157300,"file_id":"Perspiciatis accusantium sed eveniet qui qui.","file_index":"Cumque est et fugiat qui.","hash_of_original_big_file":"Accusamus repellat commodi architecto aut quidem inventore.","is_concluded":false,"name_of_original_big_file_with_ext":"Perferendis unde qui qui dicta.","reg_txid":"Quasi est.","registration_attempts":[{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"}],"req_amount":0.11360537957590923,"req_burn_txn_amount":0.2916254651446542,"size_of_original_big_file":0.5209096568475247,"start_block":918621255,"task_id":"Sit tenetur labore illum numquam quia.","upload_timestamp":"1973-10-04T06:27:17Z","uuid_key":"Voluptatem aliquam molestias."},{"activation_attempts":[{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true}],"activation_txid":"Sequi qui eum et dolorum esse.","base_file_id":"Rerum iusto accusamus.","burn_txn_id":"Delectus dignissimos id dolorem et totam deserunt.","cascade_metadata_ticket_id":"Numquam voluptas.","done_block":4949105958821157300,"file_id":"Perspiciatis accusantium sed eveniet qui qui.","file_index":"Cumque est et fugiat qui.","hash_of_original_big_file":"Accusamus repellat commodi architecto aut quidem inventore.","is_concluded":false,"name_of_original_big_file_with_ext":"Perferendis unde qui qui dicta.","reg_txid":"Quasi est.","registration_attempts":[{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"}],"req_amount":0.11360537957590923,"req_burn_txn_amount":0.2916254651446542,"size_of_original_big_file":0.5209096568475247,"start_block":918621255,"task_id":"Sit tenetur labore illum numquam quia.","upload_timestamp":"1973-10-04T06:27:17Z","uuid_key":"Voluptatem aliquam molestias."},{"activation_attempts":[{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true}],"activation_txid":"Sequi qui eum et dolorum esse.","base_file_id":"Rerum iusto accusamus.","burn_txn_id":"Delectus dignissimos id dolorem et totam deserunt.","cascade_metadata_ticket_id":"Numquam voluptas.","done_block":4949105958821157300,"file_id":"Perspiciatis accusantium sed eveniet qui qui.","file_index":"Cumque est et fugiat qui.","hash_of_original_big_file":"Accusamus repellat commodi architecto aut quidem inventore.","is_concluded":false,"name_of_original_big_file_with_ext":"Perferendis unde qui qui dicta.","reg_txid":"Quasi est.","registration_attempts":[{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"}],"req_amount":0.11360537957590923,"req_burn_txn_amount":0.2916254651446542,"size_of_original_big_file":0.5209096568475247,"start_block":918621255,"task_id":"Sit tenetur labore illum numquam quia.","upload_timestamp":"1973-10-04T06:27:17Z","uuid_key":"Voluptatem aliquam molestias."}]},"required":["files"]},"CascadeRegistrationDetailsUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registrationDetails_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRestoreBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"restore_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRestoreInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"restore_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRestoreRequestBody":{"title":"CascadeRestoreRequestBody","type":"object","properties":{"app_pastelId":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelId":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["app_pastelId"]},"CascadeRestoreResponseBody":{"title":"Mediatype identifier: application/vnd.cascade.restore-files; view=default","type":"object","properties":{"activated_volumes":{"type":"integer","description":"Total volumes that are activated","example":5211517183393359758,"format":"int64"},"registered_volumes":{"type":"integer","description":"Total registered volumes","example":6225785543329032708,"format":"int64"},"total_volumes":{"type":"integer","description":"Total volumes of selected file","example":2491783727910503236,"format":"int64"},"volumes_activated_in_recovery_flow":{"type":"integer","description":"Total volumes that are activated in restore process","example":3052784579645018574,"format":"int64"},"volumes_registration_in_progress":{"type":"integer","description":"Total volumes with in-progress registration","example":6647654725534665280,"format":"int64"},"volumes_with_pending_registration":{"type":"integer","description":"Total volumes with pending registration","example":6393231374515051775,"format":"int64"}},"description":"RestoreResponseBody result type (default view)","example":{"activated_volumes":2870039884830181019,"registered_volumes":8677976935247540464,"total_volumes":7433392042031742197,"volumes_activated_in_recovery_flow":2846191954697433601,"volumes_registration_in_progress":5644572381616938664,"volumes_with_pending_registration":6918183936885990465},"required":["total_volumes","registered_volumes","volumes_with_pending_registration","volumes_registration_in_progress","activated_volumes","volumes_activated_in_recovery_flow"]},"CascadeRestoreUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"restore_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeStartProcessingBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"startProcessing_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeStartProcessingInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"startProcessing_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeStartProcessingRequestBody":{"title":"CascadeStartProcessingRequestBody","type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"burn_txids":{"type":"array","items":{"type":"string","example":"Nam ullam quia repellendus cupiditate."},"description":"List of Burn transaction IDs for multi-volume registration","example":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"]},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","burn_txids":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"],"make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["app_pastelid"]},"CascadeStartProcessingResponseBody":{"title":"Mediatype identifier: application/sense.start-processing; view=default","type":"object","properties":{"task_id":{"type":"string","description":"Task ID of processing task","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"description":"StartProcessingResponseBody result type (default view)","example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"CascadeStartProcessingUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"startProcessing_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadAsset_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadAsset_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetRequestBody":{"title":"CascadeUploadAssetRequestBody","type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"RXN0IHJlcnVtIHNhZXBlIGNvbnNlcXV1bnR1ci4=","format":"byte"},"filename":{"type":"string","description":"For internal use"},"hash":{"type":"string","description":"For internal use"},"size":{"type":"integer","description":"For internal use","format":"int64"}},"example":{"file":"Q29tbW9kaSBxdWlidXNkYW0gdm9sdXB0YXRlbSBxdWFtIGl0YXF1ZSBsaWJlcm8u"},"required":["file"]},"CascadeUploadAssetResponseBody":{"title":"Mediatype identifier: application/vnd.cascade.upload-file; view=default","type":"object","properties":{"expires_in":{"type":"string","description":"File expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"file_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_amount":{"type":"number","description":"The amount that's required to be preburned","default":1,"example":20,"format":"double","minimum":0.00001},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"description":"UploadAssetResponseBody result type (default view)","example":{"expires_in":"2006-01-02T15:04:05Z07:00","file_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100},"required":["file_id","expires_in","total_estimated_fee"]},"CascadeUploadAssetV2BadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadAssetV2_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetV2InternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"uploadAssetV2_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetV2RequestBody":{"title":"CascadeUploadAssetV2RequestBody","type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"U2FwaWVudGUgb21uaXMgb21uaXMgY29ycnVwdGku","format":"byte"},"filename":{"type":"string","description":"-For internal use-"},"hash":{"type":"string","description":"For internal use"},"size":{"type":"integer","description":"For internal use","format":"int64"}},"example":{"file":"RXQgZG9sb3JlIGRvbG9yZS4="},"required":["file"]},"CascadeUploadAssetV2ResponseBody":{"title":"Mediatype identifier: application/vnd.cascade.upload-file-v2; view=default","type":"object","properties":{"file_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_transaction_amounts":{"type":"array","items":{"type":"number","example":0.366335541724773,"format":"double"},"description":"The amounts that's required to be preburned - one per transaction","example":[0.07989768565530223,0.9643054195750016,0.026381384166493292]},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"description":"UploadAssetV2ResponseBody result type (default view)","example":{"file_id":"VK7mpAqZ","required_preburn_transaction_amounts":[0.640392446585282,0.9646679397509296,0.7193760763377638],"total_estimated_fee":100},"required":["file_id","total_estimated_fee"]},"ChallengeDataResponse":{"title":"ChallengeDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":770414482,"format":"int32"},"end_index":{"type":"integer","description":"End index","example":2941821598506559608,"format":"int64"},"file_hash":{"type":"string","description":"File hash","example":"Sed impedit ut sit et."},"merkelroot":{"type":"string","description":"Merkelroot","example":"Quae facilis consequatur reiciendis quam dolorem vitae."},"start_index":{"type":"integer","description":"Start index","example":3732715178392837689,"format":"int64"},"timestamp":{"type":"string","description":"Timestamp","example":"Officiis est consequuntur."}},"description":"Data of challenge","example":{"block":617415567,"end_index":7934970221405679950,"file_hash":"Officia cum.","merkelroot":"Iste ea.","start_index":2444494162244828464,"timestamp":"Quasi ex et et doloremque voluptas qui."},"required":["timestamp","file_hash","start_index","end_index"]},"ChallengesScoresResponse":{"title":"ChallengesScoresResponse","type":"object","properties":{"health_check_challenge_score":{"type":"number","description":"Total accumulated HC challenge score","example":0.6860295220289976,"format":"double"},"ip_address":{"type":"string","description":"IPAddress of the node","example":"Eos explicabo repudiandae id."},"node_id":{"type":"string","description":"Specific node id","example":"Laboriosam et possimus sit sunt expedita."},"storage_challenge_score":{"type":"number","description":"Total accumulated SC challenge score","example":0.6479689700600071,"format":"double"}},"description":"Combined accumulated scores for HC and SC challenges","example":{"health_check_challenge_score":0.42002964061462505,"ip_address":"Et ducimus error.","node_id":"Eos sequi illo fugit consequatur ut architecto.","storage_challenge_score":0.45913245817393894},"required":["node_id","storage_challenge_score","health_check_challenge_score"]},"CollectionGetTaskHistoryInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getTaskHistory_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CollectionGetTaskHistoryNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterCollectionBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerCollection_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterCollectionInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerCollection_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterCollectionNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerCollection_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterCollectionRequestBody":{"title":"CollectionRegisterCollectionRequestBody","type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"collection_item_copy_count":{"type":"integer","description":"item copy count in the collection","default":1,"example":10,"format":"int64","minimum":1,"maximum":1000},"collection_name":{"type":"string","description":"name of the collection","example":"galaxies"},"green":{"type":"boolean","description":"green","default":false,"example":false},"item_type":{"type":"string","description":"type of items, store by collection","example":"sense","enum":["sense","nft"]},"list_of_pastelids_of_authorized_contributors":{"type":"array","items":{"type":"string","example":"Autem aut perferendis quo."},"description":"list of authorized contributors","example":["apple","banana","orange"]},"max_collection_entries":{"type":"integer","description":"max no of entries in the collection","example":5000,"format":"int64","minimum":1,"maximum":10000},"max_permitted_open_nsfw_score":{"type":"number","description":"max open nfsw score sense and nft items can have","example":0.5,"format":"double","minimum":0,"maximum":1},"minimum_similarity_score_to_first_entry_in_collection":{"type":"number","description":"min similarity for 1st entry to have","example":0.5,"format":"double","minimum":0,"maximum":1},"no_of_days_to_finalize_collection":{"type":"integer","description":"no of days to finalize collection","default":7,"example":5,"format":"int64","minimum":1,"maximum":7},"royalty":{"type":"number","description":"royalty fee","default":0,"example":2.32,"format":"double","minimum":0,"maximum":20},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","collection_item_copy_count":10,"collection_name":"galaxies","green":false,"item_type":"sense","list_of_pastelids_of_authorized_contributors":["apple","banana","orange"],"max_collection_entries":5000,"max_permitted_open_nsfw_score":0.5,"minimum_similarity_score_to_first_entry_in_collection":0.5,"no_of_days_to_finalize_collection":5,"royalty":2.32,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["collection_name","item_type","list_of_pastelids_of_authorized_contributors","max_collection_entries","max_permitted_open_nsfw_score","minimum_similarity_score_to_first_entry_in_collection","app_pastelid","spendable_address"]},"CollectionRegisterCollectionResponseBody":{"title":"Mediatype identifier: application/collection-registration; view=default","type":"object","properties":{"task_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"description":"RegisterCollectionResponseBody result type (default view)","example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"CollectionRegisterCollectionUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerCollection_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterTaskStateInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTaskState_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterTaskStateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTaskState_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterTaskStateResponseBody":{"title":"CollectionRegisterTaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"DetailsResponse":{"title":"DetailsResponse","type":"object","properties":{"fields":{"type":"object","description":"important fields regarding status history","example":{"Perferendis saepe laudantium fugit est laborum fugiat.":"Inventore doloribus voluptates provident odio."},"additionalProperties":true},"message":{"type":"string","description":"details regarding the status","example":"Image has been downloaded..."}},"example":{"fields":{"Nam doloribus suscipit.":"Laboriosam vel dolor.","Qui voluptatem placeat.":"Temporibus veritatis consequatur odit ad soluta."},"message":"Image has been downloaded..."}},"EvaluationDataResponse":{"title":"EvaluationDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":710346809,"format":"int32"},"hash":{"type":"string","description":"Hash","example":"Rerum reprehenderit ipsam veritatis accusantium sit."},"is_verified":{"type":"boolean","description":"IsVerified","example":false},"merkelroot":{"type":"string","description":"Merkelroot","example":"Est et alias est quae dolor at."},"timestamp":{"type":"string","description":"Timestamp","example":"Numquam odit animi occaecati et."}},"description":"Data of evaluation","example":{"block":1092014808,"hash":"Rerum et et commodi.","is_verified":true,"merkelroot":"Dolore debitis nostrum ut quia.","timestamp":"Quam commodi sit."},"required":["timestamp","hash","is_verified"]},"EventTicketResponseBody":{"title":"EventTicketResponseBody","type":"object","properties":{"data_hash":{"type":"string","example":"RG9sb3JlcyBxdWkgcXVpc3F1YW0u","format":"byte"},"missing_keys":{"type":"array","items":{"type":"string","example":"Quisquam consequuntur unde magni expedita qui aut."},"example":["In autem perferendis ea repellat consequatur accusamus.","Sequi doloremque hic eos et ab error."]},"recipient":{"type":"string","example":"Aliquam veniam iste veniam perferendis quia et."},"ticket_type":{"type":"string","example":"Quaerat magnam."},"tx_id":{"type":"string","example":"In et ducimus cupiditate ullam eius."}},"example":{"data_hash":"UmVjdXNhbmRhZSBlc3QgZGlnbmlzc2ltb3Mgdml0YWUgcXVpYSByZXJ1bS4=","missing_keys":["Non rerum ut voluptas enim.","Natus voluptatem sed totam aut iste."],"recipient":"Mollitia ipsa eligendi.","ticket_type":"Quia incidunt sint.","tx_id":"Impedit deleniti rerum atque."}},"FileResponseBody":{"title":"FileResponseBody","type":"object","properties":{"activation_attempts":{"type":"array","items":{"$ref":"#/definitions/ActivationAttemptResponseBody"},"description":"List of activation attempts","example":[{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true}]},"activation_txid":{"type":"string","description":"Activation Transaction ID","example":"Distinctio rem veniam iusto ut."},"base_file_id":{"type":"string","description":"Base File ID","example":"Amet aperiam sed quam qui nobis corrupti."},"burn_txn_id":{"type":"string","description":"Burn Transaction ID","example":"Soluta itaque officiis occaecati."},"cascade_metadata_ticket_id":{"type":"string","description":"Cascade Metadata Ticket ID","example":"Eaque molestiae sunt explicabo deserunt ducimus voluptate."},"done_block":{"type":"integer","description":"Done Block","example":8104657298305814435,"format":"int64"},"file_id":{"type":"string","description":"File ID","example":"Voluptas vel vel dicta harum ex quas."},"file_index":{"type":"string","description":"Index of the file","example":"Rerum maiores eum sed."},"hash_of_original_big_file":{"type":"string","description":"Hash of the Original Big File","example":"Perferendis accusantium quidem accusamus."},"is_concluded":{"type":"boolean","description":"Indicates if the process is concluded","example":false},"name_of_original_big_file_with_ext":{"type":"string","description":"Name of the Original Big File with Extension","example":"Et porro dolores est."},"reg_txid":{"type":"string","description":"Registration Transaction ID","example":"Sed ab necessitatibus ut ea non."},"registration_attempts":{"type":"array","items":{"$ref":"#/definitions/RegistrationAttemptResponseBody"},"description":"List of registration attempts","example":[{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"}]},"req_amount":{"type":"number","description":"Required Amount","example":0.9344480377881261,"format":"double"},"req_burn_txn_amount":{"type":"number","description":"Required Burn Transaction Amount","example":0.23742658686392903,"format":"double"},"size_of_original_big_file":{"type":"number","description":"Size of the Original Big File","example":0.9307895545860533,"format":"double"},"start_block":{"type":"integer","description":"Start Block","example":1917707455,"format":"int32"},"task_id":{"type":"string","description":"Task ID","example":"Neque amet eum nisi quia odio voluptatem."},"upload_timestamp":{"type":"string","description":"Upload Timestamp in datetime format","example":"1999-11-15T04:21:46Z","format":"date-time"},"uuid_key":{"type":"string","description":"UUID Key","example":"Ipsum harum."}},"example":{"activation_attempts":[{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true}],"activation_txid":"Quos magni quibusdam illo aut dolorum omnis.","base_file_id":"Necessitatibus qui illum.","burn_txn_id":"Inventore adipisci quod quia.","cascade_metadata_ticket_id":"Veritatis laudantium excepturi.","done_block":4197345361841056519,"file_id":"Mollitia voluptates labore aut in.","file_index":"Est quia adipisci impedit aut est.","hash_of_original_big_file":"Cupiditate dignissimos.","is_concluded":true,"name_of_original_big_file_with_ext":"Omnis animi aut dolor ad.","reg_txid":"Non maxime maiores iste eaque.","registration_attempts":[{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"}],"req_amount":0.029290357485155603,"req_burn_txn_amount":0.06671651835822341,"size_of_original_big_file":0.7452850717760783,"start_block":1880210886,"task_id":"Aliquam enim.","upload_timestamp":"1988-05-02T23:46:07Z","uuid_key":"Debitis corporis."},"required":["file_id","task_id","upload_timestamp","base_file_id","registration_attempts","activation_attempts","req_burn_txn_amount","req_amount","cascade_metadata_ticket_id","hash_of_original_big_file","name_of_original_big_file_with_ext","size_of_original_big_file"]},"FuzzyMatchResponseBody":{"title":"FuzzyMatchResponseBody","type":"object","properties":{"field_type":{"type":"string","description":"Field that is matched","example":"keyword","enum":["creator_name","art_title","series","descr","keyword"]},"matched_indexes":{"type":"array","items":{"type":"integer","example":6799134602207894302,"format":"int64"},"description":"The indexes of matched characters. Useful for highlighting matches","example":[6385374685273770966,8857309672965185541,8224487120055365872]},"score":{"type":"integer","description":"Score used to rank matches","example":2253564766214482380,"format":"int64"},"str":{"type":"string","description":"String that is matched","example":"Beatae occaecati quis iure."}},"example":{"field_type":"art_title","matched_indexes":[124759558546020526,8239183919877226491,3189190596724890844],"score":1078845644788033794,"str":"Facere sunt aut dolorem consequatur."}},"HCChallengeDataResponse":{"title":"HCChallengeDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":780671002,"format":"int32"},"merkelroot":{"type":"string","description":"Merkelroot","example":"Magnam aut saepe molestiae blanditiis laboriosam."},"timestamp":{"type":"string","description":"Timestamp","example":"Tenetur sit minima assumenda dolore ipsam maiores."}},"description":"Data of challenge","example":{"block":1945209840,"merkelroot":"Dolor ullam ab.","timestamp":"Fuga qui itaque et."},"required":["timestamp"]},"HCEvaluationDataResponse":{"title":"HCEvaluationDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":788950531,"format":"int32"},"is_verified":{"type":"boolean","description":"IsVerified","example":false},"merkelroot":{"type":"string","description":"Merkelroot","example":"Eveniet cum sit."},"timestamp":{"type":"string","description":"Timestamp","example":"Aut voluptate laudantium cumque eum."}},"description":"Data of evaluation","example":{"block":997093512,"is_verified":false,"merkelroot":"Delectus quidem debitis ut quis beatae.","timestamp":"Ut sed."},"required":["timestamp","is_verified"]},"HCObserverEvaluationDataResponse":{"title":"HCObserverEvaluationDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":346770621,"format":"int32"},"is_challenge_timestamp_ok":{"type":"boolean","description":"IsChallengeTimestampOK","example":false},"is_challenger_signature_ok":{"type":"boolean","description":"IsChallengerSignatureOK","example":true},"is_evaluation_result_ok":{"type":"boolean","description":"IsEvaluationResultOK","example":true},"is_evaluation_timestamp_ok":{"type":"boolean","description":"IsEvaluationTimestampOK","example":false},"is_process_timestamp_ok":{"type":"boolean","description":"IsProcessTimestampOK","example":false},"is_recipient_signature_ok":{"type":"boolean","description":"IsRecipientSignatureOK","example":true},"merkelroot":{"type":"string","description":"Merkelroot","example":"Reiciendis iste rerum."},"timestamp":{"type":"string","description":"Timestamp","example":"Quam fugit in quasi in nam nulla."}},"description":"Data of Observer's evaluation","example":{"block":1521262132,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Dicta optio assumenda et dolores nihil et.","timestamp":"Quo voluptatem sunt excepturi beatae."},"required":["timestamp","is_challenge_timestamp_ok","is_process_timestamp_ok","is_evaluation_timestamp_ok","is_recipient_signature_ok","is_challenger_signature_ok","is_evaluation_result_ok"]},"HCResponseDataResponse":{"title":"HCResponseDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":1182365695,"format":"int32"},"merkelroot":{"type":"string","description":"Merkelroot","example":"Iste molestias ut fugiat aliquam."},"timestamp":{"type":"string","description":"Timestamp","example":"Enim sequi iure commodi."}},"description":"Data of response","example":{"block":1901942244,"merkelroot":"Aut earum.","timestamp":"Alias voluptatibus incidunt."},"required":["timestamp"]},"HCSummaryStatsResponseBody":{"title":"HCSummaryStatsResponseBody","type":"object","properties":{"no_of_invalid_evaluation_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid evaluation evaluated by observers","example":7864324325090405043,"format":"int64"},"no_of_invalid_signatures_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid signatures evaluated by observers","example":824289805776275058,"format":"int64"},"no_of_slow_responses_observed_by_observers":{"type":"integer","description":"challenges failed due to slow-responses evaluated by observers","example":8702511193156436407,"format":"int64"},"total_challenges_evaluated_by_challenger":{"type":"integer","description":"Total number of challenges evaluated by the challenger node","example":4410299275350188812,"format":"int64"},"total_challenges_issued":{"type":"integer","description":"Total number of challenges issued","example":7559104956481309322,"format":"int64"},"total_challenges_processed_by_recipient":{"type":"integer","description":"Total number of challenges processed by the recipient node","example":1732831978981392207,"format":"int64"},"total_challenges_verified":{"type":"integer","description":"Total number of challenges verified by observers","example":1597905471173075759,"format":"int64"}},"description":"HealthCheck-Challenge SummaryStats","example":{"no_of_invalid_evaluation_observed_by_observers":7194592284054671111,"no_of_invalid_signatures_observed_by_observers":905541886363588758,"no_of_slow_responses_observed_by_observers":522748200964355163,"total_challenges_evaluated_by_challenger":2749120762966979781,"total_challenges_issued":3473792872112133984,"total_challenges_processed_by_recipient":2033547800451867765,"total_challenges_verified":8612022669495309645},"required":["total_challenges_issued","total_challenges_processed_by_recipient","total_challenges_evaluated_by_challenger","total_challenges_verified","no_of_slow_responses_observed_by_observers","no_of_invalid_signatures_observed_by_observers","no_of_invalid_evaluation_observed_by_observers"]},"HcDetailedLogsMessageResponse":{"title":"Mediatype identifier: application/vnd.hc_detailed_logs.message; view=default","type":"object","properties":{"challenge":{"$ref":"#/definitions/HCChallengeDataResponse"},"challenge_id":{"type":"string","description":"ID of the challenge","example":"Quae eum dolore exercitationem et."},"challenger_evaluation":{"$ref":"#/definitions/HCEvaluationDataResponse"},"challenger_id":{"type":"string","description":"ID of the challenger","example":"Magnam ut assumenda."},"message_type":{"type":"string","description":"type of the message","example":"Sit ea sed omnis."},"observer_evaluation":{"$ref":"#/definitions/HCObserverEvaluationDataResponse"},"observers":{"type":"array","items":{"type":"string","example":"Quam at voluptas eos illo sed mollitia."},"description":"List of observer IDs","example":["Odit molestiae incidunt quod.","Sed maiores.","Quia molestias fugiat.","Rerum nisi ratione rerum temporibus blanditiis."]},"recipient_id":{"type":"string","description":"ID of the recipient","example":"Voluptatem aut neque et."},"response":{"$ref":"#/definitions/HCResponseDataResponse"},"sender_id":{"type":"string","description":"ID of the sender's node","example":"Est dignissimos corrupti molestiae."},"sender_signature":{"type":"string","description":"signature of the sender","example":"Deleniti beatae corporis quasi libero nostrum."}},"description":"HealthCheck challenge message data (default view)","example":{"challenge":{"block":161855103,"merkelroot":"Occaecati in reiciendis quia repudiandae.","timestamp":"Necessitatibus sed est sunt."},"challenge_id":"Quod voluptatum id sed.","challenger_evaluation":{"block":372559801,"is_verified":false,"merkelroot":"Impedit quis autem et et neque.","timestamp":"Explicabo dolore."},"challenger_id":"Quas ut enim amet.","message_type":"Illum dolorum ad consectetur impedit eaque nam.","observer_evaluation":{"block":1881554591,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":false,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Hic voluptas doloremque eligendi et magni.","timestamp":"Perspiciatis earum."},"observers":["Cum molestiae deserunt totam id.","Magnam qui ab quia.","Eos et in eligendi.","Voluptate vel illum et itaque distinctio."],"recipient_id":"Vitae neque.","response":{"block":1874672230,"merkelroot":"Voluptate ipsa et ut dicta temporibus ut.","timestamp":"Deserunt mollitia est a labore."},"sender_id":"Dolor itaque voluptas officiis.","sender_signature":"Accusantium quia impedit rerum quia rem."},"required":["challenge_id","message_type","sender_id","challenger_id","observers","recipient_id"]},"HealthCheckChallengeGetDetailedLogsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetDetailedLogsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetDetailedLogsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetDetailedLogsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_Unauthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetSummaryStatsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetSummaryStatsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetSummaryStatsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetSummaryStatsResponseBody":{"title":"Mediatype identifier: application/vnd.hc_summary_stats.result; view=default","type":"object","properties":{"hc_summary_stats":{"$ref":"#/definitions/HCSummaryStatsResponseBody"}},"description":"GetSummaryStatsResponseBody result type (default view)","example":{"hc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":17085067897739032,"no_of_invalid_signatures_observed_by_observers":1070531802164886396,"no_of_slow_responses_observed_by_observers":2452954398688763778,"total_challenges_evaluated_by_challenger":1497037936453433297,"total_challenges_issued":5146044089880070113,"total_challenges_processed_by_recipient":5356106859537814149,"total_challenges_verified":5844922895958038468}},"required":["hc_summary_stats"]},"HealthCheckChallengeGetSummaryStatsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_Unauthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"InternetRarenessResponseBody":{"title":"InternetRarenessResponseBody","type":"object","properties":{"alternative_rare_on_internet_dict_as_json_compressed_b64":{"type":"string","description":"Base64 Compressed Json of Alternative Rare On Internet Dict","example":"Sint in nihil quo distinctio eum dolores."},"earliest_available_date_of_internet_results":{"type":"string","description":"Earliest Available Date of Internet Results","example":"Dolor eveniet provident."},"min_number_of_exact_matches_in_page":{"type":"integer","description":"Minimum Number of Exact Matches on Page","example":2746576258,"format":"int32"},"rare_on_internet_graph_json_compressed_b64":{"type":"string","description":"Base64 Compressed JSON of Rare On Internet Graph","example":"Et eos porro ipsa maxime sed."},"rare_on_internet_summary_table_as_json_compressed_b64":{"type":"string","description":"Base64 Compressed JSON Table of Rare On Internet Summary","example":"Eum velit non."}},"example":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Sit in maiores voluptatem.","earliest_available_date_of_internet_results":"Tenetur aut non atque.","min_number_of_exact_matches_in_page":242073123,"rare_on_internet_graph_json_compressed_b64":"Voluptatem perspiciatis et accusantium.","rare_on_internet_summary_table_as_json_compressed_b64":"Maiores aspernatur explicabo et nobis."}},"MetricsGetDetailedLogsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetDetailedLogsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetDetailedLogsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetDetailedLogsResponseBody":{"title":"MetricsGetDetailedLogsResponseBody","type":"object","properties":{"reports":{"type":"array","items":{"$ref":"#/definitions/SelfHealingReportKVResponseBody"},"description":"Map of challenge ID to SelfHealingReport","example":[{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}]}},"example":{"reports":[{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}]}},"MetricsGetDetailedLogsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_Unauthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetSummaryStatsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetSummaryStatsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetSummaryStatsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetSummaryStatsResponseBody":{"title":"Mediatype identifier: application/vnd.metrics.result; view=default","type":"object","properties":{"self_healing_execution_events_stats":{"$ref":"#/definitions/SHExecutionStatsResponseBody"},"self_healing_trigger_events_stats":{"type":"array","items":{"$ref":"#/definitions/SHTriggerStatsResponseBody"},"description":"Self-healing trigger stats","example":[{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."}]}},"description":"GetSummaryStatsResponseBody result type (default view)","example":{"self_healing_execution_events_stats":{"total_file_healing_failed":5551622164662787660,"total_files_healed":8671724886982383594,"total_reconstruction_not_required_evaluations_approved":3509617877318915873,"total_reconstruction_required_evaluations_approved":2598935111695686044,"total_reconstruction_required_evaluations_not_approved":645871039112296182,"total_reconstruction_required_hash_mismatch":6198218032159021896,"total_reconstructions_not_required_evaluations_not_approved":6224481363842689139,"total_self_healing_events_accepted":5676342644268881237,"total_self_healing_events_acknowledged":305624170386109632,"total_self_healing_events_evaluations_unverified":1687102203985295374,"total_self_healing_events_evaluations_verified":7201039114224972892,"total_self_healing_events_issued":7624509276581647432,"total_self_healing_events_rejected":8106553798825109777},"self_healing_trigger_events_stats":[{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."}]},"required":["self_healing_trigger_events_stats","self_healing_execution_events_stats"]},"MetricsGetSummaryStatsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_Unauthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileDetailInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"ddServiceOutputFileDetail_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileDetailNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"ddServiceOutputFileDetail_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileDetailResponseBody":{"title":"NftDdServiceOutputFileDetailResponseBody","type":"object","properties":{"alternative_nsfw_scores":{"$ref":"#/definitions/AlternativeNSFWScoresResponseBody"},"candidate_image_thumbnail_webp_as_base64_string":{"type":"string","description":"candidate image thumbnail as base64 string","example":"Sed quia dicta eveniet quod quia occaecati."},"child_probability":{"type":"number","description":"child probability","example":0.32871374,"format":"float"},"collection_name_string":{"type":"string","description":"name of the collection","example":"Est eius."},"cp_probability":{"type":"number","description":"probability of CP","example":0.46668318,"format":"float"},"creator_name":{"type":"string","description":"name of the creator","example":"Et dolor eum vel."},"creator_website":{"type":"string","description":"website of creator","example":"Non ea dicta ex consequatur consequatur."},"creator_written_statement":{"type":"string","description":"written statement of creator","example":"Voluptatem aut ducimus."},"does_not_impact_the_following_collection_strings":{"type":"string","description":"does not impact collection strings","example":"Est minus sed quia corrupti vel sint."},"dupe_detection_system_version":{"type":"string","description":"system version of dupe detection","example":"Molestiae ipsa reprehenderit."},"file_type":{"type":"string","description":"type of the file","example":"Magni eum et."},"group_rareness_score":{"type":"number","description":"rareness score of the group","example":0.25539443,"format":"float"},"hash_of_candidate_image_file":{"type":"string","description":"hash of candidate image file","example":"Magni eligendi laboriosam dignissimos nihil explicabo."},"image_file_path":{"type":"string","description":"file path of the image","example":"Est voluptatem deserunt exercitationem at molestiae porro."},"image_fingerprint_of_candidate_image_file":{"type":"array","items":{"type":"number","example":0.5877171307991194,"format":"double"},"description":"Image fingerprint of candidate image file","example":[0.7163821637916858,0.018790135492016663,0.5325966683669953,0.8820063916648913]},"internet_rareness":{"$ref":"#/definitions/InternetRarenessResponseBody"},"is_likely_dupe":{"type":"boolean","description":"is this nft likely a duplicate","example":false},"is_pastel_openapi_request":{"type":"boolean","description":"is pastel open API request","example":true},"is_rare_on_internet":{"type":"boolean","description":"is this nft rare on the internet","example":false},"max_permitted_open_nsfw_score":{"type":"number","description":"max permitted open NSFW score","example":0.13257228107221725,"format":"double"},"nft_creation_video_youtube_url":{"type":"string","description":"nft creation video youtube url","example":"Est quidem cumque consequuntur et debitis."},"nft_keyword_set":{"type":"string","description":"keywords for NFT","example":"Quis ea qui dolore esse quaerat."},"nft_series_name":{"type":"string","description":"series name of NFT","example":"Labore voluptate."},"nft_title":{"type":"string","description":"title of NFT","example":"Sed commodi consequatur unde qui."},"open_api_group_id_string":{"type":"string","description":"open api group id string","example":"Vel ducimus."},"open_nsfw_score":{"type":"number","description":"open nsfw score","example":0.04224419,"format":"float"},"original_file_size_in_bytes":{"type":"integer","description":"original file size in bytes","example":3893092424133781429,"format":"int64"},"overall_rareness_score":{"type":"number","description":"pastel rareness score","example":0.9992805,"format":"float"},"pastel_block_hash_when_request_submitted":{"type":"string","description":"block hash when request submitted","example":"Sed laboriosam molestiae maiores placeat inventore."},"pastel_block_height_when_request_submitted":{"type":"string","description":"block Height when request submitted","example":"Deleniti repellendus et."},"pastel_id_of_registering_supernode_1":{"type":"string","description":"pastel id of registering SN1","example":"Temporibus quo quaerat."},"pastel_id_of_registering_supernode_2":{"type":"string","description":"pastel id of registering SN2","example":"Deleniti ut et sint quibusdam."},"pastel_id_of_registering_supernode_3":{"type":"string","description":"pastel id of registering SN3","example":"Incidunt accusantium consequuntur optio."},"pastel_id_of_submitter":{"type":"string","description":"pastel id of the submitter","example":"Voluptatem ad magni ipsum et."},"pct_of_top_10_most_similar_with_dupe_prob_above_25pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 25 PCT","example":0.44575888,"format":"float"},"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 33 PCT","example":0.95061237,"format":"float"},"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 50 PCT","example":0.34961486,"format":"float"},"preview_hash":{"type":"string","description":"preview hash of NFT","example":"RXN0IGV0IHF1byBuZWNlc3NpdGF0aWJ1cyBmdWdhIHZlbGl0IGlwc3VtLg==","format":"byte"},"rareness_scores_table_json_compressed_b64":{"type":"string","description":"rareness scores table json compressed b64","example":"Dolores excepturi."},"similarity_score_to_first_entry_in_collection":{"type":"number","description":"similarity score to first entry in collection","example":0.28061414,"format":"float"},"thumbnail1_hash":{"type":"string","description":"thumbnail1 hash of NFT","example":"QXV0IG5vYmlzIHN1c2NpcGl0Lg==","format":"byte"},"thumbnail2_hash":{"type":"string","description":"thumbnail2 hash of NFT","example":"TGFib3J1bSBwbGFjZWF0IG9tbmlzIHJhdGlvbmUgc29sdXRhIGFyY2hpdGVjdG8u","format":"byte"},"total_copies":{"type":"integer","description":"total copies of NFT","example":6817490927373002671,"format":"int64"},"utc_timestamp_when_request_submitted":{"type":"string","description":"timestamp of request when submitted","example":"Illum voluptas nostrum voluptas rerum."}},"example":{"alternative_nsfw_scores":{"drawings":0.053542916,"hentai":0.17044726,"neutral":0.01989352,"porn":0.7542108,"sexy":0.24790263},"candidate_image_thumbnail_webp_as_base64_string":"Dolorum dolores.","child_probability":0.65949744,"collection_name_string":"Aspernatur est aut incidunt similique.","cp_probability":0.95395935,"creator_name":"Eaque nesciunt tempore sequi fugit.","creator_website":"Ab sint aliquam.","creator_written_statement":"Illo minima.","does_not_impact_the_following_collection_strings":"Magni et cupiditate quidem omnis est.","dupe_detection_system_version":"Minus quod dolor amet.","file_type":"Ea possimus quam.","group_rareness_score":0.7096911,"hash_of_candidate_image_file":"Fuga est soluta repudiandae autem.","image_file_path":"Omnis deleniti.","image_fingerprint_of_candidate_image_file":[0.9155314965398661,0.37612251223286586],"internet_rareness":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Magnam pariatur aut facilis.","earliest_available_date_of_internet_results":"Sed repudiandae voluptas dolor aut velit voluptatem.","min_number_of_exact_matches_in_page":1704813535,"rare_on_internet_graph_json_compressed_b64":"Aliquid provident eveniet.","rare_on_internet_summary_table_as_json_compressed_b64":"Quisquam corporis qui nobis dignissimos."},"is_likely_dupe":false,"is_pastel_openapi_request":false,"is_rare_on_internet":false,"max_permitted_open_nsfw_score":0.9801496459183948,"nft_creation_video_youtube_url":"Minus in vitae autem temporibus sunt quo.","nft_keyword_set":"Itaque molestias eos.","nft_series_name":"Culpa sed quia.","nft_title":"Corrupti magni.","open_api_group_id_string":"Consequatur illo delectus.","open_nsfw_score":0.5627782,"original_file_size_in_bytes":3050777177380097654,"overall_rareness_score":0.5667428,"pastel_block_hash_when_request_submitted":"Et nulla et et facilis at.","pastel_block_height_when_request_submitted":"Minima sunt.","pastel_id_of_registering_supernode_1":"Sint et occaecati ad consectetur dolor.","pastel_id_of_registering_supernode_2":"Enim in porro.","pastel_id_of_registering_supernode_3":"Neque ipsa perferendis magni dolores molestias iste.","pastel_id_of_submitter":"Dolor facere qui in officia quia.","pct_of_top_10_most_similar_with_dupe_prob_above_25pct":0.15605628,"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":0.44014576,"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":0.18732506,"preview_hash":"RG9sb3JpYnVzIGF1dC4=","rareness_scores_table_json_compressed_b64":"Et sit et omnis non ad.","similarity_score_to_first_entry_in_collection":0.8387003,"thumbnail1_hash":"SW5jaWR1bnQgZXN0Lg==","thumbnail2_hash":"TWFnbmkgbWFnbmkgcXVvIGF1dCBhdXQgYSBhY2N1c2FudGl1bS4=","total_copies":3403518764736338519,"utc_timestamp_when_request_submitted":"Voluptatem labore suscipit reprehenderit soluta doloremque dolorum."},"required":["creator_name","creator_website","creator_written_statement","nft_title","nft_series_name","nft_creation_video_youtube_url","nft_keyword_set","total_copies","preview_hash","thumbnail1_hash","thumbnail2_hash","original_file_size_in_bytes","file_type","max_permitted_open_nsfw_score"]},"NftDdServiceOutputFileDetailUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"ddServiceOutputFileDetail_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"ddServiceOutputFile_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"ddServiceOutputFile_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileResponseBody":{"title":"NftDdServiceOutputFileResponseBody","type":"object","properties":{"file":{"type":"string","description":"File downloaded","example":"Soluta totam ratione est quos fugit omnis."}},"example":{"file":"Cumque consequatur animi."},"required":["file"]},"NftDdServiceOutputFileUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"ddServiceOutputFile_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftDownloadInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftDownloadNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"download_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDownloadResponseBody":{"title":"NftDownloadResponseBody","type":"object","properties":{"file_id":{"type":"string","description":"File path","example":"Officia at deleniti perferendis iste similique velit."}},"example":{"file_id":"Illo ea voluptas voluptatibus similique."},"required":["file_id"]},"NftDownloadUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"download_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftGetTaskHistoryInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getTaskHistory_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftGetTaskHistoryNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftNftGetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"nftGet_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftNftGetInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"nftGet_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftNftGetNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"nftGet_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftNftGetResponseBody":{"title":"NftNftGetResponseBody","type":"object","properties":{"alt_rare_on_internet_dict_json_b64":{"type":"string","description":"Base64 Compressed Json of Alternative Rare On Internet Dict","example":"Odit dolor aliquam cumque."},"copies":{"type":"integer","description":"Number of copies","default":1,"example":1,"format":"int64","minimum":1,"maximum":1000},"creator_name":{"type":"string","description":"Name of the artist","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"Artist website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"drawing_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"earliest_date_of_results":{"type":"string","description":"Earliest Available Date of Internet Results","example":"Placeat error dolor quisquam temporibus dolorem a."},"green_address":{"type":"boolean","description":"Green address","example":true},"hentai_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"is_likely_dupe":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"is_rare_on_internet":{"type":"boolean","description":"is this nft rare on the internet","example":false},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"min_num_exact_matches_on_page":{"type":"integer","description":"Minimum Number of Exact Matches on Page","example":3286113871,"format":"int32"},"neutral_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"nsfw_score":{"type":"number","description":"NSFW Average score","example":1,"format":"float","minimum":0,"maximum":1},"porn_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"preview_thumbnail":{"type":"string","description":"Preview Image","example":"TnVtcXVhbSByZW0gcmVwZWxsZW5kdXMgZnVnaXQgc3VudCBub3N0cnVtLg==","format":"byte"},"rare_on_internet_graph_json_b64":{"type":"string","description":"Base64 Compressed JSON of Rare On Internet Graph","example":"Recusandae aliquam dolores qui quam deleniti alias."},"rare_on_internet_summary_table_json_b64":{"type":"string","description":"Base64 Compressed JSON Table of Rare On Internet Summary","example":"Eaque voluptatibus iusto voluptas non."},"rareness_score":{"type":"number","description":"Average pastel rareness score","example":1,"format":"float","minimum":0,"maximum":1},"royalty":{"type":"number","description":"how much artist should get on all future resales","example":0.5934972371767012,"format":"double"},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"sexy_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"storage_fee":{"type":"integer","description":"Storage fee %","example":100,"format":"int64"},"thumbnail_1":{"type":"string","description":"Thumbnail_1 image","example":"VGVtcG9yaWJ1cyBhYiBzb2x1dGEgZGlzdGluY3Rpby4=","format":"byte"},"thumbnail_2":{"type":"string","description":"Thumbnail_2 image","example":"Q29uc2VxdWF0dXIgbm9uIHJlcnVtIGVzdC4=","format":"byte"},"title":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"version":{"type":"integer","description":"version","example":1,"format":"int64"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"example":{"alt_rare_on_internet_dict_json_b64":"Harum repellendus.","copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","drawing_nsfw_score":1,"earliest_date_of_results":"Perspiciatis quam ut accusamus.","green_address":true,"hentai_nsfw_score":1,"is_likely_dupe":false,"is_rare_on_internet":false,"keywords":"Renaissance, sfumato, portrait","min_num_exact_matches_on_page":244362937,"neutral_nsfw_score":1,"nsfw_score":1,"porn_nsfw_score":1,"preview_thumbnail":"RWEgYXNwZXJpb3JlcyBxdWkgYmVhdGFlIG1pbmltYS4=","rare_on_internet_graph_json_b64":"Mollitia est voluptatum quis magnam.","rare_on_internet_summary_table_json_b64":"Tenetur ipsam.","rareness_score":1,"royalty":0.05528080235055823,"series_name":"Famous artist","sexy_nsfw_score":1,"storage_fee":100,"thumbnail_1":"QXV0ZW0gcmVpY2llbmRpcyBhbGlxdWFtIGl1c3RvIHZvbHVwdGF0ZXMu","thumbnail_2":"RG9sb3JlbSBxdWlzIHF1b3Mu","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","version":1,"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["rareness_score","nsfw_score","is_likely_dupe","is_rare_on_internet","title","description","creator_name","copies","creator_pastelid","txid"]},"NftNftSearchBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"nftSearch_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftNftSearchInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"nftSearch_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftNftSearchResponseBody":{"title":"NftNftSearchResponseBody","type":"object","properties":{"match_index":{"type":"integer","description":"Sort index of the match based on score.This must be used to sort results on UI.","example":2768489692092435491,"format":"int64"},"matches":{"type":"array","items":{"$ref":"#/definitions/FuzzyMatchResponseBody"},"description":"Match result details","example":[{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."}]},"nft":{"$ref":"#/definitions/NftSummaryResponseBody"}},"example":{"match_index":5192775230806366450,"matches":[{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."}],"nft":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"UmF0aW9uZSBlc3QgZmFjaWxpcy4=","thumbnail_2":"TnVsbGEgbGFib3J1bSBxdW9zIHZlbC4=","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}},"required":["nft","matches","match_index"]},"NftRegisterBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"register_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"register_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterPayloadResponse":{"title":"NftRegisterPayloadResponse","type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"key":{"type":"string","description":"Passphrase of the owner's PastelID","example":"Basic abcdef12345"},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Veritatis temporibus voluptatem impedit esse ut."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/definitions/ThumbnailcoordinateResponse"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"Request of the registration NFT","example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Consectetur sint.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["creator_name","name","creator_pastelid","spendable_address","maximum_fee","key"]},"NftRegisterPayloadResponseBody":{"title":"NftRegisterPayloadResponseBody","type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"key":{"type":"string","description":"Passphrase of the owner's PastelID","example":"Basic abcdef12345"},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Facilis et ut iure facilis ipsam labore."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/definitions/ThumbnailcoordinateResponseBody"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"Request of the registration NFT","example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Animi animi et rerum a.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["creator_name","name","creator_pastelid","spendable_address","maximum_fee","key"]},"NftRegisterRequestBody":{"title":"NftRegisterRequestBody","type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Officiis rerum voluptatibus."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/definitions/ThumbnailcoordinateRequestBody"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"image_id":"VK7mpAqZ","issued_copies":1,"keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Quas facere explicabo dicta.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["image_id","creator_name","name","creator_pastelid","spendable_address","maximum_fee"]},"NftRegisterResponseBody":{"title":"Mediatype identifier: application/vnd.nft.register; view=default","type":"object","properties":{"task_id":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8}},"description":"RegisterResponseBody result type (default view)","example":{"task_id":"n6Qn6TFM"},"required":["task_id"]},"NftRegisterTaskInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTask_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterTaskNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTask_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterTaskResponseBody":{"title":"Mediatype identifier: application/vnd.nft.register.task; view=default","type":"object","properties":{"id":{"type":"string","description":"JOb ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"states":{"type":"array","items":{"$ref":"#/definitions/TaskStateResponseBody"},"description":"List of states from the very beginning of the process","example":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}]},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]},"ticket":{"$ref":"#/definitions/NftRegisterPayloadResponseBody"},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64}},"description":"RegisterTaskResponseBody result type (default view)","example":{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"required":["id","status","ticket"]},"NftRegisterTaskStateInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTaskState_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterTaskStateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTaskState_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterTaskStateResponseBody":{"title":"NftRegisterTaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"NftRegisterTasksInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTasks_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"register_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftSummaryResponseBody":{"title":"NftSummaryResponseBody","type":"object","properties":{"copies":{"type":"integer","description":"Number of copies","default":1,"example":1,"format":"int64","minimum":1,"maximum":1000},"creator_name":{"type":"string","description":"Name of the artist","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"Artist website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"is_likely_dupe":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"nsfw_score":{"type":"number","description":"NSFW Average score","example":1,"format":"float","minimum":0,"maximum":1},"rareness_score":{"type":"number","description":"Average pastel rareness score","example":1,"format":"float","minimum":0,"maximum":1},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"thumbnail_1":{"type":"string","description":"Thumbnail_1 image","example":"RXQgdml0YWUgc2l0Lg==","format":"byte"},"thumbnail_2":{"type":"string","description":"Thumbnail_2 image","example":"RXN0IGlkIGV0IG5paGlsLg==","format":"byte"},"title":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"NFT response","example":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"UG9zc2ltdXMgZXhlcmNpdGF0aW9uZW0u","thumbnail_2":"RGViaXRpcyBjdW1xdWUgZXN0IGV0IGV0Lg==","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["title","description","creator_name","copies","creator_pastelid","txid"]},"NftTaskResponseTinyCollection":{"title":"Mediatype identifier: application/vnd.nft.register.task; type=collection; view=tiny","type":"array","items":{"$ref":"#/definitions/TaskResponseTiny"},"description":"NftTaskResponseTinyCollection is the result type for an array of TaskResponseTiny (default view)","example":[{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"}]},"NftUploadImageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadImage_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftUploadImageInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadImage_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftUploadImageRequestBody":{"title":"NftUploadImageRequestBody","type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"Q29uc2VxdXVudHVyIGZ1Z2lhdC4=","format":"byte"},"filename":{"type":"string","description":"For internal use"}},"example":{"file":"T2ZmaWNpYSByZWN1c2FuZGFlIGZ1Z2lhdCBhdXQu"},"required":["file"]},"NftUploadImageResponseBody":{"title":"Mediatype identifier: application/vnd.nft.upload-image-result; view=default","type":"object","properties":{"estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001},"expires_in":{"type":"string","description":"Image expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"description":"UploadImageResponseBody result type (default view)","example":{"estimated_fee":100,"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ"},"required":["image_id","expires_in","estimated_fee"]},"ObserverEvaluationDataResponse":{"title":"ObserverEvaluationDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":492103627,"format":"int32"},"is_challenge_timestamp_ok":{"type":"boolean","description":"IsChallengeTimestampOK","example":true},"is_challenger_signature_ok":{"type":"boolean","description":"IsChallengerSignatureOK","example":true},"is_evaluation_result_ok":{"type":"boolean","description":"IsEvaluationResultOK","example":true},"is_evaluation_timestamp_ok":{"type":"boolean","description":"IsEvaluationTimestampOK","example":false},"is_process_timestamp_ok":{"type":"boolean","description":"IsProcessTimestampOK","example":true},"is_recipient_signature_ok":{"type":"boolean","description":"IsRecipientSignatureOK","example":true},"merkelroot":{"type":"string","description":"Merkelroot","example":"Sed in voluptatum sint."},"reason":{"type":"string","description":"Reason","example":"Est est facere ipsam suscipit."},"timestamp":{"type":"string","description":"Timestamp","example":"Dolorem sit est soluta dolorem fuga molestias."},"true_hash":{"type":"string","description":"TrueHash","example":"Qui quo officiis."}},"description":"Data of Observer's evaluation","example":{"block":2004379588,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":false,"merkelroot":"Non eos et incidunt culpa.","reason":"A non.","timestamp":"Voluptatem error corporis dolorem.","true_hash":"Autem corrupti at est dolorem laudantium."},"required":["timestamp","is_challenge_timestamp_ok","is_process_timestamp_ok","is_evaluation_timestamp_ok","is_recipient_signature_ok","is_challenger_signature_ok","is_evaluation_result_ok","true_hash"]},"RegistrationAttemptResponseBody":{"title":"RegistrationAttemptResponseBody","type":"object","properties":{"error_message":{"type":"string","description":"Error Message","example":"Eius quia dolor."},"file_id":{"type":"string","description":"File ID","example":"Recusandae iste qui."},"finished_at":{"type":"string","description":"Finished At in datetime format","example":"1993-01-06T06:48:13Z","format":"date-time"},"id":{"type":"integer","description":"ID","example":65071118683436031,"format":"int64"},"is_successful":{"type":"boolean","description":"Indicates if the registration was successful","example":false},"processor_sns":{"type":"string","description":"Processor SNS","example":"Officia excepturi."},"reg_started_at":{"type":"string","description":"Registration Started At in datetime format","example":"1995-09-01T23:26:45Z","format":"date-time"}},"example":{"error_message":"Consequuntur soluta magni incidunt unde consequatur.","file_id":"Reprehenderit officiis a.","finished_at":"2001-01-24T08:03:15Z","id":4934366373463971411,"is_successful":false,"processor_sns":"Dolor recusandae odio voluptate enim.","reg_started_at":"1985-06-19T16:10:58Z"},"required":["id","file_id","reg_started_at","finished_at"]},"RespondedTicketResponseBody":{"title":"RespondedTicketResponseBody","type":"object","properties":{"is_reconstruction_required":{"type":"boolean","example":true},"missing_keys":{"type":"array","items":{"type":"string","example":"Repellendus dolorem odit doloremque."},"example":["Dolore dolorum soluta esse dolor numquam sunt.","Ad enim.","Repellat minima culpa exercitationem ut sit dolores."]},"reconstructed_file_hash":{"type":"string","example":"UXVhc2kgcXVpYnVzZGFtIG5pc2kgbW9sZXN0aWFlLg==","format":"byte"},"ticket_type":{"type":"string","example":"Impedit quo labore voluptas doloribus."},"tx_id":{"type":"string","example":"Sed aut."}},"example":{"is_reconstruction_required":true,"missing_keys":["Sed amet.","Dolore ratione omnis autem."],"reconstructed_file_hash":"Vm9sdXB0YXRlbSB0ZW1wb3JhIGNvcnJ1cHRpIHF1YXNpIGR1Y2ltdXMu","ticket_type":"Sint cum nisi ea.","tx_id":"Voluptatum est."}},"ResponseDataResponse":{"title":"ResponseDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":1657398414,"format":"int32"},"hash":{"type":"string","description":"Hash","example":"Non itaque."},"merkelroot":{"type":"string","description":"Merkelroot","example":"Minima aut nihil deserunt."},"timestamp":{"type":"string","description":"Timestamp","example":"Alias minima sed voluptatem omnis quidem veritatis."}},"description":"Data of response","example":{"block":1223319624,"hash":"Sit eaque iure dolore amet consequuntur quia.","merkelroot":"Adipisci natus quibusdam molestiae consequatur qui.","timestamp":"Accusantium rerum omnis quos."},"required":["timestamp"]},"SCSummaryStatsResponseBody":{"title":"SCSummaryStatsResponseBody","type":"object","properties":{"no_of_invalid_evaluation_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid evaluation evaluated by observers","example":1262630819399638246,"format":"int64"},"no_of_invalid_signatures_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid signatures evaluated by observers","example":7416733236524367202,"format":"int64"},"no_of_slow_responses_observed_by_observers":{"type":"integer","description":"challenges failed due to slow-responses evaluated by observers","example":8220033229442295331,"format":"int64"},"total_challenges_evaluated_by_challenger":{"type":"integer","description":"Total number of challenges evaluated by the challenger node","example":9214788162290591228,"format":"int64"},"total_challenges_issued":{"type":"integer","description":"Total number of challenges issued","example":5590687376329384678,"format":"int64"},"total_challenges_processed_by_recipient":{"type":"integer","description":"Total number of challenges processed by the recipient node","example":1999467628609766665,"format":"int64"},"total_challenges_verified":{"type":"integer","description":"Total number of challenges verified by observers","example":2882523577301506204,"format":"int64"}},"description":"Storage-Challenge SummaryStats","example":{"no_of_invalid_evaluation_observed_by_observers":9042597048367672375,"no_of_invalid_signatures_observed_by_observers":108703477555085391,"no_of_slow_responses_observed_by_observers":4551338824571442046,"total_challenges_evaluated_by_challenger":4223478764367209524,"total_challenges_issued":2411927090895656381,"total_challenges_processed_by_recipient":199012614070600943,"total_challenges_verified":7652524437877652565},"required":["total_challenges_issued","total_challenges_processed_by_recipient","total_challenges_evaluated_by_challenger","total_challenges_verified","no_of_slow_responses_observed_by_observers","no_of_invalid_signatures_observed_by_observers","no_of_invalid_evaluation_observed_by_observers"]},"SHExecutionStatsResponseBody":{"title":"SHExecutionStatsResponseBody","type":"object","properties":{"total_file_healing_failed":{"type":"integer","description":"Total number of file healings that failed","example":5912105157576617500,"format":"int64"},"total_files_healed":{"type":"integer","description":"Total number of files healed","example":1593822490470384411,"format":"int64"},"total_reconstruction_not_required_evaluations_approved":{"type":"integer","description":"Total number of reconstructions not required approved by verifier nodes","example":6742774764329235621,"format":"int64"},"total_reconstruction_required_evaluations_approved":{"type":"integer","description":"Total number of reconstructions approved by verifier nodes","example":698486530411194056,"format":"int64"},"total_reconstruction_required_evaluations_not_approved":{"type":"integer","description":"Total number of reconstructions not approved by verifier nodes","example":1248201501880871088,"format":"int64"},"total_reconstruction_required_hash_mismatch":{"type":"integer","description":"Total number of reconstructions required with hash mismatch","example":4805861211373010862,"format":"int64"},"total_reconstructions_not_required_evaluations_not_approved":{"type":"integer","description":"Total number of reconstructions not required evaluation not approved by verifier nodes","example":2851776670112960145,"format":"int64"},"total_self_healing_events_accepted":{"type":"integer","description":"Total number of events accepted (healer node evaluated that reconstruction is required)","example":4194459261382118799,"format":"int64"},"total_self_healing_events_acknowledged":{"type":"integer","description":"Total number of events acknowledged by the healer node","example":4720056279889375397,"format":"int64"},"total_self_healing_events_evaluations_unverified":{"type":"integer","description":"Total number of challenge evaluations unverified by verifier nodes","example":3142531896169425950,"format":"int64"},"total_self_healing_events_evaluations_verified":{"type":"integer","description":"Total number of challenges verified","example":1129800129811394079,"format":"int64"},"total_self_healing_events_issued":{"type":"integer","description":"Total number of self-healing events issued","example":7577455691668225135,"format":"int64"},"total_self_healing_events_rejected":{"type":"integer","description":"Total number of events rejected (healer node evaluated that reconstruction is not required)","example":7169145610199602847,"format":"int64"}},"description":"Self-healing execution stats","example":{"total_file_healing_failed":295521475070029485,"total_files_healed":3041123107078311898,"total_reconstruction_not_required_evaluations_approved":8603013703643418609,"total_reconstruction_required_evaluations_approved":1862238258720976544,"total_reconstruction_required_evaluations_not_approved":5975791337008547251,"total_reconstruction_required_hash_mismatch":2569314186549296498,"total_reconstructions_not_required_evaluations_not_approved":577193193601458882,"total_self_healing_events_accepted":132095397426707508,"total_self_healing_events_acknowledged":1810937531307032182,"total_self_healing_events_evaluations_unverified":8959505961614109581,"total_self_healing_events_evaluations_verified":1255907892729107976,"total_self_healing_events_issued":2206165766391025466,"total_self_healing_events_rejected":8482649803817519356},"required":["total_self_healing_events_issued","total_self_healing_events_acknowledged","total_self_healing_events_rejected","total_self_healing_events_accepted","total_self_healing_events_evaluations_verified","total_reconstruction_required_evaluations_approved","total_reconstruction_not_required_evaluations_approved","total_self_healing_events_evaluations_unverified","total_reconstruction_required_evaluations_not_approved","total_reconstructions_not_required_evaluations_not_approved","total_files_healed","total_file_healing_failed"]},"SHTriggerStatsResponseBody":{"title":"SHTriggerStatsResponseBody","type":"object","properties":{"list_of_nodes":{"type":"string","description":"Comma-separated list of offline nodes","example":"Tenetur veniam repellat minus voluptate."},"nodes_offline":{"type":"integer","description":"Number of nodes offline","example":7747587456016763230,"format":"int64"},"total_files_identified":{"type":"integer","description":"Total number of files identified for self-healing","example":4946493679879679341,"format":"int64"},"total_tickets_identified":{"type":"integer","description":"Total number of tickets identified for self-healing","example":5463597935691185853,"format":"int64"},"trigger_id":{"type":"string","description":"Unique identifier for the trigger","example":"Delectus aut animi delectus assumenda adipisci."}},"description":"Self-healing trigger stats","example":{"list_of_nodes":"In numquam quam assumenda autem qui minima.","nodes_offline":8754878813625551730,"total_files_identified":8349145999873529970,"total_tickets_identified":7914827504189946611,"trigger_id":"Officia magni."},"required":["trigger_id","nodes_offline","list_of_nodes","total_files_identified","total_tickets_identified"]},"ScoreGetAggregatedChallengesScoresBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getAggregatedChallengesScores_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ScoreGetAggregatedChallengesScoresInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getAggregatedChallengesScores_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ScoreGetAggregatedChallengesScoresNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getAggregatedChallengesScores_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ScoreGetAggregatedChallengesScoresUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getAggregatedChallengesScores_Unauthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SelfHealingChallengeDataResponseBody":{"title":"SelfHealingChallengeDataResponseBody","type":"object","properties":{"block":{"type":"integer","example":2096902943,"format":"int32"},"event_tickets":{"type":"array","items":{"$ref":"#/definitions/EventTicketResponseBody"},"example":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}]},"merkelroot":{"type":"string","example":"Provident autem."},"nodes_on_watchlist":{"type":"string","example":"Aliquam nisi fugiat quisquam quasi quia odit."},"timestamp":{"type":"string","example":"Enim libero in."}},"example":{"block":993030939,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Omnis nostrum ipsa.","nodes_on_watchlist":"Esse nisi nisi qui quia qui cupiditate.","timestamp":"Dicta porro deleniti dolores."}},"SelfHealingMessageDataResponseBody":{"title":"SelfHealingMessageDataResponseBody","type":"object","properties":{"challenger_id":{"type":"string","example":"Animi placeat veritatis voluptatem."},"event_details":{"$ref":"#/definitions/SelfHealingChallengeDataResponseBody"},"recipient_id":{"type":"string","example":"Et ut."},"response":{"$ref":"#/definitions/SelfHealingResponseDataResponseBody"},"verification":{"$ref":"#/definitions/SelfHealingVerificationDataResponseBody"}},"example":{"challenger_id":"Qui eligendi ab ipsum alias sunt ea.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sint eaque.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}}},"SelfHealingMessageKVResponseBody":{"title":"SelfHealingMessageKVResponseBody","type":"object","properties":{"message_type":{"type":"string","description":"Message type","example":"Sunt maxime in."},"messages":{"type":"array","items":{"$ref":"#/definitions/SelfHealingMessageResponseBody"},"description":"Self-healing messages","example":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}},"example":{"message_type":"Qui quasi asperiores quisquam.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}},"SelfHealingMessageResponseBody":{"title":"SelfHealingMessageResponseBody","type":"object","properties":{"data":{"$ref":"#/definitions/SelfHealingMessageDataResponseBody"},"message_type":{"type":"string","example":"Odio et sit mollitia."},"sender_id":{"type":"string","example":"Deserunt maiores totam."},"sender_signature":{"type":"string","example":"TGliZXJvIGF0IGZ1Z2Eu","format":"byte"},"trigger_id":{"type":"string","example":"Perspiciatis est quo maxime ex in."}},"example":{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Animi voluptatem est dolorum qui.","sender_id":"Magni quis rerum.","sender_signature":"Q29uc2VxdWF0dXIgZXVtIGFkIHJlcnVtLg==","trigger_id":"Iste accusantium repellendus."}},"SelfHealingReportKVResponseBody":{"title":"SelfHealingReportKVResponseBody","type":"object","properties":{"event_id":{"type":"string","description":"Challenge ID","example":"Ex quae repellendus."},"report":{"$ref":"#/definitions/SelfHealingReportResponseBody"}},"example":{"event_id":"Distinctio ut.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}},"SelfHealingReportResponseBody":{"title":"SelfHealingReportResponseBody","type":"object","properties":{"messages":{"type":"array","items":{"$ref":"#/definitions/SelfHealingMessageKVResponseBody"},"description":"Map of message type to SelfHealingMessages","example":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},"example":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},"SelfHealingResponseDataResponseBody":{"title":"SelfHealingResponseDataResponseBody","type":"object","properties":{"block":{"type":"integer","example":429756667,"format":"int32"},"event_id":{"type":"string","example":"Iste necessitatibus eaque possimus sint sequi."},"merkelroot":{"type":"string","example":"Totam ipsa quia commodi earum facere aut."},"responded_ticket":{"$ref":"#/definitions/RespondedTicketResponseBody"},"timestamp":{"type":"string","example":"Unde hic."},"verifiers":{"type":"array","items":{"type":"string","example":"Aut est non officia quidem."},"example":["Et similique voluptatem ut corporis temporibus.","Rerum unde et distinctio."]}},"example":{"block":454909689,"event_id":"Praesentium et quae.","merkelroot":"Veritatis fuga omnis.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Temporibus quaerat.","verifiers":["Molestiae nesciunt tenetur dolorem veniam.","Repellendus pariatur eos autem doloremque.","Sapiente inventore expedita molestias."]}},"SelfHealingVerificationDataResponseBody":{"title":"SelfHealingVerificationDataResponseBody","type":"object","properties":{"block":{"type":"integer","example":1512886084,"format":"int32"},"event_id":{"type":"string","example":"Voluptatem ex veritatis autem in aut debitis."},"merkelroot":{"type":"string","example":"Autem nobis."},"timestamp":{"type":"string","example":"Facere eos."},"verified_ticket":{"$ref":"#/definitions/VerifiedTicketResponseBody"},"verifiers_data":{"type":"object","example":{"Cupiditate sapiente maiores ea.":"RXhjZXB0dXJpIGF1dGVtIGl1c3RvIHJlcnVtLg=="},"additionalProperties":{"type":"string","example":"U2l0IHF1aWEgYXV0IGVpdXMgZnVnaWF0IHZlbC4=","format":"byte"}}},"example":{"block":1348630609,"event_id":"Veritatis doloribus.","merkelroot":"Esse sed vel et.","timestamp":"Laudantium neque accusantium laudantium non.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Ipsa dolores veritatis et.":"TWFpb3JlcyBleHBlZGl0YS4=","Iure autem nihil explicabo aperiam non.":"U2VxdWkgc2VkIGFzcGVybmF0dXIgZXQgc2VxdWku"}}},"SenseDownloadInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"download_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseDownloadNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"download_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseDownloadResponseBody":{"title":"SenseDownloadResponseBody","type":"object","properties":{"file":{"type":"string","description":"File downloaded","example":"RGVsZW5pdGkgY29uc2VjdGV0dXIu","format":"byte"}},"example":{"file":"RnVnaWF0IHNlZCBub2JpcyBwZXJzcGljaWF0aXMgb21uaXMu"},"required":["file"]},"SenseDownloadUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseGetTaskHistoryInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getTaskHistory_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseGetTaskHistoryNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getTaskHistory_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseRegisterTaskStateInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTaskState_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseRegisterTaskStateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTaskState_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseRegisterTaskStateResponseBody":{"title":"SenseRegisterTaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"SenseStartProcessingBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"startProcessing_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseStartProcessingInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"startProcessing_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseStartProcessingRequestBody":{"title":"SenseStartProcessingRequestBody","type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Et quia."},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","open_api_group_id":"Magni itaque eligendi ut et voluptas fugit.","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["burn_txid","app_pastelid"]},"SenseStartProcessingResponseBody":{"title":"Mediatype identifier: application/sense.start-processing; view=default","type":"object","properties":{"task_id":{"type":"string","description":"Task ID of processing task","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"description":"StartProcessingResponseBody result type (default view)","example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"SenseStartProcessingUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"startProcessing_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseUploadImageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadImage_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseUploadImageInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadImage_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseUploadImageRequestBody":{"title":"SenseUploadImageRequestBody","type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"QWQgbm9uIGNvcnBvcmlzIG1vbGxpdGlhIGRlYml0aXMu","format":"byte"},"filename":{"type":"string","description":"For internal use"}},"example":{"file":"UHJvdmlkZW50IHZvbHVwdGF0aWJ1cy4="},"required":["file"]},"SenseUploadImageResponseBody":{"title":"Mediatype identifier: application/vnd.nft.upload-image; view=default","type":"object","properties":{"expires_in":{"type":"string","description":"Image expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_amount":{"type":"number","description":"The amount that's required to be preburned","default":1,"example":20,"format":"double","minimum":0.00001},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"description":"UploadImageResponseBody result type (default view)","example":{"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100},"required":["image_id","expires_in","total_estimated_fee"]},"StorageChallengeGetDetailedLogsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetDetailedLogsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetDetailedLogsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetDetailedLogsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_Unauthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetSummaryStatsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetSummaryStatsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetSummaryStatsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetSummaryStatsResponseBody":{"title":"Mediatype identifier: application/vnd.summary_stats.result; view=default","type":"object","properties":{"sc_summary_stats":{"$ref":"#/definitions/SCSummaryStatsResponseBody"}},"description":"GetSummaryStatsResponseBody result type (default view)","example":{"sc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":2982554539974798863,"no_of_invalid_signatures_observed_by_observers":804645458629257575,"no_of_slow_responses_observed_by_observers":6016941875889227877,"total_challenges_evaluated_by_challenger":9084935928395605172,"total_challenges_issued":554226313255902356,"total_challenges_processed_by_recipient":9153767776266110855,"total_challenges_verified":6924812056467069635}},"required":["sc_summary_stats"]},"StorageChallengeGetSummaryStatsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_Unauthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageMessageResponse":{"title":"Mediatype identifier: application/vnd.storage.message; view=default","type":"object","properties":{"challenge":{"$ref":"#/definitions/ChallengeDataResponse"},"challenge_id":{"type":"string","description":"ID of the challenge","example":"Dolor distinctio facilis tempora ut sed."},"challenger_evaluation":{"$ref":"#/definitions/EvaluationDataResponse"},"challenger_id":{"type":"string","description":"ID of the challenger","example":"Quia sed aut quo repellendus."},"message_type":{"type":"string","description":"type of the message","example":"Doloribus adipisci necessitatibus eum et nam omnis."},"observer_evaluation":{"$ref":"#/definitions/ObserverEvaluationDataResponse"},"observers":{"type":"array","items":{"type":"string","example":"Aspernatur necessitatibus cumque doloremque tempore neque qui."},"description":"List of observer IDs","example":["Illum est molestias deleniti aliquam dolorem.","Reprehenderit est laboriosam impedit amet error consequuntur.","Similique nobis deleniti.","Repudiandae omnis sit odio ab voluptate suscipit."]},"recipient_id":{"type":"string","description":"ID of the recipient","example":"Officia illo."},"response":{"$ref":"#/definitions/ResponseDataResponse"},"sender_id":{"type":"string","description":"ID of the sender's node","example":"Numquam unde dolorem saepe et consequatur qui."},"sender_signature":{"type":"string","description":"signature of the sender","example":"Illo et et rem."}},"description":"Storage challenge message data (default view)","example":{"challenge":{"block":626674453,"end_index":1362782358179080945,"file_hash":"Molestias aut beatae.","merkelroot":"Sint aut repellat consequatur dignissimos voluptatibus.","start_index":6285852628941175332,"timestamp":"Odio deleniti omnis maiores dolorem."},"challenge_id":"Consequatur voluptatem architecto et sed consequuntur maiores.","challenger_evaluation":{"block":346663458,"hash":"Voluptatem sint recusandae.","is_verified":true,"merkelroot":"Et rem ducimus maxime aut.","timestamp":"Fugit eaque nesciunt eum quasi."},"challenger_id":"Id repudiandae ullam quasi cum dolorum.","message_type":"Dolorem atque aut.","observer_evaluation":{"block":1725989442,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":false,"merkelroot":"Ut provident pariatur.","reason":"Ut quia repellendus.","timestamp":"Voluptas exercitationem quisquam id accusantium voluptatibus.","true_hash":"Architecto sit quidem deserunt rem dolore aut."},"observers":["Sint voluptas molestias repellendus.","Vitae harum.","Vel ex modi."],"recipient_id":"Consequuntur quis magnam.","response":{"block":2076283382,"hash":"Dolor autem quo vero quia quod omnis.","merkelroot":"Et ullam officiis libero.","timestamp":"Qui non quibusdam."},"sender_id":"Dolores rerum.","sender_signature":"Eligendi qui."},"required":["challenge_id","message_type","sender_id","challenger_id","observers","recipient_id"]},"TaskHistoryResponse":{"title":"TaskHistoryResponse","type":"object","properties":{"details":{"$ref":"#/definitions/DetailsResponse"},"message":{"type":"string","description":"message string (if any)","example":"Balance less than maximum fee provied in the request, could not gather enough confirmations..."},"status":{"type":"string","description":"past status string","example":"Started, Image Probed, Downloaded..."},"timestamp":{"type":"string","description":"Timestamp of the status creation","example":"2006-01-02T15:04:05Z07:00"}},"example":{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},"required":["status"]},"TaskResponseTiny":{"title":"Mediatype identifier: application/vnd.nft.register.task; view=default","type":"object","properties":{"id":{"type":"string","description":"JOb ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]},"ticket":{"$ref":"#/definitions/NftRegisterPayloadResponse"},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64}},"description":"TaskResponse result type (tiny view) (default view)","example":{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"required":["id","status","ticket"]},"TaskStateResponseBody":{"title":"TaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"ThumbnailcoordinateRequestBody":{"title":"Mediatype identifier: thumbnailcoordinate; view=default","type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail (default view)","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"ThumbnailcoordinateResponse":{"title":"Mediatype identifier: thumbnailcoordinate; view=default","type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail (default view)","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"ThumbnailcoordinateResponseBody":{"title":"Mediatype identifier: thumbnailcoordinate; view=default","type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail (default view)","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"UserImageUploadPayloadRequestBody":{"title":"UserImageUploadPayloadRequestBody","type":"object","properties":{"content":{"type":"string","description":"File to upload (byte array of the file content)","example":"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","format":"byte"},"filename":{"type":"string","description":"File name of the user image","example":"image_name.png","pattern":"^.*\\.(png|PNG|jpeg|JPEG|jpg|JPG)$"}},"description":"User image upload payload","example":{"content":"iVBORw0KGgoAAAANSUhEUgAAASoAAACpCAMAAACrt4DfAAABUFBMVEVPk//////m5ubl5eUkJUYwbP/k5OT60J360J7y8vLt7e34+Pj19fXw8PD5+fnr6+v61an60qMgFi9IkP9Qlf88i/9RmP9Djv//0pkuaf82iP/w7OQACj//1aH/1JUhZf83dP91pfoAADwQGEKgu/MbHkPhxLALXv/z7uOOtPyCq/jw9P4hHz3gwJ04eP8aYv/F0e2VtfX//PSvyf+/0/xEetVKiOwkGC3W3Ore6P0rQ3xpnvsGEkAuLEjgupALFUG3yfAAACe+t8qnr9nHvMZBPFFeU1x7oO/RvbqYquHbx71kjP0+gP/74sSKpv6StPbX5P+zxvBgjeJAXJo/RWlBW5VBYKY1RHNAcMQsJDgdFDNDV4opMFdRdLvZ3egnNWM1LDyGens7asO8oIjBqpZWTVo6OVRnYm54Z2eehnanjnvJqYqdgWiykW7sz62jrtzuoXzIAAAXaElEQVR4nOVd+18TSbbPg9CdEEK3nRdpQkSCBKIGAioIIqujzojy0Luu7syyO1dxVr139v//7dapU/1Kujt9qjshfu4ZHQ8JkJNvzvn2t05VV6XSYLMZZj7eAjilbCaTLYA35/XmwSuClwcvD17R682DNwdeAbwSeAvsF886Hn8xs9PJbJ3vtM+2Dw5SYNWDlY2z7Yutc/g1mesJKmN7WXBT1w0VvNj5zka10ajVaoZhpGxjXxi1WqNxsNHeynbM/+dQmZ3Zi41Uo1JzITRsDLFGamO3K2KeZqhmk4pKxGJ7x9upRjhKLrwYXNtbpjn2oEZDlc34eANRueKbHRXVrB3VrE9UmX56dzMyTA5clc1j0xxXUC4PobK9LIScmgVDbJhlfDyBFzMRkOUVwct7vTx4GBB4GBB4GIbl7W82KkScHLS2zMxYgkIPUfKggl4KUitrpZFf7flyw8Bn5/cpDjCC4/VLO9WGFE4CrUp5Z9ZMOKjA2nO8iUNlzm5UavI4WWiddacGKhdN+dEoOSqR9ebeSpyEcoHV2NxPKig/mgqCCgHK2l7GziXwCl5vDjyMCry818uDh1HZXgE8HtXegRxDBYFlJhEU9xyd51F8iAWmkrgCMsvanh+j+9EohuZDno5XcNGoebmZTEY5YG104wYVxugD3D4xCTqfaSeXUQ5YbV4NUyNBE4FqKxWbzP2sYjDpcG1QJSNBsx61112pjAMosMbKrCkX1EgJ6geVzeMkRh+g0XwQjc6ld6m6nGJG7diUCSpN4/bJqPXxpRRaZWXeHJdaz05SrZ8bY0wpNAMY68dX6+0xpxRapd3JTBQqX0YfVOsOec6Oiorl9biLz7Laihk1qAFG91XrPl5qASxdYmZ5ae4VvN4cePPgFb1eHry81ytaXqFbHnvxWWaUL6MFhd48eHPgFbxeCTyOBYCSdvAZr1o/H4uWCrLalvnDqvXdCRWfZZUL8wdV6zuNySLFyX0CUEk3jGfdUc06UfUnc+kbwGqjHxbUiIZx2usNNoxLNqPbXgGcOa83D17R6+W9Xt7jdbavASnGV2f9kKAWiuDNe7058Aper+T1OD6pbDZrcRfzMj6eSC3miYSyvCJ4ea+XBw8+u+vIKbDKhjkbGBRT68wTjM48wegeDxPK9rK2Ny4Jel1Isbxqd34otT55Rnes0jYDuT0WVNmslWAs07J22SGjOx4UYNYuQIvRmTeY6/Dr+rvXiBTD6rjvE5SAyi7ArFV2jrdgY5Hx8VIFMM7eQR7yuNfLe728x5s/v1akGFZb/aGgCkWvNx/kIbd7vZJLrTPksrbnx+h+3G6n1gB5dmNo9DK32FhdZoYY3fEKQdyOaeTjQflkxyFBJd9puVytlt/ev3//rVEFc0HG3Crtd5k/hFpfkRkhl6vl++8ePbxh2X+9++uH+29TVbQH99//7cZfCR+BsWKOCypIMNsb4HaH0YO43ZPrO3SZwNLpw6MbN+7cmXHszp07HLOHH/k/7LnfKNlaa5uBBejH7Q6j+3E7FuAcGLKY5c2DUwzy8l4v7/WK+2RKL1cfvPu7ByZ/e/iAglVlr+gXXpA3H+Q5+ASJhRFqfSChXKklAdSjh6NxYnaDBFUqlZBad8RCwhKUSlTl1K/RgKJmFaOrzlSrdWKHqlz98DEiUDM0rkqBEh2+DF6nWvcWYImIVOrXG1GBYlDR9AKjdvYmgwswolp3FeA8WBEsyMsHeflBr79JKr/q/egpxS6J76lQGZt930CLoz0/LELFAlGtZ7ZIMr36DwJQDKoPZGlbOfcXC1HV+oBY8KEpWQmaIX3s1fcPKUjN3LlPzSr2GlOq1vttSlJV3xNoCrF6X6XmVWWnf41qPaQAx4sUE1bvyANpo5ANLcCI/RcsQOQzsNFePszrbxA4XQYpllf/TBGxMs76I4OPikCgWKCq9cwlIamqH2g8ZWP121uquOoGJZSfWg8XC0lJUJMgFMoPSNc+t328T8PK2AijqetR63vR1We5/E9pqMhYQVqNWa37cHtYAZoEpqq+k0eKYUUcCm6MLMCoaj2fjM1Tyk+OqIRRub02X0zmLUYUCyO5naCpqo/iJBVwO0mLGm0zilqPIBZ8aEpGgkYPvfxARid4sKKNBo3MNKn14lZ0Uq/+Gi+pmD0kUXvteKJqfUQB9qN39Mrl2EjNzDwmsdVBP0IB+gySBwuQM5aUPHd5+wSlQOsn+ButBCuX5DfkhwpFLGQDxcI2QSn8LQGoZj5SRoPGthmWUJFbe4lI0Ohxl1OxlIJld95R0qpqTo1aJ0xold/+PQmoaI32yt5k1HqE4TKh/sofkqi/mZkblJ4oVCBxcsuvACnN9IC2epEQdQJSgdudXykVWE6iwR5jIt5KLcpIObZUt+0jAalUo5tEa8+HpogS1Lwg9PTKv0kB89vq4CM3KDK0tjMdat08IHy+5X/JILV09PutgYfu/DdpYcx41Dp1KVqG0P4sp2QGgGsvms1Pq2teqEhkVUlicoszFi5uGenlBzxOlCXC+E8Sqlvfm2rzaMZThHcekaDaw5CBs8UiGB9vPsjjy2ESmIjfoVCVDFSr/24qqtJs/rHkfvQLRVlZnRj6stlE1Tpl8YsUVEu6oqmaomrf3IRFugQaK+Y0qHXKpysD1dInXQVTlOb3Q4ewbtCaoZmE1brMjSMlyjI9CagOofwAKI1hpb04lIOqchl/KZqzgK807EVY4Fg8pkwq06Fa/YNBxOqP/Z+DZasGGlS13WK0ZY0le1ljqeD1HLEQof/ix+1zbcpCIQuqtWBsBpC6UhRdZzBZmdX8vLYmAZWxU7Sn5GWXzfrQFEmC0tZUIVSH36Ni9eSKZRKHSIW/KvvTPHq8KgHVZv/a1XqfotUFVEtH+pehkYqfHf7RhOqDtNJ1BpbKXe2PNTpUK0lBlZW+cWSOtFDPgqqp/XtwpDJsa0tfNcglTlMq1CHgxf45WiJDlUoVbLUue+OIc7vNgn0TktcTt5V6vLzzGGn5pwUV4+dPj5+EI7V0ddQEflI5TfF04n9U5a4EVA37xqQF+9Yjl2ffeuTySl6Pi4XA/stotZ65JC3pF1DdBc7Rvy6FVOHq4TeVIaVzmtKBr4CpeCGqMlkFfZiYN7nFlKAZygjQnVXsjTfv/r76xJff1w6f/K4xOcVggT/su6H6FMCNgaXKZFXl3IemJqrWMyRZ5WSVpgPvNPVvV4eDaK2tLn359GfTqjegde7CNVDhPyaTVbXd2FDF3JQpQ+nrebKKZQcfBB99u5pZOlxdXQNbfbK09vzrURMEuq6IslPgAggXP07w7AuZrBJQxdmUybk53t4YpuD1nG0EfDYPSF/IZRXDCXKGp1ZTP/r29esVs9+/fjvSGU7wMNIUTykVqw9+hOMlk1VGuxBp84C0vWXA4MYwsbekOJPIqltHQDuWDGDvnsFjmaKjLuDPMqRQJ3CKUqG/AIDdvSUB1ZkZYw/jRCQoZbEsh4pR9pe7ql1bOpQaoMX+MFdTBI/zJxlIAA48q6Fk56Lh6Mva4RoVqs2gedOJqXXarVrl1F+efwO5xPUkVBXnaqwsnWeQuNJpHDVedirgpCCkOr8YNvXvV38hQrWSEFTymzIR72qr/E+zCc0nztT8cgZ5AoWHpcbJSYeU4uXJhjKK1uSjG/YE5KIOQ0Gmypr/26BCFXdTJmR0/ozllbye2LzR8ooZvtWX8EwaVJWndd6mUzGlVCEHPn/7rOEVUcMrnsbbnlCkOj4J+PArIBYns/pTkqKDSZs03+pLNPnAQ7y8HiLn9Tg+cTeQo0FVe7aM7xOFN6cfVf3z8dKTW1calBa/LqI2V5DFtatbT5Ye/2kPl8XPMFt+Rrn4IlQSG8glJkGJWaWLt4k6gb99RXsMGnT1CqWDhmSlcznBvryCwc/aY10M/3QcEvLfoVNe2tj0oamJqnWTIhaMX0T54SiY85XS/IwTMbe+K3jN45KKExbTE5+xAbH0vcl/AuC1oFLrv1BeeyM2VDHVOmW9eqr2kw2VoB2A6isOmg8/NcU1j6ePysuw+Ql76atfm6JtxeWWgOonQgUa2xyqOGrdhs5vq/WBLXr9NualqPXaK7t4NKv9pHmyCmkelQL3bous+twElFRU7dYveUWBqg05E3Vj3rTXywToqmC1Pjc7XIW7UlAhDyEw6nPgqicvQBJoiKLCaR8EffMF56ovWJk616d2Af5Mee2LjFtXSW/3HEOCUqAynjlcxUHi0lPRnt86vMWQAv2pogjVeIWCNV+wJ5+r4hIAT2s2VM8oxX+cSUaCykN1TlE3Ly2twMFioxVsHzTvfjqyJvtQaumqBYvS/P7pSBNTERbfC7XwkvDSsMgxKbXux+0R1HqX0gWtvHIUqH3JF61gHXSUqgrJrirOo7qATigqm+9uUz6lymU2rlp3xELWTqisO6Fcnp1Qzs7KmQJJMx8sW8IKqUrX3VNXDEINmzNcnuPAhj+sCsLHsSH+hmXSXFHDZvSsfYxG1mZ0J7WydkINeqN1VfjhLBnCLVspEILLdTdV8VaCjtqcAaciJPz/qqArHNRojqSykKJt6mDMDdeexOEscZZ3EO4ZAasdvFqu1xUES7PeOS891SYrDo8mtAOiid/IOzIsxer15dsHtHE63j1yrSthiDt2MNJ4+exnoap4AWoCD8QC4BAJxQEEbLCzhYmIifbzs5fEXbKMzfhQxVTrs8Ud8s56RuW2yBDB4ry0OK2Ljp+G3I4jZpVfCjmf8QTTGJ+TN14z2liAZLXu4BN7LegcbXcTbrXbOLvHe0/I7eKCyBNJE/qUVyV37YTC6dPb9Jes7BZjrwX1qT3aUYqX9A3jGFSiU2UNfjUFu1GYZoro7CE3qXb6icV7MlA1SiNWGGfHL0GLJjlsgEpc+q13L9a5WLxlt/ZQMIirpFgUI5VV5Wk4oJPYseJQ/dTEtS2g11W8Eipi3IK0jqWmKUJTqVitWLG0jgKasTIKqshZ5b9wIdK69QxpLRpCxcaCtvTmC82YpNKFbLB6d1xpiVUwSPiq4Lc6qf2JUO0ksG497hUwTxsFYuDQ4kPqRnmFXI7zEK7xtMonanTnIaR2UksPrbKVnYoDOum8frCMk6L2MiAcPlupZrVpgOlRdSo4PkQVTxvRcKtNya2TdLIy7OUanKd0HYfDFq2L+lOFXkAOs9csqBp9O9sDcxJQjT6gky5Caz/XVUWsLxONT8VWUlb9qaLeeLdUxXWO8Aipo4dmXCyM6YBOSmchT+zDYOi/LNsrgngvTySVKqa2rApEOaVZg2ZMxWUJqtqzCjBOZwHTSL5fxbjdpG+FXbNmslChoyjAgSBvtIhRjia6obiyQWjUJvnVUtX0lBz5YxLuXbageopyQTSkdNGEwpl3PjGKc6b2xRDQQ7EgU38wWzMNt05mSHfkCqvWsbR4m0os9cSmKCyowjVV4sKIgpR3XwBRUpsYrbE/JqhoMzZ83pRegZWf6oro0om1UxZWuHbB7ouq2HOAwQ2vwzplRktYOT0EVawDOiXnAcGTqMBUucl7VtaCKhspDWdNVftiKFY3qmIxkYSowtlS0gGdaa/H8UnmgM6uRHfhP8uiUafjYiBLJUD9ieY6fo2DZZxaVupPJRowzgzE9R/QSbt7RGB1u8knZXDZnuqatFLscSCOlnGJEU9CRaPXesg9I9exLSFtSTYaMDtPKly86JphdwwXIqP0AtyIcw/cKrvFMUAlfUBnRuLoDKZD+fWOj4ndzO5CSuMJx5dDwvPLEuWXSsU7oNOBKmjVXsHrBa3aW8A9eU3S/sXCoBfDpYEuBsNOE8ESDnhDBNKUyoY0Eid5GW3XWr1Yq/YwjWbjHtBZkvm4a0+XsTfMswpr0JVZYnKC94zh3/ormWNfalN3QCdtUbawyvGyIgQTHxErYmU67/ip/D+rpaWrckgZG+a0bSIuoRcAK5AMumKPihW76SluiMARDaTXMr1NzF9hL+FNxDPxD+iUSqtU7aUuLoRisYIqAMOlDFxe8Wby8n+kkDI2zawDlfTdEIDViHtsSqPusbE9ybRKGdVXy5g7AA3vSGkisZDMOVD1Pw/kzjyrXEof0Dl0j00iap2vCpUY3eC7+UWpKzpyN78/AldaQaNPx/XXdYU+8YBWO+MJZTP69at1XD4ke9ZdLfWUy08+foZxHoxlrFuP4LGnKelfPZ1H/vTpjWNuZeN1rvvGutLxLp9iDWrgrq03xVyDunu/hVS7nyBUMe9d9hzQST8ShEHQuLnYOmG/o8PrTxU3kCii26d32FMnrdw92h011m83x3JAp+Qd8a4DOulHwkNCLeZyLd4lEQ1PTVWsWXj4C89st3Ls214b5ANHtvwO6JS+I95KniQO6KQcesCBusdwYtbjN8sKbERrwRouwzPnPfiuxcV7NLDgXpHpPaCTspecBVQut961oRrqLMAz3XXxjTSwaqUpPqBz4Ti6uHptAcWgKoVDVVq3vzX3OjJWld30OKCS2RfU74DOTsSZ5jIj89wAVNowUozeB6FavFmLBpa4AdApwNg7DfntXxV6VOeIAzojvY/yPRdQVgEOt6sYVG94Afbc3734Otq22PnSyAM6IxzL6dq/KvauaANehImuci3nQUrQ+ptAqHY9ULHEipC6jf1pP6AzQpOv/NoLFBMLbfjRvh9UXEK2WwM/sDhSZVV2kj8jPmmosqNW8Q0jlVs8SfunlaLxJ06Gf2IEuwNRJQ5V/H1B0wPcHj6BWr459L5ZBXKySg9BVedJ1V0f/onFe+FYDQYlrdZdBYi7zRaL1s6yYV6ee/PDXt7jhZ0R74uUkOvpN/UBpDhTcbE+jNXNEKwq3dJgUC6vOOwVuDcf5LHrWLIHdNqfXfCSR3+kmKV9sBJIpf1/IgSrxp45HNRUHdBpM0I/SIkGItU6RVQ6ij2rrCgdfOzUL6nCarCx2/cJasrUuhVLx/8yOCCn3LZ+nhaJpdShrVdXREqlz32YSmDlz+0BF7/rVOvBBcgGzm2fvPK59rnyal9Ak+503rx507e+6gbkVCBWlXZQUD4FGLH/ggWYwNkQfl7/bBirSghSTJR20z62nwv7odzwi9S2+xHCkzobIkgsUE4c8f0Uz4ZqMOw9M6xa5+kh222FIpVbHPo4ts2woGKdOJK4BLW5fcOLVflmOFSMr05LXqBKp4E8ZdkAtVfa/dCgpkut21EN8FUYUQlrLW64qrC7kQvhKSutXrtfo7EzKqhxqHXSmVv+ud65cGM1GikAq/d6e2e/293f2X7dGw0UmBup3dFBDRdgZLWeyEluAV7fabaX70V630BZvd76eq83gqSc73eugpWtfuyQw05ys5Mn3gGdaf/r8mVZjJ1rEd853RbFx2Gkuma0oGTPB0Q3WQnq4obMSi0ap8sbDnAqKxholKCmSK27oTLbjbEmFUsrYMRGmxDUWNW6bAGyXO9sGcY4kwoEg2Gc04KSOiE3P3YrLqw0xphU0BNdySd0tnKYJXWad9h1mY2ee+MswNYOhkcKSuI07/FJUBcjmJcnvdHvWc56J125oKZIrXti6VxEkN4S1spdyAd1DQd0Rsn1fvo0+Sps9V5mzBhBDQ6XwwswSKgnL977l+VkwVrsHez3ExflgR65tUcWC04XLWPun6wnBtbi+slWAkFN9IBOkto7P1lPhLNavZMtM6mg0lOh1oej2j9txQWLDalP9zpJBhVbrctOboXTqDm7fTNOHbZ6N7e7QLdJBhX5gE6/VrK3mS7VYA/oW8/1+7sHkbssAwnV6x1smcXkg/J6fliMYSI+hDwdr2O2T9YjNu9cOK2f7JRYYYwpqGlQ637csNAxd09z61GTq9XqtQ6Oxx3UNKh1v6jgZfd3yrleqxUG2CJj8fXcaXuvY04gKLpaH7EULb4wtsnT7Mweb5zeW+/1ADIHs0UGEUul9fV7Bxu7XYh5gkGNOKDTx6MvcJRZS1gq9c1+J7u1tb15enoimvD3Tk5PN7cvzrv9ft+cn594UMOo/B/J2Q2X8T0dSAAAAABJRU5ErkJggg==","filename":"image_name.png"},"required":["content"]},"UserImageUploadPayloadResponseBody":{"title":"UserImageUploadPayloadResponseBody","type":"object","properties":{"content":{"type":"string","description":"File to upload (byte array of the file content)","example":"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","format":"byte"},"filename":{"type":"string","description":"File name of the user image","example":"image_name.png","pattern":"^.*\\.(png|PNG|jpeg|JPEG|jpg|JPG)$"}},"description":"User image upload payload","example":{"content":"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","filename":"image_name.png"},"required":["content"]},"UserdatasCreateUserdataBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"createUserdata_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasCreateUserdataInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"createUserdata_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasCreateUserdataRequestBody":{"title":"UserdatasCreateUserdataRequestBody","type":"object","properties":{"avatar_image":{"$ref":"#/definitions/UserImageUploadPayloadRequestBody"},"biography":{"type":"string","description":"Biography of the user","example":"I'm a digital artist based in Paris, France. ...","maxLength":1024},"categories":{"type":"string","description":"The categories of user's work, separate by ,","example":"Manga\u0026Anime,3D,Comics"},"cover_photo":{"$ref":"#/definitions/UserImageUploadPayloadRequestBody"},"facebook_link":{"type":"string","description":"Facebook link of the user","example":"https://www.facebook.com/Williams_Scottish","maxLength":128},"location":{"type":"string","description":"Location of the user","example":"New York, US","maxLength":256},"native_currency":{"type":"string","description":"Native currency of user in ISO 4217 Alphabetic Code","example":"USD","minLength":3,"maxLength":3},"primary_language":{"type":"string","description":"Primary language of the user, follow ISO 639-2 standard","example":"en","maxLength":30},"realname":{"type":"string","description":"Real name of the user","example":"Williams Scottish","maxLength":256},"twitter_link":{"type":"string","description":"Twitter link of the user","example":"https://www.twitter.com/@Williams_Scottish","maxLength":128},"user_pastelid":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"user_pastelid_passphrase":{"type":"string","description":"Passphrase of the user's PastelID","example":"qwerasdf1234"}},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"},"required":["user_pastelid","user_pastelid_passphrase"]},"UserdatasCreateUserdataResponseBody":{"title":"UserdatasCreateUserdataResponseBody","type":"object","properties":{"avatar_image":{"type":"string","description":"Error detail on avatar","example":"","maxLength":256},"biography":{"type":"string","description":"Error detail on biography","example":"","maxLength":256},"categories":{"type":"string","description":"Error detail on categories","example":"","maxLength":256},"cover_photo":{"type":"string","description":"Error detail on cover photo","example":"","maxLength":256},"detail":{"type":"string","description":"The detail of why result is success/fail, depend on response_code","example":"All userdata is processed","maxLength":256},"facebook_link":{"type":"string","description":"Error detail on facebook_link","example":"","maxLength":256},"location":{"type":"string","description":"Error detail on location","example":"","maxLength":256},"native_currency":{"type":"string","description":"Error detail on native_currency","example":"","maxLength":256},"primary_language":{"type":"string","description":"Error detail on primary_language","example":"","maxLength":256},"realname":{"type":"string","description":"Error detail on realname","example":"","maxLength":256},"response_code":{"type":"integer","description":"Result of the request is success or not","example":0,"format":"int64"},"twitter_link":{"type":"string","description":"Error detail on twitter_link","example":"","maxLength":256}},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""},"required":["response_code","detail"]},"UserdatasGetUserdataBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getUserdata_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasGetUserdataInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getUserdata_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasGetUserdataNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getUserdata_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasGetUserdataResponseBody":{"title":"UserdatasGetUserdataResponseBody","type":"object","properties":{"avatar_image":{"$ref":"#/definitions/UserImageUploadPayloadResponseBody"},"biography":{"type":"string","description":"Biography of the user","example":"I'm a digital artist based in Paris, France. ...","maxLength":1024},"categories":{"type":"string","description":"The categories of user's work, separate by ,","example":"Manga\u0026Anime,3D,Comics"},"cover_photo":{"$ref":"#/definitions/UserImageUploadPayloadResponseBody"},"facebook_link":{"type":"string","description":"Facebook link of the user","example":"https://www.facebook.com/Williams_Scottish","maxLength":128},"location":{"type":"string","description":"Location of the user","example":"New York, US","maxLength":256},"native_currency":{"type":"string","description":"Native currency of user in ISO 4217 Alphabetic Code","example":"USD","minLength":3,"maxLength":3},"primary_language":{"type":"string","description":"Primary language of the user, follow ISO 639-2 standard","example":"en","maxLength":30},"realname":{"type":"string","description":"Real name of the user","example":"Williams Scottish","maxLength":256},"twitter_link":{"type":"string","description":"Twitter link of the user","example":"https://www.twitter.com/@Williams_Scottish","maxLength":128},"user_pastelid":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"user_pastelid_passphrase":{"type":"string","description":"Passphrase of the user's PastelID","example":"qwerasdf1234"}},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"},"required":["user_pastelid","user_pastelid_passphrase"]},"UserdatasUpdateUserdataBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"updateUserdata_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasUpdateUserdataInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"updateUserdata_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasUpdateUserdataRequestBody":{"title":"UserdatasUpdateUserdataRequestBody","type":"object","properties":{"avatar_image":{"$ref":"#/definitions/UserImageUploadPayloadRequestBody"},"biography":{"type":"string","description":"Biography of the user","example":"I'm a digital artist based in Paris, France. ...","maxLength":1024},"categories":{"type":"string","description":"The categories of user's work, separate by ,","example":"Manga\u0026Anime,3D,Comics"},"cover_photo":{"$ref":"#/definitions/UserImageUploadPayloadRequestBody"},"facebook_link":{"type":"string","description":"Facebook link of the user","example":"https://www.facebook.com/Williams_Scottish","maxLength":128},"location":{"type":"string","description":"Location of the user","example":"New York, US","maxLength":256},"native_currency":{"type":"string","description":"Native currency of user in ISO 4217 Alphabetic Code","example":"USD","minLength":3,"maxLength":3},"primary_language":{"type":"string","description":"Primary language of the user, follow ISO 639-2 standard","example":"en","maxLength":30},"realname":{"type":"string","description":"Real name of the user","example":"Williams Scottish","maxLength":256},"twitter_link":{"type":"string","description":"Twitter link of the user","example":"https://www.twitter.com/@Williams_Scottish","maxLength":128},"user_pastelid":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"user_pastelid_passphrase":{"type":"string","description":"Passphrase of the user's PastelID","example":"qwerasdf1234"}},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"},"required":["user_pastelid","user_pastelid_passphrase"]},"UserdatasUpdateUserdataResponseBody":{"title":"UserdatasUpdateUserdataResponseBody","type":"object","properties":{"avatar_image":{"type":"string","description":"Error detail on avatar","example":"","maxLength":256},"biography":{"type":"string","description":"Error detail on biography","example":"","maxLength":256},"categories":{"type":"string","description":"Error detail on categories","example":"","maxLength":256},"cover_photo":{"type":"string","description":"Error detail on cover photo","example":"","maxLength":256},"detail":{"type":"string","description":"The detail of why result is success/fail, depend on response_code","example":"All userdata is processed","maxLength":256},"facebook_link":{"type":"string","description":"Error detail on facebook_link","example":"","maxLength":256},"location":{"type":"string","description":"Error detail on location","example":"","maxLength":256},"native_currency":{"type":"string","description":"Error detail on native_currency","example":"","maxLength":256},"primary_language":{"type":"string","description":"Error detail on primary_language","example":"","maxLength":256},"realname":{"type":"string","description":"Error detail on realname","example":"","maxLength":256},"response_code":{"type":"integer","description":"Result of the request is success or not","example":0,"format":"int64"},"twitter_link":{"type":"string","description":"Error detail on twitter_link","example":"","maxLength":256}},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""},"required":["response_code","detail"]},"VerifiedTicketResponseBody":{"title":"VerifiedTicketResponseBody","type":"object","properties":{"is_reconstruction_required":{"type":"boolean","example":false},"is_verified":{"type":"boolean","example":true},"message":{"type":"string","example":"Soluta ex."},"missing_keys":{"type":"array","items":{"type":"string","example":"Quo eius."},"example":["Iusto illo autem.","Ea quae ut.","Sed et est."]},"reconstructed_file_hash":{"type":"string","example":"U2ltaWxpcXVlIG51bGxhIHBhcmlhdHVyIGRvbG9yaWJ1cyBuaWhpbCBxdWlhLg==","format":"byte"},"ticket_type":{"type":"string","example":"Est eveniet."},"tx_id":{"type":"string","example":"Aspernatur molestiae natus culpa voluptatem."}},"example":{"is_reconstruction_required":true,"is_verified":true,"message":"Dolore fugiat asperiores.","missing_keys":["Quia aut et.","Perspiciatis debitis consequatur.","Ducimus velit nulla hic provident.","Et quia unde."],"reconstructed_file_hash":"U3VudCBxdWlhIHZpdGFlIG9mZmljaWlzIGRvbG9yLg==","ticket_type":"Omnis qui dolore aut assumenda quam.","tx_id":"Aut ipsa dolores laborum."}}},"securityDefinitions":{"api_key_header_Authorization":{"type":"apiKey","description":"Nft Owner's passphrase to authenticate","name":"Authorization","in":"header"}}} \ No newline at end of file +{"swagger":"2.0","info":{"title":"WalletNode REST API","version":"1.0"},"host":"localhost:8080","consumes":["application/json","application/xml","application/gob"],"produces":["application/json","application/xml","application/gob"],"paths":{"/collection/register":{"post":{"tags":["collection"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"collection#registerCollection","parameters":[{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":false,"type":"string"},{"name":"RegisterCollectionRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/CollectionRegisterCollectionRequestBody","required":["collection_name","item_type","list_of_pastelids_of_authorized_contributors","max_collection_entries","max_permitted_open_nsfw_score","minimum_similarity_score_to_first_entry_in_collection","app_pastelid","spendable_address"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/collection/{taskId}/history":{"get":{"tags":["collection"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"collection#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/TaskHistoryResponse"}}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CollectionGetTaskHistoryNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CollectionGetTaskHistoryInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/collection/{taskId}/state":{"get":{"tags":["collection"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"collection#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/CollectionRegisterTaskStateResponseBody","required":["date","status"]}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CollectionRegisterTaskStateNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CollectionRegisterTaskStateInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/healthcheck_challenge/detailed_logs":{"get":{"tags":["HealthCheckChallenge"],"summary":"Fetches health-check-challenge reports","description":"Fetches health-check-challenge reports","operationId":"HealthCheckChallenge#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch health-check-challenge reports for","required":true,"type":"string"},{"name":"challenge_id","in":"query","description":"ChallengeID of the health check challenge to fetch their logs","required":false,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/HcDetailedLogsMessageResponse"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetDetailedLogsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetDetailedLogsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetDetailedLogsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetDetailedLogsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/healthcheck_challenge/summary_stats":{"get":{"tags":["HealthCheckChallenge"],"summary":"Fetches summary stats","description":"Fetches summary stats data over a specified time range","operationId":"HealthCheckChallenge#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"to","in":"query","description":"End time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","required":true,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts":{"get":{"tags":["nft"],"summary":"Returns the detail of NFT","description":"Gets the NFT detail","operationId":"nft#nftGet","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftNftGetResponseBody","required":["rareness_score","nsfw_score","is_likely_dupe","is_rare_on_internet","title","description","creator_name","copies","creator_pastelid","txid"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/NftNftGetBadRequestResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftNftGetNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftNftGetInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/download":{"get":{"tags":["nft"],"summary":"Downloads NFT","description":"Download registered NFT.","operationId":"nft#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftDownloadResponseBody","required":["file_id"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/NftDownloadUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftDownloadNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftDownloadInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/get_dd_result_file":{"get":{"tags":["nft"],"summary":"Duplication detection output file","description":"Duplication detection output file","operationId":"nft#ddServiceOutputFile","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileResponseBody","required":["file"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/get_dd_results":{"get":{"tags":["nft"],"summary":"Duplication detection output file details","description":"Duplication detection output file details","operationId":"nft#ddServiceOutputFileDetail","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileDetailResponseBody","required":["creator_name","creator_website","creator_written_statement","nft_title","nft_series_name","nft_creation_video_youtube_url","nft_keyword_set","total_copies","preview_hash","thumbnail1_hash","thumbnail2_hash","original_file_size_in_bytes","file_type","max_permitted_open_nsfw_score"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileDetailUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileDetailNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileDetailInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/register":{"get":{"tags":["nft"],"summary":"Returns list of tasks","description":"List of all tasks.","operationId":"nft#registerTasks","responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftTaskResponseTinyCollection"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftRegisterTasksInternalServerErrorResponseBody"}}},"schemes":["http"]},"post":{"tags":["nft"],"summary":"Registers a new NFT","description":"Runs a new registration process for the new NFT.","operationId":"nft#register","parameters":[{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"},{"name":"RegisterRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/NftRegisterRequestBody","required":["image_id","creator_name","name","creator_pastelid","spendable_address","maximum_fee"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/NftRegisterResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/NftRegisterBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/NftRegisterUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftRegisterInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/register/upload":{"post":{"tags":["nft"],"summary":"Uploads an image","description":"Upload the image that is used when registering a new NFT.","operationId":"nft#uploadImage","consumes":["multipart/form-data"],"parameters":[{"name":"UploadImageRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/NftUploadImageRequestBody","required":["file"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/NftUploadImageResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/NftUploadImageBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftUploadImageInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/nfts/register/{taskId}":{"get":{"tags":["nft"],"summary":"Find task by ID","description":"Returns a single task.","operationId":"nft#registerTask","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftRegisterTaskResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftRegisterTaskNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftRegisterTaskInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/nfts/register/{taskId}/state":{"get":{"tags":["nft"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"nft#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/NftRegisterTaskStateResponseBody","required":["date","status"]}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftRegisterTaskStateNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftRegisterTaskStateInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/nfts/search":{"get":{"tags":["nft"],"summary":"Streams the search result for NFT","description":"Streams the search result for NFT","operationId":"nft#nftSearch","parameters":[{"name":"artist","in":"query","description":"Artist PastelID or special value; mine","required":false,"type":"string","maxLength":256},{"name":"limit","in":"query","description":"Number of results to be return","required":false,"type":"integer","default":10,"maximum":200,"minimum":10},{"name":"query","in":"query","description":"Query is search query entered by user","required":true,"type":"string"},{"name":"creator_name","in":"query","description":"Name of the nft creator","required":false,"type":"boolean","default":true},{"name":"art_title","in":"query","description":"Title of NFT","required":false,"type":"boolean","default":true},{"name":"series","in":"query","description":"NFT series name","required":false,"type":"boolean","default":true},{"name":"descr","in":"query","description":"Artist written statement","required":false,"type":"boolean","default":true},{"name":"keyword","in":"query","description":"Keyword that Artist assigns to NFT","required":false,"type":"boolean","default":true},{"name":"min_copies","in":"query","description":"Minimum number of created copies","required":false,"type":"integer","maximum":1000,"minimum":1},{"name":"max_copies","in":"query","description":"Maximum number of created copies","required":false,"type":"integer","maximum":1000,"minimum":1},{"name":"min_block","in":"query","description":"Minimum blocknum","required":false,"type":"integer","default":1,"minimum":1},{"name":"max_block","in":"query","description":"Maximum blocknum","required":false,"type":"integer","minimum":1},{"name":"is_likely_dupe","in":"query","description":"Is this image likely a duplicate of another known image","required":false,"type":"boolean"},{"name":"min_rareness_score","in":"query","description":"Minimum pastel rareness score","required":false,"type":"number","maximum":1,"minimum":0},{"name":"max_rareness_score","in":"query","description":"Maximum pastel rareness score","required":false,"type":"number","maximum":1,"minimum":0},{"name":"min_nsfw_score","in":"query","description":"Minimum nsfw score","required":false,"type":"number","maximum":1,"minimum":0},{"name":"max_nsfw_score","in":"query","description":"Maximum nsfw score","required":false,"type":"number","maximum":1,"minimum":0},{"name":"user_pastelid","in":"header","description":"User's PastelID","required":false,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"user_passphrase","in":"header","description":"Passphrase of the User PastelID","required":false,"type":"string"}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/NftNftSearchResponseBody","required":["nft","matches","match_index"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/NftNftSearchBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftNftSearchInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/nfts/{taskId}/history":{"get":{"tags":["nft"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"nft#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/TaskHistoryResponse"}}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftGetTaskHistoryNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftGetTaskHistoryInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/nodes/challenges_score":{"get":{"tags":["Score"],"summary":"Fetches aggregated challenges score for sc and hc","description":"Fetches aggregated challenges score for SC and HC","operationId":"Score#getAggregatedChallengesScores","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","required":true,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/ChallengesScoresResponse"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ScoreGetAggregatedChallengesScoresBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ScoreGetAggregatedChallengesScoresUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ScoreGetAggregatedChallengesScoresNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ScoreGetAggregatedChallengesScoresInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/download":{"get":{"tags":["cascade"],"summary":"Downloads cascade artifact","description":"Download cascade Artifact.","operationId":"cascade#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CascadeDownloadResponseBody","required":["file_id"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CascadeDownloadUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CascadeDownloadNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeDownloadInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/downloads/{file_id}/status":{"get":{"tags":["cascade"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the state of download task","operationId":"cascade#getDownloadTaskState","parameters":[{"name":"file_id","in":"path","description":"File ID returned by Download V2 API","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/TaskHistoryResponse"}}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CascadeGetDownloadTaskStateNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeGetDownloadTaskStateInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/cascade/registration_details/{base_file_id}":{"get":{"tags":["cascade"],"summary":"Get the file registration details","description":"Get the file registration details","operationId":"cascade#registrationDetails","parameters":[{"name":"base_file_id","in":"path","description":"Base file ID","required":true,"type":"string","maxLength":8}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeRegistrationDetailsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeRegistrationDetailsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CascadeRegistrationDetailsUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeRegistrationDetailsInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/cascade/restore/{base_file_id}":{"post":{"tags":["cascade"],"summary":"Restore the file details for registration, activation and multi-volume pastel","description":"Restore the files cascade registration","operationId":"cascade#restore","parameters":[{"name":"base_file_id","in":"path","description":"Base file ID","required":true,"type":"string","maxLength":8},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"},{"name":"RestoreRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/CascadeRestoreRequestBody","required":["app_pastelId"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeRestoreResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeRestoreBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CascadeRestoreUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeRestoreInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/start/{file_id}":{"post":{"tags":["cascade"],"summary":"Starts processing the image","description":"Start processing the image","operationId":"cascade#startProcessing","parameters":[{"name":"file_id","in":"path","description":"Uploaded asset file ID","required":true,"type":"string","maxLength":8,"minLength":8},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"},{"name":"StartProcessingRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/CascadeStartProcessingRequestBody","required":["app_pastelid"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeStartProcessingResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeStartProcessingBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CascadeStartProcessingUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeStartProcessingInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/start/{taskId}/state":{"get":{"tags":["cascade"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"cascade#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/CascadeRegisterTaskStateResponseBody","required":["date","status"]}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CascadeRegisterTaskStateNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeRegisterTaskStateInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/openapi/cascade/upload":{"post":{"tags":["cascade"],"summary":"Uploads Action Data","description":"Upload the asset file","operationId":"cascade#uploadAsset","consumes":["multipart/form-data"],"parameters":[{"name":"UploadAssetRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/CascadeUploadAssetRequestBody","required":["file"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeUploadAssetResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeUploadAssetBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeUploadAssetInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/cascade/v2/download":{"get":{"tags":["cascade"],"summary":"Downloads cascade artifact","description":"Starts downloading cascade Artifact.","operationId":"cascade#downloadV2","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CascadeDownloadV2ResponseBody","required":["file_id"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CascadeDownloadV2UnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CascadeDownloadV2NotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeDownloadV2InternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/v2/upload":{"post":{"tags":["cascade"],"summary":"Uploads Cascade File","description":"Upload the asset file - This endpoint is for the new version of the upload endpoint that supports larger files as well.","operationId":"cascade#uploadAssetV2","consumes":["multipart/form-data"],"parameters":[{"name":"UploadAssetV2RequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/CascadeUploadAssetV2RequestBody","required":["file"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeUploadAssetV2ResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeUploadAssetV2BadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeUploadAssetV2InternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/cascade/{taskId}/history":{"get":{"tags":["cascade"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"cascade#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/TaskHistoryResponse"}}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CascadeGetTaskHistoryNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeGetTaskHistoryInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/sense/download":{"get":{"tags":["sense"],"summary":"Download sense result; duplication detection results file.","description":"Download sense result; duplication detection results file.","operationId":"sense#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/SenseDownloadResponseBody","required":["file"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/SenseDownloadUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SenseDownloadNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseDownloadInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/sense/start/{image_id}":{"post":{"tags":["sense"],"summary":"Starts processing the image","description":"Start processing the image","operationId":"sense#startProcessing","parameters":[{"name":"image_id","in":"path","description":"Uploaded image ID","required":true,"type":"string","maxLength":8,"minLength":8},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"},{"name":"StartProcessingRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/SenseStartProcessingRequestBody","required":["burn_txid","app_pastelid"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/SenseStartProcessingResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/SenseStartProcessingBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/SenseStartProcessingUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseStartProcessingInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/sense/start/{taskId}/state":{"get":{"tags":["sense"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"sense#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/SenseRegisterTaskStateResponseBody","required":["date","status"]}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SenseRegisterTaskStateNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseRegisterTaskStateInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/openapi/sense/upload":{"post":{"tags":["sense"],"summary":"Uploads Action Data","description":"Upload the image","operationId":"sense#uploadImage","consumes":["multipart/form-data"],"parameters":[{"name":"UploadImageRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/SenseUploadImageRequestBody","required":["file"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/SenseUploadImageResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/SenseUploadImageBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseUploadImageInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/sense/{taskId}/history":{"get":{"tags":["sense"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"sense#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/TaskHistoryResponse"}}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SenseGetTaskHistoryNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseGetTaskHistoryInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/self_healing/detailed_logs":{"get":{"tags":["metrics"],"summary":"Fetches self-healing reports","description":"Fetches self-healing reports","operationId":"metrics#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch self-healing reports for","required":true,"type":"string"},{"name":"event_id","in":"query","description":"Specific event ID to fetch reports for","required":false,"type":"string"},{"name":"count","in":"query","description":"Number of reports to fetch","required":false,"type":"integer"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/self_healing/summary_stats":{"get":{"tags":["metrics"],"summary":"Fetches metrics data","description":"Fetches metrics data over a specified time range","operationId":"metrics#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"to","in":"query","description":"End time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","required":true,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/storage_challenges/detailed_logs":{"get":{"tags":["StorageChallenge"],"summary":"Fetches storage-challenge reports","description":"Fetches storage-challenge reports","operationId":"StorageChallenge#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch storage-challenge reports for","required":true,"type":"string"},{"name":"challenge_id","in":"query","description":"ChallengeID of the storage challenge to fetch their logs","required":false,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/StorageMessageResponse"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/StorageChallengeGetDetailedLogsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/StorageChallengeGetDetailedLogsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/StorageChallengeGetDetailedLogsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/StorageChallengeGetDetailedLogsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/storage_challenges/summary_stats":{"get":{"tags":["StorageChallenge"],"summary":"Fetches summary stats","description":"Fetches summary stats data over a specified time range","operationId":"StorageChallenge#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"to","in":"query","description":"End time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","required":true,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/userdatas/create":{"post":{"tags":["userdatas"],"summary":"Create new user data","description":"Create new user data","operationId":"userdatas#createUserdata","consumes":["multipart/form-data"],"parameters":[{"name":"CreateUserdataRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/UserdatasCreateUserdataRequestBody","required":["user_pastelid","user_pastelid_passphrase"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UserdatasCreateUserdataResponseBody","required":["response_code","detail"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UserdatasCreateUserdataBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UserdatasCreateUserdataInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/userdatas/update":{"post":{"tags":["userdatas"],"summary":"Update user data for an existing user","description":"Update user data for an existing user","operationId":"userdatas#updateUserdata","consumes":["multipart/form-data"],"parameters":[{"name":"UpdateUserdataRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/UserdatasUpdateUserdataRequestBody","required":["user_pastelid","user_pastelid_passphrase"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UserdatasUpdateUserdataResponseBody","required":["response_code","detail"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UserdatasUpdateUserdataBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UserdatasUpdateUserdataInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/userdatas/{pastelid}":{"get":{"tags":["userdatas"],"summary":"Returns the detail of Userdata","description":"Gets the Userdata detail","operationId":"userdatas#getUserdata","parameters":[{"name":"pastelid","in":"path","description":"Artist's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UserdatasGetUserdataResponseBody","required":["user_pastelid","user_pastelid_passphrase"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UserdatasGetUserdataBadRequestResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/UserdatasGetUserdataNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UserdatasGetUserdataInternalServerErrorResponseBody"}}},"schemes":["http"]}}},"definitions":{"ActivationAttemptResponseBody":{"title":"ActivationAttemptResponseBody","type":"object","properties":{"activation_attempt_at":{"type":"string","description":"Activation Attempt At in datetime format","example":"1994-08-24T10:47:19Z","format":"date-time"},"error_message":{"type":"string","description":"Error Message","example":"Sequi similique delectus."},"file_id":{"type":"string","description":"File ID","example":"Excepturi inventore quia beatae sint."},"id":{"type":"integer","description":"ID","example":3778441935395154647,"format":"int64"},"is_successful":{"type":"boolean","description":"Indicates if the activation was successful","example":false}},"example":{"activation_attempt_at":"1980-04-13T23:50:31Z","error_message":"Omnis enim quaerat sint temporibus sapiente.","file_id":"Odio commodi autem ullam sunt.","id":1568822808774503567,"is_successful":true},"required":["id","file_id","activation_attempt_at"]},"AlternativeNSFWScoresResponseBody":{"title":"AlternativeNSFWScoresResponseBody","type":"object","properties":{"drawings":{"type":"number","description":"drawings nsfw score","example":0.7990714,"format":"float"},"hentai":{"type":"number","description":"hentai nsfw score","example":0.54859966,"format":"float"},"neutral":{"type":"number","description":"neutral nsfw score","example":0.7412531,"format":"float"},"porn":{"type":"number","description":"porn nsfw score","example":0.9034763,"format":"float"},"sexy":{"type":"number","description":"sexy nsfw score","example":0.69847727,"format":"float"}},"example":{"drawings":0.15022062,"hentai":0.7648291,"neutral":0.7316899,"porn":0.8834867,"sexy":0.7595724}},"CascadeDownloadInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeDownloadNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeDownloadResponseBody":{"title":"CascadeDownloadResponseBody","type":"object","properties":{"file_id":{"type":"string","description":"File path","example":"Ut ea rerum deleniti quae natus."}},"example":{"file_id":"Explicabo vel praesentium similique."},"required":["file_id"]},"CascadeDownloadUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeDownloadV2InternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"downloadV2_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeDownloadV2NotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"downloadV2_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeDownloadV2ResponseBody":{"title":"CascadeDownloadV2ResponseBody","type":"object","properties":{"file_id":{"type":"string","description":"Task ID for the download task - caller can check the status of the download task using this task_id","example":"Voluptas vel vel dicta harum ex quas."}},"example":{"file_id":"Accusamus numquam."},"required":["file_id"]},"CascadeDownloadV2UnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"downloadV2_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeGetDownloadTaskStateInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDownloadTaskState_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeGetDownloadTaskStateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDownloadTaskState_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeGetTaskHistoryInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getTaskHistory_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeGetTaskHistoryNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegisterTaskStateInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTaskState_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegisterTaskStateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTaskState_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegisterTaskStateResponseBody":{"title":"CascadeRegisterTaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"CascadeRegistrationDetailsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registrationDetails_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegistrationDetailsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registrationDetails_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegistrationDetailsResponseBody":{"title":"Mediatype identifier: application/vnd.cascade.registration-detail; view=default","type":"object","properties":{"files":{"type":"array","items":{"$ref":"#/definitions/FileResponseBody"},"description":"List of files","example":[{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."},{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."}]}},"description":"RegistrationDetailsResponseBody result type (default view)","example":{"files":[{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."},{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."},{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."},{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."}]},"required":["files"]},"CascadeRegistrationDetailsUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registrationDetails_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRestoreBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"restore_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRestoreInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"restore_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRestoreRequestBody":{"title":"CascadeRestoreRequestBody","type":"object","properties":{"app_pastelId":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelId":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["app_pastelId"]},"CascadeRestoreResponseBody":{"title":"Mediatype identifier: application/vnd.cascade.restore-files; view=default","type":"object","properties":{"activated_volumes":{"type":"integer","description":"Total volumes that are activated","example":2179505416296102007,"format":"int64"},"registered_volumes":{"type":"integer","description":"Total registered volumes","example":6597285476160611200,"format":"int64"},"total_volumes":{"type":"integer","description":"Total volumes of selected file","example":7119702643343716727,"format":"int64"},"volumes_activated_in_recovery_flow":{"type":"integer","description":"Total volumes that are activated in restore process","example":2688818931699507667,"format":"int64"},"volumes_registration_in_progress":{"type":"integer","description":"Total volumes with in-progress registration","example":1071003580025551546,"format":"int64"},"volumes_with_pending_registration":{"type":"integer","description":"Total volumes with pending registration","example":1809131097697126008,"format":"int64"}},"description":"RestoreResponseBody result type (default view)","example":{"activated_volumes":6197761208295789992,"registered_volumes":8577705285909327427,"total_volumes":8346182040873375707,"volumes_activated_in_recovery_flow":451603711559925012,"volumes_registration_in_progress":6021041156532863970,"volumes_with_pending_registration":9023197240308074166},"required":["total_volumes","registered_volumes","volumes_with_pending_registration","volumes_registration_in_progress","activated_volumes","volumes_activated_in_recovery_flow"]},"CascadeRestoreUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"restore_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeStartProcessingBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"startProcessing_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeStartProcessingInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"startProcessing_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeStartProcessingRequestBody":{"title":"CascadeStartProcessingRequestBody","type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"burn_txids":{"type":"array","items":{"type":"string","example":"Nam ullam quia repellendus cupiditate."},"description":"List of Burn transaction IDs for multi-volume registration","example":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"]},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","burn_txids":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"],"make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["app_pastelid"]},"CascadeStartProcessingResponseBody":{"title":"Mediatype identifier: application/sense.start-processing; view=default","type":"object","properties":{"task_id":{"type":"string","description":"Task ID of processing task","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"description":"StartProcessingResponseBody result type (default view)","example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"CascadeStartProcessingUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"startProcessing_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadAsset_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadAsset_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetRequestBody":{"title":"CascadeUploadAssetRequestBody","type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"RXN0IHJlcnVtIHNhZXBlIGNvbnNlcXV1bnR1ci4=","format":"byte"},"filename":{"type":"string","description":"For internal use"},"hash":{"type":"string","description":"For internal use"},"size":{"type":"integer","description":"For internal use","format":"int64"}},"example":{"file":"Q29tbW9kaSBxdWlidXNkYW0gdm9sdXB0YXRlbSBxdWFtIGl0YXF1ZSBsaWJlcm8u"},"required":["file"]},"CascadeUploadAssetResponseBody":{"title":"Mediatype identifier: application/vnd.cascade.upload-file; view=default","type":"object","properties":{"expires_in":{"type":"string","description":"File expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"file_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_amount":{"type":"number","description":"The amount that's required to be preburned","default":1,"example":20,"format":"double","minimum":0.00001},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"description":"UploadAssetResponseBody result type (default view)","example":{"expires_in":"2006-01-02T15:04:05Z07:00","file_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100},"required":["file_id","expires_in","total_estimated_fee"]},"CascadeUploadAssetV2BadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadAssetV2_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetV2InternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"uploadAssetV2_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetV2RequestBody":{"title":"CascadeUploadAssetV2RequestBody","type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"U2FwaWVudGUgb21uaXMgb21uaXMgY29ycnVwdGku","format":"byte"},"filename":{"type":"string","description":"-For internal use-"},"hash":{"type":"string","description":"For internal use"},"size":{"type":"integer","description":"For internal use","format":"int64"}},"example":{"file":"RXQgZG9sb3JlIGRvbG9yZS4="},"required":["file"]},"CascadeUploadAssetV2ResponseBody":{"title":"Mediatype identifier: application/vnd.cascade.upload-file-v2; view=default","type":"object","properties":{"file_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_transaction_amounts":{"type":"array","items":{"type":"number","example":0.366335541724773,"format":"double"},"description":"The amounts that's required to be preburned - one per transaction","example":[0.07989768565530223,0.9643054195750016,0.026381384166493292]},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"description":"UploadAssetV2ResponseBody result type (default view)","example":{"file_id":"VK7mpAqZ","required_preburn_transaction_amounts":[0.640392446585282,0.9646679397509296,0.7193760763377638],"total_estimated_fee":100},"required":["file_id","total_estimated_fee"]},"ChallengeDataResponse":{"title":"ChallengeDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":875709855,"format":"int32"},"end_index":{"type":"integer","description":"End index","example":5122269723773644481,"format":"int64"},"file_hash":{"type":"string","description":"File hash","example":"Non itaque."},"merkelroot":{"type":"string","description":"Merkelroot","example":"Suscipit eius officia illo provident fuga minima."},"start_index":{"type":"integer","description":"Start index","example":6542642547904299742,"format":"int64"},"timestamp":{"type":"string","description":"Timestamp","example":"Nihil deserunt."}},"description":"Data of challenge","example":{"block":1779406359,"end_index":1866814163046970754,"file_hash":"Quibusdam molestiae consequatur.","merkelroot":"Voluptatem omnis quidem veritatis.","start_index":1597917383536378215,"timestamp":"A adipisci."},"required":["timestamp","file_hash","start_index","end_index"]},"ChallengesScoresResponse":{"title":"ChallengesScoresResponse","type":"object","properties":{"health_check_challenge_score":{"type":"number","description":"Total accumulated HC challenge score","example":0.12859021407559276,"format":"double"},"ip_address":{"type":"string","description":"IPAddress of the node","example":"Odio et sit mollitia."},"node_id":{"type":"string","description":"Specific node id","example":"Maxime ex in."},"storage_challenge_score":{"type":"number","description":"Total accumulated SC challenge score","example":0.1891036046680823,"format":"double"}},"description":"Combined accumulated scores for HC and SC challenges","example":{"health_check_challenge_score":0.2958604036605215,"ip_address":"Et ut.","node_id":"Veritatis voluptatem.","storage_challenge_score":0.9764465239514757},"required":["node_id","storage_challenge_score","health_check_challenge_score"]},"CollectionGetTaskHistoryInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CollectionGetTaskHistoryNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterCollectionBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerCollection_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterCollectionInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerCollection_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterCollectionNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerCollection_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterCollectionRequestBody":{"title":"CollectionRegisterCollectionRequestBody","type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"collection_item_copy_count":{"type":"integer","description":"item copy count in the collection","default":1,"example":10,"format":"int64","minimum":1,"maximum":1000},"collection_name":{"type":"string","description":"name of the collection","example":"galaxies"},"green":{"type":"boolean","description":"green","default":false,"example":false},"item_type":{"type":"string","description":"type of items, store by collection","example":"sense","enum":["sense","nft"]},"list_of_pastelids_of_authorized_contributors":{"type":"array","items":{"type":"string","example":"Voluptatem ut."},"description":"list of authorized contributors","example":["apple","banana","orange"]},"max_collection_entries":{"type":"integer","description":"max no of entries in the collection","example":5000,"format":"int64","minimum":1,"maximum":10000},"max_permitted_open_nsfw_score":{"type":"number","description":"max open nfsw score sense and nft items can have","example":0.5,"format":"double","minimum":0,"maximum":1},"minimum_similarity_score_to_first_entry_in_collection":{"type":"number","description":"min similarity for 1st entry to have","example":0.5,"format":"double","minimum":0,"maximum":1},"no_of_days_to_finalize_collection":{"type":"integer","description":"no of days to finalize collection","default":7,"example":5,"format":"int64","minimum":1,"maximum":7},"royalty":{"type":"number","description":"royalty fee","default":0,"example":2.32,"format":"double","minimum":0,"maximum":20},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","collection_item_copy_count":10,"collection_name":"galaxies","green":false,"item_type":"sense","list_of_pastelids_of_authorized_contributors":["apple","banana","orange"],"max_collection_entries":5000,"max_permitted_open_nsfw_score":0.5,"minimum_similarity_score_to_first_entry_in_collection":0.5,"no_of_days_to_finalize_collection":5,"royalty":2.32,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["collection_name","item_type","list_of_pastelids_of_authorized_contributors","max_collection_entries","max_permitted_open_nsfw_score","minimum_similarity_score_to_first_entry_in_collection","app_pastelid","spendable_address"]},"CollectionRegisterCollectionResponseBody":{"title":"Mediatype identifier: application/collection-registration; view=default","type":"object","properties":{"task_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"description":"RegisterCollectionResponseBody result type (default view)","example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"CollectionRegisterCollectionUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerCollection_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterTaskStateInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTaskState_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterTaskStateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTaskState_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterTaskStateResponseBody":{"title":"CollectionRegisterTaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"DetailsResponse":{"title":"DetailsResponse","type":"object","properties":{"fields":{"type":"object","description":"important fields regarding status history","example":{"Perferendis saepe laudantium fugit est laborum fugiat.":"Inventore doloribus voluptates provident odio."},"additionalProperties":true},"message":{"type":"string","description":"details regarding the status","example":"Image has been downloaded..."}},"example":{"fields":{"Nam doloribus suscipit.":"Laboriosam vel dolor.","Qui voluptatem placeat.":"Temporibus veritatis consequatur odit ad soluta."},"message":"Image has been downloaded..."}},"EvaluationDataResponse":{"title":"EvaluationDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":492103627,"format":"int32"},"hash":{"type":"string","description":"Hash","example":"Est facere ipsam."},"is_verified":{"type":"boolean","description":"IsVerified","example":true},"merkelroot":{"type":"string","description":"Merkelroot","example":"Sed in voluptatum sint."},"timestamp":{"type":"string","description":"Timestamp","example":"Consequuntur vel maxime culpa quis provident."}},"description":"Data of evaluation","example":{"block":1898436385,"hash":"Molestias modi autem non.","is_verified":false,"merkelroot":"Quo officiis itaque.","timestamp":"Sit est soluta dolorem."},"required":["timestamp","hash","is_verified"]},"EventTicketResponseBody":{"title":"EventTicketResponseBody","type":"object","properties":{"data_hash":{"type":"string","example":"UXVpIGN1cGlkaXRhdGUgZW5pbSBpc3RlLg==","format":"byte"},"missing_keys":{"type":"array","items":{"type":"string","example":"Rerum facilis mollitia ipsa eligendi."},"example":["Aliquam nisi fugiat quisquam quasi quia odit.","Rerum omnis nostrum ipsa maxime.","Porro deleniti dolores ipsum impedit.","Nisi nisi qui."]},"recipient":{"type":"string","example":"Eaque possimus sint sequi."},"ticket_type":{"type":"string","example":"Aut iste voluptas recusandae est dignissimos vitae."},"tx_id":{"type":"string","example":"Voluptas enim qui natus voluptatem sed."}},"example":{"data_hash":"T2RpdCBkb2xvcmVtcXVlIGVzdCBxdWlzLg==","missing_keys":["Aut consequatur impedit quo.","Voluptas doloribus sint repellendus."],"recipient":"Dolorum soluta esse.","ticket_type":"Commodi earum facere aut sint unde hic.","tx_id":"Et totam ipsa."}},"FileResponseBody":{"title":"FileResponseBody","type":"object","properties":{"activation_attempts":{"type":"array","items":{"$ref":"#/definitions/ActivationAttemptResponseBody"},"description":"List of activation attempts","example":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}]},"activation_txid":{"type":"string","description":"Activation Transaction ID","example":"Est et."},"base_file_id":{"type":"string","description":"Base File ID","example":"Sunt explicabo deserunt ducimus."},"burn_txn_id":{"type":"string","description":"Burn Transaction ID","example":"Est occaecati."},"cascade_metadata_ticket_id":{"type":"string","description":"Cascade Metadata Ticket ID","example":"A recusandae iste qui nisi dolore."},"done_block":{"type":"integer","description":"Done Block","example":2693504273438558162,"format":"int64"},"file_id":{"type":"string","description":"File ID","example":"Neque cumque temporibus nihil cupiditate."},"file_index":{"type":"string","description":"Index of the file","example":"Voluptate ea eaque."},"hash_of_original_big_file":{"type":"string","description":"Hash of the Original Big File","example":"Pariatur labore neque inventore."},"is_concluded":{"type":"boolean","description":"Indicates if the process is concluded","example":false},"name_of_original_big_file_with_ext":{"type":"string","description":"Name of the Original Big File with Extension","example":"Laudantium facere eveniet molestiae rerum."},"reg_txid":{"type":"string","description":"Registration Transaction ID","example":"Accusantium quidem."},"registration_attempts":{"type":"array","items":{"$ref":"#/definitions/RegistrationAttemptResponseBody"},"description":"List of registration attempts","example":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}]},"req_amount":{"type":"number","description":"Required Amount","example":0.8930021225471915,"format":"double"},"req_burn_txn_amount":{"type":"number","description":"Required Burn Transaction Amount","example":0.45409536176152293,"format":"double"},"size_of_original_big_file":{"type":"number","description":"Size of the Original Big File","example":0.22020594122264722,"format":"double"},"start_block":{"type":"integer","description":"Start Block","example":515011423,"format":"int32"},"task_id":{"type":"string","description":"Task ID","example":"Saepe ipsum harum voluptas."},"upload_timestamp":{"type":"string","description":"Upload Timestamp in datetime format","example":"1998-09-22T13:33:43Z","format":"date-time"},"uuid_key":{"type":"string","description":"UUID Key","example":"Non amet voluptatem commodi aut id in."}},"example":{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Asperiores vel maiores autem similique quidem dolorum.","base_file_id":"Molestiae exercitationem expedita excepturi ut.","burn_txn_id":"Nostrum et non deserunt atque.","cascade_metadata_ticket_id":"Quam quae quo magnam dolores possimus voluptas.","done_block":8868352654748958460,"file_id":"Est quia adipisci impedit aut est.","file_index":"Distinctio id et nam commodi laboriosam asperiores.","hash_of_original_big_file":"Neque ut rem exercitationem distinctio quis.","is_concluded":true,"name_of_original_big_file_with_ext":"Quia quas.","reg_txid":"Consequatur voluptatum magni suscipit.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.27763473389923016,"req_burn_txn_amount":0.6119857638900763,"size_of_original_big_file":0.10082508271893759,"start_block":615727266,"task_id":"Alias error unde recusandae cum nihil accusantium.","upload_timestamp":"2015-07-05T12:51:38Z","uuid_key":"Enim ut."},"required":["file_id","task_id","upload_timestamp","base_file_id","registration_attempts","activation_attempts","req_burn_txn_amount","req_amount","cascade_metadata_ticket_id","hash_of_original_big_file","name_of_original_big_file_with_ext","size_of_original_big_file"]},"FuzzyMatchResponseBody":{"title":"FuzzyMatchResponseBody","type":"object","properties":{"field_type":{"type":"string","description":"Field that is matched","example":"descr","enum":["creator_name","art_title","series","descr","keyword"]},"matched_indexes":{"type":"array","items":{"type":"integer","example":1297848066207075025,"format":"int64"},"description":"The indexes of matched characters. Useful for highlighting matches","example":[4944821981227295978,7696049836370677537]},"score":{"type":"integer","description":"Score used to rank matches","example":3540831787478733547,"format":"int64"},"str":{"type":"string","description":"String that is matched","example":"Aliquam dolores qui."}},"example":{"field_type":"art_title","matched_indexes":[5781461325567943992,7778000128542107932,393922963514480715,7666036538901003714],"score":2350702824716827735,"str":"Cumque incidunt."}},"HCChallengeDataResponse":{"title":"HCChallengeDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":1182365695,"format":"int32"},"merkelroot":{"type":"string","description":"Merkelroot","example":"Iste molestias ut fugiat aliquam."},"timestamp":{"type":"string","description":"Timestamp","example":"Enim sequi iure commodi."}},"description":"Data of challenge","example":{"block":1901942244,"merkelroot":"Aut earum.","timestamp":"Alias voluptatibus incidunt."},"required":["timestamp"]},"HCEvaluationDataResponse":{"title":"HCEvaluationDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":197096783,"format":"int32"},"is_verified":{"type":"boolean","description":"IsVerified","example":true},"merkelroot":{"type":"string","description":"Merkelroot","example":"Optio assumenda."},"timestamp":{"type":"string","description":"Timestamp","example":"Dolores nihil et voluptatibus et."}},"description":"Data of evaluation","example":{"block":769361874,"is_verified":true,"merkelroot":"Cupiditate laboriosam quo.","timestamp":"Sunt excepturi beatae."},"required":["timestamp","is_verified"]},"HCObserverEvaluationDataResponse":{"title":"HCObserverEvaluationDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":1059087820,"format":"int32"},"is_challenge_timestamp_ok":{"type":"boolean","description":"IsChallengeTimestampOK","example":true},"is_challenger_signature_ok":{"type":"boolean","description":"IsChallengerSignatureOK","example":true},"is_evaluation_result_ok":{"type":"boolean","description":"IsEvaluationResultOK","example":false},"is_evaluation_timestamp_ok":{"type":"boolean","description":"IsEvaluationTimestampOK","example":true},"is_process_timestamp_ok":{"type":"boolean","description":"IsProcessTimestampOK","example":true},"is_recipient_signature_ok":{"type":"boolean","description":"IsRecipientSignatureOK","example":true},"merkelroot":{"type":"string","description":"Merkelroot","example":"Id sed voluptatem illum dolorum ad."},"timestamp":{"type":"string","description":"Timestamp","example":"Voluptas officiis dolorum accusantium."}},"description":"Data of Observer's evaluation","example":{"block":918637735,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Rerum quia rem possimus quas ut enim.","timestamp":"Id illum magnam qui ab quia sint."},"required":["timestamp","is_challenge_timestamp_ok","is_process_timestamp_ok","is_evaluation_timestamp_ok","is_recipient_signature_ok","is_challenger_signature_ok","is_evaluation_result_ok"]},"HCResponseDataResponse":{"title":"HCResponseDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":364084968,"format":"int32"},"merkelroot":{"type":"string","description":"Merkelroot","example":"Sed itaque aspernatur."},"timestamp":{"type":"string","description":"Timestamp","example":"Reiciendis iste rerum."}},"description":"Data of response","example":{"block":711181662,"merkelroot":"Nihil voluptates et dolores necessitatibus.","timestamp":"Fugit in quasi in nam nulla voluptatum."},"required":["timestamp"]},"HCSummaryStatsResponseBody":{"title":"HCSummaryStatsResponseBody","type":"object","properties":{"no_of_invalid_evaluation_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid evaluation evaluated by observers","example":4604695734958777723,"format":"int64"},"no_of_invalid_signatures_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid signatures evaluated by observers","example":7485695140201372489,"format":"int64"},"no_of_slow_responses_observed_by_observers":{"type":"integer","description":"challenges failed due to slow-responses evaluated by observers","example":1632022695562066844,"format":"int64"},"total_challenges_evaluated_by_challenger":{"type":"integer","description":"Total number of challenges evaluated by the challenger node","example":674107399872224815,"format":"int64"},"total_challenges_issued":{"type":"integer","description":"Total number of challenges issued","example":6914397698957621249,"format":"int64"},"total_challenges_processed_by_recipient":{"type":"integer","description":"Total number of challenges processed by the recipient node","example":4629615492889085672,"format":"int64"},"total_challenges_verified":{"type":"integer","description":"Total number of challenges verified by observers","example":3352956423211727314,"format":"int64"}},"description":"HealthCheck-Challenge SummaryStats","example":{"no_of_invalid_evaluation_observed_by_observers":5649605762979780077,"no_of_invalid_signatures_observed_by_observers":7332727558518661660,"no_of_slow_responses_observed_by_observers":3131725833324719182,"total_challenges_evaluated_by_challenger":1436962756631232283,"total_challenges_issued":3528725344947929638,"total_challenges_processed_by_recipient":1010277493024632963,"total_challenges_verified":3169339276919008696},"required":["total_challenges_issued","total_challenges_processed_by_recipient","total_challenges_evaluated_by_challenger","total_challenges_verified","no_of_slow_responses_observed_by_observers","no_of_invalid_signatures_observed_by_observers","no_of_invalid_evaluation_observed_by_observers"]},"HcDetailedLogsMessageResponse":{"title":"Mediatype identifier: application/vnd.hc_detailed_logs.message; view=default","type":"object","properties":{"challenge":{"$ref":"#/definitions/HCChallengeDataResponse"},"challenge_id":{"type":"string","description":"ID of the challenge","example":"Odit molestiae incidunt quod."},"challenger_evaluation":{"$ref":"#/definitions/HCEvaluationDataResponse"},"challenger_id":{"type":"string","description":"ID of the challenger","example":"Voluptatem aut neque et."},"message_type":{"type":"string","description":"type of the message","example":"Sed maiores."},"observer_evaluation":{"$ref":"#/definitions/HCObserverEvaluationDataResponse"},"observers":{"type":"array","items":{"type":"string","example":"Dolore eveniet cum."},"description":"List of observer IDs","example":["Aut voluptate laudantium cumque eum.","Et velit delectus."]},"recipient_id":{"type":"string","description":"ID of the recipient","example":"Debitis ut quis beatae."},"response":{"$ref":"#/definitions/HCResponseDataResponse"},"sender_id":{"type":"string","description":"ID of the sender's node","example":"Quia molestias fugiat."},"sender_signature":{"type":"string","description":"signature of the sender","example":"Rerum nisi ratione rerum temporibus blanditiis."}},"description":"HealthCheck challenge message data (default view)","example":{"challenge":{"block":161855103,"merkelroot":"Occaecati in reiciendis quia repudiandae.","timestamp":"Necessitatibus sed est sunt."},"challenge_id":"Et in eligendi ut voluptate vel.","challenger_evaluation":{"block":372559801,"is_verified":false,"merkelroot":"Impedit quis autem et et neque.","timestamp":"Explicabo dolore."},"challenger_id":"Voluptates quisquam quo esse sed veritatis sunt.","message_type":"Et itaque distinctio culpa vitae neque nihil.","observer_evaluation":{"block":1881554591,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":false,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Hic voluptas doloremque eligendi et magni.","timestamp":"Perspiciatis earum."},"observers":["Laboriosam doloremque qui et.","Sit nesciunt et hic et est maxime.","Est libero."],"recipient_id":"Sequi eum odio delectus eos officiis.","response":{"block":1874672230,"merkelroot":"Voluptate ipsa et ut dicta temporibus ut.","timestamp":"Deserunt mollitia est a labore."},"sender_id":"Laudantium numquam ut ea facilis aut blanditiis.","sender_signature":"Animi impedit."},"required":["challenge_id","message_type","sender_id","challenger_id","observers","recipient_id"]},"HealthCheckChallengeGetDetailedLogsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetDetailedLogsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetDetailedLogsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetDetailedLogsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_Unauthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetSummaryStatsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetSummaryStatsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetSummaryStatsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetSummaryStatsResponseBody":{"title":"Mediatype identifier: application/vnd.hc_summary_stats.result; view=default","type":"object","properties":{"hc_summary_stats":{"$ref":"#/definitions/HCSummaryStatsResponseBody"}},"description":"GetSummaryStatsResponseBody result type (default view)","example":{"hc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":17085067897739032,"no_of_invalid_signatures_observed_by_observers":1070531802164886396,"no_of_slow_responses_observed_by_observers":2452954398688763778,"total_challenges_evaluated_by_challenger":1497037936453433297,"total_challenges_issued":5146044089880070113,"total_challenges_processed_by_recipient":5356106859537814149,"total_challenges_verified":5844922895958038468}},"required":["hc_summary_stats"]},"HealthCheckChallengeGetSummaryStatsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_Unauthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"InternetRarenessResponseBody":{"title":"InternetRarenessResponseBody","type":"object","properties":{"alternative_rare_on_internet_dict_as_json_compressed_b64":{"type":"string","description":"Base64 Compressed Json of Alternative Rare On Internet Dict","example":"Non ea dicta ex consequatur consequatur."},"earliest_available_date_of_internet_results":{"type":"string","description":"Earliest Available Date of Internet Results","example":"Aut ducimus iure."},"min_number_of_exact_matches_in_page":{"type":"integer","description":"Minimum Number of Exact Matches on Page","example":3655150683,"format":"int32"},"rare_on_internet_graph_json_compressed_b64":{"type":"string","description":"Base64 Compressed JSON of Rare On Internet Graph","example":"Dolor eum vel."},"rare_on_internet_summary_table_as_json_compressed_b64":{"type":"string","description":"Base64 Compressed JSON Table of Rare On Internet Summary","example":"Esse reiciendis tenetur iusto nihil sed."}},"example":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Quis ea qui dolore esse quaerat.","earliest_available_date_of_internet_results":"Est et quo necessitatibus fuga velit ipsum.","min_number_of_exact_matches_in_page":3174641601,"rare_on_internet_graph_json_compressed_b64":"Est quidem cumque consequuntur et debitis.","rare_on_internet_summary_table_as_json_compressed_b64":"Commodi consequatur unde qui adipisci labore voluptate."}},"MetricsGetDetailedLogsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetDetailedLogsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetDetailedLogsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetDetailedLogsResponseBody":{"title":"MetricsGetDetailedLogsResponseBody","type":"object","properties":{"reports":{"type":"array","items":{"$ref":"#/definitions/SelfHealingReportKVResponseBody"},"description":"Map of challenge ID to SelfHealingReport","example":[{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}]}},"example":{"reports":[{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}]}},"MetricsGetDetailedLogsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_Unauthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetSummaryStatsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetSummaryStatsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetSummaryStatsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetSummaryStatsResponseBody":{"title":"Mediatype identifier: application/vnd.metrics.result; view=default","type":"object","properties":{"self_healing_execution_events_stats":{"$ref":"#/definitions/SHExecutionStatsResponseBody"},"self_healing_trigger_events_stats":{"type":"array","items":{"$ref":"#/definitions/SHTriggerStatsResponseBody"},"description":"Self-healing trigger stats","example":[{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."}]}},"description":"GetSummaryStatsResponseBody result type (default view)","example":{"self_healing_execution_events_stats":{"total_file_healing_failed":5551622164662787660,"total_files_healed":8671724886982383594,"total_reconstruction_not_required_evaluations_approved":3509617877318915873,"total_reconstruction_required_evaluations_approved":2598935111695686044,"total_reconstruction_required_evaluations_not_approved":645871039112296182,"total_reconstruction_required_hash_mismatch":6198218032159021896,"total_reconstructions_not_required_evaluations_not_approved":6224481363842689139,"total_self_healing_events_accepted":5676342644268881237,"total_self_healing_events_acknowledged":305624170386109632,"total_self_healing_events_evaluations_unverified":1687102203985295374,"total_self_healing_events_evaluations_verified":7201039114224972892,"total_self_healing_events_issued":7624509276581647432,"total_self_healing_events_rejected":8106553798825109777},"self_healing_trigger_events_stats":[{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."}]},"required":["self_healing_trigger_events_stats","self_healing_execution_events_stats"]},"MetricsGetSummaryStatsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_Unauthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileDetailInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"ddServiceOutputFileDetail_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileDetailNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"ddServiceOutputFileDetail_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileDetailResponseBody":{"title":"NftDdServiceOutputFileDetailResponseBody","type":"object","properties":{"alternative_nsfw_scores":{"$ref":"#/definitions/AlternativeNSFWScoresResponseBody"},"candidate_image_thumbnail_webp_as_base64_string":{"type":"string","description":"candidate image thumbnail as base64 string","example":"Perspiciatis et accusantium fuga sit in."},"child_probability":{"type":"number","description":"child probability","example":0.8271751,"format":"float"},"collection_name_string":{"type":"string","description":"name of the collection","example":"Quis ex dolor eveniet provident."},"cp_probability":{"type":"number","description":"probability of CP","example":0.9250763,"format":"float"},"creator_name":{"type":"string","description":"name of the creator","example":"Alias non magni eum et."},"creator_website":{"type":"string","description":"website of creator","example":"Recusandae et nulla et et."},"creator_written_statement":{"type":"string","description":"written statement of creator","example":"At ipsum minima."},"does_not_impact_the_following_collection_strings":{"type":"string","description":"does not impact collection strings","example":"Voluptatem est quisquam tenetur."},"dupe_detection_system_version":{"type":"string","description":"system version of dupe detection","example":"Autem ea optio est voluptatem deserunt exercitationem."},"file_type":{"type":"string","description":"type of the file","example":"Et sit et omnis non ad."},"group_rareness_score":{"type":"number","description":"rareness score of the group","example":0.31847075,"format":"float"},"hash_of_candidate_image_file":{"type":"string","description":"hash of candidate image file","example":"Distinctio eum."},"image_file_path":{"type":"string","description":"file path of the image","example":"At sequi eaque."},"image_fingerprint_of_candidate_image_file":{"type":"array","items":{"type":"number","example":0.04346560909053385,"format":"double"},"description":"Image fingerprint of candidate image file","example":[0.8265343444104936,0.9072128208585332,0.20518572772379823]},"internet_rareness":{"$ref":"#/definitions/InternetRarenessResponseBody"},"is_likely_dupe":{"type":"boolean","description":"is this nft likely a duplicate","example":false},"is_pastel_openapi_request":{"type":"boolean","description":"is pastel open API request","example":false},"is_rare_on_internet":{"type":"boolean","description":"is this nft rare on the internet","example":false},"max_permitted_open_nsfw_score":{"type":"number","description":"max permitted open NSFW score","example":0.562778188429247,"format":"double"},"nft_creation_video_youtube_url":{"type":"string","description":"nft creation video youtube url","example":"In officia quia."},"nft_keyword_set":{"type":"string","description":"keywords for NFT","example":"Sint et occaecati ad consectetur dolor."},"nft_series_name":{"type":"string","description":"series name of NFT","example":"Reprehenderit soluta doloremque dolorum rerum dolor facere."},"nft_title":{"type":"string","description":"title of NFT","example":"Aut voluptatem labore."},"open_api_group_id_string":{"type":"string","description":"open api group id string","example":"Maiores aspernatur explicabo et nobis."},"open_nsfw_score":{"type":"number","description":"open nsfw score","example":0.0067218044,"format":"float"},"original_file_size_in_bytes":{"type":"integer","description":"original file size in bytes","example":1727768664143466560,"format":"int64"},"overall_rareness_score":{"type":"number","description":"pastel rareness score","example":0.06350944,"format":"float"},"pastel_block_hash_when_request_submitted":{"type":"string","description":"block hash when request submitted","example":"Dolorum maxime corrupti magnam et et voluptatem."},"pastel_block_height_when_request_submitted":{"type":"string","description":"block Height when request submitted","example":"Eligendi laboriosam dignissimos nihil explicabo laboriosam est."},"pastel_id_of_registering_supernode_1":{"type":"string","description":"pastel id of registering SN1","example":"Quia dicta eveniet quod."},"pastel_id_of_registering_supernode_2":{"type":"string","description":"pastel id of registering SN2","example":"Occaecati quam est."},"pastel_id_of_registering_supernode_3":{"type":"string","description":"pastel id of registering SN3","example":"Sed quia corrupti vel."},"pastel_id_of_submitter":{"type":"string","description":"pastel id of the submitter","example":"Rerum omnis."},"pct_of_top_10_most_similar_with_dupe_prob_above_25pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 25 PCT","example":0.41605514,"format":"float"},"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 33 PCT","example":0.60499537,"format":"float"},"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 50 PCT","example":0.9858219,"format":"float"},"preview_hash":{"type":"string","description":"preview hash of NFT","example":"SW4gcG9ycm8gaW52ZW50b3JlIG5lcXVlIGlwc2EgcGVyZmVyZW5kaXMu","format":"byte"},"rareness_scores_table_json_compressed_b64":{"type":"string","description":"rareness scores table json compressed b64","example":"Velit non voluptatum et eos porro ipsa."},"similarity_score_to_first_entry_in_collection":{"type":"number","description":"similarity score to first entry in collection","example":0.6376665,"format":"float"},"thumbnail1_hash":{"type":"string","description":"thumbnail1 hash of NFT","example":"RG9sb3JlcyBtb2xlc3RpYXMgaXN0ZSB1dCBsYWJvcnVtIG1pbnVzIHF1b2Qu","format":"byte"},"thumbnail2_hash":{"type":"string","description":"thumbnail2 hash of NFT","example":"QW1ldCBub2JpcyB2b2x1cHRhdGVzIHVsbGFtLg==","format":"byte"},"total_copies":{"type":"integer","description":"total copies of NFT","example":5973698838483140961,"format":"int64"},"utc_timestamp_when_request_submitted":{"type":"string","description":"timestamp of request when submitted","example":"Et vel."}},"example":{"alternative_nsfw_scores":{"drawings":0.053542916,"hentai":0.17044726,"neutral":0.01989352,"porn":0.7542108,"sexy":0.24790263},"candidate_image_thumbnail_webp_as_base64_string":"Magni quo aut aut a accusantium voluptas.","child_probability":0.2722556,"collection_name_string":"Doloribus aut.","cp_probability":0.080685355,"creator_name":"Consequatur asperiores.","creator_website":"Ut libero expedita necessitatibus at.","creator_written_statement":"Soluta totam ratione est quos fugit omnis.","does_not_impact_the_following_collection_strings":"Ea possimus quam.","dupe_detection_system_version":"Sint aliquam.","file_type":"Repudiandae id non sit.","group_rareness_score":0.39976165,"hash_of_candidate_image_file":"Porro itaque molestias eos officiis.","image_file_path":"Est aut nobis ullam quia voluptatem.","image_fingerprint_of_candidate_image_file":[0.2337053625785891,0.7606478372985767,0.4816506910655517,0.6600616570929657],"internet_rareness":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Magnam pariatur aut facilis.","earliest_available_date_of_internet_results":"Sed repudiandae voluptas dolor aut velit voluptatem.","min_number_of_exact_matches_in_page":1704813535,"rare_on_internet_graph_json_compressed_b64":"Aliquid provident eveniet.","rare_on_internet_summary_table_as_json_compressed_b64":"Quisquam corporis qui nobis dignissimos."},"is_likely_dupe":false,"is_pastel_openapi_request":true,"is_rare_on_internet":false,"max_permitted_open_nsfw_score":0.21702853924721482,"nft_creation_video_youtube_url":"Praesentium ipsam autem.","nft_keyword_set":"Doloremque doloribus.","nft_series_name":"Eos distinctio et et veniam.","nft_title":"Cumque consequatur animi.","open_api_group_id_string":"Incidunt est.","open_nsfw_score":0.32370627,"original_file_size_in_bytes":430969822399397072,"overall_rareness_score":0.94536245,"pastel_block_hash_when_request_submitted":"Et voluptatem aspernatur.","pastel_block_height_when_request_submitted":"Est soluta repudiandae autem occaecati aspernatur est.","pastel_id_of_registering_supernode_1":"Dolores beatae magni et cupiditate quidem.","pastel_id_of_registering_supernode_2":"Est eos alias pariatur adipisci omnis deleniti.","pastel_id_of_registering_supernode_3":"Eaque nesciunt tempore sequi fugit.","pastel_id_of_submitter":"Delectus necessitatibus in.","pct_of_top_10_most_similar_with_dupe_prob_above_25pct":0.0005365054,"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":0.34399658,"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":0.8091386,"preview_hash":"SWQgZXQu","rareness_scores_table_json_compressed_b64":"Magni qui culpa sed quia quam.","similarity_score_to_first_entry_in_collection":0.9801496,"thumbnail1_hash":"UmVjdXNhbmRhZSBsYWJvcmlvc2FtLg==","thumbnail2_hash":"UG9zc2ltdXMgc2l0IHN1bnQgZXhwZWRpdGEgcXVpLg==","total_copies":1640767363046307917,"utc_timestamp_when_request_submitted":"Incidunt similique natus consequatur."},"required":["creator_name","creator_website","creator_written_statement","nft_title","nft_series_name","nft_creation_video_youtube_url","nft_keyword_set","total_copies","preview_hash","thumbnail1_hash","thumbnail2_hash","original_file_size_in_bytes","file_type","max_permitted_open_nsfw_score"]},"NftDdServiceOutputFileDetailUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"ddServiceOutputFileDetail_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"ddServiceOutputFile_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"ddServiceOutputFile_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileResponseBody":{"title":"NftDdServiceOutputFileResponseBody","type":"object","properties":{"file":{"type":"string","description":"File downloaded","example":"Occaecati tenetur non est ea."}},"example":{"file":"Sit et consequatur laudantium aut."},"required":["file"]},"NftDdServiceOutputFileUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"ddServiceOutputFile_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDownloadInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDownloadNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDownloadResponseBody":{"title":"NftDownloadResponseBody","type":"object","properties":{"file_id":{"type":"string","description":"File path","example":"Velit temporibus quo quaerat dolores deleniti."}},"example":{"file_id":"Et sint."},"required":["file_id"]},"NftDownloadUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"download_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftGetTaskHistoryInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftGetTaskHistoryNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftNftGetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"nftGet_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftNftGetInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"nftGet_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftNftGetNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"nftGet_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftNftGetResponseBody":{"title":"NftNftGetResponseBody","type":"object","properties":{"alt_rare_on_internet_dict_json_b64":{"type":"string","description":"Base64 Compressed Json of Alternative Rare On Internet Dict","example":"Autem reiciendis aliquam iusto voluptates."},"copies":{"type":"integer","description":"Number of copies","default":1,"example":1,"format":"int64","minimum":1,"maximum":1000},"creator_name":{"type":"string","description":"Name of the artist","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"Artist website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"drawing_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"earliest_date_of_results":{"type":"string","description":"Earliest Available Date of Internet Results","example":"Quis quos nihil."},"green_address":{"type":"boolean","description":"Green address","example":true},"hentai_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"is_likely_dupe":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"is_rare_on_internet":{"type":"boolean","description":"is this nft rare on the internet","example":false},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"min_num_exact_matches_on_page":{"type":"integer","description":"Minimum Number of Exact Matches on Page","example":2347840671,"format":"int32"},"neutral_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"nsfw_score":{"type":"number","description":"NSFW Average score","example":1,"format":"float","minimum":0,"maximum":1},"porn_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"preview_thumbnail":{"type":"string","description":"Preview Image","example":"TWluaW1hIG9jY2FlY2F0aSB0ZW5ldHVyIGlwc2FtIGlkIG1vbGxpdGlhLg==","format":"byte"},"rare_on_internet_graph_json_b64":{"type":"string","description":"Base64 Compressed JSON of Rare On Internet Graph","example":"Perspiciatis quam ut accusamus."},"rare_on_internet_summary_table_json_b64":{"type":"string","description":"Base64 Compressed JSON Table of Rare On Internet Summary","example":"Voluptatum quis magnam molestias harum repellendus et."},"rareness_score":{"type":"number","description":"Average pastel rareness score","example":1,"format":"float","minimum":0,"maximum":1},"royalty":{"type":"number","description":"how much artist should get on all future resales","example":0.2540148801977663,"format":"double"},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"sexy_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"storage_fee":{"type":"integer","description":"Storage fee %","example":100,"format":"int64"},"thumbnail_1":{"type":"string","description":"Thumbnail_1 image","example":"RWFxdWUgb21uaXMgdm9sdXB0YXMgbW9kaSBmdWdhLg==","format":"byte"},"thumbnail_2":{"type":"string","description":"Thumbnail_2 image","example":"SW4gdGVtcG9yYS4=","format":"byte"},"title":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"version":{"type":"integer","description":"version","example":1,"format":"int64"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"example":{"alt_rare_on_internet_dict_json_b64":"Voluptas voluptatibus similique omnis.","copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","drawing_nsfw_score":1,"earliest_date_of_results":"Error in quis ipsam esse sequi.","green_address":true,"hentai_nsfw_score":1,"is_likely_dupe":false,"is_rare_on_internet":false,"keywords":"Renaissance, sfumato, portrait","min_num_exact_matches_on_page":3236303469,"neutral_nsfw_score":1,"nsfw_score":1,"porn_nsfw_score":1,"preview_thumbnail":"UXVhc2kgb2ZmaWNpYSB2b2x1cHRhdGVtIGV2ZW5pZXQu","rare_on_internet_graph_json_b64":"Iste similique velit accusamus illo.","rare_on_internet_summary_table_json_b64":"Itaque officia at deleniti.","rareness_score":1,"royalty":0.4964943668435947,"series_name":"Famous artist","sexy_nsfw_score":1,"storage_fee":100,"thumbnail_1":"RWFxdWUgZXhwbGljYWJvIGVsaWdlbmRpIGF1dC4=","thumbnail_2":"RG9sb3JpYnVzIG5vYmlzIG9mZmljaWEgY29uc2VxdXVudHVyIHNlZCBsYWJvcmlvc2FtIG1vbGVzdGlhZS4=","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","version":1,"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["rareness_score","nsfw_score","is_likely_dupe","is_rare_on_internet","title","description","creator_name","copies","creator_pastelid","txid"]},"NftNftSearchBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"nftSearch_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftNftSearchInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"nftSearch_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftNftSearchResponseBody":{"title":"NftNftSearchResponseBody","type":"object","properties":{"match_index":{"type":"integer","description":"Sort index of the match based on score.This must be used to sort results on UI.","example":4366201559533369601,"format":"int64"},"matches":{"type":"array","items":{"$ref":"#/definitions/FuzzyMatchResponseBody"},"description":"Match result details","example":[{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."}]},"nft":{"$ref":"#/definitions/NftSummaryResponseBody"}},"example":{"match_index":2902776548633802113,"matches":[{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."}],"nft":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"UmF0aW9uZSBlc3QgZmFjaWxpcy4=","thumbnail_2":"TnVsbGEgbGFib3J1bSBxdW9zIHZlbC4=","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}},"required":["nft","matches","match_index"]},"NftRegisterBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"register_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"register_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterPayloadResponse":{"title":"NftRegisterPayloadResponse","type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"key":{"type":"string","description":"Passphrase of the owner's PastelID","example":"Basic abcdef12345"},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Accusantium possimus exercitationem iusto debitis cumque."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/definitions/ThumbnailcoordinateResponse"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"Request of the registration NFT","example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Et et.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["creator_name","name","creator_pastelid","spendable_address","maximum_fee","key"]},"NftRegisterPayloadResponseBody":{"title":"NftRegisterPayloadResponseBody","type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"key":{"type":"string","description":"Passphrase of the owner's PastelID","example":"Basic abcdef12345"},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Optio mollitia."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/definitions/ThumbnailcoordinateResponseBody"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"Request of the registration NFT","example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Aliquam ad veritatis consequuntur fugiat.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["creator_name","name","creator_pastelid","spendable_address","maximum_fee","key"]},"NftRegisterRequestBody":{"title":"NftRegisterRequestBody","type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Et rerum a voluptas dolor similique vero."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/definitions/ThumbnailcoordinateRequestBody"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"image_id":"VK7mpAqZ","issued_copies":1,"keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ex necessitatibus commodi saepe non nobis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["image_id","creator_name","name","creator_pastelid","spendable_address","maximum_fee"]},"NftRegisterResponseBody":{"title":"Mediatype identifier: application/vnd.nft.register; view=default","type":"object","properties":{"task_id":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8}},"description":"RegisterResponseBody result type (default view)","example":{"task_id":"n6Qn6TFM"},"required":["task_id"]},"NftRegisterTaskInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTask_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterTaskNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTask_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterTaskResponseBody":{"title":"Mediatype identifier: application/vnd.nft.register.task; view=default","type":"object","properties":{"id":{"type":"string","description":"JOb ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"states":{"type":"array","items":{"$ref":"#/definitions/TaskStateResponseBody"},"description":"List of states from the very beginning of the process","example":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}]},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]},"ticket":{"$ref":"#/definitions/NftRegisterPayloadResponseBody"},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64}},"description":"RegisterTaskResponseBody result type (default view)","example":{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"required":["id","status","ticket"]},"NftRegisterTaskStateInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTaskState_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterTaskStateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTaskState_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterTaskStateResponseBody":{"title":"NftRegisterTaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"NftRegisterTasksInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTasks_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"register_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftSummaryResponseBody":{"title":"NftSummaryResponseBody","type":"object","properties":{"copies":{"type":"integer","description":"Number of copies","default":1,"example":1,"format":"int64","minimum":1,"maximum":1000},"creator_name":{"type":"string","description":"Name of the artist","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"Artist website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"is_likely_dupe":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"nsfw_score":{"type":"number","description":"NSFW Average score","example":1,"format":"float","minimum":0,"maximum":1},"rareness_score":{"type":"number","description":"Average pastel rareness score","example":1,"format":"float","minimum":0,"maximum":1},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"thumbnail_1":{"type":"string","description":"Thumbnail_1 image","example":"UXVhc2kgbm9zdHJ1bSBkb2xvciB0b3RhbSBuaWhpbCBlbGlnZW5kaS4=","format":"byte"},"thumbnail_2":{"type":"string","description":"Thumbnail_2 image","example":"RmFjZXJlIGFtZXQgbnVtcXVhbSByZW0gcmVwZWxsZW5kdXMgZnVnaXQgc3VudC4=","format":"byte"},"title":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"NFT response","example":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"UHJvdmlkZW50IGVhcXVlLg==","thumbnail_2":"SXVzdG8gdm9sdXB0YXMgbm9uLg==","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["title","description","creator_name","copies","creator_pastelid","txid"]},"NftTaskResponseTinyCollection":{"title":"Mediatype identifier: application/vnd.nft.register.task; type=collection; view=tiny","type":"array","items":{"$ref":"#/definitions/TaskResponseTiny"},"description":"NftTaskResponseTinyCollection is the result type for an array of TaskResponseTiny (default view)","example":[{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"}]},"NftUploadImageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"uploadImage_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftUploadImageInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadImage_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftUploadImageRequestBody":{"title":"NftUploadImageRequestBody","type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"RXZlbmlldCBhY2N1c2FudGl1bSBhbmltaSBzdW50IGJsYW5kaXRpaXMu","format":"byte"},"filename":{"type":"string","description":"For internal use"}},"example":{"file":"Vml0YWUgdmVyaXRhdGlzIHZvbHVwdGFzIGVsaWdlbmRpIHJhdGlvbmUgaWQgcXVpLg=="},"required":["file"]},"NftUploadImageResponseBody":{"title":"Mediatype identifier: application/vnd.nft.upload-image-result; view=default","type":"object","properties":{"estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001},"expires_in":{"type":"string","description":"Image expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"description":"UploadImageResponseBody result type (default view)","example":{"estimated_fee":100,"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ"},"required":["image_id","expires_in","estimated_fee"]},"ObserverEvaluationDataResponse":{"title":"ObserverEvaluationDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":873807682,"format":"int32"},"is_challenge_timestamp_ok":{"type":"boolean","description":"IsChallengeTimestampOK","example":true},"is_challenger_signature_ok":{"type":"boolean","description":"IsChallengerSignatureOK","example":false},"is_evaluation_result_ok":{"type":"boolean","description":"IsEvaluationResultOK","example":true},"is_evaluation_timestamp_ok":{"type":"boolean","description":"IsEvaluationTimestampOK","example":true},"is_process_timestamp_ok":{"type":"boolean","description":"IsProcessTimestampOK","example":true},"is_recipient_signature_ok":{"type":"boolean","description":"IsRecipientSignatureOK","example":false},"merkelroot":{"type":"string","description":"Merkelroot","example":"Culpa est perspiciatis dolores odit."},"reason":{"type":"string","description":"Reason","example":"Corrupti at."},"timestamp":{"type":"string","description":"Timestamp","example":"Voluptatem error corporis dolorem."},"true_hash":{"type":"string","description":"TrueHash","example":"Dolorem laudantium."}},"description":"Data of Observer's evaluation","example":{"block":110168171,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":true,"is_recipient_signature_ok":false,"merkelroot":"Voluptatem architecto.","reason":"Aut dicta.","timestamp":"Qui facere id.","true_hash":"Rerum aut."},"required":["timestamp","is_challenge_timestamp_ok","is_process_timestamp_ok","is_evaluation_timestamp_ok","is_recipient_signature_ok","is_challenger_signature_ok","is_evaluation_result_ok","true_hash"]},"RegistrationAttemptResponseBody":{"title":"RegistrationAttemptResponseBody","type":"object","properties":{"error_message":{"type":"string","description":"Error Message","example":"Necessitatibus inventore dolor nisi debitis aut odio."},"file_id":{"type":"string","description":"File ID","example":"Eaque officiis aspernatur id et aut."},"finished_at":{"type":"string","description":"Finished At in datetime format","example":"2001-03-29T00:00:52Z","format":"date-time"},"id":{"type":"integer","description":"ID","example":4860360742236491050,"format":"int64"},"is_successful":{"type":"boolean","description":"Indicates if the registration was successful","example":false},"processor_sns":{"type":"string","description":"Processor SNS","example":"Corporis quas et tempore saepe."},"reg_started_at":{"type":"string","description":"Registration Started At in datetime format","example":"1993-10-28T21:59:10Z","format":"date-time"}},"example":{"error_message":"Commodi reiciendis et et ducimus velit quam.","file_id":"Impedit rerum libero et quis.","finished_at":"1990-11-23T10:18:07Z","id":444954594601192835,"is_successful":false,"processor_sns":"Id commodi.","reg_started_at":"1993-05-06T16:03:31Z"},"required":["id","file_id","reg_started_at","finished_at"]},"RespondedTicketResponseBody":{"title":"RespondedTicketResponseBody","type":"object","properties":{"is_reconstruction_required":{"type":"boolean","example":false},"missing_keys":{"type":"array","items":{"type":"string","example":"Et similique voluptatem ut corporis temporibus."},"example":["Unde et distinctio consequatur praesentium et.","Perspiciatis temporibus veritatis fuga omnis consequatur temporibus.","Adipisci nihil molestiae."]},"reconstructed_file_hash":{"type":"string","example":"VGVuZXR1ciBkb2xvcmVtLg==","format":"byte"},"ticket_type":{"type":"string","example":"Officia quidem in."},"tx_id":{"type":"string","example":"Quasi ducimus doloremque fugiat aut est."}},"example":{"is_reconstruction_required":false,"missing_keys":["Ex veritatis autem in.","Debitis qui."],"reconstructed_file_hash":"QXV0ZW0gbm9iaXMu","ticket_type":"Sapiente inventore expedita molestias.","tx_id":"Repellendus pariatur eos autem doloremque."}},"ResponseDataResponse":{"title":"ResponseDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":2128339148,"format":"int32"},"hash":{"type":"string","description":"Hash","example":"Reprehenderit ipsam veritatis accusantium sit repellendus."},"merkelroot":{"type":"string","description":"Merkelroot","example":"Praesentium numquam odit animi occaecati et nisi."},"timestamp":{"type":"string","description":"Timestamp","example":"Provident dolore."}},"description":"Data of response","example":{"block":914566760,"hash":"Aut rerum et.","merkelroot":"Ut quia enim quam commodi.","timestamp":"Commodi laudantium."},"required":["timestamp"]},"SCSummaryStatsResponseBody":{"title":"SCSummaryStatsResponseBody","type":"object","properties":{"no_of_invalid_evaluation_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid evaluation evaluated by observers","example":8448058223243749560,"format":"int64"},"no_of_invalid_signatures_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid signatures evaluated by observers","example":8359887601648170101,"format":"int64"},"no_of_slow_responses_observed_by_observers":{"type":"integer","description":"challenges failed due to slow-responses evaluated by observers","example":7891085395597145694,"format":"int64"},"total_challenges_evaluated_by_challenger":{"type":"integer","description":"Total number of challenges evaluated by the challenger node","example":5130594556944153183,"format":"int64"},"total_challenges_issued":{"type":"integer","description":"Total number of challenges issued","example":7226997995396706400,"format":"int64"},"total_challenges_processed_by_recipient":{"type":"integer","description":"Total number of challenges processed by the recipient node","example":5970798887905028462,"format":"int64"},"total_challenges_verified":{"type":"integer","description":"Total number of challenges verified by observers","example":813743049200551551,"format":"int64"}},"description":"Storage-Challenge SummaryStats","example":{"no_of_invalid_evaluation_observed_by_observers":2941821598506559608,"no_of_invalid_signatures_observed_by_observers":3732715178392837689,"no_of_slow_responses_observed_by_observers":3362298399127573417,"total_challenges_evaluated_by_challenger":7464852390256145582,"total_challenges_issued":982894599761507202,"total_challenges_processed_by_recipient":1709859129074181105,"total_challenges_verified":4862406093902741602},"required":["total_challenges_issued","total_challenges_processed_by_recipient","total_challenges_evaluated_by_challenger","total_challenges_verified","no_of_slow_responses_observed_by_observers","no_of_invalid_signatures_observed_by_observers","no_of_invalid_evaluation_observed_by_observers"]},"SHExecutionStatsResponseBody":{"title":"SHExecutionStatsResponseBody","type":"object","properties":{"total_file_healing_failed":{"type":"integer","description":"Total number of file healings that failed","example":7110295239839079318,"format":"int64"},"total_files_healed":{"type":"integer","description":"Total number of files healed","example":7273229820220489656,"format":"int64"},"total_reconstruction_not_required_evaluations_approved":{"type":"integer","description":"Total number of reconstructions not required approved by verifier nodes","example":7227159664804338091,"format":"int64"},"total_reconstruction_required_evaluations_approved":{"type":"integer","description":"Total number of reconstructions approved by verifier nodes","example":1231544901686574894,"format":"int64"},"total_reconstruction_required_evaluations_not_approved":{"type":"integer","description":"Total number of reconstructions not approved by verifier nodes","example":7043195386771997812,"format":"int64"},"total_reconstruction_required_hash_mismatch":{"type":"integer","description":"Total number of reconstructions required with hash mismatch","example":9127868877782486339,"format":"int64"},"total_reconstructions_not_required_evaluations_not_approved":{"type":"integer","description":"Total number of reconstructions not required evaluation not approved by verifier nodes","example":3697305095978270885,"format":"int64"},"total_self_healing_events_accepted":{"type":"integer","description":"Total number of events accepted (healer node evaluated that reconstruction is required)","example":6936203582918385714,"format":"int64"},"total_self_healing_events_acknowledged":{"type":"integer","description":"Total number of events acknowledged by the healer node","example":7501593075332076902,"format":"int64"},"total_self_healing_events_evaluations_unverified":{"type":"integer","description":"Total number of challenge evaluations unverified by verifier nodes","example":7058130195420023276,"format":"int64"},"total_self_healing_events_evaluations_verified":{"type":"integer","description":"Total number of challenges verified","example":8648560082570846381,"format":"int64"},"total_self_healing_events_issued":{"type":"integer","description":"Total number of self-healing events issued","example":1419664908385881791,"format":"int64"},"total_self_healing_events_rejected":{"type":"integer","description":"Total number of events rejected (healer node evaluated that reconstruction is not required)","example":2015002353907856604,"format":"int64"}},"description":"Self-healing execution stats","example":{"total_file_healing_failed":2789096299006299988,"total_files_healed":4419572223275241376,"total_reconstruction_not_required_evaluations_approved":7748927910636449007,"total_reconstruction_required_evaluations_approved":9151917778125864507,"total_reconstruction_required_evaluations_not_approved":7722371150490296838,"total_reconstruction_required_hash_mismatch":1188714710419999793,"total_reconstructions_not_required_evaluations_not_approved":8978903766317203870,"total_self_healing_events_accepted":3106000301119730088,"total_self_healing_events_acknowledged":2402673399316595345,"total_self_healing_events_evaluations_unverified":7003916677450707686,"total_self_healing_events_evaluations_verified":99819049584274399,"total_self_healing_events_issued":1031509655329780558,"total_self_healing_events_rejected":4448568758806981285},"required":["total_self_healing_events_issued","total_self_healing_events_acknowledged","total_self_healing_events_rejected","total_self_healing_events_accepted","total_self_healing_events_evaluations_verified","total_reconstruction_required_evaluations_approved","total_reconstruction_not_required_evaluations_approved","total_self_healing_events_evaluations_unverified","total_reconstruction_required_evaluations_not_approved","total_reconstructions_not_required_evaluations_not_approved","total_files_healed","total_file_healing_failed"]},"SHTriggerStatsResponseBody":{"title":"SHTriggerStatsResponseBody","type":"object","properties":{"list_of_nodes":{"type":"string","description":"Comma-separated list of offline nodes","example":"Vel laudantium cum laudantium aut."},"nodes_offline":{"type":"integer","description":"Number of nodes offline","example":1019773296006369459,"format":"int64"},"total_files_identified":{"type":"integer","description":"Total number of files identified for self-healing","example":4068014148055661803,"format":"int64"},"total_tickets_identified":{"type":"integer","description":"Total number of tickets identified for self-healing","example":3184655079665461279,"format":"int64"},"trigger_id":{"type":"string","description":"Unique identifier for the trigger","example":"Rerum et consectetur."}},"description":"Self-healing trigger stats","example":{"list_of_nodes":"Ad non corporis mollitia debitis.","nodes_offline":435329964148101094,"total_files_identified":636177187451705191,"total_tickets_identified":7699273601008932985,"trigger_id":"Magnam non odit iusto."},"required":["trigger_id","nodes_offline","list_of_nodes","total_files_identified","total_tickets_identified"]},"ScoreGetAggregatedChallengesScoresBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getAggregatedChallengesScores_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ScoreGetAggregatedChallengesScoresInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getAggregatedChallengesScores_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ScoreGetAggregatedChallengesScoresNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getAggregatedChallengesScores_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ScoreGetAggregatedChallengesScoresUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getAggregatedChallengesScores_Unauthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SelfHealingChallengeDataResponseBody":{"title":"SelfHealingChallengeDataResponseBody","type":"object","properties":{"block":{"type":"integer","example":72126167,"format":"int32"},"event_tickets":{"type":"array","items":{"$ref":"#/definitions/EventTicketResponseBody"},"example":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}]},"merkelroot":{"type":"string","example":"In impedit deleniti rerum atque dolore quia."},"nodes_on_watchlist":{"type":"string","example":"Sunt consequatur ad enim."},"timestamp":{"type":"string","example":"Sint eligendi qui non rerum."}},"example":{"block":1003810139,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Minima culpa exercitationem ut.","nodes_on_watchlist":"Nisi molestiae quia est voluptatum.","timestamp":"Dolores ut."}},"SelfHealingMessageDataResponseBody":{"title":"SelfHealingMessageDataResponseBody","type":"object","properties":{"challenger_id":{"type":"string","example":"Qui quisquam sint aliquam veniam."},"event_details":{"$ref":"#/definitions/SelfHealingChallengeDataResponseBody"},"recipient_id":{"type":"string","example":"Veniam perferendis."},"response":{"$ref":"#/definitions/SelfHealingResponseDataResponseBody"},"verification":{"$ref":"#/definitions/SelfHealingVerificationDataResponseBody"}},"example":{"challenger_id":"Incidunt sequi sit dolor voluptas aut vel.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Voluptas ut minima veritatis.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}}},"SelfHealingMessageKVResponseBody":{"title":"SelfHealingMessageKVResponseBody","type":"object","properties":{"message_type":{"type":"string","description":"Message type","example":"Ea repellat."},"messages":{"type":"array","items":{"$ref":"#/definitions/SelfHealingMessageResponseBody"},"description":"Self-healing messages","example":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}},"example":{"message_type":"Neque omnis non aut temporibus accusantium possimus.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}},"SelfHealingMessageResponseBody":{"title":"SelfHealingMessageResponseBody","type":"object","properties":{"data":{"$ref":"#/definitions/SelfHealingMessageDataResponseBody"},"message_type":{"type":"string","example":"Hic eos et ab error vel."},"sender_id":{"type":"string","example":"Est ea inventore neque quibusdam qui delectus."},"sender_signature":{"type":"string","example":"QW5pbWkgZGVsZWN0dXMgYXNzdW1lbmRhIGFkaXBpc2NpLg==","format":"byte"},"trigger_id":{"type":"string","example":"Accusamus assumenda sequi."}},"example":{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Voluptate ea voluptas autem.","sender_id":"Magni est itaque in.","sender_signature":"UXVhbSBhc3N1bWVuZGEgYXV0ZW0gcXVpIG1pbmltYSBpbGxvIGF1dC4=","trigger_id":"Commodi tenetur veniam repellat."}},"SelfHealingReportKVResponseBody":{"title":"SelfHealingReportKVResponseBody","type":"object","properties":{"event_id":{"type":"string","description":"Challenge ID","example":"Voluptatem in autem."},"report":{"$ref":"#/definitions/SelfHealingReportResponseBody"}},"example":{"event_id":"Possimus mollitia consequatur dolores dolores repellendus.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}},"SelfHealingReportResponseBody":{"title":"SelfHealingReportResponseBody","type":"object","properties":{"messages":{"type":"array","items":{"$ref":"#/definitions/SelfHealingMessageKVResponseBody"},"description":"Map of message type to SelfHealingMessages","example":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},"example":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},"SelfHealingResponseDataResponseBody":{"title":"SelfHealingResponseDataResponseBody","type":"object","properties":{"block":{"type":"integer","example":1777029753,"format":"int32"},"event_id":{"type":"string","example":"At sint."},"merkelroot":{"type":"string","example":"Ea quis minima sed amet maiores."},"responded_ticket":{"$ref":"#/definitions/RespondedTicketResponseBody"},"timestamp":{"type":"string","example":"Ratione omnis autem nihil voluptatem tempora."},"verifiers":{"type":"array","items":{"type":"string","example":"Eos architecto aspernatur molestiae natus culpa."},"example":["Est eveniet.","Quo eius.","Doloremque iusto illo."]}},"example":{"block":927164459,"event_id":"Non ea.","merkelroot":"Porro sed et est rerum similique nulla.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Doloribus nihil quia.","verifiers":["Iste soluta.","Suscipit aut ipsa dolores laborum cupiditate."]}},"SelfHealingVerificationDataResponseBody":{"title":"SelfHealingVerificationDataResponseBody","type":"object","properties":{"block":{"type":"integer","example":1567089120,"format":"int32"},"event_id":{"type":"string","example":"Qui dolore aut assumenda quam."},"merkelroot":{"type":"string","example":"Quia aut et."},"timestamp":{"type":"string","example":"Perspiciatis debitis consequatur."},"verified_ticket":{"$ref":"#/definitions/VerifiedTicketResponseBody"},"verifiers_data":{"type":"object","example":{"Deserunt maiores totam.":"TGliZXJvIGF0IGZ1Z2Eu","Iste accusantium repellendus.":"QW5pbWkgdm9sdXB0YXRlbSBlc3QgZG9sb3J1bSBxdWku"},"additionalProperties":{"type":"string","example":"RWEgbWluaW1hIHNpbnQu","format":"byte"}}},"example":{"block":1482857114,"event_id":"Magni quis rerum.","merkelroot":"Eum ad rerum.","timestamp":"Ut qui quasi asperiores.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Hic quibusdam omnis distinctio.":"Q29uc2VxdWF0dXIgcmVydW0gdm9sdXB0YXR1bSBkb2xvcnVtIHRlbXBvcmEgYXJjaGl0ZWN0byBtaW5pbWEu"}}},"SenseDownloadInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"download_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseDownloadNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseDownloadResponseBody":{"title":"SenseDownloadResponseBody","type":"object","properties":{"file":{"type":"string","description":"File downloaded","example":"TmFtIG9tbmlzIGZ1Z2EgbnVtcXVhbSB1bmRlLg==","format":"byte"}},"example":{"file":"U2FlcGUgZXQgY29uc2VxdWF0dXIgcXVpLg=="},"required":["file"]},"SenseDownloadUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseGetTaskHistoryInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseGetTaskHistoryNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseRegisterTaskStateInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTaskState_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseRegisterTaskStateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTaskState_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseRegisterTaskStateResponseBody":{"title":"SenseRegisterTaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"SenseStartProcessingBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"startProcessing_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseStartProcessingInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"startProcessing_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseStartProcessingRequestBody":{"title":"SenseStartProcessingRequestBody","type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Doloremque quidem quis."},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","open_api_group_id":"Ipsam fugiat delectus animi aperiam amet ullam.","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["burn_txid","app_pastelid"]},"SenseStartProcessingResponseBody":{"title":"Mediatype identifier: application/sense.start-processing; view=default","type":"object","properties":{"task_id":{"type":"string","description":"Task ID of processing task","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"description":"StartProcessingResponseBody result type (default view)","example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"SenseStartProcessingUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"startProcessing_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseUploadImageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadImage_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseUploadImageInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadImage_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseUploadImageRequestBody":{"title":"SenseUploadImageRequestBody","type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"RG9sb3JlbSBkdWNpbXVzIHZvbHVwdGFzIGVzc2UgbmloaWwu","format":"byte"},"filename":{"type":"string","description":"For internal use"}},"example":{"file":"U2ludCBhc3N1bWVuZGEgb2RpbyBpbiBvY2NhZWNhdGkgYWRpcGlzY2ku"},"required":["file"]},"SenseUploadImageResponseBody":{"title":"Mediatype identifier: application/vnd.nft.upload-image; view=default","type":"object","properties":{"expires_in":{"type":"string","description":"Image expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_amount":{"type":"number","description":"The amount that's required to be preburned","default":1,"example":20,"format":"double","minimum":0.00001},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"description":"UploadImageResponseBody result type (default view)","example":{"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100},"required":["image_id","expires_in","total_estimated_fee"]},"StorageChallengeGetDetailedLogsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetDetailedLogsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetDetailedLogsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetDetailedLogsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_Unauthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetSummaryStatsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetSummaryStatsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetSummaryStatsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetSummaryStatsResponseBody":{"title":"Mediatype identifier: application/vnd.summary_stats.result; view=default","type":"object","properties":{"sc_summary_stats":{"$ref":"#/definitions/SCSummaryStatsResponseBody"}},"description":"GetSummaryStatsResponseBody result type (default view)","example":{"sc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":2982554539974798863,"no_of_invalid_signatures_observed_by_observers":804645458629257575,"no_of_slow_responses_observed_by_observers":6016941875889227877,"total_challenges_evaluated_by_challenger":9084935928395605172,"total_challenges_issued":554226313255902356,"total_challenges_processed_by_recipient":9153767776266110855,"total_challenges_verified":6924812056467069635}},"required":["sc_summary_stats"]},"StorageChallengeGetSummaryStatsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_Unauthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"StorageMessageResponse":{"title":"Mediatype identifier: application/vnd.storage.message; view=default","type":"object","properties":{"challenge":{"$ref":"#/definitions/ChallengeDataResponse"},"challenge_id":{"type":"string","description":"ID of the challenge","example":"Et officiis illum est molestias deleniti aliquam."},"challenger_evaluation":{"$ref":"#/definitions/EvaluationDataResponse"},"challenger_id":{"type":"string","description":"ID of the challenger","example":"Sit odio."},"message_type":{"type":"string","description":"type of the message","example":"Voluptatem reprehenderit est."},"observer_evaluation":{"$ref":"#/definitions/ObserverEvaluationDataResponse"},"observers":{"type":"array","items":{"type":"string","example":"Eaque iure."},"description":"List of observer IDs","example":["Consequuntur quia et.","Rerum omnis."]},"recipient_id":{"type":"string","description":"ID of the recipient","example":"Et inventore est et alias est quae."},"response":{"$ref":"#/definitions/ResponseDataResponse"},"sender_id":{"type":"string","description":"ID of the sender's node","example":"Impedit amet."},"sender_signature":{"type":"string","description":"signature of the sender","example":"Consequuntur officiis similique nobis deleniti impedit repudiandae."}},"description":"Storage challenge message data (default view)","example":{"challenge":{"block":626674453,"end_index":1362782358179080945,"file_hash":"Molestias aut beatae.","merkelroot":"Sint aut repellat consequatur dignissimos voluptatibus.","start_index":6285852628941175332,"timestamp":"Odio deleniti omnis maiores dolorem."},"challenge_id":"Ullam quasi cum dolorum.","challenger_evaluation":{"block":346663458,"hash":"Voluptatem sint recusandae.","is_verified":true,"merkelroot":"Et rem ducimus maxime aut.","timestamp":"Fugit eaque nesciunt eum quasi."},"challenger_id":"Quidem beatae ut.","message_type":"Necessitatibus sint voluptas molestias repellendus iure vitae.","observer_evaluation":{"block":1725989442,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":false,"merkelroot":"Ut provident pariatur.","reason":"Ut quia repellendus.","timestamp":"Voluptas exercitationem quisquam id accusantium voluptatibus.","true_hash":"Architecto sit quidem deserunt rem dolore aut."},"observers":["Sed qui quasi aliquam.","Quo molestiae qui."],"recipient_id":"In non eum enim et.","response":{"block":2076283382,"hash":"Dolor autem quo vero quia quod omnis.","merkelroot":"Et ullam officiis libero.","timestamp":"Qui non quibusdam."},"sender_id":"Veniam vel ex modi enim consequuntur.","sender_signature":"Magnam exercitationem et sapiente."},"required":["challenge_id","message_type","sender_id","challenger_id","observers","recipient_id"]},"TaskHistoryResponse":{"title":"TaskHistoryResponse","type":"object","properties":{"details":{"$ref":"#/definitions/DetailsResponse"},"message":{"type":"string","description":"message string (if any)","example":"Balance less than maximum fee provied in the request, could not gather enough confirmations..."},"status":{"type":"string","description":"past status string","example":"Started, Image Probed, Downloaded..."},"timestamp":{"type":"string","description":"Timestamp of the status creation","example":"2006-01-02T15:04:05Z07:00"}},"example":{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},"required":["status"]},"TaskResponseTiny":{"title":"Mediatype identifier: application/vnd.nft.register.task; view=default","type":"object","properties":{"id":{"type":"string","description":"JOb ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]},"ticket":{"$ref":"#/definitions/NftRegisterPayloadResponse"},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64}},"description":"TaskResponse result type (tiny view) (default view)","example":{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"required":["id","status","ticket"]},"TaskStateResponseBody":{"title":"TaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"ThumbnailcoordinateRequestBody":{"title":"Mediatype identifier: thumbnailcoordinate; view=default","type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail (default view)","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"ThumbnailcoordinateResponse":{"title":"Mediatype identifier: thumbnailcoordinate; view=default","type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail (default view)","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"ThumbnailcoordinateResponseBody":{"title":"Mediatype identifier: thumbnailcoordinate; view=default","type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail (default view)","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"UserImageUploadPayloadRequestBody":{"title":"UserImageUploadPayloadRequestBody","type":"object","properties":{"content":{"type":"string","description":"File to upload (byte array of the file content)","example":"iVBORw0KGgoAAAANSUhEUgAAASoAAACpCAMAAACrt4DfAAABUFBMVEVPk//////m5ubl5eUkJUYwbP/k5OT60J360J7y8vLt7e34+Pj19fXw8PD5+fnr6+v61an60qMgFi9IkP9Qlf88i/9RmP9Djv//0pkuaf82iP/w7OQACj//1aH/1JUhZf83dP91pfoAADwQGEKgu/MbHkPhxLALXv/z7uOOtPyCq/jw9P4hHz3gwJ04eP8aYv/F0e2VtfX//PSvyf+/0/xEetVKiOwkGC3W3Ore6P0rQ3xpnvsGEkAuLEjgupALFUG3yfAAACe+t8qnr9nHvMZBPFFeU1x7oO/RvbqYquHbx71kjP0+gP/74sSKpv6StPbX5P+zxvBgjeJAXJo/RWlBW5VBYKY1RHNAcMQsJDgdFDNDV4opMFdRdLvZ3egnNWM1LDyGens7asO8oIjBqpZWTVo6OVRnYm54Z2eehnanjnvJqYqdgWiykW7sz62jrtzuoXzIAAAXaElEQVR4nOVd+18TSbbPg9CdEEK3nRdpQkSCBKIGAioIIqujzojy0Luu7syyO1dxVr139v//7dapU/1Kujt9qjshfu4ZHQ8JkJNvzvn2t05VV6XSYLMZZj7eAjilbCaTLYA35/XmwSuClwcvD17R682DNwdeAbwSeAvsF886Hn8xs9PJbJ3vtM+2Dw5SYNWDlY2z7Yutc/g1mesJKmN7WXBT1w0VvNj5zka10ajVaoZhpGxjXxi1WqNxsNHeynbM/+dQmZ3Zi41Uo1JzITRsDLFGamO3K2KeZqhmk4pKxGJ7x9upRjhKLrwYXNtbpjn2oEZDlc34eANRueKbHRXVrB3VrE9UmX56dzMyTA5clc1j0xxXUC4PobK9LIScmgVDbJhlfDyBFzMRkOUVwct7vTx4GBB4GBB4GIbl7W82KkScHLS2zMxYgkIPUfKggl4KUitrpZFf7flyw8Bn5/cpDjCC4/VLO9WGFE4CrUp5Z9ZMOKjA2nO8iUNlzm5UavI4WWiddacGKhdN+dEoOSqR9ebeSpyEcoHV2NxPKig/mgqCCgHK2l7GziXwCl5vDjyMCry818uDh1HZXgE8HtXegRxDBYFlJhEU9xyd51F8iAWmkrgCMsvanh+j+9EohuZDno5XcNGoebmZTEY5YG104wYVxugD3D4xCTqfaSeXUQ5YbV4NUyNBE4FqKxWbzP2sYjDpcG1QJSNBsx61112pjAMosMbKrCkX1EgJ6geVzeMkRh+g0XwQjc6ld6m6nGJG7diUCSpN4/bJqPXxpRRaZWXeHJdaz05SrZ8bY0wpNAMY68dX6+0xpxRapd3JTBQqX0YfVOsOec6Oiorl9biLz7Laihk1qAFG91XrPl5qASxdYmZ5ae4VvN4cePPgFb1eHry81ytaXqFbHnvxWWaUL6MFhd48eHPgFbxeCTyOBYCSdvAZr1o/H4uWCrLalvnDqvXdCRWfZZUL8wdV6zuNySLFyX0CUEk3jGfdUc06UfUnc+kbwGqjHxbUiIZx2usNNoxLNqPbXgGcOa83D17R6+W9Xt7jdbavASnGV2f9kKAWiuDNe7058Aper+T1OD6pbDZrcRfzMj6eSC3miYSyvCJ4ea+XBw8+u+vIKbDKhjkbGBRT68wTjM48wegeDxPK9rK2Ny4Jel1Isbxqd34otT55Rnes0jYDuT0WVNmslWAs07J22SGjOx4UYNYuQIvRmTeY6/Dr+rvXiBTD6rjvE5SAyi7ArFV2jrdgY5Hx8VIFMM7eQR7yuNfLe728x5s/v1akGFZb/aGgCkWvNx/kIbd7vZJLrTPksrbnx+h+3G6n1gB5dmNo9DK32FhdZoYY3fEKQdyOaeTjQflkxyFBJd9puVytlt/ev3//rVEFc0HG3Crtd5k/hFpfkRkhl6vl++8ePbxh2X+9++uH+29TVbQH99//7cZfCR+BsWKOCypIMNsb4HaH0YO43ZPrO3SZwNLpw6MbN+7cmXHszp07HLOHH/k/7LnfKNlaa5uBBejH7Q6j+3E7FuAcGLKY5c2DUwzy8l4v7/WK+2RKL1cfvPu7ByZ/e/iAglVlr+gXXpA3H+Q5+ASJhRFqfSChXKklAdSjh6NxYnaDBFUqlZBad8RCwhKUSlTl1K/RgKJmFaOrzlSrdWKHqlz98DEiUDM0rkqBEh2+DF6nWvcWYImIVOrXG1GBYlDR9AKjdvYmgwswolp3FeA8WBEsyMsHeflBr79JKr/q/egpxS6J76lQGZt930CLoz0/LELFAlGtZ7ZIMr36DwJQDKoPZGlbOfcXC1HV+oBY8KEpWQmaIX3s1fcPKUjN3LlPzSr2GlOq1vttSlJV3xNoCrF6X6XmVWWnf41qPaQAx4sUE1bvyANpo5ANLcCI/RcsQOQzsNFePszrbxA4XQYpllf/TBGxMs76I4OPikCgWKCq9cwlIamqH2g8ZWP121uquOoGJZSfWg8XC0lJUJMgFMoPSNc+t328T8PK2AijqetR63vR1We5/E9pqMhYQVqNWa37cHtYAZoEpqq+k0eKYUUcCm6MLMCoaj2fjM1Tyk+OqIRRub02X0zmLUYUCyO5naCpqo/iJBVwO0mLGm0zilqPIBZ8aEpGgkYPvfxARid4sKKNBo3MNKn14lZ0Uq/+Gi+pmD0kUXvteKJqfUQB9qN39Mrl2EjNzDwmsdVBP0IB+gySBwuQM5aUPHd5+wSlQOsn+ButBCuX5DfkhwpFLGQDxcI2QSn8LQGoZj5SRoPGthmWUJFbe4lI0Ohxl1OxlIJld95R0qpqTo1aJ0xold/+PQmoaI32yt5k1HqE4TKh/sofkqi/mZkblJ4oVCBxcsuvACnN9IC2epEQdQJSgdudXykVWE6iwR5jIt5KLcpIObZUt+0jAalUo5tEa8+HpogS1Lwg9PTKv0kB89vq4CM3KDK0tjMdat08IHy+5X/JILV09PutgYfu/DdpYcx41Dp1KVqG0P4sp2QGgGsvms1Pq2teqEhkVUlicoszFi5uGenlBzxOlCXC+E8Sqlvfm2rzaMZThHcekaDaw5CBs8UiGB9vPsjjy2ESmIjfoVCVDFSr/24qqtJs/rHkfvQLRVlZnRj6stlE1Tpl8YsUVEu6oqmaomrf3IRFugQaK+Y0qHXKpysD1dInXQVTlOb3Q4ewbtCaoZmE1brMjSMlyjI9CagOofwAKI1hpb04lIOqchl/KZqzgK807EVY4Fg8pkwq06Fa/YNBxOqP/Z+DZasGGlS13WK0ZY0le1ljqeD1HLEQof/ix+1zbcpCIQuqtWBsBpC6UhRdZzBZmdX8vLYmAZWxU7Sn5GWXzfrQFEmC0tZUIVSH36Ni9eSKZRKHSIW/KvvTPHq8KgHVZv/a1XqfotUFVEtH+pehkYqfHf7RhOqDtNJ1BpbKXe2PNTpUK0lBlZW+cWSOtFDPgqqp/XtwpDJsa0tfNcglTlMq1CHgxf45WiJDlUoVbLUue+OIc7vNgn0TktcTt5V6vLzzGGn5pwUV4+dPj5+EI7V0ddQEflI5TfF04n9U5a4EVA37xqQF+9Yjl2ffeuTySl6Pi4XA/stotZ65JC3pF1DdBc7Rvy6FVOHq4TeVIaVzmtKBr4CpeCGqMlkFfZiYN7nFlKAZygjQnVXsjTfv/r76xJff1w6f/K4xOcVggT/su6H6FMCNgaXKZFXl3IemJqrWMyRZ5WSVpgPvNPVvV4eDaK2tLn359GfTqjegde7CNVDhPyaTVbXd2FDF3JQpQ+nrebKKZQcfBB99u5pZOlxdXQNbfbK09vzrURMEuq6IslPgAggXP07w7AuZrBJQxdmUybk53t4YpuD1nG0EfDYPSF/IZRXDCXKGp1ZTP/r29esVs9+/fjvSGU7wMNIUTykVqw9+hOMlk1VGuxBp84C0vWXA4MYwsbekOJPIqltHQDuWDGDvnsFjmaKjLuDPMqRQJ3CKUqG/AIDdvSUB1ZkZYw/jRCQoZbEsh4pR9pe7ql1bOpQaoMX+MFdTBI/zJxlIAA48q6Fk56Lh6Mva4RoVqs2gedOJqXXarVrl1F+efwO5xPUkVBXnaqwsnWeQuNJpHDVedirgpCCkOr8YNvXvV38hQrWSEFTymzIR72qr/E+zCc0nztT8cgZ5AoWHpcbJSYeU4uXJhjKK1uSjG/YE5KIOQ0Gmypr/26BCFXdTJmR0/ozllbye2LzR8ooZvtWX8EwaVJWndd6mUzGlVCEHPn/7rOEVUcMrnsbbnlCkOj4J+PArIBYns/pTkqKDSZs03+pLNPnAQ7y8HiLn9Tg+cTeQo0FVe7aM7xOFN6cfVf3z8dKTW1calBa/LqI2V5DFtatbT5Ye/2kPl8XPMFt+Rrn4IlQSG8glJkGJWaWLt4k6gb99RXsMGnT1CqWDhmSlcznBvryCwc/aY10M/3QcEvLfoVNe2tj0oamJqnWTIhaMX0T54SiY85XS/IwTMbe+K3jN45KKExbTE5+xAbH0vcl/AuC1oFLrv1BeeyM2VDHVOmW9eqr2kw2VoB2A6isOmg8/NcU1j6ePysuw+Ql76atfm6JtxeWWgOonQgUa2xyqOGrdhs5vq/WBLXr9NualqPXaK7t4NKv9pHmyCmkelQL3bous+twElFRU7dYveUWBqg05E3Vj3rTXywToqmC1Pjc7XIW7UlAhDyEw6nPgqicvQBJoiKLCaR8EffMF56ovWJk616d2Af5Mee2LjFtXSW/3HEOCUqAynjlcxUHi0lPRnt86vMWQAv2pogjVeIWCNV+wJ5+r4hIAT2s2VM8oxX+cSUaCykN1TlE3Ly2twMFioxVsHzTvfjqyJvtQaumqBYvS/P7pSBNTERbfC7XwkvDSsMgxKbXux+0R1HqX0gWtvHIUqH3JF61gHXSUqgrJrirOo7qATigqm+9uUz6lymU2rlp3xELWTqisO6Fcnp1Qzs7KmQJJMx8sW8IKqUrX3VNXDEINmzNcnuPAhj+sCsLHsSH+hmXSXFHDZvSsfYxG1mZ0J7WydkINeqN1VfjhLBnCLVspEILLdTdV8VaCjtqcAaciJPz/qqArHNRojqSykKJt6mDMDdeexOEscZZ3EO4ZAasdvFqu1xUES7PeOS891SYrDo8mtAOiid/IOzIsxer15dsHtHE63j1yrSthiDt2MNJ4+exnoap4AWoCD8QC4BAJxQEEbLCzhYmIifbzs5fEXbKMzfhQxVTrs8Ud8s56RuW2yBDB4ry0OK2Ljp+G3I4jZpVfCjmf8QTTGJ+TN14z2liAZLXu4BN7LegcbXcTbrXbOLvHe0/I7eKCyBNJE/qUVyV37YTC6dPb9Jes7BZjrwX1qT3aUYqX9A3jGFSiU2UNfjUFu1GYZoro7CE3qXb6icV7MlA1SiNWGGfHL0GLJjlsgEpc+q13L9a5WLxlt/ZQMIirpFgUI5VV5Wk4oJPYseJQ/dTEtS2g11W8Eipi3IK0jqWmKUJTqVitWLG0jgKasTIKqshZ5b9wIdK69QxpLRpCxcaCtvTmC82YpNKFbLB6d1xpiVUwSPiq4Lc6qf2JUO0ksG497hUwTxsFYuDQ4kPqRnmFXI7zEK7xtMonanTnIaR2UksPrbKVnYoDOum8frCMk6L2MiAcPlupZrVpgOlRdSo4PkQVTxvRcKtNya2TdLIy7OUanKd0HYfDFq2L+lOFXkAOs9csqBp9O9sDcxJQjT6gky5Caz/XVUWsLxONT8VWUlb9qaLeeLdUxXWO8Aipo4dmXCyM6YBOSmchT+zDYOi/LNsrgngvTySVKqa2rApEOaVZg2ZMxWUJqtqzCjBOZwHTSL5fxbjdpG+FXbNmslChoyjAgSBvtIhRjia6obiyQWjUJvnVUtX0lBz5YxLuXbageopyQTSkdNGEwpl3PjGKc6b2xRDQQ7EgU38wWzMNt05mSHfkCqvWsbR4m0os9cSmKCyowjVV4sKIgpR3XwBRUpsYrbE/JqhoMzZ83pRegZWf6oro0om1UxZWuHbB7ouq2HOAwQ2vwzplRktYOT0EVawDOiXnAcGTqMBUucl7VtaCKhspDWdNVftiKFY3qmIxkYSowtlS0gGdaa/H8UnmgM6uRHfhP8uiUafjYiBLJUD9ieY6fo2DZZxaVupPJRowzgzE9R/QSbt7RGB1u8knZXDZnuqatFLscSCOlnGJEU9CRaPXesg9I9exLSFtSTYaMDtPKly86JphdwwXIqP0AtyIcw/cKrvFMUAlfUBnRuLoDKZD+fWOj4ndzO5CSuMJx5dDwvPLEuWXSsU7oNOBKmjVXsHrBa3aW8A9eU3S/sXCoBfDpYEuBsNOE8ESDnhDBNKUyoY0Eid5GW3XWr1Yq/YwjWbjHtBZkvm4a0+XsTfMswpr0JVZYnKC94zh3/ormWNfalN3QCdtUbawyvGyIgQTHxErYmU67/ip/D+rpaWrckgZG+a0bSIuoRcAK5AMumKPihW76SluiMARDaTXMr1NzF9hL+FNxDPxD+iUSqtU7aUuLoRisYIqAMOlDFxe8Wby8n+kkDI2zawDlfTdEIDViHtsSqPusbE9ybRKGdVXy5g7AA3vSGkisZDMOVD1Pw/kzjyrXEof0Dl0j00iap2vCpUY3eC7+UWpKzpyN78/AldaQaNPx/XXdYU+8YBWO+MJZTP69at1XD4ke9ZdLfWUy08+foZxHoxlrFuP4LGnKelfPZ1H/vTpjWNuZeN1rvvGutLxLp9iDWrgrq03xVyDunu/hVS7nyBUMe9d9hzQST8ShEHQuLnYOmG/o8PrTxU3kCii26d32FMnrdw92h011m83x3JAp+Qd8a4DOulHwkNCLeZyLd4lEQ1PTVWsWXj4C89st3Ls214b5ANHtvwO6JS+I95KniQO6KQcesCBusdwYtbjN8sKbERrwRouwzPnPfiuxcV7NLDgXpHpPaCTspecBVQut961oRrqLMAz3XXxjTSwaqUpPqBz4Ti6uHptAcWgKoVDVVq3vzX3OjJWld30OKCS2RfU74DOTsSZ5jIj89wAVNowUozeB6FavFmLBpa4AdApwNg7DfntXxV6VOeIAzojvY/yPRdQVgEOt6sYVG94Afbc3734Otq22PnSyAM6IxzL6dq/KvauaANehImuci3nQUrQ+ptAqHY9ULHEipC6jf1pP6AzQpOv/NoLFBMLbfjRvh9UXEK2WwM/sDhSZVV2kj8jPmmosqNW8Q0jlVs8SfunlaLxJ06Gf2IEuwNRJQ5V/H1B0wPcHj6BWr459L5ZBXKySg9BVedJ1V0f/onFe+FYDQYlrdZdBYi7zRaL1s6yYV6ee/PDXt7jhZ0R74uUkOvpN/UBpDhTcbE+jNXNEKwq3dJgUC6vOOwVuDcf5LHrWLIHdNqfXfCSR3+kmKV9sBJIpf1/IgSrxp45HNRUHdBpM0I/SIkGItU6RVQ6ij2rrCgdfOzUL6nCarCx2/cJasrUuhVLx/8yOCCn3LZ+nhaJpdShrVdXREqlz32YSmDlz+0BF7/rVOvBBcgGzm2fvPK59rnyal9Ak+503rx507e+6gbkVCBWlXZQUD4FGLH/ggWYwNkQfl7/bBirSghSTJR20z62nwv7odzwi9S2+xHCkzobIkgsUE4c8f0Uz4ZqMOw9M6xa5+kh222FIpVbHPo4ts2woGKdOJK4BLW5fcOLVflmOFSMr05LXqBKp4E8ZdkAtVfa/dCgpkut21EN8FUYUQlrLW64qrC7kQvhKSutXrtfo7EzKqhxqHXSmVv+ud65cGM1GikAq/d6e2e/293f2X7dGw0UmBup3dFBDRdgZLWeyEluAV7fabaX70V630BZvd76eq83gqSc73eugpWtfuyQw05ys5Mn3gGdaf/r8mVZjJ1rEd853RbFx2Gkuma0oGTPB0Q3WQnq4obMSi0ap8sbDnAqKxholKCmSK27oTLbjbEmFUsrYMRGmxDUWNW6bAGyXO9sGcY4kwoEg2Gc04KSOiE3P3YrLqw0xphU0BNdySd0tnKYJXWad9h1mY2ee+MswNYOhkcKSuI07/FJUBcjmJcnvdHvWc56J125oKZIrXti6VxEkN4S1spdyAd1DQd0Rsn1fvo0+Sps9V5mzBhBDQ6XwwswSKgnL977l+VkwVrsHez3ExflgR65tUcWC04XLWPun6wnBtbi+slWAkFN9IBOkto7P1lPhLNavZMtM6mg0lOh1oej2j9txQWLDalP9zpJBhVbrctOboXTqDm7fTNOHbZ6N7e7QLdJBhX5gE6/VrK3mS7VYA/oW8/1+7sHkbssAwnV6x1smcXkg/J6fliMYSI+hDwdr2O2T9YjNu9cOK2f7JRYYYwpqGlQ637csNAxd09z61GTq9XqtQ6Oxx3UNKh1v6jgZfd3yrleqxUG2CJj8fXcaXuvY04gKLpaH7EULb4wtsnT7Mweb5zeW+/1ADIHs0UGEUul9fV7Bxu7XYh5gkGNOKDTx6MvcJRZS1gq9c1+J7u1tb15enoimvD3Tk5PN7cvzrv9ft+cn594UMOo/B/J2Q2X8T0dSAAAAABJRU5ErkJggg==","format":"byte"},"filename":{"type":"string","description":"File name of the user image","example":"image_name.png","pattern":"^.*\\.(png|PNG|jpeg|JPEG|jpg|JPG)$"}},"description":"User image upload payload","example":{"content":"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","filename":"image_name.png"},"required":["content"]},"UserImageUploadPayloadResponseBody":{"title":"UserImageUploadPayloadResponseBody","type":"object","properties":{"content":{"type":"string","description":"File to upload (byte array of the file content)","example":"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","format":"byte"},"filename":{"type":"string","description":"File name of the user image","example":"image_name.png","pattern":"^.*\\.(png|PNG|jpeg|JPEG|jpg|JPG)$"}},"description":"User image upload payload","example":{"content":"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","filename":"image_name.png"},"required":["content"]},"UserdatasCreateUserdataBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"createUserdata_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasCreateUserdataInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"createUserdata_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasCreateUserdataRequestBody":{"title":"UserdatasCreateUserdataRequestBody","type":"object","properties":{"avatar_image":{"$ref":"#/definitions/UserImageUploadPayloadRequestBody"},"biography":{"type":"string","description":"Biography of the user","example":"I'm a digital artist based in Paris, France. ...","maxLength":1024},"categories":{"type":"string","description":"The categories of user's work, separate by ,","example":"Manga\u0026Anime,3D,Comics"},"cover_photo":{"$ref":"#/definitions/UserImageUploadPayloadRequestBody"},"facebook_link":{"type":"string","description":"Facebook link of the user","example":"https://www.facebook.com/Williams_Scottish","maxLength":128},"location":{"type":"string","description":"Location of the user","example":"New York, US","maxLength":256},"native_currency":{"type":"string","description":"Native currency of user in ISO 4217 Alphabetic Code","example":"USD","minLength":3,"maxLength":3},"primary_language":{"type":"string","description":"Primary language of the user, follow ISO 639-2 standard","example":"en","maxLength":30},"realname":{"type":"string","description":"Real name of the user","example":"Williams Scottish","maxLength":256},"twitter_link":{"type":"string","description":"Twitter link of the user","example":"https://www.twitter.com/@Williams_Scottish","maxLength":128},"user_pastelid":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"user_pastelid_passphrase":{"type":"string","description":"Passphrase of the user's PastelID","example":"qwerasdf1234"}},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"},"required":["user_pastelid","user_pastelid_passphrase"]},"UserdatasCreateUserdataResponseBody":{"title":"UserdatasCreateUserdataResponseBody","type":"object","properties":{"avatar_image":{"type":"string","description":"Error detail on avatar","example":"","maxLength":256},"biography":{"type":"string","description":"Error detail on biography","example":"","maxLength":256},"categories":{"type":"string","description":"Error detail on categories","example":"","maxLength":256},"cover_photo":{"type":"string","description":"Error detail on cover photo","example":"","maxLength":256},"detail":{"type":"string","description":"The detail of why result is success/fail, depend on response_code","example":"All userdata is processed","maxLength":256},"facebook_link":{"type":"string","description":"Error detail on facebook_link","example":"","maxLength":256},"location":{"type":"string","description":"Error detail on location","example":"","maxLength":256},"native_currency":{"type":"string","description":"Error detail on native_currency","example":"","maxLength":256},"primary_language":{"type":"string","description":"Error detail on primary_language","example":"","maxLength":256},"realname":{"type":"string","description":"Error detail on realname","example":"","maxLength":256},"response_code":{"type":"integer","description":"Result of the request is success or not","example":0,"format":"int64"},"twitter_link":{"type":"string","description":"Error detail on twitter_link","example":"","maxLength":256}},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""},"required":["response_code","detail"]},"UserdatasGetUserdataBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getUserdata_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasGetUserdataInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getUserdata_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasGetUserdataNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getUserdata_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasGetUserdataResponseBody":{"title":"UserdatasGetUserdataResponseBody","type":"object","properties":{"avatar_image":{"$ref":"#/definitions/UserImageUploadPayloadResponseBody"},"biography":{"type":"string","description":"Biography of the user","example":"I'm a digital artist based in Paris, France. ...","maxLength":1024},"categories":{"type":"string","description":"The categories of user's work, separate by ,","example":"Manga\u0026Anime,3D,Comics"},"cover_photo":{"$ref":"#/definitions/UserImageUploadPayloadResponseBody"},"facebook_link":{"type":"string","description":"Facebook link of the user","example":"https://www.facebook.com/Williams_Scottish","maxLength":128},"location":{"type":"string","description":"Location of the user","example":"New York, US","maxLength":256},"native_currency":{"type":"string","description":"Native currency of user in ISO 4217 Alphabetic Code","example":"USD","minLength":3,"maxLength":3},"primary_language":{"type":"string","description":"Primary language of the user, follow ISO 639-2 standard","example":"en","maxLength":30},"realname":{"type":"string","description":"Real name of the user","example":"Williams Scottish","maxLength":256},"twitter_link":{"type":"string","description":"Twitter link of the user","example":"https://www.twitter.com/@Williams_Scottish","maxLength":128},"user_pastelid":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"user_pastelid_passphrase":{"type":"string","description":"Passphrase of the user's PastelID","example":"qwerasdf1234"}},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"},"required":["user_pastelid","user_pastelid_passphrase"]},"UserdatasUpdateUserdataBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"updateUserdata_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasUpdateUserdataInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"updateUserdata_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasUpdateUserdataRequestBody":{"title":"UserdatasUpdateUserdataRequestBody","type":"object","properties":{"avatar_image":{"$ref":"#/definitions/UserImageUploadPayloadRequestBody"},"biography":{"type":"string","description":"Biography of the user","example":"I'm a digital artist based in Paris, France. ...","maxLength":1024},"categories":{"type":"string","description":"The categories of user's work, separate by ,","example":"Manga\u0026Anime,3D,Comics"},"cover_photo":{"$ref":"#/definitions/UserImageUploadPayloadRequestBody"},"facebook_link":{"type":"string","description":"Facebook link of the user","example":"https://www.facebook.com/Williams_Scottish","maxLength":128},"location":{"type":"string","description":"Location of the user","example":"New York, US","maxLength":256},"native_currency":{"type":"string","description":"Native currency of user in ISO 4217 Alphabetic Code","example":"USD","minLength":3,"maxLength":3},"primary_language":{"type":"string","description":"Primary language of the user, follow ISO 639-2 standard","example":"en","maxLength":30},"realname":{"type":"string","description":"Real name of the user","example":"Williams Scottish","maxLength":256},"twitter_link":{"type":"string","description":"Twitter link of the user","example":"https://www.twitter.com/@Williams_Scottish","maxLength":128},"user_pastelid":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"user_pastelid_passphrase":{"type":"string","description":"Passphrase of the user's PastelID","example":"qwerasdf1234"}},"example":{"avatar_image":{"content":"iVBORw0KGgoAAAANSUhEUgAAASoAAACpCAMAAACrt4DfAAABUFBMVEVPk//////m5ubl5eUkJUYwbP/k5OT60J360J7y8vLt7e34+Pj19fXw8PD5+fnr6+v61an60qMgFi9IkP9Qlf88i/9RmP9Djv//0pkuaf82iP/w7OQACj//1aH/1JUhZf83dP91pfoAADwQGEKgu/MbHkPhxLALXv/z7uOOtPyCq/jw9P4hHz3gwJ04eP8aYv/F0e2VtfX//PSvyf+/0/xEetVKiOwkGC3W3Ore6P0rQ3xpnvsGEkAuLEjgupALFUG3yfAAACe+t8qnr9nHvMZBPFFeU1x7oO/RvbqYquHbx71kjP0+gP/74sSKpv6StPbX5P+zxvBgjeJAXJo/RWlBW5VBYKY1RHNAcMQsJDgdFDNDV4opMFdRdLvZ3egnNWM1LDyGens7asO8oIjBqpZWTVo6OVRnYm54Z2eehnanjnvJqYqdgWiykW7sz62jrtzuoXzIAAAXaElEQVR4nOVd+18TSbbPg9CdEEK3nRdpQkSCBKIGAioIIqujzojy0Luu7syyO1dxVr139v//7dapU/1Kujt9qjshfu4ZHQ8JkJNvzvn2t05VV6XSYLMZZj7eAjilbCaTLYA35/XmwSuClwcvD17R682DNwdeAbwSeAvsF886Hn8xs9PJbJ3vtM+2Dw5SYNWDlY2z7Yutc/g1mesJKmN7WXBT1w0VvNj5zka10ajVaoZhpGxjXxi1WqNxsNHeynbM/+dQmZ3Zi41Uo1JzITRsDLFGamO3K2KeZqhmk4pKxGJ7x9upRjhKLrwYXNtbpjn2oEZDlc34eANRueKbHRXVrB3VrE9UmX56dzMyTA5clc1j0xxXUC4PobK9LIScmgVDbJhlfDyBFzMRkOUVwct7vTx4GBB4GBB4GIbl7W82KkScHLS2zMxYgkIPUfKggl4KUitrpZFf7flyw8Bn5/cpDjCC4/VLO9WGFE4CrUp5Z9ZMOKjA2nO8iUNlzm5UavI4WWiddacGKhdN+dEoOSqR9ebeSpyEcoHV2NxPKig/mgqCCgHK2l7GziXwCl5vDjyMCry818uDh1HZXgE8HtXegRxDBYFlJhEU9xyd51F8iAWmkrgCMsvanh+j+9EohuZDno5XcNGoebmZTEY5YG104wYVxugD3D4xCTqfaSeXUQ5YbV4NUyNBE4FqKxWbzP2sYjDpcG1QJSNBsx61112pjAMosMbKrCkX1EgJ6geVzeMkRh+g0XwQjc6ld6m6nGJG7diUCSpN4/bJqPXxpRRaZWXeHJdaz05SrZ8bY0wpNAMY68dX6+0xpxRapd3JTBQqX0YfVOsOec6Oiorl9biLz7Laihk1qAFG91XrPl5qASxdYmZ5ae4VvN4cePPgFb1eHry81ytaXqFbHnvxWWaUL6MFhd48eHPgFbxeCTyOBYCSdvAZr1o/H4uWCrLalvnDqvXdCRWfZZUL8wdV6zuNySLFyX0CUEk3jGfdUc06UfUnc+kbwGqjHxbUiIZx2usNNoxLNqPbXgGcOa83D17R6+W9Xt7jdbavASnGV2f9kKAWiuDNe7058Aper+T1OD6pbDZrcRfzMj6eSC3miYSyvCJ4ea+XBw8+u+vIKbDKhjkbGBRT68wTjM48wegeDxPK9rK2Ny4Jel1Isbxqd34otT55Rnes0jYDuT0WVNmslWAs07J22SGjOx4UYNYuQIvRmTeY6/Dr+rvXiBTD6rjvE5SAyi7ArFV2jrdgY5Hx8VIFMM7eQR7yuNfLe728x5s/v1akGFZb/aGgCkWvNx/kIbd7vZJLrTPksrbnx+h+3G6n1gB5dmNo9DK32FhdZoYY3fEKQdyOaeTjQflkxyFBJd9puVytlt/ev3//rVEFc0HG3Crtd5k/hFpfkRkhl6vl++8ePbxh2X+9++uH+29TVbQH99//7cZfCR+BsWKOCypIMNsb4HaH0YO43ZPrO3SZwNLpw6MbN+7cmXHszp07HLOHH/k/7LnfKNlaa5uBBejH7Q6j+3E7FuAcGLKY5c2DUwzy8l4v7/WK+2RKL1cfvPu7ByZ/e/iAglVlr+gXXpA3H+Q5+ASJhRFqfSChXKklAdSjh6NxYnaDBFUqlZBad8RCwhKUSlTl1K/RgKJmFaOrzlSrdWKHqlz98DEiUDM0rkqBEh2+DF6nWvcWYImIVOrXG1GBYlDR9AKjdvYmgwswolp3FeA8WBEsyMsHeflBr79JKr/q/egpxS6J76lQGZt930CLoz0/LELFAlGtZ7ZIMr36DwJQDKoPZGlbOfcXC1HV+oBY8KEpWQmaIX3s1fcPKUjN3LlPzSr2GlOq1vttSlJV3xNoCrF6X6XmVWWnf41qPaQAx4sUE1bvyANpo5ANLcCI/RcsQOQzsNFePszrbxA4XQYpllf/TBGxMs76I4OPikCgWKCq9cwlIamqH2g8ZWP121uquOoGJZSfWg8XC0lJUJMgFMoPSNc+t328T8PK2AijqetR63vR1We5/E9pqMhYQVqNWa37cHtYAZoEpqq+k0eKYUUcCm6MLMCoaj2fjM1Tyk+OqIRRub02X0zmLUYUCyO5naCpqo/iJBVwO0mLGm0zilqPIBZ8aEpGgkYPvfxARid4sKKNBo3MNKn14lZ0Uq/+Gi+pmD0kUXvteKJqfUQB9qN39Mrl2EjNzDwmsdVBP0IB+gySBwuQM5aUPHd5+wSlQOsn+ButBCuX5DfkhwpFLGQDxcI2QSn8LQGoZj5SRoPGthmWUJFbe4lI0Ohxl1OxlIJld95R0qpqTo1aJ0xold/+PQmoaI32yt5k1HqE4TKh/sofkqi/mZkblJ4oVCBxcsuvACnN9IC2epEQdQJSgdudXykVWE6iwR5jIt5KLcpIObZUt+0jAalUo5tEa8+HpogS1Lwg9PTKv0kB89vq4CM3KDK0tjMdat08IHy+5X/JILV09PutgYfu/DdpYcx41Dp1KVqG0P4sp2QGgGsvms1Pq2teqEhkVUlicoszFi5uGenlBzxOlCXC+E8Sqlvfm2rzaMZThHcekaDaw5CBs8UiGB9vPsjjy2ESmIjfoVCVDFSr/24qqtJs/rHkfvQLRVlZnRj6stlE1Tpl8YsUVEu6oqmaomrf3IRFugQaK+Y0qHXKpysD1dInXQVTlOb3Q4ewbtCaoZmE1brMjSMlyjI9CagOofwAKI1hpb04lIOqchl/KZqzgK807EVY4Fg8pkwq06Fa/YNBxOqP/Z+DZasGGlS13WK0ZY0le1ljqeD1HLEQof/ix+1zbcpCIQuqtWBsBpC6UhRdZzBZmdX8vLYmAZWxU7Sn5GWXzfrQFEmC0tZUIVSH36Ni9eSKZRKHSIW/KvvTPHq8KgHVZv/a1XqfotUFVEtH+pehkYqfHf7RhOqDtNJ1BpbKXe2PNTpUK0lBlZW+cWSOtFDPgqqp/XtwpDJsa0tfNcglTlMq1CHgxf45WiJDlUoVbLUue+OIc7vNgn0TktcTt5V6vLzzGGn5pwUV4+dPj5+EI7V0ddQEflI5TfF04n9U5a4EVA37xqQF+9Yjl2ffeuTySl6Pi4XA/stotZ65JC3pF1DdBc7Rvy6FVOHq4TeVIaVzmtKBr4CpeCGqMlkFfZiYN7nFlKAZygjQnVXsjTfv/r76xJff1w6f/K4xOcVggT/su6H6FMCNgaXKZFXl3IemJqrWMyRZ5WSVpgPvNPVvV4eDaK2tLn359GfTqjegde7CNVDhPyaTVbXd2FDF3JQpQ+nrebKKZQcfBB99u5pZOlxdXQNbfbK09vzrURMEuq6IslPgAggXP07w7AuZrBJQxdmUybk53t4YpuD1nG0EfDYPSF/IZRXDCXKGp1ZTP/r29esVs9+/fjvSGU7wMNIUTykVqw9+hOMlk1VGuxBp84C0vWXA4MYwsbekOJPIqltHQDuWDGDvnsFjmaKjLuDPMqRQJ3CKUqG/AIDdvSUB1ZkZYw/jRCQoZbEsh4pR9pe7ql1bOpQaoMX+MFdTBI/zJxlIAA48q6Fk56Lh6Mva4RoVqs2gedOJqXXarVrl1F+efwO5xPUkVBXnaqwsnWeQuNJpHDVedirgpCCkOr8YNvXvV38hQrWSEFTymzIR72qr/E+zCc0nztT8cgZ5AoWHpcbJSYeU4uXJhjKK1uSjG/YE5KIOQ0Gmypr/26BCFXdTJmR0/ozllbye2LzR8ooZvtWX8EwaVJWndd6mUzGlVCEHPn/7rOEVUcMrnsbbnlCkOj4J+PArIBYns/pTkqKDSZs03+pLNPnAQ7y8HiLn9Tg+cTeQo0FVe7aM7xOFN6cfVf3z8dKTW1calBa/LqI2V5DFtatbT5Ye/2kPl8XPMFt+Rrn4IlQSG8glJkGJWaWLt4k6gb99RXsMGnT1CqWDhmSlcznBvryCwc/aY10M/3QcEvLfoVNe2tj0oamJqnWTIhaMX0T54SiY85XS/IwTMbe+K3jN45KKExbTE5+xAbH0vcl/AuC1oFLrv1BeeyM2VDHVOmW9eqr2kw2VoB2A6isOmg8/NcU1j6ePysuw+Ql76atfm6JtxeWWgOonQgUa2xyqOGrdhs5vq/WBLXr9NualqPXaK7t4NKv9pHmyCmkelQL3bous+twElFRU7dYveUWBqg05E3Vj3rTXywToqmC1Pjc7XIW7UlAhDyEw6nPgqicvQBJoiKLCaR8EffMF56ovWJk616d2Af5Mee2LjFtXSW/3HEOCUqAynjlcxUHi0lPRnt86vMWQAv2pogjVeIWCNV+wJ5+r4hIAT2s2VM8oxX+cSUaCykN1TlE3Ly2twMFioxVsHzTvfjqyJvtQaumqBYvS/P7pSBNTERbfC7XwkvDSsMgxKbXux+0R1HqX0gWtvHIUqH3JF61gHXSUqgrJrirOo7qATigqm+9uUz6lymU2rlp3xELWTqisO6Fcnp1Qzs7KmQJJMx8sW8IKqUrX3VNXDEINmzNcnuPAhj+sCsLHsSH+hmXSXFHDZvSsfYxG1mZ0J7WydkINeqN1VfjhLBnCLVspEILLdTdV8VaCjtqcAaciJPz/qqArHNRojqSykKJt6mDMDdeexOEscZZ3EO4ZAasdvFqu1xUES7PeOS891SYrDo8mtAOiid/IOzIsxer15dsHtHE63j1yrSthiDt2MNJ4+exnoap4AWoCD8QC4BAJxQEEbLCzhYmIifbzs5fEXbKMzfhQxVTrs8Ud8s56RuW2yBDB4ry0OK2Ljp+G3I4jZpVfCjmf8QTTGJ+TN14z2liAZLXu4BN7LegcbXcTbrXbOLvHe0/I7eKCyBNJE/qUVyV37YTC6dPb9Jes7BZjrwX1qT3aUYqX9A3jGFSiU2UNfjUFu1GYZoro7CE3qXb6icV7MlA1SiNWGGfHL0GLJjlsgEpc+q13L9a5WLxlt/ZQMIirpFgUI5VV5Wk4oJPYseJQ/dTEtS2g11W8Eipi3IK0jqWmKUJTqVitWLG0jgKasTIKqshZ5b9wIdK69QxpLRpCxcaCtvTmC82YpNKFbLB6d1xpiVUwSPiq4Lc6qf2JUO0ksG497hUwTxsFYuDQ4kPqRnmFXI7zEK7xtMonanTnIaR2UksPrbKVnYoDOum8frCMk6L2MiAcPlupZrVpgOlRdSo4PkQVTxvRcKtNya2TdLIy7OUanKd0HYfDFq2L+lOFXkAOs9csqBp9O9sDcxJQjT6gky5Caz/XVUWsLxONT8VWUlb9qaLeeLdUxXWO8Aipo4dmXCyM6YBOSmchT+zDYOi/LNsrgngvTySVKqa2rApEOaVZg2ZMxWUJqtqzCjBOZwHTSL5fxbjdpG+FXbNmslChoyjAgSBvtIhRjia6obiyQWjUJvnVUtX0lBz5YxLuXbageopyQTSkdNGEwpl3PjGKc6b2xRDQQ7EgU38wWzMNt05mSHfkCqvWsbR4m0os9cSmKCyowjVV4sKIgpR3XwBRUpsYrbE/JqhoMzZ83pRegZWf6oro0om1UxZWuHbB7ouq2HOAwQ2vwzplRktYOT0EVawDOiXnAcGTqMBUucl7VtaCKhspDWdNVftiKFY3qmIxkYSowtlS0gGdaa/H8UnmgM6uRHfhP8uiUafjYiBLJUD9ieY6fo2DZZxaVupPJRowzgzE9R/QSbt7RGB1u8knZXDZnuqatFLscSCOlnGJEU9CRaPXesg9I9exLSFtSTYaMDtPKly86JphdwwXIqP0AtyIcw/cKrvFMUAlfUBnRuLoDKZD+fWOj4ndzO5CSuMJx5dDwvPLEuWXSsU7oNOBKmjVXsHrBa3aW8A9eU3S/sXCoBfDpYEuBsNOE8ESDnhDBNKUyoY0Eid5GW3XWr1Yq/YwjWbjHtBZkvm4a0+XsTfMswpr0JVZYnKC94zh3/ormWNfalN3QCdtUbawyvGyIgQTHxErYmU67/ip/D+rpaWrckgZG+a0bSIuoRcAK5AMumKPihW76SluiMARDaTXMr1NzF9hL+FNxDPxD+iUSqtU7aUuLoRisYIqAMOlDFxe8Wby8n+kkDI2zawDlfTdEIDViHtsSqPusbE9ybRKGdVXy5g7AA3vSGkisZDMOVD1Pw/kzjyrXEof0Dl0j00iap2vCpUY3eC7+UWpKzpyN78/AldaQaNPx/XXdYU+8YBWO+MJZTP69at1XD4ke9ZdLfWUy08+foZxHoxlrFuP4LGnKelfPZ1H/vTpjWNuZeN1rvvGutLxLp9iDWrgrq03xVyDunu/hVS7nyBUMe9d9hzQST8ShEHQuLnYOmG/o8PrTxU3kCii26d32FMnrdw92h011m83x3JAp+Qd8a4DOulHwkNCLeZyLd4lEQ1PTVWsWXj4C89st3Ls214b5ANHtvwO6JS+I95KniQO6KQcesCBusdwYtbjN8sKbERrwRouwzPnPfiuxcV7NLDgXpHpPaCTspecBVQut961oRrqLMAz3XXxjTSwaqUpPqBz4Ti6uHptAcWgKoVDVVq3vzX3OjJWld30OKCS2RfU74DOTsSZ5jIj89wAVNowUozeB6FavFmLBpa4AdApwNg7DfntXxV6VOeIAzojvY/yPRdQVgEOt6sYVG94Afbc3734Otq22PnSyAM6IxzL6dq/KvauaANehImuci3nQUrQ+ptAqHY9ULHEipC6jf1pP6AzQpOv/NoLFBMLbfjRvh9UXEK2WwM/sDhSZVV2kj8jPmmosqNW8Q0jlVs8SfunlaLxJ06Gf2IEuwNRJQ5V/H1B0wPcHj6BWr459L5ZBXKySg9BVedJ1V0f/onFe+FYDQYlrdZdBYi7zRaL1s6yYV6ee/PDXt7jhZ0R74uUkOvpN/UBpDhTcbE+jNXNEKwq3dJgUC6vOOwVuDcf5LHrWLIHdNqfXfCSR3+kmKV9sBJIpf1/IgSrxp45HNRUHdBpM0I/SIkGItU6RVQ6ij2rrCgdfOzUL6nCarCx2/cJasrUuhVLx/8yOCCn3LZ+nhaJpdShrVdXREqlz32YSmDlz+0BF7/rVOvBBcgGzm2fvPK59rnyal9Ak+503rx507e+6gbkVCBWlXZQUD4FGLH/ggWYwNkQfl7/bBirSghSTJR20z62nwv7odzwi9S2+xHCkzobIkgsUE4c8f0Uz4ZqMOw9M6xa5+kh222FIpVbHPo4ts2woGKdOJK4BLW5fcOLVflmOFSMr05LXqBKp4E8ZdkAtVfa/dCgpkut21EN8FUYUQlrLW64qrC7kQvhKSutXrtfo7EzKqhxqHXSmVv+ud65cGM1GikAq/d6e2e/293f2X7dGw0UmBup3dFBDRdgZLWeyEluAV7fabaX70V630BZvd76eq83gqSc73eugpWtfuyQw05ys5Mn3gGdaf/r8mVZjJ1rEd853RbFx2Gkuma0oGTPB0Q3WQnq4obMSi0ap8sbDnAqKxholKCmSK27oTLbjbEmFUsrYMRGmxDUWNW6bAGyXO9sGcY4kwoEg2Gc04KSOiE3P3YrLqw0xphU0BNdySd0tnKYJXWad9h1mY2ee+MswNYOhkcKSuI07/FJUBcjmJcnvdHvWc56J125oKZIrXti6VxEkN4S1spdyAd1DQd0Rsn1fvo0+Sps9V5mzBhBDQ6XwwswSKgnL977l+VkwVrsHez3ExflgR65tUcWC04XLWPun6wnBtbi+slWAkFN9IBOkto7P1lPhLNavZMtM6mg0lOh1oej2j9txQWLDalP9zpJBhVbrctOboXTqDm7fTNOHbZ6N7e7QLdJBhX5gE6/VrK3mS7VYA/oW8/1+7sHkbssAwnV6x1smcXkg/J6fliMYSI+hDwdr2O2T9YjNu9cOK2f7JRYYYwpqGlQ637csNAxd09z61GTq9XqtQ6Oxx3UNKh1v6jgZfd3yrleqxUG2CJj8fXcaXuvY04gKLpaH7EULb4wtsnT7Mweb5zeW+/1ADIHs0UGEUul9fV7Bxu7XYh5gkGNOKDTx6MvcJRZS1gq9c1+J7u1tb15enoimvD3Tk5PN7cvzrv9ft+cn594UMOo/B/J2Q2X8T0dSAAAAABJRU5ErkJggg==","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"},"required":["user_pastelid","user_pastelid_passphrase"]},"UserdatasUpdateUserdataResponseBody":{"title":"UserdatasUpdateUserdataResponseBody","type":"object","properties":{"avatar_image":{"type":"string","description":"Error detail on avatar","example":"","maxLength":256},"biography":{"type":"string","description":"Error detail on biography","example":"","maxLength":256},"categories":{"type":"string","description":"Error detail on categories","example":"","maxLength":256},"cover_photo":{"type":"string","description":"Error detail on cover photo","example":"","maxLength":256},"detail":{"type":"string","description":"The detail of why result is success/fail, depend on response_code","example":"All userdata is processed","maxLength":256},"facebook_link":{"type":"string","description":"Error detail on facebook_link","example":"","maxLength":256},"location":{"type":"string","description":"Error detail on location","example":"","maxLength":256},"native_currency":{"type":"string","description":"Error detail on native_currency","example":"","maxLength":256},"primary_language":{"type":"string","description":"Error detail on primary_language","example":"","maxLength":256},"realname":{"type":"string","description":"Error detail on realname","example":"","maxLength":256},"response_code":{"type":"integer","description":"Result of the request is success or not","example":0,"format":"int64"},"twitter_link":{"type":"string","description":"Error detail on twitter_link","example":"","maxLength":256}},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""},"required":["response_code","detail"]},"VerifiedTicketResponseBody":{"title":"VerifiedTicketResponseBody","type":"object","properties":{"is_reconstruction_required":{"type":"boolean","example":true},"is_verified":{"type":"boolean","example":false},"message":{"type":"string","example":"Excepturi autem iusto rerum."},"missing_keys":{"type":"array","items":{"type":"string","example":"Sunt quia vitae officiis dolor."},"example":["Eos dolore fugiat asperiores exercitationem sit.","Aut eius."]},"reconstructed_file_hash":{"type":"string","example":"VmVsIGV4IGl0YXF1ZSBjdXBpZGl0YXRlIHNhcGllbnRlLg==","format":"byte"},"ticket_type":{"type":"string","example":"Et quia unde."},"tx_id":{"type":"string","example":"Ducimus velit nulla hic provident."}},"example":{"is_reconstruction_required":false,"is_verified":false,"message":"Maiores qui eligendi ab ipsum alias.","missing_keys":["Et laudantium.","Accusantium laudantium non hic beatae iure.","Nihil explicabo aperiam non.","Sequi sed aspernatur et sequi."],"reconstructed_file_hash":"SXBzYSBkb2xvcmVzIHZlcml0YXRpcyBldC4=","ticket_type":"Debitis esse sed.","tx_id":"Veritatis doloribus."}}},"securityDefinitions":{"api_key_header_Authorization":{"type":"apiKey","description":"Nft Owner's passphrase to authenticate","name":"Authorization","in":"header"}}} \ No newline at end of file diff --git a/walletnode/api/gen/http/openapi.yaml b/walletnode/api/gen/http/openapi.yaml index 291cd49c5..e98f526c6 100644 --- a/walletnode/api/gen/http/openapi.yaml +++ b/walletnode/api/gen/http/openapi.yaml @@ -927,6 +927,38 @@ paths: - http security: - api_key_header_Authorization: [] + /openapi/cascade/downloads/{file_id}/status: + get: + tags: + - cascade + summary: Get history of states as a json string with a list of state objects. + description: Gets the state of download task + operationId: cascade#getDownloadTaskState + parameters: + - name: file_id + in: path + description: File ID returned by Download V2 API + required: true + type: string + maxLength: 8 + minLength: 8 + responses: + "200": + description: OK response. + schema: + type: array + items: + $ref: '#/definitions/TaskHistoryResponse' + "404": + description: Not Found response. + schema: + $ref: '#/definitions/CascadeGetDownloadTaskStateNotFoundResponseBody' + "500": + description: Internal Server Error response. + schema: + $ref: '#/definitions/CascadeGetDownloadTaskStateInternalServerErrorResponseBody' + schemes: + - http /openapi/cascade/registration_details/{base_file_id}: get: tags: @@ -1120,6 +1152,57 @@ paths: $ref: '#/definitions/CascadeUploadAssetInternalServerErrorResponseBody' schemes: - http + /openapi/cascade/v2/download: + get: + tags: + - cascade + summary: Downloads cascade artifact + description: Starts downloading cascade Artifact. + operationId: cascade#downloadV2 + parameters: + - name: txid + in: query + description: Nft Registration Request transaction ID + required: true + type: string + maxLength: 64 + minLength: 64 + - name: pid + in: query + description: Owner's PastelID + required: true + type: string + maxLength: 86 + minLength: 86 + pattern: ^[a-zA-Z0-9]+$ + - name: Authorization + in: header + description: Passphrase of the owner's PastelID + required: true + type: string + responses: + "200": + description: OK response. + schema: + $ref: '#/definitions/CascadeDownloadV2ResponseBody' + required: + - file_id + "401": + description: Unauthorized response. + schema: + $ref: '#/definitions/CascadeDownloadV2UnAuthorizedResponseBody' + "404": + description: Not Found response. + schema: + $ref: '#/definitions/CascadeDownloadV2NotFoundResponseBody' + "500": + description: Internal Server Error response. + schema: + $ref: '#/definitions/CascadeDownloadV2InternalServerErrorResponseBody' + schemes: + - http + security: + - api_key_header_Authorization: [] /openapi/cascade/v2/upload: post: tags: @@ -1680,31 +1763,31 @@ definitions: activation_attempt_at: type: string description: Activation Attempt At in datetime format - example: "1977-11-30T10:16:09Z" + example: "1994-08-24T10:47:19Z" format: date-time error_message: type: string description: Error Message - example: Velit facere sunt. + example: Sequi similique delectus. file_id: type: string description: File ID - example: Quia velit fuga. + example: Excepturi inventore quia beatae sint. id: type: integer description: ID - example: 3814091699999055171 + example: 3778441935395154647 format: int64 is_successful: type: boolean description: Indicates if the activation was successful - example: true + example: false example: - activation_attempt_at: "2008-04-19T21:18:50Z" - error_message: Cumque esse voluptas. - file_id: Iste nobis. - id: 337857277724711965 - is_successful: false + activation_attempt_at: "1980-04-13T23:50:31Z" + error_message: Omnis enim quaerat sint temporibus sapiente. + file_id: Odio commodi autem ullam sunt. + id: 1568822808774503567 + is_successful: true required: - id - file_id @@ -1716,34 +1799,34 @@ definitions: drawings: type: number description: drawings nsfw score - example: 0.1885888 + example: 0.7990714 format: float hentai: type: number description: hentai nsfw score - example: 0.0070654918 + example: 0.54859966 format: float neutral: type: number description: neutral nsfw score - example: 0.21138725 + example: 0.7412531 format: float porn: type: number description: porn nsfw score - example: 0.049422737 + example: 0.9034763 format: float sexy: type: number description: sexy nsfw score - example: 0.023406312 + example: 0.69847727 format: float example: - drawings: 0.6390544 - hentai: 0.7168249 - neutral: 0.43131202 - porn: 0.70387167 - sexy: 0.20076382 + drawings: 0.15022062 + hentai: 0.7648291 + neutral: 0.7316899 + porn: 0.8834867 + sexy: 0.7595724 CascadeDownloadInternalServerErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object @@ -1885,7 +1968,7 @@ definitions: - temporary - timeout - fault - CascadeGetTaskHistoryInternalServerErrorResponseBody: + CascadeDownloadV2InternalServerErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -1908,19 +1991,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false - description: getTaskHistory_InternalServerError_response_body result type (default view) + example: true + description: downloadV2_InternalServerError_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -1928,14 +2011,14 @@ definitions: - temporary - timeout - fault - CascadeGetTaskHistoryNotFoundResponseBody: + CascadeDownloadV2NotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -1951,12 +2034,12 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true - description: getTaskHistory_NotFound_response_body result type (default view) + example: false + description: downloadV2_NotFound_response_body result type (default view) example: fault: false id: 123abc @@ -1971,14 +2054,26 @@ definitions: - temporary - timeout - fault - CascadeRegisterTaskStateInternalServerErrorResponseBody: + CascadeDownloadV2ResponseBody: + title: CascadeDownloadV2ResponseBody + type: object + properties: + file_id: + type: string + description: Task ID for the download task - caller can check the status of the download task using this task_id + example: Voluptas vel vel dicta harum ex quas. + example: + file_id: Accusamus numquam. + required: + - file_id + CascadeDownloadV2UnAuthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -1999,7 +2094,7 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: registerTaskState_InternalServerError_response_body result type (default view) + description: downloadV2_UnAuthorized_response_body result type (default view) example: fault: false id: 123abc @@ -2014,14 +2109,14 @@ definitions: - temporary - timeout - fault - CascadeRegisterTaskStateNotFoundResponseBody: + CascadeGetDownloadTaskStateInternalServerErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -2037,18 +2132,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false - description: registerTaskState_NotFound_response_body result type (default view) + description: getDownloadTaskState_InternalServerError_response_body result type (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -2057,80 +2152,14 @@ definitions: - temporary - timeout - fault - CascadeRegisterTaskStateResponseBody: - title: CascadeRegisterTaskStateResponseBody - type: object - properties: - date: - type: string - description: Date of the status creation - example: 2006-01-02T15:04:05Z07:00 - status: - type: string - description: Status of the registration process - example: Task Started - enum: - - Task Started - - Connected - - Validated Duplicate Reg Tickets - - Validating Burn Txn - - Burn Txn Validated - - Image Probed - - Image And Thumbnail Uploaded - - Status Gen ReptorQ Symbols - - Preburn Registration Fee - - Downloaded - - Request Accepted - - Request Registered - - Request Activated - - Error Setting up mesh of supernodes - - Error Sending Reg Metadata - - Error Uploading Image - - Error Converting Image to Bytes - - Error Encoding Image - - Error Creating Ticket - - Error Signing Ticket - - Error Uploading Ticket - - Error Activating Ticket - - Error Probing Image - - Error checking dd-server availability before probe image - - Error Generating DD and Fingerprint IDs - - Error comparing suitable storage fee with task request maximum fee - - Error balance not sufficient - - Error getting hash of the image - - Error sending signed ticket to SNs - - Error checking balance - - Error burning reg fee to get reg ticket id - - Error validating reg ticket txn id - - Error validating activate ticket txn id - - Error Insufficient Fee - - Error Signatures Dont Match - - Error Fingerprints Dont Match - - Error ThumbnailHashes Dont Match - - Error GenRaptorQ Symbols Failed - - Error File Don't Match - - Error Not Enough SuperNode - - Error Find Responding SNs - - Error Not Enough Downloaded Filed - - Error Download Failed - - Error Invalid Burn TxID - - Task Failed - - Task Rejected - - Task Completed - example: - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - required: - - date - - status - CascadeRegistrationDetailsBadRequestResponseBody: + CascadeGetDownloadTaskStateNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -2150,15 +2179,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: registrationDetails_BadRequest_response_body result type (default view) + example: false + description: getDownloadTaskState_NotFound_response_body result type (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -2166,14 +2195,14 @@ definitions: - temporary - timeout - fault - CascadeRegistrationDetailsInternalServerErrorResponseBody: + CascadeGetTaskHistoryInternalServerErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -2189,19 +2218,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true - description: registrationDetails_InternalServerError_response_body result type (default view) + example: false + description: getTaskHistory_InternalServerError_response_body result type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -2209,242 +2238,7 @@ definitions: - temporary - timeout - fault - CascadeRegistrationDetailsResponseBody: - title: 'Mediatype identifier: application/vnd.cascade.registration-detail; view=default' - type: object - properties: - files: - type: array - items: - $ref: '#/definitions/FileResponseBody' - description: List of files - example: - - activation_attempts: - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 - is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 - is_successful: true - activation_txid: Sequi qui eum et dolorum esse. - base_file_id: Rerum iusto accusamus. - burn_txn_id: Delectus dignissimos id dolorem et totam deserunt. - cascade_metadata_ticket_id: Numquam voluptas. - done_block: 4949105958821157300 - file_id: Perspiciatis accusantium sed eveniet qui qui. - file_index: Cumque est et fugiat qui. - hash_of_original_big_file: Accusamus repellat commodi architecto aut quidem inventore. - is_concluded: false - name_of_original_big_file_with_ext: Perferendis unde qui qui dicta. - reg_txid: Quasi est. - registration_attempts: - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - req_amount: 0.11360537957590923 - req_burn_txn_amount: 0.2916254651446542 - size_of_original_big_file: 0.5209096568475247 - start_block: 918621255 - task_id: Sit tenetur labore illum numquam quia. - upload_timestamp: "1973-10-04T06:27:17Z" - uuid_key: Voluptatem aliquam molestias. - - activation_attempts: - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 - is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 - is_successful: true - activation_txid: Sequi qui eum et dolorum esse. - base_file_id: Rerum iusto accusamus. - burn_txn_id: Delectus dignissimos id dolorem et totam deserunt. - cascade_metadata_ticket_id: Numquam voluptas. - done_block: 4949105958821157300 - file_id: Perspiciatis accusantium sed eveniet qui qui. - file_index: Cumque est et fugiat qui. - hash_of_original_big_file: Accusamus repellat commodi architecto aut quidem inventore. - is_concluded: false - name_of_original_big_file_with_ext: Perferendis unde qui qui dicta. - reg_txid: Quasi est. - registration_attempts: - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - req_amount: 0.11360537957590923 - req_burn_txn_amount: 0.2916254651446542 - size_of_original_big_file: 0.5209096568475247 - start_block: 918621255 - task_id: Sit tenetur labore illum numquam quia. - upload_timestamp: "1973-10-04T06:27:17Z" - uuid_key: Voluptatem aliquam molestias. - description: RegistrationDetailsResponseBody result type (default view) - example: - files: - - activation_attempts: - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 - is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 - is_successful: true - activation_txid: Sequi qui eum et dolorum esse. - base_file_id: Rerum iusto accusamus. - burn_txn_id: Delectus dignissimos id dolorem et totam deserunt. - cascade_metadata_ticket_id: Numquam voluptas. - done_block: 4949105958821157300 - file_id: Perspiciatis accusantium sed eveniet qui qui. - file_index: Cumque est et fugiat qui. - hash_of_original_big_file: Accusamus repellat commodi architecto aut quidem inventore. - is_concluded: false - name_of_original_big_file_with_ext: Perferendis unde qui qui dicta. - reg_txid: Quasi est. - registration_attempts: - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - req_amount: 0.11360537957590923 - req_burn_txn_amount: 0.2916254651446542 - size_of_original_big_file: 0.5209096568475247 - start_block: 918621255 - task_id: Sit tenetur labore illum numquam quia. - upload_timestamp: "1973-10-04T06:27:17Z" - uuid_key: Voluptatem aliquam molestias. - - activation_attempts: - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 - is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 - is_successful: true - activation_txid: Sequi qui eum et dolorum esse. - base_file_id: Rerum iusto accusamus. - burn_txn_id: Delectus dignissimos id dolorem et totam deserunt. - cascade_metadata_ticket_id: Numquam voluptas. - done_block: 4949105958821157300 - file_id: Perspiciatis accusantium sed eveniet qui qui. - file_index: Cumque est et fugiat qui. - hash_of_original_big_file: Accusamus repellat commodi architecto aut quidem inventore. - is_concluded: false - name_of_original_big_file_with_ext: Perferendis unde qui qui dicta. - reg_txid: Quasi est. - registration_attempts: - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - req_amount: 0.11360537957590923 - req_burn_txn_amount: 0.2916254651446542 - size_of_original_big_file: 0.5209096568475247 - start_block: 918621255 - task_id: Sit tenetur labore illum numquam quia. - upload_timestamp: "1973-10-04T06:27:17Z" - uuid_key: Voluptatem aliquam molestias. - - activation_attempts: - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 - is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 - is_successful: true - activation_txid: Sequi qui eum et dolorum esse. - base_file_id: Rerum iusto accusamus. - burn_txn_id: Delectus dignissimos id dolorem et totam deserunt. - cascade_metadata_ticket_id: Numquam voluptas. - done_block: 4949105958821157300 - file_id: Perspiciatis accusantium sed eveniet qui qui. - file_index: Cumque est et fugiat qui. - hash_of_original_big_file: Accusamus repellat commodi architecto aut quidem inventore. - is_concluded: false - name_of_original_big_file_with_ext: Perferendis unde qui qui dicta. - reg_txid: Quasi est. - registration_attempts: - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - req_amount: 0.11360537957590923 - req_burn_txn_amount: 0.2916254651446542 - size_of_original_big_file: 0.5209096568475247 - start_block: 918621255 - task_id: Sit tenetur labore illum numquam quia. - upload_timestamp: "1973-10-04T06:27:17Z" - uuid_key: Voluptatem aliquam molestias. - required: - - files - CascadeRegistrationDetailsUnAuthorizedResponseBody: + CascadeGetTaskHistoryNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -2467,19 +2261,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true - description: registrationDetails_UnAuthorized_response_body result type (default view) + description: getTaskHistory_NotFound_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -2487,14 +2281,14 @@ definitions: - temporary - timeout - fault - CascadeRestoreBadRequestResponseBody: + CascadeRegisterTaskStateInternalServerErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -2514,15 +2308,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: restore_BadRequest_response_body result type (default view) + example: false + description: registerTaskState_InternalServerError_response_body result type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -2530,7 +2324,7 @@ definitions: - temporary - timeout - fault - CascadeRestoreInternalServerErrorResponseBody: + CascadeRegisterTaskStateNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -2553,19 +2347,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false - description: restore_InternalServerError_response_body result type (default view) + description: registerTaskState_NotFound_response_body result type (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -2573,92 +2367,123 @@ definitions: - temporary - timeout - fault - CascadeRestoreRequestBody: - title: CascadeRestoreRequestBody + CascadeRegisterTaskStateResponseBody: + title: CascadeRegisterTaskStateResponseBody type: object properties: - app_pastelId: + date: type: string - description: App PastelID - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - pattern: ^[a-zA-Z0-9]+$ - minLength: 86 - maxLength: 86 - make_publicly_accessible: - type: boolean - description: To make it publicly accessible - default: false - example: false - spendable_address: + description: Date of the status creation + example: 2006-01-02T15:04:05Z07:00 + status: type: string - description: 'Address to use for registration fee ' - example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - pattern: ^[a-zA-Z0-9]+$ - minLength: 35 - maxLength: 35 + description: Status of the registration process + example: Task Started + enum: + - Task Started + - Connected + - Validated Duplicate Reg Tickets + - Validating Burn Txn + - Burn Txn Validated + - Image Probed + - Image And Thumbnail Uploaded + - Status Gen ReptorQ Symbols + - Preburn Registration Fee + - Downloaded + - Request Accepted + - Request Registered + - Request Activated + - Error Setting up mesh of supernodes + - Error Sending Reg Metadata + - Error Uploading Image + - Error Converting Image to Bytes + - Error Encoding Image + - Error Creating Ticket + - Error Signing Ticket + - Error Uploading Ticket + - Error Activating Ticket + - Error Probing Image + - Error checking dd-server availability before probe image + - Error Generating DD and Fingerprint IDs + - Error comparing suitable storage fee with task request maximum fee + - Error balance not sufficient + - Error getting hash of the image + - Error sending signed ticket to SNs + - Error checking balance + - Error burning reg fee to get reg ticket id + - Error validating reg ticket txn id + - Error validating activate ticket txn id + - Error Insufficient Fee + - Error Signatures Dont Match + - Error Fingerprints Dont Match + - Error ThumbnailHashes Dont Match + - Error GenRaptorQ Symbols Failed + - Error File Don't Match + - Error Not Enough SuperNode + - Error Find Responding SNs + - Error Not Enough Downloaded Filed + - Error Download Failed + - Error Invalid Burn TxID + - Task Failed + - Task Rejected + - Task Completed example: - app_pastelId: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - make_publicly_accessible: false - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + date: 2006-01-02T15:04:05Z07:00 + status: Task Started required: - - app_pastelId - CascadeRestoreResponseBody: - title: 'Mediatype identifier: application/vnd.cascade.restore-files; view=default' + - date + - status + CascadeRegistrationDetailsBadRequestResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: - activated_volumes: - type: integer - description: Total volumes that are activated - example: 5211517183393359758 - format: int64 - registered_volumes: - type: integer - description: Total registered volumes - example: 6225785543329032708 - format: int64 - total_volumes: - type: integer - description: Total volumes of selected file - example: 2491783727910503236 - format: int64 - volumes_activated_in_recovery_flow: - type: integer - description: Total volumes that are activated in restore process - example: 3052784579645018574 - format: int64 - volumes_registration_in_progress: - type: integer - description: Total volumes with in-progress registration - example: 6647654725534665280 - format: int64 - volumes_with_pending_registration: - type: integer - description: Total volumes with pending registration - example: 6393231374515051775 - format: int64 - description: RestoreResponseBody result type (default view) + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: registrationDetails_BadRequest_response_body result type (default view) example: - activated_volumes: 2870039884830181019 - registered_volumes: 8677976935247540464 - total_volumes: 7433392042031742197 - volumes_activated_in_recovery_flow: 2846191954697433601 - volumes_registration_in_progress: 5644572381616938664 - volumes_with_pending_registration: 6918183936885990465 + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false required: - - total_volumes - - registered_volumes - - volumes_with_pending_registration - - volumes_registration_in_progress - - activated_volumes - - volumes_activated_in_recovery_flow - CascadeRestoreUnAuthorizedResponseBody: + - name + - id + - message + - temporary + - timeout + - fault + CascadeRegistrationDetailsInternalServerErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -2679,14 +2504,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: restore_UnAuthorized_response_body result type (default view) + description: registrationDetails_InternalServerError_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -2694,7 +2519,286 @@ definitions: - temporary - timeout - fault - CascadeStartProcessingBadRequestResponseBody: + CascadeRegistrationDetailsResponseBody: + title: 'Mediatype identifier: application/vnd.cascade.registration-detail; view=default' + type: object + properties: + files: + type: array + items: + $ref: '#/definitions/FileResponseBody' + description: List of files + example: + - activation_attempts: + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 + is_successful: true + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 + is_successful: true + activation_txid: Voluptatem aliquam molestias. + base_file_id: Dignissimos id dolorem et totam. + burn_txn_id: Repellat commodi. + cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. + done_block: 649100778871101980 + file_id: Inventore illo. + file_index: Qui eum et dolorum esse dicta aut. + hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + is_concluded: true + name_of_original_big_file_with_ext: Officia quis. + reg_txid: Numquam voluptas. + registration_attempts: + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + req_amount: 0.8217214546342201 + req_burn_txn_amount: 0.0062028958461957965 + size_of_original_big_file: 0.8474169125149866 + start_block: 256891858 + task_id: Et autem. + upload_timestamp: "1989-07-01T07:51:12Z" + uuid_key: Doloribus alias qui est. + - activation_attempts: + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 + is_successful: true + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 + is_successful: true + activation_txid: Voluptatem aliquam molestias. + base_file_id: Dignissimos id dolorem et totam. + burn_txn_id: Repellat commodi. + cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. + done_block: 649100778871101980 + file_id: Inventore illo. + file_index: Qui eum et dolorum esse dicta aut. + hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + is_concluded: true + name_of_original_big_file_with_ext: Officia quis. + reg_txid: Numquam voluptas. + registration_attempts: + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + req_amount: 0.8217214546342201 + req_burn_txn_amount: 0.0062028958461957965 + size_of_original_big_file: 0.8474169125149866 + start_block: 256891858 + task_id: Et autem. + upload_timestamp: "1989-07-01T07:51:12Z" + uuid_key: Doloribus alias qui est. + description: RegistrationDetailsResponseBody result type (default view) + example: + files: + - activation_attempts: + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 + is_successful: true + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 + is_successful: true + activation_txid: Voluptatem aliquam molestias. + base_file_id: Dignissimos id dolorem et totam. + burn_txn_id: Repellat commodi. + cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. + done_block: 649100778871101980 + file_id: Inventore illo. + file_index: Qui eum et dolorum esse dicta aut. + hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + is_concluded: true + name_of_original_big_file_with_ext: Officia quis. + reg_txid: Numquam voluptas. + registration_attempts: + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + req_amount: 0.8217214546342201 + req_burn_txn_amount: 0.0062028958461957965 + size_of_original_big_file: 0.8474169125149866 + start_block: 256891858 + task_id: Et autem. + upload_timestamp: "1989-07-01T07:51:12Z" + uuid_key: Doloribus alias qui est. + - activation_attempts: + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 + is_successful: true + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 + is_successful: true + activation_txid: Voluptatem aliquam molestias. + base_file_id: Dignissimos id dolorem et totam. + burn_txn_id: Repellat commodi. + cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. + done_block: 649100778871101980 + file_id: Inventore illo. + file_index: Qui eum et dolorum esse dicta aut. + hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + is_concluded: true + name_of_original_big_file_with_ext: Officia quis. + reg_txid: Numquam voluptas. + registration_attempts: + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + req_amount: 0.8217214546342201 + req_burn_txn_amount: 0.0062028958461957965 + size_of_original_big_file: 0.8474169125149866 + start_block: 256891858 + task_id: Et autem. + upload_timestamp: "1989-07-01T07:51:12Z" + uuid_key: Doloribus alias qui est. + - activation_attempts: + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 + is_successful: true + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 + is_successful: true + activation_txid: Voluptatem aliquam molestias. + base_file_id: Dignissimos id dolorem et totam. + burn_txn_id: Repellat commodi. + cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. + done_block: 649100778871101980 + file_id: Inventore illo. + file_index: Qui eum et dolorum esse dicta aut. + hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + is_concluded: true + name_of_original_big_file_with_ext: Officia quis. + reg_txid: Numquam voluptas. + registration_attempts: + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + req_amount: 0.8217214546342201 + req_burn_txn_amount: 0.0062028958461957965 + size_of_original_big_file: 0.8474169125149866 + start_block: 256891858 + task_id: Et autem. + upload_timestamp: "1989-07-01T07:51:12Z" + uuid_key: Doloribus alias qui est. + - activation_attempts: + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 + is_successful: true + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 + is_successful: true + activation_txid: Voluptatem aliquam molestias. + base_file_id: Dignissimos id dolorem et totam. + burn_txn_id: Repellat commodi. + cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. + done_block: 649100778871101980 + file_id: Inventore illo. + file_index: Qui eum et dolorum esse dicta aut. + hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + is_concluded: true + name_of_original_big_file_with_ext: Officia quis. + reg_txid: Numquam voluptas. + registration_attempts: + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + req_amount: 0.8217214546342201 + req_burn_txn_amount: 0.0062028958461957965 + size_of_original_big_file: 0.8474169125149866 + start_block: 256891858 + task_id: Et autem. + upload_timestamp: "1989-07-01T07:51:12Z" + uuid_key: Doloribus alias qui est. + required: + - files + CascadeRegistrationDetailsUnAuthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -2717,19 +2821,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true - description: startProcessing_BadRequest_response_body result type (default view) + description: registrationDetails_UnAuthorized_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -2737,14 +2841,14 @@ definitions: - temporary - timeout - fault - CascadeStartProcessingInternalServerErrorResponseBody: + CascadeRestoreBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -2760,19 +2864,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false - description: startProcessing_InternalServerError_response_body result type (default view) + example: true + description: restore_BadRequest_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -2780,12 +2884,262 @@ definitions: - temporary - timeout - fault - CascadeStartProcessingRequestBody: - title: CascadeStartProcessingRequestBody + CascadeRestoreInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: - app_pastelid: - type: string + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: restore_InternalServerError_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + CascadeRestoreRequestBody: + title: CascadeRestoreRequestBody + type: object + properties: + app_pastelId: + type: string + description: App PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + make_publicly_accessible: + type: boolean + description: To make it publicly accessible + default: false + example: false + spendable_address: + type: string + description: 'Address to use for registration fee ' + example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + pattern: ^[a-zA-Z0-9]+$ + minLength: 35 + maxLength: 35 + example: + app_pastelId: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + make_publicly_accessible: false + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + required: + - app_pastelId + CascadeRestoreResponseBody: + title: 'Mediatype identifier: application/vnd.cascade.restore-files; view=default' + type: object + properties: + activated_volumes: + type: integer + description: Total volumes that are activated + example: 2179505416296102007 + format: int64 + registered_volumes: + type: integer + description: Total registered volumes + example: 6597285476160611200 + format: int64 + total_volumes: + type: integer + description: Total volumes of selected file + example: 7119702643343716727 + format: int64 + volumes_activated_in_recovery_flow: + type: integer + description: Total volumes that are activated in restore process + example: 2688818931699507667 + format: int64 + volumes_registration_in_progress: + type: integer + description: Total volumes with in-progress registration + example: 1071003580025551546 + format: int64 + volumes_with_pending_registration: + type: integer + description: Total volumes with pending registration + example: 1809131097697126008 + format: int64 + description: RestoreResponseBody result type (default view) + example: + activated_volumes: 6197761208295789992 + registered_volumes: 8577705285909327427 + total_volumes: 8346182040873375707 + volumes_activated_in_recovery_flow: 451603711559925012 + volumes_registration_in_progress: 6021041156532863970 + volumes_with_pending_registration: 9023197240308074166 + required: + - total_volumes + - registered_volumes + - volumes_with_pending_registration + - volumes_registration_in_progress + - activated_volumes + - volumes_activated_in_recovery_flow + CascadeRestoreUnAuthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: restore_UnAuthorized_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + CascadeStartProcessingBadRequestResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: startProcessing_BadRequest_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + CascadeStartProcessingInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: startProcessing_InternalServerError_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + CascadeStartProcessingRequestBody: + title: CascadeStartProcessingRequestBody + type: object + properties: + app_pastelid: + type: string description: App PastelID example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS pattern: ^[a-zA-Z0-9]+$ @@ -3311,38 +3665,38 @@ definitions: block: type: integer description: Block - example: 770414482 + example: 875709855 format: int32 end_index: type: integer description: End index - example: 2941821598506559608 + example: 5122269723773644481 format: int64 file_hash: type: string description: File hash - example: Sed impedit ut sit et. + example: Non itaque. merkelroot: type: string description: Merkelroot - example: Quae facilis consequatur reiciendis quam dolorem vitae. + example: Suscipit eius officia illo provident fuga minima. start_index: type: integer description: Start index - example: 3732715178392837689 + example: 6542642547904299742 format: int64 timestamp: type: string description: Timestamp - example: Officiis est consequuntur. + example: Nihil deserunt. description: Data of challenge example: - block: 617415567 - end_index: 7934970221405679950 - file_hash: Officia cum. - merkelroot: Iste ea. - start_index: 2444494162244828464 - timestamp: Quasi ex et et doloremque voluptas qui. + block: 1779406359 + end_index: 1866814163046970754 + file_hash: Quibusdam molestiae consequatur. + merkelroot: Voluptatem omnis quidem veritatis. + start_index: 1597917383536378215 + timestamp: A adipisci. required: - timestamp - file_hash @@ -3355,27 +3709,27 @@ definitions: health_check_challenge_score: type: number description: Total accumulated HC challenge score - example: 0.6860295220289976 + example: 0.12859021407559276 format: double ip_address: type: string description: IPAddress of the node - example: Eos explicabo repudiandae id. + example: Odio et sit mollitia. node_id: type: string description: Specific node id - example: Laboriosam et possimus sit sunt expedita. + example: Maxime ex in. storage_challenge_score: type: number description: Total accumulated SC challenge score - example: 0.6479689700600071 + example: 0.1891036046680823 format: double description: Combined accumulated scores for HC and SC challenges example: - health_check_challenge_score: 0.42002964061462505 - ip_address: Et ducimus error. - node_id: Eos sequi illo fugit consequatur ut architecto. - storage_challenge_score: 0.45913245817393894 + health_check_challenge_score: 0.2958604036605215 + ip_address: Et ut. + node_id: Veritatis voluptatem. + storage_challenge_score: 0.9764465239514757 required: - node_id - storage_challenge_score @@ -3387,7 +3741,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -3403,19 +3757,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: getTaskHistory_InternalServerError_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -3453,7 +3807,7 @@ definitions: example: true description: getTaskHistory_NotFound_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -3489,11 +3843,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: registerCollection_BadRequest_response_body result type (default view) example: fault: true @@ -3516,7 +3870,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -3544,7 +3898,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -3575,19 +3929,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: registerCollection_NotFound_response_body result type (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -3634,7 +3988,7 @@ definitions: type: array items: type: string - example: Autem aut perferendis quo. + example: Voluptatem ut. description: list of authorized contributors example: - apple @@ -3754,11 +4108,11 @@ definitions: example: true description: registerCollection_UnAuthorized_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -3774,7 +4128,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -3801,7 +4155,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -3837,14 +4191,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: registerTaskState_NotFound_response_body result type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -3945,31 +4299,31 @@ definitions: block: type: integer description: Block - example: 710346809 + example: 492103627 format: int32 hash: type: string description: Hash - example: Rerum reprehenderit ipsam veritatis accusantium sit. + example: Est facere ipsam. is_verified: type: boolean description: IsVerified - example: false + example: true merkelroot: type: string description: Merkelroot - example: Est et alias est quae dolor at. + example: Sed in voluptatum sint. timestamp: type: string description: Timestamp - example: Numquam odit animi occaecati et. + example: Consequuntur vel maxime culpa quis provident. description: Data of evaluation example: - block: 1092014808 - hash: Rerum et et commodi. - is_verified: true - merkelroot: Dolore debitis nostrum ut quia. - timestamp: Quam commodi sit. + block: 1898436385 + hash: Molestias modi autem non. + is_verified: false + merkelroot: Quo officiis itaque. + timestamp: Sit est soluta dolorem. required: - timestamp - hash @@ -3981,97 +4335,84 @@ definitions: data_hash: type: string example: - - 68 - - 111 - - 108 - - 111 - - 114 - - 101 - - 115 - - 32 - - 113 + - 81 - 117 - 105 - 32 - - 113 + - 99 - 117 + - 112 - 105 - - 115 - - 113 - - 117 + - 100 + - 105 + - 116 - 97 + - 116 + - 101 + - 32 + - 101 + - 110 + - 105 - 109 + - 32 + - 105 + - 115 + - 116 + - 101 - 46 format: byte missing_keys: type: array items: type: string - example: Quisquam consequuntur unde magni expedita qui aut. + example: Rerum facilis mollitia ipsa eligendi. example: - - In autem perferendis ea repellat consequatur accusamus. - - Sequi doloremque hic eos et ab error. + - Aliquam nisi fugiat quisquam quasi quia odit. + - Rerum omnis nostrum ipsa maxime. + - Porro deleniti dolores ipsum impedit. + - Nisi nisi qui. recipient: type: string - example: Aliquam veniam iste veniam perferendis quia et. + example: Eaque possimus sint sequi. ticket_type: type: string - example: Quaerat magnam. + example: Aut iste voluptas recusandae est dignissimos vitae. tx_id: type: string - example: In et ducimus cupiditate ullam eius. + example: Voluptas enim qui natus voluptatem sed. example: data_hash: - - 82 - - 101 - - 99 - - 117 - - 115 - - 97 - - 110 + - 79 - 100 - - 97 - - 101 - - 32 - - 101 - - 115 + - 105 - 116 - 32 - 100 - - 105 - - 103 - - 110 - - 105 - - 115 - - 115 - - 105 - - 109 - 111 - - 115 - - 32 - - 118 - - 105 - - 116 - - 97 + - 108 + - 111 + - 114 - 101 - - 32 + - 109 - 113 - 117 - - 105 - - 97 + - 101 - 32 - - 114 - 101 - - 114 + - 115 + - 116 + - 32 + - 113 - 117 - - 109 + - 105 + - 115 - 46 missing_keys: - - Non rerum ut voluptas enim. - - Natus voluptatem sed totam aut iste. - recipient: Mollitia ipsa eligendi. - ticket_type: Quia incidunt sint. - tx_id: Impedit deleniti rerum atque. + - Aut consequatur impedit quo. + - Voluptas doloribus sint repellendus. + recipient: Dolorum soluta esse. + ticket_type: Commodi earum facere aut sint unde hic. + tx_id: Et totam ipsa. FileResponseBody: title: FileResponseBody type: object @@ -4082,49 +4423,49 @@ definitions: $ref: '#/definitions/ActivationAttemptResponseBody' description: List of activation attempts example: - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true activation_txid: type: string description: Activation Transaction ID - example: Distinctio rem veniam iusto ut. + example: Est et. base_file_id: type: string description: Base File ID - example: Amet aperiam sed quam qui nobis corrupti. + example: Sunt explicabo deserunt ducimus. burn_txn_id: type: string description: Burn Transaction ID - example: Soluta itaque officiis occaecati. + example: Est occaecati. cascade_metadata_ticket_id: type: string description: Cascade Metadata Ticket ID - example: Eaque molestiae sunt explicabo deserunt ducimus voluptate. + example: A recusandae iste qui nisi dolore. done_block: type: integer description: Done Block - example: 8104657298305814435 + example: 2693504273438558162 format: int64 file_id: type: string description: File ID - example: Voluptas vel vel dicta harum ex quas. + example: Neque cumque temporibus nihil cupiditate. file_index: type: string description: Index of the file - example: Rerum maiores eum sed. + example: Voluptate ea eaque. hash_of_original_big_file: type: string description: Hash of the Original Big File - example: Perferendis accusantium quidem accusamus. + example: Pariatur labore neque inventore. is_concluded: type: boolean description: Indicates if the process is concluded @@ -4132,128 +4473,126 @@ definitions: name_of_original_big_file_with_ext: type: string description: Name of the Original Big File with Extension - example: Et porro dolores est. + example: Laudantium facere eveniet molestiae rerum. reg_txid: type: string description: Registration Transaction ID - example: Sed ab necessitatibus ut ea non. + example: Accusantium quidem. registration_attempts: type: array items: $ref: '#/definitions/RegistrationAttemptResponseBody' description: List of registration attempts example: - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" req_amount: type: number description: Required Amount - example: 0.9344480377881261 + example: 0.8930021225471915 format: double req_burn_txn_amount: type: number description: Required Burn Transaction Amount - example: 0.23742658686392903 + example: 0.45409536176152293 format: double size_of_original_big_file: type: number description: Size of the Original Big File - example: 0.9307895545860533 + example: 0.22020594122264722 format: double start_block: type: integer description: Start Block - example: 1917707455 + example: 515011423 format: int32 task_id: type: string description: Task ID - example: Neque amet eum nisi quia odio voluptatem. + example: Saepe ipsum harum voluptas. upload_timestamp: type: string description: Upload Timestamp in datetime format - example: "1999-11-15T04:21:46Z" + example: "1998-09-22T13:33:43Z" format: date-time uuid_key: type: string description: UUID Key - example: Ipsum harum. + example: Non amet voluptatem commodi aut id in. example: activation_attempts: - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - activation_txid: Quos magni quibusdam illo aut dolorum omnis. - base_file_id: Necessitatibus qui illum. - burn_txn_id: Inventore adipisci quod quia. - cascade_metadata_ticket_id: Veritatis laudantium excepturi. - done_block: 4197345361841056519 - file_id: Mollitia voluptates labore aut in. - file_index: Est quia adipisci impedit aut est. - hash_of_original_big_file: Cupiditate dignissimos. + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 + is_successful: true + activation_txid: Asperiores vel maiores autem similique quidem dolorum. + base_file_id: Molestiae exercitationem expedita excepturi ut. + burn_txn_id: Nostrum et non deserunt atque. + cascade_metadata_ticket_id: Quam quae quo magnam dolores possimus voluptas. + done_block: 8868352654748958460 + file_id: Est quia adipisci impedit aut est. + file_index: Distinctio id et nam commodi laboriosam asperiores. + hash_of_original_big_file: Neque ut rem exercitationem distinctio quis. is_concluded: true - name_of_original_big_file_with_ext: Omnis animi aut dolor ad. - reg_txid: Non maxime maiores iste eaque. + name_of_original_big_file_with_ext: Quia quas. + reg_txid: Consequatur voluptatum magni suscipit. registration_attempts: - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - req_amount: 0.029290357485155603 - req_burn_txn_amount: 0.06671651835822341 - size_of_original_big_file: 0.7452850717760783 - start_block: 1880210886 - task_id: Aliquam enim. - upload_timestamp: "1988-05-02T23:46:07Z" - uuid_key: Debitis corporis. + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + req_amount: 0.27763473389923016 + req_burn_txn_amount: 0.6119857638900763 + size_of_original_big_file: 0.10082508271893759 + start_block: 615727266 + task_id: Alias error unde recusandae cum nihil accusantium. + upload_timestamp: "2015-07-05T12:51:38Z" + uuid_key: Enim ut. required: - file_id - task_id @@ -4274,7 +4613,7 @@ definitions: field_type: type: string description: Field that is matched - example: keyword + example: descr enum: - creator_name - art_title @@ -4285,30 +4624,30 @@ definitions: type: array items: type: integer - example: 6799134602207894302 + example: 1297848066207075025 format: int64 description: The indexes of matched characters. Useful for highlighting matches example: - - 6385374685273770966 - - 8857309672965185541 - - 8224487120055365872 + - 4944821981227295978 + - 7696049836370677537 score: type: integer description: Score used to rank matches - example: 2253564766214482380 + example: 3540831787478733547 format: int64 str: type: string description: String that is matched - example: Beatae occaecati quis iure. + example: Aliquam dolores qui. example: field_type: art_title matched_indexes: - - 124759558546020526 - - 8239183919877226491 - - 3189190596724890844 - score: 1078845644788033794 - str: Facere sunt aut dolorem consequatur. + - 5781461325567943992 + - 7778000128542107932 + - 393922963514480715 + - 7666036538901003714 + score: 2350702824716827735 + str: Cumque incidunt. HCChallengeDataResponse: title: HCChallengeDataResponse type: object @@ -4316,21 +4655,21 @@ definitions: block: type: integer description: Block - example: 780671002 + example: 1182365695 format: int32 merkelroot: type: string description: Merkelroot - example: Magnam aut saepe molestiae blanditiis laboriosam. + example: Iste molestias ut fugiat aliquam. timestamp: type: string description: Timestamp - example: Tenetur sit minima assumenda dolore ipsam maiores. + example: Enim sequi iure commodi. description: Data of challenge example: - block: 1945209840 - merkelroot: Dolor ullam ab. - timestamp: Fuga qui itaque et. + block: 1901942244 + merkelroot: Aut earum. + timestamp: Alias voluptatibus incidunt. required: - timestamp HCEvaluationDataResponse: @@ -4340,26 +4679,26 @@ definitions: block: type: integer description: Block - example: 788950531 + example: 197096783 format: int32 is_verified: type: boolean description: IsVerified - example: false + example: true merkelroot: type: string description: Merkelroot - example: Eveniet cum sit. + example: Optio assumenda. timestamp: type: string description: Timestamp - example: Aut voluptate laudantium cumque eum. + example: Dolores nihil et voluptatibus et. description: Data of evaluation example: - block: 997093512 - is_verified: false - merkelroot: Delectus quidem debitis ut quis beatae. - timestamp: Ut sed. + block: 769361874 + is_verified: true + merkelroot: Cupiditate laboriosam quo. + timestamp: Sunt excepturi beatae. required: - timestamp - is_verified @@ -4370,12 +4709,12 @@ definitions: block: type: integer description: Block - example: 346770621 + example: 1059087820 format: int32 is_challenge_timestamp_ok: type: boolean description: IsChallengeTimestampOK - example: false + example: true is_challenger_signature_ok: type: boolean description: IsChallengerSignatureOK @@ -4383,15 +4722,15 @@ definitions: is_evaluation_result_ok: type: boolean description: IsEvaluationResultOK - example: true + example: false is_evaluation_timestamp_ok: type: boolean description: IsEvaluationTimestampOK - example: false + example: true is_process_timestamp_ok: type: boolean description: IsProcessTimestampOK - example: false + example: true is_recipient_signature_ok: type: boolean description: IsRecipientSignatureOK @@ -4399,22 +4738,22 @@ definitions: merkelroot: type: string description: Merkelroot - example: Reiciendis iste rerum. + example: Id sed voluptatem illum dolorum ad. timestamp: type: string description: Timestamp - example: Quam fugit in quasi in nam nulla. + example: Voluptas officiis dolorum accusantium. description: Data of Observer's evaluation example: - block: 1521262132 + block: 918637735 is_challenge_timestamp_ok: false is_challenger_signature_ok: true is_evaluation_result_ok: true - is_evaluation_timestamp_ok: true + is_evaluation_timestamp_ok: false is_process_timestamp_ok: false is_recipient_signature_ok: true - merkelroot: Dicta optio assumenda et dolores nihil et. - timestamp: Quo voluptatem sunt excepturi beatae. + merkelroot: Rerum quia rem possimus quas ut enim. + timestamp: Id illum magnam qui ab quia sint. required: - timestamp - is_challenge_timestamp_ok @@ -4430,21 +4769,21 @@ definitions: block: type: integer description: Block - example: 1182365695 + example: 364084968 format: int32 merkelroot: type: string description: Merkelroot - example: Iste molestias ut fugiat aliquam. + example: Sed itaque aspernatur. timestamp: type: string description: Timestamp - example: Enim sequi iure commodi. + example: Reiciendis iste rerum. description: Data of response example: - block: 1901942244 - merkelroot: Aut earum. - timestamp: Alias voluptatibus incidunt. + block: 711181662 + merkelroot: Nihil voluptates et dolores necessitatibus. + timestamp: Fugit in quasi in nam nulla voluptatum. required: - timestamp HCSummaryStatsResponseBody: @@ -4454,47 +4793,47 @@ definitions: no_of_invalid_evaluation_observed_by_observers: type: integer description: challenges failed due to invalid evaluation evaluated by observers - example: 7864324325090405043 + example: 4604695734958777723 format: int64 no_of_invalid_signatures_observed_by_observers: type: integer description: challenges failed due to invalid signatures evaluated by observers - example: 824289805776275058 + example: 7485695140201372489 format: int64 no_of_slow_responses_observed_by_observers: type: integer description: challenges failed due to slow-responses evaluated by observers - example: 8702511193156436407 + example: 1632022695562066844 format: int64 total_challenges_evaluated_by_challenger: type: integer description: Total number of challenges evaluated by the challenger node - example: 4410299275350188812 + example: 674107399872224815 format: int64 total_challenges_issued: type: integer description: Total number of challenges issued - example: 7559104956481309322 + example: 6914397698957621249 format: int64 total_challenges_processed_by_recipient: type: integer description: Total number of challenges processed by the recipient node - example: 1732831978981392207 + example: 4629615492889085672 format: int64 total_challenges_verified: type: integer description: Total number of challenges verified by observers - example: 1597905471173075759 + example: 3352956423211727314 format: int64 description: HealthCheck-Challenge SummaryStats example: - no_of_invalid_evaluation_observed_by_observers: 7194592284054671111 - no_of_invalid_signatures_observed_by_observers: 905541886363588758 - no_of_slow_responses_observed_by_observers: 522748200964355163 - total_challenges_evaluated_by_challenger: 2749120762966979781 - total_challenges_issued: 3473792872112133984 - total_challenges_processed_by_recipient: 2033547800451867765 - total_challenges_verified: 8612022669495309645 + no_of_invalid_evaluation_observed_by_observers: 5649605762979780077 + no_of_invalid_signatures_observed_by_observers: 7332727558518661660 + no_of_slow_responses_observed_by_observers: 3131725833324719182 + total_challenges_evaluated_by_challenger: 1436962756631232283 + total_challenges_issued: 3528725344947929638 + total_challenges_processed_by_recipient: 1010277493024632963 + total_challenges_verified: 3169339276919008696 required: - total_challenges_issued - total_challenges_processed_by_recipient @@ -4512,58 +4851,56 @@ definitions: challenge_id: type: string description: ID of the challenge - example: Quae eum dolore exercitationem et. + example: Odit molestiae incidunt quod. challenger_evaluation: $ref: '#/definitions/HCEvaluationDataResponse' challenger_id: type: string description: ID of the challenger - example: Magnam ut assumenda. + example: Voluptatem aut neque et. message_type: type: string description: type of the message - example: Sit ea sed omnis. + example: Sed maiores. observer_evaluation: $ref: '#/definitions/HCObserverEvaluationDataResponse' observers: type: array items: type: string - example: Quam at voluptas eos illo sed mollitia. + example: Dolore eveniet cum. description: List of observer IDs example: - - Odit molestiae incidunt quod. - - Sed maiores. - - Quia molestias fugiat. - - Rerum nisi ratione rerum temporibus blanditiis. + - Aut voluptate laudantium cumque eum. + - Et velit delectus. recipient_id: type: string description: ID of the recipient - example: Voluptatem aut neque et. + example: Debitis ut quis beatae. response: $ref: '#/definitions/HCResponseDataResponse' sender_id: type: string description: ID of the sender's node - example: Est dignissimos corrupti molestiae. + example: Quia molestias fugiat. sender_signature: type: string description: signature of the sender - example: Deleniti beatae corporis quasi libero nostrum. + example: Rerum nisi ratione rerum temporibus blanditiis. description: HealthCheck challenge message data (default view) example: challenge: block: 161855103 merkelroot: Occaecati in reiciendis quia repudiandae. timestamp: Necessitatibus sed est sunt. - challenge_id: Quod voluptatum id sed. + challenge_id: Et in eligendi ut voluptate vel. challenger_evaluation: block: 372559801 is_verified: false merkelroot: Impedit quis autem et et neque. timestamp: Explicabo dolore. - challenger_id: Quas ut enim amet. - message_type: Illum dolorum ad consectetur impedit eaque nam. + challenger_id: Voluptates quisquam quo esse sed veritatis sunt. + message_type: Et itaque distinctio culpa vitae neque nihil. observer_evaluation: block: 1881554591 is_challenge_timestamp_ok: false @@ -4575,17 +4912,16 @@ definitions: merkelroot: Hic voluptas doloremque eligendi et magni. timestamp: Perspiciatis earum. observers: - - Cum molestiae deserunt totam id. - - Magnam qui ab quia. - - Eos et in eligendi. - - Voluptate vel illum et itaque distinctio. - recipient_id: Vitae neque. + - Laboriosam doloremque qui et. + - Sit nesciunt et hic et est maxime. + - Est libero. + recipient_id: Sequi eum odio delectus eos officiis. response: block: 1874672230 merkelroot: Voluptate ipsa et ut dicta temporibus ut. timestamp: Deserunt mollitia est a labore. - sender_id: Dolor itaque voluptas officiis. - sender_signature: Accusantium quia impedit rerum quia rem. + sender_id: Laudantium numquam ut ea facilis aut blanditiis. + sender_signature: Animi impedit. required: - challenge_id - message_type @@ -4600,7 +4936,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -4616,19 +4952,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true description: getDetailedLogs_BadRequest_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -4663,7 +4999,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: getDetailedLogs_InternalServerError_response_body result type (default view) example: fault: false @@ -4686,7 +5022,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -4714,7 +5050,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -4729,7 +5065,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -4749,15 +5085,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: getDetailedLogs_Unauthorized_response_body result type (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -4792,15 +5128,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: getSummaryStats_BadRequest_response_body result type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -4815,7 +5151,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -4835,10 +5171,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: getSummaryStats_InternalServerError_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -4858,7 +5194,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -4874,14 +5210,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false description: getSummaryStats_NotFound_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -4935,19 +5271,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: getSummaryStats_Unauthorized_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -4962,30 +5298,30 @@ definitions: alternative_rare_on_internet_dict_as_json_compressed_b64: type: string description: Base64 Compressed Json of Alternative Rare On Internet Dict - example: Sint in nihil quo distinctio eum dolores. + example: Non ea dicta ex consequatur consequatur. earliest_available_date_of_internet_results: type: string description: Earliest Available Date of Internet Results - example: Dolor eveniet provident. + example: Aut ducimus iure. min_number_of_exact_matches_in_page: type: integer description: Minimum Number of Exact Matches on Page - example: 2746576258 + example: 3655150683 format: int32 rare_on_internet_graph_json_compressed_b64: type: string description: Base64 Compressed JSON of Rare On Internet Graph - example: Et eos porro ipsa maxime sed. + example: Dolor eum vel. rare_on_internet_summary_table_as_json_compressed_b64: type: string description: Base64 Compressed JSON Table of Rare On Internet Summary - example: Eum velit non. + example: Esse reiciendis tenetur iusto nihil sed. example: - alternative_rare_on_internet_dict_as_json_compressed_b64: Sit in maiores voluptatem. - earliest_available_date_of_internet_results: Tenetur aut non atque. - min_number_of_exact_matches_in_page: 242073123 - rare_on_internet_graph_json_compressed_b64: Voluptatem perspiciatis et accusantium. - rare_on_internet_summary_table_as_json_compressed_b64: Maiores aspernatur explicabo et nobis. + alternative_rare_on_internet_dict_as_json_compressed_b64: Quis ea qui dolore esse quaerat. + earliest_available_date_of_internet_results: Est et quo necessitatibus fuga velit ipsum. + min_number_of_exact_matches_in_page: 3174641601 + rare_on_internet_graph_json_compressed_b64: Est quidem cumque consequuntur et debitis. + rare_on_internet_summary_table_as_json_compressed_b64: Commodi consequatur unde qui adipisci labore voluptate. MetricsGetDetailedLogsBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object @@ -5009,7 +5345,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -5020,7 +5356,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -5059,7 +5395,7 @@ definitions: example: true description: getDetailedLogs_InternalServerError_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -5079,7 +5415,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -5095,7 +5431,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -9043,21046 +9379,12376 @@ definitions: - 97 - 46 trigger_id: Ut omnis. - example: - reports: - - event_id: Eum itaque totam dicta. - report: - messages: - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - event_id: Eum itaque totam dicta. - report: - messages: - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - event_id: Eum itaque totam dicta. - report: - messages: - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - event_id: Eum itaque totam dicta. - report: - messages: - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - MetricsGetDetailedLogsUnauthorizedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: getDetailedLogs_Unauthorized_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - MetricsGetSummaryStatsBadRequestResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: getSummaryStats_BadRequest_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - MetricsGetSummaryStatsInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: getSummaryStats_InternalServerError_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - MetricsGetSummaryStatsNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: getSummaryStats_NotFound_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - MetricsGetSummaryStatsResponseBody: - title: 'Mediatype identifier: application/vnd.metrics.result; view=default' - type: object - properties: - self_healing_execution_events_stats: - $ref: '#/definitions/SHExecutionStatsResponseBody' - self_healing_trigger_events_stats: - type: array - items: - $ref: '#/definitions/SHTriggerStatsResponseBody' - description: Self-healing trigger stats - example: - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. - description: GetSummaryStatsResponseBody result type (default view) - example: - self_healing_execution_events_stats: - total_file_healing_failed: 5551622164662787660 - total_files_healed: 8671724886982383594 - total_reconstruction_not_required_evaluations_approved: 3509617877318915873 - total_reconstruction_required_evaluations_approved: 2598935111695686044 - total_reconstruction_required_evaluations_not_approved: 645871039112296182 - total_reconstruction_required_hash_mismatch: 6198218032159021896 - total_reconstructions_not_required_evaluations_not_approved: 6224481363842689139 - total_self_healing_events_accepted: 5676342644268881237 - total_self_healing_events_acknowledged: 305624170386109632 - total_self_healing_events_evaluations_unverified: 1687102203985295374 - total_self_healing_events_evaluations_verified: 7201039114224972892 - total_self_healing_events_issued: 7624509276581647432 - total_self_healing_events_rejected: 8106553798825109777 - self_healing_trigger_events_stats: - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. - required: - - self_healing_trigger_events_stats - - self_healing_execution_events_stats - MetricsGetSummaryStatsUnauthorizedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: getSummaryStats_Unauthorized_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftDdServiceOutputFileDetailInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: ddServiceOutputFileDetail_InternalServerError_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftDdServiceOutputFileDetailNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: ddServiceOutputFileDetail_NotFound_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftDdServiceOutputFileDetailResponseBody: - title: NftDdServiceOutputFileDetailResponseBody - type: object - properties: - alternative_nsfw_scores: - $ref: '#/definitions/AlternativeNSFWScoresResponseBody' - candidate_image_thumbnail_webp_as_base64_string: - type: string - description: candidate image thumbnail as base64 string - example: Sed quia dicta eveniet quod quia occaecati. - child_probability: - type: number - description: child probability - example: 0.32871374 - format: float - collection_name_string: - type: string - description: name of the collection - example: Est eius. - cp_probability: - type: number - description: probability of CP - example: 0.46668318 - format: float - creator_name: - type: string - description: name of the creator - example: Et dolor eum vel. - creator_website: - type: string - description: website of creator - example: Non ea dicta ex consequatur consequatur. - creator_written_statement: - type: string - description: written statement of creator - example: Voluptatem aut ducimus. - does_not_impact_the_following_collection_strings: - type: string - description: does not impact collection strings - example: Est minus sed quia corrupti vel sint. - dupe_detection_system_version: - type: string - description: system version of dupe detection - example: Molestiae ipsa reprehenderit. - file_type: - type: string - description: type of the file - example: Magni eum et. - group_rareness_score: - type: number - description: rareness score of the group - example: 0.25539443 - format: float - hash_of_candidate_image_file: - type: string - description: hash of candidate image file - example: Magni eligendi laboriosam dignissimos nihil explicabo. - image_file_path: - type: string - description: file path of the image - example: Est voluptatem deserunt exercitationem at molestiae porro. - image_fingerprint_of_candidate_image_file: - type: array - items: - type: number - example: 0.5877171307991194 - format: double - description: Image fingerprint of candidate image file - example: - - 0.7163821637916858 - - 0.018790135492016663 - - 0.5325966683669953 - - 0.8820063916648913 - internet_rareness: - $ref: '#/definitions/InternetRarenessResponseBody' - is_likely_dupe: - type: boolean - description: is this nft likely a duplicate - example: false - is_pastel_openapi_request: - type: boolean - description: is pastel open API request - example: true - is_rare_on_internet: - type: boolean - description: is this nft rare on the internet - example: false - max_permitted_open_nsfw_score: - type: number - description: max permitted open NSFW score - example: 0.13257228107221725 - format: double - nft_creation_video_youtube_url: - type: string - description: nft creation video youtube url - example: Est quidem cumque consequuntur et debitis. - nft_keyword_set: - type: string - description: keywords for NFT - example: Quis ea qui dolore esse quaerat. - nft_series_name: - type: string - description: series name of NFT - example: Labore voluptate. - nft_title: - type: string - description: title of NFT - example: Sed commodi consequatur unde qui. - open_api_group_id_string: - type: string - description: open api group id string - example: Vel ducimus. - open_nsfw_score: - type: number - description: open nsfw score - example: 0.04224419 - format: float - original_file_size_in_bytes: - type: integer - description: original file size in bytes - example: 3893092424133781429 - format: int64 - overall_rareness_score: - type: number - description: pastel rareness score - example: 0.9992805 - format: float - pastel_block_hash_when_request_submitted: - type: string - description: block hash when request submitted - example: Sed laboriosam molestiae maiores placeat inventore. - pastel_block_height_when_request_submitted: - type: string - description: block Height when request submitted - example: Deleniti repellendus et. - pastel_id_of_registering_supernode_1: - type: string - description: pastel id of registering SN1 - example: Temporibus quo quaerat. - pastel_id_of_registering_supernode_2: - type: string - description: pastel id of registering SN2 - example: Deleniti ut et sint quibusdam. - pastel_id_of_registering_supernode_3: - type: string - description: pastel id of registering SN3 - example: Incidunt accusantium consequuntur optio. - pastel_id_of_submitter: - type: string - description: pastel id of the submitter - example: Voluptatem ad magni ipsum et. - pct_of_top_10_most_similar_with_dupe_prob_above_25pct: - type: number - description: PCT of top 10 most similar with dupe probe above 25 PCT - example: 0.44575888 - format: float - pct_of_top_10_most_similar_with_dupe_prob_above_33pct: - type: number - description: PCT of top 10 most similar with dupe probe above 33 PCT - example: 0.95061237 - format: float - pct_of_top_10_most_similar_with_dupe_prob_above_50pct: - type: number - description: PCT of top 10 most similar with dupe probe above 50 PCT - example: 0.34961486 - format: float - preview_hash: - type: string - description: preview hash of NFT - example: - - 69 - - 115 - - 116 - - 32 - - 101 - - 116 - - 32 - - 113 - - 117 - - 111 - - 32 - - 110 - - 101 - - 99 - - 101 - - 115 - - 115 - - 105 - - 116 - - 97 - - 116 - - 105 - - 98 - - 117 - - 115 - - 32 - - 102 - - 117 - - 103 - - 97 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 46 - format: byte - rareness_scores_table_json_compressed_b64: - type: string - description: rareness scores table json compressed b64 - example: Dolores excepturi. - similarity_score_to_first_entry_in_collection: - type: number - description: similarity score to first entry in collection - example: 0.28061414 - format: float - thumbnail1_hash: - type: string - description: thumbnail1 hash of NFT - example: - - 65 - - 117 - - 116 - - 32 - - 110 - - 111 - - 98 - - 105 - - 115 - - 32 - - 115 - - 117 - - 115 - - 99 - - 105 - - 112 - - 105 - - 116 - - 46 - format: byte - thumbnail2_hash: - type: string - description: thumbnail2 hash of NFT - example: - - 76 - - 97 - - 98 - - 111 - - 114 - - 117 - - 109 - - 32 - - 112 - - 108 - - 97 - - 99 - - 101 - - 97 - - 116 - - 32 - - 111 - - 109 - - 110 - - 105 - - 115 - - 32 - - 114 - - 97 - - 116 - - 105 - - 111 - - 110 - - 101 - - 32 - - 115 - - 111 - - 108 - - 117 - - 116 - - 97 - - 32 - - 97 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 46 - format: byte - total_copies: - type: integer - description: total copies of NFT - example: 6817490927373002671 - format: int64 - utc_timestamp_when_request_submitted: - type: string - description: timestamp of request when submitted - example: Illum voluptas nostrum voluptas rerum. - example: - alternative_nsfw_scores: - drawings: 0.053542916 - hentai: 0.17044726 - neutral: 0.01989352 - porn: 0.7542108 - sexy: 0.24790263 - candidate_image_thumbnail_webp_as_base64_string: Dolorum dolores. - child_probability: 0.65949744 - collection_name_string: Aspernatur est aut incidunt similique. - cp_probability: 0.95395935 - creator_name: Eaque nesciunt tempore sequi fugit. - creator_website: Ab sint aliquam. - creator_written_statement: Illo minima. - does_not_impact_the_following_collection_strings: Magni et cupiditate quidem omnis est. - dupe_detection_system_version: Minus quod dolor amet. - file_type: Ea possimus quam. - group_rareness_score: 0.7096911 - hash_of_candidate_image_file: Fuga est soluta repudiandae autem. - image_file_path: Omnis deleniti. - image_fingerprint_of_candidate_image_file: - - 0.9155314965398661 - - 0.37612251223286586 - internet_rareness: - alternative_rare_on_internet_dict_as_json_compressed_b64: Magnam pariatur aut facilis. - earliest_available_date_of_internet_results: Sed repudiandae voluptas dolor aut velit voluptatem. - min_number_of_exact_matches_in_page: 1704813535 - rare_on_internet_graph_json_compressed_b64: Aliquid provident eveniet. - rare_on_internet_summary_table_as_json_compressed_b64: Quisquam corporis qui nobis dignissimos. - is_likely_dupe: false - is_pastel_openapi_request: false - is_rare_on_internet: false - max_permitted_open_nsfw_score: 0.9801496459183948 - nft_creation_video_youtube_url: Minus in vitae autem temporibus sunt quo. - nft_keyword_set: Itaque molestias eos. - nft_series_name: Culpa sed quia. - nft_title: Corrupti magni. - open_api_group_id_string: Consequatur illo delectus. - open_nsfw_score: 0.5627782 - original_file_size_in_bytes: 3050777177380097654 - overall_rareness_score: 0.5667428 - pastel_block_hash_when_request_submitted: Et nulla et et facilis at. - pastel_block_height_when_request_submitted: Minima sunt. - pastel_id_of_registering_supernode_1: Sint et occaecati ad consectetur dolor. - pastel_id_of_registering_supernode_2: Enim in porro. - pastel_id_of_registering_supernode_3: Neque ipsa perferendis magni dolores molestias iste. - pastel_id_of_submitter: Dolor facere qui in officia quia. - pct_of_top_10_most_similar_with_dupe_prob_above_25pct: 0.15605628 - pct_of_top_10_most_similar_with_dupe_prob_above_33pct: 0.44014576 - pct_of_top_10_most_similar_with_dupe_prob_above_50pct: 0.18732506 - preview_hash: - - 68 - - 111 - - 108 - - 111 - - 114 - - 105 - - 98 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 46 - rareness_scores_table_json_compressed_b64: Et sit et omnis non ad. - similarity_score_to_first_entry_in_collection: 0.8387003 - thumbnail1_hash: - - 73 - - 110 - - 99 - - 105 - - 100 - - 117 - - 110 - - 116 - - 32 - - 101 - - 115 - - 116 - - 46 - thumbnail2_hash: - - 77 - - 97 - - 103 - - 110 - - 105 - - 32 - - 109 - - 97 - - 103 - - 110 - - 105 - - 32 - - 113 - - 117 - - 111 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 32 - - 97 - - 99 - - 99 - - 117 - - 115 - - 97 - - 110 - - 116 - - 105 - - 117 - - 109 - - 46 - total_copies: 3403518764736338519 - utc_timestamp_when_request_submitted: Voluptatem labore suscipit reprehenderit soluta doloremque dolorum. - required: - - creator_name - - creator_website - - creator_written_statement - - nft_title - - nft_series_name - - nft_creation_video_youtube_url - - nft_keyword_set - - total_copies - - preview_hash - - thumbnail1_hash - - thumbnail2_hash - - original_file_size_in_bytes - - file_type - - max_permitted_open_nsfw_score - NftDdServiceOutputFileDetailUnAuthorizedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: ddServiceOutputFileDetail_UnAuthorized_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftDdServiceOutputFileInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: ddServiceOutputFile_InternalServerError_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftDdServiceOutputFileNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: ddServiceOutputFile_NotFound_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftDdServiceOutputFileResponseBody: - title: NftDdServiceOutputFileResponseBody - type: object - properties: - file: - type: string - description: File downloaded - example: Soluta totam ratione est quos fugit omnis. - example: - file: Cumque consequatur animi. - required: - - file - NftDdServiceOutputFileUnAuthorizedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: ddServiceOutputFile_UnAuthorized_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftDownloadInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: download_InternalServerError_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftDownloadNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: download_NotFound_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftDownloadResponseBody: - title: NftDownloadResponseBody - type: object - properties: - file_id: - type: string - description: File path - example: Officia at deleniti perferendis iste similique velit. - example: - file_id: Illo ea voluptas voluptatibus similique. - required: - - file_id - NftDownloadUnAuthorizedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: download_UnAuthorized_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftGetTaskHistoryInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: getTaskHistory_InternalServerError_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftGetTaskHistoryNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: getTaskHistory_NotFound_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftNftGetBadRequestResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: nftGet_BadRequest_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftNftGetInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: nftGet_InternalServerError_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftNftGetNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: nftGet_NotFound_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftNftGetResponseBody: - title: NftNftGetResponseBody - type: object - properties: - alt_rare_on_internet_dict_json_b64: - type: string - description: Base64 Compressed Json of Alternative Rare On Internet Dict - example: Odit dolor aliquam cumque. - copies: - type: integer - description: Number of copies - default: 1 - example: 1 - format: int64 - minimum: 1 - maximum: 1000 - creator_name: - type: string - description: Name of the artist - example: Leonardo da Vinci - maxLength: 256 - creator_pastelid: - type: string - description: Artist's PastelID - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - pattern: ^[a-zA-Z0-9]+$ - minLength: 86 - maxLength: 86 - creator_website_url: - type: string - description: Artist website URL - example: https://www.leonardodavinci.net - maxLength: 256 - description: - type: string - description: Description of the NFT - example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - maxLength: 1024 - drawing_nsfw_score: - type: number - description: nsfw score - example: 1 - format: float - minimum: 0 - maximum: 1 - earliest_date_of_results: - type: string - description: Earliest Available Date of Internet Results - example: Placeat error dolor quisquam temporibus dolorem a. - green_address: - type: boolean - description: Green address - example: true - hentai_nsfw_score: - type: number - description: nsfw score - example: 1 - format: float - minimum: 0 - maximum: 1 - is_likely_dupe: - type: boolean - description: Is this image likely a duplicate of another known image - example: false - is_rare_on_internet: - type: boolean - description: is this nft rare on the internet - example: false - keywords: - type: string - description: Keywords - example: Renaissance, sfumato, portrait - maxLength: 256 - min_num_exact_matches_on_page: - type: integer - description: Minimum Number of Exact Matches on Page - example: 3286113871 - format: int32 - neutral_nsfw_score: - type: number - description: nsfw score - example: 1 - format: float - minimum: 0 - maximum: 1 - nsfw_score: - type: number - description: NSFW Average score - example: 1 - format: float - minimum: 0 - maximum: 1 - porn_nsfw_score: - type: number - description: nsfw score - example: 1 - format: float - minimum: 0 - maximum: 1 - preview_thumbnail: - type: string - description: Preview Image - example: - - 78 - - 117 - - 109 - - 113 - - 117 - - 97 - - 109 - - 32 - - 114 - - 101 - - 109 - - 32 - - 114 - - 101 - - 112 - - 101 - - 108 - - 108 - - 101 - - 110 - - 100 - - 117 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 116 - - 32 - - 115 - - 117 - - 110 - - 116 - - 32 - - 110 - - 111 - - 115 - - 116 - - 114 - - 117 - - 109 - - 46 - format: byte - rare_on_internet_graph_json_b64: - type: string - description: Base64 Compressed JSON of Rare On Internet Graph - example: Recusandae aliquam dolores qui quam deleniti alias. - rare_on_internet_summary_table_json_b64: - type: string - description: Base64 Compressed JSON Table of Rare On Internet Summary - example: Eaque voluptatibus iusto voluptas non. - rareness_score: - type: number - description: Average pastel rareness score - example: 1 - format: float - minimum: 0 - maximum: 1 - royalty: - type: number - description: how much artist should get on all future resales - example: 0.5934972371767012 - format: double - series_name: - type: string - description: Series name - example: Famous artist - maxLength: 256 - sexy_nsfw_score: - type: number - description: nsfw score - example: 1 - format: float - minimum: 0 - maximum: 1 - storage_fee: - type: integer - description: Storage fee % - example: 100 - format: int64 - thumbnail_1: - type: string - description: Thumbnail_1 image - example: - - 84 - - 101 - - 109 - - 112 - - 111 - - 114 - - 105 - - 98 - - 117 - - 115 - - 32 - - 97 - - 98 - - 32 - - 115 - - 111 - - 108 - - 117 - - 116 - - 97 - - 32 - - 100 - - 105 - - 115 - - 116 - - 105 - - 110 - - 99 - - 116 - - 105 - - 111 - - 46 - format: byte - thumbnail_2: - type: string - description: Thumbnail_2 image - example: - - 67 - - 111 - - 110 - - 115 - - 101 - - 113 - - 117 - - 97 - - 116 - - 117 - - 114 - - 32 - - 110 - - 111 - - 110 - - 32 - - 114 - - 101 - - 114 - - 117 - - 109 - - 32 - - 101 - - 115 - - 116 - - 46 - format: byte - title: - type: string - description: Name of the NFT - example: Mona Lisa - maxLength: 256 - txid: - type: string - description: txid - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - minLength: 64 - maxLength: 64 - version: - type: integer - description: version - example: 1 - format: int64 - youtube_url: - type: string - description: NFT creation video youtube URL - example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - maxLength: 128 - example: - alt_rare_on_internet_dict_json_b64: Harum repellendus. - copies: 1 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - drawing_nsfw_score: 1 - earliest_date_of_results: Perspiciatis quam ut accusamus. - green_address: true - hentai_nsfw_score: 1 - is_likely_dupe: false - is_rare_on_internet: false - keywords: Renaissance, sfumato, portrait - min_num_exact_matches_on_page: 244362937 - neutral_nsfw_score: 1 - nsfw_score: 1 - porn_nsfw_score: 1 - preview_thumbnail: - - 69 - - 97 - - 32 - - 97 - - 115 - - 112 - - 101 - - 114 - - 105 - - 111 - - 114 - - 101 - - 115 - - 32 - - 113 - - 117 - - 105 - - 32 - - 98 - - 101 - - 97 - - 116 - - 97 - - 101 - - 32 - - 109 - - 105 - - 110 - - 105 - - 109 - - 97 - - 46 - rare_on_internet_graph_json_b64: Mollitia est voluptatum quis magnam. - rare_on_internet_summary_table_json_b64: Tenetur ipsam. - rareness_score: 1 - royalty: 0.05528080235055823 - series_name: Famous artist - sexy_nsfw_score: 1 - storage_fee: 100 - thumbnail_1: - - 65 - - 117 - - 116 - - 101 - - 109 - - 32 - - 114 - - 101 - - 105 - - 99 - - 105 - - 101 - - 110 - - 100 - - 105 - - 115 - - 32 - - 97 - - 108 - - 105 - - 113 - - 117 - - 97 - - 109 - - 32 - - 105 - - 117 - - 115 - - 116 - - 111 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 46 - thumbnail_2: - - 68 - - 111 - - 108 - - 111 - - 114 - - 101 - - 109 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 113 - - 117 - - 111 - - 115 - - 46 - title: Mona Lisa - txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - version: 1 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - required: - - rareness_score - - nsfw_score - - is_likely_dupe - - is_rare_on_internet - - title - - description - - creator_name - - copies - - creator_pastelid - - txid - NftNftSearchBadRequestResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: nftSearch_BadRequest_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftNftSearchInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: nftSearch_InternalServerError_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftNftSearchResponseBody: - title: NftNftSearchResponseBody - type: object - properties: - match_index: - type: integer - description: Sort index of the match based on score.This must be used to sort results on UI. - example: 2768489692092435491 - format: int64 - matches: - type: array - items: - $ref: '#/definitions/FuzzyMatchResponseBody' - description: Match result details - example: - - field_type: art_title - matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - - field_type: art_title - matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - - field_type: art_title - matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - nft: - $ref: '#/definitions/NftSummaryResponseBody' - example: - match_index: 5192775230806366450 - matches: - - field_type: art_title - matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - - field_type: art_title - matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - nft: - copies: 1 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - is_likely_dupe: false - keywords: Renaissance, sfumato, portrait - nsfw_score: 1 - rareness_score: 1 - series_name: Famous artist - thumbnail_1: - - 82 - - 97 - - 116 - - 105 - - 111 - - 110 - - 101 - - 32 - - 101 - - 115 - - 116 - - 32 - - 102 - - 97 - - 99 - - 105 - - 108 - - 105 - - 115 - - 46 - thumbnail_2: - - 78 - - 117 - - 108 - - 108 - - 97 - - 32 - - 108 - - 97 - - 98 - - 111 - - 114 - - 117 - - 109 - - 32 - - 113 - - 117 - - 111 - - 115 - - 32 - - 118 - - 101 - - 108 - - 46 - title: Mona Lisa - txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - required: - - nft - - matches - - match_index - NftRegisterBadRequestResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: register_BadRequest_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftRegisterInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: register_InternalServerError_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftRegisterPayloadResponse: - title: NftRegisterPayloadResponse - type: object - properties: - burn_txid: - type: string - description: Burn transaction ID - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - minLength: 64 - maxLength: 64 - collection_act_txid: - type: string - description: 'Act Collection TxID to add given ticket in collection ' - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: - type: string - description: Name of the NFT creator - example: Leonardo da Vinci - maxLength: 256 - creator_pastelid: - type: string - description: Creator's PastelID - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - pattern: ^[a-zA-Z0-9]+$ - minLength: 86 - maxLength: 86 - creator_website_url: - type: string - description: NFT creator website URL - example: https://www.leonardodavinci.net - maxLength: 256 - description: - type: string - description: Description of the NFT - example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - maxLength: 1024 - green: - type: boolean - description: To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees - example: false - issued_copies: - type: integer - description: Number of copies issued - example: 1 - format: int64 - maximum: 1000 - key: - type: string - description: Passphrase of the owner's PastelID - example: Basic abcdef12345 - keywords: - type: string - description: Keywords - example: Renaissance, sfumato, portrait - maxLength: 256 - make_publicly_accessible: - type: boolean - description: To make it publicly accessible - default: false - example: false - maximum_fee: - type: number - description: Used to find a suitable masternode with a fee equal or less - default: 1 - example: 100 - format: double - minimum: 1e-05 - name: - type: string - description: Name of the NFT - example: Mona Lisa - maxLength: 256 - open_api_group_id: - type: string - description: OpenAPI GroupID string - default: PASTEL - example: Veritatis temporibus voluptatem impedit esse ut. - royalty: - type: number - description: Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT - example: 12 - format: double - maximum: 20 - series_name: - type: string - description: Series name - example: Famous artist - maxLength: 256 - spendable_address: - type: string - description: Spendable address - example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - pattern: ^[a-zA-Z0-9]+$ - minLength: 35 - maxLength: 36 - thumbnail_coordinate: - $ref: '#/definitions/ThumbnailcoordinateResponse' - youtube_url: - type: string - description: NFT creation video youtube URL - example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - maxLength: 128 - description: Request of the registration NFT - example: - burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - green: false - issued_copies: 1 - key: Basic abcdef12345 - keywords: Renaissance, sfumato, portrait - make_publicly_accessible: false - maximum_fee: 100 - name: Mona Lisa - open_api_group_id: Consectetur sint. - royalty: 12 - series_name: Famous artist - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - thumbnail_coordinate: - bottom_right_x: 640 - bottom_right_y: 480 - top_left_x: 0 - top_left_y: 0 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - required: - - creator_name - - name - - creator_pastelid - - spendable_address - - maximum_fee - - key - NftRegisterPayloadResponseBody: - title: NftRegisterPayloadResponseBody - type: object - properties: - burn_txid: - type: string - description: Burn transaction ID - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - minLength: 64 - maxLength: 64 - collection_act_txid: - type: string - description: 'Act Collection TxID to add given ticket in collection ' - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: - type: string - description: Name of the NFT creator - example: Leonardo da Vinci - maxLength: 256 - creator_pastelid: - type: string - description: Creator's PastelID - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - pattern: ^[a-zA-Z0-9]+$ - minLength: 86 - maxLength: 86 - creator_website_url: - type: string - description: NFT creator website URL - example: https://www.leonardodavinci.net - maxLength: 256 - description: - type: string - description: Description of the NFT - example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - maxLength: 1024 - green: - type: boolean - description: To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees - example: false - issued_copies: - type: integer - description: Number of copies issued - example: 1 - format: int64 - maximum: 1000 - key: - type: string - description: Passphrase of the owner's PastelID - example: Basic abcdef12345 - keywords: - type: string - description: Keywords - example: Renaissance, sfumato, portrait - maxLength: 256 - make_publicly_accessible: - type: boolean - description: To make it publicly accessible - default: false - example: false - maximum_fee: - type: number - description: Used to find a suitable masternode with a fee equal or less - default: 1 - example: 100 - format: double - minimum: 1e-05 - name: - type: string - description: Name of the NFT - example: Mona Lisa - maxLength: 256 - open_api_group_id: - type: string - description: OpenAPI GroupID string - default: PASTEL - example: Facilis et ut iure facilis ipsam labore. - royalty: - type: number - description: Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT - example: 12 - format: double - maximum: 20 - series_name: - type: string - description: Series name - example: Famous artist - maxLength: 256 - spendable_address: - type: string - description: Spendable address - example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - pattern: ^[a-zA-Z0-9]+$ - minLength: 35 - maxLength: 36 - thumbnail_coordinate: - $ref: '#/definitions/ThumbnailcoordinateResponseBody' - youtube_url: - type: string - description: NFT creation video youtube URL - example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - maxLength: 128 - description: Request of the registration NFT - example: - burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - green: false - issued_copies: 1 - key: Basic abcdef12345 - keywords: Renaissance, sfumato, portrait - make_publicly_accessible: false - maximum_fee: 100 - name: Mona Lisa - open_api_group_id: Animi animi et rerum a. - royalty: 12 - series_name: Famous artist - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - thumbnail_coordinate: - bottom_right_x: 640 - bottom_right_y: 480 - top_left_x: 0 - top_left_y: 0 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - required: - - creator_name - - name - - creator_pastelid - - spendable_address - - maximum_fee - - key - NftRegisterRequestBody: - title: NftRegisterRequestBody - type: object - properties: - burn_txid: - type: string - description: Burn transaction ID - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - minLength: 64 - maxLength: 64 - collection_act_txid: - type: string - description: 'Act Collection TxID to add given ticket in collection ' - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: - type: string - description: Name of the NFT creator - example: Leonardo da Vinci - maxLength: 256 - creator_pastelid: - type: string - description: Creator's PastelID - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - pattern: ^[a-zA-Z0-9]+$ - minLength: 86 - maxLength: 86 - creator_website_url: - type: string - description: NFT creator website URL - example: https://www.leonardodavinci.net - maxLength: 256 - description: - type: string - description: Description of the NFT - example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - maxLength: 1024 - green: - type: boolean - description: To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees - example: false - image_id: - type: string - description: Uploaded image ID - example: VK7mpAqZ - minLength: 8 - maxLength: 8 - issued_copies: - type: integer - description: Number of copies issued - example: 1 - format: int64 - maximum: 1000 - keywords: - type: string - description: Keywords - example: Renaissance, sfumato, portrait - maxLength: 256 - make_publicly_accessible: - type: boolean - description: To make it publicly accessible - default: false - example: false - maximum_fee: - type: number - description: Used to find a suitable masternode with a fee equal or less - default: 1 - example: 100 - format: double - minimum: 1e-05 - name: - type: string - description: Name of the NFT - example: Mona Lisa - maxLength: 256 - open_api_group_id: - type: string - description: OpenAPI GroupID string - default: PASTEL - example: Officiis rerum voluptatibus. - royalty: - type: number - description: Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT - example: 12 - format: double - maximum: 20 - series_name: - type: string - description: Series name - example: Famous artist - maxLength: 256 - spendable_address: - type: string - description: Spendable address - example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - pattern: ^[a-zA-Z0-9]+$ - minLength: 35 - maxLength: 36 - thumbnail_coordinate: - $ref: '#/definitions/ThumbnailcoordinateRequestBody' - youtube_url: - type: string - description: NFT creation video youtube URL - example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - maxLength: 128 - example: - burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - green: false - image_id: VK7mpAqZ - issued_copies: 1 - keywords: Renaissance, sfumato, portrait - make_publicly_accessible: false - maximum_fee: 100 - name: Mona Lisa - open_api_group_id: Quas facere explicabo dicta. - royalty: 12 - series_name: Famous artist - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - thumbnail_coordinate: - bottom_right_x: 640 - bottom_right_y: 480 - top_left_x: 0 - top_left_y: 0 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - required: - - image_id - - creator_name - - name - - creator_pastelid - - spendable_address - - maximum_fee - NftRegisterResponseBody: - title: 'Mediatype identifier: application/vnd.nft.register; view=default' - type: object - properties: - task_id: - type: string - description: Task ID of the registration process - example: n6Qn6TFM - minLength: 8 - maxLength: 8 - description: RegisterResponseBody result type (default view) - example: - task_id: n6Qn6TFM - required: - - task_id - NftRegisterTaskInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: registerTask_InternalServerError_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftRegisterTaskNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: registerTask_NotFound_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftRegisterTaskResponseBody: - title: 'Mediatype identifier: application/vnd.nft.register.task; view=default' - type: object - properties: - id: - type: string - description: JOb ID of the registration process - example: n6Qn6TFM - minLength: 8 - maxLength: 8 - states: - type: array - items: - $ref: '#/definitions/TaskStateResponseBody' - description: List of states from the very beginning of the process - example: - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - status: - type: string - description: Status of the registration process - example: Task Started - enum: - - Task Started - - Connected - - Validated Duplicate Reg Tickets - - Validating Burn Txn - - Burn Txn Validated - - Image Probed - - Image And Thumbnail Uploaded - - Status Gen ReptorQ Symbols - - Preburn Registration Fee - - Downloaded - - Request Accepted - - Request Registered - - Request Activated - - Error Setting up mesh of supernodes - - Error Sending Reg Metadata - - Error Uploading Image - - Error Converting Image to Bytes - - Error Encoding Image - - Error Creating Ticket - - Error Signing Ticket - - Error Uploading Ticket - - Error Activating Ticket - - Error Probing Image - - Error checking dd-server availability before probe image - - Error Generating DD and Fingerprint IDs - - Error comparing suitable storage fee with task request maximum fee - - Error balance not sufficient - - Error getting hash of the image - - Error sending signed ticket to SNs - - Error checking balance - - Error burning reg fee to get reg ticket id - - Error validating reg ticket txn id - - Error validating activate ticket txn id - - Error Insufficient Fee - - Error Signatures Dont Match - - Error Fingerprints Dont Match - - Error ThumbnailHashes Dont Match - - Error GenRaptorQ Symbols Failed - - Error File Don't Match - - Error Not Enough SuperNode - - Error Find Responding SNs - - Error Not Enough Downloaded Filed - - Error Download Failed - - Error Invalid Burn TxID - - Task Failed - - Task Rejected - - Task Completed - ticket: - $ref: '#/definitions/NftRegisterPayloadResponseBody' - txid: - type: string - description: txid - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - minLength: 64 - maxLength: 64 - description: RegisterTaskResponseBody result type (default view) - example: - id: n6Qn6TFM - states: - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - status: Task Started - ticket: - burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - green: false - issued_copies: 1 - key: Basic abcdef12345 - keywords: Renaissance, sfumato, portrait - make_publicly_accessible: false - maximum_fee: 100 - name: Mona Lisa - open_api_group_id: Ut eos et quos autem. - royalty: 12 - series_name: Famous artist - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - thumbnail_coordinate: - bottom_right_x: 640 - bottom_right_y: 480 - top_left_x: 0 - top_left_y: 0 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - required: - - id - - status - - ticket - NftRegisterTaskStateInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: registerTaskState_InternalServerError_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftRegisterTaskStateNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: registerTaskState_NotFound_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftRegisterTaskStateResponseBody: - title: NftRegisterTaskStateResponseBody - type: object - properties: - date: - type: string - description: Date of the status creation - example: 2006-01-02T15:04:05Z07:00 - status: - type: string - description: Status of the registration process - example: Task Started - enum: - - Task Started - - Connected - - Validated Duplicate Reg Tickets - - Validating Burn Txn - - Burn Txn Validated - - Image Probed - - Image And Thumbnail Uploaded - - Status Gen ReptorQ Symbols - - Preburn Registration Fee - - Downloaded - - Request Accepted - - Request Registered - - Request Activated - - Error Setting up mesh of supernodes - - Error Sending Reg Metadata - - Error Uploading Image - - Error Converting Image to Bytes - - Error Encoding Image - - Error Creating Ticket - - Error Signing Ticket - - Error Uploading Ticket - - Error Activating Ticket - - Error Probing Image - - Error checking dd-server availability before probe image - - Error Generating DD and Fingerprint IDs - - Error comparing suitable storage fee with task request maximum fee - - Error balance not sufficient - - Error getting hash of the image - - Error sending signed ticket to SNs - - Error checking balance - - Error burning reg fee to get reg ticket id - - Error validating reg ticket txn id - - Error validating activate ticket txn id - - Error Insufficient Fee - - Error Signatures Dont Match - - Error Fingerprints Dont Match - - Error ThumbnailHashes Dont Match - - Error GenRaptorQ Symbols Failed - - Error File Don't Match - - Error Not Enough SuperNode - - Error Find Responding SNs - - Error Not Enough Downloaded Filed - - Error Download Failed - - Error Invalid Burn TxID - - Task Failed - - Task Rejected - - Task Completed - example: - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - required: - - date - - status - NftRegisterTasksInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: registerTasks_InternalServerError_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftRegisterUnAuthorizedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: register_UnAuthorized_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftSummaryResponseBody: - title: NftSummaryResponseBody - type: object - properties: - copies: - type: integer - description: Number of copies - default: 1 - example: 1 - format: int64 - minimum: 1 - maximum: 1000 - creator_name: - type: string - description: Name of the artist - example: Leonardo da Vinci - maxLength: 256 - creator_pastelid: - type: string - description: Artist's PastelID - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - pattern: ^[a-zA-Z0-9]+$ - minLength: 86 - maxLength: 86 - creator_website_url: - type: string - description: Artist website URL - example: https://www.leonardodavinci.net - maxLength: 256 - description: - type: string - description: Description of the NFT - example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - maxLength: 1024 - is_likely_dupe: - type: boolean - description: Is this image likely a duplicate of another known image - example: false - keywords: - type: string - description: Keywords - example: Renaissance, sfumato, portrait - maxLength: 256 - nsfw_score: - type: number - description: NSFW Average score - example: 1 - format: float - minimum: 0 - maximum: 1 - rareness_score: - type: number - description: Average pastel rareness score - example: 1 - format: float - minimum: 0 - maximum: 1 - series_name: - type: string - description: Series name - example: Famous artist - maxLength: 256 - thumbnail_1: - type: string - description: Thumbnail_1 image - example: - - 69 - - 116 - - 32 - - 118 - - 105 - - 116 - - 97 - - 101 - - 32 - - 115 - - 105 - - 116 - - 46 - format: byte - thumbnail_2: - type: string - description: Thumbnail_2 image - example: - - 69 - - 115 - - 116 - - 32 - - 105 - - 100 - - 32 - - 101 - - 116 - - 32 - - 110 - - 105 - - 104 - - 105 - - 108 - - 46 - format: byte - title: - type: string - description: Name of the NFT - example: Mona Lisa - maxLength: 256 - txid: - type: string - description: txid - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - minLength: 64 - maxLength: 64 - youtube_url: - type: string - description: NFT creation video youtube URL - example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - maxLength: 128 - description: NFT response - example: - copies: 1 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - is_likely_dupe: false - keywords: Renaissance, sfumato, portrait - nsfw_score: 1 - rareness_score: 1 - series_name: Famous artist - thumbnail_1: - - 80 - - 111 - - 115 - - 115 - - 105 - - 109 - - 117 - - 115 - - 32 - - 101 - - 120 - - 101 - - 114 - - 99 - - 105 - - 116 - - 97 - - 116 - - 105 - - 111 - - 110 - - 101 - - 109 - - 46 - thumbnail_2: - - 68 - - 101 - - 98 - - 105 - - 116 - - 105 - - 115 - - 32 - - 99 - - 117 - - 109 - - 113 - - 117 - - 101 - - 32 - - 101 - - 115 - - 116 - - 32 - - 101 - - 116 - - 32 - - 101 - - 116 - - 46 - title: Mona Lisa - txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - required: - - title - - description - - creator_name - - copies - - creator_pastelid - - txid - NftTaskResponseTinyCollection: - title: 'Mediatype identifier: application/vnd.nft.register.task; type=collection; view=tiny' - type: array - items: - $ref: '#/definitions/TaskResponseTiny' - description: NftTaskResponseTinyCollection is the result type for an array of TaskResponseTiny (default view) - example: - - id: n6Qn6TFM - states: - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - status: Task Started - ticket: - burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - green: false - issued_copies: 1 - key: Basic abcdef12345 - keywords: Renaissance, sfumato, portrait - make_publicly_accessible: false - maximum_fee: 100 - name: Mona Lisa - open_api_group_id: Ut eos et quos autem. - royalty: 12 - series_name: Famous artist - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - thumbnail_coordinate: - bottom_right_x: 640 - bottom_right_y: 480 - top_left_x: 0 - top_left_y: 0 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - - id: n6Qn6TFM - states: - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - status: Task Started - ticket: - burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - green: false - issued_copies: 1 - key: Basic abcdef12345 - keywords: Renaissance, sfumato, portrait - make_publicly_accessible: false - maximum_fee: 100 - name: Mona Lisa - open_api_group_id: Ut eos et quos autem. - royalty: 12 - series_name: Famous artist - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - thumbnail_coordinate: - bottom_right_x: 640 - bottom_right_y: 480 - top_left_x: 0 - top_left_y: 0 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - - id: n6Qn6TFM - states: - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - status: Task Started - ticket: - burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - green: false - issued_copies: 1 - key: Basic abcdef12345 - keywords: Renaissance, sfumato, portrait - make_publicly_accessible: false - maximum_fee: 100 - name: Mona Lisa - open_api_group_id: Ut eos et quos autem. - royalty: 12 - series_name: Famous artist - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - thumbnail_coordinate: - bottom_right_x: 640 - bottom_right_y: 480 - top_left_x: 0 - top_left_y: 0 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - NftUploadImageBadRequestResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: uploadImage_BadRequest_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftUploadImageInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: uploadImage_InternalServerError_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftUploadImageRequestBody: - title: NftUploadImageRequestBody - type: object - properties: - file: - type: string - description: File to upload - example: - - 67 - - 111 - - 110 - - 115 - - 101 - - 113 - - 117 - - 117 - - 110 - - 116 - - 117 - - 114 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 - - 116 - - 46 - format: byte - filename: - type: string - description: For internal use - example: - file: - - 79 - - 102 - - 102 - - 105 - - 99 - - 105 - - 97 - - 32 - - 114 - - 101 - - 99 - - 117 - - 115 - - 97 - - 110 - - 100 - - 97 - - 101 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 - - 116 - - 32 - - 97 - - 117 - - 116 - - 46 - required: - - file - NftUploadImageResponseBody: - title: 'Mediatype identifier: application/vnd.nft.upload-image-result; view=default' - type: object - properties: - estimated_fee: - type: number - description: Estimated fee - default: 1 - example: 100 - format: double - minimum: 1e-05 - expires_in: - type: string - description: Image expiration - example: 2006-01-02T15:04:05Z07:00 - format: date-time - image_id: - type: string - description: Uploaded image ID - example: VK7mpAqZ - minLength: 8 - maxLength: 8 - description: UploadImageResponseBody result type (default view) - example: - estimated_fee: 100 - expires_in: 2006-01-02T15:04:05Z07:00 - image_id: VK7mpAqZ - required: - - image_id - - expires_in - - estimated_fee - ObserverEvaluationDataResponse: - title: ObserverEvaluationDataResponse - type: object - properties: - block: - type: integer - description: Block - example: 492103627 - format: int32 - is_challenge_timestamp_ok: - type: boolean - description: IsChallengeTimestampOK - example: true - is_challenger_signature_ok: - type: boolean - description: IsChallengerSignatureOK - example: true - is_evaluation_result_ok: - type: boolean - description: IsEvaluationResultOK - example: true - is_evaluation_timestamp_ok: - type: boolean - description: IsEvaluationTimestampOK - example: false - is_process_timestamp_ok: - type: boolean - description: IsProcessTimestampOK - example: true - is_recipient_signature_ok: - type: boolean - description: IsRecipientSignatureOK - example: true - merkelroot: - type: string - description: Merkelroot - example: Sed in voluptatum sint. - reason: - type: string - description: Reason - example: Est est facere ipsam suscipit. - timestamp: - type: string - description: Timestamp - example: Dolorem sit est soluta dolorem fuga molestias. - true_hash: - type: string - description: TrueHash - example: Qui quo officiis. - description: Data of Observer's evaluation - example: - block: 2004379588 - is_challenge_timestamp_ok: false - is_challenger_signature_ok: true - is_evaluation_result_ok: true - is_evaluation_timestamp_ok: false - is_process_timestamp_ok: false - is_recipient_signature_ok: false - merkelroot: Non eos et incidunt culpa. - reason: A non. - timestamp: Voluptatem error corporis dolorem. - true_hash: Autem corrupti at est dolorem laudantium. - required: - - timestamp - - is_challenge_timestamp_ok - - is_process_timestamp_ok - - is_evaluation_timestamp_ok - - is_recipient_signature_ok - - is_challenger_signature_ok - - is_evaluation_result_ok - - true_hash - RegistrationAttemptResponseBody: - title: RegistrationAttemptResponseBody - type: object - properties: - error_message: - type: string - description: Error Message - example: Eius quia dolor. - file_id: - type: string - description: File ID - example: Recusandae iste qui. - finished_at: - type: string - description: Finished At in datetime format - example: "1993-01-06T06:48:13Z" - format: date-time - id: - type: integer - description: ID - example: 65071118683436031 - format: int64 - is_successful: - type: boolean - description: Indicates if the registration was successful - example: false - processor_sns: - type: string - description: Processor SNS - example: Officia excepturi. - reg_started_at: - type: string - description: Registration Started At in datetime format - example: "1995-09-01T23:26:45Z" - format: date-time - example: - error_message: Consequuntur soluta magni incidunt unde consequatur. - file_id: Reprehenderit officiis a. - finished_at: "2001-01-24T08:03:15Z" - id: 4934366373463971411 - is_successful: false - processor_sns: Dolor recusandae odio voluptate enim. - reg_started_at: "1985-06-19T16:10:58Z" - required: - - id - - file_id - - reg_started_at - - finished_at - RespondedTicketResponseBody: - title: RespondedTicketResponseBody - type: object - properties: - is_reconstruction_required: - type: boolean - example: true - missing_keys: - type: array - items: - type: string - example: Repellendus dolorem odit doloremque. - example: - - Dolore dolorum soluta esse dolor numquam sunt. - - Ad enim. - - Repellat minima culpa exercitationem ut sit dolores. - reconstructed_file_hash: - type: string - example: - - 81 - - 117 - - 97 - - 115 - - 105 - - 32 - - 113 - - 117 - - 105 - - 98 - - 117 - - 115 - - 100 - - 97 - - 109 - - 32 - - 110 - - 105 - - 115 - - 105 - - 32 - - 109 - - 111 - - 108 - - 101 - - 115 - - 116 - - 105 - - 97 - - 101 - - 46 - format: byte - ticket_type: - type: string - example: Impedit quo labore voluptas doloribus. - tx_id: - type: string - example: Sed aut. - example: - is_reconstruction_required: true - missing_keys: - - Sed amet. - - Dolore ratione omnis autem. - reconstructed_file_hash: - - 86 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 109 - - 32 - - 116 - - 101 - - 109 - - 112 - - 111 - - 114 - - 97 - - 32 - - 99 - - 111 - - 114 - - 114 - - 117 - - 112 - - 116 - - 105 - - 32 - - 113 - - 117 - - 97 - - 115 - - 105 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Sint cum nisi ea. - tx_id: Voluptatum est. - ResponseDataResponse: - title: ResponseDataResponse - type: object - properties: - block: - type: integer - description: Block - example: 1657398414 - format: int32 - hash: - type: string - description: Hash - example: Non itaque. - merkelroot: - type: string - description: Merkelroot - example: Minima aut nihil deserunt. - timestamp: - type: string - description: Timestamp - example: Alias minima sed voluptatem omnis quidem veritatis. - description: Data of response - example: - block: 1223319624 - hash: Sit eaque iure dolore amet consequuntur quia. - merkelroot: Adipisci natus quibusdam molestiae consequatur qui. - timestamp: Accusantium rerum omnis quos. - required: - - timestamp - SCSummaryStatsResponseBody: - title: SCSummaryStatsResponseBody - type: object - properties: - no_of_invalid_evaluation_observed_by_observers: - type: integer - description: challenges failed due to invalid evaluation evaluated by observers - example: 1262630819399638246 - format: int64 - no_of_invalid_signatures_observed_by_observers: - type: integer - description: challenges failed due to invalid signatures evaluated by observers - example: 7416733236524367202 - format: int64 - no_of_slow_responses_observed_by_observers: - type: integer - description: challenges failed due to slow-responses evaluated by observers - example: 8220033229442295331 - format: int64 - total_challenges_evaluated_by_challenger: - type: integer - description: Total number of challenges evaluated by the challenger node - example: 9214788162290591228 - format: int64 - total_challenges_issued: - type: integer - description: Total number of challenges issued - example: 5590687376329384678 - format: int64 - total_challenges_processed_by_recipient: - type: integer - description: Total number of challenges processed by the recipient node - example: 1999467628609766665 - format: int64 - total_challenges_verified: - type: integer - description: Total number of challenges verified by observers - example: 2882523577301506204 - format: int64 - description: Storage-Challenge SummaryStats - example: - no_of_invalid_evaluation_observed_by_observers: 9042597048367672375 - no_of_invalid_signatures_observed_by_observers: 108703477555085391 - no_of_slow_responses_observed_by_observers: 4551338824571442046 - total_challenges_evaluated_by_challenger: 4223478764367209524 - total_challenges_issued: 2411927090895656381 - total_challenges_processed_by_recipient: 199012614070600943 - total_challenges_verified: 7652524437877652565 - required: - - total_challenges_issued - - total_challenges_processed_by_recipient - - total_challenges_evaluated_by_challenger - - total_challenges_verified - - no_of_slow_responses_observed_by_observers - - no_of_invalid_signatures_observed_by_observers - - no_of_invalid_evaluation_observed_by_observers - SHExecutionStatsResponseBody: - title: SHExecutionStatsResponseBody - type: object - properties: - total_file_healing_failed: - type: integer - description: Total number of file healings that failed - example: 5912105157576617500 - format: int64 - total_files_healed: - type: integer - description: Total number of files healed - example: 1593822490470384411 - format: int64 - total_reconstruction_not_required_evaluations_approved: - type: integer - description: Total number of reconstructions not required approved by verifier nodes - example: 6742774764329235621 - format: int64 - total_reconstruction_required_evaluations_approved: - type: integer - description: Total number of reconstructions approved by verifier nodes - example: 698486530411194056 - format: int64 - total_reconstruction_required_evaluations_not_approved: - type: integer - description: Total number of reconstructions not approved by verifier nodes - example: 1248201501880871088 - format: int64 - total_reconstruction_required_hash_mismatch: - type: integer - description: Total number of reconstructions required with hash mismatch - example: 4805861211373010862 - format: int64 - total_reconstructions_not_required_evaluations_not_approved: - type: integer - description: Total number of reconstructions not required evaluation not approved by verifier nodes - example: 2851776670112960145 - format: int64 - total_self_healing_events_accepted: - type: integer - description: Total number of events accepted (healer node evaluated that reconstruction is required) - example: 4194459261382118799 - format: int64 - total_self_healing_events_acknowledged: - type: integer - description: Total number of events acknowledged by the healer node - example: 4720056279889375397 - format: int64 - total_self_healing_events_evaluations_unverified: - type: integer - description: Total number of challenge evaluations unverified by verifier nodes - example: 3142531896169425950 - format: int64 - total_self_healing_events_evaluations_verified: - type: integer - description: Total number of challenges verified - example: 1129800129811394079 - format: int64 - total_self_healing_events_issued: - type: integer - description: Total number of self-healing events issued - example: 7577455691668225135 - format: int64 - total_self_healing_events_rejected: - type: integer - description: Total number of events rejected (healer node evaluated that reconstruction is not required) - example: 7169145610199602847 - format: int64 - description: Self-healing execution stats - example: - total_file_healing_failed: 295521475070029485 - total_files_healed: 3041123107078311898 - total_reconstruction_not_required_evaluations_approved: 8603013703643418609 - total_reconstruction_required_evaluations_approved: 1862238258720976544 - total_reconstruction_required_evaluations_not_approved: 5975791337008547251 - total_reconstruction_required_hash_mismatch: 2569314186549296498 - total_reconstructions_not_required_evaluations_not_approved: 577193193601458882 - total_self_healing_events_accepted: 132095397426707508 - total_self_healing_events_acknowledged: 1810937531307032182 - total_self_healing_events_evaluations_unverified: 8959505961614109581 - total_self_healing_events_evaluations_verified: 1255907892729107976 - total_self_healing_events_issued: 2206165766391025466 - total_self_healing_events_rejected: 8482649803817519356 - required: - - total_self_healing_events_issued - - total_self_healing_events_acknowledged - - total_self_healing_events_rejected - - total_self_healing_events_accepted - - total_self_healing_events_evaluations_verified - - total_reconstruction_required_evaluations_approved - - total_reconstruction_not_required_evaluations_approved - - total_self_healing_events_evaluations_unverified - - total_reconstruction_required_evaluations_not_approved - - total_reconstructions_not_required_evaluations_not_approved - - total_files_healed - - total_file_healing_failed - SHTriggerStatsResponseBody: - title: SHTriggerStatsResponseBody - type: object - properties: - list_of_nodes: - type: string - description: Comma-separated list of offline nodes - example: Tenetur veniam repellat minus voluptate. - nodes_offline: - type: integer - description: Number of nodes offline - example: 7747587456016763230 - format: int64 - total_files_identified: - type: integer - description: Total number of files identified for self-healing - example: 4946493679879679341 - format: int64 - total_tickets_identified: - type: integer - description: Total number of tickets identified for self-healing - example: 5463597935691185853 - format: int64 - trigger_id: - type: string - description: Unique identifier for the trigger - example: Delectus aut animi delectus assumenda adipisci. - description: Self-healing trigger stats - example: - list_of_nodes: In numquam quam assumenda autem qui minima. - nodes_offline: 8754878813625551730 - total_files_identified: 8349145999873529970 - total_tickets_identified: 7914827504189946611 - trigger_id: Officia magni. - required: - - trigger_id - - nodes_offline - - list_of_nodes - - total_files_identified - - total_tickets_identified - ScoreGetAggregatedChallengesScoresBadRequestResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: getAggregatedChallengesScores_BadRequest_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - ScoreGetAggregatedChallengesScoresInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: getAggregatedChallengesScores_InternalServerError_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - ScoreGetAggregatedChallengesScoresNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: getAggregatedChallengesScores_NotFound_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - ScoreGetAggregatedChallengesScoresUnauthorizedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: getAggregatedChallengesScores_Unauthorized_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - SelfHealingChallengeDataResponseBody: - title: SelfHealingChallengeDataResponseBody - type: object - properties: - block: - type: integer - example: 2096902943 - format: int32 - event_tickets: - type: array - items: - $ref: '#/definitions/EventTicketResponseBody' - example: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: - type: string - example: Provident autem. - nodes_on_watchlist: - type: string - example: Aliquam nisi fugiat quisquam quasi quia odit. - timestamp: - type: string - example: Enim libero in. - example: - block: 993030939 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Omnis nostrum ipsa. - nodes_on_watchlist: Esse nisi nisi qui quia qui cupiditate. - timestamp: Dicta porro deleniti dolores. - SelfHealingMessageDataResponseBody: - title: SelfHealingMessageDataResponseBody - type: object - properties: - challenger_id: - type: string - example: Animi placeat veritatis voluptatem. - event_details: - $ref: '#/definitions/SelfHealingChallengeDataResponseBody' - recipient_id: - type: string - example: Et ut. - response: - $ref: '#/definitions/SelfHealingResponseDataResponseBody' - verification: - $ref: '#/definitions/SelfHealingVerificationDataResponseBody' - example: - challenger_id: Qui eligendi ab ipsum alias sunt ea. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sint eaque. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - SelfHealingMessageKVResponseBody: - title: SelfHealingMessageKVResponseBody - type: object - properties: - message_type: - type: string - description: Message type - example: Sunt maxime in. - messages: - type: array - items: - $ref: '#/definitions/SelfHealingMessageResponseBody' - description: Self-healing messages - example: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - example: - message_type: Qui quasi asperiores quisquam. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - SelfHealingMessageResponseBody: - title: SelfHealingMessageResponseBody - type: object - properties: - data: - $ref: '#/definitions/SelfHealingMessageDataResponseBody' - message_type: - type: string - example: Odio et sit mollitia. - sender_id: - type: string - example: Deserunt maiores totam. - sender_signature: - type: string - example: - - 76 - - 105 - - 98 - - 101 - - 114 - - 111 - - 32 - - 97 - - 116 - - 32 - - 102 - - 117 - - 103 - - 97 - - 46 - format: byte - trigger_id: - type: string - example: Perspiciatis est quo maxime ex in. - example: - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Animi voluptatem est dolorum qui. - sender_id: Magni quis rerum. - sender_signature: - - 67 - - 111 - - 110 - - 115 - - 101 - - 113 - - 117 - - 97 - - 116 - - 117 - - 114 - - 32 - - 101 - - 117 - - 109 - - 32 - - 97 - - 100 - - 32 - - 114 - - 101 - - 114 - - 117 - - 109 - - 46 - trigger_id: Iste accusantium repellendus. - SelfHealingReportKVResponseBody: - title: SelfHealingReportKVResponseBody - type: object - properties: - event_id: - type: string - description: Challenge ID - example: Ex quae repellendus. - report: - $ref: '#/definitions/SelfHealingReportResponseBody' - example: - event_id: Distinctio ut. - report: - messages: - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - SelfHealingReportResponseBody: - title: SelfHealingReportResponseBody - type: object - properties: - messages: - type: array - items: - $ref: '#/definitions/SelfHealingMessageKVResponseBody' - description: Map of message type to SelfHealingMessages - example: - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - example: - messages: - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 + - event_id: Eum itaque totam dicta. + report: + messages: + - message_type: Recusandae ipsa sit ipsa. + messages: + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - message_type: Recusandae ipsa sit ipsa. + messages: + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 - 97 - - 103 - - 110 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 - 97 - - 109 + - 117 + - 116 - 32 + - 100 - 105 - - 112 - - 115 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 - 117 - - 109 + - 115 - 32 - - 105 - - 116 - 97 - - 113 - 117 - - 101 + - 116 - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - 100 - - 101 - - 110 + - 105 + - 99 - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - 97 - - 109 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 - 32 - - 105 - - 112 - - 115 - - 117 - - 109 + - 100 + - 111 + - 108 + - 111 + - 114 - 32 - - 105 + - 100 + - 101 + - 108 + - 101 + - 99 - 116 + - 117 + - 115 + - 32 - 97 - - 113 - 117 - - 101 + - 116 - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - 100 - - 101 - - 110 + - 105 + - 99 - 116 + - 97 - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 + trigger_id: Ut omnis. + - event_id: Eum itaque totam dicta. + report: + messages: + - message_type: Recusandae ipsa sit ipsa. + messages: + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 - 114 + - 32 + - 100 + - 101 + - 108 + - 101 - 99 - - 104 - - 105 - 116 - - 101 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 - 99 - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 - 111 + - 114 - 32 - - 118 + - 100 - 101 - 108 - - 105 + - 101 + - 99 - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 + - 117 - 115 - 32 - 97 - 117 - 116 - 32 - - 97 - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 - 111 - - 99 - - 99 - - 97 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 - 101 - 99 - - 97 - 116 - - 105 + - 117 + - 115 - 32 - - 118 - - 111 - - 108 + - 97 - 117 - - 112 + - 116 + - 32 + - 100 + - 105 + - 99 - 116 - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 - 116 - - 101 - - 115 - 32 - - 97 - - 98 + - 100 + - 111 + - 108 + - 111 + - 114 - 32 - 100 - - 117 + - 101 + - 108 + - 101 - 99 - - 105 - - 109 + - 116 - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 + - 32 - 97 - - 112 - - 105 - - 101 - - 110 + - 117 - 116 - - 101 - 32 - - 115 - - 101 - - 113 - - 117 + - 100 - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - message_type: Recusandae ipsa sit ipsa. + messages: + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 - 32 - - 117 - - 108 + - 100 + - 111 - 108 - - 97 - - 109 + - 111 + - 114 - 32 - - 110 + - 100 - 101 - - 113 - - 117 + - 108 - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 + - 99 + - 116 + - 117 + - 115 + - 32 - 97 - - 103 - - 110 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 - 97 - - 109 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 - 32 - - 105 - - 112 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 - 115 + - 32 + - 97 - 117 - - 109 + - 116 - 32 + - 100 - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 - 116 - - 97 - - 113 - - 117 - - 101 - 32 - - 112 - - 114 + - 100 - 111 - - 118 - - 105 + - 108 + - 111 + - 114 + - 32 - 100 - 101 - - 110 + - 108 + - 101 + - 99 - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 + - 117 - 115 + - 32 + - 97 - 117 - - 109 + - 116 - 32 + - 100 - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 - 116 - - 97 - - 113 - - 117 - - 101 - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - 111 - - 32 - - 118 - - 101 - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 + - 111 + - 114 - 32 - - 97 - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 + - 101 + - 108 - 101 - 99 - - 97 - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - 115 - 32 - 97 - - 98 - - 32 - - 100 - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - - 101 - 32 - - 115 - - 101 - - 113 - - 117 + - 100 - 105 - - 32 - - 117 - - 108 - - 108 + - 99 + - 116 - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 + trigger_id: Ut omnis. + example: + reports: + - event_id: Eum itaque totam dicta. + report: + messages: + - message_type: Recusandae ipsa sit ipsa. + messages: + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - message_type: Recusandae ipsa sit ipsa. + messages: + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - event_id: Eum itaque totam dicta. + report: + messages: + - message_type: Recusandae ipsa sit ipsa. + messages: + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - message_type: Recusandae ipsa sit ipsa. + messages: + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + MetricsGetDetailedLogsUnauthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: getDetailedLogs_Unauthorized_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + MetricsGetSummaryStatsBadRequestResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: getSummaryStats_BadRequest_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + MetricsGetSummaryStatsInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: getSummaryStats_InternalServerError_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + MetricsGetSummaryStatsNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: getSummaryStats_NotFound_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + MetricsGetSummaryStatsResponseBody: + title: 'Mediatype identifier: application/vnd.metrics.result; view=default' + type: object + properties: + self_healing_execution_events_stats: + $ref: '#/definitions/SHExecutionStatsResponseBody' + self_healing_trigger_events_stats: + type: array + items: + $ref: '#/definitions/SHTriggerStatsResponseBody' + description: Self-healing trigger stats + example: + - list_of_nodes: Nesciunt autem vel est. + nodes_offline: 4186693389945997111 + total_files_identified: 5916702575799384876 + total_tickets_identified: 3422563547898111768 + trigger_id: Accusamus cumque voluptatem exercitationem ab. + - list_of_nodes: Nesciunt autem vel est. + nodes_offline: 4186693389945997111 + total_files_identified: 5916702575799384876 + total_tickets_identified: 3422563547898111768 + trigger_id: Accusamus cumque voluptatem exercitationem ab. + - list_of_nodes: Nesciunt autem vel est. + nodes_offline: 4186693389945997111 + total_files_identified: 5916702575799384876 + total_tickets_identified: 3422563547898111768 + trigger_id: Accusamus cumque voluptatem exercitationem ab. + description: GetSummaryStatsResponseBody result type (default view) + example: + self_healing_execution_events_stats: + total_file_healing_failed: 5551622164662787660 + total_files_healed: 8671724886982383594 + total_reconstruction_not_required_evaluations_approved: 3509617877318915873 + total_reconstruction_required_evaluations_approved: 2598935111695686044 + total_reconstruction_required_evaluations_not_approved: 645871039112296182 + total_reconstruction_required_hash_mismatch: 6198218032159021896 + total_reconstructions_not_required_evaluations_not_approved: 6224481363842689139 + total_self_healing_events_accepted: 5676342644268881237 + total_self_healing_events_acknowledged: 305624170386109632 + total_self_healing_events_evaluations_unverified: 1687102203985295374 + total_self_healing_events_evaluations_verified: 7201039114224972892 + total_self_healing_events_issued: 7624509276581647432 + total_self_healing_events_rejected: 8106553798825109777 + self_healing_trigger_events_stats: + - list_of_nodes: Nesciunt autem vel est. + nodes_offline: 4186693389945997111 + total_files_identified: 5916702575799384876 + total_tickets_identified: 3422563547898111768 + trigger_id: Accusamus cumque voluptatem exercitationem ab. + - list_of_nodes: Nesciunt autem vel est. + nodes_offline: 4186693389945997111 + total_files_identified: 5916702575799384876 + total_tickets_identified: 3422563547898111768 + trigger_id: Accusamus cumque voluptatem exercitationem ab. + required: + - self_healing_trigger_events_stats + - self_healing_execution_events_stats + MetricsGetSummaryStatsUnauthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: getSummaryStats_Unauthorized_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftDdServiceOutputFileDetailInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: ddServiceOutputFileDetail_InternalServerError_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftDdServiceOutputFileDetailNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: ddServiceOutputFileDetail_NotFound_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftDdServiceOutputFileDetailResponseBody: + title: NftDdServiceOutputFileDetailResponseBody + type: object + properties: + alternative_nsfw_scores: + $ref: '#/definitions/AlternativeNSFWScoresResponseBody' + candidate_image_thumbnail_webp_as_base64_string: + type: string + description: candidate image thumbnail as base64 string + example: Perspiciatis et accusantium fuga sit in. + child_probability: + type: number + description: child probability + example: 0.8271751 + format: float + collection_name_string: + type: string + description: name of the collection + example: Quis ex dolor eveniet provident. + cp_probability: + type: number + description: probability of CP + example: 0.9250763 + format: float + creator_name: + type: string + description: name of the creator + example: Alias non magni eum et. + creator_website: + type: string + description: website of creator + example: Recusandae et nulla et et. + creator_written_statement: + type: string + description: written statement of creator + example: At ipsum minima. + does_not_impact_the_following_collection_strings: + type: string + description: does not impact collection strings + example: Voluptatem est quisquam tenetur. + dupe_detection_system_version: + type: string + description: system version of dupe detection + example: Autem ea optio est voluptatem deserunt exercitationem. + file_type: + type: string + description: type of the file + example: Et sit et omnis non ad. + group_rareness_score: + type: number + description: rareness score of the group + example: 0.31847075 + format: float + hash_of_candidate_image_file: + type: string + description: hash of candidate image file + example: Distinctio eum. + image_file_path: + type: string + description: file path of the image + example: At sequi eaque. + image_fingerprint_of_candidate_image_file: + type: array + items: + type: number + example: 0.04346560909053385 + format: double + description: Image fingerprint of candidate image file + example: + - 0.8265343444104936 + - 0.9072128208585332 + - 0.20518572772379823 + internet_rareness: + $ref: '#/definitions/InternetRarenessResponseBody' + is_likely_dupe: + type: boolean + description: is this nft likely a duplicate + example: false + is_pastel_openapi_request: + type: boolean + description: is pastel open API request + example: false + is_rare_on_internet: + type: boolean + description: is this nft rare on the internet + example: false + max_permitted_open_nsfw_score: + type: number + description: max permitted open NSFW score + example: 0.562778188429247 + format: double + nft_creation_video_youtube_url: + type: string + description: nft creation video youtube url + example: In officia quia. + nft_keyword_set: + type: string + description: keywords for NFT + example: Sint et occaecati ad consectetur dolor. + nft_series_name: + type: string + description: series name of NFT + example: Reprehenderit soluta doloremque dolorum rerum dolor facere. + nft_title: + type: string + description: title of NFT + example: Aut voluptatem labore. + open_api_group_id_string: + type: string + description: open api group id string + example: Maiores aspernatur explicabo et nobis. + open_nsfw_score: + type: number + description: open nsfw score + example: 0.0067218044 + format: float + original_file_size_in_bytes: + type: integer + description: original file size in bytes + example: 1727768664143466560 + format: int64 + overall_rareness_score: + type: number + description: pastel rareness score + example: 0.06350944 + format: float + pastel_block_hash_when_request_submitted: + type: string + description: block hash when request submitted + example: Dolorum maxime corrupti magnam et et voluptatem. + pastel_block_height_when_request_submitted: + type: string + description: block Height when request submitted + example: Eligendi laboriosam dignissimos nihil explicabo laboriosam est. + pastel_id_of_registering_supernode_1: + type: string + description: pastel id of registering SN1 + example: Quia dicta eveniet quod. + pastel_id_of_registering_supernode_2: + type: string + description: pastel id of registering SN2 + example: Occaecati quam est. + pastel_id_of_registering_supernode_3: + type: string + description: pastel id of registering SN3 + example: Sed quia corrupti vel. + pastel_id_of_submitter: + type: string + description: pastel id of the submitter + example: Rerum omnis. + pct_of_top_10_most_similar_with_dupe_prob_above_25pct: + type: number + description: PCT of top 10 most similar with dupe probe above 25 PCT + example: 0.41605514 + format: float + pct_of_top_10_most_similar_with_dupe_prob_above_33pct: + type: number + description: PCT of top 10 most similar with dupe probe above 33 PCT + example: 0.60499537 + format: float + pct_of_top_10_most_similar_with_dupe_prob_above_50pct: + type: number + description: PCT of top 10 most similar with dupe probe above 50 PCT + example: 0.9858219 + format: float + preview_hash: + type: string + description: preview hash of NFT + example: + - 73 + - 110 + - 32 + - 112 + - 111 + - 114 + - 114 + - 111 + - 32 + - 105 + - 110 + - 118 + - 101 + - 110 + - 116 + - 111 + - 114 + - 101 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 112 + - 101 + - 114 + - 102 + - 101 + - 114 + - 101 + - 110 + - 100 + - 105 + - 115 + - 46 + format: byte + rareness_scores_table_json_compressed_b64: + type: string + description: rareness scores table json compressed b64 + example: Velit non voluptatum et eos porro ipsa. + similarity_score_to_first_entry_in_collection: + type: number + description: similarity score to first entry in collection + example: 0.6376665 + format: float + thumbnail1_hash: + type: string + description: thumbnail1 hash of NFT + example: + - 68 + - 111 + - 108 + - 111 + - 114 + - 101 + - 115 + - 32 + - 109 + - 111 + - 108 + - 101 + - 115 + - 116 + - 105 + - 97 + - 115 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 117 + - 116 + - 32 + - 108 + - 97 + - 98 + - 111 + - 114 + - 117 + - 109 + - 32 + - 109 + - 105 + - 110 + - 117 + - 115 + - 32 + - 113 + - 117 + - 111 + - 100 + - 46 + format: byte + thumbnail2_hash: + type: string + description: thumbnail2 hash of NFT + example: + - 65 + - 109 + - 101 + - 116 + - 32 + - 110 + - 111 + - 98 + - 105 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 46 + format: byte + total_copies: + type: integer + description: total copies of NFT + example: 5973698838483140961 + format: int64 + utc_timestamp_when_request_submitted: + type: string + description: timestamp of request when submitted + example: Et vel. + example: + alternative_nsfw_scores: + drawings: 0.053542916 + hentai: 0.17044726 + neutral: 0.01989352 + porn: 0.7542108 + sexy: 0.24790263 + candidate_image_thumbnail_webp_as_base64_string: Magni quo aut aut a accusantium voluptas. + child_probability: 0.2722556 + collection_name_string: Doloribus aut. + cp_probability: 0.080685355 + creator_name: Consequatur asperiores. + creator_website: Ut libero expedita necessitatibus at. + creator_written_statement: Soluta totam ratione est quos fugit omnis. + does_not_impact_the_following_collection_strings: Ea possimus quam. + dupe_detection_system_version: Sint aliquam. + file_type: Repudiandae id non sit. + group_rareness_score: 0.39976165 + hash_of_candidate_image_file: Porro itaque molestias eos officiis. + image_file_path: Est aut nobis ullam quia voluptatem. + image_fingerprint_of_candidate_image_file: + - 0.2337053625785891 + - 0.7606478372985767 + - 0.4816506910655517 + - 0.6600616570929657 + internet_rareness: + alternative_rare_on_internet_dict_as_json_compressed_b64: Magnam pariatur aut facilis. + earliest_available_date_of_internet_results: Sed repudiandae voluptas dolor aut velit voluptatem. + min_number_of_exact_matches_in_page: 1704813535 + rare_on_internet_graph_json_compressed_b64: Aliquid provident eveniet. + rare_on_internet_summary_table_as_json_compressed_b64: Quisquam corporis qui nobis dignissimos. + is_likely_dupe: false + is_pastel_openapi_request: true + is_rare_on_internet: false + max_permitted_open_nsfw_score: 0.21702853924721482 + nft_creation_video_youtube_url: Praesentium ipsam autem. + nft_keyword_set: Doloremque doloribus. + nft_series_name: Eos distinctio et et veniam. + nft_title: Cumque consequatur animi. + open_api_group_id_string: Incidunt est. + open_nsfw_score: 0.32370627 + original_file_size_in_bytes: 430969822399397072 + overall_rareness_score: 0.94536245 + pastel_block_hash_when_request_submitted: Et voluptatem aspernatur. + pastel_block_height_when_request_submitted: Est soluta repudiandae autem occaecati aspernatur est. + pastel_id_of_registering_supernode_1: Dolores beatae magni et cupiditate quidem. + pastel_id_of_registering_supernode_2: Est eos alias pariatur adipisci omnis deleniti. + pastel_id_of_registering_supernode_3: Eaque nesciunt tempore sequi fugit. + pastel_id_of_submitter: Delectus necessitatibus in. + pct_of_top_10_most_similar_with_dupe_prob_above_25pct: 0.0005365054 + pct_of_top_10_most_similar_with_dupe_prob_above_33pct: 0.34399658 + pct_of_top_10_most_similar_with_dupe_prob_above_50pct: 0.8091386 + preview_hash: + - 73 + - 100 + - 32 + - 101 + - 116 + - 46 + rareness_scores_table_json_compressed_b64: Magni qui culpa sed quia quam. + similarity_score_to_first_entry_in_collection: 0.9801496 + thumbnail1_hash: + - 82 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 108 + - 97 + - 98 + - 111 + - 114 + - 105 + - 111 + - 115 + - 97 + - 109 + - 46 + thumbnail2_hash: + - 80 + - 111 + - 115 + - 115 + - 105 + - 109 + - 117 + - 115 + - 32 + - 115 + - 105 + - 116 + - 32 + - 115 + - 117 + - 110 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 113 + - 117 + - 105 + - 46 + total_copies: 1640767363046307917 + utc_timestamp_when_request_submitted: Incidunt similique natus consequatur. + required: + - creator_name + - creator_website + - creator_written_statement + - nft_title + - nft_series_name + - nft_creation_video_youtube_url + - nft_keyword_set + - total_copies + - preview_hash + - thumbnail1_hash + - thumbnail2_hash + - original_file_size_in_bytes + - file_type + - max_permitted_open_nsfw_score + NftDdServiceOutputFileDetailUnAuthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: ddServiceOutputFileDetail_UnAuthorized_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftDdServiceOutputFileInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: ddServiceOutputFile_InternalServerError_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftDdServiceOutputFileNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: ddServiceOutputFile_NotFound_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftDdServiceOutputFileResponseBody: + title: NftDdServiceOutputFileResponseBody + type: object + properties: + file: + type: string + description: File downloaded + example: Occaecati tenetur non est ea. + example: + file: Sit et consequatur laudantium aut. + required: + - file + NftDdServiceOutputFileUnAuthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: ddServiceOutputFile_UnAuthorized_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftDownloadInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: download_InternalServerError_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftDownloadNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: download_NotFound_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftDownloadResponseBody: + title: NftDownloadResponseBody + type: object + properties: + file_id: + type: string + description: File path + example: Velit temporibus quo quaerat dolores deleniti. + example: + file_id: Et sint. + required: + - file_id + NftDownloadUnAuthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: download_UnAuthorized_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftGetTaskHistoryInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: getTaskHistory_InternalServerError_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftGetTaskHistoryNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: getTaskHistory_NotFound_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftNftGetBadRequestResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: nftGet_BadRequest_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftNftGetInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: nftGet_InternalServerError_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftNftGetNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: nftGet_NotFound_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftNftGetResponseBody: + title: NftNftGetResponseBody + type: object + properties: + alt_rare_on_internet_dict_json_b64: + type: string + description: Base64 Compressed Json of Alternative Rare On Internet Dict + example: Autem reiciendis aliquam iusto voluptates. + copies: + type: integer + description: Number of copies + default: 1 + example: 1 + format: int64 + minimum: 1 + maximum: 1000 + creator_name: + type: string + description: Name of the artist + example: Leonardo da Vinci + maxLength: 256 + creator_pastelid: + type: string + description: Artist's PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + creator_website_url: + type: string + description: Artist website URL + example: https://www.leonardodavinci.net + maxLength: 256 + description: + type: string + description: Description of the NFT + example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + maxLength: 1024 + drawing_nsfw_score: + type: number + description: nsfw score + example: 1 + format: float + minimum: 0 + maximum: 1 + earliest_date_of_results: + type: string + description: Earliest Available Date of Internet Results + example: Quis quos nihil. + green_address: + type: boolean + description: Green address + example: true + hentai_nsfw_score: + type: number + description: nsfw score + example: 1 + format: float + minimum: 0 + maximum: 1 + is_likely_dupe: + type: boolean + description: Is this image likely a duplicate of another known image + example: false + is_rare_on_internet: + type: boolean + description: is this nft rare on the internet + example: false + keywords: + type: string + description: Keywords + example: Renaissance, sfumato, portrait + maxLength: 256 + min_num_exact_matches_on_page: + type: integer + description: Minimum Number of Exact Matches on Page + example: 2347840671 + format: int32 + neutral_nsfw_score: + type: number + description: nsfw score + example: 1 + format: float + minimum: 0 + maximum: 1 + nsfw_score: + type: number + description: NSFW Average score + example: 1 + format: float + minimum: 0 + maximum: 1 + porn_nsfw_score: + type: number + description: nsfw score + example: 1 + format: float + minimum: 0 + maximum: 1 + preview_thumbnail: + type: string + description: Preview Image + example: + - 77 + - 105 + - 110 + - 105 + - 109 + - 97 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 116 + - 101 + - 110 + - 101 + - 116 + - 117 + - 114 + - 32 + - 105 + - 112 + - 115 + - 97 + - 109 + - 32 + - 105 + - 100 + - 32 + - 109 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 46 + format: byte + rare_on_internet_graph_json_b64: + type: string + description: Base64 Compressed JSON of Rare On Internet Graph + example: Perspiciatis quam ut accusamus. + rare_on_internet_summary_table_json_b64: + type: string + description: Base64 Compressed JSON Table of Rare On Internet Summary + example: Voluptatum quis magnam molestias harum repellendus et. + rareness_score: + type: number + description: Average pastel rareness score + example: 1 + format: float + minimum: 0 + maximum: 1 + royalty: + type: number + description: how much artist should get on all future resales + example: 0.2540148801977663 + format: double + series_name: + type: string + description: Series name + example: Famous artist + maxLength: 256 + sexy_nsfw_score: + type: number + description: nsfw score + example: 1 + format: float + minimum: 0 + maximum: 1 + storage_fee: + type: integer + description: Storage fee % + example: 100 + format: int64 + thumbnail_1: + type: string + description: Thumbnail_1 image + example: + - 69 + - 97 + - 113 + - 117 + - 101 + - 32 + - 111 + - 109 + - 110 + - 105 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 115 + - 32 + - 109 + - 111 + - 100 + - 105 + - 32 + - 102 + - 117 + - 103 + - 97 + - 46 + format: byte + thumbnail_2: + type: string + description: Thumbnail_2 image + example: + - 73 + - 110 + - 32 + - 116 + - 101 + - 109 + - 112 + - 111 + - 114 + - 97 + - 46 + format: byte + title: + type: string + description: Name of the NFT + example: Mona Lisa + maxLength: 256 + txid: + type: string + description: txid + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + minLength: 64 + maxLength: 64 + version: + type: integer + description: version + example: 1 + format: int64 + youtube_url: + type: string + description: NFT creation video youtube URL + example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + maxLength: 128 + example: + alt_rare_on_internet_dict_json_b64: Voluptas voluptatibus similique omnis. + copies: 1 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + drawing_nsfw_score: 1 + earliest_date_of_results: Error in quis ipsam esse sequi. + green_address: true + hentai_nsfw_score: 1 + is_likely_dupe: false + is_rare_on_internet: false + keywords: Renaissance, sfumato, portrait + min_num_exact_matches_on_page: 3236303469 + neutral_nsfw_score: 1 + nsfw_score: 1 + porn_nsfw_score: 1 + preview_thumbnail: + - 81 + - 117 + - 97 + - 115 + - 105 + - 32 + - 111 + - 102 + - 102 + - 105 + - 99 + - 105 + - 97 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 109 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 46 + rare_on_internet_graph_json_b64: Iste similique velit accusamus illo. + rare_on_internet_summary_table_json_b64: Itaque officia at deleniti. + rareness_score: 1 + royalty: 0.4964943668435947 + series_name: Famous artist + sexy_nsfw_score: 1 + storage_fee: 100 + thumbnail_1: + - 69 + - 97 + - 113 + - 117 + - 101 + - 32 + - 101 + - 120 + - 112 + - 108 + - 105 + - 99 + - 97 + - 98 + - 111 + - 32 + - 101 + - 108 + - 105 + - 103 + - 101 + - 110 + - 100 + - 105 + - 32 + - 97 + - 117 + - 116 + - 46 + thumbnail_2: + - 68 + - 111 + - 108 + - 111 + - 114 + - 105 + - 98 + - 117 + - 115 + - 32 + - 110 + - 111 + - 98 + - 105 + - 115 + - 32 + - 111 + - 102 + - 102 + - 105 + - 99 + - 105 + - 97 + - 32 + - 99 + - 111 + - 110 + - 115 + - 101 + - 113 + - 117 + - 117 + - 110 + - 116 + - 117 + - 114 + - 32 + - 115 + - 101 + - 100 + - 32 + - 108 + - 97 + - 98 + - 111 + - 114 + - 105 + - 111 + - 115 + - 97 + - 109 + - 32 + - 109 + - 111 + - 108 + - 101 + - 115 + - 116 + - 105 + - 97 + - 101 + - 46 + title: Mona Lisa + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + version: 1 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + required: + - rareness_score + - nsfw_score + - is_likely_dupe + - is_rare_on_internet + - title + - description + - creator_name + - copies + - creator_pastelid + - txid + NftNftSearchBadRequestResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: nftSearch_BadRequest_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftNftSearchInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: nftSearch_InternalServerError_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftNftSearchResponseBody: + title: NftNftSearchResponseBody + type: object + properties: + match_index: + type: integer + description: Sort index of the match based on score.This must be used to sort results on UI. + example: 4366201559533369601 + format: int64 + matches: + type: array + items: + $ref: '#/definitions/FuzzyMatchResponseBody' + description: Match result details + example: + - field_type: art_title + matched_indexes: + - 3612816769359928583 + - 2434896289749192084 + - 6872177758464281011 + score: 3987001657133176801 + str: Corrupti natus sit velit consequatur. + - field_type: art_title + matched_indexes: + - 3612816769359928583 + - 2434896289749192084 + - 6872177758464281011 + score: 3987001657133176801 + str: Corrupti natus sit velit consequatur. + - field_type: art_title + matched_indexes: + - 3612816769359928583 + - 2434896289749192084 + - 6872177758464281011 + score: 3987001657133176801 + str: Corrupti natus sit velit consequatur. + - field_type: art_title + matched_indexes: + - 3612816769359928583 + - 2434896289749192084 + - 6872177758464281011 + score: 3987001657133176801 + str: Corrupti natus sit velit consequatur. + nft: + $ref: '#/definitions/NftSummaryResponseBody' + example: + match_index: 2902776548633802113 + matches: + - field_type: art_title + matched_indexes: + - 3612816769359928583 + - 2434896289749192084 + - 6872177758464281011 + score: 3987001657133176801 + str: Corrupti natus sit velit consequatur. + - field_type: art_title + matched_indexes: + - 3612816769359928583 + - 2434896289749192084 + - 6872177758464281011 + score: 3987001657133176801 + str: Corrupti natus sit velit consequatur. + nft: + copies: 1 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + is_likely_dupe: false + keywords: Renaissance, sfumato, portrait + nsfw_score: 1 + rareness_score: 1 + series_name: Famous artist + thumbnail_1: + - 82 + - 97 + - 116 + - 105 + - 111 + - 110 + - 101 + - 32 + - 101 + - 115 + - 116 + - 32 + - 102 + - 97 + - 99 + - 105 + - 108 + - 105 + - 115 + - 46 + thumbnail_2: + - 78 + - 117 + - 108 + - 108 + - 97 + - 32 + - 108 + - 97 + - 98 + - 111 + - 114 + - 117 + - 109 + - 32 + - 113 + - 117 + - 111 + - 115 + - 32 + - 118 + - 101 + - 108 + - 46 + title: Mona Lisa + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + required: + - nft + - matches + - match_index + NftRegisterBadRequestResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: register_BadRequest_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftRegisterInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: register_InternalServerError_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftRegisterPayloadResponse: + title: NftRegisterPayloadResponse + type: object + properties: + burn_txid: + type: string + description: Burn transaction ID + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + minLength: 64 + maxLength: 64 + collection_act_txid: + type: string + description: 'Act Collection TxID to add given ticket in collection ' + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: + type: string + description: Name of the NFT creator + example: Leonardo da Vinci + maxLength: 256 + creator_pastelid: + type: string + description: Creator's PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + creator_website_url: + type: string + description: NFT creator website URL + example: https://www.leonardodavinci.net + maxLength: 256 + description: + type: string + description: Description of the NFT + example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + maxLength: 1024 + green: + type: boolean + description: To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees + example: false + issued_copies: + type: integer + description: Number of copies issued + example: 1 + format: int64 + maximum: 1000 + key: + type: string + description: Passphrase of the owner's PastelID + example: Basic abcdef12345 + keywords: + type: string + description: Keywords + example: Renaissance, sfumato, portrait + maxLength: 256 + make_publicly_accessible: + type: boolean + description: To make it publicly accessible + default: false + example: false + maximum_fee: + type: number + description: Used to find a suitable masternode with a fee equal or less + default: 1 + example: 100 + format: double + minimum: 1e-05 + name: + type: string + description: Name of the NFT + example: Mona Lisa + maxLength: 256 + open_api_group_id: + type: string + description: OpenAPI GroupID string + default: PASTEL + example: Accusantium possimus exercitationem iusto debitis cumque. + royalty: + type: number + description: Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT + example: 12 + format: double + maximum: 20 + series_name: + type: string + description: Series name + example: Famous artist + maxLength: 256 + spendable_address: + type: string + description: Spendable address + example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + pattern: ^[a-zA-Z0-9]+$ + minLength: 35 + maxLength: 36 + thumbnail_coordinate: + $ref: '#/definitions/ThumbnailcoordinateResponse' + youtube_url: + type: string + description: NFT creation video youtube URL + example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + maxLength: 128 + description: Request of the registration NFT + example: + burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + green: false + issued_copies: 1 + key: Basic abcdef12345 + keywords: Renaissance, sfumato, portrait + make_publicly_accessible: false + maximum_fee: 100 + name: Mona Lisa + open_api_group_id: Et et. + royalty: 12 + series_name: Famous artist + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + thumbnail_coordinate: + bottom_right_x: 640 + bottom_right_y: 480 + top_left_x: 0 + top_left_y: 0 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + required: + - creator_name + - name + - creator_pastelid + - spendable_address + - maximum_fee + - key + NftRegisterPayloadResponseBody: + title: NftRegisterPayloadResponseBody + type: object + properties: + burn_txid: + type: string + description: Burn transaction ID + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + minLength: 64 + maxLength: 64 + collection_act_txid: + type: string + description: 'Act Collection TxID to add given ticket in collection ' + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: + type: string + description: Name of the NFT creator + example: Leonardo da Vinci + maxLength: 256 + creator_pastelid: + type: string + description: Creator's PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + creator_website_url: + type: string + description: NFT creator website URL + example: https://www.leonardodavinci.net + maxLength: 256 + description: + type: string + description: Description of the NFT + example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + maxLength: 1024 + green: + type: boolean + description: To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees + example: false + issued_copies: + type: integer + description: Number of copies issued + example: 1 + format: int64 + maximum: 1000 + key: + type: string + description: Passphrase of the owner's PastelID + example: Basic abcdef12345 + keywords: + type: string + description: Keywords + example: Renaissance, sfumato, portrait + maxLength: 256 + make_publicly_accessible: + type: boolean + description: To make it publicly accessible + default: false + example: false + maximum_fee: + type: number + description: Used to find a suitable masternode with a fee equal or less + default: 1 + example: 100 + format: double + minimum: 1e-05 + name: + type: string + description: Name of the NFT + example: Mona Lisa + maxLength: 256 + open_api_group_id: + type: string + description: OpenAPI GroupID string + default: PASTEL + example: Optio mollitia. + royalty: + type: number + description: Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT + example: 12 + format: double + maximum: 20 + series_name: + type: string + description: Series name + example: Famous artist + maxLength: 256 + spendable_address: + type: string + description: Spendable address + example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + pattern: ^[a-zA-Z0-9]+$ + minLength: 35 + maxLength: 36 + thumbnail_coordinate: + $ref: '#/definitions/ThumbnailcoordinateResponseBody' + youtube_url: + type: string + description: NFT creation video youtube URL + example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + maxLength: 128 + description: Request of the registration NFT + example: + burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + green: false + issued_copies: 1 + key: Basic abcdef12345 + keywords: Renaissance, sfumato, portrait + make_publicly_accessible: false + maximum_fee: 100 + name: Mona Lisa + open_api_group_id: Aliquam ad veritatis consequuntur fugiat. + royalty: 12 + series_name: Famous artist + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + thumbnail_coordinate: + bottom_right_x: 640 + bottom_right_y: 480 + top_left_x: 0 + top_left_y: 0 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + required: + - creator_name + - name + - creator_pastelid + - spendable_address + - maximum_fee + - key + NftRegisterRequestBody: + title: NftRegisterRequestBody + type: object + properties: + burn_txid: + type: string + description: Burn transaction ID + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + minLength: 64 + maxLength: 64 + collection_act_txid: + type: string + description: 'Act Collection TxID to add given ticket in collection ' + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: + type: string + description: Name of the NFT creator + example: Leonardo da Vinci + maxLength: 256 + creator_pastelid: + type: string + description: Creator's PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + creator_website_url: + type: string + description: NFT creator website URL + example: https://www.leonardodavinci.net + maxLength: 256 + description: + type: string + description: Description of the NFT + example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + maxLength: 1024 + green: + type: boolean + description: To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees + example: false + image_id: + type: string + description: Uploaded image ID + example: VK7mpAqZ + minLength: 8 + maxLength: 8 + issued_copies: + type: integer + description: Number of copies issued + example: 1 + format: int64 + maximum: 1000 + keywords: + type: string + description: Keywords + example: Renaissance, sfumato, portrait + maxLength: 256 + make_publicly_accessible: + type: boolean + description: To make it publicly accessible + default: false + example: false + maximum_fee: + type: number + description: Used to find a suitable masternode with a fee equal or less + default: 1 + example: 100 + format: double + minimum: 1e-05 + name: + type: string + description: Name of the NFT + example: Mona Lisa + maxLength: 256 + open_api_group_id: + type: string + description: OpenAPI GroupID string + default: PASTEL + example: Et rerum a voluptas dolor similique vero. + royalty: + type: number + description: Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT + example: 12 + format: double + maximum: 20 + series_name: + type: string + description: Series name + example: Famous artist + maxLength: 256 + spendable_address: + type: string + description: Spendable address + example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + pattern: ^[a-zA-Z0-9]+$ + minLength: 35 + maxLength: 36 + thumbnail_coordinate: + $ref: '#/definitions/ThumbnailcoordinateRequestBody' + youtube_url: + type: string + description: NFT creation video youtube URL + example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + maxLength: 128 + example: + burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + green: false + image_id: VK7mpAqZ + issued_copies: 1 + keywords: Renaissance, sfumato, portrait + make_publicly_accessible: false + maximum_fee: 100 + name: Mona Lisa + open_api_group_id: Ex necessitatibus commodi saepe non nobis. + royalty: 12 + series_name: Famous artist + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + thumbnail_coordinate: + bottom_right_x: 640 + bottom_right_y: 480 + top_left_x: 0 + top_left_y: 0 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + required: + - image_id + - creator_name + - name + - creator_pastelid + - spendable_address + - maximum_fee + NftRegisterResponseBody: + title: 'Mediatype identifier: application/vnd.nft.register; view=default' + type: object + properties: + task_id: + type: string + description: Task ID of the registration process + example: n6Qn6TFM + minLength: 8 + maxLength: 8 + description: RegisterResponseBody result type (default view) + example: + task_id: n6Qn6TFM + required: + - task_id + NftRegisterTaskInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: registerTask_InternalServerError_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftRegisterTaskNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: registerTask_NotFound_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftRegisterTaskResponseBody: + title: 'Mediatype identifier: application/vnd.nft.register.task; view=default' + type: object + properties: + id: + type: string + description: JOb ID of the registration process + example: n6Qn6TFM + minLength: 8 + maxLength: 8 + states: + type: array + items: + $ref: '#/definitions/TaskStateResponseBody' + description: List of states from the very beginning of the process + example: + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + status: + type: string + description: Status of the registration process + example: Task Started + enum: + - Task Started + - Connected + - Validated Duplicate Reg Tickets + - Validating Burn Txn + - Burn Txn Validated + - Image Probed + - Image And Thumbnail Uploaded + - Status Gen ReptorQ Symbols + - Preburn Registration Fee + - Downloaded + - Request Accepted + - Request Registered + - Request Activated + - Error Setting up mesh of supernodes + - Error Sending Reg Metadata + - Error Uploading Image + - Error Converting Image to Bytes + - Error Encoding Image + - Error Creating Ticket + - Error Signing Ticket + - Error Uploading Ticket + - Error Activating Ticket + - Error Probing Image + - Error checking dd-server availability before probe image + - Error Generating DD and Fingerprint IDs + - Error comparing suitable storage fee with task request maximum fee + - Error balance not sufficient + - Error getting hash of the image + - Error sending signed ticket to SNs + - Error checking balance + - Error burning reg fee to get reg ticket id + - Error validating reg ticket txn id + - Error validating activate ticket txn id + - Error Insufficient Fee + - Error Signatures Dont Match + - Error Fingerprints Dont Match + - Error ThumbnailHashes Dont Match + - Error GenRaptorQ Symbols Failed + - Error File Don't Match + - Error Not Enough SuperNode + - Error Find Responding SNs + - Error Not Enough Downloaded Filed + - Error Download Failed + - Error Invalid Burn TxID + - Task Failed + - Task Rejected + - Task Completed + ticket: + $ref: '#/definitions/NftRegisterPayloadResponseBody' + txid: + type: string + description: txid + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + minLength: 64 + maxLength: 64 + description: RegisterTaskResponseBody result type (default view) + example: + id: n6Qn6TFM + states: + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + status: Task Started + ticket: + burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + green: false + issued_copies: 1 + key: Basic abcdef12345 + keywords: Renaissance, sfumato, portrait + make_publicly_accessible: false + maximum_fee: 100 + name: Mona Lisa + open_api_group_id: Ut eos et quos autem. + royalty: 12 + series_name: Famous artist + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + thumbnail_coordinate: + bottom_right_x: 640 + bottom_right_y: 480 + top_left_x: 0 + top_left_y: 0 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + required: + - id + - status + - ticket + NftRegisterTaskStateInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: registerTaskState_InternalServerError_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftRegisterTaskStateNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: registerTaskState_NotFound_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftRegisterTaskStateResponseBody: + title: NftRegisterTaskStateResponseBody + type: object + properties: + date: + type: string + description: Date of the status creation + example: 2006-01-02T15:04:05Z07:00 + status: + type: string + description: Status of the registration process + example: Task Started + enum: + - Task Started + - Connected + - Validated Duplicate Reg Tickets + - Validating Burn Txn + - Burn Txn Validated + - Image Probed + - Image And Thumbnail Uploaded + - Status Gen ReptorQ Symbols + - Preburn Registration Fee + - Downloaded + - Request Accepted + - Request Registered + - Request Activated + - Error Setting up mesh of supernodes + - Error Sending Reg Metadata + - Error Uploading Image + - Error Converting Image to Bytes + - Error Encoding Image + - Error Creating Ticket + - Error Signing Ticket + - Error Uploading Ticket + - Error Activating Ticket + - Error Probing Image + - Error checking dd-server availability before probe image + - Error Generating DD and Fingerprint IDs + - Error comparing suitable storage fee with task request maximum fee + - Error balance not sufficient + - Error getting hash of the image + - Error sending signed ticket to SNs + - Error checking balance + - Error burning reg fee to get reg ticket id + - Error validating reg ticket txn id + - Error validating activate ticket txn id + - Error Insufficient Fee + - Error Signatures Dont Match + - Error Fingerprints Dont Match + - Error ThumbnailHashes Dont Match + - Error GenRaptorQ Symbols Failed + - Error File Don't Match + - Error Not Enough SuperNode + - Error Find Responding SNs + - Error Not Enough Downloaded Filed + - Error Download Failed + - Error Invalid Burn TxID + - Task Failed + - Task Rejected + - Task Completed + example: + date: 2006-01-02T15:04:05Z07:00 + status: Task Started + required: + - date + - status + NftRegisterTasksInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: registerTasks_InternalServerError_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftRegisterUnAuthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: register_UnAuthorized_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftSummaryResponseBody: + title: NftSummaryResponseBody + type: object + properties: + copies: + type: integer + description: Number of copies + default: 1 + example: 1 + format: int64 + minimum: 1 + maximum: 1000 + creator_name: + type: string + description: Name of the artist + example: Leonardo da Vinci + maxLength: 256 + creator_pastelid: + type: string + description: Artist's PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + creator_website_url: + type: string + description: Artist website URL + example: https://www.leonardodavinci.net + maxLength: 256 + description: + type: string + description: Description of the NFT + example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + maxLength: 1024 + is_likely_dupe: + type: boolean + description: Is this image likely a duplicate of another known image + example: false + keywords: + type: string + description: Keywords + example: Renaissance, sfumato, portrait + maxLength: 256 + nsfw_score: + type: number + description: NSFW Average score + example: 1 + format: float + minimum: 0 + maximum: 1 + rareness_score: + type: number + description: Average pastel rareness score + example: 1 + format: float + minimum: 0 + maximum: 1 + series_name: + type: string + description: Series name + example: Famous artist + maxLength: 256 + thumbnail_1: + type: string + description: Thumbnail_1 image + example: + - 81 + - 117 + - 97 + - 115 + - 105 + - 32 + - 110 + - 111 + - 115 + - 116 + - 114 + - 117 + - 109 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 116 + - 111 + - 116 + - 97 + - 109 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 32 + - 101 + - 108 + - 105 + - 103 + - 101 + - 110 + - 100 + - 105 + - 46 + format: byte + thumbnail_2: + type: string + description: Thumbnail_2 image + example: + - 70 + - 97 + - 99 + - 101 + - 114 + - 101 + - 32 + - 97 + - 109 + - 101 + - 116 + - 32 + - 110 + - 117 + - 109 + - 113 + - 117 + - 97 + - 109 + - 32 + - 114 + - 101 + - 109 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 101 + - 110 + - 100 + - 117 + - 115 + - 32 + - 102 + - 117 + - 103 + - 105 + - 116 + - 32 + - 115 + - 117 + - 110 + - 116 + - 46 + format: byte + title: + type: string + description: Name of the NFT + example: Mona Lisa + maxLength: 256 + txid: + type: string + description: txid + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + minLength: 64 + maxLength: 64 + youtube_url: + type: string + description: NFT creation video youtube URL + example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + maxLength: 128 + description: NFT response + example: + copies: 1 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + is_likely_dupe: false + keywords: Renaissance, sfumato, portrait + nsfw_score: 1 + rareness_score: 1 + series_name: Famous artist + thumbnail_1: + - 80 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 32 + - 101 + - 97 + - 113 + - 117 + - 101 + - 46 + thumbnail_2: + - 73 + - 117 + - 115 + - 116 + - 111 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 115 + - 32 + - 110 + - 111 + - 110 + - 46 + title: Mona Lisa + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + required: + - title + - description + - creator_name + - copies + - creator_pastelid + - txid + NftTaskResponseTinyCollection: + title: 'Mediatype identifier: application/vnd.nft.register.task; type=collection; view=tiny' + type: array + items: + $ref: '#/definitions/TaskResponseTiny' + description: NftTaskResponseTinyCollection is the result type for an array of TaskResponseTiny (default view) + example: + - id: n6Qn6TFM + states: + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + status: Task Started + ticket: + burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + green: false + issued_copies: 1 + key: Basic abcdef12345 + keywords: Renaissance, sfumato, portrait + make_publicly_accessible: false + maximum_fee: 100 + name: Mona Lisa + open_api_group_id: Ut eos et quos autem. + royalty: 12 + series_name: Famous artist + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + thumbnail_coordinate: + bottom_right_x: 640 + bottom_right_y: 480 + top_left_x: 0 + top_left_y: 0 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + - id: n6Qn6TFM + states: + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + status: Task Started + ticket: + burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + green: false + issued_copies: 1 + key: Basic abcdef12345 + keywords: Renaissance, sfumato, portrait + make_publicly_accessible: false + maximum_fee: 100 + name: Mona Lisa + open_api_group_id: Ut eos et quos autem. + royalty: 12 + series_name: Famous artist + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + thumbnail_coordinate: + bottom_right_x: 640 + bottom_right_y: 480 + top_left_x: 0 + top_left_y: 0 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + - id: n6Qn6TFM + states: + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + status: Task Started + ticket: + burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + green: false + issued_copies: 1 + key: Basic abcdef12345 + keywords: Renaissance, sfumato, portrait + make_publicly_accessible: false + maximum_fee: 100 + name: Mona Lisa + open_api_group_id: Ut eos et quos autem. + royalty: 12 + series_name: Famous artist + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + thumbnail_coordinate: + bottom_right_x: 640 + bottom_right_y: 480 + top_left_x: 0 + top_left_y: 0 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + - id: n6Qn6TFM + states: + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + status: Task Started + ticket: + burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + green: false + issued_copies: 1 + key: Basic abcdef12345 + keywords: Renaissance, sfumato, portrait + make_publicly_accessible: false + maximum_fee: 100 + name: Mona Lisa + open_api_group_id: Ut eos et quos autem. + royalty: 12 + series_name: Famous artist + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + thumbnail_coordinate: + bottom_right_x: 640 + bottom_right_y: 480 + top_left_x: 0 + top_left_y: 0 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + NftUploadImageBadRequestResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: uploadImage_BadRequest_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftUploadImageInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: uploadImage_InternalServerError_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftUploadImageRequestBody: + title: NftUploadImageRequestBody + type: object + properties: + file: + type: string + description: File to upload + example: + - 69 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 110 + - 116 + - 105 + - 117 + - 109 + - 32 + - 97 + - 110 + - 105 + - 109 + - 105 + - 32 + - 115 + - 117 + - 110 + - 116 + - 32 + - 98 + - 108 + - 97 + - 110 + - 100 + - 105 + - 116 + - 105 + - 105 + - 115 + - 46 + format: byte + filename: + type: string + description: For internal use + example: + file: + - 86 + - 105 + - 116 + - 97 + - 101 + - 32 + - 118 + - 101 + - 114 + - 105 + - 116 + - 97 + - 116 + - 105 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 115 + - 32 + - 101 + - 108 + - 105 + - 103 + - 101 + - 110 + - 100 + - 105 + - 32 + - 114 + - 97 + - 116 + - 105 + - 111 + - 110 + - 101 + - 32 + - 105 + - 100 + - 32 + - 113 + - 117 + - 105 + - 46 + required: + - file + NftUploadImageResponseBody: + title: 'Mediatype identifier: application/vnd.nft.upload-image-result; view=default' + type: object + properties: + estimated_fee: + type: number + description: Estimated fee + default: 1 + example: 100 + format: double + minimum: 1e-05 + expires_in: + type: string + description: Image expiration + example: 2006-01-02T15:04:05Z07:00 + format: date-time + image_id: + type: string + description: Uploaded image ID + example: VK7mpAqZ + minLength: 8 + maxLength: 8 + description: UploadImageResponseBody result type (default view) + example: + estimated_fee: 100 + expires_in: 2006-01-02T15:04:05Z07:00 + image_id: VK7mpAqZ + required: + - image_id + - expires_in + - estimated_fee + ObserverEvaluationDataResponse: + title: ObserverEvaluationDataResponse + type: object + properties: + block: + type: integer + description: Block + example: 873807682 + format: int32 + is_challenge_timestamp_ok: + type: boolean + description: IsChallengeTimestampOK + example: true + is_challenger_signature_ok: + type: boolean + description: IsChallengerSignatureOK + example: false + is_evaluation_result_ok: + type: boolean + description: IsEvaluationResultOK + example: true + is_evaluation_timestamp_ok: + type: boolean + description: IsEvaluationTimestampOK + example: true + is_process_timestamp_ok: + type: boolean + description: IsProcessTimestampOK + example: true + is_recipient_signature_ok: + type: boolean + description: IsRecipientSignatureOK + example: false + merkelroot: + type: string + description: Merkelroot + example: Culpa est perspiciatis dolores odit. + reason: + type: string + description: Reason + example: Corrupti at. + timestamp: + type: string + description: Timestamp + example: Voluptatem error corporis dolorem. + true_hash: + type: string + description: TrueHash + example: Dolorem laudantium. + description: Data of Observer's evaluation + example: + block: 110168171 + is_challenge_timestamp_ok: false + is_challenger_signature_ok: true + is_evaluation_result_ok: false + is_evaluation_timestamp_ok: true + is_process_timestamp_ok: true + is_recipient_signature_ok: false + merkelroot: Voluptatem architecto. + reason: Aut dicta. + timestamp: Qui facere id. + true_hash: Rerum aut. + required: + - timestamp + - is_challenge_timestamp_ok + - is_process_timestamp_ok + - is_evaluation_timestamp_ok + - is_recipient_signature_ok + - is_challenger_signature_ok + - is_evaluation_result_ok + - true_hash + RegistrationAttemptResponseBody: + title: RegistrationAttemptResponseBody + type: object + properties: + error_message: + type: string + description: Error Message + example: Necessitatibus inventore dolor nisi debitis aut odio. + file_id: + type: string + description: File ID + example: Eaque officiis aspernatur id et aut. + finished_at: + type: string + description: Finished At in datetime format + example: "2001-03-29T00:00:52Z" + format: date-time + id: + type: integer + description: ID + example: 4860360742236491050 + format: int64 + is_successful: + type: boolean + description: Indicates if the registration was successful + example: false + processor_sns: + type: string + description: Processor SNS + example: Corporis quas et tempore saepe. + reg_started_at: + type: string + description: Registration Started At in datetime format + example: "1993-10-28T21:59:10Z" + format: date-time + example: + error_message: Commodi reiciendis et et ducimus velit quam. + file_id: Impedit rerum libero et quis. + finished_at: "1990-11-23T10:18:07Z" + id: 444954594601192835 + is_successful: false + processor_sns: Id commodi. + reg_started_at: "1993-05-06T16:03:31Z" + required: + - id + - file_id + - reg_started_at + - finished_at + RespondedTicketResponseBody: + title: RespondedTicketResponseBody + type: object + properties: + is_reconstruction_required: + type: boolean + example: false + missing_keys: + type: array + items: + type: string + example: Et similique voluptatem ut corporis temporibus. + example: + - Unde et distinctio consequatur praesentium et. + - Perspiciatis temporibus veritatis fuga omnis consequatur temporibus. + - Adipisci nihil molestiae. + reconstructed_file_hash: + type: string + example: + - 84 + - 101 + - 110 + - 101 + - 116 + - 117 + - 114 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 101 + - 109 + - 46 + format: byte + ticket_type: + type: string + example: Officia quidem in. + tx_id: + type: string + example: Quasi ducimus doloremque fugiat aut est. + example: + is_reconstruction_required: false + missing_keys: + - Ex veritatis autem in. + - Debitis qui. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 101 + - 109 + - 32 + - 110 + - 111 + - 98 + - 105 + - 115 + - 46 + ticket_type: Sapiente inventore expedita molestias. + tx_id: Repellendus pariatur eos autem doloremque. + ResponseDataResponse: + title: ResponseDataResponse + type: object + properties: + block: + type: integer + description: Block + example: 2128339148 + format: int32 + hash: + type: string + description: Hash + example: Reprehenderit ipsam veritatis accusantium sit repellendus. + merkelroot: + type: string + description: Merkelroot + example: Praesentium numquam odit animi occaecati et nisi. + timestamp: + type: string + description: Timestamp + example: Provident dolore. + description: Data of response + example: + block: 914566760 + hash: Aut rerum et. + merkelroot: Ut quia enim quam commodi. + timestamp: Commodi laudantium. + required: + - timestamp + SCSummaryStatsResponseBody: + title: SCSummaryStatsResponseBody + type: object + properties: + no_of_invalid_evaluation_observed_by_observers: + type: integer + description: challenges failed due to invalid evaluation evaluated by observers + example: 8448058223243749560 + format: int64 + no_of_invalid_signatures_observed_by_observers: + type: integer + description: challenges failed due to invalid signatures evaluated by observers + example: 8359887601648170101 + format: int64 + no_of_slow_responses_observed_by_observers: + type: integer + description: challenges failed due to slow-responses evaluated by observers + example: 7891085395597145694 + format: int64 + total_challenges_evaluated_by_challenger: + type: integer + description: Total number of challenges evaluated by the challenger node + example: 5130594556944153183 + format: int64 + total_challenges_issued: + type: integer + description: Total number of challenges issued + example: 7226997995396706400 + format: int64 + total_challenges_processed_by_recipient: + type: integer + description: Total number of challenges processed by the recipient node + example: 5970798887905028462 + format: int64 + total_challenges_verified: + type: integer + description: Total number of challenges verified by observers + example: 813743049200551551 + format: int64 + description: Storage-Challenge SummaryStats + example: + no_of_invalid_evaluation_observed_by_observers: 2941821598506559608 + no_of_invalid_signatures_observed_by_observers: 3732715178392837689 + no_of_slow_responses_observed_by_observers: 3362298399127573417 + total_challenges_evaluated_by_challenger: 7464852390256145582 + total_challenges_issued: 982894599761507202 + total_challenges_processed_by_recipient: 1709859129074181105 + total_challenges_verified: 4862406093902741602 + required: + - total_challenges_issued + - total_challenges_processed_by_recipient + - total_challenges_evaluated_by_challenger + - total_challenges_verified + - no_of_slow_responses_observed_by_observers + - no_of_invalid_signatures_observed_by_observers + - no_of_invalid_evaluation_observed_by_observers + SHExecutionStatsResponseBody: + title: SHExecutionStatsResponseBody + type: object + properties: + total_file_healing_failed: + type: integer + description: Total number of file healings that failed + example: 7110295239839079318 + format: int64 + total_files_healed: + type: integer + description: Total number of files healed + example: 7273229820220489656 + format: int64 + total_reconstruction_not_required_evaluations_approved: + type: integer + description: Total number of reconstructions not required approved by verifier nodes + example: 7227159664804338091 + format: int64 + total_reconstruction_required_evaluations_approved: + type: integer + description: Total number of reconstructions approved by verifier nodes + example: 1231544901686574894 + format: int64 + total_reconstruction_required_evaluations_not_approved: + type: integer + description: Total number of reconstructions not approved by verifier nodes + example: 7043195386771997812 + format: int64 + total_reconstruction_required_hash_mismatch: + type: integer + description: Total number of reconstructions required with hash mismatch + example: 9127868877782486339 + format: int64 + total_reconstructions_not_required_evaluations_not_approved: + type: integer + description: Total number of reconstructions not required evaluation not approved by verifier nodes + example: 3697305095978270885 + format: int64 + total_self_healing_events_accepted: + type: integer + description: Total number of events accepted (healer node evaluated that reconstruction is required) + example: 6936203582918385714 + format: int64 + total_self_healing_events_acknowledged: + type: integer + description: Total number of events acknowledged by the healer node + example: 7501593075332076902 + format: int64 + total_self_healing_events_evaluations_unverified: + type: integer + description: Total number of challenge evaluations unverified by verifier nodes + example: 7058130195420023276 + format: int64 + total_self_healing_events_evaluations_verified: + type: integer + description: Total number of challenges verified + example: 8648560082570846381 + format: int64 + total_self_healing_events_issued: + type: integer + description: Total number of self-healing events issued + example: 1419664908385881791 + format: int64 + total_self_healing_events_rejected: + type: integer + description: Total number of events rejected (healer node evaluated that reconstruction is not required) + example: 2015002353907856604 + format: int64 + description: Self-healing execution stats + example: + total_file_healing_failed: 2789096299006299988 + total_files_healed: 4419572223275241376 + total_reconstruction_not_required_evaluations_approved: 7748927910636449007 + total_reconstruction_required_evaluations_approved: 9151917778125864507 + total_reconstruction_required_evaluations_not_approved: 7722371150490296838 + total_reconstruction_required_hash_mismatch: 1188714710419999793 + total_reconstructions_not_required_evaluations_not_approved: 8978903766317203870 + total_self_healing_events_accepted: 3106000301119730088 + total_self_healing_events_acknowledged: 2402673399316595345 + total_self_healing_events_evaluations_unverified: 7003916677450707686 + total_self_healing_events_evaluations_verified: 99819049584274399 + total_self_healing_events_issued: 1031509655329780558 + total_self_healing_events_rejected: 4448568758806981285 + required: + - total_self_healing_events_issued + - total_self_healing_events_acknowledged + - total_self_healing_events_rejected + - total_self_healing_events_accepted + - total_self_healing_events_evaluations_verified + - total_reconstruction_required_evaluations_approved + - total_reconstruction_not_required_evaluations_approved + - total_self_healing_events_evaluations_unverified + - total_reconstruction_required_evaluations_not_approved + - total_reconstructions_not_required_evaluations_not_approved + - total_files_healed + - total_file_healing_failed + SHTriggerStatsResponseBody: + title: SHTriggerStatsResponseBody + type: object + properties: + list_of_nodes: + type: string + description: Comma-separated list of offline nodes + example: Vel laudantium cum laudantium aut. + nodes_offline: + type: integer + description: Number of nodes offline + example: 1019773296006369459 + format: int64 + total_files_identified: + type: integer + description: Total number of files identified for self-healing + example: 4068014148055661803 + format: int64 + total_tickets_identified: + type: integer + description: Total number of tickets identified for self-healing + example: 3184655079665461279 + format: int64 + trigger_id: + type: string + description: Unique identifier for the trigger + example: Rerum et consectetur. + description: Self-healing trigger stats + example: + list_of_nodes: Ad non corporis mollitia debitis. + nodes_offline: 435329964148101094 + total_files_identified: 636177187451705191 + total_tickets_identified: 7699273601008932985 + trigger_id: Magnam non odit iusto. + required: + - trigger_id + - nodes_offline + - list_of_nodes + - total_files_identified + - total_tickets_identified + ScoreGetAggregatedChallengesScoresBadRequestResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: getAggregatedChallengesScores_BadRequest_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + ScoreGetAggregatedChallengesScoresInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: getAggregatedChallengesScores_InternalServerError_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + ScoreGetAggregatedChallengesScoresNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: getAggregatedChallengesScores_NotFound_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + ScoreGetAggregatedChallengesScoresUnauthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: getAggregatedChallengesScores_Unauthorized_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + SelfHealingChallengeDataResponseBody: + title: SelfHealingChallengeDataResponseBody + type: object + properties: + block: + type: integer + example: 72126167 + format: int32 + event_tickets: + type: array + items: + $ref: '#/definitions/EventTicketResponseBody' + example: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 - 116 + - 97 + - 113 + - 117 + - 101 - 32 - - 100 - - 111 - - 108 - - 111 + - 112 - 114 - - 32 + - 111 + - 118 + - 105 - 100 - 101 - - 108 - - 101 - - 99 + - 110 - 116 - - 117 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: + type: string + example: In impedit deleniti rerum atque dolore quia. + nodes_on_watchlist: + type: string + example: Sunt consequatur ad enim. + timestamp: + type: string + example: Sint eligendi qui non rerum. + example: + block: 1003810139 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Minima culpa exercitationem ut. + nodes_on_watchlist: Nisi molestiae quia est voluptatum. + timestamp: Dolores ut. + SelfHealingMessageDataResponseBody: + title: SelfHealingMessageDataResponseBody + type: object + properties: + challenger_id: + type: string + example: Qui quisquam sint aliquam veniam. + event_details: + $ref: '#/definitions/SelfHealingChallengeDataResponseBody' + recipient_id: + type: string + example: Veniam perferendis. + response: + $ref: '#/definitions/SelfHealingResponseDataResponseBody' + verification: + $ref: '#/definitions/SelfHealingVerificationDataResponseBody' + example: + challenger_id: Incidunt sequi sit dolor voluptas aut vel. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 - 97 + - 109 + - 32 + - 105 + - 112 + - 115 - 117 - - 116 + - 109 - 32 - - 100 - 105 - - 99 - 116 - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 + - 113 + - 117 + - 101 - 32 - - 100 - - 111 - - 108 - - 111 + - 112 - 114 - - 32 + - 111 + - 118 + - 105 - 100 - 101 - - 108 - - 101 - - 99 + - 110 - 116 - - 117 - - 115 - - 32 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 - 97 + - 109 + - 32 + - 105 + - 112 + - 115 - 117 - - 116 + - 109 - 32 - - 100 - 105 - - 99 - 116 - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 + - 113 + - 117 + - 101 - 32 - - 100 - - 111 - - 108 + - 112 + - 114 - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Voluptas ut minima veritatis. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 + - 104 - 105 - - 99 - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 + - 101 + - 99 - 116 - - 32 - - 100 - - 111 - - 108 - 111 - - 114 - 32 - - 100 + - 118 - 101 - 108 - - 101 - - 99 + - 105 - 116 - - 117 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 - 115 - 32 - 97 - 117 - 116 - 32 + - 97 - 100 - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 - 46 - trigger_id: Ut omnis. + SelfHealingMessageKVResponseBody: + title: SelfHealingMessageKVResponseBody + type: object + properties: + message_type: + type: string + description: Message type + example: Ea repellat. + messages: + type: array + items: + $ref: '#/definitions/SelfHealingMessageResponseBody' + description: Self-healing messages + example: - data: challenger_id: Omnis in quaerat molestiae iusto. event_details: @@ -30815,6 +22481,4746 @@ definitions: - 97 - 46 trigger_id: Ut omnis. + example: + message_type: Neque omnis non aut temporibus accusantium possimus. + messages: + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + SelfHealingMessageResponseBody: + title: SelfHealingMessageResponseBody + type: object + properties: + data: + $ref: '#/definitions/SelfHealingMessageDataResponseBody' + message_type: + type: string + example: Hic eos et ab error vel. + sender_id: + type: string + example: Est ea inventore neque quibusdam qui delectus. + sender_signature: + type: string + example: + - 65 + - 110 + - 105 + - 109 + - 105 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 115 + - 115 + - 117 + - 109 + - 101 + - 110 + - 100 + - 97 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 46 + format: byte + trigger_id: + type: string + example: Accusamus assumenda sequi. + example: + data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Voluptate ea voluptas autem. + sender_id: Magni est itaque in. + sender_signature: + - 81 + - 117 + - 97 + - 109 + - 32 + - 97 + - 115 + - 115 + - 117 + - 109 + - 101 + - 110 + - 100 + - 97 + - 32 + - 97 + - 117 + - 116 + - 101 + - 109 + - 32 + - 113 + - 117 + - 105 + - 32 + - 109 + - 105 + - 110 + - 105 + - 109 + - 97 + - 32 + - 105 + - 108 + - 108 + - 111 + - 32 + - 97 + - 117 + - 116 + - 46 + trigger_id: Commodi tenetur veniam repellat. + SelfHealingReportKVResponseBody: + title: SelfHealingReportKVResponseBody + type: object + properties: + event_id: + type: string + description: Challenge ID + example: Voluptatem in autem. + report: + $ref: '#/definitions/SelfHealingReportResponseBody' + example: + event_id: Possimus mollitia consequatur dolores dolores repellendus. + report: + messages: + - message_type: Recusandae ipsa sit ipsa. + messages: + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - message_type: Recusandae ipsa sit ipsa. + messages: + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + SelfHealingReportResponseBody: + title: SelfHealingReportResponseBody + type: object + properties: + messages: + type: array + items: + $ref: '#/definitions/SelfHealingMessageKVResponseBody' + description: Map of message type to SelfHealingMessages + example: + - message_type: Recusandae ipsa sit ipsa. + messages: + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - message_type: Recusandae ipsa sit ipsa. + messages: + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + example: + messages: - message_type: Recusandae ipsa sit ipsa. messages: - data: @@ -32777,31 +29183,32 @@ definitions: properties: block: type: integer - example: 429756667 + example: 1777029753 format: int32 event_id: type: string - example: Iste necessitatibus eaque possimus sint sequi. + example: At sint. merkelroot: type: string - example: Totam ipsa quia commodi earum facere aut. + example: Ea quis minima sed amet maiores. responded_ticket: $ref: '#/definitions/RespondedTicketResponseBody' timestamp: type: string - example: Unde hic. + example: Ratione omnis autem nihil voluptatem tempora. verifiers: type: array items: type: string - example: Aut est non officia quidem. + example: Eos architecto aspernatur molestiae natus culpa. example: - - Et similique voluptatem ut corporis temporibus. - - Rerum unde et distinctio. + - Est eveniet. + - Quo eius. + - Doloremque iusto illo. example: - block: 454909689 - event_id: Praesentium et quae. - merkelroot: Veritatis fuga omnis. + block: 927164459 + event_id: Non ea. + merkelroot: Porro sed et est rerum similique nulla. responded_ticket: is_reconstruction_required: true missing_keys: @@ -32828,100 +29235,106 @@ definitions: - 46 ticket_type: Veniam porro corrupti voluptates consequatur. tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Temporibus quaerat. + timestamp: Doloribus nihil quia. verifiers: - - Molestiae nesciunt tenetur dolorem veniam. - - Repellendus pariatur eos autem doloremque. - - Sapiente inventore expedita molestias. + - Iste soluta. + - Suscipit aut ipsa dolores laborum cupiditate. SelfHealingVerificationDataResponseBody: title: SelfHealingVerificationDataResponseBody type: object properties: block: type: integer - example: 1512886084 + example: 1567089120 format: int32 event_id: type: string - example: Voluptatem ex veritatis autem in aut debitis. + example: Qui dolore aut assumenda quam. merkelroot: type: string - example: Autem nobis. + example: Quia aut et. timestamp: type: string - example: Facere eos. + example: Perspiciatis debitis consequatur. verified_ticket: $ref: '#/definitions/VerifiedTicketResponseBody' verifiers_data: type: object example: - Cupiditate sapiente maiores ea.: - - 69 - - 120 - - 99 + Deserunt maiores totam.: + - 76 + - 105 + - 98 - 101 - - 112 + - 114 + - 111 + - 32 + - 97 - 116 + - 32 + - 102 - 117 - - 114 + - 103 + - 97 + - 46 + Iste accusantium repellendus.: + - 65 + - 110 + - 105 + - 109 - 105 - 32 - - 97 + - 118 + - 111 + - 108 - 117 + - 112 + - 116 + - 97 - 116 - 101 - 109 - 32 - - 105 - - 117 + - 101 - 115 - 116 - - 111 - 32 - - 114 - - 101 + - 100 + - 111 + - 108 + - 111 - 114 - 117 - 109 - - 46 - additionalProperties: - type: string - example: - - 83 - - 105 - - 116 - 32 - 113 - 117 - 105 + - 46 + additionalProperties: + type: string + example: + - 69 - 97 - 32 + - 109 + - 105 + - 110 + - 105 + - 109 - 97 - - 117 - - 116 - 32 - - 101 - - 105 - - 117 - 115 - - 32 - - 102 - - 117 - - 103 - 105 - - 97 + - 110 - 116 - - 32 - - 118 - - 101 - - 108 - 46 format: byte example: - block: 1348630609 - event_id: Veritatis doloribus. - merkelroot: Esse sed vel et. - timestamp: Laudantium neque accusantium laudantium non. + block: 1482857114 + event_id: Magni quis rerum. + merkelroot: Eum ad rerum. + timestamp: Ut qui quasi asperiores. verified_ticket: is_reconstruction_required: false is_verified: true @@ -32984,54 +29397,69 @@ definitions: ticket_type: Dolor qui aut expedita. tx_id: Saepe excepturi nisi est est veritatis. verifiers_data: - Ipsa dolores veritatis et.: - - 77 - - 97 - - 105 + Hic quibusdam omnis distinctio.: + - 67 - 111 - - 114 - - 101 + - 110 - 115 + - 101 + - 113 + - 117 + - 97 + - 116 + - 117 + - 114 - 32 + - 114 - 101 - - 120 + - 114 + - 117 + - 109 + - 32 + - 118 + - 111 + - 108 + - 117 - 112 - - 101 - - 100 - - 105 - 116 - 97 - - 46 - Iure autem nihil explicabo aperiam non.: - - 83 - - 101 - - 113 + - 116 - 117 - - 105 + - 109 - 32 - - 115 - - 101 - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 - 32 - - 97 - - 115 - - 112 + - 116 - 101 + - 109 + - 112 + - 111 - 114 - - 110 - 97 - - 116 - - 117 - - 114 - 32 + - 97 + - 114 + - 99 + - 104 + - 105 + - 116 - 101 + - 99 - 116 + - 111 - 32 - - 115 - - 101 - - 113 - - 117 + - 109 + - 105 + - 110 - 105 + - 109 + - 97 - 46 SenseDownloadInternalServerErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' @@ -33067,7 +29495,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -33103,14 +29531,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: download_NotFound_response_body result type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -33127,65 +29555,61 @@ definitions: type: string description: File downloaded example: - - 68 - - 101 - - 108 - - 101 - - 110 - - 105 - - 116 - - 105 + - 78 + - 97 + - 109 - 32 - - 99 - 111 + - 109 - 110 + - 105 - 115 - - 101 - - 99 - - 116 - - 101 - - 116 + - 32 + - 102 - 117 - - 114 + - 103 + - 97 + - 32 + - 110 + - 117 + - 109 + - 113 + - 117 + - 97 + - 109 + - 32 + - 117 + - 110 + - 100 + - 101 - 46 format: byte example: file: - - 70 - - 117 - - 103 - - 105 + - 83 - 97 - - 116 + - 101 + - 112 + - 101 - 32 - - 115 - 101 - - 100 + - 116 - 32 - - 110 + - 99 - 111 - - 98 - - 105 + - 110 - 115 - - 32 - - 112 - 101 - - 114 - - 115 - - 112 - - 105 - - 99 - - 105 + - 113 + - 117 - 97 - 116 - - 105 - - 115 + - 117 + - 114 - 32 - - 111 - - 109 - - 110 + - 113 + - 117 - 105 - - 115 - 46 required: - file @@ -33259,10 +29683,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: getTaskHistory_InternalServerError_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -33302,15 +29726,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: getTaskHistory_NotFound_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -33345,15 +29769,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: registerTaskState_InternalServerError_response_body result type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -33395,8 +29819,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -33477,7 +29901,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -33493,19 +29917,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: startProcessing_BadRequest_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -33536,7 +29960,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -33547,8 +29971,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -33581,7 +30005,7 @@ definitions: type: string description: OpenAPI GroupID string default: PASTEL - example: Et quia. + example: Doloremque quidem quis. spendable_address: type: string description: 'Address to use for registration fee ' @@ -33593,7 +30017,7 @@ definitions: app_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - open_api_group_id: Magni itaque eligendi ut et voluptas fugit. + open_api_group_id: Ipsam fugiat delectus animi aperiam amet ullam. spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j required: - burn_txid @@ -33620,7 +30044,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -33636,19 +30060,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: startProcessing_UnAuthorized_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -33691,7 +30115,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -33733,7 +30157,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -33746,42 +30170,45 @@ definitions: title: SenseUploadImageRequestBody type: object properties: - file: - type: string - description: File to upload - example: - - 65 - - 100 - - 32 - - 110 - - 111 - - 110 - - 32 - - 99 + file: + type: string + description: File to upload + example: + - 68 - 111 - - 114 - - 112 + - 108 - 111 - 114 + - 101 + - 109 + - 32 + - 100 + - 117 + - 99 - 105 + - 109 + - 117 - 115 - 32 - - 109 + - 118 - 111 - 108 - - 108 - - 105 + - 117 + - 112 - 116 - - 105 - 97 + - 115 - 32 - - 100 - 101 - - 98 + - 115 + - 115 + - 101 + - 32 + - 110 - 105 - - 116 + - 104 - 105 - - 115 + - 108 - 46 format: byte filename: @@ -33789,28 +30216,47 @@ definitions: description: For internal use example: file: - - 80 - - 114 - - 111 - - 118 + - 83 - 105 - - 100 - - 101 - 110 - 116 - 32 - - 118 - - 111 - - 108 + - 97 + - 115 + - 115 - 117 - - 112 - - 116 + - 109 + - 101 + - 110 + - 100 + - 97 + - 32 + - 111 + - 100 + - 105 + - 111 + - 32 + - 105 + - 110 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 - 97 - 116 - 105 - - 98 - - 117 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 - 115 + - 99 + - 105 - 46 required: - file @@ -33860,7 +30306,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -33876,18 +30322,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true description: getDetailedLogs_BadRequest_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -33903,7 +30349,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -33923,14 +30369,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: getDetailedLogs_InternalServerError_response_body result type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -33946,7 +30392,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -33966,15 +30412,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: getDetailedLogs_NotFound_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -33989,7 +30435,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34012,7 +30458,7 @@ definitions: example: false description: getDetailedLogs_Unauthorized_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -34032,7 +30478,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34060,7 +30506,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -34103,7 +30549,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -34134,14 +30580,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: getSummaryStats_NotFound_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -34179,7 +30625,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34195,7 +30641,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -34207,7 +30653,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -34224,44 +30670,42 @@ definitions: challenge_id: type: string description: ID of the challenge - example: Dolor distinctio facilis tempora ut sed. + example: Et officiis illum est molestias deleniti aliquam. challenger_evaluation: $ref: '#/definitions/EvaluationDataResponse' challenger_id: type: string description: ID of the challenger - example: Quia sed aut quo repellendus. + example: Sit odio. message_type: type: string description: type of the message - example: Doloribus adipisci necessitatibus eum et nam omnis. + example: Voluptatem reprehenderit est. observer_evaluation: $ref: '#/definitions/ObserverEvaluationDataResponse' observers: type: array items: type: string - example: Aspernatur necessitatibus cumque doloremque tempore neque qui. + example: Eaque iure. description: List of observer IDs example: - - Illum est molestias deleniti aliquam dolorem. - - Reprehenderit est laboriosam impedit amet error consequuntur. - - Similique nobis deleniti. - - Repudiandae omnis sit odio ab voluptate suscipit. + - Consequuntur quia et. + - Rerum omnis. recipient_id: type: string description: ID of the recipient - example: Officia illo. + example: Et inventore est et alias est quae. response: $ref: '#/definitions/ResponseDataResponse' sender_id: type: string description: ID of the sender's node - example: Numquam unde dolorem saepe et consequatur qui. + example: Impedit amet. sender_signature: type: string description: signature of the sender - example: Illo et et rem. + example: Consequuntur officiis similique nobis deleniti impedit repudiandae. description: Storage challenge message data (default view) example: challenge: @@ -34271,15 +30715,15 @@ definitions: merkelroot: Sint aut repellat consequatur dignissimos voluptatibus. start_index: 6285852628941175332 timestamp: Odio deleniti omnis maiores dolorem. - challenge_id: Consequatur voluptatem architecto et sed consequuntur maiores. + challenge_id: Ullam quasi cum dolorum. challenger_evaluation: block: 346663458 hash: Voluptatem sint recusandae. is_verified: true merkelroot: Et rem ducimus maxime aut. timestamp: Fugit eaque nesciunt eum quasi. - challenger_id: Id repudiandae ullam quasi cum dolorum. - message_type: Dolorem atque aut. + challenger_id: Quidem beatae ut. + message_type: Necessitatibus sint voluptas molestias repellendus iure vitae. observer_evaluation: block: 1725989442 is_challenge_timestamp_ok: false @@ -34293,17 +30737,16 @@ definitions: timestamp: Voluptas exercitationem quisquam id accusantium voluptatibus. true_hash: Architecto sit quidem deserunt rem dolore aut. observers: - - Sint voluptas molestias repellendus. - - Vitae harum. - - Vel ex modi. - recipient_id: Consequuntur quis magnam. + - Sed qui quasi aliquam. + - Quo molestiae qui. + recipient_id: In non eum enim et. response: block: 2076283382 hash: Dolor autem quo vero quia quod omnis. merkelroot: Et ullam officiis libero. timestamp: Qui non quibusdam. - sender_id: Dolores rerum. - sender_signature: Eligendi qui. + sender_id: Veniam vel ex modi enim consequuntur. + sender_signature: Magnam exercitationem et sapiente. required: - challenge_id - message_type @@ -34673,7 +31116,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34689,18 +31132,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: createUserdata_BadRequest_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -34732,7 +31175,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -34918,7 +31361,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34934,7 +31377,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -34945,7 +31388,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -34961,7 +31404,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34984,12 +31427,12 @@ definitions: example: true description: getUserdata_InternalServerError_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -35020,14 +31463,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: getUserdata_NotFound_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -35142,19 +31585,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: updateUserdata_BadRequest_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -35169,7 +31612,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -35370,121 +31813,103 @@ definitions: properties: is_reconstruction_required: type: boolean - example: false + example: true is_verified: type: boolean - example: true + example: false message: type: string - example: Soluta ex. + example: Excepturi autem iusto rerum. missing_keys: type: array items: type: string - example: Quo eius. + example: Sunt quia vitae officiis dolor. example: - - Iusto illo autem. - - Ea quae ut. - - Sed et est. + - Eos dolore fugiat asperiores exercitationem sit. + - Aut eius. reconstructed_file_hash: type: string example: - - 83 - - 105 - - 109 - - 105 + - 86 + - 101 - 108 + - 32 + - 101 + - 120 + - 32 - 105 + - 116 + - 97 - 113 - 117 - 101 - 32 - - 110 + - 99 - 117 - - 108 - - 108 - - 97 - - 32 - 112 - - 97 - - 114 - 105 + - 100 + - 105 + - 116 - 97 - 116 - - 117 - - 114 + - 101 - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 105 - - 98 - - 117 - 115 - - 32 - - 110 - - 105 - - 104 - - 105 - - 108 - - 32 - - 113 - - 117 - - 105 - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 - 46 format: byte ticket_type: type: string - example: Est eveniet. + example: Et quia unde. tx_id: type: string - example: Aspernatur molestiae natus culpa voluptatem. + example: Ducimus velit nulla hic provident. example: - is_reconstruction_required: true - is_verified: true - message: Dolore fugiat asperiores. + is_reconstruction_required: false + is_verified: false + message: Maiores qui eligendi ab ipsum alias. missing_keys: - - Quia aut et. - - Perspiciatis debitis consequatur. - - Ducimus velit nulla hic provident. - - Et quia unde. + - Et laudantium. + - Accusantium laudantium non hic beatae iure. + - Nihil explicabo aperiam non. + - Sequi sed aspernatur et sequi. reconstructed_file_hash: - - 83 - - 117 - - 110 - - 116 - - 32 - - 113 - - 117 - - 105 + - 73 + - 112 + - 115 - 97 - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 101 + - 115 + - 32 - 118 + - 101 + - 114 - 105 - 116 - 97 - - 101 - - 32 - - 111 - - 102 - - 102 - - 105 - - 99 - - 105 + - 116 - 105 - 115 - 32 - - 100 - - 111 - - 108 - - 111 - - 114 + - 101 + - 116 - 46 - ticket_type: Omnis qui dolore aut assumenda quam. - tx_id: Aut ipsa dolores laborum. + ticket_type: Debitis esse sed. + tx_id: Veritatis doloribus. securityDefinitions: api_key_header_Authorization: type: apiKey diff --git a/walletnode/api/gen/http/openapi3.json b/walletnode/api/gen/http/openapi3.json index fd44ba534..6fd5047d1 100644 --- a/walletnode/api/gen/http/openapi3.json +++ b/walletnode/api/gen/http/openapi3.json @@ -1 +1 @@ -{"openapi":"3.0.3","info":{"title":"WalletNode REST API","version":"1.0"},"servers":[{"url":"http://localhost:8080"}],"paths":{"/collection/register":{"post":{"tags":["collection"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"collection#registerCollection","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterCollectionRequestBody"},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","collection_item_copy_count":10,"collection_name":"galaxies","green":false,"item_type":"sense","list_of_pastelids_of_authorized_contributors":["apple","banana","orange"],"max_collection_entries":5000,"max_permitted_open_nsfw_score":0.5,"minimum_similarity_score_to_first_entry_in_collection":0.5,"no_of_days_to_finalize_collection":5,"royalty":2.32,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"}}}},"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterCollectionResponse"},"example":{"task_id":"VK7mpAqZ"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/collection/{taskId}/history":{"get":{"tags":["collection"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"collection#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TaskHistory"},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/collection/{taskId}/state":{"get":{"tags":["collection"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"collection#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskState"},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/healthcheck_challenge/detailed_logs":{"get":{"tags":["HealthCheckChallenge"],"summary":"Fetches health-check-challenge reports","description":"Fetches health-check-challenge reports","operationId":"HealthCheckChallenge#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch health-check-challenge reports for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch health-check-challenge reports for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."},{"name":"challenge_id","in":"query","description":"ChallengeID of the health check challenge to fetch their logs","allowEmptyValue":true,"schema":{"type":"string","description":"ChallengeID of the health check challenge to fetch their logs","example":"jXYJ"},"example":"jXYJ"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/HcDetailedLogsMessage"},"example":[{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Quo saepe consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."},{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Quo saepe consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."},{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Quo saepe consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."},{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Quo saepe consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."}]},"example":[{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Quo saepe consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."},{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Quo saepe consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."}]}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/healthcheck_challenge/summary_stats":{"get":{"tags":["HealthCheckChallenge"],"summary":"Fetches summary stats","description":"Fetches summary stats data over a specified time range","operationId":"HealthCheckChallenge#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"Start time for the metrics data range","example":"2023-01-01T00:00:00Z","format":"date-time"},"example":"2023-01-01T00:00:00Z"},{"name":"to","in":"query","description":"End time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"End time for the metrics data range","example":"2023-01-02T00:00:00Z","format":"date-time"},"example":"2023-01-02T00:00:00Z"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch metrics for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HcSummaryStatsResult"},"example":{"hc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":17085067897739032,"no_of_invalid_signatures_observed_by_observers":1070531802164886396,"no_of_slow_responses_observed_by_observers":2452954398688763778,"total_challenges_evaluated_by_challenger":1497037936453433297,"total_challenges_issued":5146044089880070113,"total_challenges_processed_by_recipient":5356106859537814149,"total_challenges_verified":5844922895958038468}}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts":{"get":{"tags":["nft"],"summary":"Returns the detail of NFT","description":"Gets the NFT detail","operationId":"nft#nftGet","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NftDetail"},"example":{"alt_rare_on_internet_dict_json_b64":"Voluptatem sit.","copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","drawing_nsfw_score":1,"earliest_date_of_results":"Rerum ea expedita voluptas et molestias animi.","green_address":false,"hentai_nsfw_score":1,"is_likely_dupe":false,"is_rare_on_internet":false,"keywords":"Renaissance, sfumato, portrait","min_num_exact_matches_on_page":2602995302,"neutral_nsfw_score":1,"nsfw_score":1,"porn_nsfw_score":1,"preview_thumbnail":"UmVwZWxsYXQgZnVnYSBleCBkb2xvcmlidXMgZG9sb3JlbXF1ZSBuZWNlc3NpdGF0aWJ1cyBub24u","rare_on_internet_graph_json_b64":"Sequi laboriosam sequi vel qui nostrum.","rare_on_internet_summary_table_json_b64":"Sint dolorum cumque illum consectetur unde aut.","rareness_score":1,"royalty":0.5854540372699677,"series_name":"Famous artist","sexy_nsfw_score":1,"storage_fee":100,"thumbnail_1":"T2NjYWVjYXRpIGF1dC4=","thumbnail_2":"QWxpcXVpZCBub2JpcyBjb25zZWN0ZXR1ciB2b2x1cHRhdGVtIGVvcyBpc3RlIHF1YXNpLg==","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","version":1,"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/download":{"get":{"tags":["nft"],"summary":"Downloads NFT","description":"Download registered NFT.","operationId":"nft#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FileDownloadResult"},"example":{"file_id":"Quidem voluptas neque occaecati magnam."}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/get_dd_result_file":{"get":{"tags":["nft"],"summary":"Duplication detection output file","description":"Duplication detection output file","operationId":"nft#ddServiceOutputFile","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DDFPResultFile"},"example":{"file":"Aut repellendus adipisci pariatur accusamus commodi voluptatibus."}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/get_dd_results":{"get":{"tags":["nft"],"summary":"Duplication detection output file details","description":"Duplication detection output file details","operationId":"nft#ddServiceOutputFileDetail","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DDServiceOutputFileResult"},"example":{"alternative_nsfw_scores":{"drawings":0.053542916,"hentai":0.17044726,"neutral":0.01989352,"porn":0.7542108,"sexy":0.24790263},"candidate_image_thumbnail_webp_as_base64_string":"Itaque illo.","child_probability":0.20116164,"collection_name_string":"Possimus accusamus a qui maiores et aut.","cp_probability":0.90626305,"creator_name":"Voluptatem tempora adipisci modi.","creator_website":"Et qui autem et.","creator_written_statement":"Ab et.","does_not_impact_the_following_collection_strings":"Ipsum nisi officia sit eligendi soluta dolorem.","dupe_detection_system_version":"Sit occaecati rerum ab et.","file_type":"Amet ut explicabo modi aut accusantium non.","group_rareness_score":0.63844717,"hash_of_candidate_image_file":"Ipsam labore minima aut harum.","image_file_path":"Qui deserunt debitis repellat veniam pariatur.","image_fingerprint_of_candidate_image_file":[0.48178958212538464,0.8931785495175332,0.8825172062566221],"internet_rareness":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Magnam pariatur aut facilis.","earliest_available_date_of_internet_results":"Sed repudiandae voluptas dolor aut velit voluptatem.","min_number_of_exact_matches_in_page":1704813535,"rare_on_internet_graph_json_compressed_b64":"Aliquid provident eveniet.","rare_on_internet_summary_table_as_json_compressed_b64":"Quisquam corporis qui nobis dignissimos."},"is_likely_dupe":false,"is_pastel_openapi_request":true,"is_rare_on_internet":false,"max_permitted_open_nsfw_score":0.5505988774455792,"nft_creation_video_youtube_url":"Suscipit voluptas quod placeat ut atque.","nft_keyword_set":"Adipisci et ut distinctio ipsum.","nft_series_name":"Quisquam nulla et accusantium.","nft_title":"In laboriosam expedita.","open_api_group_id_string":"Necessitatibus nulla dolorem.","open_nsfw_score":0.21658306,"original_file_size_in_bytes":1512147843409722071,"overall_rareness_score":0.5565024,"pastel_block_hash_when_request_submitted":"Eaque quis quo dolores at assumenda.","pastel_block_height_when_request_submitted":"A dolorem reiciendis atque.","pastel_id_of_registering_supernode_1":"Distinctio nihil consequuntur sed et.","pastel_id_of_registering_supernode_2":"Laudantium rerum expedita minus voluptatem aspernatur et.","pastel_id_of_registering_supernode_3":"Eligendi omnis excepturi adipisci.","pastel_id_of_submitter":"Reiciendis eum et placeat et deserunt doloremque.","pct_of_top_10_most_similar_with_dupe_prob_above_25pct":0.4710798,"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":0.91616607,"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":0.63995916,"preview_hash":"VXQgcmVydW0u","rareness_scores_table_json_compressed_b64":"Quos quis repellat provident architecto voluptatem sed.","similarity_score_to_first_entry_in_collection":0.15764219,"thumbnail1_hash":"SXBzYSBzaW50Lg==","thumbnail2_hash":"UXVpIHZvbHVwdGF0ZSBleGNlcHR1cmku","total_copies":3163669590710846450,"utc_timestamp_when_request_submitted":"Accusantium optio beatae molestiae est voluptatem est."}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/register":{"get":{"tags":["nft"],"summary":"Returns list of tasks","description":"List of all tasks.","operationId":"nft#registerTasks","responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskResponseTinyCollection"},"example":[{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"}]}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}},"post":{"tags":["nft"],"summary":"Registers a new NFT","description":"Runs a new registration process for the new NFT.","operationId":"nft#register","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterRequestBody"},"example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"image_id":"VK7mpAqZ","issued_copies":1,"keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Illum inventore in minus.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterResult"},"example":{"task_id":"n6Qn6TFM"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/register/upload":{"post":{"tags":["nft"],"summary":"Uploads an image","description":"Upload the image that is used when registering a new NFT.","operationId":"nft#uploadImage","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/UploadImageRequestBody"},"example":{"file":"RXZlbmlldCBxdWlhLg=="}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ImageRes"},"example":{"estimated_fee":100,"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nfts/register/{taskId}":{"get":{"tags":["nft"],"summary":"Find task by ID","description":"Returns a single task.","operationId":"nft#registerTask","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterTaskResponseBody"},"example":{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nfts/register/{taskId}/state":{"get":{"tags":["nft"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"nft#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskState"},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nfts/search":{"get":{"tags":["nft"],"summary":"Streams the search result for NFT","description":"Streams the search result for NFT","operationId":"nft#nftSearch","parameters":[{"name":"artist","in":"query","description":"Artist PastelID or special value; mine","allowEmptyValue":true,"schema":{"type":"string","description":"Artist PastelID or special value; mine","example":"ui1","maxLength":256},"example":"vbf"},{"name":"limit","in":"query","description":"Number of results to be return","allowEmptyValue":true,"schema":{"type":"integer","description":"Number of results to be return","default":10,"example":10,"format":"int64","minimum":10,"maximum":200},"example":10},{"name":"query","in":"query","description":"Query is search query entered by user","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Query is search query entered by user","example":"Explicabo molestiae dolorem."},"example":"Doloribus consequatur et quis perspiciatis dolores fuga."},{"name":"creator_name","in":"query","description":"Name of the nft creator","allowEmptyValue":true,"schema":{"type":"boolean","description":"Name of the nft creator","default":true,"example":false},"example":false},{"name":"art_title","in":"query","description":"Title of NFT","allowEmptyValue":true,"schema":{"type":"boolean","description":"Title of NFT","default":true,"example":true},"example":true},{"name":"series","in":"query","description":"NFT series name","allowEmptyValue":true,"schema":{"type":"boolean","description":"NFT series name","default":true,"example":true},"example":false},{"name":"descr","in":"query","description":"Artist written statement","allowEmptyValue":true,"schema":{"type":"boolean","description":"Artist written statement","default":true,"example":true},"example":false},{"name":"keyword","in":"query","description":"Keyword that Artist assigns to NFT","allowEmptyValue":true,"schema":{"type":"boolean","description":"Keyword that Artist assigns to NFT","default":true,"example":true},"example":false},{"name":"min_copies","in":"query","description":"Minimum number of created copies","allowEmptyValue":true,"schema":{"type":"integer","description":"Minimum number of created copies","example":1,"format":"int64","minimum":1,"maximum":1000},"example":1},{"name":"max_copies","in":"query","description":"Maximum number of created copies","allowEmptyValue":true,"schema":{"type":"integer","description":"Maximum number of created copies","example":1000,"format":"int64","minimum":1,"maximum":1000},"example":1000},{"name":"min_block","in":"query","description":"Minimum blocknum","allowEmptyValue":true,"schema":{"type":"integer","description":"Minimum blocknum","default":1,"example":5341561797300454089,"format":"int64","minimum":1},"example":8542183544070202228},{"name":"max_block","in":"query","description":"Maximum blocknum","allowEmptyValue":true,"schema":{"type":"integer","description":"Maximum blocknum","example":7855127562217034627,"format":"int64","minimum":1},"example":4230828594225439328},{"name":"is_likely_dupe","in":"query","description":"Is this image likely a duplicate of another known image","allowEmptyValue":true,"schema":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"example":false},{"name":"min_rareness_score","in":"query","description":"Minimum pastel rareness score","allowEmptyValue":true,"schema":{"type":"number","description":"Minimum pastel rareness score","example":1,"format":"double","minimum":0,"maximum":1},"example":1},{"name":"max_rareness_score","in":"query","description":"Maximum pastel rareness score","allowEmptyValue":true,"schema":{"type":"number","description":"Maximum pastel rareness score","example":1,"format":"double","minimum":0,"maximum":1},"example":1},{"name":"min_nsfw_score","in":"query","description":"Minimum nsfw score","allowEmptyValue":true,"schema":{"type":"number","description":"Minimum nsfw score","example":1,"format":"double","minimum":0,"maximum":1},"example":1},{"name":"max_nsfw_score","in":"query","description":"Maximum nsfw score","allowEmptyValue":true,"schema":{"type":"number","description":"Maximum nsfw score","example":1,"format":"double","minimum":0,"maximum":1},"example":1},{"name":"user_pastelid","in":"header","description":"User's PastelID","allowEmptyValue":true,"schema":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"},{"name":"user_passphrase","in":"header","description":"Passphrase of the User PastelID","allowEmptyValue":true,"schema":{"type":"string","description":"Passphrase of the User PastelID","example":"qwerasdf1234"},"example":"qwerasdf1234"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NftSearchResult"},"example":{"match_index":1040234626420727314,"matches":[{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."}],"nft":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"UmF0aW9uZSBlc3QgZmFjaWxpcy4=","thumbnail_2":"TnVsbGEgbGFib3J1bSBxdW9zIHZlbC4=","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nfts/{taskId}/history":{"get":{"tags":["nft"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"nft#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TaskHistory"},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nodes/challenges_score":{"get":{"tags":["Score"],"summary":"Fetches aggregated challenges score for sc and hc","description":"Fetches aggregated challenges score for SC and HC","operationId":"Score#getAggregatedChallengesScores","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch metrics for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ChallengesScores"},"example":[{"health_check_challenge_score":0.04110607293809476,"ip_address":"Officiis ratione velit.","node_id":"Suscipit a laudantium consequatur necessitatibus.","storage_challenge_score":0.8964053134221979},{"health_check_challenge_score":0.04110607293809476,"ip_address":"Officiis ratione velit.","node_id":"Suscipit a laudantium consequatur necessitatibus.","storage_challenge_score":0.8964053134221979},{"health_check_challenge_score":0.04110607293809476,"ip_address":"Officiis ratione velit.","node_id":"Suscipit a laudantium consequatur necessitatibus.","storage_challenge_score":0.8964053134221979}]},"example":[{"health_check_challenge_score":0.04110607293809476,"ip_address":"Officiis ratione velit.","node_id":"Suscipit a laudantium consequatur necessitatibus.","storage_challenge_score":0.8964053134221979},{"health_check_challenge_score":0.04110607293809476,"ip_address":"Officiis ratione velit.","node_id":"Suscipit a laudantium consequatur necessitatibus.","storage_challenge_score":0.8964053134221979},{"health_check_challenge_score":0.04110607293809476,"ip_address":"Officiis ratione velit.","node_id":"Suscipit a laudantium consequatur necessitatibus.","storage_challenge_score":0.8964053134221979},{"health_check_challenge_score":0.04110607293809476,"ip_address":"Officiis ratione velit.","node_id":"Suscipit a laudantium consequatur necessitatibus.","storage_challenge_score":0.8964053134221979}]}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/download":{"get":{"tags":["cascade"],"summary":"Downloads cascade artifact","description":"Download cascade Artifact.","operationId":"cascade#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FileDownloadResult"},"example":{"file_id":"Accusamus blanditiis corporis ipsam cumque earum."}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/registration_details/{base_file_id}":{"get":{"tags":["cascade"],"summary":"Get the file registration details","description":"Get the file registration details","operationId":"cascade#registrationDetails","parameters":[{"name":"base_file_id","in":"path","description":"Base file ID","required":true,"schema":{"type":"string","description":"Base file ID","example":"VK7mpAqZ","maxLength":8},"example":"VK7mpAqZ"}],"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Registration"},"example":{"files":[{"activation_attempts":[{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true}],"activation_txid":"Sequi qui eum et dolorum esse.","base_file_id":"Rerum iusto accusamus.","burn_txn_id":"Delectus dignissimos id dolorem et totam deserunt.","cascade_metadata_ticket_id":"Numquam voluptas.","done_block":4949105958821157300,"file_id":"Perspiciatis accusantium sed eveniet qui qui.","file_index":"Cumque est et fugiat qui.","hash_of_original_big_file":"Accusamus repellat commodi architecto aut quidem inventore.","is_concluded":false,"name_of_original_big_file_with_ext":"Perferendis unde qui qui dicta.","reg_txid":"Quasi est.","registration_attempts":[{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"}],"req_amount":0.11360537957590923,"req_burn_txn_amount":0.2916254651446542,"size_of_original_big_file":0.5209096568475247,"start_block":918621255,"task_id":"Sit tenetur labore illum numquam quia.","upload_timestamp":"1973-10-04T06:27:17Z","uuid_key":"Voluptatem aliquam molestias."},{"activation_attempts":[{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true}],"activation_txid":"Sequi qui eum et dolorum esse.","base_file_id":"Rerum iusto accusamus.","burn_txn_id":"Delectus dignissimos id dolorem et totam deserunt.","cascade_metadata_ticket_id":"Numquam voluptas.","done_block":4949105958821157300,"file_id":"Perspiciatis accusantium sed eveniet qui qui.","file_index":"Cumque est et fugiat qui.","hash_of_original_big_file":"Accusamus repellat commodi architecto aut quidem inventore.","is_concluded":false,"name_of_original_big_file_with_ext":"Perferendis unde qui qui dicta.","reg_txid":"Quasi est.","registration_attempts":[{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"}],"req_amount":0.11360537957590923,"req_burn_txn_amount":0.2916254651446542,"size_of_original_big_file":0.5209096568475247,"start_block":918621255,"task_id":"Sit tenetur labore illum numquam quia.","upload_timestamp":"1973-10-04T06:27:17Z","uuid_key":"Voluptatem aliquam molestias."},{"activation_attempts":[{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true}],"activation_txid":"Sequi qui eum et dolorum esse.","base_file_id":"Rerum iusto accusamus.","burn_txn_id":"Delectus dignissimos id dolorem et totam deserunt.","cascade_metadata_ticket_id":"Numquam voluptas.","done_block":4949105958821157300,"file_id":"Perspiciatis accusantium sed eveniet qui qui.","file_index":"Cumque est et fugiat qui.","hash_of_original_big_file":"Accusamus repellat commodi architecto aut quidem inventore.","is_concluded":false,"name_of_original_big_file_with_ext":"Perferendis unde qui qui dicta.","reg_txid":"Quasi est.","registration_attempts":[{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"}],"req_amount":0.11360537957590923,"req_burn_txn_amount":0.2916254651446542,"size_of_original_big_file":0.5209096568475247,"start_block":918621255,"task_id":"Sit tenetur labore illum numquam quia.","upload_timestamp":"1973-10-04T06:27:17Z","uuid_key":"Voluptatem aliquam molestias."}]}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/cascade/restore/{base_file_id}":{"post":{"tags":["cascade"],"summary":"Restore the file details for registration, activation and multi-volume pastel","description":"Restore the files cascade registration","operationId":"cascade#restore","parameters":[{"name":"base_file_id","in":"path","description":"Base file ID","required":true,"schema":{"type":"string","description":"Base file ID","example":"VK7mpAqZ","maxLength":8},"example":"VK7mpAqZ"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RestoreRequestBody"},"example":{"app_pastelId":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RestoreFile"},"example":{"activated_volumes":289633137219330910,"registered_volumes":6759088182095679156,"total_volumes":4401292699067561257,"volumes_activated_in_recovery_flow":8981725034405051899,"volumes_registration_in_progress":2570108940638669276,"volumes_with_pending_registration":2278213866228243539}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/start/{file_id}":{"post":{"tags":["cascade"],"summary":"Starts processing the image","description":"Start processing the image","operationId":"cascade#startProcessing","parameters":[{"name":"file_id","in":"path","description":"Uploaded asset file ID","required":true,"schema":{"type":"string","description":"Uploaded asset file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"example":"VK7mpAqZ"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StartProcessingRequestBody"},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","burn_txids":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"],"make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StartProcessingResult"},"example":{"task_id":"VK7mpAqZ"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/start/{taskId}/state":{"get":{"tags":["cascade"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"cascade#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskState"},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/cascade/upload":{"post":{"tags":["cascade"],"summary":"Uploads Action Data","description":"Upload the asset file","operationId":"cascade#uploadAsset","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/UploadAssetRequestBody"},"example":{"file":"TmFtIGEu"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Asset"},"example":{"expires_in":"2006-01-02T15:04:05Z07:00","file_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/cascade/v2/upload":{"post":{"tags":["cascade"],"summary":"Uploads Cascade File","description":"Upload the asset file - This endpoint is for the new version of the upload endpoint that supports larger files as well.","operationId":"cascade#uploadAssetV2","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/UploadAssetRequestBody"},"example":{"file":"QSBldmVuaWV0IG51bXF1YW0gdmVsLg=="}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AssetV2"},"example":{"file_id":"VK7mpAqZ","required_preburn_transaction_amounts":[0.008549268204480678,0.6563940678112433,0.5042167703792875,0.7980625121312597],"total_estimated_fee":100}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/cascade/{taskId}/history":{"get":{"tags":["cascade"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"cascade#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TaskHistory"},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/sense/download":{"get":{"tags":["sense"],"summary":"Download sense result; duplication detection results file.","description":"Download sense result; duplication detection results file.","operationId":"sense#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DownloadResult"},"example":{"file":"U2FwaWVudGUgYXJjaGl0ZWN0byBvZmZpY2lhIGR1Y2ltdXMgdmVybyBleHBsaWNhYm8u"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/sense/start/{image_id}":{"post":{"tags":["sense"],"summary":"Starts processing the image","description":"Start processing the image","operationId":"sense#startProcessing","parameters":[{"name":"image_id","in":"path","description":"Uploaded image ID","required":true,"schema":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"example":"VK7mpAqZ"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StartProcessingRequestBody2"},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","open_api_group_id":"Earum quam et.","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StartProcessingResult"},"example":{"task_id":"VK7mpAqZ"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/sense/start/{taskId}/state":{"get":{"tags":["sense"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"sense#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskState"},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/sense/upload":{"post":{"tags":["sense"],"summary":"Uploads Action Data","description":"Upload the image","operationId":"sense#uploadImage","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/UploadImageRequestBody"},"example":{"file":"TmFtIHF1byBuZXF1ZSBjdW1xdWUu"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Image"},"example":{"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/sense/{taskId}/history":{"get":{"tags":["sense"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"sense#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TaskHistory"},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/self_healing/detailed_logs":{"get":{"tags":["metrics"],"summary":"Fetches self-healing reports","description":"Fetches self-healing reports","operationId":"metrics#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch self-healing reports for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch self-healing reports for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."},{"name":"event_id","in":"query","description":"Specific event ID to fetch reports for","allowEmptyValue":true,"schema":{"type":"string","description":"Specific event ID to fetch reports for","example":"event-123"},"example":"event-123"},{"name":"count","in":"query","description":"Number of reports to fetch","allowEmptyValue":true,"schema":{"type":"integer","description":"Number of reports to fetch","example":10,"format":"int64"},"example":10}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SelfHealingReports"},"example":{"reports":[{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}]}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/self_healing/summary_stats":{"get":{"tags":["metrics"],"summary":"Fetches metrics data","description":"Fetches metrics data over a specified time range","operationId":"metrics#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"Start time for the metrics data range","example":"2023-01-01T00:00:00Z","format":"date-time"},"example":"2023-01-01T00:00:00Z"},{"name":"to","in":"query","description":"End time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"End time for the metrics data range","example":"2023-01-02T00:00:00Z","format":"date-time"},"example":"2023-01-02T00:00:00Z"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch metrics for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MetricsResult"},"example":{"self_healing_execution_events_stats":{"total_file_healing_failed":5551622164662787660,"total_files_healed":8671724886982383594,"total_reconstruction_not_required_evaluations_approved":3509617877318915873,"total_reconstruction_required_evaluations_approved":2598935111695686044,"total_reconstruction_required_evaluations_not_approved":645871039112296182,"total_reconstruction_required_hash_mismatch":6198218032159021896,"total_reconstructions_not_required_evaluations_not_approved":6224481363842689139,"total_self_healing_events_accepted":5676342644268881237,"total_self_healing_events_acknowledged":305624170386109632,"total_self_healing_events_evaluations_unverified":1687102203985295374,"total_self_healing_events_evaluations_verified":7201039114224972892,"total_self_healing_events_issued":7624509276581647432,"total_self_healing_events_rejected":8106553798825109777},"self_healing_trigger_events_stats":[{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."}]}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/storage_challenges/detailed_logs":{"get":{"tags":["StorageChallenge"],"summary":"Fetches storage-challenge reports","description":"Fetches storage-challenge reports","operationId":"StorageChallenge#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch storage-challenge reports for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch storage-challenge reports for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."},{"name":"challenge_id","in":"query","description":"ChallengeID of the storage challenge to fetch their logs","allowEmptyValue":true,"schema":{"type":"string","description":"ChallengeID of the storage challenge to fetch their logs","example":"jXYJ"},"example":"jXYJ"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/StorageMessage"},"example":[{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."},{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."}]},"example":[{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."},{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."},{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."}]}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/storage_challenges/summary_stats":{"get":{"tags":["StorageChallenge"],"summary":"Fetches summary stats","description":"Fetches summary stats data over a specified time range","operationId":"StorageChallenge#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"Start time for the metrics data range","example":"2023-01-01T00:00:00Z","format":"date-time"},"example":"2023-01-01T00:00:00Z"},{"name":"to","in":"query","description":"End time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"End time for the metrics data range","example":"2023-01-02T00:00:00Z","format":"date-time"},"example":"2023-01-02T00:00:00Z"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch metrics for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SummaryStatsResult"},"example":{"sc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":2982554539974798863,"no_of_invalid_signatures_observed_by_observers":804645458629257575,"no_of_slow_responses_observed_by_observers":6016941875889227877,"total_challenges_evaluated_by_challenger":9084935928395605172,"total_challenges_issued":554226313255902356,"total_challenges_processed_by_recipient":9153767776266110855,"total_challenges_verified":6924812056467069635}}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/userdatas/create":{"post":{"tags":["userdatas"],"summary":"Create new user data","description":"Create new user data","operationId":"userdatas#createUserdata","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/CreateUserdataRequestBody"},"example":{"avatar_image":{"content":"iVBORw0KGgoAAAANSUhEUgAAASoAAACpCAMAAACrt4DfAAABUFBMVEVPk//////m5ubl5eUkJUYwbP/k5OT60J360J7y8vLt7e34+Pj19fXw8PD5+fnr6+v61an60qMgFi9IkP9Qlf88i/9RmP9Djv//0pkuaf82iP/w7OQACj//1aH/1JUhZf83dP91pfoAADwQGEKgu/MbHkPhxLALXv/z7uOOtPyCq/jw9P4hHz3gwJ04eP8aYv/F0e2VtfX//PSvyf+/0/xEetVKiOwkGC3W3Ore6P0rQ3xpnvsGEkAuLEjgupALFUG3yfAAACe+t8qnr9nHvMZBPFFeU1x7oO/RvbqYquHbx71kjP0+gP/74sSKpv6StPbX5P+zxvBgjeJAXJo/RWlBW5VBYKY1RHNAcMQsJDgdFDNDV4opMFdRdLvZ3egnNWM1LDyGens7asO8oIjBqpZWTVo6OVRnYm54Z2eehnanjnvJqYqdgWiykW7sz62jrtzuoXzIAAAXaElEQVR4nOVd+18TSbbPg9CdEEK3nRdpQkSCBKIGAioIIqujzojy0Luu7syyO1dxVr139v//7dapU/1Kujt9qjshfu4ZHQ8JkJNvzvn2t05VV6XSYLMZZj7eAjilbCaTLYA35/XmwSuClwcvD17R682DNwdeAbwSeAvsF886Hn8xs9PJbJ3vtM+2Dw5SYNWDlY2z7Yutc/g1mesJKmN7WXBT1w0VvNj5zka10ajVaoZhpGxjXxi1WqNxsNHeynbM/+dQmZ3Zi41Uo1JzITRsDLFGamO3K2KeZqhmk4pKxGJ7x9upRjhKLrwYXNtbpjn2oEZDlc34eANRueKbHRXVrB3VrE9UmX56dzMyTA5clc1j0xxXUC4PobK9LIScmgVDbJhlfDyBFzMRkOUVwct7vTx4GBB4GBB4GIbl7W82KkScHLS2zMxYgkIPUfKggl4KUitrpZFf7flyw8Bn5/cpDjCC4/VLO9WGFE4CrUp5Z9ZMOKjA2nO8iUNlzm5UavI4WWiddacGKhdN+dEoOSqR9ebeSpyEcoHV2NxPKig/mgqCCgHK2l7GziXwCl5vDjyMCry818uDh1HZXgE8HtXegRxDBYFlJhEU9xyd51F8iAWmkrgCMsvanh+j+9EohuZDno5XcNGoebmZTEY5YG104wYVxugD3D4xCTqfaSeXUQ5YbV4NUyNBE4FqKxWbzP2sYjDpcG1QJSNBsx61112pjAMosMbKrCkX1EgJ6geVzeMkRh+g0XwQjc6ld6m6nGJG7diUCSpN4/bJqPXxpRRaZWXeHJdaz05SrZ8bY0wpNAMY68dX6+0xpxRapd3JTBQqX0YfVOsOec6Oiorl9biLz7Laihk1qAFG91XrPl5qASxdYmZ5ae4VvN4cePPgFb1eHry81ytaXqFbHnvxWWaUL6MFhd48eHPgFbxeCTyOBYCSdvAZr1o/H4uWCrLalvnDqvXdCRWfZZUL8wdV6zuNySLFyX0CUEk3jGfdUc06UfUnc+kbwGqjHxbUiIZx2usNNoxLNqPbXgGcOa83D17R6+W9Xt7jdbavASnGV2f9kKAWiuDNe7058Aper+T1OD6pbDZrcRfzMj6eSC3miYSyvCJ4ea+XBw8+u+vIKbDKhjkbGBRT68wTjM48wegeDxPK9rK2Ny4Jel1Isbxqd34otT55Rnes0jYDuT0WVNmslWAs07J22SGjOx4UYNYuQIvRmTeY6/Dr+rvXiBTD6rjvE5SAyi7ArFV2jrdgY5Hx8VIFMM7eQR7yuNfLe728x5s/v1akGFZb/aGgCkWvNx/kIbd7vZJLrTPksrbnx+h+3G6n1gB5dmNo9DK32FhdZoYY3fEKQdyOaeTjQflkxyFBJd9puVytlt/ev3//rVEFc0HG3Crtd5k/hFpfkRkhl6vl++8ePbxh2X+9++uH+29TVbQH99//7cZfCR+BsWKOCypIMNsb4HaH0YO43ZPrO3SZwNLpw6MbN+7cmXHszp07HLOHH/k/7LnfKNlaa5uBBejH7Q6j+3E7FuAcGLKY5c2DUwzy8l4v7/WK+2RKL1cfvPu7ByZ/e/iAglVlr+gXXpA3H+Q5+ASJhRFqfSChXKklAdSjh6NxYnaDBFUqlZBad8RCwhKUSlTl1K/RgKJmFaOrzlSrdWKHqlz98DEiUDM0rkqBEh2+DF6nWvcWYImIVOrXG1GBYlDR9AKjdvYmgwswolp3FeA8WBEsyMsHeflBr79JKr/q/egpxS6J76lQGZt930CLoz0/LELFAlGtZ7ZIMr36DwJQDKoPZGlbOfcXC1HV+oBY8KEpWQmaIX3s1fcPKUjN3LlPzSr2GlOq1vttSlJV3xNoCrF6X6XmVWWnf41qPaQAx4sUE1bvyANpo5ANLcCI/RcsQOQzsNFePszrbxA4XQYpllf/TBGxMs76I4OPikCgWKCq9cwlIamqH2g8ZWP121uquOoGJZSfWg8XC0lJUJMgFMoPSNc+t328T8PK2AijqetR63vR1We5/E9pqMhYQVqNWa37cHtYAZoEpqq+k0eKYUUcCm6MLMCoaj2fjM1Tyk+OqIRRub02X0zmLUYUCyO5naCpqo/iJBVwO0mLGm0zilqPIBZ8aEpGgkYPvfxARid4sKKNBo3MNKn14lZ0Uq/+Gi+pmD0kUXvteKJqfUQB9qN39Mrl2EjNzDwmsdVBP0IB+gySBwuQM5aUPHd5+wSlQOsn+ButBCuX5DfkhwpFLGQDxcI2QSn8LQGoZj5SRoPGthmWUJFbe4lI0Ohxl1OxlIJld95R0qpqTo1aJ0xold/+PQmoaI32yt5k1HqE4TKh/sofkqi/mZkblJ4oVCBxcsuvACnN9IC2epEQdQJSgdudXykVWE6iwR5jIt5KLcpIObZUt+0jAalUo5tEa8+HpogS1Lwg9PTKv0kB89vq4CM3KDK0tjMdat08IHy+5X/JILV09PutgYfu/DdpYcx41Dp1KVqG0P4sp2QGgGsvms1Pq2teqEhkVUlicoszFi5uGenlBzxOlCXC+E8Sqlvfm2rzaMZThHcekaDaw5CBs8UiGB9vPsjjy2ESmIjfoVCVDFSr/24qqtJs/rHkfvQLRVlZnRj6stlE1Tpl8YsUVEu6oqmaomrf3IRFugQaK+Y0qHXKpysD1dInXQVTlOb3Q4ewbtCaoZmE1brMjSMlyjI9CagOofwAKI1hpb04lIOqchl/KZqzgK807EVY4Fg8pkwq06Fa/YNBxOqP/Z+DZasGGlS13WK0ZY0le1ljqeD1HLEQof/ix+1zbcpCIQuqtWBsBpC6UhRdZzBZmdX8vLYmAZWxU7Sn5GWXzfrQFEmC0tZUIVSH36Ni9eSKZRKHSIW/KvvTPHq8KgHVZv/a1XqfotUFVEtH+pehkYqfHf7RhOqDtNJ1BpbKXe2PNTpUK0lBlZW+cWSOtFDPgqqp/XtwpDJsa0tfNcglTlMq1CHgxf45WiJDlUoVbLUue+OIc7vNgn0TktcTt5V6vLzzGGn5pwUV4+dPj5+EI7V0ddQEflI5TfF04n9U5a4EVA37xqQF+9Yjl2ffeuTySl6Pi4XA/stotZ65JC3pF1DdBc7Rvy6FVOHq4TeVIaVzmtKBr4CpeCGqMlkFfZiYN7nFlKAZygjQnVXsjTfv/r76xJff1w6f/K4xOcVggT/su6H6FMCNgaXKZFXl3IemJqrWMyRZ5WSVpgPvNPVvV4eDaK2tLn359GfTqjegde7CNVDhPyaTVbXd2FDF3JQpQ+nrebKKZQcfBB99u5pZOlxdXQNbfbK09vzrURMEuq6IslPgAggXP07w7AuZrBJQxdmUybk53t4YpuD1nG0EfDYPSF/IZRXDCXKGp1ZTP/r29esVs9+/fjvSGU7wMNIUTykVqw9+hOMlk1VGuxBp84C0vWXA4MYwsbekOJPIqltHQDuWDGDvnsFjmaKjLuDPMqRQJ3CKUqG/AIDdvSUB1ZkZYw/jRCQoZbEsh4pR9pe7ql1bOpQaoMX+MFdTBI/zJxlIAA48q6Fk56Lh6Mva4RoVqs2gedOJqXXarVrl1F+efwO5xPUkVBXnaqwsnWeQuNJpHDVedirgpCCkOr8YNvXvV38hQrWSEFTymzIR72qr/E+zCc0nztT8cgZ5AoWHpcbJSYeU4uXJhjKK1uSjG/YE5KIOQ0Gmypr/26BCFXdTJmR0/ozllbye2LzR8ooZvtWX8EwaVJWndd6mUzGlVCEHPn/7rOEVUcMrnsbbnlCkOj4J+PArIBYns/pTkqKDSZs03+pLNPnAQ7y8HiLn9Tg+cTeQo0FVe7aM7xOFN6cfVf3z8dKTW1calBa/LqI2V5DFtatbT5Ye/2kPl8XPMFt+Rrn4IlQSG8glJkGJWaWLt4k6gb99RXsMGnT1CqWDhmSlcznBvryCwc/aY10M/3QcEvLfoVNe2tj0oamJqnWTIhaMX0T54SiY85XS/IwTMbe+K3jN45KKExbTE5+xAbH0vcl/AuC1oFLrv1BeeyM2VDHVOmW9eqr2kw2VoB2A6isOmg8/NcU1j6ePysuw+Ql76atfm6JtxeWWgOonQgUa2xyqOGrdhs5vq/WBLXr9NualqPXaK7t4NKv9pHmyCmkelQL3bous+twElFRU7dYveUWBqg05E3Vj3rTXywToqmC1Pjc7XIW7UlAhDyEw6nPgqicvQBJoiKLCaR8EffMF56ovWJk616d2Af5Mee2LjFtXSW/3HEOCUqAynjlcxUHi0lPRnt86vMWQAv2pogjVeIWCNV+wJ5+r4hIAT2s2VM8oxX+cSUaCykN1TlE3Ly2twMFioxVsHzTvfjqyJvtQaumqBYvS/P7pSBNTERbfC7XwkvDSsMgxKbXux+0R1HqX0gWtvHIUqH3JF61gHXSUqgrJrirOo7qATigqm+9uUz6lymU2rlp3xELWTqisO6Fcnp1Qzs7KmQJJMx8sW8IKqUrX3VNXDEINmzNcnuPAhj+sCsLHsSH+hmXSXFHDZvSsfYxG1mZ0J7WydkINeqN1VfjhLBnCLVspEILLdTdV8VaCjtqcAaciJPz/qqArHNRojqSykKJt6mDMDdeexOEscZZ3EO4ZAasdvFqu1xUES7PeOS891SYrDo8mtAOiid/IOzIsxer15dsHtHE63j1yrSthiDt2MNJ4+exnoap4AWoCD8QC4BAJxQEEbLCzhYmIifbzs5fEXbKMzfhQxVTrs8Ud8s56RuW2yBDB4ry0OK2Ljp+G3I4jZpVfCjmf8QTTGJ+TN14z2liAZLXu4BN7LegcbXcTbrXbOLvHe0/I7eKCyBNJE/qUVyV37YTC6dPb9Jes7BZjrwX1qT3aUYqX9A3jGFSiU2UNfjUFu1GYZoro7CE3qXb6icV7MlA1SiNWGGfHL0GLJjlsgEpc+q13L9a5WLxlt/ZQMIirpFgUI5VV5Wk4oJPYseJQ/dTEtS2g11W8Eipi3IK0jqWmKUJTqVitWLG0jgKasTIKqshZ5b9wIdK69QxpLRpCxcaCtvTmC82YpNKFbLB6d1xpiVUwSPiq4Lc6qf2JUO0ksG497hUwTxsFYuDQ4kPqRnmFXI7zEK7xtMonanTnIaR2UksPrbKVnYoDOum8frCMk6L2MiAcPlupZrVpgOlRdSo4PkQVTxvRcKtNya2TdLIy7OUanKd0HYfDFq2L+lOFXkAOs9csqBp9O9sDcxJQjT6gky5Caz/XVUWsLxONT8VWUlb9qaLeeLdUxXWO8Aipo4dmXCyM6YBOSmchT+zDYOi/LNsrgngvTySVKqa2rApEOaVZg2ZMxWUJqtqzCjBOZwHTSL5fxbjdpG+FXbNmslChoyjAgSBvtIhRjia6obiyQWjUJvnVUtX0lBz5YxLuXbageopyQTSkdNGEwpl3PjGKc6b2xRDQQ7EgU38wWzMNt05mSHfkCqvWsbR4m0os9cSmKCyowjVV4sKIgpR3XwBRUpsYrbE/JqhoMzZ83pRegZWf6oro0om1UxZWuHbB7ouq2HOAwQ2vwzplRktYOT0EVawDOiXnAcGTqMBUucl7VtaCKhspDWdNVftiKFY3qmIxkYSowtlS0gGdaa/H8UnmgM6uRHfhP8uiUafjYiBLJUD9ieY6fo2DZZxaVupPJRowzgzE9R/QSbt7RGB1u8knZXDZnuqatFLscSCOlnGJEU9CRaPXesg9I9exLSFtSTYaMDtPKly86JphdwwXIqP0AtyIcw/cKrvFMUAlfUBnRuLoDKZD+fWOj4ndzO5CSuMJx5dDwvPLEuWXSsU7oNOBKmjVXsHrBa3aW8A9eU3S/sXCoBfDpYEuBsNOE8ESDnhDBNKUyoY0Eid5GW3XWr1Yq/YwjWbjHtBZkvm4a0+XsTfMswpr0JVZYnKC94zh3/ormWNfalN3QCdtUbawyvGyIgQTHxErYmU67/ip/D+rpaWrckgZG+a0bSIuoRcAK5AMumKPihW76SluiMARDaTXMr1NzF9hL+FNxDPxD+iUSqtU7aUuLoRisYIqAMOlDFxe8Wby8n+kkDI2zawDlfTdEIDViHtsSqPusbE9ybRKGdVXy5g7AA3vSGkisZDMOVD1Pw/kzjyrXEof0Dl0j00iap2vCpUY3eC7+UWpKzpyN78/AldaQaNPx/XXdYU+8YBWO+MJZTP69at1XD4ke9ZdLfWUy08+foZxHoxlrFuP4LGnKelfPZ1H/vTpjWNuZeN1rvvGutLxLp9iDWrgrq03xVyDunu/hVS7nyBUMe9d9hzQST8ShEHQuLnYOmG/o8PrTxU3kCii26d32FMnrdw92h011m83x3JAp+Qd8a4DOulHwkNCLeZyLd4lEQ1PTVWsWXj4C89st3Ls214b5ANHtvwO6JS+I95KniQO6KQcesCBusdwYtbjN8sKbERrwRouwzPnPfiuxcV7NLDgXpHpPaCTspecBVQut961oRrqLMAz3XXxjTSwaqUpPqBz4Ti6uHptAcWgKoVDVVq3vzX3OjJWld30OKCS2RfU74DOTsSZ5jIj89wAVNowUozeB6FavFmLBpa4AdApwNg7DfntXxV6VOeIAzojvY/yPRdQVgEOt6sYVG94Afbc3734Otq22PnSyAM6IxzL6dq/KvauaANehImuci3nQUrQ+ptAqHY9ULHEipC6jf1pP6AzQpOv/NoLFBMLbfjRvh9UXEK2WwM/sDhSZVV2kj8jPmmosqNW8Q0jlVs8SfunlaLxJ06Gf2IEuwNRJQ5V/H1B0wPcHj6BWr459L5ZBXKySg9BVedJ1V0f/onFe+FYDQYlrdZdBYi7zRaL1s6yYV6ee/PDXt7jhZ0R74uUkOvpN/UBpDhTcbE+jNXNEKwq3dJgUC6vOOwVuDcf5LHrWLIHdNqfXfCSR3+kmKV9sBJIpf1/IgSrxp45HNRUHdBpM0I/SIkGItU6RVQ6ij2rrCgdfOzUL6nCarCx2/cJasrUuhVLx/8yOCCn3LZ+nhaJpdShrVdXREqlz32YSmDlz+0BF7/rVOvBBcgGzm2fvPK59rnyal9Ak+503rx507e+6gbkVCBWlXZQUD4FGLH/ggWYwNkQfl7/bBirSghSTJR20z62nwv7odzwi9S2+xHCkzobIkgsUE4c8f0Uz4ZqMOw9M6xa5+kh222FIpVbHPo4ts2woGKdOJK4BLW5fcOLVflmOFSMr05LXqBKp4E8ZdkAtVfa/dCgpkut21EN8FUYUQlrLW64qrC7kQvhKSutXrtfo7EzKqhxqHXSmVv+ud65cGM1GikAq/d6e2e/293f2X7dGw0UmBup3dFBDRdgZLWeyEluAV7fabaX70V630BZvd76eq83gqSc73eugpWtfuyQw05ys5Mn3gGdaf/r8mVZjJ1rEd853RbFx2Gkuma0oGTPB0Q3WQnq4obMSi0ap8sbDnAqKxholKCmSK27oTLbjbEmFUsrYMRGmxDUWNW6bAGyXO9sGcY4kwoEg2Gc04KSOiE3P3YrLqw0xphU0BNdySd0tnKYJXWad9h1mY2ee+MswNYOhkcKSuI07/FJUBcjmJcnvdHvWc56J125oKZIrXti6VxEkN4S1spdyAd1DQd0Rsn1fvo0+Sps9V5mzBhBDQ6XwwswSKgnL977l+VkwVrsHez3ExflgR65tUcWC04XLWPun6wnBtbi+slWAkFN9IBOkto7P1lPhLNavZMtM6mg0lOh1oej2j9txQWLDalP9zpJBhVbrctOboXTqDm7fTNOHbZ6N7e7QLdJBhX5gE6/VrK3mS7VYA/oW8/1+7sHkbssAwnV6x1smcXkg/J6fliMYSI+hDwdr2O2T9YjNu9cOK2f7JRYYYwpqGlQ637csNAxd09z61GTq9XqtQ6Oxx3UNKh1v6jgZfd3yrleqxUG2CJj8fXcaXuvY04gKLpaH7EULb4wtsnT7Mweb5zeW+/1ADIHs0UGEUul9fV7Bxu7XYh5gkGNOKDTx6MvcJRZS1gq9c1+J7u1tb15enoimvD3Tk5PN7cvzrv9ft+cn594UMOo/B/J2Q2X8T0dSAAAAABJRU5ErkJggg==","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"}}}},"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserdataProcessResult"},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/userdatas/update":{"post":{"tags":["userdatas"],"summary":"Update user data for an existing user","description":"Update user data for an existing user","operationId":"userdatas#updateUserdata","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/CreateUserdataRequestBody"},"example":{"avatar_image":{"content":"iVBORw0KGgoAAAANSUhEUgAAASoAAACpCAMAAACrt4DfAAABUFBMVEVPk//////m5ubl5eUkJUYwbP/k5OT60J360J7y8vLt7e34+Pj19fXw8PD5+fnr6+v61an60qMgFi9IkP9Qlf88i/9RmP9Djv//0pkuaf82iP/w7OQACj//1aH/1JUhZf83dP91pfoAADwQGEKgu/MbHkPhxLALXv/z7uOOtPyCq/jw9P4hHz3gwJ04eP8aYv/F0e2VtfX//PSvyf+/0/xEetVKiOwkGC3W3Ore6P0rQ3xpnvsGEkAuLEjgupALFUG3yfAAACe+t8qnr9nHvMZBPFFeU1x7oO/RvbqYquHbx71kjP0+gP/74sSKpv6StPbX5P+zxvBgjeJAXJo/RWlBW5VBYKY1RHNAcMQsJDgdFDNDV4opMFdRdLvZ3egnNWM1LDyGens7asO8oIjBqpZWTVo6OVRnYm54Z2eehnanjnvJqYqdgWiykW7sz62jrtzuoXzIAAAXaElEQVR4nOVd+18TSbbPg9CdEEK3nRdpQkSCBKIGAioIIqujzojy0Luu7syyO1dxVr139v//7dapU/1Kujt9qjshfu4ZHQ8JkJNvzvn2t05VV6XSYLMZZj7eAjilbCaTLYA35/XmwSuClwcvD17R682DNwdeAbwSeAvsF886Hn8xs9PJbJ3vtM+2Dw5SYNWDlY2z7Yutc/g1mesJKmN7WXBT1w0VvNj5zka10ajVaoZhpGxjXxi1WqNxsNHeynbM/+dQmZ3Zi41Uo1JzITRsDLFGamO3K2KeZqhmk4pKxGJ7x9upRjhKLrwYXNtbpjn2oEZDlc34eANRueKbHRXVrB3VrE9UmX56dzMyTA5clc1j0xxXUC4PobK9LIScmgVDbJhlfDyBFzMRkOUVwct7vTx4GBB4GBB4GIbl7W82KkScHLS2zMxYgkIPUfKggl4KUitrpZFf7flyw8Bn5/cpDjCC4/VLO9WGFE4CrUp5Z9ZMOKjA2nO8iUNlzm5UavI4WWiddacGKhdN+dEoOSqR9ebeSpyEcoHV2NxPKig/mgqCCgHK2l7GziXwCl5vDjyMCry818uDh1HZXgE8HtXegRxDBYFlJhEU9xyd51F8iAWmkrgCMsvanh+j+9EohuZDno5XcNGoebmZTEY5YG104wYVxugD3D4xCTqfaSeXUQ5YbV4NUyNBE4FqKxWbzP2sYjDpcG1QJSNBsx61112pjAMosMbKrCkX1EgJ6geVzeMkRh+g0XwQjc6ld6m6nGJG7diUCSpN4/bJqPXxpRRaZWXeHJdaz05SrZ8bY0wpNAMY68dX6+0xpxRapd3JTBQqX0YfVOsOec6Oiorl9biLz7Laihk1qAFG91XrPl5qASxdYmZ5ae4VvN4cePPgFb1eHry81ytaXqFbHnvxWWaUL6MFhd48eHPgFbxeCTyOBYCSdvAZr1o/H4uWCrLalvnDqvXdCRWfZZUL8wdV6zuNySLFyX0CUEk3jGfdUc06UfUnc+kbwGqjHxbUiIZx2usNNoxLNqPbXgGcOa83D17R6+W9Xt7jdbavASnGV2f9kKAWiuDNe7058Aper+T1OD6pbDZrcRfzMj6eSC3miYSyvCJ4ea+XBw8+u+vIKbDKhjkbGBRT68wTjM48wegeDxPK9rK2Ny4Jel1Isbxqd34otT55Rnes0jYDuT0WVNmslWAs07J22SGjOx4UYNYuQIvRmTeY6/Dr+rvXiBTD6rjvE5SAyi7ArFV2jrdgY5Hx8VIFMM7eQR7yuNfLe728x5s/v1akGFZb/aGgCkWvNx/kIbd7vZJLrTPksrbnx+h+3G6n1gB5dmNo9DK32FhdZoYY3fEKQdyOaeTjQflkxyFBJd9puVytlt/ev3//rVEFc0HG3Crtd5k/hFpfkRkhl6vl++8ePbxh2X+9++uH+29TVbQH99//7cZfCR+BsWKOCypIMNsb4HaH0YO43ZPrO3SZwNLpw6MbN+7cmXHszp07HLOHH/k/7LnfKNlaa5uBBejH7Q6j+3E7FuAcGLKY5c2DUwzy8l4v7/WK+2RKL1cfvPu7ByZ/e/iAglVlr+gXXpA3H+Q5+ASJhRFqfSChXKklAdSjh6NxYnaDBFUqlZBad8RCwhKUSlTl1K/RgKJmFaOrzlSrdWKHqlz98DEiUDM0rkqBEh2+DF6nWvcWYImIVOrXG1GBYlDR9AKjdvYmgwswolp3FeA8WBEsyMsHeflBr79JKr/q/egpxS6J76lQGZt930CLoz0/LELFAlGtZ7ZIMr36DwJQDKoPZGlbOfcXC1HV+oBY8KEpWQmaIX3s1fcPKUjN3LlPzSr2GlOq1vttSlJV3xNoCrF6X6XmVWWnf41qPaQAx4sUE1bvyANpo5ANLcCI/RcsQOQzsNFePszrbxA4XQYpllf/TBGxMs76I4OPikCgWKCq9cwlIamqH2g8ZWP121uquOoGJZSfWg8XC0lJUJMgFMoPSNc+t328T8PK2AijqetR63vR1We5/E9pqMhYQVqNWa37cHtYAZoEpqq+k0eKYUUcCm6MLMCoaj2fjM1Tyk+OqIRRub02X0zmLUYUCyO5naCpqo/iJBVwO0mLGm0zilqPIBZ8aEpGgkYPvfxARid4sKKNBo3MNKn14lZ0Uq/+Gi+pmD0kUXvteKJqfUQB9qN39Mrl2EjNzDwmsdVBP0IB+gySBwuQM5aUPHd5+wSlQOsn+ButBCuX5DfkhwpFLGQDxcI2QSn8LQGoZj5SRoPGthmWUJFbe4lI0Ohxl1OxlIJld95R0qpqTo1aJ0xold/+PQmoaI32yt5k1HqE4TKh/sofkqi/mZkblJ4oVCBxcsuvACnN9IC2epEQdQJSgdudXykVWE6iwR5jIt5KLcpIObZUt+0jAalUo5tEa8+HpogS1Lwg9PTKv0kB89vq4CM3KDK0tjMdat08IHy+5X/JILV09PutgYfu/DdpYcx41Dp1KVqG0P4sp2QGgGsvms1Pq2teqEhkVUlicoszFi5uGenlBzxOlCXC+E8Sqlvfm2rzaMZThHcekaDaw5CBs8UiGB9vPsjjy2ESmIjfoVCVDFSr/24qqtJs/rHkfvQLRVlZnRj6stlE1Tpl8YsUVEu6oqmaomrf3IRFugQaK+Y0qHXKpysD1dInXQVTlOb3Q4ewbtCaoZmE1brMjSMlyjI9CagOofwAKI1hpb04lIOqchl/KZqzgK807EVY4Fg8pkwq06Fa/YNBxOqP/Z+DZasGGlS13WK0ZY0le1ljqeD1HLEQof/ix+1zbcpCIQuqtWBsBpC6UhRdZzBZmdX8vLYmAZWxU7Sn5GWXzfrQFEmC0tZUIVSH36Ni9eSKZRKHSIW/KvvTPHq8KgHVZv/a1XqfotUFVEtH+pehkYqfHf7RhOqDtNJ1BpbKXe2PNTpUK0lBlZW+cWSOtFDPgqqp/XtwpDJsa0tfNcglTlMq1CHgxf45WiJDlUoVbLUue+OIc7vNgn0TktcTt5V6vLzzGGn5pwUV4+dPj5+EI7V0ddQEflI5TfF04n9U5a4EVA37xqQF+9Yjl2ffeuTySl6Pi4XA/stotZ65JC3pF1DdBc7Rvy6FVOHq4TeVIaVzmtKBr4CpeCGqMlkFfZiYN7nFlKAZygjQnVXsjTfv/r76xJff1w6f/K4xOcVggT/su6H6FMCNgaXKZFXl3IemJqrWMyRZ5WSVpgPvNPVvV4eDaK2tLn359GfTqjegde7CNVDhPyaTVbXd2FDF3JQpQ+nrebKKZQcfBB99u5pZOlxdXQNbfbK09vzrURMEuq6IslPgAggXP07w7AuZrBJQxdmUybk53t4YpuD1nG0EfDYPSF/IZRXDCXKGp1ZTP/r29esVs9+/fjvSGU7wMNIUTykVqw9+hOMlk1VGuxBp84C0vWXA4MYwsbekOJPIqltHQDuWDGDvnsFjmaKjLuDPMqRQJ3CKUqG/AIDdvSUB1ZkZYw/jRCQoZbEsh4pR9pe7ql1bOpQaoMX+MFdTBI/zJxlIAA48q6Fk56Lh6Mva4RoVqs2gedOJqXXarVrl1F+efwO5xPUkVBXnaqwsnWeQuNJpHDVedirgpCCkOr8YNvXvV38hQrWSEFTymzIR72qr/E+zCc0nztT8cgZ5AoWHpcbJSYeU4uXJhjKK1uSjG/YE5KIOQ0Gmypr/26BCFXdTJmR0/ozllbye2LzR8ooZvtWX8EwaVJWndd6mUzGlVCEHPn/7rOEVUcMrnsbbnlCkOj4J+PArIBYns/pTkqKDSZs03+pLNPnAQ7y8HiLn9Tg+cTeQo0FVe7aM7xOFN6cfVf3z8dKTW1calBa/LqI2V5DFtatbT5Ye/2kPl8XPMFt+Rrn4IlQSG8glJkGJWaWLt4k6gb99RXsMGnT1CqWDhmSlcznBvryCwc/aY10M/3QcEvLfoVNe2tj0oamJqnWTIhaMX0T54SiY85XS/IwTMbe+K3jN45KKExbTE5+xAbH0vcl/AuC1oFLrv1BeeyM2VDHVOmW9eqr2kw2VoB2A6isOmg8/NcU1j6ePysuw+Ql76atfm6JtxeWWgOonQgUa2xyqOGrdhs5vq/WBLXr9NualqPXaK7t4NKv9pHmyCmkelQL3bous+twElFRU7dYveUWBqg05E3Vj3rTXywToqmC1Pjc7XIW7UlAhDyEw6nPgqicvQBJoiKLCaR8EffMF56ovWJk616d2Af5Mee2LjFtXSW/3HEOCUqAynjlcxUHi0lPRnt86vMWQAv2pogjVeIWCNV+wJ5+r4hIAT2s2VM8oxX+cSUaCykN1TlE3Ly2twMFioxVsHzTvfjqyJvtQaumqBYvS/P7pSBNTERbfC7XwkvDSsMgxKbXux+0R1HqX0gWtvHIUqH3JF61gHXSUqgrJrirOo7qATigqm+9uUz6lymU2rlp3xELWTqisO6Fcnp1Qzs7KmQJJMx8sW8IKqUrX3VNXDEINmzNcnuPAhj+sCsLHsSH+hmXSXFHDZvSsfYxG1mZ0J7WydkINeqN1VfjhLBnCLVspEILLdTdV8VaCjtqcAaciJPz/qqArHNRojqSykKJt6mDMDdeexOEscZZ3EO4ZAasdvFqu1xUES7PeOS891SYrDo8mtAOiid/IOzIsxer15dsHtHE63j1yrSthiDt2MNJ4+exnoap4AWoCD8QC4BAJxQEEbLCzhYmIifbzs5fEXbKMzfhQxVTrs8Ud8s56RuW2yBDB4ry0OK2Ljp+G3I4jZpVfCjmf8QTTGJ+TN14z2liAZLXu4BN7LegcbXcTbrXbOLvHe0/I7eKCyBNJE/qUVyV37YTC6dPb9Jes7BZjrwX1qT3aUYqX9A3jGFSiU2UNfjUFu1GYZoro7CE3qXb6icV7MlA1SiNWGGfHL0GLJjlsgEpc+q13L9a5WLxlt/ZQMIirpFgUI5VV5Wk4oJPYseJQ/dTEtS2g11W8Eipi3IK0jqWmKUJTqVitWLG0jgKasTIKqshZ5b9wIdK69QxpLRpCxcaCtvTmC82YpNKFbLB6d1xpiVUwSPiq4Lc6qf2JUO0ksG497hUwTxsFYuDQ4kPqRnmFXI7zEK7xtMonanTnIaR2UksPrbKVnYoDOum8frCMk6L2MiAcPlupZrVpgOlRdSo4PkQVTxvRcKtNya2TdLIy7OUanKd0HYfDFq2L+lOFXkAOs9csqBp9O9sDcxJQjT6gky5Caz/XVUWsLxONT8VWUlb9qaLeeLdUxXWO8Aipo4dmXCyM6YBOSmchT+zDYOi/LNsrgngvTySVKqa2rApEOaVZg2ZMxWUJqtqzCjBOZwHTSL5fxbjdpG+FXbNmslChoyjAgSBvtIhRjia6obiyQWjUJvnVUtX0lBz5YxLuXbageopyQTSkdNGEwpl3PjGKc6b2xRDQQ7EgU38wWzMNt05mSHfkCqvWsbR4m0os9cSmKCyowjVV4sKIgpR3XwBRUpsYrbE/JqhoMzZ83pRegZWf6oro0om1UxZWuHbB7ouq2HOAwQ2vwzplRktYOT0EVawDOiXnAcGTqMBUucl7VtaCKhspDWdNVftiKFY3qmIxkYSowtlS0gGdaa/H8UnmgM6uRHfhP8uiUafjYiBLJUD9ieY6fo2DZZxaVupPJRowzgzE9R/QSbt7RGB1u8knZXDZnuqatFLscSCOlnGJEU9CRaPXesg9I9exLSFtSTYaMDtPKly86JphdwwXIqP0AtyIcw/cKrvFMUAlfUBnRuLoDKZD+fWOj4ndzO5CSuMJx5dDwvPLEuWXSsU7oNOBKmjVXsHrBa3aW8A9eU3S/sXCoBfDpYEuBsNOE8ESDnhDBNKUyoY0Eid5GW3XWr1Yq/YwjWbjHtBZkvm4a0+XsTfMswpr0JVZYnKC94zh3/ormWNfalN3QCdtUbawyvGyIgQTHxErYmU67/ip/D+rpaWrckgZG+a0bSIuoRcAK5AMumKPihW76SluiMARDaTXMr1NzF9hL+FNxDPxD+iUSqtU7aUuLoRisYIqAMOlDFxe8Wby8n+kkDI2zawDlfTdEIDViHtsSqPusbE9ybRKGdVXy5g7AA3vSGkisZDMOVD1Pw/kzjyrXEof0Dl0j00iap2vCpUY3eC7+UWpKzpyN78/AldaQaNPx/XXdYU+8YBWO+MJZTP69at1XD4ke9ZdLfWUy08+foZxHoxlrFuP4LGnKelfPZ1H/vTpjWNuZeN1rvvGutLxLp9iDWrgrq03xVyDunu/hVS7nyBUMe9d9hzQST8ShEHQuLnYOmG/o8PrTxU3kCii26d32FMnrdw92h011m83x3JAp+Qd8a4DOulHwkNCLeZyLd4lEQ1PTVWsWXj4C89st3Ls214b5ANHtvwO6JS+I95KniQO6KQcesCBusdwYtbjN8sKbERrwRouwzPnPfiuxcV7NLDgXpHpPaCTspecBVQut961oRrqLMAz3XXxjTSwaqUpPqBz4Ti6uHptAcWgKoVDVVq3vzX3OjJWld30OKCS2RfU74DOTsSZ5jIj89wAVNowUozeB6FavFmLBpa4AdApwNg7DfntXxV6VOeIAzojvY/yPRdQVgEOt6sYVG94Afbc3734Otq22PnSyAM6IxzL6dq/KvauaANehImuci3nQUrQ+ptAqHY9ULHEipC6jf1pP6AzQpOv/NoLFBMLbfjRvh9UXEK2WwM/sDhSZVV2kj8jPmmosqNW8Q0jlVs8SfunlaLxJ06Gf2IEuwNRJQ5V/H1B0wPcHj6BWr459L5ZBXKySg9BVedJ1V0f/onFe+FYDQYlrdZdBYi7zRaL1s6yYV6ee/PDXt7jhZ0R74uUkOvpN/UBpDhTcbE+jNXNEKwq3dJgUC6vOOwVuDcf5LHrWLIHdNqfXfCSR3+kmKV9sBJIpf1/IgSrxp45HNRUHdBpM0I/SIkGItU6RVQ6ij2rrCgdfOzUL6nCarCx2/cJasrUuhVLx/8yOCCn3LZ+nhaJpdShrVdXREqlz32YSmDlz+0BF7/rVOvBBcgGzm2fvPK59rnyal9Ak+503rx507e+6gbkVCBWlXZQUD4FGLH/ggWYwNkQfl7/bBirSghSTJR20z62nwv7odzwi9S2+xHCkzobIkgsUE4c8f0Uz4ZqMOw9M6xa5+kh222FIpVbHPo4ts2woGKdOJK4BLW5fcOLVflmOFSMr05LXqBKp4E8ZdkAtVfa/dCgpkut21EN8FUYUQlrLW64qrC7kQvhKSutXrtfo7EzKqhxqHXSmVv+ud65cGM1GikAq/d6e2e/293f2X7dGw0UmBup3dFBDRdgZLWeyEluAV7fabaX70V630BZvd76eq83gqSc73eugpWtfuyQw05ys5Mn3gGdaf/r8mVZjJ1rEd853RbFx2Gkuma0oGTPB0Q3WQnq4obMSi0ap8sbDnAqKxholKCmSK27oTLbjbEmFUsrYMRGmxDUWNW6bAGyXO9sGcY4kwoEg2Gc04KSOiE3P3YrLqw0xphU0BNdySd0tnKYJXWad9h1mY2ee+MswNYOhkcKSuI07/FJUBcjmJcnvdHvWc56J125oKZIrXti6VxEkN4S1spdyAd1DQd0Rsn1fvo0+Sps9V5mzBhBDQ6XwwswSKgnL977l+VkwVrsHez3ExflgR65tUcWC04XLWPun6wnBtbi+slWAkFN9IBOkto7P1lPhLNavZMtM6mg0lOh1oej2j9txQWLDalP9zpJBhVbrctOboXTqDm7fTNOHbZ6N7e7QLdJBhX5gE6/VrK3mS7VYA/oW8/1+7sHkbssAwnV6x1smcXkg/J6fliMYSI+hDwdr2O2T9YjNu9cOK2f7JRYYYwpqGlQ637csNAxd09z61GTq9XqtQ6Oxx3UNKh1v6jgZfd3yrleqxUG2CJj8fXcaXuvY04gKLpaH7EULb4wtsnT7Mweb5zeW+/1ADIHs0UGEUul9fV7Bxu7XYh5gkGNOKDTx6MvcJRZS1gq9c1+J7u1tb15enoimvD3Tk5PN7cvzrv9ft+cn594UMOo/B/J2Q2X8T0dSAAAAABJRU5ErkJggg==","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"}}}},"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserdataProcessResult"},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/userdatas/{pastelid}":{"get":{"tags":["userdatas"],"summary":"Returns the detail of Userdata","description":"Gets the Userdata detail","operationId":"userdatas#getUserdata","parameters":[{"name":"pastelid","in":"path","description":"Artist's PastelID","required":true,"schema":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateUserdataRequestBody"},"example":{"avatar_image":{"content":"iVBORw0KGgoAAAANSUhEUgAAASoAAACpCAMAAACrt4DfAAABUFBMVEVPk//////m5ubl5eUkJUYwbP/k5OT60J360J7y8vLt7e34+Pj19fXw8PD5+fnr6+v61an60qMgFi9IkP9Qlf88i/9RmP9Djv//0pkuaf82iP/w7OQACj//1aH/1JUhZf83dP91pfoAADwQGEKgu/MbHkPhxLALXv/z7uOOtPyCq/jw9P4hHz3gwJ04eP8aYv/F0e2VtfX//PSvyf+/0/xEetVKiOwkGC3W3Ore6P0rQ3xpnvsGEkAuLEjgupALFUG3yfAAACe+t8qnr9nHvMZBPFFeU1x7oO/RvbqYquHbx71kjP0+gP/74sSKpv6StPbX5P+zxvBgjeJAXJo/RWlBW5VBYKY1RHNAcMQsJDgdFDNDV4opMFdRdLvZ3egnNWM1LDyGens7asO8oIjBqpZWTVo6OVRnYm54Z2eehnanjnvJqYqdgWiykW7sz62jrtzuoXzIAAAXaElEQVR4nOVd+18TSbbPg9CdEEK3nRdpQkSCBKIGAioIIqujzojy0Luu7syyO1dxVr139v//7dapU/1Kujt9qjshfu4ZHQ8JkJNvzvn2t05VV6XSYLMZZj7eAjilbCaTLYA35/XmwSuClwcvD17R682DNwdeAbwSeAvsF886Hn8xs9PJbJ3vtM+2Dw5SYNWDlY2z7Yutc/g1mesJKmN7WXBT1w0VvNj5zka10ajVaoZhpGxjXxi1WqNxsNHeynbM/+dQmZ3Zi41Uo1JzITRsDLFGamO3K2KeZqhmk4pKxGJ7x9upRjhKLrwYXNtbpjn2oEZDlc34eANRueKbHRXVrB3VrE9UmX56dzMyTA5clc1j0xxXUC4PobK9LIScmgVDbJhlfDyBFzMRkOUVwct7vTx4GBB4GBB4GIbl7W82KkScHLS2zMxYgkIPUfKggl4KUitrpZFf7flyw8Bn5/cpDjCC4/VLO9WGFE4CrUp5Z9ZMOKjA2nO8iUNlzm5UavI4WWiddacGKhdN+dEoOSqR9ebeSpyEcoHV2NxPKig/mgqCCgHK2l7GziXwCl5vDjyMCry818uDh1HZXgE8HtXegRxDBYFlJhEU9xyd51F8iAWmkrgCMsvanh+j+9EohuZDno5XcNGoebmZTEY5YG104wYVxugD3D4xCTqfaSeXUQ5YbV4NUyNBE4FqKxWbzP2sYjDpcG1QJSNBsx61112pjAMosMbKrCkX1EgJ6geVzeMkRh+g0XwQjc6ld6m6nGJG7diUCSpN4/bJqPXxpRRaZWXeHJdaz05SrZ8bY0wpNAMY68dX6+0xpxRapd3JTBQqX0YfVOsOec6Oiorl9biLz7Laihk1qAFG91XrPl5qASxdYmZ5ae4VvN4cePPgFb1eHry81ytaXqFbHnvxWWaUL6MFhd48eHPgFbxeCTyOBYCSdvAZr1o/H4uWCrLalvnDqvXdCRWfZZUL8wdV6zuNySLFyX0CUEk3jGfdUc06UfUnc+kbwGqjHxbUiIZx2usNNoxLNqPbXgGcOa83D17R6+W9Xt7jdbavASnGV2f9kKAWiuDNe7058Aper+T1OD6pbDZrcRfzMj6eSC3miYSyvCJ4ea+XBw8+u+vIKbDKhjkbGBRT68wTjM48wegeDxPK9rK2Ny4Jel1Isbxqd34otT55Rnes0jYDuT0WVNmslWAs07J22SGjOx4UYNYuQIvRmTeY6/Dr+rvXiBTD6rjvE5SAyi7ArFV2jrdgY5Hx8VIFMM7eQR7yuNfLe728x5s/v1akGFZb/aGgCkWvNx/kIbd7vZJLrTPksrbnx+h+3G6n1gB5dmNo9DK32FhdZoYY3fEKQdyOaeTjQflkxyFBJd9puVytlt/ev3//rVEFc0HG3Crtd5k/hFpfkRkhl6vl++8ePbxh2X+9++uH+29TVbQH99//7cZfCR+BsWKOCypIMNsb4HaH0YO43ZPrO3SZwNLpw6MbN+7cmXHszp07HLOHH/k/7LnfKNlaa5uBBejH7Q6j+3E7FuAcGLKY5c2DUwzy8l4v7/WK+2RKL1cfvPu7ByZ/e/iAglVlr+gXXpA3H+Q5+ASJhRFqfSChXKklAdSjh6NxYnaDBFUqlZBad8RCwhKUSlTl1K/RgKJmFaOrzlSrdWKHqlz98DEiUDM0rkqBEh2+DF6nWvcWYImIVOrXG1GBYlDR9AKjdvYmgwswolp3FeA8WBEsyMsHeflBr79JKr/q/egpxS6J76lQGZt930CLoz0/LELFAlGtZ7ZIMr36DwJQDKoPZGlbOfcXC1HV+oBY8KEpWQmaIX3s1fcPKUjN3LlPzSr2GlOq1vttSlJV3xNoCrF6X6XmVWWnf41qPaQAx4sUE1bvyANpo5ANLcCI/RcsQOQzsNFePszrbxA4XQYpllf/TBGxMs76I4OPikCgWKCq9cwlIamqH2g8ZWP121uquOoGJZSfWg8XC0lJUJMgFMoPSNc+t328T8PK2AijqetR63vR1We5/E9pqMhYQVqNWa37cHtYAZoEpqq+k0eKYUUcCm6MLMCoaj2fjM1Tyk+OqIRRub02X0zmLUYUCyO5naCpqo/iJBVwO0mLGm0zilqPIBZ8aEpGgkYPvfxARid4sKKNBo3MNKn14lZ0Uq/+Gi+pmD0kUXvteKJqfUQB9qN39Mrl2EjNzDwmsdVBP0IB+gySBwuQM5aUPHd5+wSlQOsn+ButBCuX5DfkhwpFLGQDxcI2QSn8LQGoZj5SRoPGthmWUJFbe4lI0Ohxl1OxlIJld95R0qpqTo1aJ0xold/+PQmoaI32yt5k1HqE4TKh/sofkqi/mZkblJ4oVCBxcsuvACnN9IC2epEQdQJSgdudXykVWE6iwR5jIt5KLcpIObZUt+0jAalUo5tEa8+HpogS1Lwg9PTKv0kB89vq4CM3KDK0tjMdat08IHy+5X/JILV09PutgYfu/DdpYcx41Dp1KVqG0P4sp2QGgGsvms1Pq2teqEhkVUlicoszFi5uGenlBzxOlCXC+E8Sqlvfm2rzaMZThHcekaDaw5CBs8UiGB9vPsjjy2ESmIjfoVCVDFSr/24qqtJs/rHkfvQLRVlZnRj6stlE1Tpl8YsUVEu6oqmaomrf3IRFugQaK+Y0qHXKpysD1dInXQVTlOb3Q4ewbtCaoZmE1brMjSMlyjI9CagOofwAKI1hpb04lIOqchl/KZqzgK807EVY4Fg8pkwq06Fa/YNBxOqP/Z+DZasGGlS13WK0ZY0le1ljqeD1HLEQof/ix+1zbcpCIQuqtWBsBpC6UhRdZzBZmdX8vLYmAZWxU7Sn5GWXzfrQFEmC0tZUIVSH36Ni9eSKZRKHSIW/KvvTPHq8KgHVZv/a1XqfotUFVEtH+pehkYqfHf7RhOqDtNJ1BpbKXe2PNTpUK0lBlZW+cWSOtFDPgqqp/XtwpDJsa0tfNcglTlMq1CHgxf45WiJDlUoVbLUue+OIc7vNgn0TktcTt5V6vLzzGGn5pwUV4+dPj5+EI7V0ddQEflI5TfF04n9U5a4EVA37xqQF+9Yjl2ffeuTySl6Pi4XA/stotZ65JC3pF1DdBc7Rvy6FVOHq4TeVIaVzmtKBr4CpeCGqMlkFfZiYN7nFlKAZygjQnVXsjTfv/r76xJff1w6f/K4xOcVggT/su6H6FMCNgaXKZFXl3IemJqrWMyRZ5WSVpgPvNPVvV4eDaK2tLn359GfTqjegde7CNVDhPyaTVbXd2FDF3JQpQ+nrebKKZQcfBB99u5pZOlxdXQNbfbK09vzrURMEuq6IslPgAggXP07w7AuZrBJQxdmUybk53t4YpuD1nG0EfDYPSF/IZRXDCXKGp1ZTP/r29esVs9+/fjvSGU7wMNIUTykVqw9+hOMlk1VGuxBp84C0vWXA4MYwsbekOJPIqltHQDuWDGDvnsFjmaKjLuDPMqRQJ3CKUqG/AIDdvSUB1ZkZYw/jRCQoZbEsh4pR9pe7ql1bOpQaoMX+MFdTBI/zJxlIAA48q6Fk56Lh6Mva4RoVqs2gedOJqXXarVrl1F+efwO5xPUkVBXnaqwsnWeQuNJpHDVedirgpCCkOr8YNvXvV38hQrWSEFTymzIR72qr/E+zCc0nztT8cgZ5AoWHpcbJSYeU4uXJhjKK1uSjG/YE5KIOQ0Gmypr/26BCFXdTJmR0/ozllbye2LzR8ooZvtWX8EwaVJWndd6mUzGlVCEHPn/7rOEVUcMrnsbbnlCkOj4J+PArIBYns/pTkqKDSZs03+pLNPnAQ7y8HiLn9Tg+cTeQo0FVe7aM7xOFN6cfVf3z8dKTW1calBa/LqI2V5DFtatbT5Ye/2kPl8XPMFt+Rrn4IlQSG8glJkGJWaWLt4k6gb99RXsMGnT1CqWDhmSlcznBvryCwc/aY10M/3QcEvLfoVNe2tj0oamJqnWTIhaMX0T54SiY85XS/IwTMbe+K3jN45KKExbTE5+xAbH0vcl/AuC1oFLrv1BeeyM2VDHVOmW9eqr2kw2VoB2A6isOmg8/NcU1j6ePysuw+Ql76atfm6JtxeWWgOonQgUa2xyqOGrdhs5vq/WBLXr9NualqPXaK7t4NKv9pHmyCmkelQL3bous+twElFRU7dYveUWBqg05E3Vj3rTXywToqmC1Pjc7XIW7UlAhDyEw6nPgqicvQBJoiKLCaR8EffMF56ovWJk616d2Af5Mee2LjFtXSW/3HEOCUqAynjlcxUHi0lPRnt86vMWQAv2pogjVeIWCNV+wJ5+r4hIAT2s2VM8oxX+cSUaCykN1TlE3Ly2twMFioxVsHzTvfjqyJvtQaumqBYvS/P7pSBNTERbfC7XwkvDSsMgxKbXux+0R1HqX0gWtvHIUqH3JF61gHXSUqgrJrirOo7qATigqm+9uUz6lymU2rlp3xELWTqisO6Fcnp1Qzs7KmQJJMx8sW8IKqUrX3VNXDEINmzNcnuPAhj+sCsLHsSH+hmXSXFHDZvSsfYxG1mZ0J7WydkINeqN1VfjhLBnCLVspEILLdTdV8VaCjtqcAaciJPz/qqArHNRojqSykKJt6mDMDdeexOEscZZ3EO4ZAasdvFqu1xUES7PeOS891SYrDo8mtAOiid/IOzIsxer15dsHtHE63j1yrSthiDt2MNJ4+exnoap4AWoCD8QC4BAJxQEEbLCzhYmIifbzs5fEXbKMzfhQxVTrs8Ud8s56RuW2yBDB4ry0OK2Ljp+G3I4jZpVfCjmf8QTTGJ+TN14z2liAZLXu4BN7LegcbXcTbrXbOLvHe0/I7eKCyBNJE/qUVyV37YTC6dPb9Jes7BZjrwX1qT3aUYqX9A3jGFSiU2UNfjUFu1GYZoro7CE3qXb6icV7MlA1SiNWGGfHL0GLJjlsgEpc+q13L9a5WLxlt/ZQMIirpFgUI5VV5Wk4oJPYseJQ/dTEtS2g11W8Eipi3IK0jqWmKUJTqVitWLG0jgKasTIKqshZ5b9wIdK69QxpLRpCxcaCtvTmC82YpNKFbLB6d1xpiVUwSPiq4Lc6qf2JUO0ksG497hUwTxsFYuDQ4kPqRnmFXI7zEK7xtMonanTnIaR2UksPrbKVnYoDOum8frCMk6L2MiAcPlupZrVpgOlRdSo4PkQVTxvRcKtNya2TdLIy7OUanKd0HYfDFq2L+lOFXkAOs9csqBp9O9sDcxJQjT6gky5Caz/XVUWsLxONT8VWUlb9qaLeeLdUxXWO8Aipo4dmXCyM6YBOSmchT+zDYOi/LNsrgngvTySVKqa2rApEOaVZg2ZMxWUJqtqzCjBOZwHTSL5fxbjdpG+FXbNmslChoyjAgSBvtIhRjia6obiyQWjUJvnVUtX0lBz5YxLuXbageopyQTSkdNGEwpl3PjGKc6b2xRDQQ7EgU38wWzMNt05mSHfkCqvWsbR4m0os9cSmKCyowjVV4sKIgpR3XwBRUpsYrbE/JqhoMzZ83pRegZWf6oro0om1UxZWuHbB7ouq2HOAwQ2vwzplRktYOT0EVawDOiXnAcGTqMBUucl7VtaCKhspDWdNVftiKFY3qmIxkYSowtlS0gGdaa/H8UnmgM6uRHfhP8uiUafjYiBLJUD9ieY6fo2DZZxaVupPJRowzgzE9R/QSbt7RGB1u8knZXDZnuqatFLscSCOlnGJEU9CRaPXesg9I9exLSFtSTYaMDtPKly86JphdwwXIqP0AtyIcw/cKrvFMUAlfUBnRuLoDKZD+fWOj4ndzO5CSuMJx5dDwvPLEuWXSsU7oNOBKmjVXsHrBa3aW8A9eU3S/sXCoBfDpYEuBsNOE8ESDnhDBNKUyoY0Eid5GW3XWr1Yq/YwjWbjHtBZkvm4a0+XsTfMswpr0JVZYnKC94zh3/ormWNfalN3QCdtUbawyvGyIgQTHxErYmU67/ip/D+rpaWrckgZG+a0bSIuoRcAK5AMumKPihW76SluiMARDaTXMr1NzF9hL+FNxDPxD+iUSqtU7aUuLoRisYIqAMOlDFxe8Wby8n+kkDI2zawDlfTdEIDViHtsSqPusbE9ybRKGdVXy5g7AA3vSGkisZDMOVD1Pw/kzjyrXEof0Dl0j00iap2vCpUY3eC7+UWpKzpyN78/AldaQaNPx/XXdYU+8YBWO+MJZTP69at1XD4ke9ZdLfWUy08+foZxHoxlrFuP4LGnKelfPZ1H/vTpjWNuZeN1rvvGutLxLp9iDWrgrq03xVyDunu/hVS7nyBUMe9d9hzQST8ShEHQuLnYOmG/o8PrTxU3kCii26d32FMnrdw92h011m83x3JAp+Qd8a4DOulHwkNCLeZyLd4lEQ1PTVWsWXj4C89st3Ls214b5ANHtvwO6JS+I95KniQO6KQcesCBusdwYtbjN8sKbERrwRouwzPnPfiuxcV7NLDgXpHpPaCTspecBVQut961oRrqLMAz3XXxjTSwaqUpPqBz4Ti6uHptAcWgKoVDVVq3vzX3OjJWld30OKCS2RfU74DOTsSZ5jIj89wAVNowUozeB6FavFmLBpa4AdApwNg7DfntXxV6VOeIAzojvY/yPRdQVgEOt6sYVG94Afbc3734Otq22PnSyAM6IxzL6dq/KvauaANehImuci3nQUrQ+ptAqHY9ULHEipC6jf1pP6AzQpOv/NoLFBMLbfjRvh9UXEK2WwM/sDhSZVV2kj8jPmmosqNW8Q0jlVs8SfunlaLxJ06Gf2IEuwNRJQ5V/H1B0wPcHj6BWr459L5ZBXKySg9BVedJ1V0f/onFe+FYDQYlrdZdBYi7zRaL1s6yYV6ee/PDXt7jhZ0R74uUkOvpN/UBpDhTcbE+jNXNEKwq3dJgUC6vOOwVuDcf5LHrWLIHdNqfXfCSR3+kmKV9sBJIpf1/IgSrxp45HNRUHdBpM0I/SIkGItU6RVQ6ij2rrCgdfOzUL6nCarCx2/cJasrUuhVLx/8yOCCn3LZ+nhaJpdShrVdXREqlz32YSmDlz+0BF7/rVOvBBcgGzm2fvPK59rnyal9Ak+503rx507e+6gbkVCBWlXZQUD4FGLH/ggWYwNkQfl7/bBirSghSTJR20z62nwv7odzwi9S2+xHCkzobIkgsUE4c8f0Uz4ZqMOw9M6xa5+kh222FIpVbHPo4ts2woGKdOJK4BLW5fcOLVflmOFSMr05LXqBKp4E8ZdkAtVfa/dCgpkut21EN8FUYUQlrLW64qrC7kQvhKSutXrtfo7EzKqhxqHXSmVv+ud65cGM1GikAq/d6e2e/293f2X7dGw0UmBup3dFBDRdgZLWeyEluAV7fabaX70V630BZvd76eq83gqSc73eugpWtfuyQw05ys5Mn3gGdaf/r8mVZjJ1rEd853RbFx2Gkuma0oGTPB0Q3WQnq4obMSi0ap8sbDnAqKxholKCmSK27oTLbjbEmFUsrYMRGmxDUWNW6bAGyXO9sGcY4kwoEg2Gc04KSOiE3P3YrLqw0xphU0BNdySd0tnKYJXWad9h1mY2ee+MswNYOhkcKSuI07/FJUBcjmJcnvdHvWc56J125oKZIrXti6VxEkN4S1spdyAd1DQd0Rsn1fvo0+Sps9V5mzBhBDQ6XwwswSKgnL977l+VkwVrsHez3ExflgR65tUcWC04XLWPun6wnBtbi+slWAkFN9IBOkto7P1lPhLNavZMtM6mg0lOh1oej2j9txQWLDalP9zpJBhVbrctOboXTqDm7fTNOHbZ6N7e7QLdJBhX5gE6/VrK3mS7VYA/oW8/1+7sHkbssAwnV6x1smcXkg/J6fliMYSI+hDwdr2O2T9YjNu9cOK2f7JRYYYwpqGlQ637csNAxd09z61GTq9XqtQ6Oxx3UNKh1v6jgZfd3yrleqxUG2CJj8fXcaXuvY04gKLpaH7EULb4wtsnT7Mweb5zeW+/1ADIHs0UGEUul9fV7Bxu7XYh5gkGNOKDTx6MvcJRZS1gq9c1+J7u1tb15enoimvD3Tk5PN7cvzrv9ft+cn594UMOo/B/J2Q2X8T0dSAAAAABJRU5ErkJggg==","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}},"components":{"schemas":{"ActivationAttempt":{"type":"object","properties":{"activation_attempt_at":{"type":"string","description":"Activation Attempt At in datetime format","example":"1996-11-10T22:28:46Z","format":"date-time"},"error_message":{"type":"string","description":"Error Message","example":"Eum voluptatem hic consequatur qui veritatis."},"file_id":{"type":"string","description":"File ID","example":"Itaque doloremque qui qui."},"id":{"type":"integer","description":"ID","example":747500709464811008,"format":"int64"},"is_successful":{"type":"boolean","description":"Indicates if the activation was successful","example":true}},"example":{"activation_attempt_at":"1976-09-03T15:49:26Z","error_message":"Quia aspernatur ut aspernatur ducimus alias repudiandae.","file_id":"Consequatur dicta dolore sequi quod esse.","id":2414817839737057767,"is_successful":false},"required":["id","file_id","activation_attempt_at"]},"AlternativeNSFWScores":{"type":"object","properties":{"drawings":{"type":"number","description":"drawings nsfw score","example":0.23677222,"format":"float"},"hentai":{"type":"number","description":"hentai nsfw score","example":0.24572228,"format":"float"},"neutral":{"type":"number","description":"neutral nsfw score","example":0.6700735,"format":"float"},"porn":{"type":"number","description":"porn nsfw score","example":0.80549806,"format":"float"},"sexy":{"type":"number","description":"sexy nsfw score","example":0.42140633,"format":"float"}},"example":{"drawings":0.71975684,"hentai":0.23129384,"neutral":0.7883817,"porn":0.8816837,"sexy":0.86713}},"Asset":{"type":"object","properties":{"expires_in":{"type":"string","description":"File expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"file_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_amount":{"type":"number","description":"The amount that's required to be preburned","default":1,"example":20,"format":"double","minimum":0.00001},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"example":{"expires_in":"2006-01-02T15:04:05Z07:00","file_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100},"required":["file_id","expires_in","total_estimated_fee"]},"AssetV2":{"type":"object","properties":{"file_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_transaction_amounts":{"type":"array","items":{"type":"number","example":0.9290878953427684,"format":"double"},"description":"The amounts that's required to be preburned - one per transaction","example":[0.9182498251932096,0.7686174886018061]},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"example":{"file_id":"VK7mpAqZ","required_preburn_transaction_amounts":[0.26362438573596114,0.7637413737913766,0.26642836133361597,0.6818140464596548],"total_estimated_fee":100},"required":["file_id","total_estimated_fee"]},"ChallengeData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":1147500050,"format":"int32"},"end_index":{"type":"integer","description":"End index","example":587181744822064718,"format":"int64"},"file_hash":{"type":"string","description":"File hash","example":"Facilis debitis nihil."},"merkelroot":{"type":"string","description":"Merkelroot","example":"Aut non explicabo eligendi ea."},"start_index":{"type":"integer","description":"Start index","example":5951863253232021290,"format":"int64"},"timestamp":{"type":"string","description":"Timestamp","example":"Ratione fuga nobis incidunt est."}},"description":"Data of challenge","example":{"block":1906447647,"end_index":4132569794906174981,"file_hash":"Accusantium deleniti ut enim et rem eos.","merkelroot":"Et id minima ipsum voluptas est.","start_index":299449972248189702,"timestamp":"Nihil sit maiores sapiente."},"required":["timestamp","file_hash","start_index","end_index"]},"ChallengesScores":{"type":"object","properties":{"health_check_challenge_score":{"type":"number","description":"Total accumulated HC challenge score","example":0.7343058597285439,"format":"double"},"ip_address":{"type":"string","description":"IPAddress of the node","example":"Maxime incidunt sit."},"node_id":{"type":"string","description":"Specific node id","example":"Quaerat sint."},"storage_challenge_score":{"type":"number","description":"Total accumulated SC challenge score","example":0.641879525433866,"format":"double"}},"description":"Combined accumulated scores for HC and SC challenges","example":{"health_check_challenge_score":0.4298777191641779,"ip_address":"Natus tenetur.","node_id":"Numquam rerum sunt laboriosam voluptatibus.","storage_challenge_score":0.6059575136726771},"required":["node_id","storage_challenge_score","health_check_challenge_score"]},"CreateUserdataRequestBody":{"type":"object","properties":{"avatar_image":{"$ref":"#/components/schemas/UserImageUploadPayload"},"biography":{"type":"string","description":"Biography of the user","example":"I'm a digital artist based in Paris, France. ...","maxLength":1024},"categories":{"type":"string","description":"The categories of user's work, separate by ,","example":"Manga\u0026Anime,3D,Comics"},"cover_photo":{"$ref":"#/components/schemas/UserImageUploadPayload"},"facebook_link":{"type":"string","description":"Facebook link of the user","example":"https://www.facebook.com/Williams_Scottish","maxLength":128},"location":{"type":"string","description":"Location of the user","example":"New York, US","maxLength":256},"native_currency":{"type":"string","description":"Native currency of user in ISO 4217 Alphabetic Code","example":"USD","minLength":3,"maxLength":3},"primary_language":{"type":"string","description":"Primary language of the user, follow ISO 639-2 standard","example":"en","maxLength":30},"realname":{"type":"string","description":"Real name of the user","example":"Williams Scottish","maxLength":256},"twitter_link":{"type":"string","description":"Twitter link of the user","example":"https://www.twitter.com/@Williams_Scottish","maxLength":128},"user_pastelid":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"user_pastelid_passphrase":{"type":"string","description":"Passphrase of the user's PastelID","example":"qwerasdf1234"}},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"},"required":["user_pastelid","user_pastelid_passphrase"]},"DDFPResultFile":{"type":"object","properties":{"file":{"type":"string","description":"File downloaded","example":"Pariatur tempore."}},"example":{"file":"Inventore et iste."},"required":["file"]},"DDServiceOutputFileResult":{"type":"object","properties":{"alternative_nsfw_scores":{"$ref":"#/components/schemas/AlternativeNSFWScores"},"candidate_image_thumbnail_webp_as_base64_string":{"type":"string","description":"candidate image thumbnail as base64 string","example":"Iste quo qui officia autem quos."},"child_probability":{"type":"number","description":"child probability","example":0.85445726,"format":"float"},"collection_name_string":{"type":"string","description":"name of the collection","example":"Sit eos provident voluptas."},"cp_probability":{"type":"number","description":"probability of CP","example":0.68921,"format":"float"},"creator_name":{"type":"string","description":"name of the creator","example":"Error distinctio ad voluptatum."},"creator_website":{"type":"string","description":"website of creator","example":"Mollitia sint fugiat."},"creator_written_statement":{"type":"string","description":"written statement of creator","example":"Et rerum ipsam inventore est."},"does_not_impact_the_following_collection_strings":{"type":"string","description":"does not impact collection strings","example":"Modi autem in."},"dupe_detection_system_version":{"type":"string","description":"system version of dupe detection","example":"Et quia ea omnis."},"file_type":{"type":"string","description":"type of the file","example":"Qui incidunt minima similique quae qui iusto."},"group_rareness_score":{"type":"number","description":"rareness score of the group","example":0.2313838,"format":"float"},"hash_of_candidate_image_file":{"type":"string","description":"hash of candidate image file","example":"Modi consequatur quibusdam."},"image_file_path":{"type":"string","description":"file path of the image","example":"Eos alias dolorem aut."},"image_fingerprint_of_candidate_image_file":{"type":"array","items":{"type":"number","example":0.14405863899271035,"format":"double"},"description":"Image fingerprint of candidate image file","example":[0.16571207988378414,0.45141510028676507,0.13869477484557624]},"internet_rareness":{"$ref":"#/components/schemas/InternetRareness"},"is_likely_dupe":{"type":"boolean","description":"is this nft likely a duplicate","example":false},"is_pastel_openapi_request":{"type":"boolean","description":"is pastel open API request","example":true},"is_rare_on_internet":{"type":"boolean","description":"is this nft rare on the internet","example":false},"max_permitted_open_nsfw_score":{"type":"number","description":"max permitted open NSFW score","example":0.6361029411458158,"format":"double"},"nft_creation_video_youtube_url":{"type":"string","description":"nft creation video youtube url","example":"Voluptatem aliquid aspernatur."},"nft_keyword_set":{"type":"string","description":"keywords for NFT","example":"Ex sed."},"nft_series_name":{"type":"string","description":"series name of NFT","example":"Beatae consequatur."},"nft_title":{"type":"string","description":"title of NFT","example":"Corporis aut voluptates."},"open_api_group_id_string":{"type":"string","description":"open api group id string","example":"Voluptas enim."},"open_nsfw_score":{"type":"number","description":"open nsfw score","example":0.9516049,"format":"float"},"original_file_size_in_bytes":{"type":"integer","description":"original file size in bytes","example":3665698183502472582,"format":"int64"},"overall_rareness_score":{"type":"number","description":"pastel rareness score","example":0.25994468,"format":"float"},"pastel_block_hash_when_request_submitted":{"type":"string","description":"block hash when request submitted","example":"Aliquid consequatur sint ea vitae deserunt et."},"pastel_block_height_when_request_submitted":{"type":"string","description":"block Height when request submitted","example":"Reprehenderit sed."},"pastel_id_of_registering_supernode_1":{"type":"string","description":"pastel id of registering SN1","example":"Et hic sed deleniti repellendus."},"pastel_id_of_registering_supernode_2":{"type":"string","description":"pastel id of registering SN2","example":"Impedit enim perspiciatis maxime asperiores quae suscipit."},"pastel_id_of_registering_supernode_3":{"type":"string","description":"pastel id of registering SN3","example":"Nisi aperiam delectus."},"pastel_id_of_submitter":{"type":"string","description":"pastel id of the submitter","example":"Vero optio maiores hic provident recusandae rem."},"pct_of_top_10_most_similar_with_dupe_prob_above_25pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 25 PCT","example":0.95369315,"format":"float"},"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 33 PCT","example":0.058212187,"format":"float"},"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 50 PCT","example":0.38367108,"format":"float"},"preview_hash":{"type":"string","description":"preview hash of NFT","example":"RXQgZW5pbSBuZXNjaXVudCB1dCBsYWJvcmlvc2FtIGF1dCByYXRpb25lLg==","format":"binary"},"rareness_scores_table_json_compressed_b64":{"type":"string","description":"rareness scores table json compressed b64","example":"Libero alias."},"similarity_score_to_first_entry_in_collection":{"type":"number","description":"similarity score to first entry in collection","example":0.5153465,"format":"float"},"thumbnail1_hash":{"type":"string","description":"thumbnail1 hash of NFT","example":"UmVwZWxsYXQgcXVvcyBpbiBxdWlhIGVhIG9tbmlzLg==","format":"binary"},"thumbnail2_hash":{"type":"string","description":"thumbnail2 hash of NFT","example":"TGF1ZGFudGl1bSBldCBsYWJvcmUgZWEgYW5pbWku","format":"binary"},"total_copies":{"type":"integer","description":"total copies of NFT","example":3276906416533209996,"format":"int64"},"utc_timestamp_when_request_submitted":{"type":"string","description":"timestamp of request when submitted","example":"Quia recusandae ipsam est quia incidunt."}},"example":{"alternative_nsfw_scores":{"drawings":0.053542916,"hentai":0.17044726,"neutral":0.01989352,"porn":0.7542108,"sexy":0.24790263},"candidate_image_thumbnail_webp_as_base64_string":"Eveniet id molestiae ut harum minus.","child_probability":0.82578164,"collection_name_string":"Explicabo natus.","cp_probability":0.7517447,"creator_name":"Ex aspernatur molestiae harum sunt quam velit.","creator_website":"Aspernatur ad molestias molestias.","creator_written_statement":"Sit ea aliquam corrupti distinctio.","does_not_impact_the_following_collection_strings":"Deleniti at.","dupe_detection_system_version":"Aut voluptatem voluptatem cumque ullam corrupti eveniet.","file_type":"Tempora et esse molestiae porro non sit.","group_rareness_score":0.37642547,"hash_of_candidate_image_file":"Voluptatem eius dolorem quia doloribus autem velit.","image_file_path":"Quia omnis recusandae excepturi consequatur.","image_fingerprint_of_candidate_image_file":[0.7035581751238226,0.568321017846266,0.8015133334256039,0.6730256882852852],"internet_rareness":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Magnam pariatur aut facilis.","earliest_available_date_of_internet_results":"Sed repudiandae voluptas dolor aut velit voluptatem.","min_number_of_exact_matches_in_page":1704813535,"rare_on_internet_graph_json_compressed_b64":"Aliquid provident eveniet.","rare_on_internet_summary_table_as_json_compressed_b64":"Quisquam corporis qui nobis dignissimos."},"is_likely_dupe":false,"is_pastel_openapi_request":false,"is_rare_on_internet":false,"max_permitted_open_nsfw_score":0.21242560938111926,"nft_creation_video_youtube_url":"Natus debitis.","nft_keyword_set":"Rerum fugiat sed reiciendis ut.","nft_series_name":"Dolorem ad debitis dolor.","nft_title":"Corrupti explicabo.","open_api_group_id_string":"Ut laboriosam sit ex molestiae.","open_nsfw_score":0.7179546,"original_file_size_in_bytes":9031458999481700033,"overall_rareness_score":0.22623362,"pastel_block_hash_when_request_submitted":"Est hic adipisci ut et.","pastel_block_height_when_request_submitted":"Veritatis repudiandae facilis optio non doloremque.","pastel_id_of_registering_supernode_1":"Rem rerum qui commodi facere distinctio.","pastel_id_of_registering_supernode_2":"Alias in qui impedit nihil.","pastel_id_of_registering_supernode_3":"Numquam ab.","pastel_id_of_submitter":"Suscipit enim exercitationem velit.","pct_of_top_10_most_similar_with_dupe_prob_above_25pct":0.5304249,"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":0.5180353,"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":0.9535735,"preview_hash":"RXggZWFxdWUu","rareness_scores_table_json_compressed_b64":"Ea maiores at nisi hic.","similarity_score_to_first_entry_in_collection":0.63287467,"thumbnail1_hash":"UmVydW0gcmVtIHV0IGVzdCBjb25zZXF1YXR1ciB0ZW1wb3JlIGRpZ25pc3NpbW9zLg==","thumbnail2_hash":"RXQgcmVtIG5pc2kgdXQgc3VzY2lwaXQgZGVzZXJ1bnQu","total_copies":3004734461662379403,"utc_timestamp_when_request_submitted":"Voluptas est eum est enim placeat nostrum."},"required":["creator_name","creator_website","creator_written_statement","nft_title","nft_series_name","nft_creation_video_youtube_url","nft_keyword_set","total_copies","preview_hash","thumbnail1_hash","thumbnail2_hash","original_file_size_in_bytes","file_type","max_permitted_open_nsfw_score"]},"Details":{"type":"object","properties":{"fields":{"type":"object","description":"important fields regarding status history","example":{"Voluptates in ratione ipsum.":"Aspernatur modi sit dolor quis velit."},"additionalProperties":true},"message":{"type":"string","description":"details regarding the status","example":"Image has been downloaded..."}},"example":{"fields":{"Ea rerum harum esse et quia sint.":"Ad cum accusamus quia iure mollitia.","Vitae deleniti quia ex at.":"Numquam qui dolorem reprehenderit animi eum ut."},"message":"Image has been downloaded..."}},"DownloadResult":{"type":"object","properties":{"file":{"type":"string","description":"File downloaded","example":"RXQgbmloaWwgdm9sdXB0YXR1bSBhc3N1bWVuZGEgZG9sb3J1bSBxdWku","format":"binary"}},"example":{"file":"QmxhbmRpdGlpcyB2b2x1cHRhcy4="},"required":["file"]},"Error":{"type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EvaluationData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":924142397,"format":"int32"},"hash":{"type":"string","description":"Hash","example":"Et id expedita qui nostrum."},"is_verified":{"type":"boolean","description":"IsVerified","example":false},"merkelroot":{"type":"string","description":"Merkelroot","example":"Sed et eos a officia iusto et."},"timestamp":{"type":"string","description":"Timestamp","example":"Ea culpa distinctio repudiandae."}},"description":"Data of evaluation","example":{"block":83631604,"hash":"Distinctio nam ipsa tempore aliquid cumque dolore.","is_verified":false,"merkelroot":"Voluptas ea culpa sunt odio aperiam illo.","timestamp":"Libero provident et."},"required":["timestamp","hash","is_verified"]},"EventTicket":{"type":"object","properties":{"data_hash":{"type":"string","example":"Q29uc2VjdGV0dXIgcHJhZXNlbnRpdW0gZWxpZ2VuZGkgY29uc2VxdWF0dXIgdmVsIHNlZCBjdXBpZGl0YXRlLg==","format":"binary"},"missing_keys":{"type":"array","items":{"type":"string","example":"Quod sit amet eligendi."},"example":["Itaque earum.","Molestiae sequi magni quod architecto ipsa."]},"recipient":{"type":"string","example":"Eveniet iure id corporis et."},"ticket_type":{"type":"string","example":"Corrupti iste."},"tx_id":{"type":"string","example":"Voluptates optio et sed vero magnam."}},"example":{"data_hash":"U2VkIHZvbHVwdGF0ZW0gYWxpcXVhbSBlc3QgcXVpLg==","missing_keys":["Voluptatum veritatis qui qui voluptatem enim.","Eaque laborum quis."],"recipient":"Aut reiciendis.","ticket_type":"Sunt autem est soluta iste omnis.","tx_id":"In velit suscipit id."}},"File":{"type":"object","properties":{"activation_attempts":{"type":"array","items":{"$ref":"#/components/schemas/ActivationAttempt"},"description":"List of activation attempts","example":[{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true}]},"activation_txid":{"type":"string","description":"Activation Transaction ID","example":"Ut minus sed doloremque ex quibusdam laborum."},"base_file_id":{"type":"string","description":"Base File ID","example":"Voluptatem ab itaque odio."},"burn_txn_id":{"type":"string","description":"Burn Transaction ID","example":"Facere aut."},"cascade_metadata_ticket_id":{"type":"string","description":"Cascade Metadata Ticket ID","example":"Inventore animi dolores numquam sapiente sed."},"done_block":{"type":"integer","description":"Done Block","example":3770713299599596861,"format":"int64"},"file_id":{"type":"string","description":"File ID","example":"Aut accusamus."},"file_index":{"type":"string","description":"Index of the file","example":"Est sunt."},"hash_of_original_big_file":{"type":"string","description":"Hash of the Original Big File","example":"Dolores consequuntur accusamus maiores."},"is_concluded":{"type":"boolean","description":"Indicates if the process is concluded","example":false},"name_of_original_big_file_with_ext":{"type":"string","description":"Name of the Original Big File with Extension","example":"Vel ratione ea blanditiis perferendis minus."},"reg_txid":{"type":"string","description":"Registration Transaction ID","example":"Dolores ea distinctio."},"registration_attempts":{"type":"array","items":{"$ref":"#/components/schemas/RegistrationAttempt"},"description":"List of registration attempts","example":[{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"}]},"req_amount":{"type":"number","description":"Required Amount","example":0.8175304494876674,"format":"double"},"req_burn_txn_amount":{"type":"number","description":"Required Burn Transaction Amount","example":0.4837057915503179,"format":"double"},"size_of_original_big_file":{"type":"number","description":"Size of the Original Big File","example":0.44828739924249605,"format":"double"},"start_block":{"type":"integer","description":"Start Block","example":740986024,"format":"int32"},"task_id":{"type":"string","description":"Task ID","example":"Assumenda magni eaque doloribus."},"upload_timestamp":{"type":"string","description":"Upload Timestamp in datetime format","example":"1975-10-25T22:16:41Z","format":"date-time"},"uuid_key":{"type":"string","description":"UUID Key","example":"Iure architecto est autem."}},"example":{"activation_attempts":[{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true}],"activation_txid":"Ea incidunt.","base_file_id":"Ea eaque est.","burn_txn_id":"Incidunt quaerat ea neque.","cascade_metadata_ticket_id":"Quae voluptatem sequi sequi inventore.","done_block":1182091721600501304,"file_id":"Architecto quibusdam voluptatibus quaerat enim.","file_index":"Reiciendis quis vel animi.","hash_of_original_big_file":"Cupiditate amet sapiente.","is_concluded":false,"name_of_original_big_file_with_ext":"Quo sit exercitationem est blanditiis at suscipit.","reg_txid":"Sunt animi labore vel maxime.","registration_attempts":[{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"}],"req_amount":0.4133768574265731,"req_burn_txn_amount":0.6702748132167543,"size_of_original_big_file":0.10825505418118404,"start_block":885257685,"task_id":"Sapiente aspernatur culpa numquam qui non.","upload_timestamp":"2002-01-22T01:41:36Z","uuid_key":"Cumque tempore."},"required":["file_id","task_id","upload_timestamp","base_file_id","registration_attempts","activation_attempts","req_burn_txn_amount","req_amount","cascade_metadata_ticket_id","hash_of_original_big_file","name_of_original_big_file_with_ext","size_of_original_big_file"]},"FileDownloadResult":{"type":"object","properties":{"file_id":{"type":"string","description":"File path","example":"A quis dolor voluptates."}},"example":{"file_id":"Rem aut perferendis ratione fugiat."},"required":["file_id"]},"FuzzyMatch":{"type":"object","properties":{"field_type":{"type":"string","description":"Field that is matched","example":"descr","enum":["creator_name","art_title","series","descr","keyword"]},"matched_indexes":{"type":"array","items":{"type":"integer","example":5968324400816813661,"format":"int64"},"description":"The indexes of matched characters. Useful for highlighting matches","example":[7798203443121942878,2532464518433884160]},"score":{"type":"integer","description":"Score used to rank matches","example":110080957761522549,"format":"int64"},"str":{"type":"string","description":"String that is matched","example":"Eligendi fuga repudiandae beatae."}},"example":{"field_type":"keyword","matched_indexes":[8983182221476285757,3055142679247932209,4532401875094322143,7582525853224941633],"score":6200450211705190698,"str":"Magnam voluptatem."}},"HCChallengeData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":1016498576,"format":"int32"},"merkelroot":{"type":"string","description":"Merkelroot","example":"Modi voluptate et sunt officiis magnam ea."},"timestamp":{"type":"string","description":"Timestamp","example":"Libero eius mollitia magni voluptas beatae aut."}},"description":"Data of challenge","example":{"block":1804369024,"merkelroot":"Neque maxime qui.","timestamp":"Voluptas neque perspiciatis dolore sit doloribus et."},"required":["timestamp"]},"HCEvaluationData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":919660696,"format":"int32"},"is_verified":{"type":"boolean","description":"IsVerified","example":false},"merkelroot":{"type":"string","description":"Merkelroot","example":"Id saepe doloremque dolorem facilis voluptatibus soluta."},"timestamp":{"type":"string","description":"Timestamp","example":"Omnis accusamus."}},"description":"Data of evaluation","example":{"block":40420495,"is_verified":true,"merkelroot":"Nostrum sit natus molestiae eos vero asperiores.","timestamp":"Eaque pariatur fugit aut quis unde."},"required":["timestamp","is_verified"]},"HCObserverEvaluationData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":1840650877,"format":"int32"},"is_challenge_timestamp_ok":{"type":"boolean","description":"IsChallengeTimestampOK","example":true},"is_challenger_signature_ok":{"type":"boolean","description":"IsChallengerSignatureOK","example":true},"is_evaluation_result_ok":{"type":"boolean","description":"IsEvaluationResultOK","example":true},"is_evaluation_timestamp_ok":{"type":"boolean","description":"IsEvaluationTimestampOK","example":false},"is_process_timestamp_ok":{"type":"boolean","description":"IsProcessTimestampOK","example":false},"is_recipient_signature_ok":{"type":"boolean","description":"IsRecipientSignatureOK","example":false},"merkelroot":{"type":"string","description":"Merkelroot","example":"Non fugit minus rerum perspiciatis."},"timestamp":{"type":"string","description":"Timestamp","example":"Laborum earum consequatur laudantium voluptate labore."}},"description":"Data of Observer's evaluation","example":{"block":1444027584,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":true,"is_recipient_signature_ok":false,"merkelroot":"Eum reprehenderit voluptas.","timestamp":"Esse consequatur dolores et quia dolorem."},"required":["timestamp","is_challenge_timestamp_ok","is_process_timestamp_ok","is_evaluation_timestamp_ok","is_recipient_signature_ok","is_challenger_signature_ok","is_evaluation_result_ok"]},"HCSummaryStats":{"type":"object","properties":{"no_of_invalid_evaluation_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid evaluation evaluated by observers","example":5900538327284429290,"format":"int64"},"no_of_invalid_signatures_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid signatures evaluated by observers","example":1393119094628501191,"format":"int64"},"no_of_slow_responses_observed_by_observers":{"type":"integer","description":"challenges failed due to slow-responses evaluated by observers","example":7714745372964672338,"format":"int64"},"total_challenges_evaluated_by_challenger":{"type":"integer","description":"Total number of challenges evaluated by the challenger node","example":4684109697608452883,"format":"int64"},"total_challenges_issued":{"type":"integer","description":"Total number of challenges issued","example":6783586767659252994,"format":"int64"},"total_challenges_processed_by_recipient":{"type":"integer","description":"Total number of challenges processed by the recipient node","example":6794427730061759200,"format":"int64"},"total_challenges_verified":{"type":"integer","description":"Total number of challenges verified by observers","example":704824728518361458,"format":"int64"}},"description":"HealthCheck-Challenge SummaryStats","example":{"no_of_invalid_evaluation_observed_by_observers":2377123480972823726,"no_of_invalid_signatures_observed_by_observers":7341694566868789458,"no_of_slow_responses_observed_by_observers":4651771404068608177,"total_challenges_evaluated_by_challenger":1392541113987507237,"total_challenges_issued":2608428411496439228,"total_challenges_processed_by_recipient":1068809106616915197,"total_challenges_verified":3369219388396092252},"required":["total_challenges_issued","total_challenges_processed_by_recipient","total_challenges_evaluated_by_challenger","total_challenges_verified","no_of_slow_responses_observed_by_observers","no_of_invalid_signatures_observed_by_observers","no_of_invalid_evaluation_observed_by_observers"]},"HcDetailedLogsMessage":{"type":"object","properties":{"challenge":{"$ref":"#/components/schemas/HCChallengeData"},"challenge_id":{"type":"string","description":"ID of the challenge","example":"Veniam voluptatem."},"challenger_evaluation":{"$ref":"#/components/schemas/HCEvaluationData"},"challenger_id":{"type":"string","description":"ID of the challenger","example":"Perspiciatis illum."},"message_type":{"type":"string","description":"type of the message","example":"Est voluptatibus cupiditate sit amet."},"observer_evaluation":{"$ref":"#/components/schemas/HCObserverEvaluationData"},"observers":{"type":"array","items":{"type":"string","example":"Est optio sit qui recusandae."},"description":"List of observer IDs","example":["Ut labore.","Consequatur natus accusantium et architecto.","Ut ullam ut consequatur."]},"recipient_id":{"type":"string","description":"ID of the recipient","example":"Et et ut alias iure consectetur."},"response":{"$ref":"#/components/schemas/HCChallengeData"},"sender_id":{"type":"string","description":"ID of the sender's node","example":"Quis nesciunt ut natus laboriosam."},"sender_signature":{"type":"string","description":"signature of the sender","example":"Delectus libero quis."}},"description":"HealthCheck challenge message data","example":{"challenge":{"block":161855103,"merkelroot":"Occaecati in reiciendis quia repudiandae.","timestamp":"Necessitatibus sed est sunt."},"challenge_id":"Necessitatibus ducimus odio aut sapiente nobis perspiciatis.","challenger_evaluation":{"block":372559801,"is_verified":false,"merkelroot":"Impedit quis autem et et neque.","timestamp":"Explicabo dolore."},"challenger_id":"Ullam nulla dolorum quam.","message_type":"Adipisci porro ea.","observer_evaluation":{"block":1881554591,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":false,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Hic voluptas doloremque eligendi et magni.","timestamp":"Perspiciatis earum."},"observers":["Totam excepturi.","Quis quae.","Et earum cupiditate voluptas suscipit ipsa.","Esse sit asperiores debitis vel."],"recipient_id":"Architecto dolore qui magni.","response":{"block":1874672230,"merkelroot":"Voluptate ipsa et ut dicta temporibus ut.","timestamp":"Deserunt mollitia est a labore."},"sender_id":"Eveniet possimus in iusto harum soluta.","sender_signature":"Harum ut iure."},"required":["challenge_id","message_type","sender_id","challenger_id","observers","recipient_id"]},"HcSummaryStatsResult":{"type":"object","properties":{"hc_summary_stats":{"$ref":"#/components/schemas/HCSummaryStats"}},"example":{"hc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":17085067897739032,"no_of_invalid_signatures_observed_by_observers":1070531802164886396,"no_of_slow_responses_observed_by_observers":2452954398688763778,"total_challenges_evaluated_by_challenger":1497037936453433297,"total_challenges_issued":5146044089880070113,"total_challenges_processed_by_recipient":5356106859537814149,"total_challenges_verified":5844922895958038468}},"required":["hc_summary_stats"]},"Image":{"type":"object","properties":{"expires_in":{"type":"string","description":"Image expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_amount":{"type":"number","description":"The amount that's required to be preburned","default":1,"example":20,"format":"double","minimum":0.00001},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"example":{"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100},"required":["image_id","expires_in","total_estimated_fee"]},"ImageRes":{"type":"object","properties":{"estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001},"expires_in":{"type":"string","description":"Image expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"example":{"estimated_fee":100,"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ"},"required":["image_id","expires_in","estimated_fee"]},"InternetRareness":{"type":"object","properties":{"alternative_rare_on_internet_dict_as_json_compressed_b64":{"type":"string","description":"Base64 Compressed Json of Alternative Rare On Internet Dict","example":"Suscipit magni."},"earliest_available_date_of_internet_results":{"type":"string","description":"Earliest Available Date of Internet Results","example":"Dolorum dignissimos est enim eveniet alias exercitationem."},"min_number_of_exact_matches_in_page":{"type":"integer","description":"Minimum Number of Exact Matches on Page","example":2534542180,"format":"int32"},"rare_on_internet_graph_json_compressed_b64":{"type":"string","description":"Base64 Compressed JSON of Rare On Internet Graph","example":"Id corporis."},"rare_on_internet_summary_table_as_json_compressed_b64":{"type":"string","description":"Base64 Compressed JSON Table of Rare On Internet Summary","example":"Dolores eligendi."}},"example":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Occaecati in libero eos.","earliest_available_date_of_internet_results":"Qui velit qui iste.","min_number_of_exact_matches_in_page":2612472777,"rare_on_internet_graph_json_compressed_b64":"Perspiciatis voluptatem aut.","rare_on_internet_summary_table_as_json_compressed_b64":"Architecto sequi magnam."}},"MetricsResult":{"type":"object","properties":{"self_healing_execution_events_stats":{"$ref":"#/components/schemas/SHExecutionStats"},"self_healing_trigger_events_stats":{"type":"array","items":{"$ref":"#/components/schemas/SHTriggerStats"},"description":"Self-healing trigger stats","example":[{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."}]}},"example":{"self_healing_execution_events_stats":{"total_file_healing_failed":5551622164662787660,"total_files_healed":8671724886982383594,"total_reconstruction_not_required_evaluations_approved":3509617877318915873,"total_reconstruction_required_evaluations_approved":2598935111695686044,"total_reconstruction_required_evaluations_not_approved":645871039112296182,"total_reconstruction_required_hash_mismatch":6198218032159021896,"total_reconstructions_not_required_evaluations_not_approved":6224481363842689139,"total_self_healing_events_accepted":5676342644268881237,"total_self_healing_events_acknowledged":305624170386109632,"total_self_healing_events_evaluations_unverified":1687102203985295374,"total_self_healing_events_evaluations_verified":7201039114224972892,"total_self_healing_events_issued":7624509276581647432,"total_self_healing_events_rejected":8106553798825109777},"self_healing_trigger_events_stats":[{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."}]},"required":["self_healing_trigger_events_stats","self_healing_execution_events_stats"]},"NftDetail":{"type":"object","properties":{"alt_rare_on_internet_dict_json_b64":{"type":"string","description":"Base64 Compressed Json of Alternative Rare On Internet Dict","example":"Ipsa ut eaque."},"copies":{"type":"integer","description":"Number of copies","default":1,"example":1,"format":"int64","minimum":1,"maximum":1000},"creator_name":{"type":"string","description":"Name of the artist","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"Artist website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"drawing_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"earliest_date_of_results":{"type":"string","description":"Earliest Available Date of Internet Results","example":"Nobis minima vitae autem."},"green_address":{"type":"boolean","description":"Green address","example":false},"hentai_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"is_likely_dupe":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"is_rare_on_internet":{"type":"boolean","description":"is this nft rare on the internet","example":false},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"min_num_exact_matches_on_page":{"type":"integer","description":"Minimum Number of Exact Matches on Page","example":122039552,"format":"int32"},"neutral_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"nsfw_score":{"type":"number","description":"NSFW Average score","example":1,"format":"float","minimum":0,"maximum":1},"porn_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"preview_thumbnail":{"type":"string","description":"Preview Image","example":"Q29uc2VxdXVudHVyIHN1bnQgaXBzYW0gY3VtcXVlIHJlcnVtIGRvbG9yLg==","format":"binary"},"rare_on_internet_graph_json_b64":{"type":"string","description":"Base64 Compressed JSON of Rare On Internet Graph","example":"Enim earum animi sed consequatur."},"rare_on_internet_summary_table_json_b64":{"type":"string","description":"Base64 Compressed JSON Table of Rare On Internet Summary","example":"Molestiae optio sit."},"rareness_score":{"type":"number","description":"Average pastel rareness score","example":1,"format":"float","minimum":0,"maximum":1},"royalty":{"type":"number","description":"how much artist should get on all future resales","example":0.7857079421562394,"format":"double"},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"sexy_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"storage_fee":{"type":"integer","description":"Storage fee %","example":100,"format":"int64"},"thumbnail_1":{"type":"string","description":"Thumbnail_1 image","example":"QXV0IG51bXF1YW0u","format":"binary"},"thumbnail_2":{"type":"string","description":"Thumbnail_2 image","example":"UXVpIGN1bXF1ZSByZWN1c2FuZGFlIG1haW9yZXMu","format":"binary"},"title":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"version":{"type":"integer","description":"version","example":1,"format":"int64"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"example":{"alt_rare_on_internet_dict_json_b64":"Nostrum laudantium ea dolores occaecati incidunt.","copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","drawing_nsfw_score":1,"earliest_date_of_results":"Ut qui qui.","green_address":true,"hentai_nsfw_score":1,"is_likely_dupe":false,"is_rare_on_internet":false,"keywords":"Renaissance, sfumato, portrait","min_num_exact_matches_on_page":596076702,"neutral_nsfw_score":1,"nsfw_score":1,"porn_nsfw_score":1,"preview_thumbnail":"Q29uc2VxdWF0dXIgbm9uIGRvbG9yIHBhcmlhdHVyIGVhIGVvcy4=","rare_on_internet_graph_json_b64":"Quia amet necessitatibus est.","rare_on_internet_summary_table_json_b64":"Eaque iste at recusandae quae.","rareness_score":1,"royalty":0.09918013589498481,"series_name":"Famous artist","sexy_nsfw_score":1,"storage_fee":100,"thumbnail_1":"Vm9sdXB0YXMgdm9sdXB0YXMgcmVwdWRpYW5kYWUgZW9zIHZvbHVwdGF0aWJ1cyB2b2x1cHRhcy4=","thumbnail_2":"RG9sb3IgZXVtIGlkIGxhYm9yaW9zYW0gbW9sZXN0aWFzIGJsYW5kaXRpaXMu","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","version":1,"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["rareness_score","nsfw_score","is_likely_dupe","is_rare_on_internet","title","description","creator_name","copies","creator_pastelid","txid"]},"NftRegisterPayload":{"type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"key":{"type":"string","description":"Passphrase of the owner's PastelID","example":"Basic abcdef12345"},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Autem impedit sunt alias velit tempore."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/components/schemas/ThumbnailcoordinateResponseBody"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"Request of the registration NFT","example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Corporis explicabo est.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["creator_name","name","creator_pastelid","spendable_address","maximum_fee","key"]},"NftSearchResult":{"type":"object","properties":{"match_index":{"type":"integer","description":"Sort index of the match based on score.This must be used to sort results on UI.","example":2898803378117933666,"format":"int64"},"matches":{"type":"array","items":{"$ref":"#/components/schemas/FuzzyMatch"},"description":"Match result details","example":[{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."}]},"nft":{"$ref":"#/components/schemas/NftSummary"}},"example":{"match_index":8624382637488210084,"matches":[{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."}],"nft":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"UmF0aW9uZSBlc3QgZmFjaWxpcy4=","thumbnail_2":"TnVsbGEgbGFib3J1bSBxdW9zIHZlbC4=","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}},"required":["nft","matches","match_index"]},"NftSummary":{"type":"object","properties":{"copies":{"type":"integer","description":"Number of copies","default":1,"example":1,"format":"int64","minimum":1,"maximum":1000},"creator_name":{"type":"string","description":"Name of the artist","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"Artist website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"is_likely_dupe":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"nsfw_score":{"type":"number","description":"NSFW Average score","example":1,"format":"float","minimum":0,"maximum":1},"rareness_score":{"type":"number","description":"Average pastel rareness score","example":1,"format":"float","minimum":0,"maximum":1},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"thumbnail_1":{"type":"string","description":"Thumbnail_1 image","example":"Vm9sdXB0YXRlcyBkb2xvciBwbGFjZWF0IGV1bSBxdWlzIHNpdCBldC4=","format":"binary"},"thumbnail_2":{"type":"string","description":"Thumbnail_2 image","example":"UXVpc3F1YW0gcmVwZWxsYXQgc2VxdWkgdm9sdXB0YXR1bS4=","format":"binary"},"title":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"NFT response","example":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"Tm9uIGltcGVkaXQgZXggYSBjb25zZWN0ZXR1ciBjb25zZXF1YXR1ci4=","thumbnail_2":"Vm9sdXB0YXMgcXVpIGNvbW1vZGkgZGVsZW5pdGkgcXVpIHV0Lg==","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["title","description","creator_name","copies","creator_pastelid","txid"]},"ObserverEvaluationData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":763035756,"format":"int32"},"is_challenge_timestamp_ok":{"type":"boolean","description":"IsChallengeTimestampOK","example":false},"is_challenger_signature_ok":{"type":"boolean","description":"IsChallengerSignatureOK","example":true},"is_evaluation_result_ok":{"type":"boolean","description":"IsEvaluationResultOK","example":false},"is_evaluation_timestamp_ok":{"type":"boolean","description":"IsEvaluationTimestampOK","example":false},"is_process_timestamp_ok":{"type":"boolean","description":"IsProcessTimestampOK","example":true},"is_recipient_signature_ok":{"type":"boolean","description":"IsRecipientSignatureOK","example":false},"merkelroot":{"type":"string","description":"Merkelroot","example":"Dignissimos laboriosam vero."},"reason":{"type":"string","description":"Reason","example":"Laudantium animi architecto ea."},"timestamp":{"type":"string","description":"Timestamp","example":"Rerum ut cum quo et."},"true_hash":{"type":"string","description":"TrueHash","example":"Veniam quidem quia amet et qui."}},"description":"Data of Observer's evaluation","example":{"block":1830926455,"is_challenge_timestamp_ok":true,"is_challenger_signature_ok":false,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":false,"merkelroot":"Est amet labore rerum consequuntur numquam autem.","reason":"Culpa doloremque id.","timestamp":"Tenetur exercitationem et reprehenderit quo sed.","true_hash":"Minima amet laudantium necessitatibus vero laborum."},"required":["timestamp","is_challenge_timestamp_ok","is_process_timestamp_ok","is_evaluation_timestamp_ok","is_recipient_signature_ok","is_challenger_signature_ok","is_evaluation_result_ok","true_hash"]},"RegisterCollectionRequestBody":{"type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"collection_item_copy_count":{"type":"integer","description":"item copy count in the collection","default":1,"example":10,"format":"int64","minimum":1,"maximum":1000},"collection_name":{"type":"string","description":"name of the collection","example":"galaxies"},"green":{"type":"boolean","description":"green","default":false,"example":false},"item_type":{"type":"string","description":"type of items, store by collection","example":"sense","enum":["sense","nft"]},"list_of_pastelids_of_authorized_contributors":{"type":"array","items":{"type":"string","example":"Ad neque quia."},"description":"list of authorized contributors","example":["apple","banana","orange"]},"max_collection_entries":{"type":"integer","description":"max no of entries in the collection","example":5000,"format":"int64","minimum":1,"maximum":10000},"max_permitted_open_nsfw_score":{"type":"number","description":"max open nfsw score sense and nft items can have","example":0.5,"format":"double","minimum":0,"maximum":1},"minimum_similarity_score_to_first_entry_in_collection":{"type":"number","description":"min similarity for 1st entry to have","example":0.5,"format":"double","minimum":0,"maximum":1},"no_of_days_to_finalize_collection":{"type":"integer","description":"no of days to finalize collection","default":7,"example":5,"format":"int64","minimum":1,"maximum":7},"royalty":{"type":"number","description":"royalty fee","default":0,"example":2.32,"format":"double","minimum":0,"maximum":20},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","collection_item_copy_count":10,"collection_name":"galaxies","green":false,"item_type":"sense","list_of_pastelids_of_authorized_contributors":["apple","banana","orange"],"max_collection_entries":5000,"max_permitted_open_nsfw_score":0.5,"minimum_similarity_score_to_first_entry_in_collection":0.5,"no_of_days_to_finalize_collection":5,"royalty":2.32,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["collection_name","item_type","list_of_pastelids_of_authorized_contributors","max_collection_entries","max_permitted_open_nsfw_score","minimum_similarity_score_to_first_entry_in_collection","app_pastelid","spendable_address"]},"RegisterCollectionResponse":{"type":"object","properties":{"task_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"RegisterRequestBody":{"type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"At modi cupiditate dolorum fugiat aspernatur."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/components/schemas/Thumbnailcoordinate"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"image_id":"VK7mpAqZ","issued_copies":1,"keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut praesentium similique.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["image_id","creator_name","name","creator_pastelid","spendable_address","maximum_fee"]},"RegisterResult":{"type":"object","properties":{"task_id":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8}},"example":{"task_id":"n6Qn6TFM"},"required":["task_id"]},"RegisterTaskResponseBody":{"type":"object","properties":{"id":{"type":"string","description":"JOb ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"states":{"type":"array","items":{"$ref":"#/components/schemas/TaskState"},"description":"List of states from the very beginning of the process","example":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}]},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]},"ticket":{"$ref":"#/components/schemas/NftRegisterPayload"},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64}},"description":"RegisterTaskResponseBody result type (default view)","example":{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"required":["id","status","ticket"]},"Registration":{"type":"object","properties":{"files":{"type":"array","items":{"$ref":"#/components/schemas/File"},"description":"List of files","example":[{"activation_attempts":[{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true}],"activation_txid":"Sequi qui eum et dolorum esse.","base_file_id":"Rerum iusto accusamus.","burn_txn_id":"Delectus dignissimos id dolorem et totam deserunt.","cascade_metadata_ticket_id":"Numquam voluptas.","done_block":4949105958821157300,"file_id":"Perspiciatis accusantium sed eveniet qui qui.","file_index":"Cumque est et fugiat qui.","hash_of_original_big_file":"Accusamus repellat commodi architecto aut quidem inventore.","is_concluded":false,"name_of_original_big_file_with_ext":"Perferendis unde qui qui dicta.","reg_txid":"Quasi est.","registration_attempts":[{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"}],"req_amount":0.11360537957590923,"req_burn_txn_amount":0.2916254651446542,"size_of_original_big_file":0.5209096568475247,"start_block":918621255,"task_id":"Sit tenetur labore illum numquam quia.","upload_timestamp":"1973-10-04T06:27:17Z","uuid_key":"Voluptatem aliquam molestias."},{"activation_attempts":[{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true}],"activation_txid":"Sequi qui eum et dolorum esse.","base_file_id":"Rerum iusto accusamus.","burn_txn_id":"Delectus dignissimos id dolorem et totam deserunt.","cascade_metadata_ticket_id":"Numquam voluptas.","done_block":4949105958821157300,"file_id":"Perspiciatis accusantium sed eveniet qui qui.","file_index":"Cumque est et fugiat qui.","hash_of_original_big_file":"Accusamus repellat commodi architecto aut quidem inventore.","is_concluded":false,"name_of_original_big_file_with_ext":"Perferendis unde qui qui dicta.","reg_txid":"Quasi est.","registration_attempts":[{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"}],"req_amount":0.11360537957590923,"req_burn_txn_amount":0.2916254651446542,"size_of_original_big_file":0.5209096568475247,"start_block":918621255,"task_id":"Sit tenetur labore illum numquam quia.","upload_timestamp":"1973-10-04T06:27:17Z","uuid_key":"Voluptatem aliquam molestias."},{"activation_attempts":[{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true}],"activation_txid":"Sequi qui eum et dolorum esse.","base_file_id":"Rerum iusto accusamus.","burn_txn_id":"Delectus dignissimos id dolorem et totam deserunt.","cascade_metadata_ticket_id":"Numquam voluptas.","done_block":4949105958821157300,"file_id":"Perspiciatis accusantium sed eveniet qui qui.","file_index":"Cumque est et fugiat qui.","hash_of_original_big_file":"Accusamus repellat commodi architecto aut quidem inventore.","is_concluded":false,"name_of_original_big_file_with_ext":"Perferendis unde qui qui dicta.","reg_txid":"Quasi est.","registration_attempts":[{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"}],"req_amount":0.11360537957590923,"req_burn_txn_amount":0.2916254651446542,"size_of_original_big_file":0.5209096568475247,"start_block":918621255,"task_id":"Sit tenetur labore illum numquam quia.","upload_timestamp":"1973-10-04T06:27:17Z","uuid_key":"Voluptatem aliquam molestias."},{"activation_attempts":[{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true}],"activation_txid":"Sequi qui eum et dolorum esse.","base_file_id":"Rerum iusto accusamus.","burn_txn_id":"Delectus dignissimos id dolorem et totam deserunt.","cascade_metadata_ticket_id":"Numquam voluptas.","done_block":4949105958821157300,"file_id":"Perspiciatis accusantium sed eveniet qui qui.","file_index":"Cumque est et fugiat qui.","hash_of_original_big_file":"Accusamus repellat commodi architecto aut quidem inventore.","is_concluded":false,"name_of_original_big_file_with_ext":"Perferendis unde qui qui dicta.","reg_txid":"Quasi est.","registration_attempts":[{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"}],"req_amount":0.11360537957590923,"req_burn_txn_amount":0.2916254651446542,"size_of_original_big_file":0.5209096568475247,"start_block":918621255,"task_id":"Sit tenetur labore illum numquam quia.","upload_timestamp":"1973-10-04T06:27:17Z","uuid_key":"Voluptatem aliquam molestias."}]}},"example":{"files":[{"activation_attempts":[{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true}],"activation_txid":"Sequi qui eum et dolorum esse.","base_file_id":"Rerum iusto accusamus.","burn_txn_id":"Delectus dignissimos id dolorem et totam deserunt.","cascade_metadata_ticket_id":"Numquam voluptas.","done_block":4949105958821157300,"file_id":"Perspiciatis accusantium sed eveniet qui qui.","file_index":"Cumque est et fugiat qui.","hash_of_original_big_file":"Accusamus repellat commodi architecto aut quidem inventore.","is_concluded":false,"name_of_original_big_file_with_ext":"Perferendis unde qui qui dicta.","reg_txid":"Quasi est.","registration_attempts":[{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"}],"req_amount":0.11360537957590923,"req_burn_txn_amount":0.2916254651446542,"size_of_original_big_file":0.5209096568475247,"start_block":918621255,"task_id":"Sit tenetur labore illum numquam quia.","upload_timestamp":"1973-10-04T06:27:17Z","uuid_key":"Voluptatem aliquam molestias."},{"activation_attempts":[{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true},{"activation_attempt_at":"1987-10-12T17:16:09Z","error_message":"Voluptas debitis adipisci vero ut provident.","file_id":"Culpa consectetur quas tempore eaque.","id":7740701512258571566,"is_successful":true}],"activation_txid":"Sequi qui eum et dolorum esse.","base_file_id":"Rerum iusto accusamus.","burn_txn_id":"Delectus dignissimos id dolorem et totam deserunt.","cascade_metadata_ticket_id":"Numquam voluptas.","done_block":4949105958821157300,"file_id":"Perspiciatis accusantium sed eveniet qui qui.","file_index":"Cumque est et fugiat qui.","hash_of_original_big_file":"Accusamus repellat commodi architecto aut quidem inventore.","is_concluded":false,"name_of_original_big_file_with_ext":"Perferendis unde qui qui dicta.","reg_txid":"Quasi est.","registration_attempts":[{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"},{"error_message":"Corrupti repellat consequatur consequatur et ipsam.","file_id":"Ipsa deserunt qui velit quasi quia.","finished_at":"1998-02-09T20:04:12Z","id":1336197498951122785,"is_successful":true,"processor_sns":"Sit perferendis quia ut totam.","reg_started_at":"2005-10-11T10:17:47Z"}],"req_amount":0.11360537957590923,"req_burn_txn_amount":0.2916254651446542,"size_of_original_big_file":0.5209096568475247,"start_block":918621255,"task_id":"Sit tenetur labore illum numquam quia.","upload_timestamp":"1973-10-04T06:27:17Z","uuid_key":"Voluptatem aliquam molestias."}]},"required":["files"]},"RegistrationAttempt":{"type":"object","properties":{"error_message":{"type":"string","description":"Error Message","example":"Ipsam illum."},"file_id":{"type":"string","description":"File ID","example":"Illum ducimus id saepe."},"finished_at":{"type":"string","description":"Finished At in datetime format","example":"2012-05-14T04:22:17Z","format":"date-time"},"id":{"type":"integer","description":"ID","example":815724289313716634,"format":"int64"},"is_successful":{"type":"boolean","description":"Indicates if the registration was successful","example":false},"processor_sns":{"type":"string","description":"Processor SNS","example":"Consequatur qui."},"reg_started_at":{"type":"string","description":"Registration Started At in datetime format","example":"2006-04-11T23:09:47Z","format":"date-time"}},"example":{"error_message":"Id quis.","file_id":"Voluptatem sapiente molestiae.","finished_at":"1971-06-02T04:41:34Z","id":3414400387391588062,"is_successful":true,"processor_sns":"Possimus omnis est aut libero.","reg_started_at":"2014-06-06T15:28:52Z"},"required":["id","file_id","reg_started_at","finished_at"]},"RespondedTicket":{"type":"object","properties":{"is_reconstruction_required":{"type":"boolean","example":true},"missing_keys":{"type":"array","items":{"type":"string","example":"Similique doloribus placeat itaque rerum architecto."},"example":["Sunt est dolor hic.","Ipsum accusantium rerum.","Et debitis."]},"reconstructed_file_hash":{"type":"string","example":"UXVpIG5vc3RydW0gZXQgaGFydW0gZW5pbSB2b2x1cHRhdGVzIGV0Lg==","format":"binary"},"ticket_type":{"type":"string","example":"Odio qui vel sunt minus alias."},"tx_id":{"type":"string","example":"Est occaecati officia."}},"example":{"is_reconstruction_required":true,"missing_keys":["Dolor harum laborum non qui.","Unde soluta ad."],"reconstructed_file_hash":"SW4gdm9sdXB0YXRlbSBzZWQgZW5pbSBpbXBlZGl0Lg==","ticket_type":"Consequuntur necessitatibus eveniet.","tx_id":"Mollitia magni aut molestiae similique."}},"ResponseData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":1926592463,"format":"int32"},"hash":{"type":"string","description":"Hash","example":"Aut unde."},"merkelroot":{"type":"string","description":"Merkelroot","example":"Accusantium sit dolor quaerat."},"timestamp":{"type":"string","description":"Timestamp","example":"Qui voluptatibus magni consectetur voluptate dolorum."}},"description":"Data of response","example":{"block":558397639,"hash":"Explicabo molestias aliquam repellendus nobis.","merkelroot":"Laudantium sit.","timestamp":"Mollitia qui laudantium maiores."},"required":["timestamp"]},"RestoreFile":{"type":"object","properties":{"activated_volumes":{"type":"integer","description":"Total volumes that are activated","example":5277715179027470780,"format":"int64"},"registered_volumes":{"type":"integer","description":"Total registered volumes","example":1426244910437790821,"format":"int64"},"total_volumes":{"type":"integer","description":"Total volumes of selected file","example":1289073817904375199,"format":"int64"},"volumes_activated_in_recovery_flow":{"type":"integer","description":"Total volumes that are activated in restore process","example":2466850311106163935,"format":"int64"},"volumes_registration_in_progress":{"type":"integer","description":"Total volumes with in-progress registration","example":1416448990018310995,"format":"int64"},"volumes_with_pending_registration":{"type":"integer","description":"Total volumes with pending registration","example":7624270104237442069,"format":"int64"}},"example":{"activated_volumes":8733724021026231447,"registered_volumes":994841821210668727,"total_volumes":8434349129993203093,"volumes_activated_in_recovery_flow":718328378407419058,"volumes_registration_in_progress":6951484627609331717,"volumes_with_pending_registration":8912379064408317396},"required":["total_volumes","registered_volumes","volumes_with_pending_registration","volumes_registration_in_progress","activated_volumes","volumes_activated_in_recovery_flow"]},"RestoreRequestBody":{"type":"object","properties":{"app_pastelId":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelId":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["app_pastelId"]},"SHExecutionStats":{"type":"object","properties":{"total_file_healing_failed":{"type":"integer","description":"Total number of file healings that failed","example":7601055110588379011,"format":"int64"},"total_files_healed":{"type":"integer","description":"Total number of files healed","example":4017086950567849191,"format":"int64"},"total_reconstruction_not_required_evaluations_approved":{"type":"integer","description":"Total number of reconstructions not required approved by verifier nodes","example":7292219726328051514,"format":"int64"},"total_reconstruction_required_evaluations_approved":{"type":"integer","description":"Total number of reconstructions approved by verifier nodes","example":864880277735263997,"format":"int64"},"total_reconstruction_required_evaluations_not_approved":{"type":"integer","description":"Total number of reconstructions not approved by verifier nodes","example":3933090910401687684,"format":"int64"},"total_reconstruction_required_hash_mismatch":{"type":"integer","description":"Total number of reconstructions required with hash mismatch","example":2640050113801816041,"format":"int64"},"total_reconstructions_not_required_evaluations_not_approved":{"type":"integer","description":"Total number of reconstructions not required evaluation not approved by verifier nodes","example":4083130699704998640,"format":"int64"},"total_self_healing_events_accepted":{"type":"integer","description":"Total number of events accepted (healer node evaluated that reconstruction is required)","example":7495715008841322457,"format":"int64"},"total_self_healing_events_acknowledged":{"type":"integer","description":"Total number of events acknowledged by the healer node","example":8589474276749660183,"format":"int64"},"total_self_healing_events_evaluations_unverified":{"type":"integer","description":"Total number of challenge evaluations unverified by verifier nodes","example":4980421385447295589,"format":"int64"},"total_self_healing_events_evaluations_verified":{"type":"integer","description":"Total number of challenges verified","example":371785026389084519,"format":"int64"},"total_self_healing_events_issued":{"type":"integer","description":"Total number of self-healing events issued","example":1991747603062736881,"format":"int64"},"total_self_healing_events_rejected":{"type":"integer","description":"Total number of events rejected (healer node evaluated that reconstruction is not required)","example":7163669102428250342,"format":"int64"}},"description":"Self-healing execution stats","example":{"total_file_healing_failed":2101824502205008832,"total_files_healed":1168774161270963739,"total_reconstruction_not_required_evaluations_approved":6223014132452500449,"total_reconstruction_required_evaluations_approved":5141508266112142562,"total_reconstruction_required_evaluations_not_approved":3455696881956251886,"total_reconstruction_required_hash_mismatch":2253001553567223832,"total_reconstructions_not_required_evaluations_not_approved":7648635050709611073,"total_self_healing_events_accepted":1595757187094497253,"total_self_healing_events_acknowledged":3168003967489424384,"total_self_healing_events_evaluations_unverified":4267651162698538645,"total_self_healing_events_evaluations_verified":5062369179517526000,"total_self_healing_events_issued":4222917846085163198,"total_self_healing_events_rejected":4638256339478094874},"required":["total_self_healing_events_issued","total_self_healing_events_acknowledged","total_self_healing_events_rejected","total_self_healing_events_accepted","total_self_healing_events_evaluations_verified","total_reconstruction_required_evaluations_approved","total_reconstruction_not_required_evaluations_approved","total_self_healing_events_evaluations_unverified","total_reconstruction_required_evaluations_not_approved","total_reconstructions_not_required_evaluations_not_approved","total_files_healed","total_file_healing_failed"]},"SHTriggerStats":{"type":"object","properties":{"list_of_nodes":{"type":"string","description":"Comma-separated list of offline nodes","example":"Repellat magni sint qui iure ipsa."},"nodes_offline":{"type":"integer","description":"Number of nodes offline","example":6906079468246402139,"format":"int64"},"total_files_identified":{"type":"integer","description":"Total number of files identified for self-healing","example":8050790234578223711,"format":"int64"},"total_tickets_identified":{"type":"integer","description":"Total number of tickets identified for self-healing","example":6509921496688036133,"format":"int64"},"trigger_id":{"type":"string","description":"Unique identifier for the trigger","example":"Reprehenderit molestias odio."}},"description":"Self-healing trigger stats","example":{"list_of_nodes":"Distinctio iste natus enim iste.","nodes_offline":6460897271932646186,"total_files_identified":485475253540290975,"total_tickets_identified":2263624505302267545,"trigger_id":"Nesciunt et."},"required":["trigger_id","nodes_offline","list_of_nodes","total_files_identified","total_tickets_identified"]},"SelfHealingChallengeData":{"type":"object","properties":{"block":{"type":"integer","example":2069511093,"format":"int32"},"event_tickets":{"type":"array","items":{"$ref":"#/components/schemas/EventTicket"},"example":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}]},"merkelroot":{"type":"string","example":"Rerum repellat id."},"nodes_on_watchlist":{"type":"string","example":"Ipsum deleniti eos voluptatem libero."},"timestamp":{"type":"string","example":"Et sequi ut praesentium ducimus."}},"example":{"block":457183182,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Omnis aut ut veniam minima quisquam sapiente.","nodes_on_watchlist":"Sed nam distinctio deleniti deleniti officia.","timestamp":"Similique atque facere exercitationem molestias enim."}},"SelfHealingMessage":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/SelfHealingMessageData"},"message_type":{"type":"string","example":"Fuga voluptatem ipsum voluptas eius."},"sender_id":{"type":"string","example":"Expedita dolor ea quos."},"sender_signature":{"type":"string","example":"Vm9sdXB0YXRlbSBldC4=","format":"binary"},"trigger_id":{"type":"string","example":"Ut voluptas cum est molestiae."}},"example":{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Repudiandae incidunt veniam debitis repellendus modi.","sender_id":"Voluptas atque magni qui dolore et rerum.","sender_signature":"RmFjZXJlIHJlcHVkaWFuZGFlLg==","trigger_id":"Iure non."}},"SelfHealingMessageData":{"type":"object","properties":{"challenger_id":{"type":"string","example":"Animi totam laboriosam et qui iure."},"event_details":{"$ref":"#/components/schemas/SelfHealingChallengeData"},"recipient_id":{"type":"string","example":"Omnis soluta occaecati maiores ut voluptatum dolor."},"response":{"$ref":"#/components/schemas/SelfHealingResponseData"},"verification":{"$ref":"#/components/schemas/SelfHealingVerificationData"}},"example":{"challenger_id":"Aut ut.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Unde officiis ipsum quidem qui et cumque.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}}},"SelfHealingMessageKV":{"type":"object","properties":{"message_type":{"type":"string","description":"Message type","example":"Neque omnis tempora."},"messages":{"type":"array","items":{"$ref":"#/components/schemas/SelfHealingMessage"},"description":"Self-healing messages","example":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}},"example":{"message_type":"Est amet natus quo consequuntur id.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}},"SelfHealingReport":{"type":"object","properties":{"messages":{"type":"array","items":{"$ref":"#/components/schemas/SelfHealingMessageKV"},"description":"Map of message type to SelfHealingMessages","example":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},"example":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},"SelfHealingReportKV":{"type":"object","properties":{"event_id":{"type":"string","description":"Challenge ID","example":"Blanditiis natus beatae amet maiores."},"report":{"$ref":"#/components/schemas/SelfHealingReport"}},"example":{"event_id":"Itaque facilis ut et.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}},"SelfHealingReports":{"type":"object","properties":{"reports":{"type":"array","items":{"$ref":"#/components/schemas/SelfHealingReportKV"},"description":"Map of challenge ID to SelfHealingReport","example":[{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}]}},"example":{"reports":[{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}]}},"SelfHealingResponseData":{"type":"object","properties":{"block":{"type":"integer","example":2136714775,"format":"int32"},"event_id":{"type":"string","example":"Unde quia magni minima."},"merkelroot":{"type":"string","example":"Ut quae atque ut suscipit."},"responded_ticket":{"$ref":"#/components/schemas/RespondedTicket"},"timestamp":{"type":"string","example":"Voluptatum explicabo quaerat aspernatur sit illum."},"verifiers":{"type":"array","items":{"type":"string","example":"Vel doloremque facere odio quis adipisci."},"example":["Nisi explicabo aperiam.","In debitis quia atque molestias.","Asperiores culpa sunt sit."]}},"example":{"block":1212931187,"event_id":"Similique porro voluptatem cum consequatur ut et.","merkelroot":"Ex rerum.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Quam itaque in et optio alias quo.","verifiers":["Est cum dolor debitis aut iure aperiam.","Sapiente aspernatur quaerat est quae architecto deleniti.","In officiis aspernatur deserunt."]}},"SelfHealingVerificationData":{"type":"object","properties":{"block":{"type":"integer","example":1141342755,"format":"int32"},"event_id":{"type":"string","example":"Ut officia."},"merkelroot":{"type":"string","example":"Excepturi laboriosam."},"timestamp":{"type":"string","example":"Accusantium dolorum dolor qui ut."},"verified_ticket":{"$ref":"#/components/schemas/VerifiedTicket"},"verifiers_data":{"type":"object","example":{"Aut velit.":"RXN0IGF1dCBhdXQgYXV0IGV0Lg=="},"additionalProperties":{"type":"string","example":"U2l0IGVzdC4=","format":"binary"}}},"example":{"block":1107087745,"event_id":"Maiores minima dolor quo.","merkelroot":"Omnis molestias animi mollitia quibusdam vel.","timestamp":"Dignissimos impedit.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Autem soluta.":"UHJvdmlkZW50IGVhIG1vbGVzdGlhZSBlYSBldCBuaXNpIGF1dC4=","Debitis voluptatem.":"RWEgbW9sZXN0aWFzLg==","Provident aperiam molestiae ipsum.":"QXRxdWUgYXV0IGVuaW0gY29uc2VxdWF0dXIu"}}},"StartProcessingRequestBody":{"type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"burn_txids":{"type":"array","items":{"type":"string","example":"Nulla fugit consectetur est distinctio magni."},"description":"List of Burn transaction IDs for multi-volume registration","example":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"]},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","burn_txids":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"],"make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["app_pastelid"]},"StartProcessingRequestBody2":{"type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Nihil molestias asperiores reiciendis quos quibusdam quasi."},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","open_api_group_id":"Quod autem repellendus fugiat beatae officia voluptatem.","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["burn_txid","app_pastelid"]},"StartProcessingResult":{"type":"object","properties":{"task_id":{"type":"string","description":"Task ID of processing task","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"StorageMessage":{"type":"object","properties":{"challenge":{"$ref":"#/components/schemas/ChallengeData"},"challenge_id":{"type":"string","description":"ID of the challenge","example":"Fugiat accusantium sit incidunt dolore assumenda quasi."},"challenger_evaluation":{"$ref":"#/components/schemas/EvaluationData"},"challenger_id":{"type":"string","description":"ID of the challenger","example":"Amet quaerat blanditiis consequatur et perferendis."},"message_type":{"type":"string","description":"type of the message","example":"Harum qui est."},"observer_evaluation":{"$ref":"#/components/schemas/ObserverEvaluationData"},"observers":{"type":"array","items":{"type":"string","example":"Dolorum nulla eveniet non vitae qui ducimus."},"description":"List of observer IDs","example":["Nam et.","Vero consectetur molestiae."]},"recipient_id":{"type":"string","description":"ID of the recipient","example":"Aut quaerat ut rem sunt alias autem."},"response":{"$ref":"#/components/schemas/ResponseData"},"sender_id":{"type":"string","description":"ID of the sender's node","example":"Qui ipsa dolorum velit aliquam eum quod."},"sender_signature":{"type":"string","description":"signature of the sender","example":"Voluptate harum voluptatem dolorum atque sequi aspernatur."}},"description":"Storage challenge message data","example":{"challenge":{"block":626674453,"end_index":1362782358179080945,"file_hash":"Molestias aut beatae.","merkelroot":"Sint aut repellat consequatur dignissimos voluptatibus.","start_index":6285852628941175332,"timestamp":"Odio deleniti omnis maiores dolorem."},"challenge_id":"Harum quas ab.","challenger_evaluation":{"block":346663458,"hash":"Voluptatem sint recusandae.","is_verified":true,"merkelroot":"Et rem ducimus maxime aut.","timestamp":"Fugit eaque nesciunt eum quasi."},"challenger_id":"At pariatur ullam et.","message_type":"Illo nulla reiciendis sit explicabo sunt.","observer_evaluation":{"block":1725989442,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":false,"merkelroot":"Ut provident pariatur.","reason":"Ut quia repellendus.","timestamp":"Voluptas exercitationem quisquam id accusantium voluptatibus.","true_hash":"Architecto sit quidem deserunt rem dolore aut."},"observers":["Corporis consectetur distinctio.","Nostrum doloribus."],"recipient_id":"Temporibus vitae aliquam incidunt ut autem.","response":{"block":2076283382,"hash":"Dolor autem quo vero quia quod omnis.","merkelroot":"Et ullam officiis libero.","timestamp":"Qui non quibusdam."},"sender_id":"Voluptatem autem.","sender_signature":"Unde excepturi corrupti et et."},"required":["challenge_id","message_type","sender_id","challenger_id","observers","recipient_id"]},"SummaryStatsResult":{"type":"object","properties":{"sc_summary_stats":{"$ref":"#/components/schemas/HCSummaryStats"}},"example":{"sc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":2982554539974798863,"no_of_invalid_signatures_observed_by_observers":804645458629257575,"no_of_slow_responses_observed_by_observers":6016941875889227877,"total_challenges_evaluated_by_challenger":9084935928395605172,"total_challenges_issued":554226313255902356,"total_challenges_processed_by_recipient":9153767776266110855,"total_challenges_verified":6924812056467069635}},"required":["sc_summary_stats"]},"TaskHistory":{"type":"object","properties":{"details":{"$ref":"#/components/schemas/Details"},"message":{"type":"string","description":"message string (if any)","example":"Balance less than maximum fee provied in the request, could not gather enough confirmations..."},"status":{"type":"string","description":"past status string","example":"Started, Image Probed, Downloaded..."},"timestamp":{"type":"string","description":"Timestamp of the status creation","example":"2006-01-02T15:04:05Z07:00"}},"example":{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},"required":["status"]},"TaskResponseTiny":{"type":"object","properties":{"id":{"type":"string","description":"JOb ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]},"ticket":{"$ref":"#/components/schemas/NftRegisterPayload"},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64}},"description":"TaskResponse result type (tiny view)","example":{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"required":["id","status","ticket"]},"TaskResponseTinyCollection":{"type":"array","items":{"$ref":"#/components/schemas/TaskResponseTiny"},"description":"RegisterTasksResponseBody is the result type for an array of TaskResponse (tiny view)","example":[{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"}]},"TaskState":{"type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"Thumbnailcoordinate":{"type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"ThumbnailcoordinateResponseBody":{"type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail (default view)","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"UploadAssetRequestBody":{"type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"Vml0YWUgdXQgaWxsdW0gZnVnaWF0IHF1aWRlbSBuZWNlc3NpdGF0aWJ1cyB1bmRlLg==","format":"binary"},"filename":{"type":"string","description":"For internal use"},"hash":{"type":"string","description":"For internal use"},"size":{"type":"integer","description":"For internal use","format":"int64"}},"example":{"file":"RXQgZG9sb3IgdG90YW0gZnVnaWF0IGVhcXVlIG5paGlsIGV0Lg=="},"required":["file"]},"UploadImageRequestBody":{"type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"TGFib3Jpb3NhbSBuZXF1ZSBvZGl0IHF1aWJ1c2RhbS4=","format":"binary"},"filename":{"type":"string","description":"For internal use"}},"example":{"file":"SXBzdW0gcXVpYS4="},"required":["file"]},"UserImageUploadPayload":{"type":"object","properties":{"content":{"type":"string","description":"File to upload (byte array of the file content)","example":"iVBORw0KGgoAAAANSUhEUgAAASoAAACpCAMAAACrt4DfAAABUFBMVEVPk//////m5ubl5eUkJUYwbP/k5OT60J360J7y8vLt7e34+Pj19fXw8PD5+fnr6+v61an60qMgFi9IkP9Qlf88i/9RmP9Djv//0pkuaf82iP/w7OQACj//1aH/1JUhZf83dP91pfoAADwQGEKgu/MbHkPhxLALXv/z7uOOtPyCq/jw9P4hHz3gwJ04eP8aYv/F0e2VtfX//PSvyf+/0/xEetVKiOwkGC3W3Ore6P0rQ3xpnvsGEkAuLEjgupALFUG3yfAAACe+t8qnr9nHvMZBPFFeU1x7oO/RvbqYquHbx71kjP0+gP/74sSKpv6StPbX5P+zxvBgjeJAXJo/RWlBW5VBYKY1RHNAcMQsJDgdFDNDV4opMFdRdLvZ3egnNWM1LDyGens7asO8oIjBqpZWTVo6OVRnYm54Z2eehnanjnvJqYqdgWiykW7sz62jrtzuoXzIAAAXaElEQVR4nOVd+18TSbbPg9CdEEK3nRdpQkSCBKIGAioIIqujzojy0Luu7syyO1dxVr139v//7dapU/1Kujt9qjshfu4ZHQ8JkJNvzvn2t05VV6XSYLMZZj7eAjilbCaTLYA35/XmwSuClwcvD17R682DNwdeAbwSeAvsF886Hn8xs9PJbJ3vtM+2Dw5SYNWDlY2z7Yutc/g1mesJKmN7WXBT1w0VvNj5zka10ajVaoZhpGxjXxi1WqNxsNHeynbM/+dQmZ3Zi41Uo1JzITRsDLFGamO3K2KeZqhmk4pKxGJ7x9upRjhKLrwYXNtbpjn2oEZDlc34eANRueKbHRXVrB3VrE9UmX56dzMyTA5clc1j0xxXUC4PobK9LIScmgVDbJhlfDyBFzMRkOUVwct7vTx4GBB4GBB4GIbl7W82KkScHLS2zMxYgkIPUfKggl4KUitrpZFf7flyw8Bn5/cpDjCC4/VLO9WGFE4CrUp5Z9ZMOKjA2nO8iUNlzm5UavI4WWiddacGKhdN+dEoOSqR9ebeSpyEcoHV2NxPKig/mgqCCgHK2l7GziXwCl5vDjyMCry818uDh1HZXgE8HtXegRxDBYFlJhEU9xyd51F8iAWmkrgCMsvanh+j+9EohuZDno5XcNGoebmZTEY5YG104wYVxugD3D4xCTqfaSeXUQ5YbV4NUyNBE4FqKxWbzP2sYjDpcG1QJSNBsx61112pjAMosMbKrCkX1EgJ6geVzeMkRh+g0XwQjc6ld6m6nGJG7diUCSpN4/bJqPXxpRRaZWXeHJdaz05SrZ8bY0wpNAMY68dX6+0xpxRapd3JTBQqX0YfVOsOec6Oiorl9biLz7Laihk1qAFG91XrPl5qASxdYmZ5ae4VvN4cePPgFb1eHry81ytaXqFbHnvxWWaUL6MFhd48eHPgFbxeCTyOBYCSdvAZr1o/H4uWCrLalvnDqvXdCRWfZZUL8wdV6zuNySLFyX0CUEk3jGfdUc06UfUnc+kbwGqjHxbUiIZx2usNNoxLNqPbXgGcOa83D17R6+W9Xt7jdbavASnGV2f9kKAWiuDNe7058Aper+T1OD6pbDZrcRfzMj6eSC3miYSyvCJ4ea+XBw8+u+vIKbDKhjkbGBRT68wTjM48wegeDxPK9rK2Ny4Jel1Isbxqd34otT55Rnes0jYDuT0WVNmslWAs07J22SGjOx4UYNYuQIvRmTeY6/Dr+rvXiBTD6rjvE5SAyi7ArFV2jrdgY5Hx8VIFMM7eQR7yuNfLe728x5s/v1akGFZb/aGgCkWvNx/kIbd7vZJLrTPksrbnx+h+3G6n1gB5dmNo9DK32FhdZoYY3fEKQdyOaeTjQflkxyFBJd9puVytlt/ev3//rVEFc0HG3Crtd5k/hFpfkRkhl6vl++8ePbxh2X+9++uH+29TVbQH99//7cZfCR+BsWKOCypIMNsb4HaH0YO43ZPrO3SZwNLpw6MbN+7cmXHszp07HLOHH/k/7LnfKNlaa5uBBejH7Q6j+3E7FuAcGLKY5c2DUwzy8l4v7/WK+2RKL1cfvPu7ByZ/e/iAglVlr+gXXpA3H+Q5+ASJhRFqfSChXKklAdSjh6NxYnaDBFUqlZBad8RCwhKUSlTl1K/RgKJmFaOrzlSrdWKHqlz98DEiUDM0rkqBEh2+DF6nWvcWYImIVOrXG1GBYlDR9AKjdvYmgwswolp3FeA8WBEsyMsHeflBr79JKr/q/egpxS6J76lQGZt930CLoz0/LELFAlGtZ7ZIMr36DwJQDKoPZGlbOfcXC1HV+oBY8KEpWQmaIX3s1fcPKUjN3LlPzSr2GlOq1vttSlJV3xNoCrF6X6XmVWWnf41qPaQAx4sUE1bvyANpo5ANLcCI/RcsQOQzsNFePszrbxA4XQYpllf/TBGxMs76I4OPikCgWKCq9cwlIamqH2g8ZWP121uquOoGJZSfWg8XC0lJUJMgFMoPSNc+t328T8PK2AijqetR63vR1We5/E9pqMhYQVqNWa37cHtYAZoEpqq+k0eKYUUcCm6MLMCoaj2fjM1Tyk+OqIRRub02X0zmLUYUCyO5naCpqo/iJBVwO0mLGm0zilqPIBZ8aEpGgkYPvfxARid4sKKNBo3MNKn14lZ0Uq/+Gi+pmD0kUXvteKJqfUQB9qN39Mrl2EjNzDwmsdVBP0IB+gySBwuQM5aUPHd5+wSlQOsn+ButBCuX5DfkhwpFLGQDxcI2QSn8LQGoZj5SRoPGthmWUJFbe4lI0Ohxl1OxlIJld95R0qpqTo1aJ0xold/+PQmoaI32yt5k1HqE4TKh/sofkqi/mZkblJ4oVCBxcsuvACnN9IC2epEQdQJSgdudXykVWE6iwR5jIt5KLcpIObZUt+0jAalUo5tEa8+HpogS1Lwg9PTKv0kB89vq4CM3KDK0tjMdat08IHy+5X/JILV09PutgYfu/DdpYcx41Dp1KVqG0P4sp2QGgGsvms1Pq2teqEhkVUlicoszFi5uGenlBzxOlCXC+E8Sqlvfm2rzaMZThHcekaDaw5CBs8UiGB9vPsjjy2ESmIjfoVCVDFSr/24qqtJs/rHkfvQLRVlZnRj6stlE1Tpl8YsUVEu6oqmaomrf3IRFugQaK+Y0qHXKpysD1dInXQVTlOb3Q4ewbtCaoZmE1brMjSMlyjI9CagOofwAKI1hpb04lIOqchl/KZqzgK807EVY4Fg8pkwq06Fa/YNBxOqP/Z+DZasGGlS13WK0ZY0le1ljqeD1HLEQof/ix+1zbcpCIQuqtWBsBpC6UhRdZzBZmdX8vLYmAZWxU7Sn5GWXzfrQFEmC0tZUIVSH36Ni9eSKZRKHSIW/KvvTPHq8KgHVZv/a1XqfotUFVEtH+pehkYqfHf7RhOqDtNJ1BpbKXe2PNTpUK0lBlZW+cWSOtFDPgqqp/XtwpDJsa0tfNcglTlMq1CHgxf45WiJDlUoVbLUue+OIc7vNgn0TktcTt5V6vLzzGGn5pwUV4+dPj5+EI7V0ddQEflI5TfF04n9U5a4EVA37xqQF+9Yjl2ffeuTySl6Pi4XA/stotZ65JC3pF1DdBc7Rvy6FVOHq4TeVIaVzmtKBr4CpeCGqMlkFfZiYN7nFlKAZygjQnVXsjTfv/r76xJff1w6f/K4xOcVggT/su6H6FMCNgaXKZFXl3IemJqrWMyRZ5WSVpgPvNPVvV4eDaK2tLn359GfTqjegde7CNVDhPyaTVbXd2FDF3JQpQ+nrebKKZQcfBB99u5pZOlxdXQNbfbK09vzrURMEuq6IslPgAggXP07w7AuZrBJQxdmUybk53t4YpuD1nG0EfDYPSF/IZRXDCXKGp1ZTP/r29esVs9+/fjvSGU7wMNIUTykVqw9+hOMlk1VGuxBp84C0vWXA4MYwsbekOJPIqltHQDuWDGDvnsFjmaKjLuDPMqRQJ3CKUqG/AIDdvSUB1ZkZYw/jRCQoZbEsh4pR9pe7ql1bOpQaoMX+MFdTBI/zJxlIAA48q6Fk56Lh6Mva4RoVqs2gedOJqXXarVrl1F+efwO5xPUkVBXnaqwsnWeQuNJpHDVedirgpCCkOr8YNvXvV38hQrWSEFTymzIR72qr/E+zCc0nztT8cgZ5AoWHpcbJSYeU4uXJhjKK1uSjG/YE5KIOQ0Gmypr/26BCFXdTJmR0/ozllbye2LzR8ooZvtWX8EwaVJWndd6mUzGlVCEHPn/7rOEVUcMrnsbbnlCkOj4J+PArIBYns/pTkqKDSZs03+pLNPnAQ7y8HiLn9Tg+cTeQo0FVe7aM7xOFN6cfVf3z8dKTW1calBa/LqI2V5DFtatbT5Ye/2kPl8XPMFt+Rrn4IlQSG8glJkGJWaWLt4k6gb99RXsMGnT1CqWDhmSlcznBvryCwc/aY10M/3QcEvLfoVNe2tj0oamJqnWTIhaMX0T54SiY85XS/IwTMbe+K3jN45KKExbTE5+xAbH0vcl/AuC1oFLrv1BeeyM2VDHVOmW9eqr2kw2VoB2A6isOmg8/NcU1j6ePysuw+Ql76atfm6JtxeWWgOonQgUa2xyqOGrdhs5vq/WBLXr9NualqPXaK7t4NKv9pHmyCmkelQL3bous+twElFRU7dYveUWBqg05E3Vj3rTXywToqmC1Pjc7XIW7UlAhDyEw6nPgqicvQBJoiKLCaR8EffMF56ovWJk616d2Af5Mee2LjFtXSW/3HEOCUqAynjlcxUHi0lPRnt86vMWQAv2pogjVeIWCNV+wJ5+r4hIAT2s2VM8oxX+cSUaCykN1TlE3Ly2twMFioxVsHzTvfjqyJvtQaumqBYvS/P7pSBNTERbfC7XwkvDSsMgxKbXux+0R1HqX0gWtvHIUqH3JF61gHXSUqgrJrirOo7qATigqm+9uUz6lymU2rlp3xELWTqisO6Fcnp1Qzs7KmQJJMx8sW8IKqUrX3VNXDEINmzNcnuPAhj+sCsLHsSH+hmXSXFHDZvSsfYxG1mZ0J7WydkINeqN1VfjhLBnCLVspEILLdTdV8VaCjtqcAaciJPz/qqArHNRojqSykKJt6mDMDdeexOEscZZ3EO4ZAasdvFqu1xUES7PeOS891SYrDo8mtAOiid/IOzIsxer15dsHtHE63j1yrSthiDt2MNJ4+exnoap4AWoCD8QC4BAJxQEEbLCzhYmIifbzs5fEXbKMzfhQxVTrs8Ud8s56RuW2yBDB4ry0OK2Ljp+G3I4jZpVfCjmf8QTTGJ+TN14z2liAZLXu4BN7LegcbXcTbrXbOLvHe0/I7eKCyBNJE/qUVyV37YTC6dPb9Jes7BZjrwX1qT3aUYqX9A3jGFSiU2UNfjUFu1GYZoro7CE3qXb6icV7MlA1SiNWGGfHL0GLJjlsgEpc+q13L9a5WLxlt/ZQMIirpFgUI5VV5Wk4oJPYseJQ/dTEtS2g11W8Eipi3IK0jqWmKUJTqVitWLG0jgKasTIKqshZ5b9wIdK69QxpLRpCxcaCtvTmC82YpNKFbLB6d1xpiVUwSPiq4Lc6qf2JUO0ksG497hUwTxsFYuDQ4kPqRnmFXI7zEK7xtMonanTnIaR2UksPrbKVnYoDOum8frCMk6L2MiAcPlupZrVpgOlRdSo4PkQVTxvRcKtNya2TdLIy7OUanKd0HYfDFq2L+lOFXkAOs9csqBp9O9sDcxJQjT6gky5Caz/XVUWsLxONT8VWUlb9qaLeeLdUxXWO8Aipo4dmXCyM6YBOSmchT+zDYOi/LNsrgngvTySVKqa2rApEOaVZg2ZMxWUJqtqzCjBOZwHTSL5fxbjdpG+FXbNmslChoyjAgSBvtIhRjia6obiyQWjUJvnVUtX0lBz5YxLuXbageopyQTSkdNGEwpl3PjGKc6b2xRDQQ7EgU38wWzMNt05mSHfkCqvWsbR4m0os9cSmKCyowjVV4sKIgpR3XwBRUpsYrbE/JqhoMzZ83pRegZWf6oro0om1UxZWuHbB7ouq2HOAwQ2vwzplRktYOT0EVawDOiXnAcGTqMBUucl7VtaCKhspDWdNVftiKFY3qmIxkYSowtlS0gGdaa/H8UnmgM6uRHfhP8uiUafjYiBLJUD9ieY6fo2DZZxaVupPJRowzgzE9R/QSbt7RGB1u8knZXDZnuqatFLscSCOlnGJEU9CRaPXesg9I9exLSFtSTYaMDtPKly86JphdwwXIqP0AtyIcw/cKrvFMUAlfUBnRuLoDKZD+fWOj4ndzO5CSuMJx5dDwvPLEuWXSsU7oNOBKmjVXsHrBa3aW8A9eU3S/sXCoBfDpYEuBsNOE8ESDnhDBNKUyoY0Eid5GW3XWr1Yq/YwjWbjHtBZkvm4a0+XsTfMswpr0JVZYnKC94zh3/ormWNfalN3QCdtUbawyvGyIgQTHxErYmU67/ip/D+rpaWrckgZG+a0bSIuoRcAK5AMumKPihW76SluiMARDaTXMr1NzF9hL+FNxDPxD+iUSqtU7aUuLoRisYIqAMOlDFxe8Wby8n+kkDI2zawDlfTdEIDViHtsSqPusbE9ybRKGdVXy5g7AA3vSGkisZDMOVD1Pw/kzjyrXEof0Dl0j00iap2vCpUY3eC7+UWpKzpyN78/AldaQaNPx/XXdYU+8YBWO+MJZTP69at1XD4ke9ZdLfWUy08+foZxHoxlrFuP4LGnKelfPZ1H/vTpjWNuZeN1rvvGutLxLp9iDWrgrq03xVyDunu/hVS7nyBUMe9d9hzQST8ShEHQuLnYOmG/o8PrTxU3kCii26d32FMnrdw92h011m83x3JAp+Qd8a4DOulHwkNCLeZyLd4lEQ1PTVWsWXj4C89st3Ls214b5ANHtvwO6JS+I95KniQO6KQcesCBusdwYtbjN8sKbERrwRouwzPnPfiuxcV7NLDgXpHpPaCTspecBVQut961oRrqLMAz3XXxjTSwaqUpPqBz4Ti6uHptAcWgKoVDVVq3vzX3OjJWld30OKCS2RfU74DOTsSZ5jIj89wAVNowUozeB6FavFmLBpa4AdApwNg7DfntXxV6VOeIAzojvY/yPRdQVgEOt6sYVG94Afbc3734Otq22PnSyAM6IxzL6dq/KvauaANehImuci3nQUrQ+ptAqHY9ULHEipC6jf1pP6AzQpOv/NoLFBMLbfjRvh9UXEK2WwM/sDhSZVV2kj8jPmmosqNW8Q0jlVs8SfunlaLxJ06Gf2IEuwNRJQ5V/H1B0wPcHj6BWr459L5ZBXKySg9BVedJ1V0f/onFe+FYDQYlrdZdBYi7zRaL1s6yYV6ee/PDXt7jhZ0R74uUkOvpN/UBpDhTcbE+jNXNEKwq3dJgUC6vOOwVuDcf5LHrWLIHdNqfXfCSR3+kmKV9sBJIpf1/IgSrxp45HNRUHdBpM0I/SIkGItU6RVQ6ij2rrCgdfOzUL6nCarCx2/cJasrUuhVLx/8yOCCn3LZ+nhaJpdShrVdXREqlz32YSmDlz+0BF7/rVOvBBcgGzm2fvPK59rnyal9Ak+503rx507e+6gbkVCBWlXZQUD4FGLH/ggWYwNkQfl7/bBirSghSTJR20z62nwv7odzwi9S2+xHCkzobIkgsUE4c8f0Uz4ZqMOw9M6xa5+kh222FIpVbHPo4ts2woGKdOJK4BLW5fcOLVflmOFSMr05LXqBKp4E8ZdkAtVfa/dCgpkut21EN8FUYUQlrLW64qrC7kQvhKSutXrtfo7EzKqhxqHXSmVv+ud65cGM1GikAq/d6e2e/293f2X7dGw0UmBup3dFBDRdgZLWeyEluAV7fabaX70V630BZvd76eq83gqSc73eugpWtfuyQw05ys5Mn3gGdaf/r8mVZjJ1rEd853RbFx2Gkuma0oGTPB0Q3WQnq4obMSi0ap8sbDnAqKxholKCmSK27oTLbjbEmFUsrYMRGmxDUWNW6bAGyXO9sGcY4kwoEg2Gc04KSOiE3P3YrLqw0xphU0BNdySd0tnKYJXWad9h1mY2ee+MswNYOhkcKSuI07/FJUBcjmJcnvdHvWc56J125oKZIrXti6VxEkN4S1spdyAd1DQd0Rsn1fvo0+Sps9V5mzBhBDQ6XwwswSKgnL977l+VkwVrsHez3ExflgR65tUcWC04XLWPun6wnBtbi+slWAkFN9IBOkto7P1lPhLNavZMtM6mg0lOh1oej2j9txQWLDalP9zpJBhVbrctOboXTqDm7fTNOHbZ6N7e7QLdJBhX5gE6/VrK3mS7VYA/oW8/1+7sHkbssAwnV6x1smcXkg/J6fliMYSI+hDwdr2O2T9YjNu9cOK2f7JRYYYwpqGlQ637csNAxd09z61GTq9XqtQ6Oxx3UNKh1v6jgZfd3yrleqxUG2CJj8fXcaXuvY04gKLpaH7EULb4wtsnT7Mweb5zeW+/1ADIHs0UGEUul9fV7Bxu7XYh5gkGNOKDTx6MvcJRZS1gq9c1+J7u1tb15enoimvD3Tk5PN7cvzrv9ft+cn594UMOo/B/J2Q2X8T0dSAAAAABJRU5ErkJggg==","format":"binary"},"filename":{"type":"string","description":"File name of the user image","example":"image_name.png","pattern":"^.*\\.(png|PNG|jpeg|JPEG|jpg|JPG)$"}},"description":"User image upload payload","example":{"content":"iVBORw0KGgoAAAANSUhEUgAAASoAAACpCAMAAACrt4DfAAABUFBMVEVPk//////m5ubl5eUkJUYwbP/k5OT60J360J7y8vLt7e34+Pj19fXw8PD5+fnr6+v61an60qMgFi9IkP9Qlf88i/9RmP9Djv//0pkuaf82iP/w7OQACj//1aH/1JUhZf83dP91pfoAADwQGEKgu/MbHkPhxLALXv/z7uOOtPyCq/jw9P4hHz3gwJ04eP8aYv/F0e2VtfX//PSvyf+/0/xEetVKiOwkGC3W3Ore6P0rQ3xpnvsGEkAuLEjgupALFUG3yfAAACe+t8qnr9nHvMZBPFFeU1x7oO/RvbqYquHbx71kjP0+gP/74sSKpv6StPbX5P+zxvBgjeJAXJo/RWlBW5VBYKY1RHNAcMQsJDgdFDNDV4opMFdRdLvZ3egnNWM1LDyGens7asO8oIjBqpZWTVo6OVRnYm54Z2eehnanjnvJqYqdgWiykW7sz62jrtzuoXzIAAAXaElEQVR4nOVd+18TSbbPg9CdEEK3nRdpQkSCBKIGAioIIqujzojy0Luu7syyO1dxVr139v//7dapU/1Kujt9qjshfu4ZHQ8JkJNvzvn2t05VV6XSYLMZZj7eAjilbCaTLYA35/XmwSuClwcvD17R682DNwdeAbwSeAvsF886Hn8xs9PJbJ3vtM+2Dw5SYNWDlY2z7Yutc/g1mesJKmN7WXBT1w0VvNj5zka10ajVaoZhpGxjXxi1WqNxsNHeynbM/+dQmZ3Zi41Uo1JzITRsDLFGamO3K2KeZqhmk4pKxGJ7x9upRjhKLrwYXNtbpjn2oEZDlc34eANRueKbHRXVrB3VrE9UmX56dzMyTA5clc1j0xxXUC4PobK9LIScmgVDbJhlfDyBFzMRkOUVwct7vTx4GBB4GBB4GIbl7W82KkScHLS2zMxYgkIPUfKggl4KUitrpZFf7flyw8Bn5/cpDjCC4/VLO9WGFE4CrUp5Z9ZMOKjA2nO8iUNlzm5UavI4WWiddacGKhdN+dEoOSqR9ebeSpyEcoHV2NxPKig/mgqCCgHK2l7GziXwCl5vDjyMCry818uDh1HZXgE8HtXegRxDBYFlJhEU9xyd51F8iAWmkrgCMsvanh+j+9EohuZDno5XcNGoebmZTEY5YG104wYVxugD3D4xCTqfaSeXUQ5YbV4NUyNBE4FqKxWbzP2sYjDpcG1QJSNBsx61112pjAMosMbKrCkX1EgJ6geVzeMkRh+g0XwQjc6ld6m6nGJG7diUCSpN4/bJqPXxpRRaZWXeHJdaz05SrZ8bY0wpNAMY68dX6+0xpxRapd3JTBQqX0YfVOsOec6Oiorl9biLz7Laihk1qAFG91XrPl5qASxdYmZ5ae4VvN4cePPgFb1eHry81ytaXqFbHnvxWWaUL6MFhd48eHPgFbxeCTyOBYCSdvAZr1o/H4uWCrLalvnDqvXdCRWfZZUL8wdV6zuNySLFyX0CUEk3jGfdUc06UfUnc+kbwGqjHxbUiIZx2usNNoxLNqPbXgGcOa83D17R6+W9Xt7jdbavASnGV2f9kKAWiuDNe7058Aper+T1OD6pbDZrcRfzMj6eSC3miYSyvCJ4ea+XBw8+u+vIKbDKhjkbGBRT68wTjM48wegeDxPK9rK2Ny4Jel1Isbxqd34otT55Rnes0jYDuT0WVNmslWAs07J22SGjOx4UYNYuQIvRmTeY6/Dr+rvXiBTD6rjvE5SAyi7ArFV2jrdgY5Hx8VIFMM7eQR7yuNfLe728x5s/v1akGFZb/aGgCkWvNx/kIbd7vZJLrTPksrbnx+h+3G6n1gB5dmNo9DK32FhdZoYY3fEKQdyOaeTjQflkxyFBJd9puVytlt/ev3//rVEFc0HG3Crtd5k/hFpfkRkhl6vl++8ePbxh2X+9++uH+29TVbQH99//7cZfCR+BsWKOCypIMNsb4HaH0YO43ZPrO3SZwNLpw6MbN+7cmXHszp07HLOHH/k/7LnfKNlaa5uBBejH7Q6j+3E7FuAcGLKY5c2DUwzy8l4v7/WK+2RKL1cfvPu7ByZ/e/iAglVlr+gXXpA3H+Q5+ASJhRFqfSChXKklAdSjh6NxYnaDBFUqlZBad8RCwhKUSlTl1K/RgKJmFaOrzlSrdWKHqlz98DEiUDM0rkqBEh2+DF6nWvcWYImIVOrXG1GBYlDR9AKjdvYmgwswolp3FeA8WBEsyMsHeflBr79JKr/q/egpxS6J76lQGZt930CLoz0/LELFAlGtZ7ZIMr36DwJQDKoPZGlbOfcXC1HV+oBY8KEpWQmaIX3s1fcPKUjN3LlPzSr2GlOq1vttSlJV3xNoCrF6X6XmVWWnf41qPaQAx4sUE1bvyANpo5ANLcCI/RcsQOQzsNFePszrbxA4XQYpllf/TBGxMs76I4OPikCgWKCq9cwlIamqH2g8ZWP121uquOoGJZSfWg8XC0lJUJMgFMoPSNc+t328T8PK2AijqetR63vR1We5/E9pqMhYQVqNWa37cHtYAZoEpqq+k0eKYUUcCm6MLMCoaj2fjM1Tyk+OqIRRub02X0zmLUYUCyO5naCpqo/iJBVwO0mLGm0zilqPIBZ8aEpGgkYPvfxARid4sKKNBo3MNKn14lZ0Uq/+Gi+pmD0kUXvteKJqfUQB9qN39Mrl2EjNzDwmsdVBP0IB+gySBwuQM5aUPHd5+wSlQOsn+ButBCuX5DfkhwpFLGQDxcI2QSn8LQGoZj5SRoPGthmWUJFbe4lI0Ohxl1OxlIJld95R0qpqTo1aJ0xold/+PQmoaI32yt5k1HqE4TKh/sofkqi/mZkblJ4oVCBxcsuvACnN9IC2epEQdQJSgdudXykVWE6iwR5jIt5KLcpIObZUt+0jAalUo5tEa8+HpogS1Lwg9PTKv0kB89vq4CM3KDK0tjMdat08IHy+5X/JILV09PutgYfu/DdpYcx41Dp1KVqG0P4sp2QGgGsvms1Pq2teqEhkVUlicoszFi5uGenlBzxOlCXC+E8Sqlvfm2rzaMZThHcekaDaw5CBs8UiGB9vPsjjy2ESmIjfoVCVDFSr/24qqtJs/rHkfvQLRVlZnRj6stlE1Tpl8YsUVEu6oqmaomrf3IRFugQaK+Y0qHXKpysD1dInXQVTlOb3Q4ewbtCaoZmE1brMjSMlyjI9CagOofwAKI1hpb04lIOqchl/KZqzgK807EVY4Fg8pkwq06Fa/YNBxOqP/Z+DZasGGlS13WK0ZY0le1ljqeD1HLEQof/ix+1zbcpCIQuqtWBsBpC6UhRdZzBZmdX8vLYmAZWxU7Sn5GWXzfrQFEmC0tZUIVSH36Ni9eSKZRKHSIW/KvvTPHq8KgHVZv/a1XqfotUFVEtH+pehkYqfHf7RhOqDtNJ1BpbKXe2PNTpUK0lBlZW+cWSOtFDPgqqp/XtwpDJsa0tfNcglTlMq1CHgxf45WiJDlUoVbLUue+OIc7vNgn0TktcTt5V6vLzzGGn5pwUV4+dPj5+EI7V0ddQEflI5TfF04n9U5a4EVA37xqQF+9Yjl2ffeuTySl6Pi4XA/stotZ65JC3pF1DdBc7Rvy6FVOHq4TeVIaVzmtKBr4CpeCGqMlkFfZiYN7nFlKAZygjQnVXsjTfv/r76xJff1w6f/K4xOcVggT/su6H6FMCNgaXKZFXl3IemJqrWMyRZ5WSVpgPvNPVvV4eDaK2tLn359GfTqjegde7CNVDhPyaTVbXd2FDF3JQpQ+nrebKKZQcfBB99u5pZOlxdXQNbfbK09vzrURMEuq6IslPgAggXP07w7AuZrBJQxdmUybk53t4YpuD1nG0EfDYPSF/IZRXDCXKGp1ZTP/r29esVs9+/fjvSGU7wMNIUTykVqw9+hOMlk1VGuxBp84C0vWXA4MYwsbekOJPIqltHQDuWDGDvnsFjmaKjLuDPMqRQJ3CKUqG/AIDdvSUB1ZkZYw/jRCQoZbEsh4pR9pe7ql1bOpQaoMX+MFdTBI/zJxlIAA48q6Fk56Lh6Mva4RoVqs2gedOJqXXarVrl1F+efwO5xPUkVBXnaqwsnWeQuNJpHDVedirgpCCkOr8YNvXvV38hQrWSEFTymzIR72qr/E+zCc0nztT8cgZ5AoWHpcbJSYeU4uXJhjKK1uSjG/YE5KIOQ0Gmypr/26BCFXdTJmR0/ozllbye2LzR8ooZvtWX8EwaVJWndd6mUzGlVCEHPn/7rOEVUcMrnsbbnlCkOj4J+PArIBYns/pTkqKDSZs03+pLNPnAQ7y8HiLn9Tg+cTeQo0FVe7aM7xOFN6cfVf3z8dKTW1calBa/LqI2V5DFtatbT5Ye/2kPl8XPMFt+Rrn4IlQSG8glJkGJWaWLt4k6gb99RXsMGnT1CqWDhmSlcznBvryCwc/aY10M/3QcEvLfoVNe2tj0oamJqnWTIhaMX0T54SiY85XS/IwTMbe+K3jN45KKExbTE5+xAbH0vcl/AuC1oFLrv1BeeyM2VDHVOmW9eqr2kw2VoB2A6isOmg8/NcU1j6ePysuw+Ql76atfm6JtxeWWgOonQgUa2xyqOGrdhs5vq/WBLXr9NualqPXaK7t4NKv9pHmyCmkelQL3bous+twElFRU7dYveUWBqg05E3Vj3rTXywToqmC1Pjc7XIW7UlAhDyEw6nPgqicvQBJoiKLCaR8EffMF56ovWJk616d2Af5Mee2LjFtXSW/3HEOCUqAynjlcxUHi0lPRnt86vMWQAv2pogjVeIWCNV+wJ5+r4hIAT2s2VM8oxX+cSUaCykN1TlE3Ly2twMFioxVsHzTvfjqyJvtQaumqBYvS/P7pSBNTERbfC7XwkvDSsMgxKbXux+0R1HqX0gWtvHIUqH3JF61gHXSUqgrJrirOo7qATigqm+9uUz6lymU2rlp3xELWTqisO6Fcnp1Qzs7KmQJJMx8sW8IKqUrX3VNXDEINmzNcnuPAhj+sCsLHsSH+hmXSXFHDZvSsfYxG1mZ0J7WydkINeqN1VfjhLBnCLVspEILLdTdV8VaCjtqcAaciJPz/qqArHNRojqSykKJt6mDMDdeexOEscZZ3EO4ZAasdvFqu1xUES7PeOS891SYrDo8mtAOiid/IOzIsxer15dsHtHE63j1yrSthiDt2MNJ4+exnoap4AWoCD8QC4BAJxQEEbLCzhYmIifbzs5fEXbKMzfhQxVTrs8Ud8s56RuW2yBDB4ry0OK2Ljp+G3I4jZpVfCjmf8QTTGJ+TN14z2liAZLXu4BN7LegcbXcTbrXbOLvHe0/I7eKCyBNJE/qUVyV37YTC6dPb9Jes7BZjrwX1qT3aUYqX9A3jGFSiU2UNfjUFu1GYZoro7CE3qXb6icV7MlA1SiNWGGfHL0GLJjlsgEpc+q13L9a5WLxlt/ZQMIirpFgUI5VV5Wk4oJPYseJQ/dTEtS2g11W8Eipi3IK0jqWmKUJTqVitWLG0jgKasTIKqshZ5b9wIdK69QxpLRpCxcaCtvTmC82YpNKFbLB6d1xpiVUwSPiq4Lc6qf2JUO0ksG497hUwTxsFYuDQ4kPqRnmFXI7zEK7xtMonanTnIaR2UksPrbKVnYoDOum8frCMk6L2MiAcPlupZrVpgOlRdSo4PkQVTxvRcKtNya2TdLIy7OUanKd0HYfDFq2L+lOFXkAOs9csqBp9O9sDcxJQjT6gky5Caz/XVUWsLxONT8VWUlb9qaLeeLdUxXWO8Aipo4dmXCyM6YBOSmchT+zDYOi/LNsrgngvTySVKqa2rApEOaVZg2ZMxWUJqtqzCjBOZwHTSL5fxbjdpG+FXbNmslChoyjAgSBvtIhRjia6obiyQWjUJvnVUtX0lBz5YxLuXbageopyQTSkdNGEwpl3PjGKc6b2xRDQQ7EgU38wWzMNt05mSHfkCqvWsbR4m0os9cSmKCyowjVV4sKIgpR3XwBRUpsYrbE/JqhoMzZ83pRegZWf6oro0om1UxZWuHbB7ouq2HOAwQ2vwzplRktYOT0EVawDOiXnAcGTqMBUucl7VtaCKhspDWdNVftiKFY3qmIxkYSowtlS0gGdaa/H8UnmgM6uRHfhP8uiUafjYiBLJUD9ieY6fo2DZZxaVupPJRowzgzE9R/QSbt7RGB1u8knZXDZnuqatFLscSCOlnGJEU9CRaPXesg9I9exLSFtSTYaMDtPKly86JphdwwXIqP0AtyIcw/cKrvFMUAlfUBnRuLoDKZD+fWOj4ndzO5CSuMJx5dDwvPLEuWXSsU7oNOBKmjVXsHrBa3aW8A9eU3S/sXCoBfDpYEuBsNOE8ESDnhDBNKUyoY0Eid5GW3XWr1Yq/YwjWbjHtBZkvm4a0+XsTfMswpr0JVZYnKC94zh3/ormWNfalN3QCdtUbawyvGyIgQTHxErYmU67/ip/D+rpaWrckgZG+a0bSIuoRcAK5AMumKPihW76SluiMARDaTXMr1NzF9hL+FNxDPxD+iUSqtU7aUuLoRisYIqAMOlDFxe8Wby8n+kkDI2zawDlfTdEIDViHtsSqPusbE9ybRKGdVXy5g7AA3vSGkisZDMOVD1Pw/kzjyrXEof0Dl0j00iap2vCpUY3eC7+UWpKzpyN78/AldaQaNPx/XXdYU+8YBWO+MJZTP69at1XD4ke9ZdLfWUy08+foZxHoxlrFuP4LGnKelfPZ1H/vTpjWNuZeN1rvvGutLxLp9iDWrgrq03xVyDunu/hVS7nyBUMe9d9hzQST8ShEHQuLnYOmG/o8PrTxU3kCii26d32FMnrdw92h011m83x3JAp+Qd8a4DOulHwkNCLeZyLd4lEQ1PTVWsWXj4C89st3Ls214b5ANHtvwO6JS+I95KniQO6KQcesCBusdwYtbjN8sKbERrwRouwzPnPfiuxcV7NLDgXpHpPaCTspecBVQut961oRrqLMAz3XXxjTSwaqUpPqBz4Ti6uHptAcWgKoVDVVq3vzX3OjJWld30OKCS2RfU74DOTsSZ5jIj89wAVNowUozeB6FavFmLBpa4AdApwNg7DfntXxV6VOeIAzojvY/yPRdQVgEOt6sYVG94Afbc3734Otq22PnSyAM6IxzL6dq/KvauaANehImuci3nQUrQ+ptAqHY9ULHEipC6jf1pP6AzQpOv/NoLFBMLbfjRvh9UXEK2WwM/sDhSZVV2kj8jPmmosqNW8Q0jlVs8SfunlaLxJ06Gf2IEuwNRJQ5V/H1B0wPcHj6BWr459L5ZBXKySg9BVedJ1V0f/onFe+FYDQYlrdZdBYi7zRaL1s6yYV6ee/PDXt7jhZ0R74uUkOvpN/UBpDhTcbE+jNXNEKwq3dJgUC6vOOwVuDcf5LHrWLIHdNqfXfCSR3+kmKV9sBJIpf1/IgSrxp45HNRUHdBpM0I/SIkGItU6RVQ6ij2rrCgdfOzUL6nCarCx2/cJasrUuhVLx/8yOCCn3LZ+nhaJpdShrVdXREqlz32YSmDlz+0BF7/rVOvBBcgGzm2fvPK59rnyal9Ak+503rx507e+6gbkVCBWlXZQUD4FGLH/ggWYwNkQfl7/bBirSghSTJR20z62nwv7odzwi9S2+xHCkzobIkgsUE4c8f0Uz4ZqMOw9M6xa5+kh222FIpVbHPo4ts2woGKdOJK4BLW5fcOLVflmOFSMr05LXqBKp4E8ZdkAtVfa/dCgpkut21EN8FUYUQlrLW64qrC7kQvhKSutXrtfo7EzKqhxqHXSmVv+ud65cGM1GikAq/d6e2e/293f2X7dGw0UmBup3dFBDRdgZLWeyEluAV7fabaX70V630BZvd76eq83gqSc73eugpWtfuyQw05ys5Mn3gGdaf/r8mVZjJ1rEd853RbFx2Gkuma0oGTPB0Q3WQnq4obMSi0ap8sbDnAqKxholKCmSK27oTLbjbEmFUsrYMRGmxDUWNW6bAGyXO9sGcY4kwoEg2Gc04KSOiE3P3YrLqw0xphU0BNdySd0tnKYJXWad9h1mY2ee+MswNYOhkcKSuI07/FJUBcjmJcnvdHvWc56J125oKZIrXti6VxEkN4S1spdyAd1DQd0Rsn1fvo0+Sps9V5mzBhBDQ6XwwswSKgnL977l+VkwVrsHez3ExflgR65tUcWC04XLWPun6wnBtbi+slWAkFN9IBOkto7P1lPhLNavZMtM6mg0lOh1oej2j9txQWLDalP9zpJBhVbrctOboXTqDm7fTNOHbZ6N7e7QLdJBhX5gE6/VrK3mS7VYA/oW8/1+7sHkbssAwnV6x1smcXkg/J6fliMYSI+hDwdr2O2T9YjNu9cOK2f7JRYYYwpqGlQ637csNAxd09z61GTq9XqtQ6Oxx3UNKh1v6jgZfd3yrleqxUG2CJj8fXcaXuvY04gKLpaH7EULb4wtsnT7Mweb5zeW+/1ADIHs0UGEUul9fV7Bxu7XYh5gkGNOKDTx6MvcJRZS1gq9c1+J7u1tb15enoimvD3Tk5PN7cvzrv9ft+cn594UMOo/B/J2Q2X8T0dSAAAAABJRU5ErkJggg==","filename":"image_name.png"},"required":["content"]},"UserdataProcessResult":{"type":"object","properties":{"avatar_image":{"type":"string","description":"Error detail on avatar","example":"","maxLength":256},"biography":{"type":"string","description":"Error detail on biography","example":"","maxLength":256},"categories":{"type":"string","description":"Error detail on categories","example":"","maxLength":256},"cover_photo":{"type":"string","description":"Error detail on cover photo","example":"","maxLength":256},"detail":{"type":"string","description":"The detail of why result is success/fail, depend on response_code","example":"All userdata is processed","maxLength":256},"facebook_link":{"type":"string","description":"Error detail on facebook_link","example":"","maxLength":256},"location":{"type":"string","description":"Error detail on location","example":"","maxLength":256},"native_currency":{"type":"string","description":"Error detail on native_currency","example":"","maxLength":256},"primary_language":{"type":"string","description":"Error detail on primary_language","example":"","maxLength":256},"realname":{"type":"string","description":"Error detail on realname","example":"","maxLength":256},"response_code":{"type":"integer","description":"Result of the request is success or not","example":0,"format":"int64"},"twitter_link":{"type":"string","description":"Error detail on twitter_link","example":"","maxLength":256}},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""},"required":["response_code","detail"]},"VerifiedTicket":{"type":"object","properties":{"is_reconstruction_required":{"type":"boolean","example":true},"is_verified":{"type":"boolean","example":false},"message":{"type":"string","example":"Dicta perferendis id labore sunt."},"missing_keys":{"type":"array","items":{"type":"string","example":"Dolores quas."},"example":["Ut consectetur.","Quas quia a adipisci esse."]},"reconstructed_file_hash":{"type":"string","example":"RXhjZXB0dXJpIGxhdWRhbnRpdW0gY29uc2VjdGV0dXIgZnVnaXQgcXVpYnVzZGFtIHNpdC4=","format":"binary"},"ticket_type":{"type":"string","example":"Veritatis fuga consequuntur maxime aut eaque voluptas."},"tx_id":{"type":"string","example":"Ut possimus cupiditate."}},"example":{"is_reconstruction_required":true,"is_verified":true,"message":"Et sint ducimus.","missing_keys":["Omnis debitis consequatur aspernatur excepturi aut numquam.","Voluptatum velit qui reprehenderit est nobis ipsum."],"reconstructed_file_hash":"SWxsdW0gdm9sdXB0YXR1bSBlbmltIGFkaXBpc2NpIHF1b2Qgbm9uLg==","ticket_type":"Ipsa odit atque dicta non ab.","tx_id":"Accusamus et perspiciatis cumque praesentium ut."}}},"securitySchemes":{"api_key_header_Authorization":{"type":"apiKey","description":"Nft Owner's passphrase to authenticate","name":"Authorization","in":"header"}}},"tags":[{"name":"cascade","description":"OpenAPI Cascade service"},{"name":"collection","description":"OpenAPI Collection service"},{"name":"HealthCheckChallenge","description":"HealthCheck Challenge service for to return health check related data"},{"name":"nft","description":"Pastel NFT"},{"name":"Score","description":"Score service for return score related to challenges"},{"name":"metrics","description":"Metrics service for fetching data over a specified time range"},{"name":"sense","description":"OpenAPI Sense service"},{"name":"StorageChallenge","description":"Storage Challenge service for to return storage-challenge related data"},{"name":"userdatas","description":"Pastel Process User Specified Data"}]} \ No newline at end of file +{"openapi":"3.0.3","info":{"title":"WalletNode REST API","version":"1.0"},"servers":[{"url":"http://localhost:8080"}],"paths":{"/collection/register":{"post":{"tags":["collection"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"collection#registerCollection","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterCollectionRequestBody"},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","collection_item_copy_count":10,"collection_name":"galaxies","green":false,"item_type":"sense","list_of_pastelids_of_authorized_contributors":["apple","banana","orange"],"max_collection_entries":5000,"max_permitted_open_nsfw_score":0.5,"minimum_similarity_score_to_first_entry_in_collection":0.5,"no_of_days_to_finalize_collection":5,"royalty":2.32,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"}}}},"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterCollectionResponse"},"example":{"task_id":"VK7mpAqZ"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/collection/{taskId}/history":{"get":{"tags":["collection"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"collection#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TaskHistory"},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/collection/{taskId}/state":{"get":{"tags":["collection"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"collection#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskState"},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/healthcheck_challenge/detailed_logs":{"get":{"tags":["HealthCheckChallenge"],"summary":"Fetches health-check-challenge reports","description":"Fetches health-check-challenge reports","operationId":"HealthCheckChallenge#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch health-check-challenge reports for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch health-check-challenge reports for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."},{"name":"challenge_id","in":"query","description":"ChallengeID of the health check challenge to fetch their logs","allowEmptyValue":true,"schema":{"type":"string","description":"ChallengeID of the health check challenge to fetch their logs","example":"jXYJ"},"example":"jXYJ"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/HcDetailedLogsMessage"},"example":[{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."},{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."},{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."}]},"example":[{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."},{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."},{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."}]}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/healthcheck_challenge/summary_stats":{"get":{"tags":["HealthCheckChallenge"],"summary":"Fetches summary stats","description":"Fetches summary stats data over a specified time range","operationId":"HealthCheckChallenge#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"Start time for the metrics data range","example":"2023-01-01T00:00:00Z","format":"date-time"},"example":"2023-01-01T00:00:00Z"},{"name":"to","in":"query","description":"End time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"End time for the metrics data range","example":"2023-01-02T00:00:00Z","format":"date-time"},"example":"2023-01-02T00:00:00Z"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch metrics for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HcSummaryStatsResult"},"example":{"hc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":17085067897739032,"no_of_invalid_signatures_observed_by_observers":1070531802164886396,"no_of_slow_responses_observed_by_observers":2452954398688763778,"total_challenges_evaluated_by_challenger":1497037936453433297,"total_challenges_issued":5146044089880070113,"total_challenges_processed_by_recipient":5356106859537814149,"total_challenges_verified":5844922895958038468}}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts":{"get":{"tags":["nft"],"summary":"Returns the detail of NFT","description":"Gets the NFT detail","operationId":"nft#nftGet","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NftDetail"},"example":{"alt_rare_on_internet_dict_json_b64":"Voluptatem sit.","copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","drawing_nsfw_score":1,"earliest_date_of_results":"Rerum ea expedita voluptas et molestias animi.","green_address":false,"hentai_nsfw_score":1,"is_likely_dupe":false,"is_rare_on_internet":false,"keywords":"Renaissance, sfumato, portrait","min_num_exact_matches_on_page":2602995302,"neutral_nsfw_score":1,"nsfw_score":1,"porn_nsfw_score":1,"preview_thumbnail":"UmVwZWxsYXQgZnVnYSBleCBkb2xvcmlidXMgZG9sb3JlbXF1ZSBuZWNlc3NpdGF0aWJ1cyBub24u","rare_on_internet_graph_json_b64":"Sequi laboriosam sequi vel qui nostrum.","rare_on_internet_summary_table_json_b64":"Sint dolorum cumque illum consectetur unde aut.","rareness_score":1,"royalty":0.5854540372699677,"series_name":"Famous artist","sexy_nsfw_score":1,"storage_fee":100,"thumbnail_1":"T2NjYWVjYXRpIGF1dC4=","thumbnail_2":"QWxpcXVpZCBub2JpcyBjb25zZWN0ZXR1ciB2b2x1cHRhdGVtIGVvcyBpc3RlIHF1YXNpLg==","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","version":1,"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/download":{"get":{"tags":["nft"],"summary":"Downloads NFT","description":"Download registered NFT.","operationId":"nft#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FileDownloadResult"},"example":{"file_id":"Quidem voluptas neque occaecati magnam."}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/get_dd_result_file":{"get":{"tags":["nft"],"summary":"Duplication detection output file","description":"Duplication detection output file","operationId":"nft#ddServiceOutputFile","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DDFPResultFile"},"example":{"file":"Aut repellendus adipisci pariatur accusamus commodi voluptatibus."}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/get_dd_results":{"get":{"tags":["nft"],"summary":"Duplication detection output file details","description":"Duplication detection output file details","operationId":"nft#ddServiceOutputFileDetail","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DDServiceOutputFileResult"},"example":{"alternative_nsfw_scores":{"drawings":0.053542916,"hentai":0.17044726,"neutral":0.01989352,"porn":0.7542108,"sexy":0.24790263},"candidate_image_thumbnail_webp_as_base64_string":"Itaque illo.","child_probability":0.20116164,"collection_name_string":"Possimus accusamus a qui maiores et aut.","cp_probability":0.90626305,"creator_name":"Voluptatem tempora adipisci modi.","creator_website":"Et qui autem et.","creator_written_statement":"Ab et.","does_not_impact_the_following_collection_strings":"Ipsum nisi officia sit eligendi soluta dolorem.","dupe_detection_system_version":"Sit occaecati rerum ab et.","file_type":"Amet ut explicabo modi aut accusantium non.","group_rareness_score":0.63844717,"hash_of_candidate_image_file":"Ipsam labore minima aut harum.","image_file_path":"Qui deserunt debitis repellat veniam pariatur.","image_fingerprint_of_candidate_image_file":[0.48178958212538464,0.8931785495175332,0.8825172062566221],"internet_rareness":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Magnam pariatur aut facilis.","earliest_available_date_of_internet_results":"Sed repudiandae voluptas dolor aut velit voluptatem.","min_number_of_exact_matches_in_page":1704813535,"rare_on_internet_graph_json_compressed_b64":"Aliquid provident eveniet.","rare_on_internet_summary_table_as_json_compressed_b64":"Quisquam corporis qui nobis dignissimos."},"is_likely_dupe":false,"is_pastel_openapi_request":true,"is_rare_on_internet":false,"max_permitted_open_nsfw_score":0.5505988774455792,"nft_creation_video_youtube_url":"Suscipit voluptas quod placeat ut atque.","nft_keyword_set":"Adipisci et ut distinctio ipsum.","nft_series_name":"Quisquam nulla et accusantium.","nft_title":"In laboriosam expedita.","open_api_group_id_string":"Necessitatibus nulla dolorem.","open_nsfw_score":0.21658306,"original_file_size_in_bytes":1512147843409722071,"overall_rareness_score":0.5565024,"pastel_block_hash_when_request_submitted":"Eaque quis quo dolores at assumenda.","pastel_block_height_when_request_submitted":"A dolorem reiciendis atque.","pastel_id_of_registering_supernode_1":"Distinctio nihil consequuntur sed et.","pastel_id_of_registering_supernode_2":"Laudantium rerum expedita minus voluptatem aspernatur et.","pastel_id_of_registering_supernode_3":"Eligendi omnis excepturi adipisci.","pastel_id_of_submitter":"Reiciendis eum et placeat et deserunt doloremque.","pct_of_top_10_most_similar_with_dupe_prob_above_25pct":0.4710798,"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":0.91616607,"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":0.63995916,"preview_hash":"VXQgcmVydW0u","rareness_scores_table_json_compressed_b64":"Quos quis repellat provident architecto voluptatem sed.","similarity_score_to_first_entry_in_collection":0.15764219,"thumbnail1_hash":"SXBzYSBzaW50Lg==","thumbnail2_hash":"UXVpIHZvbHVwdGF0ZSBleGNlcHR1cmku","total_copies":3163669590710846450,"utc_timestamp_when_request_submitted":"Accusantium optio beatae molestiae est voluptatem est."}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/register":{"get":{"tags":["nft"],"summary":"Returns list of tasks","description":"List of all tasks.","operationId":"nft#registerTasks","responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskResponseTinyCollection"},"example":[{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"}]}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}},"post":{"tags":["nft"],"summary":"Registers a new NFT","description":"Runs a new registration process for the new NFT.","operationId":"nft#register","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterRequestBody"},"example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"image_id":"VK7mpAqZ","issued_copies":1,"keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Illum inventore in minus.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterResult"},"example":{"task_id":"n6Qn6TFM"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/register/upload":{"post":{"tags":["nft"],"summary":"Uploads an image","description":"Upload the image that is used when registering a new NFT.","operationId":"nft#uploadImage","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/UploadImageRequestBody"},"example":{"file":"RXZlbmlldCBxdWlhLg=="}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ImageRes"},"example":{"estimated_fee":100,"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nfts/register/{taskId}":{"get":{"tags":["nft"],"summary":"Find task by ID","description":"Returns a single task.","operationId":"nft#registerTask","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterTaskResponseBody"},"example":{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nfts/register/{taskId}/state":{"get":{"tags":["nft"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"nft#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskState"},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nfts/search":{"get":{"tags":["nft"],"summary":"Streams the search result for NFT","description":"Streams the search result for NFT","operationId":"nft#nftSearch","parameters":[{"name":"artist","in":"query","description":"Artist PastelID or special value; mine","allowEmptyValue":true,"schema":{"type":"string","description":"Artist PastelID or special value; mine","example":"1m0","maxLength":256},"example":"vy1"},{"name":"limit","in":"query","description":"Number of results to be return","allowEmptyValue":true,"schema":{"type":"integer","description":"Number of results to be return","default":10,"example":10,"format":"int64","minimum":10,"maximum":200},"example":10},{"name":"query","in":"query","description":"Query is search query entered by user","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Query is search query entered by user","example":"Debitis optio dolores sint quam dolor."},"example":"Error magni voluptatem quia qui enim facere."},{"name":"creator_name","in":"query","description":"Name of the nft creator","allowEmptyValue":true,"schema":{"type":"boolean","description":"Name of the nft creator","default":true,"example":true},"example":true},{"name":"art_title","in":"query","description":"Title of NFT","allowEmptyValue":true,"schema":{"type":"boolean","description":"Title of NFT","default":true,"example":false},"example":false},{"name":"series","in":"query","description":"NFT series name","allowEmptyValue":true,"schema":{"type":"boolean","description":"NFT series name","default":true,"example":false},"example":false},{"name":"descr","in":"query","description":"Artist written statement","allowEmptyValue":true,"schema":{"type":"boolean","description":"Artist written statement","default":true,"example":false},"example":false},{"name":"keyword","in":"query","description":"Keyword that Artist assigns to NFT","allowEmptyValue":true,"schema":{"type":"boolean","description":"Keyword that Artist assigns to NFT","default":true,"example":false},"example":false},{"name":"min_copies","in":"query","description":"Minimum number of created copies","allowEmptyValue":true,"schema":{"type":"integer","description":"Minimum number of created copies","example":1,"format":"int64","minimum":1,"maximum":1000},"example":1},{"name":"max_copies","in":"query","description":"Maximum number of created copies","allowEmptyValue":true,"schema":{"type":"integer","description":"Maximum number of created copies","example":1000,"format":"int64","minimum":1,"maximum":1000},"example":1000},{"name":"min_block","in":"query","description":"Minimum blocknum","allowEmptyValue":true,"schema":{"type":"integer","description":"Minimum blocknum","default":1,"example":3540439880188411664,"format":"int64","minimum":1},"example":758130406742501945},{"name":"max_block","in":"query","description":"Maximum blocknum","allowEmptyValue":true,"schema":{"type":"integer","description":"Maximum blocknum","example":3446396552371564919,"format":"int64","minimum":1},"example":7544698525104512975},{"name":"is_likely_dupe","in":"query","description":"Is this image likely a duplicate of another known image","allowEmptyValue":true,"schema":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"example":false},{"name":"min_rareness_score","in":"query","description":"Minimum pastel rareness score","allowEmptyValue":true,"schema":{"type":"number","description":"Minimum pastel rareness score","example":1,"format":"double","minimum":0,"maximum":1},"example":1},{"name":"max_rareness_score","in":"query","description":"Maximum pastel rareness score","allowEmptyValue":true,"schema":{"type":"number","description":"Maximum pastel rareness score","example":1,"format":"double","minimum":0,"maximum":1},"example":1},{"name":"min_nsfw_score","in":"query","description":"Minimum nsfw score","allowEmptyValue":true,"schema":{"type":"number","description":"Minimum nsfw score","example":1,"format":"double","minimum":0,"maximum":1},"example":1},{"name":"max_nsfw_score","in":"query","description":"Maximum nsfw score","allowEmptyValue":true,"schema":{"type":"number","description":"Maximum nsfw score","example":1,"format":"double","minimum":0,"maximum":1},"example":1},{"name":"user_pastelid","in":"header","description":"User's PastelID","allowEmptyValue":true,"schema":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"},{"name":"user_passphrase","in":"header","description":"Passphrase of the User PastelID","allowEmptyValue":true,"schema":{"type":"string","description":"Passphrase of the User PastelID","example":"qwerasdf1234"},"example":"qwerasdf1234"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NftSearchResult"},"example":{"match_index":1040234626420727314,"matches":[{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."}],"nft":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"UmF0aW9uZSBlc3QgZmFjaWxpcy4=","thumbnail_2":"TnVsbGEgbGFib3J1bSBxdW9zIHZlbC4=","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nfts/{taskId}/history":{"get":{"tags":["nft"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"nft#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TaskHistory"},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nodes/challenges_score":{"get":{"tags":["Score"],"summary":"Fetches aggregated challenges score for sc and hc","description":"Fetches aggregated challenges score for SC and HC","operationId":"Score#getAggregatedChallengesScores","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch metrics for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ChallengesScores"},"example":[{"health_check_challenge_score":0.04110607293809476,"ip_address":"Officiis ratione velit.","node_id":"Suscipit a laudantium consequatur necessitatibus.","storage_challenge_score":0.8964053134221979},{"health_check_challenge_score":0.04110607293809476,"ip_address":"Officiis ratione velit.","node_id":"Suscipit a laudantium consequatur necessitatibus.","storage_challenge_score":0.8964053134221979}]},"example":[{"health_check_challenge_score":0.04110607293809476,"ip_address":"Officiis ratione velit.","node_id":"Suscipit a laudantium consequatur necessitatibus.","storage_challenge_score":0.8964053134221979},{"health_check_challenge_score":0.04110607293809476,"ip_address":"Officiis ratione velit.","node_id":"Suscipit a laudantium consequatur necessitatibus.","storage_challenge_score":0.8964053134221979}]}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/download":{"get":{"tags":["cascade"],"summary":"Downloads cascade artifact","description":"Download cascade Artifact.","operationId":"cascade#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FileDownloadResult"},"example":{"file_id":"Accusamus blanditiis corporis ipsam cumque earum."}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/downloads/{file_id}/status":{"get":{"tags":["cascade"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the state of download task","operationId":"cascade#getDownloadTaskState","parameters":[{"name":"file_id","in":"path","description":"File ID returned by Download V2 API","required":true,"schema":{"type":"string","description":"File ID returned by Download V2 API","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TaskHistory"},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/cascade/registration_details/{base_file_id}":{"get":{"tags":["cascade"],"summary":"Get the file registration details","description":"Get the file registration details","operationId":"cascade#registrationDetails","parameters":[{"name":"base_file_id","in":"path","description":"Base file ID","required":true,"schema":{"type":"string","description":"Base file ID","example":"VK7mpAqZ","maxLength":8},"example":"VK7mpAqZ"}],"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Registration"},"example":{"files":[{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."},{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."},{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."}]}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/cascade/restore/{base_file_id}":{"post":{"tags":["cascade"],"summary":"Restore the file details for registration, activation and multi-volume pastel","description":"Restore the files cascade registration","operationId":"cascade#restore","parameters":[{"name":"base_file_id","in":"path","description":"Base file ID","required":true,"schema":{"type":"string","description":"Base file ID","example":"VK7mpAqZ","maxLength":8},"example":"VK7mpAqZ"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RestoreRequestBody"},"example":{"app_pastelId":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RestoreFile"},"example":{"activated_volumes":289633137219330910,"registered_volumes":6759088182095679156,"total_volumes":4401292699067561257,"volumes_activated_in_recovery_flow":8981725034405051899,"volumes_registration_in_progress":2570108940638669276,"volumes_with_pending_registration":2278213866228243539}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/start/{file_id}":{"post":{"tags":["cascade"],"summary":"Starts processing the image","description":"Start processing the image","operationId":"cascade#startProcessing","parameters":[{"name":"file_id","in":"path","description":"Uploaded asset file ID","required":true,"schema":{"type":"string","description":"Uploaded asset file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"example":"VK7mpAqZ"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StartProcessingRequestBody"},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","burn_txids":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"],"make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StartProcessingResult"},"example":{"task_id":"VK7mpAqZ"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/start/{taskId}/state":{"get":{"tags":["cascade"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"cascade#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskState"},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/cascade/upload":{"post":{"tags":["cascade"],"summary":"Uploads Action Data","description":"Upload the asset file","operationId":"cascade#uploadAsset","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/UploadAssetRequestBody"},"example":{"file":"TmFtIGEu"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Asset"},"example":{"expires_in":"2006-01-02T15:04:05Z07:00","file_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/cascade/v2/download":{"get":{"tags":["cascade"],"summary":"Downloads cascade artifact","description":"Starts downloading cascade Artifact.","operationId":"cascade#downloadV2","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FileDownloadResult"},"example":{"file_id":"Perspiciatis accusantium sed eveniet qui qui."}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/v2/upload":{"post":{"tags":["cascade"],"summary":"Uploads Cascade File","description":"Upload the asset file - This endpoint is for the new version of the upload endpoint that supports larger files as well.","operationId":"cascade#uploadAssetV2","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/UploadAssetRequestBody"},"example":{"file":"QSBldmVuaWV0IG51bXF1YW0gdmVsLg=="}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AssetV2"},"example":{"file_id":"VK7mpAqZ","required_preburn_transaction_amounts":[0.008549268204480678,0.6563940678112433,0.5042167703792875,0.7980625121312597],"total_estimated_fee":100}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/cascade/{taskId}/history":{"get":{"tags":["cascade"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"cascade#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TaskHistory"},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/sense/download":{"get":{"tags":["sense"],"summary":"Download sense result; duplication detection results file.","description":"Download sense result; duplication detection results file.","operationId":"sense#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DownloadResult"},"example":{"file":"U2FwaWVudGUgYXJjaGl0ZWN0byBvZmZpY2lhIGR1Y2ltdXMgdmVybyBleHBsaWNhYm8u"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/sense/start/{image_id}":{"post":{"tags":["sense"],"summary":"Starts processing the image","description":"Start processing the image","operationId":"sense#startProcessing","parameters":[{"name":"image_id","in":"path","description":"Uploaded image ID","required":true,"schema":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"example":"VK7mpAqZ"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StartProcessingRequestBody2"},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","open_api_group_id":"Earum quam et.","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StartProcessingResult"},"example":{"task_id":"VK7mpAqZ"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/sense/start/{taskId}/state":{"get":{"tags":["sense"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"sense#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskState"},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/sense/upload":{"post":{"tags":["sense"],"summary":"Uploads Action Data","description":"Upload the image","operationId":"sense#uploadImage","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/UploadImageRequestBody"},"example":{"file":"TmFtIHF1byBuZXF1ZSBjdW1xdWUu"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Image"},"example":{"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/sense/{taskId}/history":{"get":{"tags":["sense"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"sense#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TaskHistory"},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/self_healing/detailed_logs":{"get":{"tags":["metrics"],"summary":"Fetches self-healing reports","description":"Fetches self-healing reports","operationId":"metrics#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch self-healing reports for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch self-healing reports for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."},{"name":"event_id","in":"query","description":"Specific event ID to fetch reports for","allowEmptyValue":true,"schema":{"type":"string","description":"Specific event ID to fetch reports for","example":"event-123"},"example":"event-123"},{"name":"count","in":"query","description":"Number of reports to fetch","allowEmptyValue":true,"schema":{"type":"integer","description":"Number of reports to fetch","example":10,"format":"int64"},"example":10}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SelfHealingReports"},"example":{"reports":[{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}]}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/self_healing/summary_stats":{"get":{"tags":["metrics"],"summary":"Fetches metrics data","description":"Fetches metrics data over a specified time range","operationId":"metrics#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"Start time for the metrics data range","example":"2023-01-01T00:00:00Z","format":"date-time"},"example":"2023-01-01T00:00:00Z"},{"name":"to","in":"query","description":"End time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"End time for the metrics data range","example":"2023-01-02T00:00:00Z","format":"date-time"},"example":"2023-01-02T00:00:00Z"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch metrics for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MetricsResult"},"example":{"self_healing_execution_events_stats":{"total_file_healing_failed":5551622164662787660,"total_files_healed":8671724886982383594,"total_reconstruction_not_required_evaluations_approved":3509617877318915873,"total_reconstruction_required_evaluations_approved":2598935111695686044,"total_reconstruction_required_evaluations_not_approved":645871039112296182,"total_reconstruction_required_hash_mismatch":6198218032159021896,"total_reconstructions_not_required_evaluations_not_approved":6224481363842689139,"total_self_healing_events_accepted":5676342644268881237,"total_self_healing_events_acknowledged":305624170386109632,"total_self_healing_events_evaluations_unverified":1687102203985295374,"total_self_healing_events_evaluations_verified":7201039114224972892,"total_self_healing_events_issued":7624509276581647432,"total_self_healing_events_rejected":8106553798825109777},"self_healing_trigger_events_stats":[{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."}]}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/storage_challenges/detailed_logs":{"get":{"tags":["StorageChallenge"],"summary":"Fetches storage-challenge reports","description":"Fetches storage-challenge reports","operationId":"StorageChallenge#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch storage-challenge reports for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch storage-challenge reports for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."},{"name":"challenge_id","in":"query","description":"ChallengeID of the storage challenge to fetch their logs","allowEmptyValue":true,"schema":{"type":"string","description":"ChallengeID of the storage challenge to fetch their logs","example":"jXYJ"},"example":"jXYJ"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/StorageMessage"},"example":[{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."},{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."}]},"example":[{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."},{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."},{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."},{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."}]}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/storage_challenges/summary_stats":{"get":{"tags":["StorageChallenge"],"summary":"Fetches summary stats","description":"Fetches summary stats data over a specified time range","operationId":"StorageChallenge#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"Start time for the metrics data range","example":"2023-01-01T00:00:00Z","format":"date-time"},"example":"2023-01-01T00:00:00Z"},{"name":"to","in":"query","description":"End time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"End time for the metrics data range","example":"2023-01-02T00:00:00Z","format":"date-time"},"example":"2023-01-02T00:00:00Z"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch metrics for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SummaryStatsResult"},"example":{"sc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":2982554539974798863,"no_of_invalid_signatures_observed_by_observers":804645458629257575,"no_of_slow_responses_observed_by_observers":6016941875889227877,"total_challenges_evaluated_by_challenger":9084935928395605172,"total_challenges_issued":554226313255902356,"total_challenges_processed_by_recipient":9153767776266110855,"total_challenges_verified":6924812056467069635}}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/userdatas/create":{"post":{"tags":["userdatas"],"summary":"Create new user data","description":"Create new user data","operationId":"userdatas#createUserdata","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/CreateUserdataRequestBody"},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"}}}},"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserdataProcessResult"},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/userdatas/update":{"post":{"tags":["userdatas"],"summary":"Update user data for an existing user","description":"Update user data for an existing user","operationId":"userdatas#updateUserdata","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/CreateUserdataRequestBody"},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"}}}},"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserdataProcessResult"},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/userdatas/{pastelid}":{"get":{"tags":["userdatas"],"summary":"Returns the detail of Userdata","description":"Gets the Userdata detail","operationId":"userdatas#getUserdata","parameters":[{"name":"pastelid","in":"path","description":"Artist's PastelID","required":true,"schema":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateUserdataRequestBody"},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}},"components":{"schemas":{"ActivationAttempt":{"type":"object","properties":{"activation_attempt_at":{"type":"string","description":"Activation Attempt At in datetime format","example":"2004-10-12T07:31:58Z","format":"date-time"},"error_message":{"type":"string","description":"Error Message","example":"Sint dignissimos quia."},"file_id":{"type":"string","description":"File ID","example":"Dicta dolore sequi."},"id":{"type":"integer","description":"ID","example":6095623085988049112,"format":"int64"},"is_successful":{"type":"boolean","description":"Indicates if the activation was successful","example":false}},"example":{"activation_attempt_at":"1975-03-22T18:00:03Z","error_message":"Eos at accusamus sunt.","file_id":"Aspernatur ducimus.","id":1538193004362662237,"is_successful":true},"required":["id","file_id","activation_attempt_at"]},"AlternativeNSFWScores":{"type":"object","properties":{"drawings":{"type":"number","description":"drawings nsfw score","example":0.66452837,"format":"float"},"hentai":{"type":"number","description":"hentai nsfw score","example":0.7656112,"format":"float"},"neutral":{"type":"number","description":"neutral nsfw score","example":0.37575012,"format":"float"},"porn":{"type":"number","description":"porn nsfw score","example":0.5614808,"format":"float"},"sexy":{"type":"number","description":"sexy nsfw score","example":0.51102895,"format":"float"}},"example":{"drawings":0.5703159,"hentai":0.7167511,"neutral":0.26442868,"porn":0.6442617,"sexy":0.55777264}},"Asset":{"type":"object","properties":{"expires_in":{"type":"string","description":"File expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"file_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_amount":{"type":"number","description":"The amount that's required to be preburned","default":1,"example":20,"format":"double","minimum":0.00001},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"example":{"expires_in":"2006-01-02T15:04:05Z07:00","file_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100},"required":["file_id","expires_in","total_estimated_fee"]},"AssetV2":{"type":"object","properties":{"file_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_transaction_amounts":{"type":"array","items":{"type":"number","example":0.847199881862724,"format":"double"},"description":"The amounts that's required to be preburned - one per transaction","example":[0.16201706614597156,0.7965999471882294]},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"example":{"file_id":"VK7mpAqZ","required_preburn_transaction_amounts":[0.21282193452890158,0.4491625713743623,0.39008631718165854,0.1885920166769558],"total_estimated_fee":100},"required":["file_id","total_estimated_fee"]},"ChallengeData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":1514370597,"format":"int32"},"end_index":{"type":"integer","description":"End index","example":7665255617375603928,"format":"int64"},"file_hash":{"type":"string","description":"File hash","example":"Eveniet odit voluptas."},"merkelroot":{"type":"string","description":"Merkelroot","example":"Ea culpa distinctio repudiandae."},"start_index":{"type":"integer","description":"Start index","example":5226596782885260246,"format":"int64"},"timestamp":{"type":"string","description":"Timestamp","example":"Et id expedita qui nostrum."}},"description":"Data of challenge","example":{"block":1245267817,"end_index":547812972672561730,"file_hash":"Aliquid cumque dolore tenetur.","merkelroot":"Aperiam illo consequatur.","start_index":3277213621180435391,"timestamp":"Provident et voluptate distinctio nam ipsa."},"required":["timestamp","file_hash","start_index","end_index"]},"ChallengesScores":{"type":"object","properties":{"health_check_challenge_score":{"type":"number","description":"Total accumulated HC challenge score","example":0.7640542046355273,"format":"double"},"ip_address":{"type":"string","description":"IPAddress of the node","example":"Animi totam laboriosam et qui iure."},"node_id":{"type":"string","description":"Specific node id","example":"Fuga voluptatem ipsum voluptas eius."},"storage_challenge_score":{"type":"number","description":"Total accumulated SC challenge score","example":0.7324959148796738,"format":"double"}},"description":"Combined accumulated scores for HC and SC challenges","example":{"health_check_challenge_score":0.20438164096656727,"ip_address":"Rerum repellat id.","node_id":"Occaecati maiores ut voluptatum dolor provident.","storage_challenge_score":0.5632933038658091},"required":["node_id","storage_challenge_score","health_check_challenge_score"]},"CreateUserdataRequestBody":{"type":"object","properties":{"avatar_image":{"$ref":"#/components/schemas/UserImageUploadPayload"},"biography":{"type":"string","description":"Biography of the user","example":"I'm a digital artist based in Paris, France. ...","maxLength":1024},"categories":{"type":"string","description":"The categories of user's work, separate by ,","example":"Manga\u0026Anime,3D,Comics"},"cover_photo":{"$ref":"#/components/schemas/UserImageUploadPayload"},"facebook_link":{"type":"string","description":"Facebook link of the user","example":"https://www.facebook.com/Williams_Scottish","maxLength":128},"location":{"type":"string","description":"Location of the user","example":"New York, US","maxLength":256},"native_currency":{"type":"string","description":"Native currency of user in ISO 4217 Alphabetic Code","example":"USD","minLength":3,"maxLength":3},"primary_language":{"type":"string","description":"Primary language of the user, follow ISO 639-2 standard","example":"en","maxLength":30},"realname":{"type":"string","description":"Real name of the user","example":"Williams Scottish","maxLength":256},"twitter_link":{"type":"string","description":"Twitter link of the user","example":"https://www.twitter.com/@Williams_Scottish","maxLength":128},"user_pastelid":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"user_pastelid_passphrase":{"type":"string","description":"Passphrase of the user's PastelID","example":"qwerasdf1234"}},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"iVBORw0KGgoAAAANSUhEUgAAASoAAACpCAMAAACrt4DfAAABUFBMVEVPk//////m5ubl5eUkJUYwbP/k5OT60J360J7y8vLt7e34+Pj19fXw8PD5+fnr6+v61an60qMgFi9IkP9Qlf88i/9RmP9Djv//0pkuaf82iP/w7OQACj//1aH/1JUhZf83dP91pfoAADwQGEKgu/MbHkPhxLALXv/z7uOOtPyCq/jw9P4hHz3gwJ04eP8aYv/F0e2VtfX//PSvyf+/0/xEetVKiOwkGC3W3Ore6P0rQ3xpnvsGEkAuLEjgupALFUG3yfAAACe+t8qnr9nHvMZBPFFeU1x7oO/RvbqYquHbx71kjP0+gP/74sSKpv6StPbX5P+zxvBgjeJAXJo/RWlBW5VBYKY1RHNAcMQsJDgdFDNDV4opMFdRdLvZ3egnNWM1LDyGens7asO8oIjBqpZWTVo6OVRnYm54Z2eehnanjnvJqYqdgWiykW7sz62jrtzuoXzIAAAXaElEQVR4nOVd+18TSbbPg9CdEEK3nRdpQkSCBKIGAioIIqujzojy0Luu7syyO1dxVr139v//7dapU/1Kujt9qjshfu4ZHQ8JkJNvzvn2t05VV6XSYLMZZj7eAjilbCaTLYA35/XmwSuClwcvD17R682DNwdeAbwSeAvsF886Hn8xs9PJbJ3vtM+2Dw5SYNWDlY2z7Yutc/g1mesJKmN7WXBT1w0VvNj5zka10ajVaoZhpGxjXxi1WqNxsNHeynbM/+dQmZ3Zi41Uo1JzITRsDLFGamO3K2KeZqhmk4pKxGJ7x9upRjhKLrwYXNtbpjn2oEZDlc34eANRueKbHRXVrB3VrE9UmX56dzMyTA5clc1j0xxXUC4PobK9LIScmgVDbJhlfDyBFzMRkOUVwct7vTx4GBB4GBB4GIbl7W82KkScHLS2zMxYgkIPUfKggl4KUitrpZFf7flyw8Bn5/cpDjCC4/VLO9WGFE4CrUp5Z9ZMOKjA2nO8iUNlzm5UavI4WWiddacGKhdN+dEoOSqR9ebeSpyEcoHV2NxPKig/mgqCCgHK2l7GziXwCl5vDjyMCry818uDh1HZXgE8HtXegRxDBYFlJhEU9xyd51F8iAWmkrgCMsvanh+j+9EohuZDno5XcNGoebmZTEY5YG104wYVxugD3D4xCTqfaSeXUQ5YbV4NUyNBE4FqKxWbzP2sYjDpcG1QJSNBsx61112pjAMosMbKrCkX1EgJ6geVzeMkRh+g0XwQjc6ld6m6nGJG7diUCSpN4/bJqPXxpRRaZWXeHJdaz05SrZ8bY0wpNAMY68dX6+0xpxRapd3JTBQqX0YfVOsOec6Oiorl9biLz7Laihk1qAFG91XrPl5qASxdYmZ5ae4VvN4cePPgFb1eHry81ytaXqFbHnvxWWaUL6MFhd48eHPgFbxeCTyOBYCSdvAZr1o/H4uWCrLalvnDqvXdCRWfZZUL8wdV6zuNySLFyX0CUEk3jGfdUc06UfUnc+kbwGqjHxbUiIZx2usNNoxLNqPbXgGcOa83D17R6+W9Xt7jdbavASnGV2f9kKAWiuDNe7058Aper+T1OD6pbDZrcRfzMj6eSC3miYSyvCJ4ea+XBw8+u+vIKbDKhjkbGBRT68wTjM48wegeDxPK9rK2Ny4Jel1Isbxqd34otT55Rnes0jYDuT0WVNmslWAs07J22SGjOx4UYNYuQIvRmTeY6/Dr+rvXiBTD6rjvE5SAyi7ArFV2jrdgY5Hx8VIFMM7eQR7yuNfLe728x5s/v1akGFZb/aGgCkWvNx/kIbd7vZJLrTPksrbnx+h+3G6n1gB5dmNo9DK32FhdZoYY3fEKQdyOaeTjQflkxyFBJd9puVytlt/ev3//rVEFc0HG3Crtd5k/hFpfkRkhl6vl++8ePbxh2X+9++uH+29TVbQH99//7cZfCR+BsWKOCypIMNsb4HaH0YO43ZPrO3SZwNLpw6MbN+7cmXHszp07HLOHH/k/7LnfKNlaa5uBBejH7Q6j+3E7FuAcGLKY5c2DUwzy8l4v7/WK+2RKL1cfvPu7ByZ/e/iAglVlr+gXXpA3H+Q5+ASJhRFqfSChXKklAdSjh6NxYnaDBFUqlZBad8RCwhKUSlTl1K/RgKJmFaOrzlSrdWKHqlz98DEiUDM0rkqBEh2+DF6nWvcWYImIVOrXG1GBYlDR9AKjdvYmgwswolp3FeA8WBEsyMsHeflBr79JKr/q/egpxS6J76lQGZt930CLoz0/LELFAlGtZ7ZIMr36DwJQDKoPZGlbOfcXC1HV+oBY8KEpWQmaIX3s1fcPKUjN3LlPzSr2GlOq1vttSlJV3xNoCrF6X6XmVWWnf41qPaQAx4sUE1bvyANpo5ANLcCI/RcsQOQzsNFePszrbxA4XQYpllf/TBGxMs76I4OPikCgWKCq9cwlIamqH2g8ZWP121uquOoGJZSfWg8XC0lJUJMgFMoPSNc+t328T8PK2AijqetR63vR1We5/E9pqMhYQVqNWa37cHtYAZoEpqq+k0eKYUUcCm6MLMCoaj2fjM1Tyk+OqIRRub02X0zmLUYUCyO5naCpqo/iJBVwO0mLGm0zilqPIBZ8aEpGgkYPvfxARid4sKKNBo3MNKn14lZ0Uq/+Gi+pmD0kUXvteKJqfUQB9qN39Mrl2EjNzDwmsdVBP0IB+gySBwuQM5aUPHd5+wSlQOsn+ButBCuX5DfkhwpFLGQDxcI2QSn8LQGoZj5SRoPGthmWUJFbe4lI0Ohxl1OxlIJld95R0qpqTo1aJ0xold/+PQmoaI32yt5k1HqE4TKh/sofkqi/mZkblJ4oVCBxcsuvACnN9IC2epEQdQJSgdudXykVWE6iwR5jIt5KLcpIObZUt+0jAalUo5tEa8+HpogS1Lwg9PTKv0kB89vq4CM3KDK0tjMdat08IHy+5X/JILV09PutgYfu/DdpYcx41Dp1KVqG0P4sp2QGgGsvms1Pq2teqEhkVUlicoszFi5uGenlBzxOlCXC+E8Sqlvfm2rzaMZThHcekaDaw5CBs8UiGB9vPsjjy2ESmIjfoVCVDFSr/24qqtJs/rHkfvQLRVlZnRj6stlE1Tpl8YsUVEu6oqmaomrf3IRFugQaK+Y0qHXKpysD1dInXQVTlOb3Q4ewbtCaoZmE1brMjSMlyjI9CagOofwAKI1hpb04lIOqchl/KZqzgK807EVY4Fg8pkwq06Fa/YNBxOqP/Z+DZasGGlS13WK0ZY0le1ljqeD1HLEQof/ix+1zbcpCIQuqtWBsBpC6UhRdZzBZmdX8vLYmAZWxU7Sn5GWXzfrQFEmC0tZUIVSH36Ni9eSKZRKHSIW/KvvTPHq8KgHVZv/a1XqfotUFVEtH+pehkYqfHf7RhOqDtNJ1BpbKXe2PNTpUK0lBlZW+cWSOtFDPgqqp/XtwpDJsa0tfNcglTlMq1CHgxf45WiJDlUoVbLUue+OIc7vNgn0TktcTt5V6vLzzGGn5pwUV4+dPj5+EI7V0ddQEflI5TfF04n9U5a4EVA37xqQF+9Yjl2ffeuTySl6Pi4XA/stotZ65JC3pF1DdBc7Rvy6FVOHq4TeVIaVzmtKBr4CpeCGqMlkFfZiYN7nFlKAZygjQnVXsjTfv/r76xJff1w6f/K4xOcVggT/su6H6FMCNgaXKZFXl3IemJqrWMyRZ5WSVpgPvNPVvV4eDaK2tLn359GfTqjegde7CNVDhPyaTVbXd2FDF3JQpQ+nrebKKZQcfBB99u5pZOlxdXQNbfbK09vzrURMEuq6IslPgAggXP07w7AuZrBJQxdmUybk53t4YpuD1nG0EfDYPSF/IZRXDCXKGp1ZTP/r29esVs9+/fjvSGU7wMNIUTykVqw9+hOMlk1VGuxBp84C0vWXA4MYwsbekOJPIqltHQDuWDGDvnsFjmaKjLuDPMqRQJ3CKUqG/AIDdvSUB1ZkZYw/jRCQoZbEsh4pR9pe7ql1bOpQaoMX+MFdTBI/zJxlIAA48q6Fk56Lh6Mva4RoVqs2gedOJqXXarVrl1F+efwO5xPUkVBXnaqwsnWeQuNJpHDVedirgpCCkOr8YNvXvV38hQrWSEFTymzIR72qr/E+zCc0nztT8cgZ5AoWHpcbJSYeU4uXJhjKK1uSjG/YE5KIOQ0Gmypr/26BCFXdTJmR0/ozllbye2LzR8ooZvtWX8EwaVJWndd6mUzGlVCEHPn/7rOEVUcMrnsbbnlCkOj4J+PArIBYns/pTkqKDSZs03+pLNPnAQ7y8HiLn9Tg+cTeQo0FVe7aM7xOFN6cfVf3z8dKTW1calBa/LqI2V5DFtatbT5Ye/2kPl8XPMFt+Rrn4IlQSG8glJkGJWaWLt4k6gb99RXsMGnT1CqWDhmSlcznBvryCwc/aY10M/3QcEvLfoVNe2tj0oamJqnWTIhaMX0T54SiY85XS/IwTMbe+K3jN45KKExbTE5+xAbH0vcl/AuC1oFLrv1BeeyM2VDHVOmW9eqr2kw2VoB2A6isOmg8/NcU1j6ePysuw+Ql76atfm6JtxeWWgOonQgUa2xyqOGrdhs5vq/WBLXr9NualqPXaK7t4NKv9pHmyCmkelQL3bous+twElFRU7dYveUWBqg05E3Vj3rTXywToqmC1Pjc7XIW7UlAhDyEw6nPgqicvQBJoiKLCaR8EffMF56ovWJk616d2Af5Mee2LjFtXSW/3HEOCUqAynjlcxUHi0lPRnt86vMWQAv2pogjVeIWCNV+wJ5+r4hIAT2s2VM8oxX+cSUaCykN1TlE3Ly2twMFioxVsHzTvfjqyJvtQaumqBYvS/P7pSBNTERbfC7XwkvDSsMgxKbXux+0R1HqX0gWtvHIUqH3JF61gHXSUqgrJrirOo7qATigqm+9uUz6lymU2rlp3xELWTqisO6Fcnp1Qzs7KmQJJMx8sW8IKqUrX3VNXDEINmzNcnuPAhj+sCsLHsSH+hmXSXFHDZvSsfYxG1mZ0J7WydkINeqN1VfjhLBnCLVspEILLdTdV8VaCjtqcAaciJPz/qqArHNRojqSykKJt6mDMDdeexOEscZZ3EO4ZAasdvFqu1xUES7PeOS891SYrDo8mtAOiid/IOzIsxer15dsHtHE63j1yrSthiDt2MNJ4+exnoap4AWoCD8QC4BAJxQEEbLCzhYmIifbzs5fEXbKMzfhQxVTrs8Ud8s56RuW2yBDB4ry0OK2Ljp+G3I4jZpVfCjmf8QTTGJ+TN14z2liAZLXu4BN7LegcbXcTbrXbOLvHe0/I7eKCyBNJE/qUVyV37YTC6dPb9Jes7BZjrwX1qT3aUYqX9A3jGFSiU2UNfjUFu1GYZoro7CE3qXb6icV7MlA1SiNWGGfHL0GLJjlsgEpc+q13L9a5WLxlt/ZQMIirpFgUI5VV5Wk4oJPYseJQ/dTEtS2g11W8Eipi3IK0jqWmKUJTqVitWLG0jgKasTIKqshZ5b9wIdK69QxpLRpCxcaCtvTmC82YpNKFbLB6d1xpiVUwSPiq4Lc6qf2JUO0ksG497hUwTxsFYuDQ4kPqRnmFXI7zEK7xtMonanTnIaR2UksPrbKVnYoDOum8frCMk6L2MiAcPlupZrVpgOlRdSo4PkQVTxvRcKtNya2TdLIy7OUanKd0HYfDFq2L+lOFXkAOs9csqBp9O9sDcxJQjT6gky5Caz/XVUWsLxONT8VWUlb9qaLeeLdUxXWO8Aipo4dmXCyM6YBOSmchT+zDYOi/LNsrgngvTySVKqa2rApEOaVZg2ZMxWUJqtqzCjBOZwHTSL5fxbjdpG+FXbNmslChoyjAgSBvtIhRjia6obiyQWjUJvnVUtX0lBz5YxLuXbageopyQTSkdNGEwpl3PjGKc6b2xRDQQ7EgU38wWzMNt05mSHfkCqvWsbR4m0os9cSmKCyowjVV4sKIgpR3XwBRUpsYrbE/JqhoMzZ83pRegZWf6oro0om1UxZWuHbB7ouq2HOAwQ2vwzplRktYOT0EVawDOiXnAcGTqMBUucl7VtaCKhspDWdNVftiKFY3qmIxkYSowtlS0gGdaa/H8UnmgM6uRHfhP8uiUafjYiBLJUD9ieY6fo2DZZxaVupPJRowzgzE9R/QSbt7RGB1u8knZXDZnuqatFLscSCOlnGJEU9CRaPXesg9I9exLSFtSTYaMDtPKly86JphdwwXIqP0AtyIcw/cKrvFMUAlfUBnRuLoDKZD+fWOj4ndzO5CSuMJx5dDwvPLEuWXSsU7oNOBKmjVXsHrBa3aW8A9eU3S/sXCoBfDpYEuBsNOE8ESDnhDBNKUyoY0Eid5GW3XWr1Yq/YwjWbjHtBZkvm4a0+XsTfMswpr0JVZYnKC94zh3/ormWNfalN3QCdtUbawyvGyIgQTHxErYmU67/ip/D+rpaWrckgZG+a0bSIuoRcAK5AMumKPihW76SluiMARDaTXMr1NzF9hL+FNxDPxD+iUSqtU7aUuLoRisYIqAMOlDFxe8Wby8n+kkDI2zawDlfTdEIDViHtsSqPusbE9ybRKGdVXy5g7AA3vSGkisZDMOVD1Pw/kzjyrXEof0Dl0j00iap2vCpUY3eC7+UWpKzpyN78/AldaQaNPx/XXdYU+8YBWO+MJZTP69at1XD4ke9ZdLfWUy08+foZxHoxlrFuP4LGnKelfPZ1H/vTpjWNuZeN1rvvGutLxLp9iDWrgrq03xVyDunu/hVS7nyBUMe9d9hzQST8ShEHQuLnYOmG/o8PrTxU3kCii26d32FMnrdw92h011m83x3JAp+Qd8a4DOulHwkNCLeZyLd4lEQ1PTVWsWXj4C89st3Ls214b5ANHtvwO6JS+I95KniQO6KQcesCBusdwYtbjN8sKbERrwRouwzPnPfiuxcV7NLDgXpHpPaCTspecBVQut961oRrqLMAz3XXxjTSwaqUpPqBz4Ti6uHptAcWgKoVDVVq3vzX3OjJWld30OKCS2RfU74DOTsSZ5jIj89wAVNowUozeB6FavFmLBpa4AdApwNg7DfntXxV6VOeIAzojvY/yPRdQVgEOt6sYVG94Afbc3734Otq22PnSyAM6IxzL6dq/KvauaANehImuci3nQUrQ+ptAqHY9ULHEipC6jf1pP6AzQpOv/NoLFBMLbfjRvh9UXEK2WwM/sDhSZVV2kj8jPmmosqNW8Q0jlVs8SfunlaLxJ06Gf2IEuwNRJQ5V/H1B0wPcHj6BWr459L5ZBXKySg9BVedJ1V0f/onFe+FYDQYlrdZdBYi7zRaL1s6yYV6ee/PDXt7jhZ0R74uUkOvpN/UBpDhTcbE+jNXNEKwq3dJgUC6vOOwVuDcf5LHrWLIHdNqfXfCSR3+kmKV9sBJIpf1/IgSrxp45HNRUHdBpM0I/SIkGItU6RVQ6ij2rrCgdfOzUL6nCarCx2/cJasrUuhVLx/8yOCCn3LZ+nhaJpdShrVdXREqlz32YSmDlz+0BF7/rVOvBBcgGzm2fvPK59rnyal9Ak+503rx507e+6gbkVCBWlXZQUD4FGLH/ggWYwNkQfl7/bBirSghSTJR20z62nwv7odzwi9S2+xHCkzobIkgsUE4c8f0Uz4ZqMOw9M6xa5+kh222FIpVbHPo4ts2woGKdOJK4BLW5fcOLVflmOFSMr05LXqBKp4E8ZdkAtVfa/dCgpkut21EN8FUYUQlrLW64qrC7kQvhKSutXrtfo7EzKqhxqHXSmVv+ud65cGM1GikAq/d6e2e/293f2X7dGw0UmBup3dFBDRdgZLWeyEluAV7fabaX70V630BZvd76eq83gqSc73eugpWtfuyQw05ys5Mn3gGdaf/r8mVZjJ1rEd853RbFx2Gkuma0oGTPB0Q3WQnq4obMSi0ap8sbDnAqKxholKCmSK27oTLbjbEmFUsrYMRGmxDUWNW6bAGyXO9sGcY4kwoEg2Gc04KSOiE3P3YrLqw0xphU0BNdySd0tnKYJXWad9h1mY2ee+MswNYOhkcKSuI07/FJUBcjmJcnvdHvWc56J125oKZIrXti6VxEkN4S1spdyAd1DQd0Rsn1fvo0+Sps9V5mzBhBDQ6XwwswSKgnL977l+VkwVrsHez3ExflgR65tUcWC04XLWPun6wnBtbi+slWAkFN9IBOkto7P1lPhLNavZMtM6mg0lOh1oej2j9txQWLDalP9zpJBhVbrctOboXTqDm7fTNOHbZ6N7e7QLdJBhX5gE6/VrK3mS7VYA/oW8/1+7sHkbssAwnV6x1smcXkg/J6fliMYSI+hDwdr2O2T9YjNu9cOK2f7JRYYYwpqGlQ637csNAxd09z61GTq9XqtQ6Oxx3UNKh1v6jgZfd3yrleqxUG2CJj8fXcaXuvY04gKLpaH7EULb4wtsnT7Mweb5zeW+/1ADIHs0UGEUul9fV7Bxu7XYh5gkGNOKDTx6MvcJRZS1gq9c1+J7u1tb15enoimvD3Tk5PN7cvzrv9ft+cn594UMOo/B/J2Q2X8T0dSAAAAABJRU5ErkJggg==","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"},"required":["user_pastelid","user_pastelid_passphrase"]},"DDFPResultFile":{"type":"object","properties":{"file":{"type":"string","description":"File downloaded","example":"Neque omnis tempora."}},"example":{"file":"Ut voluptas cum est molestiae."},"required":["file"]},"DDServiceOutputFileResult":{"type":"object","properties":{"alternative_nsfw_scores":{"$ref":"#/components/schemas/AlternativeNSFWScores"},"candidate_image_thumbnail_webp_as_base64_string":{"type":"string","description":"candidate image thumbnail as base64 string","example":"Qui velit qui iste."},"child_probability":{"type":"number","description":"child probability","example":0.8816837,"format":"float"},"collection_name_string":{"type":"string","description":"name of the collection","example":"Cupiditate perspiciatis voluptatem aut."},"cp_probability":{"type":"number","description":"probability of CP","example":0.86713,"format":"float"},"creator_name":{"type":"string","description":"name of the creator","example":"Animi aut itaque qui incidunt minima similique."},"creator_website":{"type":"string","description":"website of creator","example":"Qui iusto voluptas tenetur est hic adipisci."},"creator_written_statement":{"type":"string","description":"written statement of creator","example":"Et ut veritatis repudiandae facilis optio non."},"does_not_impact_the_following_collection_strings":{"type":"string","description":"does not impact collection strings","example":"Voluptatem corrupti repellendus nihil ipsa."},"dupe_detection_system_version":{"type":"string","description":"system version of dupe detection","example":"Alias dolorem aut."},"file_type":{"type":"string","description":"type of the file","example":"Sit ea maiores at nisi."},"group_rareness_score":{"type":"number","description":"rareness score of the group","example":0.60826373,"format":"float"},"hash_of_candidate_image_file":{"type":"string","description":"hash of candidate image file","example":"Eveniet alias exercitationem beatae architecto sequi."},"image_file_path":{"type":"string","description":"file path of the image","example":"Labore error distinctio."},"image_fingerprint_of_candidate_image_file":{"type":"array","items":{"type":"number","example":0.6895019762337847,"format":"double"},"description":"Image fingerprint of candidate image file","example":[0.7297500759675873,0.4307407703835172,0.18231999348297495,0.22517744197696887]},"internet_rareness":{"$ref":"#/components/schemas/InternetRareness"},"is_likely_dupe":{"type":"boolean","description":"is this nft likely a duplicate","example":false},"is_pastel_openapi_request":{"type":"boolean","description":"is pastel open API request","example":true},"is_rare_on_internet":{"type":"boolean","description":"is this nft rare on the internet","example":false},"max_permitted_open_nsfw_score":{"type":"number","description":"max permitted open NSFW score","example":0.7721841509793138,"format":"double"},"nft_creation_video_youtube_url":{"type":"string","description":"nft creation video youtube url","example":"Quia rem."},"nft_keyword_set":{"type":"string","description":"keywords for NFT","example":"Qui commodi."},"nft_series_name":{"type":"string","description":"series name of NFT","example":"Nostrum omnis suscipit enim exercitationem."},"nft_title":{"type":"string","description":"title of NFT","example":"Dignissimos voluptas est eum est enim."},"open_api_group_id_string":{"type":"string","description":"open api group id string","example":"Occaecati in libero eos."},"open_nsfw_score":{"type":"number","description":"open nsfw score","example":0.21136375,"format":"float"},"original_file_size_in_bytes":{"type":"integer","description":"original file size in bytes","example":4778032498927877012,"format":"int64"},"overall_rareness_score":{"type":"number","description":"pastel rareness score","example":0.2309514,"format":"float"},"pastel_block_hash_when_request_submitted":{"type":"string","description":"block hash when request submitted","example":"Eius et libero alias hic voluptatibus sit."},"pastel_block_height_when_request_submitted":{"type":"string","description":"block Height when request submitted","example":"Voluptatibus cumque nisi modi consequatur."},"pastel_id_of_registering_supernode_1":{"type":"string","description":"pastel id of registering SN1","example":"Soluta iste quo."},"pastel_id_of_registering_supernode_2":{"type":"string","description":"pastel id of registering SN2","example":"Officia autem quos qui modi."},"pastel_id_of_registering_supernode_3":{"type":"string","description":"pastel id of registering SN3","example":"In ipsa ut voluptas."},"pastel_id_of_submitter":{"type":"string","description":"pastel id of the submitter","example":"Voluptas enim."},"pct_of_top_10_most_similar_with_dupe_prob_above_25pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 25 PCT","example":0.8764374,"format":"float"},"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 33 PCT","example":0.3732366,"format":"float"},"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 50 PCT","example":0.46130848,"format":"float"},"preview_hash":{"type":"string","description":"preview hash of NFT","example":"Tm9uIGFsaWFzIGluIHF1aS4=","format":"binary"},"rareness_scores_table_json_compressed_b64":{"type":"string","description":"rareness scores table json compressed b64","example":"Corporis minima."},"similarity_score_to_first_entry_in_collection":{"type":"number","description":"similarity score to first entry in collection","example":0.23129384,"format":"float"},"thumbnail1_hash":{"type":"string","description":"thumbnail1 hash of NFT","example":"TmloaWwgdmVsaXQgbnVtcXVhbSBhYiBzaW50IGludmVudG9yZSBhdXQu","format":"binary"},"thumbnail2_hash":{"type":"string","description":"thumbnail2 hash of NFT","example":"Vm9sdXB0YXRlbSBjdW1xdWUgdWxsYW0gY29ycnVwdGkgZXZlbmlldCB1dCB0ZW1wb3JpYnVzLg==","format":"binary"},"total_copies":{"type":"integer","description":"total copies of NFT","example":6809940013067523041,"format":"int64"},"utc_timestamp_when_request_submitted":{"type":"string","description":"timestamp of request when submitted","example":"Nobis sit eos provident voluptas."}},"example":{"alternative_nsfw_scores":{"drawings":0.053542916,"hentai":0.17044726,"neutral":0.01989352,"porn":0.7542108,"sexy":0.24790263},"candidate_image_thumbnail_webp_as_base64_string":"Rerum fugiat sed reiciendis ut.","child_probability":0.35175335,"collection_name_string":"Explicabo enim dolorem.","cp_probability":0.12968402,"creator_name":"Tempore dignissimos temporibus.","creator_website":"Rem nisi ut.","creator_written_statement":"Deserunt sunt quasi tempora et esse molestiae.","does_not_impact_the_following_collection_strings":"Doloribus ex.","dupe_detection_system_version":"Recusandae excepturi consequatur sapiente.","file_type":"Aliquid ratione blanditiis natus beatae amet.","group_rareness_score":0.6511306,"hash_of_candidate_image_file":"Ea aliquam corrupti distinctio est.","image_file_path":"Ut est.","image_fingerprint_of_candidate_image_file":[0.29919540342492684,0.6985188456775364,0.06740662993158088],"internet_rareness":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Magnam pariatur aut facilis.","earliest_available_date_of_internet_results":"Sed repudiandae voluptas dolor aut velit voluptatem.","min_number_of_exact_matches_in_page":1704813535,"rare_on_internet_graph_json_compressed_b64":"Aliquid provident eveniet.","rare_on_internet_summary_table_as_json_compressed_b64":"Quisquam corporis qui nobis dignissimos."},"is_likely_dupe":false,"is_pastel_openapi_request":false,"is_rare_on_internet":false,"max_permitted_open_nsfw_score":0.9090540332421508,"nft_creation_video_youtube_url":"Inventore et iste.","nft_keyword_set":"Quaerat sint.","nft_series_name":"Pariatur tempore.","nft_title":"Non sit nostrum.","open_api_group_id_string":"Debitis dolor et natus.","open_nsfw_score":0.1995445,"original_file_size_in_bytes":5588971587130615713,"overall_rareness_score":0.73171234,"pastel_block_hash_when_request_submitted":"Culpa et sequi et et.","pastel_block_height_when_request_submitted":"Voluptatem eius dolorem quia doloribus autem velit.","pastel_id_of_registering_supernode_1":"Et eveniet id molestiae ut.","pastel_id_of_registering_supernode_2":"Minus perferendis deleniti.","pastel_id_of_registering_supernode_3":"Nobis illo doloribus reiciendis.","pastel_id_of_submitter":"Ut laboriosam sit ex molestiae.","pct_of_top_10_most_similar_with_dupe_prob_above_25pct":0.59682155,"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":0.87328106,"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":0.3961445,"preview_hash":"SW5jaWR1bnQgc2l0IGN1cGlkaXRhdGUgY29uc2VjdGV0dXIu","rareness_scores_table_json_compressed_b64":"Quam velit tempora.","similarity_score_to_first_entry_in_collection":0.8728859,"thumbnail1_hash":"TnVtcXVhbSByZXJ1bSBzdW50IGxhYm9yaW9zYW0gdm9sdXB0YXRpYnVzLg==","thumbnail2_hash":"TmF0dXMgdGVuZXR1ci4=","total_copies":1239003511493090436,"utc_timestamp_when_request_submitted":"Explicabo natus."},"required":["creator_name","creator_website","creator_written_statement","nft_title","nft_series_name","nft_creation_video_youtube_url","nft_keyword_set","total_copies","preview_hash","thumbnail1_hash","thumbnail2_hash","original_file_size_in_bytes","file_type","max_permitted_open_nsfw_score"]},"Details":{"type":"object","properties":{"fields":{"type":"object","description":"important fields regarding status history","example":{"Eum ut et maiores a quis dolor.":"Ipsum rem aut perferendis ratione fugiat.","Mollitia eius vitae deleniti quia.":"At necessitatibus numquam qui dolorem reprehenderit.","Omnis ad.":"Accusamus quia."},"additionalProperties":true},"message":{"type":"string","description":"details regarding the status","example":"Image has been downloaded..."}},"example":{"fields":{"Accusamus animi deleniti fugit fuga iusto cumque.":"Sit mollitia inventore.","Ex rerum quasi cum quia.":"Tempore atque.","Nemo eum hic maiores.":"Nihil eos placeat sed sit."},"message":"Image has been downloaded..."}},"DownloadResult":{"type":"object","properties":{"file":{"type":"string","description":"File downloaded","example":"QXV0IHF1YWVyYXQgdXQgcmVtIHN1bnQgYWxpYXMgYXV0ZW0u","format":"binary"}},"example":{"file":"QXV0ZW0gYWNjdXNhbnRpdW0gc2l0IGRvbG9yIHF1YWVyYXQgZXQgYXV0Lg=="},"required":["file"]},"Error":{"type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EvaluationData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":168066308,"format":"int32"},"hash":{"type":"string","description":"Hash","example":"At pariatur ullam et."},"is_verified":{"type":"boolean","description":"IsVerified","example":false},"merkelroot":{"type":"string","description":"Merkelroot","example":"Saepe voluptatem autem."},"timestamp":{"type":"string","description":"Timestamp","example":"Unde excepturi corrupti et et."}},"description":"Data of evaluation","example":{"block":318941857,"hash":"Totam aspernatur suscipit est libero tempore totam.","is_verified":false,"merkelroot":"Consectetur distinctio tenetur nostrum doloribus.","timestamp":"Temporibus vitae aliquam incidunt ut autem."},"required":["timestamp","hash","is_verified"]},"EventTicket":{"type":"object","properties":{"data_hash":{"type":"string","example":"TWluaW1hIHF1aXNxdWFtIHNhcGllbnRlIHZvbHVwdGF0dW0gc2ltaWxpcXVlIGF0cXVlLg==","format":"binary"},"missing_keys":{"type":"array","items":{"type":"string","example":"Corrupti eaque laborum."},"example":["Sed voluptatem aliquam est qui.","Aut reiciendis.","Corporis ipsum deleniti eos.","Libero eaque error omnis aut ut."]},"recipient":{"type":"string","example":"Exercitationem molestias enim."},"ticket_type":{"type":"string","example":"Aut voluptatum veritatis qui qui voluptatem."},"tx_id":{"type":"string","example":"Sunt autem est soluta iste omnis."}},"example":{"data_hash":"UGFyaWF0dXIgb2RpbyBxdWkgdmVsIHN1bnQgbWludXMgYWxpYXMu","missing_keys":["Quo id ut quae atque.","Suscipit ut voluptatum explicabo quaerat.","Sit illum ea est occaecati."],"recipient":"Similique doloribus placeat itaque rerum architecto.","ticket_type":"Officia totam unde quia.","tx_id":"Et sed nam distinctio deleniti."}},"File":{"type":"object","properties":{"activation_attempts":{"type":"array","items":{"$ref":"#/components/schemas/ActivationAttempt"},"description":"List of activation attempts","example":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}]},"activation_txid":{"type":"string","description":"Activation Transaction ID","example":"Rerum id quis accusamus dolores."},"base_file_id":{"type":"string","description":"Base File ID","example":"Ea blanditiis."},"burn_txn_id":{"type":"string","description":"Burn Transaction ID","example":"Nam quasi et autem quod expedita."},"cascade_metadata_ticket_id":{"type":"string","description":"Cascade Metadata Ticket ID","example":"Reiciendis velit modi dignissimos quasi."},"done_block":{"type":"integer","description":"Done Block","example":6156290738512412607,"format":"int64"},"file_id":{"type":"string","description":"File ID","example":"Accusantium ea maxime."},"file_index":{"type":"string","description":"Index of the file","example":"Consequuntur accusamus maiores quo vel."},"hash_of_original_big_file":{"type":"string","description":"Hash of the Original Big File","example":"Architecto voluptas dolore dolorem."},"is_concluded":{"type":"boolean","description":"Indicates if the process is concluded","example":false},"name_of_original_big_file_with_ext":{"type":"string","description":"Name of the Original Big File with Extension","example":"Aut cumque consequuntur iure ea illum nam."},"reg_txid":{"type":"string","description":"Registration Transaction ID","example":"Fugiat praesentium minus illum ducimus id."},"registration_attempts":{"type":"array","items":{"$ref":"#/components/schemas/RegistrationAttempt"},"description":"List of registration attempts","example":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}]},"req_amount":{"type":"number","description":"Required Amount","example":0.9392335712666725,"format":"double"},"req_burn_txn_amount":{"type":"number","description":"Required Burn Transaction Amount","example":0.881792511024194,"format":"double"},"size_of_original_big_file":{"type":"number","description":"Size of the Original Big File","example":0.4246467510622976,"format":"double"},"start_block":{"type":"integer","description":"Start Block","example":898403306,"format":"int32"},"task_id":{"type":"string","description":"Task ID","example":"Minus suscipit."},"upload_timestamp":{"type":"string","description":"Upload Timestamp in datetime format","example":"2006-12-29T00:55:23Z","format":"date-time"},"uuid_key":{"type":"string","description":"UUID Key","example":"Autem velit quibusdam laboriosam maiores possimus."}},"example":{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Ex eos nam neque dolore.","base_file_id":"Blanditiis at.","burn_txn_id":"Quia explicabo vel.","cascade_metadata_ticket_id":"Est debitis ipsa.","done_block":4919011026986690408,"file_id":"Aperiam minus.","file_index":"Amet sapiente inventore quo sit exercitationem.","hash_of_original_big_file":"Libero et delectus veniam.","is_concluded":false,"name_of_original_big_file_with_ext":"Nostrum est voluptatibus cupiditate.","reg_txid":"Mollitia unde quibusdam enim voluptatem sit.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.7366533305728714,"req_burn_txn_amount":0.7432564875575534,"size_of_original_big_file":0.6588947677341078,"start_block":490931683,"task_id":"Iure placeat accusantium id et aut minus.","upload_timestamp":"1995-10-31T05:51:58Z","uuid_key":"Nam molestiae et."},"required":["file_id","task_id","upload_timestamp","base_file_id","registration_attempts","activation_attempts","req_burn_txn_amount","req_amount","cascade_metadata_ticket_id","hash_of_original_big_file","name_of_original_big_file_with_ext","size_of_original_big_file"]},"FileDownloadResult":{"type":"object","properties":{"file_id":{"type":"string","description":"File path","example":"At provident."}},"example":{"file_id":"Expedita recusandae laboriosam est."},"required":["file_id"]},"FuzzyMatch":{"type":"object","properties":{"field_type":{"type":"string","description":"Field that is matched","example":"keyword","enum":["creator_name","art_title","series","descr","keyword"]},"matched_indexes":{"type":"array","items":{"type":"integer","example":6102026387781643114,"format":"int64"},"description":"The indexes of matched characters. Useful for highlighting matches","example":[6796449924094537885,959140564434932267]},"score":{"type":"integer","description":"Score used to rank matches","example":3009724268324206974,"format":"int64"},"str":{"type":"string","description":"String that is matched","example":"Animi sed consequatur sit ipsa."}},"example":{"field_type":"series","matched_indexes":[2705673492284656983,5654908727100686296],"score":3177851692914113633,"str":"Autem doloribus aut numquam."}},"HCChallengeData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":255194099,"format":"int32"},"merkelroot":{"type":"string","description":"Merkelroot","example":"Ut consequatur ex et et ut alias."},"timestamp":{"type":"string","description":"Timestamp","example":"Consectetur qui consectetur id saepe."}},"description":"Data of challenge","example":{"block":1908546163,"merkelroot":"Facilis voluptatibus soluta id omnis accusamus.","timestamp":"Nemo ut nostrum sit natus molestiae eos."},"required":["timestamp"]},"HCEvaluationData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":1613011766,"format":"int32"},"is_verified":{"type":"boolean","description":"IsVerified","example":true},"merkelroot":{"type":"string","description":"Merkelroot","example":"Unde quo voluptatibus magnam quaerat esse consequatur."},"timestamp":{"type":"string","description":"Timestamp","example":"Et quia."}},"description":"Data of evaluation","example":{"block":255672509,"is_verified":true,"merkelroot":"Ducimus odio aut sapiente.","timestamp":"Perspiciatis amet adipisci porro ea vel eveniet."},"required":["timestamp","is_verified"]},"HCObserverEvaluationData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":1837709241,"format":"int32"},"is_challenge_timestamp_ok":{"type":"boolean","description":"IsChallengeTimestampOK","example":false},"is_challenger_signature_ok":{"type":"boolean","description":"IsChallengerSignatureOK","example":true},"is_evaluation_result_ok":{"type":"boolean","description":"IsEvaluationResultOK","example":true},"is_evaluation_timestamp_ok":{"type":"boolean","description":"IsEvaluationTimestampOK","example":true},"is_process_timestamp_ok":{"type":"boolean","description":"IsProcessTimestampOK","example":false},"is_recipient_signature_ok":{"type":"boolean","description":"IsRecipientSignatureOK","example":true},"merkelroot":{"type":"string","description":"Merkelroot","example":"Harum soluta recusandae harum ut."},"timestamp":{"type":"string","description":"Timestamp","example":"Ipsum totam excepturi reiciendis quis."}},"description":"Data of Observer's evaluation","example":{"block":112508918,"is_challenge_timestamp_ok":true,"is_challenger_signature_ok":false,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":false,"merkelroot":"Et earum cupiditate voluptas suscipit ipsa.","timestamp":"Architecto dolore qui magni."},"required":["timestamp","is_challenge_timestamp_ok","is_process_timestamp_ok","is_evaluation_timestamp_ok","is_recipient_signature_ok","is_challenger_signature_ok","is_evaluation_result_ok"]},"HCSummaryStats":{"type":"object","properties":{"no_of_invalid_evaluation_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid evaluation evaluated by observers","example":1807062504447446222,"format":"int64"},"no_of_invalid_signatures_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid signatures evaluated by observers","example":8248181690542126150,"format":"int64"},"no_of_slow_responses_observed_by_observers":{"type":"integer","description":"challenges failed due to slow-responses evaluated by observers","example":3177489983924016672,"format":"int64"},"total_challenges_evaluated_by_challenger":{"type":"integer","description":"Total number of challenges evaluated by the challenger node","example":4711640194374212281,"format":"int64"},"total_challenges_issued":{"type":"integer","description":"Total number of challenges issued","example":5299326988258299892,"format":"int64"},"total_challenges_processed_by_recipient":{"type":"integer","description":"Total number of challenges processed by the recipient node","example":8818547790092084190,"format":"int64"},"total_challenges_verified":{"type":"integer","description":"Total number of challenges verified by observers","example":7249719424045644874,"format":"int64"}},"description":"HealthCheck-Challenge SummaryStats","example":{"no_of_invalid_evaluation_observed_by_observers":4494881681012147907,"no_of_invalid_signatures_observed_by_observers":6093051522462056040,"no_of_slow_responses_observed_by_observers":9055426637750004947,"total_challenges_evaluated_by_challenger":5707090490098316729,"total_challenges_issued":7749705948070744961,"total_challenges_processed_by_recipient":6515646547329763792,"total_challenges_verified":6645127549352825865},"required":["total_challenges_issued","total_challenges_processed_by_recipient","total_challenges_evaluated_by_challenger","total_challenges_verified","no_of_slow_responses_observed_by_observers","no_of_invalid_signatures_observed_by_observers","no_of_invalid_evaluation_observed_by_observers"]},"HcDetailedLogsMessage":{"type":"object","properties":{"challenge":{"$ref":"#/components/schemas/HCChallengeData"},"challenge_id":{"type":"string","description":"ID of the challenge","example":"Perspiciatis dolore sit."},"challenger_evaluation":{"$ref":"#/components/schemas/HCEvaluationData"},"challenger_id":{"type":"string","description":"ID of the challenger","example":"Architecto totam."},"message_type":{"type":"string","description":"type of the message","example":"Et id est optio sit."},"observer_evaluation":{"$ref":"#/components/schemas/HCObserverEvaluationData"},"observers":{"type":"array","items":{"type":"string","example":"Asperiores harum."},"description":"List of observer IDs","example":["Fugit aut quis unde velit velit.","Non fugit minus rerum perspiciatis.","Reprehenderit dolorum excepturi magnam officiis facilis laborum.","Consequatur laudantium voluptate labore similique."]},"recipient_id":{"type":"string","description":"ID of the recipient","example":"Eum reprehenderit voluptas."},"response":{"$ref":"#/components/schemas/HCChallengeData"},"sender_id":{"type":"string","description":"ID of the sender's node","example":"Recusandae placeat iure ut labore provident."},"sender_signature":{"type":"string","description":"signature of the sender","example":"Natus accusantium."}},"description":"HealthCheck challenge message data","example":{"challenge":{"block":161855103,"merkelroot":"Occaecati in reiciendis quia repudiandae.","timestamp":"Necessitatibus sed est sunt."},"challenge_id":"Eligendi at modi cupiditate.","challenger_evaluation":{"block":372559801,"is_verified":false,"merkelroot":"Impedit quis autem et et neque.","timestamp":"Explicabo dolore."},"challenger_id":"Corporis explicabo est.","message_type":"Fugiat aspernatur facilis.","observer_evaluation":{"block":1881554591,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":false,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Hic voluptas doloremque eligendi et magni.","timestamp":"Perspiciatis earum."},"observers":["Quia laboriosam neque odit.","Et ipsum."],"recipient_id":"Ut voluptates dolor.","response":{"block":1874672230,"merkelroot":"Voluptate ipsa et ut dicta temporibus ut.","timestamp":"Deserunt mollitia est a labore."},"sender_id":"Praesentium similique itaque ea enim autem impedit.","sender_signature":"Alias velit tempore."},"required":["challenge_id","message_type","sender_id","challenger_id","observers","recipient_id"]},"HcSummaryStatsResult":{"type":"object","properties":{"hc_summary_stats":{"$ref":"#/components/schemas/HCSummaryStats"}},"example":{"hc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":17085067897739032,"no_of_invalid_signatures_observed_by_observers":1070531802164886396,"no_of_slow_responses_observed_by_observers":2452954398688763778,"total_challenges_evaluated_by_challenger":1497037936453433297,"total_challenges_issued":5146044089880070113,"total_challenges_processed_by_recipient":5356106859537814149,"total_challenges_verified":5844922895958038468}},"required":["hc_summary_stats"]},"Image":{"type":"object","properties":{"expires_in":{"type":"string","description":"Image expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_amount":{"type":"number","description":"The amount that's required to be preburned","default":1,"example":20,"format":"double","minimum":0.00001},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"example":{"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100},"required":["image_id","expires_in","total_estimated_fee"]},"ImageRes":{"type":"object","properties":{"estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001},"expires_in":{"type":"string","description":"Image expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"example":{"estimated_fee":100,"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ"},"required":["image_id","expires_in","estimated_fee"]},"InternetRareness":{"type":"object","properties":{"alternative_rare_on_internet_dict_as_json_compressed_b64":{"type":"string","description":"Base64 Compressed Json of Alternative Rare On Internet Dict","example":"Ipsam inventore est."},"earliest_available_date_of_internet_results":{"type":"string","description":"Earliest Available Date of Internet Results","example":"Aut voluptates et beatae consequatur."},"min_number_of_exact_matches_in_page":{"type":"integer","description":"Minimum Number of Exact Matches on Page","example":3900146870,"format":"int32"},"rare_on_internet_graph_json_compressed_b64":{"type":"string","description":"Base64 Compressed JSON of Rare On Internet Graph","example":"Dolores et."},"rare_on_internet_summary_table_as_json_compressed_b64":{"type":"string","description":"Base64 Compressed JSON Table of Rare On Internet Summary","example":"Voluptatum sed mollitia sint."}},"example":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Numquam et.","earliest_available_date_of_internet_results":"Ut laboriosam aut ratione voluptatem.","min_number_of_exact_matches_in_page":4281481948,"rare_on_internet_graph_json_compressed_b64":"Ex sed.","rare_on_internet_summary_table_as_json_compressed_b64":"Voluptatem aliquid aspernatur."}},"MetricsResult":{"type":"object","properties":{"self_healing_execution_events_stats":{"$ref":"#/components/schemas/SHExecutionStats"},"self_healing_trigger_events_stats":{"type":"array","items":{"$ref":"#/components/schemas/SHTriggerStats"},"description":"Self-healing trigger stats","example":[{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."}]}},"example":{"self_healing_execution_events_stats":{"total_file_healing_failed":5551622164662787660,"total_files_healed":8671724886982383594,"total_reconstruction_not_required_evaluations_approved":3509617877318915873,"total_reconstruction_required_evaluations_approved":2598935111695686044,"total_reconstruction_required_evaluations_not_approved":645871039112296182,"total_reconstruction_required_hash_mismatch":6198218032159021896,"total_reconstructions_not_required_evaluations_not_approved":6224481363842689139,"total_self_healing_events_accepted":5676342644268881237,"total_self_healing_events_acknowledged":305624170386109632,"total_self_healing_events_evaluations_unverified":1687102203985295374,"total_self_healing_events_evaluations_verified":7201039114224972892,"total_self_healing_events_issued":7624509276581647432,"total_self_healing_events_rejected":8106553798825109777},"self_healing_trigger_events_stats":[{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."}]},"required":["self_healing_trigger_events_stats","self_healing_execution_events_stats"]},"NftDetail":{"type":"object","properties":{"alt_rare_on_internet_dict_json_b64":{"type":"string","description":"Base64 Compressed Json of Alternative Rare On Internet Dict","example":"Voluptatibus ut qui qui eos."},"copies":{"type":"integer","description":"Number of copies","default":1,"example":1,"format":"int64","minimum":1,"maximum":1000},"creator_name":{"type":"string","description":"Name of the artist","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"Artist website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"drawing_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"earliest_date_of_results":{"type":"string","description":"Earliest Available Date of Internet Results","example":"Repudiandae eos voluptatibus voluptas laudantium dolor."},"green_address":{"type":"boolean","description":"Green address","example":true},"hentai_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"is_likely_dupe":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"is_rare_on_internet":{"type":"boolean","description":"is this nft rare on the internet","example":false},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"min_num_exact_matches_on_page":{"type":"integer","description":"Minimum Number of Exact Matches on Page","example":1095823983,"format":"int32"},"neutral_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"nsfw_score":{"type":"number","description":"NSFW Average score","example":1,"format":"float","minimum":0,"maximum":1},"porn_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"preview_thumbnail":{"type":"string","description":"Preview Image","example":"UGFyaWF0dXIgZWEgZW9zIGRlbGVjdHVzIGVhcXVlIGlzdGUgYXQu","format":"binary"},"rare_on_internet_graph_json_b64":{"type":"string","description":"Base64 Compressed JSON of Rare On Internet Graph","example":"Nostrum laudantium ea dolores occaecati incidunt."},"rare_on_internet_summary_table_json_b64":{"type":"string","description":"Base64 Compressed JSON Table of Rare On Internet Summary","example":"Quae necessitatibus quia amet necessitatibus est."},"rareness_score":{"type":"number","description":"Average pastel rareness score","example":1,"format":"float","minimum":0,"maximum":1},"royalty":{"type":"number","description":"how much artist should get on all future resales","example":0.3989923141701758,"format":"double"},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"sexy_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"storage_fee":{"type":"integer","description":"Storage fee %","example":100,"format":"int64"},"thumbnail_1":{"type":"string","description":"Thumbnail_1 image","example":"SWQgbGFib3Jpb3NhbSBtb2xlc3RpYXMgYmxhbmRpdGlpcyB2b2x1cHRhdGUgYWxpcXVpZCBjb25zZXF1YXR1ci4=","format":"binary"},"thumbnail_2":{"type":"string","description":"Thumbnail_2 image","example":"RWEgdml0YWUu","format":"binary"},"title":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"version":{"type":"integer","description":"version","example":1,"format":"int64"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"example":{"alt_rare_on_internet_dict_json_b64":"Et hic sed deleniti repellendus.","copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","drawing_nsfw_score":1,"earliest_date_of_results":"Enim perspiciatis maxime asperiores.","green_address":true,"hentai_nsfw_score":1,"is_likely_dupe":false,"is_rare_on_internet":false,"keywords":"Renaissance, sfumato, portrait","min_num_exact_matches_on_page":1288258079,"neutral_nsfw_score":1,"nsfw_score":1,"porn_nsfw_score":1,"preview_thumbnail":"UmVwcmVoZW5kZXJpdCBzZWQu","rare_on_internet_graph_json_b64":"Vero optio maiores hic provident recusandae rem.","rare_on_internet_summary_table_json_b64":"Quia recusandae ipsam est quia incidunt.","rareness_score":1,"royalty":0.36445655653960873,"series_name":"Famous artist","sexy_nsfw_score":1,"storage_fee":100,"thumbnail_1":"U3VzY2lwaXQgZXNzZSBuaXNpIGFwZXJpYW0gZGVsZWN0dXMgZWEgZXhwbGljYWJvLg==","thumbnail_2":"UXVpYSBlYSBvbW5pcyBhZCBtYWduaS4=","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","version":1,"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["rareness_score","nsfw_score","is_likely_dupe","is_rare_on_internet","title","description","creator_name","copies","creator_pastelid","txid"]},"NftRegisterPayload":{"type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"key":{"type":"string","description":"Passphrase of the owner's PastelID","example":"Basic abcdef12345"},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Consequatur voluptates voluptas qui commodi deleniti qui."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/components/schemas/ThumbnailcoordinateResponseBody"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"Request of the registration NFT","example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Minima et eligendi fuga repudiandae beatae laudantium.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["creator_name","name","creator_pastelid","spendable_address","maximum_fee","key"]},"NftSearchResult":{"type":"object","properties":{"match_index":{"type":"integer","description":"Sort index of the match based on score.This must be used to sort results on UI.","example":8815865718703222196,"format":"int64"},"matches":{"type":"array","items":{"$ref":"#/components/schemas/FuzzyMatch"},"description":"Match result details","example":[{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."}]},"nft":{"$ref":"#/components/schemas/NftSummary"}},"example":{"match_index":914775292025259545,"matches":[{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."}],"nft":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"UmF0aW9uZSBlc3QgZmFjaWxpcy4=","thumbnail_2":"TnVsbGEgbGFib3J1bSBxdW9zIHZlbC4=","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}},"required":["nft","matches","match_index"]},"NftSummary":{"type":"object","properties":{"copies":{"type":"integer","description":"Number of copies","default":1,"example":1,"format":"int64","minimum":1,"maximum":1000},"creator_name":{"type":"string","description":"Name of the artist","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"Artist website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"is_likely_dupe":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"nsfw_score":{"type":"number","description":"NSFW Average score","example":1,"format":"float","minimum":0,"maximum":1},"rareness_score":{"type":"number","description":"Average pastel rareness score","example":1,"format":"float","minimum":0,"maximum":1},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"thumbnail_1":{"type":"string","description":"Thumbnail_1 image","example":"UXVhcyBhYiBkb2xvcmVzIGFwZXJpYW0u","format":"binary"},"thumbnail_2":{"type":"string","description":"Thumbnail_2 image","example":"UmVtIGV0IHV0IHF1b2Qu","format":"binary"},"title":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"NFT response","example":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"U3VudCBpcHNhbSBjdW1xdWUgcmVydW0gZG9sb3IgZXhlcmNpdGF0aW9uZW0u","thumbnail_2":"T3B0aW8gc2l0IGVhcnVtLg==","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["title","description","creator_name","copies","creator_pastelid","txid"]},"ObserverEvaluationData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":2022086719,"format":"int32"},"is_challenge_timestamp_ok":{"type":"boolean","description":"IsChallengeTimestampOK","example":true},"is_challenger_signature_ok":{"type":"boolean","description":"IsChallengerSignatureOK","example":true},"is_evaluation_result_ok":{"type":"boolean","description":"IsEvaluationResultOK","example":false},"is_evaluation_timestamp_ok":{"type":"boolean","description":"IsEvaluationTimestampOK","example":true},"is_process_timestamp_ok":{"type":"boolean","description":"IsProcessTimestampOK","example":true},"is_recipient_signature_ok":{"type":"boolean","description":"IsRecipientSignatureOK","example":false},"merkelroot":{"type":"string","description":"Merkelroot","example":"Minus repellendus quaerat explicabo molestiae dolorem."},"reason":{"type":"string","description":"Reason","example":"Fuga dolorem ea reprehenderit quia."},"timestamp":{"type":"string","description":"Timestamp","example":"Accusamus veniam."},"true_hash":{"type":"string","description":"TrueHash","example":"Dicta explicabo aperiam consequatur."}},"description":"Data of Observer's evaluation","example":{"block":1828914406,"is_challenge_timestamp_ok":true,"is_challenger_signature_ok":true,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Esse voluptatem quibusdam nihil.","reason":"Nam aut.","timestamp":"Porro eius dolorem est.","true_hash":"Consequatur iusto repudiandae reprehenderit est."},"required":["timestamp","is_challenge_timestamp_ok","is_process_timestamp_ok","is_evaluation_timestamp_ok","is_recipient_signature_ok","is_challenger_signature_ok","is_evaluation_result_ok","true_hash"]},"RegisterCollectionRequestBody":{"type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"collection_item_copy_count":{"type":"integer","description":"item copy count in the collection","default":1,"example":10,"format":"int64","minimum":1,"maximum":1000},"collection_name":{"type":"string","description":"name of the collection","example":"galaxies"},"green":{"type":"boolean","description":"green","default":false,"example":false},"item_type":{"type":"string","description":"type of items, store by collection","example":"sense","enum":["sense","nft"]},"list_of_pastelids_of_authorized_contributors":{"type":"array","items":{"type":"string","example":"Sunt officiis magnam ea."},"description":"list of authorized contributors","example":["apple","banana","orange"]},"max_collection_entries":{"type":"integer","description":"max no of entries in the collection","example":5000,"format":"int64","minimum":1,"maximum":10000},"max_permitted_open_nsfw_score":{"type":"number","description":"max open nfsw score sense and nft items can have","example":0.5,"format":"double","minimum":0,"maximum":1},"minimum_similarity_score_to_first_entry_in_collection":{"type":"number","description":"min similarity for 1st entry to have","example":0.5,"format":"double","minimum":0,"maximum":1},"no_of_days_to_finalize_collection":{"type":"integer","description":"no of days to finalize collection","default":7,"example":5,"format":"int64","minimum":1,"maximum":7},"royalty":{"type":"number","description":"royalty fee","default":0,"example":2.32,"format":"double","minimum":0,"maximum":20},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","collection_item_copy_count":10,"collection_name":"galaxies","green":false,"item_type":"sense","list_of_pastelids_of_authorized_contributors":["apple","banana","orange"],"max_collection_entries":5000,"max_permitted_open_nsfw_score":0.5,"minimum_similarity_score_to_first_entry_in_collection":0.5,"no_of_days_to_finalize_collection":5,"royalty":2.32,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["collection_name","item_type","list_of_pastelids_of_authorized_contributors","max_collection_entries","max_permitted_open_nsfw_score","minimum_similarity_score_to_first_entry_in_collection","app_pastelid","spendable_address"]},"RegisterCollectionResponse":{"type":"object","properties":{"task_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"RegisterRequestBody":{"type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Quis sit et consectetur quisquam repellat sequi."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/components/schemas/Thumbnailcoordinate"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"image_id":"VK7mpAqZ","issued_copies":1,"keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Esse non impedit.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["image_id","creator_name","name","creator_pastelid","spendable_address","maximum_fee"]},"RegisterResult":{"type":"object","properties":{"task_id":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8}},"example":{"task_id":"n6Qn6TFM"},"required":["task_id"]},"RegisterTaskResponseBody":{"type":"object","properties":{"id":{"type":"string","description":"JOb ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"states":{"type":"array","items":{"$ref":"#/components/schemas/TaskState"},"description":"List of states from the very beginning of the process","example":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}]},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]},"ticket":{"$ref":"#/components/schemas/NftRegisterPayload"},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64}},"description":"RegisterTaskResponseBody result type (default view)","example":{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"required":["id","status","ticket"]},"Registration":{"type":"object","properties":{"files":{"type":"array","items":{"$ref":"#/components/schemas/File"},"description":"List of files","example":[{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."},{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."}]}},"example":{"files":[{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."},{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."},{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."}]},"required":["files"]},"RegistrationAttempt":{"type":"object","properties":{"error_message":{"type":"string","description":"Error Message","example":"Voluptatem consequatur architecto possimus."},"file_id":{"type":"string","description":"File ID","example":"Qui incidunt velit."},"finished_at":{"type":"string","description":"Finished At in datetime format","example":"2003-02-01T10:02:34Z","format":"date-time"},"id":{"type":"integer","description":"ID","example":1612055692617853928,"format":"int64"},"is_successful":{"type":"boolean","description":"Indicates if the registration was successful","example":false},"processor_sns":{"type":"string","description":"Processor SNS","example":"Omnis ipsam illum."},"reg_started_at":{"type":"string","description":"Registration Started At in datetime format","example":"2012-05-14T04:22:17Z","format":"date-time"}},"example":{"error_message":"Eum voluptatem hic consequatur qui veritatis.","file_id":"Aut libero nobis qui sit.","finished_at":"1996-11-10T22:28:46Z","id":5895971488814617698,"is_successful":true,"processor_sns":"Officia consequuntur sequi itaque doloremque qui qui.","reg_started_at":"1998-07-10T20:17:43Z"},"required":["id","file_id","reg_started_at","finished_at"]},"RespondedTicket":{"type":"object","properties":{"is_reconstruction_required":{"type":"boolean","example":true},"missing_keys":{"type":"array","items":{"type":"string","example":"Quis adipisci amet voluptas nisi explicabo."},"example":["In debitis quia atque molestias.","Asperiores culpa sunt sit.","Similique porro voluptatem cum consequatur ut et."]},"reconstructed_file_hash":{"type":"string","example":"QWRpcGlzY2kgZXggcmVydW0gcXVpIHF1YW0gaXRhcXVlIGluLg==","format":"binary"},"ticket_type":{"type":"string","example":"Doloremque vel doloremque facere."},"tx_id":{"type":"string","example":"In voluptatem sed enim impedit."}},"example":{"is_reconstruction_required":false,"missing_keys":["Iure aperiam ut sapiente.","Quaerat est quae architecto deleniti.","In officiis aspernatur deserunt.","Ut officia."],"reconstructed_file_hash":"SXVzdG8gZXhjZXB0dXJpIGxhYm9yaW9zYW0gb2NjYWVjYXRpIGFjY3VzYW50aXVtLg==","ticket_type":"Cum dolor.","tx_id":"Alias quo amet voluptatem."}},"ResponseData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":1830926455,"format":"int32"},"hash":{"type":"string","description":"Hash","example":"Et fuga quos odio."},"merkelroot":{"type":"string","description":"Merkelroot","example":"Est amet labore rerum consequuntur numquam autem."},"timestamp":{"type":"string","description":"Timestamp","example":"Et culpa doloremque id corrupti minima amet."}},"description":"Data of response","example":{"block":1743298666,"hash":"Sed reprehenderit harum quas ab quaerat.","merkelroot":"Vero laborum sunt tenetur exercitationem et reprehenderit.","timestamp":"Nulla reiciendis sit."},"required":["timestamp"]},"RestoreFile":{"type":"object","properties":{"activated_volumes":{"type":"integer","description":"Total volumes that are activated","example":806571868897374333,"format":"int64"},"registered_volumes":{"type":"integer","description":"Total registered volumes","example":7545780460008396473,"format":"int64"},"total_volumes":{"type":"integer","description":"Total volumes of selected file","example":1665300231075412669,"format":"int64"},"volumes_activated_in_recovery_flow":{"type":"integer","description":"Total volumes that are activated in restore process","example":398681028404636651,"format":"int64"},"volumes_registration_in_progress":{"type":"integer","description":"Total volumes with in-progress registration","example":1357198289991579544,"format":"int64"},"volumes_with_pending_registration":{"type":"integer","description":"Total volumes with pending registration","example":3396363195058332263,"format":"int64"}},"example":{"activated_volumes":5650439815539890343,"registered_volumes":3031149071443920694,"total_volumes":7161817749037530316,"volumes_activated_in_recovery_flow":6024487610152049805,"volumes_registration_in_progress":5792437328606046464,"volumes_with_pending_registration":4365828140604197761},"required":["total_volumes","registered_volumes","volumes_with_pending_registration","volumes_registration_in_progress","activated_volumes","volumes_activated_in_recovery_flow"]},"RestoreRequestBody":{"type":"object","properties":{"app_pastelId":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelId":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["app_pastelId"]},"SHExecutionStats":{"type":"object","properties":{"total_file_healing_failed":{"type":"integer","description":"Total number of file healings that failed","example":879295683357536917,"format":"int64"},"total_files_healed":{"type":"integer","description":"Total number of files healed","example":561289090697403675,"format":"int64"},"total_reconstruction_not_required_evaluations_approved":{"type":"integer","description":"Total number of reconstructions not required approved by verifier nodes","example":3740670154458596332,"format":"int64"},"total_reconstruction_required_evaluations_approved":{"type":"integer","description":"Total number of reconstructions approved by verifier nodes","example":7082670242566329789,"format":"int64"},"total_reconstruction_required_evaluations_not_approved":{"type":"integer","description":"Total number of reconstructions not approved by verifier nodes","example":1139166420317043116,"format":"int64"},"total_reconstruction_required_hash_mismatch":{"type":"integer","description":"Total number of reconstructions required with hash mismatch","example":4987601387876620942,"format":"int64"},"total_reconstructions_not_required_evaluations_not_approved":{"type":"integer","description":"Total number of reconstructions not required evaluation not approved by verifier nodes","example":2088254083994164728,"format":"int64"},"total_self_healing_events_accepted":{"type":"integer","description":"Total number of events accepted (healer node evaluated that reconstruction is required)","example":8188130298552292266,"format":"int64"},"total_self_healing_events_acknowledged":{"type":"integer","description":"Total number of events acknowledged by the healer node","example":5951863253232021290,"format":"int64"},"total_self_healing_events_evaluations_unverified":{"type":"integer","description":"Total number of challenge evaluations unverified by verifier nodes","example":3799024174070481865,"format":"int64"},"total_self_healing_events_evaluations_verified":{"type":"integer","description":"Total number of challenges verified","example":6564643128404903284,"format":"int64"},"total_self_healing_events_issued":{"type":"integer","description":"Total number of self-healing events issued","example":2700767640222453508,"format":"int64"},"total_self_healing_events_rejected":{"type":"integer","description":"Total number of events rejected (healer node evaluated that reconstruction is not required)","example":587181744822064718,"format":"int64"}},"description":"Self-healing execution stats","example":{"total_file_healing_failed":4132569794906174981,"total_files_healed":299449972248189702,"total_reconstruction_not_required_evaluations_approved":3948085026758093264,"total_reconstruction_required_evaluations_approved":7890445729771450423,"total_reconstruction_required_evaluations_not_approved":3761061347061502409,"total_reconstruction_required_hash_mismatch":8670542380715302054,"total_reconstructions_not_required_evaluations_not_approved":4323782701548225820,"total_self_healing_events_accepted":6384457494329020345,"total_self_healing_events_acknowledged":1502303318195151610,"total_self_healing_events_evaluations_unverified":611683296482964614,"total_self_healing_events_evaluations_verified":1700215197640479597,"total_self_healing_events_issued":2872196506620467630,"total_self_healing_events_rejected":3503350653128617398},"required":["total_self_healing_events_issued","total_self_healing_events_acknowledged","total_self_healing_events_rejected","total_self_healing_events_accepted","total_self_healing_events_evaluations_verified","total_reconstruction_required_evaluations_approved","total_reconstruction_not_required_evaluations_approved","total_self_healing_events_evaluations_unverified","total_reconstruction_required_evaluations_not_approved","total_reconstructions_not_required_evaluations_not_approved","total_files_healed","total_file_healing_failed"]},"SHTriggerStats":{"type":"object","properties":{"list_of_nodes":{"type":"string","description":"Comma-separated list of offline nodes","example":"Amet quaerat blanditiis consequatur et perferendis."},"nodes_offline":{"type":"integer","description":"Number of nodes offline","example":7038159273472894165,"format":"int64"},"total_files_identified":{"type":"integer","description":"Total number of files identified for self-healing","example":4928475190187598797,"format":"int64"},"total_tickets_identified":{"type":"integer","description":"Total number of tickets identified for self-healing","example":5291546525723281204,"format":"int64"},"trigger_id":{"type":"string","description":"Unique identifier for the trigger","example":"Dolorum atque sequi."}},"description":"Self-healing trigger stats","example":{"list_of_nodes":"Et ratione fuga nobis incidunt est.","nodes_offline":2634691086720156436,"total_files_identified":4911447140705622375,"total_tickets_identified":7697835316004070642,"trigger_id":"Non explicabo."},"required":["trigger_id","nodes_offline","list_of_nodes","total_files_identified","total_tickets_identified"]},"SelfHealingChallengeData":{"type":"object","properties":{"block":{"type":"integer","example":1677968800,"format":"int32"},"event_tickets":{"type":"array","items":{"$ref":"#/components/schemas/EventTicket"},"example":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}]},"merkelroot":{"type":"string","example":"Eveniet iure id corporis et."},"nodes_on_watchlist":{"type":"string","example":"Sunt est dolor hic."},"timestamp":{"type":"string","example":"In velit suscipit id."}},"example":{"block":983726503,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Accusantium rerum aspernatur et debitis.","nodes_on_watchlist":"Mollitia magni aut molestiae similique.","timestamp":"Qui nostrum et harum enim voluptates et."}},"SelfHealingMessage":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/SelfHealingMessageData"},"message_type":{"type":"string","example":"Ipsa molestiae."},"sender_id":{"type":"string","example":"Repellat enim a ullam qui."},"sender_signature":{"type":"string","example":"TW9sZXN0aWFzIGFzcGVyaW9yZXMgcmVpY2llbmRpcyBxdW9zIHF1aWJ1c2RhbSBxdWFzaS4=","format":"binary"},"trigger_id":{"type":"string","example":"Sit amet eligendi beatae commodi itaque."}},"example":{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Odio et nihil voluptatum.","sender_id":"Dolorum qui accusantium blanditiis voluptas aut fugiat.","sender_signature":"U2l0IGluY2lkdW50Lg==","trigger_id":"Quod autem repellendus fugiat beatae officia voluptatem."}},"SelfHealingMessageData":{"type":"object","properties":{"challenger_id":{"type":"string","example":"Magni quod architecto ipsa laborum consectetur praesentium."},"event_details":{"$ref":"#/components/schemas/SelfHealingChallengeData"},"recipient_id":{"type":"string","example":"Consequatur vel sed."},"response":{"$ref":"#/components/schemas/SelfHealingResponseData"},"verification":{"$ref":"#/components/schemas/SelfHealingVerificationData"}},"example":{"challenger_id":"Qui quisquam cum quasi dolores quod.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Modi incidunt dolore dolor a eligendi.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}}},"SelfHealingMessageKV":{"type":"object","properties":{"message_type":{"type":"string","description":"Message type","example":"Magnam ipsum corrupti iste sequi."},"messages":{"type":"array","items":{"$ref":"#/components/schemas/SelfHealingMessage"},"description":"Self-healing messages","example":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}},"example":{"message_type":"Quasi eveniet harum qui.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}},"SelfHealingReport":{"type":"object","properties":{"messages":{"type":"array","items":{"$ref":"#/components/schemas/SelfHealingMessageKV"},"description":"Map of message type to SelfHealingMessages","example":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},"example":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},"SelfHealingReportKV":{"type":"object","properties":{"event_id":{"type":"string","description":"Challenge ID","example":"Praesentium ducimus ea voluptates optio et sed."},"report":{"$ref":"#/components/schemas/SelfHealingReport"}},"example":{"event_id":"Dolorum velit aliquam eum quod aut.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}},"SelfHealingReports":{"type":"object","properties":{"reports":{"type":"array","items":{"$ref":"#/components/schemas/SelfHealingReportKV"},"description":"Map of challenge ID to SelfHealingReport","example":[{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}]}},"example":{"reports":[{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}]}},"SelfHealingResponseData":{"type":"object","properties":{"block":{"type":"integer","example":15564711,"format":"int32"},"event_id":{"type":"string","example":"Consequuntur necessitatibus eveniet."},"merkelroot":{"type":"string","example":"Dolor harum laborum non qui."},"responded_ticket":{"$ref":"#/components/schemas/RespondedTicket"},"timestamp":{"type":"string","example":"Unde soluta ad."},"verifiers":{"type":"array","items":{"type":"string","example":"Qui ut qui ut."},"example":["Sequi veritatis fuga consequuntur maxime aut.","Voluptas est."]}},"example":{"block":1344120165,"event_id":"Quas id id ut consectetur.","merkelroot":"Quia a adipisci esse.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Excepturi laudantium consectetur fugit quibusdam sit.","verifiers":["Rem dicta.","Id labore.","Modi accusamus et perspiciatis cumque praesentium.","Ut ipsa odit."]}},"SelfHealingVerificationData":{"type":"object","properties":{"block":{"type":"integer","example":1701068661,"format":"int32"},"event_id":{"type":"string","example":"Dicta non."},"merkelroot":{"type":"string","example":"Magnam omnis debitis consequatur aspernatur excepturi."},"timestamp":{"type":"string","example":"Numquam consectetur voluptatum."},"verified_ticket":{"$ref":"#/components/schemas/VerifiedTicket"},"verifiers_data":{"type":"object","example":{"Et et iure.":"Vm9sdXB0YXR1bSByZXB1ZGlhbmRhZSBpbmNpZHVudCB2ZW5pYW0gZGViaXRpcyByZXBlbGxlbmR1cyBtb2RpLg==","Voluptas atque magni qui dolore et rerum.":"RmFjZXJlIHJlcHVkaWFuZGFlLg=="},"additionalProperties":{"type":"string","example":"Q29uc2VjdGV0dXIgZXhwZWRpdGEgZG9sb3IgZWEgcXVvcy4=","format":"binary"}}},"example":{"block":469848106,"event_id":"Voluptatum est.","merkelroot":"Quo consequuntur id.","timestamp":"Est vero qui itaque facilis ut et.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Consequuntur saepe qui.":"Q3VtIHByYWVzZW50aXVtIGV4IHF1aSBxdWkgc2FlcGUu","Deserunt omnis nesciunt et eos dolores.":"SXN0ZSBuYXR1cyBlbmltIGlzdGUu","Sed reprehenderit molestias odio sit facere repellat.":"U2ludCBxdWkgaXVyZSBpcHNhLg=="}}},"StartProcessingRequestBody":{"type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"burn_txids":{"type":"array","items":{"type":"string","example":"Rerum harum esse et."},"description":"List of Burn transaction IDs for multi-volume registration","example":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"]},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","burn_txids":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"],"make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["app_pastelid"]},"StartProcessingRequestBody2":{"type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Nulla eveniet non vitae qui ducimus."},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","open_api_group_id":"Similique nam et odio vero consectetur.","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["burn_txid","app_pastelid"]},"StartProcessingResult":{"type":"object","properties":{"task_id":{"type":"string","description":"Task ID of processing task","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"StorageMessage":{"type":"object","properties":{"challenge":{"$ref":"#/components/schemas/ChallengeData"},"challenge_id":{"type":"string","description":"ID of the challenge","example":"Amet qui voluptatibus magni consectetur voluptate."},"challenger_evaluation":{"$ref":"#/components/schemas/EvaluationData"},"challenger_id":{"type":"string","description":"ID of the challenger","example":"Numquam sed et eos a officia iusto."},"message_type":{"type":"string","description":"type of the message","example":"Et nulla laudantium."},"observer_evaluation":{"$ref":"#/components/schemas/ObserverEvaluationData"},"observers":{"type":"array","items":{"type":"string","example":"Laboriosam vero fuga illum mollitia non ducimus."},"description":"List of observer IDs","example":["Laudantium animi architecto ea.","Veniam quidem quia amet et qui."]},"recipient_id":{"type":"string","description":"ID of the recipient","example":"Rerum ut cum quo et."},"response":{"$ref":"#/components/schemas/ResponseData"},"sender_id":{"type":"string","description":"ID of the sender's node","example":"Sint explicabo molestias aliquam repellendus nobis."},"sender_signature":{"type":"string","description":"signature of the sender","example":"Mollitia qui laudantium maiores."}},"description":"Storage challenge message data","example":{"challenge":{"block":626674453,"end_index":1362782358179080945,"file_hash":"Molestias aut beatae.","merkelroot":"Sint aut repellat consequatur dignissimos voluptatibus.","start_index":6285852628941175332,"timestamp":"Odio deleniti omnis maiores dolorem."},"challenge_id":"Provident voluptas dolorem.","challenger_evaluation":{"block":346663458,"hash":"Voluptatem sint recusandae.","is_verified":true,"merkelroot":"Et rem ducimus maxime aut.","timestamp":"Fugit eaque nesciunt eum quasi."},"challenger_id":"Omnis non neque ducimus alias magni rerum.","message_type":"Voluptas odit quae quo ut saepe aperiam.","observer_evaluation":{"block":1725989442,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":false,"merkelroot":"Ut provident pariatur.","reason":"Ut quia repellendus.","timestamp":"Voluptas exercitationem quisquam id accusantium voluptatibus.","true_hash":"Architecto sit quidem deserunt rem dolore aut."},"observers":["Qui dignissimos quae.","Dolores dolor ut totam vel officia."],"recipient_id":"Fuga voluptatem libero tempora vel consectetur.","response":{"block":2076283382,"hash":"Dolor autem quo vero quia quod omnis.","merkelroot":"Et ullam officiis libero.","timestamp":"Qui non quibusdam."},"sender_id":"Sunt libero hic.","sender_signature":"Molestiae non fuga animi architecto."},"required":["challenge_id","message_type","sender_id","challenger_id","observers","recipient_id"]},"SummaryStatsResult":{"type":"object","properties":{"sc_summary_stats":{"$ref":"#/components/schemas/HCSummaryStats"}},"example":{"sc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":2982554539974798863,"no_of_invalid_signatures_observed_by_observers":804645458629257575,"no_of_slow_responses_observed_by_observers":6016941875889227877,"total_challenges_evaluated_by_challenger":9084935928395605172,"total_challenges_issued":554226313255902356,"total_challenges_processed_by_recipient":9153767776266110855,"total_challenges_verified":6924812056467069635}},"required":["sc_summary_stats"]},"TaskHistory":{"type":"object","properties":{"details":{"$ref":"#/components/schemas/Details"},"message":{"type":"string","description":"message string (if any)","example":"Balance less than maximum fee provied in the request, could not gather enough confirmations..."},"status":{"type":"string","description":"past status string","example":"Started, Image Probed, Downloaded..."},"timestamp":{"type":"string","description":"Timestamp of the status creation","example":"2006-01-02T15:04:05Z07:00"}},"example":{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},"required":["status"]},"TaskResponseTiny":{"type":"object","properties":{"id":{"type":"string","description":"JOb ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]},"ticket":{"$ref":"#/components/schemas/NftRegisterPayload"},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64}},"description":"TaskResponse result type (tiny view)","example":{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"required":["id","status","ticket"]},"TaskResponseTinyCollection":{"type":"array","items":{"$ref":"#/components/schemas/TaskResponseTiny"},"description":"RegisterTasksResponseBody is the result type for an array of TaskResponse (tiny view)","example":[{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"}]},"TaskState":{"type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"Thumbnailcoordinate":{"type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"ThumbnailcoordinateResponseBody":{"type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail (default view)","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"UploadAssetRequestBody":{"type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"UmVtIGV4Y2VwdHVyaSBlYXJ1bSB0ZW1wb3JlIHRlbXBvcmlidXMgcXVpcyBhc3Blcm5hdHVyLg==","format":"binary"},"filename":{"type":"string","description":"For internal use"},"hash":{"type":"string","description":"For internal use"},"size":{"type":"integer","description":"For internal use","format":"int64"}},"example":{"file":"TnVsbGEgZnVnaXQgY29uc2VjdGV0dXIgZXN0IGRpc3RpbmN0aW8gbWFnbmku"},"required":["file"]},"UploadImageRequestBody":{"type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"TW9sZXN0aWFlIGxhYm9ydW0gcXVpYnVzZGFtLg==","format":"binary"},"filename":{"type":"string","description":"For internal use"}},"example":{"file":"Vm9sdXB0YXRlbSBpcHNhbSBudWxsYSBmYWNlcmUu"},"required":["file"]},"UserImageUploadPayload":{"type":"object","properties":{"content":{"type":"string","description":"File to upload (byte array of the file content)","example":"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","format":"binary"},"filename":{"type":"string","description":"File name of the user image","example":"image_name.png","pattern":"^.*\\.(png|PNG|jpeg|JPEG|jpg|JPG)$"}},"description":"User image upload payload","example":{"content":"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","filename":"image_name.png"},"required":["content"]},"UserdataProcessResult":{"type":"object","properties":{"avatar_image":{"type":"string","description":"Error detail on avatar","example":"","maxLength":256},"biography":{"type":"string","description":"Error detail on biography","example":"","maxLength":256},"categories":{"type":"string","description":"Error detail on categories","example":"","maxLength":256},"cover_photo":{"type":"string","description":"Error detail on cover photo","example":"","maxLength":256},"detail":{"type":"string","description":"The detail of why result is success/fail, depend on response_code","example":"All userdata is processed","maxLength":256},"facebook_link":{"type":"string","description":"Error detail on facebook_link","example":"","maxLength":256},"location":{"type":"string","description":"Error detail on location","example":"","maxLength":256},"native_currency":{"type":"string","description":"Error detail on native_currency","example":"","maxLength":256},"primary_language":{"type":"string","description":"Error detail on primary_language","example":"","maxLength":256},"realname":{"type":"string","description":"Error detail on realname","example":"","maxLength":256},"response_code":{"type":"integer","description":"Result of the request is success or not","example":0,"format":"int64"},"twitter_link":{"type":"string","description":"Error detail on twitter_link","example":"","maxLength":256}},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""},"required":["response_code","detail"]},"VerifiedTicket":{"type":"object","properties":{"is_reconstruction_required":{"type":"boolean","example":false},"is_verified":{"type":"boolean","example":true},"message":{"type":"string","example":"Mollitia quibusdam vel saepe dignissimos impedit consequatur."},"missing_keys":{"type":"array","items":{"type":"string","example":"Adipisci quod non dignissimos veniam porro et."},"example":["Reiciendis sit.","Voluptas repellendus aut velit nesciunt.","Aut aut.","Et quia maiores minima dolor."]},"reconstructed_file_hash":{"type":"string","example":"Q3VwaWRpdGF0ZSBpcHNhLg==","format":"binary"},"ticket_type":{"type":"string","example":"Ipsum recusandae illum voluptatum."},"tx_id":{"type":"string","example":"Qui reprehenderit est."}},"example":{"is_reconstruction_required":true,"is_verified":false,"message":"Laborum unde officiis ipsum quidem qui et.","missing_keys":["Soluta ullam provident ea.","Ea et nisi.","Omnis provident aperiam molestiae."],"reconstructed_file_hash":"QXV0ZW0gYXRxdWUgYXV0IGVuaW0gY29uc2VxdWF0dXIu","ticket_type":"Ea molestias.","tx_id":"Debitis voluptatem."}}},"securitySchemes":{"api_key_header_Authorization":{"type":"apiKey","description":"Nft Owner's passphrase to authenticate","name":"Authorization","in":"header"}}},"tags":[{"name":"cascade","description":"OpenAPI Cascade service"},{"name":"collection","description":"OpenAPI Collection service"},{"name":"HealthCheckChallenge","description":"HealthCheck Challenge service for to return health check related data"},{"name":"nft","description":"Pastel NFT"},{"name":"Score","description":"Score service for return score related to challenges"},{"name":"metrics","description":"Metrics service for fetching data over a specified time range"},{"name":"sense","description":"OpenAPI Sense service"},{"name":"StorageChallenge","description":"Storage Challenge service for to return storage-challenge related data"},{"name":"userdatas","description":"Pastel Process User Specified Data"}]} \ No newline at end of file diff --git a/walletnode/api/gen/http/openapi3.yaml b/walletnode/api/gen/http/openapi3.yaml index a2d58b9d1..f4cefe160 100644 --- a/walletnode/api/gen/http/openapi3.yaml +++ b/walletnode/api/gen/http/openapi3.yaml @@ -58,14 +58,6 @@ paths: message: Balance less than maximum fee provied in the request, could not gather enough confirmations... status: Started, Image Probed, Downloaded... timestamp: 2006-01-02T15:04:05Z07:00 - - details: - fields: - Et consequatur.: Nisi molestias voluptatem odit. - Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. - message: Image has been downloaded... - message: Balance less than maximum fee provied in the request, could not gather enough confirmations... - status: Started, Image Probed, Downloaded... - timestamp: 2006-01-02T15:04:05Z07:00 example: - details: fields: @@ -83,22 +75,6 @@ paths: message: Balance less than maximum fee provied in the request, could not gather enough confirmations... status: Started, Image Probed, Downloaded... timestamp: 2006-01-02T15:04:05Z07:00 - - details: - fields: - Et consequatur.: Nisi molestias voluptatem odit. - Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. - message: Image has been downloaded... - message: Balance less than maximum fee provied in the request, could not gather enough confirmations... - status: Started, Image Probed, Downloaded... - timestamp: 2006-01-02T15:04:05Z07:00 - - details: - fields: - Et consequatur.: Nisi molestias voluptatem odit. - Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. - message: Image has been downloaded... - message: Balance less than maximum fee provied in the request, could not gather enough confirmations... - status: Started, Image Probed, Downloaded... - timestamp: 2006-01-02T15:04:05Z07:00 "404": description: 'NotFound: Not Found response.' content: @@ -257,40 +233,7 @@ paths: block: 386439617 merkelroot: Dolorum quaerat. timestamp: Et nesciunt. - challenge_id: Quo saepe consequatur repudiandae ut natus odit. - challenger_evaluation: - block: 1648580362 - is_verified: true - merkelroot: Similique odit. - timestamp: Modi est velit minus qui occaecati veritatis. - challenger_id: Ut rem. - message_type: Assumenda saepe laboriosam unde ab in. - observer_evaluation: - block: 2134312480 - is_challenge_timestamp_ok: false - is_challenger_signature_ok: true - is_evaluation_result_ok: true - is_evaluation_timestamp_ok: true - is_process_timestamp_ok: false - is_recipient_signature_ok: true - merkelroot: Eius excepturi et sed. - timestamp: Tenetur voluptatem nemo eum aliquid. - observers: - - Aut voluptatem dolor. - - Possimus dolorem ut veritatis vitae eum magni. - - Mollitia fugiat. - recipient_id: Debitis exercitationem. - response: - block: 1559432072 - merkelroot: Rerum aliquam. - timestamp: Aut repellendus dolorem cumque perspiciatis. - sender_id: Sint commodi. - sender_signature: Aut accusamus vitae. - - challenge: - block: 386439617 - merkelroot: Dolorum quaerat. - timestamp: Et nesciunt. - challenge_id: Quo saepe consequatur repudiandae ut natus odit. + challenge_id: Consequatur repudiandae ut natus odit. challenger_evaluation: block: 1648580362 is_verified: true @@ -323,7 +266,7 @@ paths: block: 386439617 merkelroot: Dolorum quaerat. timestamp: Et nesciunt. - challenge_id: Quo saepe consequatur repudiandae ut natus odit. + challenge_id: Consequatur repudiandae ut natus odit. challenger_evaluation: block: 1648580362 is_verified: true @@ -356,7 +299,7 @@ paths: block: 386439617 merkelroot: Dolorum quaerat. timestamp: Et nesciunt. - challenge_id: Quo saepe consequatur repudiandae ut natus odit. + challenge_id: Consequatur repudiandae ut natus odit. challenger_evaluation: block: 1648580362 is_verified: true @@ -390,7 +333,40 @@ paths: block: 386439617 merkelroot: Dolorum quaerat. timestamp: Et nesciunt. - challenge_id: Quo saepe consequatur repudiandae ut natus odit. + challenge_id: Consequatur repudiandae ut natus odit. + challenger_evaluation: + block: 1648580362 + is_verified: true + merkelroot: Similique odit. + timestamp: Modi est velit minus qui occaecati veritatis. + challenger_id: Ut rem. + message_type: Assumenda saepe laboriosam unde ab in. + observer_evaluation: + block: 2134312480 + is_challenge_timestamp_ok: false + is_challenger_signature_ok: true + is_evaluation_result_ok: true + is_evaluation_timestamp_ok: true + is_process_timestamp_ok: false + is_recipient_signature_ok: true + merkelroot: Eius excepturi et sed. + timestamp: Tenetur voluptatem nemo eum aliquid. + observers: + - Aut voluptatem dolor. + - Possimus dolorem ut veritatis vitae eum magni. + - Mollitia fugiat. + recipient_id: Debitis exercitationem. + response: + block: 1559432072 + merkelroot: Rerum aliquam. + timestamp: Aut repellendus dolorem cumque perspiciatis. + sender_id: Sint commodi. + sender_signature: Aut accusamus vitae. + - challenge: + block: 386439617 + merkelroot: Dolorum quaerat. + timestamp: Et nesciunt. + challenge_id: Consequatur repudiandae ut natus odit. challenger_evaluation: block: 1648580362 is_verified: true @@ -423,7 +399,7 @@ paths: block: 386439617 merkelroot: Dolorum quaerat. timestamp: Et nesciunt. - challenge_id: Quo saepe consequatur repudiandae ut natus odit. + challenge_id: Consequatur repudiandae ut natus odit. challenger_evaluation: block: 1648580362 is_verified: true @@ -826,14 +802,6 @@ paths: message: Balance less than maximum fee provied in the request, could not gather enough confirmations... status: Started, Image Probed, Downloaded... timestamp: 2006-01-02T15:04:05Z07:00 - - details: - fields: - Et consequatur.: Nisi molestias voluptatem odit. - Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. - message: Image has been downloaded... - message: Balance less than maximum fee provied in the request, could not gather enough confirmations... - status: Started, Image Probed, Downloaded... - timestamp: 2006-01-02T15:04:05Z07:00 example: - details: fields: @@ -851,6 +819,14 @@ paths: message: Balance less than maximum fee provied in the request, could not gather enough confirmations... status: Started, Image Probed, Downloaded... timestamp: 2006-01-02T15:04:05Z07:00 + - details: + fields: + Et consequatur.: Nisi molestias voluptatem odit. + Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. + message: Image has been downloaded... + message: Balance less than maximum fee provied in the request, could not gather enough confirmations... + status: Started, Image Probed, Downloaded... + timestamp: 2006-01-02T15:04:05Z07:00 "404": description: 'NotFound: Not Found response.' content: @@ -1524,9 +1500,9 @@ paths: schema: type: string description: Artist PastelID or special value; mine - example: ui1 + example: 1m0 maxLength: 256 - example: vbf + example: vy1 - name: limit in: query description: Number of results to be return @@ -1548,8 +1524,8 @@ paths: schema: type: string description: Query is search query entered by user - example: Explicabo molestiae dolorem. - example: Doloribus consequatur et quis perspiciatis dolores fuga. + example: Debitis optio dolores sint quam dolor. + example: Error magni voluptatem quia qui enim facere. - name: creator_name in: query description: Name of the nft creator @@ -1558,8 +1534,8 @@ paths: type: boolean description: Name of the nft creator default: true - example: false - example: false + example: true + example: true - name: art_title in: query description: Title of NFT @@ -1568,8 +1544,8 @@ paths: type: boolean description: Title of NFT default: true - example: true - example: true + example: false + example: false - name: series in: query description: NFT series name @@ -1578,7 +1554,7 @@ paths: type: boolean description: NFT series name default: true - example: true + example: false example: false - name: descr in: query @@ -1588,7 +1564,7 @@ paths: type: boolean description: Artist written statement default: true - example: true + example: false example: false - name: keyword in: query @@ -1598,7 +1574,7 @@ paths: type: boolean description: Keyword that Artist assigns to NFT default: true - example: true + example: false example: false - name: min_copies in: query @@ -1632,10 +1608,10 @@ paths: type: integer description: Minimum blocknum default: 1 - example: 5341561797300454089 + example: 3540439880188411664 format: int64 minimum: 1 - example: 8542183544070202228 + example: 758130406742501945 - name: max_block in: query description: Maximum blocknum @@ -1643,10 +1619,10 @@ paths: schema: type: integer description: Maximum blocknum - example: 7855127562217034627 + example: 3446396552371564919 format: int64 minimum: 1 - example: 4230828594225439328 + example: 7544698525104512975 - name: is_likely_dupe in: query description: Is this image likely a duplicate of another known image @@ -1870,10 +1846,6 @@ paths: ip_address: Officiis ratione velit. node_id: Suscipit a laudantium consequatur necessitatibus. storage_challenge_score: 0.8964053134221979 - - health_check_challenge_score: 0.04110607293809476 - ip_address: Officiis ratione velit. - node_id: Suscipit a laudantium consequatur necessitatibus. - storage_challenge_score: 0.8964053134221979 example: - health_check_challenge_score: 0.04110607293809476 ip_address: Officiis ratione velit. @@ -1883,14 +1855,6 @@ paths: ip_address: Officiis ratione velit. node_id: Suscipit a laudantium consequatur necessitatibus. storage_challenge_score: 0.8964053134221979 - - health_check_challenge_score: 0.04110607293809476 - ip_address: Officiis ratione velit. - node_id: Suscipit a laudantium consequatur necessitatibus. - storage_challenge_score: 0.8964053134221979 - - health_check_challenge_score: 0.04110607293809476 - ip_address: Officiis ratione velit. - node_id: Suscipit a laudantium consequatur necessitatibus. - storage_challenge_score: 0.8964053134221979 "400": description: 'BadRequest: Bad Request response.' content: @@ -1970,6 +1934,14 @@ paths: message: Balance less than maximum fee provied in the request, could not gather enough confirmations... status: Started, Image Probed, Downloaded... timestamp: 2006-01-02T15:04:05Z07:00 + - details: + fields: + Et consequatur.: Nisi molestias voluptatem odit. + Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. + message: Image has been downloaded... + message: Balance less than maximum fee provied in the request, could not gather enough confirmations... + status: Started, Image Probed, Downloaded... + timestamp: 2006-01-02T15:04:05Z07:00 example: - details: fields: @@ -1987,14 +1959,6 @@ paths: message: Balance less than maximum fee provied in the request, could not gather enough confirmations... status: Started, Image Probed, Downloaded... timestamp: 2006-01-02T15:04:05Z07:00 - - details: - fields: - Et consequatur.: Nisi molestias voluptatem odit. - Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. - message: Image has been downloaded... - message: Balance less than maximum fee provied in the request, could not gather enough confirmations... - status: Started, Image Probed, Downloaded... - timestamp: 2006-01-02T15:04:05Z07:00 "404": description: 'NotFound: Not Found response.' content: @@ -2069,6 +2033,96 @@ paths: $ref: '#/components/schemas/Error' security: - api_key_header_Authorization: [] + /openapi/cascade/downloads/{file_id}/status: + get: + tags: + - cascade + summary: Get history of states as a json string with a list of state objects. + description: Gets the state of download task + operationId: cascade#getDownloadTaskState + parameters: + - name: file_id + in: path + description: File ID returned by Download V2 API + required: true + schema: + type: string + description: File ID returned by Download V2 API + example: n6Qn6TFM + minLength: 8 + maxLength: 8 + example: n6Qn6TFM + responses: + "200": + description: OK response. + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/TaskHistory' + example: + - details: + fields: + Et consequatur.: Nisi molestias voluptatem odit. + Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. + message: Image has been downloaded... + message: Balance less than maximum fee provied in the request, could not gather enough confirmations... + status: Started, Image Probed, Downloaded... + timestamp: 2006-01-02T15:04:05Z07:00 + - details: + fields: + Et consequatur.: Nisi molestias voluptatem odit. + Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. + message: Image has been downloaded... + message: Balance less than maximum fee provied in the request, could not gather enough confirmations... + status: Started, Image Probed, Downloaded... + timestamp: 2006-01-02T15:04:05Z07:00 + - details: + fields: + Et consequatur.: Nisi molestias voluptatem odit. + Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. + message: Image has been downloaded... + message: Balance less than maximum fee provied in the request, could not gather enough confirmations... + status: Started, Image Probed, Downloaded... + timestamp: 2006-01-02T15:04:05Z07:00 + example: + - details: + fields: + Et consequatur.: Nisi molestias voluptatem odit. + Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. + message: Image has been downloaded... + message: Balance less than maximum fee provied in the request, could not gather enough confirmations... + status: Started, Image Probed, Downloaded... + timestamp: 2006-01-02T15:04:05Z07:00 + - details: + fields: + Et consequatur.: Nisi molestias voluptatem odit. + Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. + message: Image has been downloaded... + message: Balance less than maximum fee provied in the request, could not gather enough confirmations... + status: Started, Image Probed, Downloaded... + timestamp: 2006-01-02T15:04:05Z07:00 + - details: + fields: + Et consequatur.: Nisi molestias voluptatem odit. + Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. + message: Image has been downloaded... + message: Balance less than maximum fee provied in the request, could not gather enough confirmations... + status: Started, Image Probed, Downloaded... + timestamp: 2006-01-02T15:04:05Z07:00 + "404": + description: 'NotFound: Not Found response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + "500": + description: 'InternalServerError: Internal Server Error response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' /openapi/cascade/registration_details/{base_file_id}: get: tags: @@ -2097,137 +2151,137 @@ paths: example: files: - activation_attempts: - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - activation_txid: Sequi qui eum et dolorum esse. - base_file_id: Rerum iusto accusamus. - burn_txn_id: Delectus dignissimos id dolorem et totam deserunt. - cascade_metadata_ticket_id: Numquam voluptas. - done_block: 4949105958821157300 - file_id: Perspiciatis accusantium sed eveniet qui qui. - file_index: Cumque est et fugiat qui. - hash_of_original_big_file: Accusamus repellat commodi architecto aut quidem inventore. - is_concluded: false - name_of_original_big_file_with_ext: Perferendis unde qui qui dicta. - reg_txid: Quasi est. + activation_txid: Voluptatem aliquam molestias. + base_file_id: Dignissimos id dolorem et totam. + burn_txn_id: Repellat commodi. + cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. + done_block: 649100778871101980 + file_id: Inventore illo. + file_index: Qui eum et dolorum esse dicta aut. + hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + is_concluded: true + name_of_original_big_file_with_ext: Officia quis. + reg_txid: Numquam voluptas. registration_attempts: - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - req_amount: 0.11360537957590923 - req_burn_txn_amount: 0.2916254651446542 - size_of_original_big_file: 0.5209096568475247 - start_block: 918621255 - task_id: Sit tenetur labore illum numquam quia. - upload_timestamp: "1973-10-04T06:27:17Z" - uuid_key: Voluptatem aliquam molestias. + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + req_amount: 0.8217214546342201 + req_burn_txn_amount: 0.0062028958461957965 + size_of_original_big_file: 0.8474169125149866 + start_block: 256891858 + task_id: Et autem. + upload_timestamp: "1989-07-01T07:51:12Z" + uuid_key: Doloribus alias qui est. - activation_attempts: - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - activation_txid: Sequi qui eum et dolorum esse. - base_file_id: Rerum iusto accusamus. - burn_txn_id: Delectus dignissimos id dolorem et totam deserunt. - cascade_metadata_ticket_id: Numquam voluptas. - done_block: 4949105958821157300 - file_id: Perspiciatis accusantium sed eveniet qui qui. - file_index: Cumque est et fugiat qui. - hash_of_original_big_file: Accusamus repellat commodi architecto aut quidem inventore. - is_concluded: false - name_of_original_big_file_with_ext: Perferendis unde qui qui dicta. - reg_txid: Quasi est. + activation_txid: Voluptatem aliquam molestias. + base_file_id: Dignissimos id dolorem et totam. + burn_txn_id: Repellat commodi. + cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. + done_block: 649100778871101980 + file_id: Inventore illo. + file_index: Qui eum et dolorum esse dicta aut. + hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + is_concluded: true + name_of_original_big_file_with_ext: Officia quis. + reg_txid: Numquam voluptas. registration_attempts: - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - req_amount: 0.11360537957590923 - req_burn_txn_amount: 0.2916254651446542 - size_of_original_big_file: 0.5209096568475247 - start_block: 918621255 - task_id: Sit tenetur labore illum numquam quia. - upload_timestamp: "1973-10-04T06:27:17Z" - uuid_key: Voluptatem aliquam molestias. + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + req_amount: 0.8217214546342201 + req_burn_txn_amount: 0.0062028958461957965 + size_of_original_big_file: 0.8474169125149866 + start_block: 256891858 + task_id: Et autem. + upload_timestamp: "1989-07-01T07:51:12Z" + uuid_key: Doloribus alias qui est. - activation_attempts: - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - activation_txid: Sequi qui eum et dolorum esse. - base_file_id: Rerum iusto accusamus. - burn_txn_id: Delectus dignissimos id dolorem et totam deserunt. - cascade_metadata_ticket_id: Numquam voluptas. - done_block: 4949105958821157300 - file_id: Perspiciatis accusantium sed eveniet qui qui. - file_index: Cumque est et fugiat qui. - hash_of_original_big_file: Accusamus repellat commodi architecto aut quidem inventore. - is_concluded: false - name_of_original_big_file_with_ext: Perferendis unde qui qui dicta. - reg_txid: Quasi est. + activation_txid: Voluptatem aliquam molestias. + base_file_id: Dignissimos id dolorem et totam. + burn_txn_id: Repellat commodi. + cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. + done_block: 649100778871101980 + file_id: Inventore illo. + file_index: Qui eum et dolorum esse dicta aut. + hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + is_concluded: true + name_of_original_big_file_with_ext: Officia quis. + reg_txid: Numquam voluptas. registration_attempts: - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - req_amount: 0.11360537957590923 - req_burn_txn_amount: 0.2916254651446542 - size_of_original_big_file: 0.5209096568475247 - start_block: 918621255 - task_id: Sit tenetur labore illum numquam quia. - upload_timestamp: "1973-10-04T06:27:17Z" - uuid_key: Voluptatem aliquam molestias. + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + req_amount: 0.8217214546342201 + req_burn_txn_amount: 0.0062028958461957965 + size_of_original_big_file: 0.8474169125149866 + start_block: 256891858 + task_id: Et autem. + upload_timestamp: "1989-07-01T07:51:12Z" + uuid_key: Doloribus alias qui est. "400": description: 'BadRequest: Bad Request response.' content: @@ -2455,6 +2509,68 @@ paths: application/vnd.goa.error: schema: $ref: '#/components/schemas/Error' + /openapi/cascade/v2/download: + get: + tags: + - cascade + summary: Downloads cascade artifact + description: Starts downloading cascade Artifact. + operationId: cascade#downloadV2 + parameters: + - name: txid + in: query + description: Nft Registration Request transaction ID + allowEmptyValue: true + required: true + schema: + type: string + description: Nft Registration Request transaction ID + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + minLength: 64 + maxLength: 64 + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + - name: pid + in: query + description: Owner's PastelID + allowEmptyValue: true + required: true + schema: + type: string + description: Owner's PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + responses: + "200": + description: OK response. + content: + application/json: + schema: + $ref: '#/components/schemas/FileDownloadResult' + example: + file_id: Perspiciatis accusantium sed eveniet qui qui. + "401": + description: 'UnAuthorized: Unauthorized response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + "404": + description: 'NotFound: Not Found response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + "500": + description: 'InternalServerError: Internal Server Error response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + security: + - api_key_header_Authorization: [] /openapi/cascade/v2/upload: post: tags: @@ -2564,14 +2680,6 @@ paths: message: Balance less than maximum fee provied in the request, could not gather enough confirmations... status: Started, Image Probed, Downloaded... timestamp: 2006-01-02T15:04:05Z07:00 - - details: - fields: - Et consequatur.: Nisi molestias voluptatem odit. - Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. - message: Image has been downloaded... - message: Balance less than maximum fee provied in the request, could not gather enough confirmations... - status: Started, Image Probed, Downloaded... - timestamp: 2006-01-02T15:04:05Z07:00 example: - details: fields: @@ -2597,6 +2705,14 @@ paths: message: Balance less than maximum fee provied in the request, could not gather enough confirmations... status: Started, Image Probed, Downloaded... timestamp: 2006-01-02T15:04:05Z07:00 + - details: + fields: + Et consequatur.: Nisi molestias voluptatem odit. + Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. + message: Image has been downloaded... + message: Balance less than maximum fee provied in the request, could not gather enough confirmations... + status: Started, Image Probed, Downloaded... + timestamp: 2006-01-02T15:04:05Z07:00 "404": description: 'NotFound: Not Found response.' content: @@ -9177,6 +9293,47 @@ paths: timestamp: Veritatis accusantium corporis. sender_id: Laudantium neque ratione sint eum sed ullam. sender_signature: Autem quia neque adipisci. + - challenge: + block: 133233139 + end_index: 3896885101814506590 + file_hash: Asperiores quidem. + merkelroot: Quidem nostrum laudantium quo qui laboriosam sed. + start_index: 1614189715015821619 + timestamp: Molestias neque sed quos voluptate. + challenge_id: Dolorum ex. + challenger_evaluation: + block: 1965065906 + hash: Ratione laborum est omnis sit. + is_verified: false + merkelroot: Alias itaque eveniet cum. + timestamp: Autem libero deserunt aspernatur. + challenger_id: Rerum natus ut beatae sed maiores corporis. + message_type: Necessitatibus sunt. + observer_evaluation: + block: 1126733571 + is_challenge_timestamp_ok: false + is_challenger_signature_ok: true + is_evaluation_result_ok: true + is_evaluation_timestamp_ok: false + is_process_timestamp_ok: false + is_recipient_signature_ok: true + merkelroot: Placeat mollitia. + reason: Aut dignissimos autem ut velit provident. + timestamp: Repellendus aut. + true_hash: Voluptas asperiores. + observers: + - Qui aperiam id sunt consequatur voluptas voluptatem. + - Voluptatem optio enim iure pariatur quia minus. + - Dicta et natus amet. + - Asperiores et ea. + recipient_id: Qui corrupti neque quod omnis. + response: + block: 1915105945 + hash: Ut quam beatae libero rerum. + merkelroot: Aperiam quo reiciendis corrupti reiciendis. + timestamp: Veritatis accusantium corporis. + sender_id: Laudantium neque ratione sint eum sed ullam. + sender_signature: Autem quia neque adipisci. "400": description: 'BadRequest: Bad Request response.' content: @@ -9477,31 +9634,31 @@ components: activation_attempt_at: type: string description: Activation Attempt At in datetime format - example: "1996-11-10T22:28:46Z" + example: "2004-10-12T07:31:58Z" format: date-time error_message: type: string description: Error Message - example: Eum voluptatem hic consequatur qui veritatis. + example: Sint dignissimos quia. file_id: type: string description: File ID - example: Itaque doloremque qui qui. + example: Dicta dolore sequi. id: type: integer description: ID - example: 747500709464811008 + example: 6095623085988049112 format: int64 is_successful: type: boolean description: Indicates if the activation was successful - example: true + example: false example: - activation_attempt_at: "1976-09-03T15:49:26Z" - error_message: Quia aspernatur ut aspernatur ducimus alias repudiandae. - file_id: Consequatur dicta dolore sequi quod esse. - id: 2414817839737057767 - is_successful: false + activation_attempt_at: "1975-03-22T18:00:03Z" + error_message: Eos at accusamus sunt. + file_id: Aspernatur ducimus. + id: 1538193004362662237 + is_successful: true required: - id - file_id @@ -9512,34 +9669,34 @@ components: drawings: type: number description: drawings nsfw score - example: 0.23677222 + example: 0.66452837 format: float hentai: type: number description: hentai nsfw score - example: 0.24572228 + example: 0.7656112 format: float neutral: type: number description: neutral nsfw score - example: 0.6700735 + example: 0.37575012 format: float porn: type: number description: porn nsfw score - example: 0.80549806 + example: 0.5614808 format: float sexy: type: number description: sexy nsfw score - example: 0.42140633 + example: 0.51102895 format: float example: - drawings: 0.71975684 - hentai: 0.23129384 - neutral: 0.7883817 - porn: 0.8816837 - sexy: 0.86713 + drawings: 0.5703159 + hentai: 0.7167511 + neutral: 0.26442868 + porn: 0.6442617 + sexy: 0.55777264 Asset: type: object properties: @@ -9590,12 +9747,12 @@ components: type: array items: type: number - example: 0.9290878953427684 + example: 0.847199881862724 format: double description: The amounts that's required to be preburned - one per transaction example: - - 0.9182498251932096 - - 0.7686174886018061 + - 0.16201706614597156 + - 0.7965999471882294 total_estimated_fee: type: number description: Estimated fee @@ -9606,10 +9763,10 @@ components: example: file_id: VK7mpAqZ required_preburn_transaction_amounts: - - 0.26362438573596114 - - 0.7637413737913766 - - 0.26642836133361597 - - 0.6818140464596548 + - 0.21282193452890158 + - 0.4491625713743623 + - 0.39008631718165854 + - 0.1885920166769558 total_estimated_fee: 100 required: - file_id @@ -9620,38 +9777,38 @@ components: block: type: integer description: Block - example: 1147500050 + example: 1514370597 format: int32 end_index: type: integer description: End index - example: 587181744822064718 + example: 7665255617375603928 format: int64 file_hash: type: string description: File hash - example: Facilis debitis nihil. + example: Eveniet odit voluptas. merkelroot: type: string description: Merkelroot - example: Aut non explicabo eligendi ea. + example: Ea culpa distinctio repudiandae. start_index: type: integer description: Start index - example: 5951863253232021290 + example: 5226596782885260246 format: int64 timestamp: type: string description: Timestamp - example: Ratione fuga nobis incidunt est. + example: Et id expedita qui nostrum. description: Data of challenge example: - block: 1906447647 - end_index: 4132569794906174981 - file_hash: Accusantium deleniti ut enim et rem eos. - merkelroot: Et id minima ipsum voluptas est. - start_index: 299449972248189702 - timestamp: Nihil sit maiores sapiente. + block: 1245267817 + end_index: 547812972672561730 + file_hash: Aliquid cumque dolore tenetur. + merkelroot: Aperiam illo consequatur. + start_index: 3277213621180435391 + timestamp: Provident et voluptate distinctio nam ipsa. required: - timestamp - file_hash @@ -9663,27 +9820,27 @@ components: health_check_challenge_score: type: number description: Total accumulated HC challenge score - example: 0.7343058597285439 + example: 0.7640542046355273 format: double ip_address: type: string description: IPAddress of the node - example: Maxime incidunt sit. + example: Animi totam laboriosam et qui iure. node_id: type: string description: Specific node id - example: Quaerat sint. + example: Fuga voluptatem ipsum voluptas eius. storage_challenge_score: type: number description: Total accumulated SC challenge score - example: 0.641879525433866 + example: 0.7324959148796738 format: double description: Combined accumulated scores for HC and SC challenges example: - health_check_challenge_score: 0.4298777191641779 - ip_address: Natus tenetur. - node_id: Numquam rerum sunt laboriosam voluptatibus. - storage_challenge_score: 0.6059575136726771 + health_check_challenge_score: 0.20438164096656727 + ip_address: Rerum repellat id. + node_id: Occaecati maiores ut voluptatum dolor provident. + storage_challenge_score: 0.5632933038658091 required: - node_id - storage_challenge_score @@ -9772,9 +9929,9 @@ components: file: type: string description: File downloaded - example: Pariatur tempore. + example: Neque omnis tempora. example: - file: Inventore et iste. + file: Ut voluptas cum est molestiae. required: - file DDServiceOutputFileResult: @@ -9785,69 +9942,70 @@ components: candidate_image_thumbnail_webp_as_base64_string: type: string description: candidate image thumbnail as base64 string - example: Iste quo qui officia autem quos. + example: Qui velit qui iste. child_probability: type: number description: child probability - example: 0.85445726 + example: 0.8816837 format: float collection_name_string: type: string description: name of the collection - example: Sit eos provident voluptas. + example: Cupiditate perspiciatis voluptatem aut. cp_probability: type: number description: probability of CP - example: 0.68921 + example: 0.86713 format: float creator_name: type: string description: name of the creator - example: Error distinctio ad voluptatum. + example: Animi aut itaque qui incidunt minima similique. creator_website: type: string description: website of creator - example: Mollitia sint fugiat. + example: Qui iusto voluptas tenetur est hic adipisci. creator_written_statement: type: string description: written statement of creator - example: Et rerum ipsam inventore est. + example: Et ut veritatis repudiandae facilis optio non. does_not_impact_the_following_collection_strings: type: string description: does not impact collection strings - example: Modi autem in. + example: Voluptatem corrupti repellendus nihil ipsa. dupe_detection_system_version: type: string description: system version of dupe detection - example: Et quia ea omnis. + example: Alias dolorem aut. file_type: type: string description: type of the file - example: Qui incidunt minima similique quae qui iusto. + example: Sit ea maiores at nisi. group_rareness_score: type: number description: rareness score of the group - example: 0.2313838 + example: 0.60826373 format: float hash_of_candidate_image_file: type: string description: hash of candidate image file - example: Modi consequatur quibusdam. + example: Eveniet alias exercitationem beatae architecto sequi. image_file_path: type: string description: file path of the image - example: Eos alias dolorem aut. + example: Labore error distinctio. image_fingerprint_of_candidate_image_file: type: array items: type: number - example: 0.14405863899271035 + example: 0.6895019762337847 format: double description: Image fingerprint of candidate image file example: - - 0.16571207988378414 - - 0.45141510028676507 - - 0.13869477484557624 + - 0.7297500759675873 + - 0.4307407703835172 + - 0.18231999348297495 + - 0.22517744197696887 internet_rareness: $ref: '#/components/schemas/InternetRareness' is_likely_dupe: @@ -9865,219 +10023,229 @@ components: max_permitted_open_nsfw_score: type: number description: max permitted open NSFW score - example: 0.6361029411458158 + example: 0.7721841509793138 format: double nft_creation_video_youtube_url: type: string description: nft creation video youtube url - example: Voluptatem aliquid aspernatur. + example: Quia rem. nft_keyword_set: type: string description: keywords for NFT - example: Ex sed. + example: Qui commodi. nft_series_name: type: string description: series name of NFT - example: Beatae consequatur. + example: Nostrum omnis suscipit enim exercitationem. nft_title: type: string description: title of NFT - example: Corporis aut voluptates. + example: Dignissimos voluptas est eum est enim. open_api_group_id_string: type: string description: open api group id string - example: Voluptas enim. + example: Occaecati in libero eos. open_nsfw_score: type: number description: open nsfw score - example: 0.9516049 + example: 0.21136375 format: float original_file_size_in_bytes: type: integer description: original file size in bytes - example: 3665698183502472582 + example: 4778032498927877012 format: int64 overall_rareness_score: type: number description: pastel rareness score - example: 0.25994468 + example: 0.2309514 format: float pastel_block_hash_when_request_submitted: type: string description: block hash when request submitted - example: Aliquid consequatur sint ea vitae deserunt et. + example: Eius et libero alias hic voluptatibus sit. pastel_block_height_when_request_submitted: type: string description: block Height when request submitted - example: Reprehenderit sed. + example: Voluptatibus cumque nisi modi consequatur. pastel_id_of_registering_supernode_1: type: string description: pastel id of registering SN1 - example: Et hic sed deleniti repellendus. + example: Soluta iste quo. pastel_id_of_registering_supernode_2: type: string description: pastel id of registering SN2 - example: Impedit enim perspiciatis maxime asperiores quae suscipit. + example: Officia autem quos qui modi. pastel_id_of_registering_supernode_3: type: string description: pastel id of registering SN3 - example: Nisi aperiam delectus. + example: In ipsa ut voluptas. pastel_id_of_submitter: type: string description: pastel id of the submitter - example: Vero optio maiores hic provident recusandae rem. + example: Voluptas enim. pct_of_top_10_most_similar_with_dupe_prob_above_25pct: type: number description: PCT of top 10 most similar with dupe probe above 25 PCT - example: 0.95369315 + example: 0.8764374 format: float pct_of_top_10_most_similar_with_dupe_prob_above_33pct: type: number description: PCT of top 10 most similar with dupe probe above 33 PCT - example: 0.058212187 + example: 0.3732366 format: float pct_of_top_10_most_similar_with_dupe_prob_above_50pct: type: number description: PCT of top 10 most similar with dupe probe above 50 PCT - example: 0.38367108 + example: 0.46130848 format: float preview_hash: type: string description: preview hash of NFT example: - - 69 - - 116 - - 32 - - 101 - - 110 - - 105 - - 109 - - 32 - - 110 - - 101 - - 115 - - 99 - - 105 - - 117 + - 78 + - 111 - 110 - - 116 - 32 - - 117 - - 116 - - 32 - - 108 - 97 - - 98 - - 111 - - 114 + - 108 - 105 - - 111 - - 115 - 97 - - 109 - - 32 - - 97 - - 117 - - 116 + - 115 - 32 - - 114 - - 97 - - 116 - 105 - - 111 - 110 - - 101 + - 32 + - 113 + - 117 + - 105 - 46 format: binary rareness_scores_table_json_compressed_b64: type: string description: rareness scores table json compressed b64 - example: Libero alias. + example: Corporis minima. similarity_score_to_first_entry_in_collection: type: number description: similarity score to first entry in collection - example: 0.5153465 + example: 0.23129384 format: float thumbnail1_hash: type: string description: thumbnail1 hash of NFT example: - - 82 - - 101 - - 112 - - 101 + - 78 + - 105 + - 104 + - 105 - 108 + - 32 + - 118 + - 101 - 108 - - 97 + - 105 - 116 - 32 - - 113 - - 117 - - 111 - - 115 - - 32 - - 105 - 110 - - 32 + - 117 + - 109 - 113 - 117 - - 105 - 97 + - 109 - 32 - - 101 - 97 + - 98 - 32 - - 111 - - 109 + - 115 + - 105 - 110 + - 116 + - 32 - 105 - - 115 + - 110 + - 118 + - 101 + - 110 + - 116 + - 111 + - 114 + - 101 + - 32 + - 97 + - 117 + - 116 - 46 format: binary thumbnail2_hash: type: string description: thumbnail2 hash of NFT example: - - 76 - - 97 + - 86 + - 111 + - 108 - 117 - - 100 + - 112 + - 116 - 97 - - 110 - 116 - - 105 - - 117 + - 101 - 109 - 32 + - 99 + - 117 + - 109 + - 113 + - 117 - 101 - - 116 - 32 + - 117 + - 108 - 108 - 97 - - 98 + - 109 + - 32 + - 99 - 111 - 114 - - 101 + - 114 + - 117 + - 112 + - 116 + - 105 - 32 - 101 - - 97 - - 32 - - 97 + - 118 + - 101 - 110 - 105 + - 101 + - 116 + - 32 + - 117 + - 116 + - 32 + - 116 + - 101 - 109 + - 112 + - 111 + - 114 - 105 + - 98 + - 117 + - 115 - 46 format: binary total_copies: type: integer description: total copies of NFT - example: 3276906416533209996 + example: 6809940013067523041 format: int64 utc_timestamp_when_request_submitted: type: string description: timestamp of request when submitted - example: Quia recusandae ipsam est quia incidunt. + example: Nobis sit eos provident voluptas. example: alternative_nsfw_scores: drawings: 0.053542916 @@ -10085,24 +10253,23 @@ components: neutral: 0.01989352 porn: 0.7542108 sexy: 0.24790263 - candidate_image_thumbnail_webp_as_base64_string: Eveniet id molestiae ut harum minus. - child_probability: 0.82578164 - collection_name_string: Explicabo natus. - cp_probability: 0.7517447 - creator_name: Ex aspernatur molestiae harum sunt quam velit. - creator_website: Aspernatur ad molestias molestias. - creator_written_statement: Sit ea aliquam corrupti distinctio. - does_not_impact_the_following_collection_strings: Deleniti at. - dupe_detection_system_version: Aut voluptatem voluptatem cumque ullam corrupti eveniet. - file_type: Tempora et esse molestiae porro non sit. - group_rareness_score: 0.37642547 - hash_of_candidate_image_file: Voluptatem eius dolorem quia doloribus autem velit. - image_file_path: Quia omnis recusandae excepturi consequatur. + candidate_image_thumbnail_webp_as_base64_string: Rerum fugiat sed reiciendis ut. + child_probability: 0.35175335 + collection_name_string: Explicabo enim dolorem. + cp_probability: 0.12968402 + creator_name: Tempore dignissimos temporibus. + creator_website: Rem nisi ut. + creator_written_statement: Deserunt sunt quasi tempora et esse molestiae. + does_not_impact_the_following_collection_strings: Doloribus ex. + dupe_detection_system_version: Recusandae excepturi consequatur sapiente. + file_type: Aliquid ratione blanditiis natus beatae amet. + group_rareness_score: 0.6511306 + hash_of_candidate_image_file: Ea aliquam corrupti distinctio est. + image_file_path: Ut est. image_fingerprint_of_candidate_image_file: - - 0.7035581751238226 - - 0.568321017846266 - - 0.8015133334256039 - - 0.6730256882852852 + - 0.29919540342492684 + - 0.6985188456775364 + - 0.06740662993158088 internet_rareness: alternative_rare_on_internet_dict_as_json_compressed_b64: Magnam pariatur aut facilis. earliest_available_date_of_internet_results: Sed repudiandae voluptas dolor aut velit voluptatem. @@ -10112,122 +10279,124 @@ components: is_likely_dupe: false is_pastel_openapi_request: false is_rare_on_internet: false - max_permitted_open_nsfw_score: 0.21242560938111926 - nft_creation_video_youtube_url: Natus debitis. - nft_keyword_set: Rerum fugiat sed reiciendis ut. - nft_series_name: Dolorem ad debitis dolor. - nft_title: Corrupti explicabo. - open_api_group_id_string: Ut laboriosam sit ex molestiae. - open_nsfw_score: 0.7179546 - original_file_size_in_bytes: 9031458999481700033 - overall_rareness_score: 0.22623362 - pastel_block_hash_when_request_submitted: Est hic adipisci ut et. - pastel_block_height_when_request_submitted: Veritatis repudiandae facilis optio non doloremque. - pastel_id_of_registering_supernode_1: Rem rerum qui commodi facere distinctio. - pastel_id_of_registering_supernode_2: Alias in qui impedit nihil. - pastel_id_of_registering_supernode_3: Numquam ab. - pastel_id_of_submitter: Suscipit enim exercitationem velit. - pct_of_top_10_most_similar_with_dupe_prob_above_25pct: 0.5304249 - pct_of_top_10_most_similar_with_dupe_prob_above_33pct: 0.5180353 - pct_of_top_10_most_similar_with_dupe_prob_above_50pct: 0.9535735 + max_permitted_open_nsfw_score: 0.9090540332421508 + nft_creation_video_youtube_url: Inventore et iste. + nft_keyword_set: Quaerat sint. + nft_series_name: Pariatur tempore. + nft_title: Non sit nostrum. + open_api_group_id_string: Debitis dolor et natus. + open_nsfw_score: 0.1995445 + original_file_size_in_bytes: 5588971587130615713 + overall_rareness_score: 0.73171234 + pastel_block_hash_when_request_submitted: Culpa et sequi et et. + pastel_block_height_when_request_submitted: Voluptatem eius dolorem quia doloribus autem velit. + pastel_id_of_registering_supernode_1: Et eveniet id molestiae ut. + pastel_id_of_registering_supernode_2: Minus perferendis deleniti. + pastel_id_of_registering_supernode_3: Nobis illo doloribus reiciendis. + pastel_id_of_submitter: Ut laboriosam sit ex molestiae. + pct_of_top_10_most_similar_with_dupe_prob_above_25pct: 0.59682155 + pct_of_top_10_most_similar_with_dupe_prob_above_33pct: 0.87328106 + pct_of_top_10_most_similar_with_dupe_prob_above_50pct: 0.3961445 preview_hash: - - 69 - - 120 - - 32 - - 101 - - 97 - - 113 - - 117 - - 101 - - 46 - rareness_scores_table_json_compressed_b64: Ea maiores at nisi hic. - similarity_score_to_first_entry_in_collection: 0.63287467 - thumbnail1_hash: - - 82 - - 101 - - 114 + - 73 + - 110 + - 99 + - 105 + - 100 - 117 - - 109 + - 110 + - 116 - 32 - - 114 - - 101 - - 109 + - 115 + - 105 + - 116 - 32 + - 99 - 117 + - 112 + - 105 + - 100 + - 105 - 116 - - 32 - - 101 - - 115 + - 97 - 116 + - 101 - 32 - 99 - 111 - 110 - 115 - 101 - - 113 - - 117 - - 97 + - 99 + - 116 + - 101 - 116 - 117 - 114 - - 32 - - 116 - - 101 + - 46 + rareness_scores_table_json_compressed_b64: Quam velit tempora. + similarity_score_to_first_entry_in_collection: 0.8728859 + thumbnail1_hash: + - 78 + - 117 - 109 - - 112 - - 111 - - 114 - - 101 - - 32 - - 100 - - 105 - - 103 - - 110 - - 105 - - 115 - - 115 - - 105 + - 113 + - 117 + - 97 - 109 - - 111 - - 115 - - 46 - thumbnail2_hash: - - 69 - - 116 - 32 - 114 - 101 + - 114 + - 117 - 109 - 32 - - 110 - - 105 - 115 - - 105 - - 32 - 117 + - 110 - 116 - 32 + - 108 + - 97 + - 98 + - 111 + - 114 + - 105 + - 111 - 115 + - 97 + - 109 + - 32 + - 118 + - 111 + - 108 - 117 - - 115 - - 99 - - 105 - 112 + - 116 + - 97 + - 116 - 105 + - 98 + - 117 + - 115 + - 46 + thumbnail2_hash: + - 78 + - 97 - 116 - - 32 - - 100 - - 101 + - 117 - 115 + - 32 + - 116 - 101 - - 114 - - 117 - 110 + - 101 - 116 + - 117 + - 114 - 46 - total_copies: 3004734461662379403 - utc_timestamp_when_request_submitted: Voluptas est eum est enim placeat nostrum. + total_copies: 1239003511493090436 + utc_timestamp_when_request_submitted: Explicabo natus. required: - creator_name - creator_website @@ -10250,7 +10419,9 @@ components: type: object description: important fields regarding status history example: - Voluptates in ratione ipsum.: Aspernatur modi sit dolor quis velit. + Eum ut et maiores a quis dolor.: Ipsum rem aut perferendis ratione fugiat. + Mollitia eius vitae deleniti quia.: At necessitatibus numquam qui dolorem reprehenderit. + Omnis ad.: Accusamus quia. additionalProperties: true message: type: string @@ -10258,8 +10429,9 @@ components: example: Image has been downloaded... example: fields: - Ea rerum harum esse et quia sint.: Ad cum accusamus quia iure mollitia. - Vitae deleniti quia ex at.: Numquam qui dolorem reprehenderit animi eum ut. + Accusamus animi deleniti fugit fuga iusto cumque.: Sit mollitia inventore. + Ex rerum quasi cum quia.: Tempore atque. + Nemo eum hic maiores.: Nihil eos placeat sed sit. message: Image has been downloaded... DownloadResult: type: object @@ -10268,70 +10440,87 @@ components: type: string description: File downloaded example: - - 69 + - 65 + - 117 - 116 - 32 - - 110 - - 105 - - 104 - - 105 - - 108 - - 32 - - 118 - - 111 - - 108 + - 113 - 117 - - 112 - - 116 + - 97 + - 101 + - 114 - 97 - 116 + - 32 - 117 + - 116 + - 32 + - 114 + - 101 - 109 - 32 - - 97 - - 115 - 115 - 117 - - 109 - - 101 - 110 - - 100 - - 97 + - 116 - 32 - - 100 - - 111 + - 97 - 108 - - 111 - - 114 - - 117 - - 109 + - 105 + - 97 + - 115 - 32 - - 113 + - 97 - 117 - - 105 + - 116 + - 101 + - 109 - 46 format: binary example: file: - - 66 - - 108 + - 65 + - 117 + - 116 + - 101 + - 109 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 - 97 - 110 - - 100 - - 105 - 116 - 105 - - 105 + - 117 + - 109 + - 32 - 115 + - 105 + - 116 - 32 - - 118 + - 100 - 111 - 108 + - 111 + - 114 + - 32 + - 113 - 117 - - 112 + - 97 + - 101 + - 114 + - 97 - 116 + - 32 + - 101 + - 116 + - 32 - 97 - - 115 + - 117 + - 116 - 46 required: - file @@ -10341,7 +10530,7 @@ components: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10357,13 +10546,13 @@ components: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -10382,12 +10571,12 @@ components: block: type: integer description: Block - example: 924142397 + example: 168066308 format: int32 hash: type: string description: Hash - example: Et id expedita qui nostrum. + example: At pariatur ullam et. is_verified: type: boolean description: IsVerified @@ -10395,18 +10584,18 @@ components: merkelroot: type: string description: Merkelroot - example: Sed et eos a officia iusto et. + example: Saepe voluptatem autem. timestamp: type: string description: Timestamp - example: Ea culpa distinctio repudiandae. + example: Unde excepturi corrupti et et. description: Data of evaluation example: - block: 83631604 - hash: Distinctio nam ipsa tempore aliquid cumque dolore. + block: 318941857 + hash: Totam aspernatur suscipit est libero tempore totam. is_verified: false - merkelroot: Voluptas ea culpa sunt odio aperiam illo. - timestamp: Libero provident et. + merkelroot: Consectetur distinctio tenetur nostrum doloribus. + timestamp: Temporibus vitae aliquam incidunt ut autem. required: - timestamp - hash @@ -10417,68 +10606,56 @@ components: data_hash: type: string example: - - 67 - - 111 + - 77 + - 105 - 110 - - 115 - - 101 - - 99 - - 116 - - 101 - - 116 - - 117 - - 114 - - 32 - - 112 - - 114 + - 105 + - 109 - 97 - - 101 - - 115 - - 101 - - 110 - - 116 + - 32 + - 113 + - 117 - 105 + - 115 + - 113 - 117 + - 97 - 109 - 32 - - 101 - - 108 + - 115 + - 97 + - 112 - 105 - - 103 - 101 - 110 - - 100 - - 105 + - 116 + - 101 - 32 - - 99 + - 118 - 111 - - 110 - - 115 - - 101 - - 113 + - 108 - 117 + - 112 + - 116 - 97 - 116 - 117 - - 114 - - 32 - - 118 - - 101 - - 108 + - 109 - 32 - 115 - - 101 - - 100 - - 32 - - 99 - - 117 - - 112 - 105 - - 100 + - 109 - 105 - - 116 + - 108 + - 105 + - 113 + - 117 + - 101 + - 32 - 97 - 116 + - 113 + - 117 - 101 - 46 format: binary @@ -10486,58 +10663,69 @@ components: type: array items: type: string - example: Quod sit amet eligendi. + example: Corrupti eaque laborum. example: - - Itaque earum. - - Molestiae sequi magni quod architecto ipsa. + - Sed voluptatem aliquam est qui. + - Aut reiciendis. + - Corporis ipsum deleniti eos. + - Libero eaque error omnis aut ut. recipient: type: string - example: Eveniet iure id corporis et. + example: Exercitationem molestias enim. ticket_type: type: string - example: Corrupti iste. + example: Aut voluptatum veritatis qui qui voluptatem. tx_id: type: string - example: Voluptates optio et sed vero magnam. + example: Sunt autem est soluta iste omnis. example: data_hash: - - 83 - - 101 - - 100 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 + - 80 + - 97 + - 114 + - 105 - 97 - 116 - - 101 - - 109 + - 117 + - 114 - 32 - - 97 - - 108 + - 111 + - 100 - 105 + - 111 + - 32 - 113 - 117 - - 97 - - 109 + - 105 - 32 + - 118 - 101 + - 108 + - 32 - 115 + - 117 + - 110 - 116 - 32 - - 113 + - 109 + - 105 + - 110 - 117 + - 115 + - 32 + - 97 + - 108 - 105 + - 97 + - 115 - 46 missing_keys: - - Voluptatum veritatis qui qui voluptatem enim. - - Eaque laborum quis. - recipient: Aut reiciendis. - ticket_type: Sunt autem est soluta iste omnis. - tx_id: In velit suscipit id. + - Quo id ut quae atque. + - Suscipit ut voluptatum explicabo quaerat. + - Sit illum ea est occaecati. + recipient: Similique doloribus placeat itaque rerum architecto. + ticket_type: Officia totam unde quia. + tx_id: Et sed nam distinctio deleniti. File: type: object properties: @@ -10547,59 +10735,54 @@ components: $ref: '#/components/schemas/ActivationAttempt' description: List of activation attempts example: - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 - is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true activation_txid: type: string description: Activation Transaction ID - example: Ut minus sed doloremque ex quibusdam laborum. + example: Rerum id quis accusamus dolores. base_file_id: type: string description: Base File ID - example: Voluptatem ab itaque odio. + example: Ea blanditiis. burn_txn_id: type: string description: Burn Transaction ID - example: Facere aut. + example: Nam quasi et autem quod expedita. cascade_metadata_ticket_id: type: string description: Cascade Metadata Ticket ID - example: Inventore animi dolores numquam sapiente sed. + example: Reiciendis velit modi dignissimos quasi. done_block: type: integer description: Done Block - example: 3770713299599596861 + example: 6156290738512412607 format: int64 file_id: type: string description: File ID - example: Aut accusamus. + example: Accusantium ea maxime. file_index: type: string description: Index of the file - example: Est sunt. + example: Consequuntur accusamus maiores quo vel. hash_of_original_big_file: type: string description: Hash of the Original Big File - example: Dolores consequuntur accusamus maiores. + example: Architecto voluptas dolore dolorem. is_concluded: type: boolean description: Indicates if the process is concluded @@ -10607,128 +10790,126 @@ components: name_of_original_big_file_with_ext: type: string description: Name of the Original Big File with Extension - example: Vel ratione ea blanditiis perferendis minus. + example: Aut cumque consequuntur iure ea illum nam. reg_txid: type: string description: Registration Transaction ID - example: Dolores ea distinctio. + example: Fugiat praesentium minus illum ducimus id. registration_attempts: type: array items: $ref: '#/components/schemas/RegistrationAttempt' description: List of registration attempts example: - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" req_amount: type: number description: Required Amount - example: 0.8175304494876674 + example: 0.9392335712666725 format: double req_burn_txn_amount: type: number description: Required Burn Transaction Amount - example: 0.4837057915503179 + example: 0.881792511024194 format: double size_of_original_big_file: type: number description: Size of the Original Big File - example: 0.44828739924249605 + example: 0.4246467510622976 format: double start_block: type: integer description: Start Block - example: 740986024 + example: 898403306 format: int32 task_id: type: string description: Task ID - example: Assumenda magni eaque doloribus. + example: Minus suscipit. upload_timestamp: type: string description: Upload Timestamp in datetime format - example: "1975-10-25T22:16:41Z" + example: "2006-12-29T00:55:23Z" format: date-time uuid_key: type: string description: UUID Key - example: Iure architecto est autem. + example: Autem velit quibusdam laboriosam maiores possimus. example: activation_attempts: - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - activation_txid: Ea incidunt. - base_file_id: Ea eaque est. - burn_txn_id: Incidunt quaerat ea neque. - cascade_metadata_ticket_id: Quae voluptatem sequi sequi inventore. - done_block: 1182091721600501304 - file_id: Architecto quibusdam voluptatibus quaerat enim. - file_index: Reiciendis quis vel animi. - hash_of_original_big_file: Cupiditate amet sapiente. + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 + is_successful: true + activation_txid: Ex eos nam neque dolore. + base_file_id: Blanditiis at. + burn_txn_id: Quia explicabo vel. + cascade_metadata_ticket_id: Est debitis ipsa. + done_block: 4919011026986690408 + file_id: Aperiam minus. + file_index: Amet sapiente inventore quo sit exercitationem. + hash_of_original_big_file: Libero et delectus veniam. is_concluded: false - name_of_original_big_file_with_ext: Quo sit exercitationem est blanditiis at suscipit. - reg_txid: Sunt animi labore vel maxime. + name_of_original_big_file_with_ext: Nostrum est voluptatibus cupiditate. + reg_txid: Mollitia unde quibusdam enim voluptatem sit. registration_attempts: - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - req_amount: 0.4133768574265731 - req_burn_txn_amount: 0.6702748132167543 - size_of_original_big_file: 0.10825505418118404 - start_block: 885257685 - task_id: Sapiente aspernatur culpa numquam qui non. - upload_timestamp: "2002-01-22T01:41:36Z" - uuid_key: Cumque tempore. + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + req_amount: 0.7366533305728714 + req_burn_txn_amount: 0.7432564875575534 + size_of_original_big_file: 0.6588947677341078 + start_block: 490931683 + task_id: Iure placeat accusantium id et aut minus. + upload_timestamp: "1995-10-31T05:51:58Z" + uuid_key: Nam molestiae et. required: - file_id - task_id @@ -10748,9 +10929,9 @@ components: file_id: type: string description: File path - example: A quis dolor voluptates. + example: At provident. example: - file_id: Rem aut perferendis ratione fugiat. + file_id: Expedita recusandae laboriosam est. required: - file_id FuzzyMatch: @@ -10759,7 +10940,7 @@ components: field_type: type: string description: Field that is matched - example: descr + example: keyword enum: - creator_name - art_title @@ -10770,51 +10951,49 @@ components: type: array items: type: integer - example: 5968324400816813661 + example: 6102026387781643114 format: int64 description: The indexes of matched characters. Useful for highlighting matches example: - - 7798203443121942878 - - 2532464518433884160 + - 6796449924094537885 + - 959140564434932267 score: type: integer description: Score used to rank matches - example: 110080957761522549 + example: 3009724268324206974 format: int64 str: type: string description: String that is matched - example: Eligendi fuga repudiandae beatae. + example: Animi sed consequatur sit ipsa. example: - field_type: keyword + field_type: series matched_indexes: - - 8983182221476285757 - - 3055142679247932209 - - 4532401875094322143 - - 7582525853224941633 - score: 6200450211705190698 - str: Magnam voluptatem. + - 2705673492284656983 + - 5654908727100686296 + score: 3177851692914113633 + str: Autem doloribus aut numquam. HCChallengeData: type: object properties: block: type: integer description: Block - example: 1016498576 + example: 255194099 format: int32 merkelroot: type: string description: Merkelroot - example: Modi voluptate et sunt officiis magnam ea. + example: Ut consequatur ex et et ut alias. timestamp: type: string description: Timestamp - example: Libero eius mollitia magni voluptas beatae aut. + example: Consectetur qui consectetur id saepe. description: Data of challenge example: - block: 1804369024 - merkelroot: Neque maxime qui. - timestamp: Voluptas neque perspiciatis dolore sit doloribus et. + block: 1908546163 + merkelroot: Facilis voluptatibus soluta id omnis accusamus. + timestamp: Nemo ut nostrum sit natus molestiae eos. required: - timestamp HCEvaluationData: @@ -10823,26 +11002,26 @@ components: block: type: integer description: Block - example: 919660696 + example: 1613011766 format: int32 is_verified: type: boolean description: IsVerified - example: false + example: true merkelroot: type: string description: Merkelroot - example: Id saepe doloremque dolorem facilis voluptatibus soluta. + example: Unde quo voluptatibus magnam quaerat esse consequatur. timestamp: type: string description: Timestamp - example: Omnis accusamus. + example: Et quia. description: Data of evaluation example: - block: 40420495 + block: 255672509 is_verified: true - merkelroot: Nostrum sit natus molestiae eos vero asperiores. - timestamp: Eaque pariatur fugit aut quis unde. + merkelroot: Ducimus odio aut sapiente. + timestamp: Perspiciatis amet adipisci porro ea vel eveniet. required: - timestamp - is_verified @@ -10852,12 +11031,12 @@ components: block: type: integer description: Block - example: 1840650877 + example: 1837709241 format: int32 is_challenge_timestamp_ok: type: boolean description: IsChallengeTimestampOK - example: true + example: false is_challenger_signature_ok: type: boolean description: IsChallengerSignatureOK @@ -10869,7 +11048,7 @@ components: is_evaluation_timestamp_ok: type: boolean description: IsEvaluationTimestampOK - example: false + example: true is_process_timestamp_ok: type: boolean description: IsProcessTimestampOK @@ -10877,26 +11056,26 @@ components: is_recipient_signature_ok: type: boolean description: IsRecipientSignatureOK - example: false + example: true merkelroot: type: string description: Merkelroot - example: Non fugit minus rerum perspiciatis. + example: Harum soluta recusandae harum ut. timestamp: type: string description: Timestamp - example: Laborum earum consequatur laudantium voluptate labore. + example: Ipsum totam excepturi reiciendis quis. description: Data of Observer's evaluation example: - block: 1444027584 - is_challenge_timestamp_ok: false - is_challenger_signature_ok: true + block: 112508918 + is_challenge_timestamp_ok: true + is_challenger_signature_ok: false is_evaluation_result_ok: true is_evaluation_timestamp_ok: true - is_process_timestamp_ok: true + is_process_timestamp_ok: false is_recipient_signature_ok: false - merkelroot: Eum reprehenderit voluptas. - timestamp: Esse consequatur dolores et quia dolorem. + merkelroot: Et earum cupiditate voluptas suscipit ipsa. + timestamp: Architecto dolore qui magni. required: - timestamp - is_challenge_timestamp_ok @@ -10911,47 +11090,47 @@ components: no_of_invalid_evaluation_observed_by_observers: type: integer description: challenges failed due to invalid evaluation evaluated by observers - example: 5900538327284429290 + example: 1807062504447446222 format: int64 no_of_invalid_signatures_observed_by_observers: type: integer description: challenges failed due to invalid signatures evaluated by observers - example: 1393119094628501191 + example: 8248181690542126150 format: int64 no_of_slow_responses_observed_by_observers: type: integer description: challenges failed due to slow-responses evaluated by observers - example: 7714745372964672338 + example: 3177489983924016672 format: int64 total_challenges_evaluated_by_challenger: type: integer description: Total number of challenges evaluated by the challenger node - example: 4684109697608452883 + example: 4711640194374212281 format: int64 total_challenges_issued: type: integer description: Total number of challenges issued - example: 6783586767659252994 + example: 5299326988258299892 format: int64 total_challenges_processed_by_recipient: type: integer description: Total number of challenges processed by the recipient node - example: 6794427730061759200 + example: 8818547790092084190 format: int64 total_challenges_verified: type: integer description: Total number of challenges verified by observers - example: 704824728518361458 + example: 7249719424045644874 format: int64 description: HealthCheck-Challenge SummaryStats example: - no_of_invalid_evaluation_observed_by_observers: 2377123480972823726 - no_of_invalid_signatures_observed_by_observers: 7341694566868789458 - no_of_slow_responses_observed_by_observers: 4651771404068608177 - total_challenges_evaluated_by_challenger: 1392541113987507237 - total_challenges_issued: 2608428411496439228 - total_challenges_processed_by_recipient: 1068809106616915197 - total_challenges_verified: 3369219388396092252 + no_of_invalid_evaluation_observed_by_observers: 4494881681012147907 + no_of_invalid_signatures_observed_by_observers: 6093051522462056040 + no_of_slow_responses_observed_by_observers: 9055426637750004947 + total_challenges_evaluated_by_challenger: 5707090490098316729 + total_challenges_issued: 7749705948070744961 + total_challenges_processed_by_recipient: 6515646547329763792 + total_challenges_verified: 6645127549352825865 required: - total_challenges_issued - total_challenges_processed_by_recipient @@ -10968,57 +11147,58 @@ components: challenge_id: type: string description: ID of the challenge - example: Veniam voluptatem. + example: Perspiciatis dolore sit. challenger_evaluation: $ref: '#/components/schemas/HCEvaluationData' challenger_id: type: string description: ID of the challenger - example: Perspiciatis illum. + example: Architecto totam. message_type: type: string description: type of the message - example: Est voluptatibus cupiditate sit amet. + example: Et id est optio sit. observer_evaluation: $ref: '#/components/schemas/HCObserverEvaluationData' observers: type: array items: type: string - example: Est optio sit qui recusandae. + example: Asperiores harum. description: List of observer IDs example: - - Ut labore. - - Consequatur natus accusantium et architecto. - - Ut ullam ut consequatur. + - Fugit aut quis unde velit velit. + - Non fugit minus rerum perspiciatis. + - Reprehenderit dolorum excepturi magnam officiis facilis laborum. + - Consequatur laudantium voluptate labore similique. recipient_id: type: string description: ID of the recipient - example: Et et ut alias iure consectetur. + example: Eum reprehenderit voluptas. response: $ref: '#/components/schemas/HCChallengeData' sender_id: type: string description: ID of the sender's node - example: Quis nesciunt ut natus laboriosam. + example: Recusandae placeat iure ut labore provident. sender_signature: type: string description: signature of the sender - example: Delectus libero quis. + example: Natus accusantium. description: HealthCheck challenge message data example: challenge: block: 161855103 merkelroot: Occaecati in reiciendis quia repudiandae. timestamp: Necessitatibus sed est sunt. - challenge_id: Necessitatibus ducimus odio aut sapiente nobis perspiciatis. + challenge_id: Eligendi at modi cupiditate. challenger_evaluation: block: 372559801 is_verified: false merkelroot: Impedit quis autem et et neque. timestamp: Explicabo dolore. - challenger_id: Ullam nulla dolorum quam. - message_type: Adipisci porro ea. + challenger_id: Corporis explicabo est. + message_type: Fugiat aspernatur facilis. observer_evaluation: block: 1881554591 is_challenge_timestamp_ok: false @@ -11030,17 +11210,15 @@ components: merkelroot: Hic voluptas doloremque eligendi et magni. timestamp: Perspiciatis earum. observers: - - Totam excepturi. - - Quis quae. - - Et earum cupiditate voluptas suscipit ipsa. - - Esse sit asperiores debitis vel. - recipient_id: Architecto dolore qui magni. + - Quia laboriosam neque odit. + - Et ipsum. + recipient_id: Ut voluptates dolor. response: block: 1874672230 merkelroot: Voluptate ipsa et ut dicta temporibus ut. timestamp: Deserunt mollitia est a labore. - sender_id: Eveniet possimus in iusto harum soluta. - sender_signature: Harum ut iure. + sender_id: Praesentium similique itaque ea enim autem impedit. + sender_signature: Alias velit tempore. required: - challenge_id - message_type @@ -11136,30 +11314,30 @@ components: alternative_rare_on_internet_dict_as_json_compressed_b64: type: string description: Base64 Compressed Json of Alternative Rare On Internet Dict - example: Suscipit magni. + example: Ipsam inventore est. earliest_available_date_of_internet_results: type: string description: Earliest Available Date of Internet Results - example: Dolorum dignissimos est enim eveniet alias exercitationem. + example: Aut voluptates et beatae consequatur. min_number_of_exact_matches_in_page: type: integer description: Minimum Number of Exact Matches on Page - example: 2534542180 + example: 3900146870 format: int32 rare_on_internet_graph_json_compressed_b64: type: string description: Base64 Compressed JSON of Rare On Internet Graph - example: Id corporis. + example: Dolores et. rare_on_internet_summary_table_as_json_compressed_b64: type: string description: Base64 Compressed JSON Table of Rare On Internet Summary - example: Dolores eligendi. + example: Voluptatum sed mollitia sint. example: - alternative_rare_on_internet_dict_as_json_compressed_b64: Occaecati in libero eos. - earliest_available_date_of_internet_results: Qui velit qui iste. - min_number_of_exact_matches_in_page: 2612472777 - rare_on_internet_graph_json_compressed_b64: Perspiciatis voluptatem aut. - rare_on_internet_summary_table_as_json_compressed_b64: Architecto sequi magnam. + alternative_rare_on_internet_dict_as_json_compressed_b64: Numquam et. + earliest_available_date_of_internet_results: Ut laboriosam aut ratione voluptatem. + min_number_of_exact_matches_in_page: 4281481948 + rare_on_internet_graph_json_compressed_b64: Ex sed. + rare_on_internet_summary_table_as_json_compressed_b64: Voluptatem aliquid aspernatur. MetricsResult: type: object properties: @@ -11181,11 +11359,6 @@ components: total_files_identified: 5916702575799384876 total_tickets_identified: 3422563547898111768 trigger_id: Accusamus cumque voluptatem exercitationem ab. - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. example: self_healing_execution_events_stats: total_file_healing_failed: 5551622164662787660 @@ -11212,16 +11385,6 @@ components: total_files_identified: 5916702575799384876 total_tickets_identified: 3422563547898111768 trigger_id: Accusamus cumque voluptatem exercitationem ab. - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. required: - self_healing_trigger_events_stats - self_healing_execution_events_stats @@ -11231,7 +11394,7 @@ components: alt_rare_on_internet_dict_json_b64: type: string description: Base64 Compressed Json of Alternative Rare On Internet Dict - example: Ipsa ut eaque. + example: Voluptatibus ut qui qui eos. copies: type: integer description: Number of copies @@ -11272,11 +11435,11 @@ components: earliest_date_of_results: type: string description: Earliest Available Date of Internet Results - example: Nobis minima vitae autem. + example: Repudiandae eos voluptatibus voluptas laudantium dolor. green_address: type: boolean description: Green address - example: false + example: true hentai_nsfw_score: type: number description: nsfw score @@ -11300,7 +11463,7 @@ components: min_num_exact_matches_on_page: type: integer description: Minimum Number of Exact Matches on Page - example: 122039552 + example: 1095823983 format: int32 neutral_nsfw_score: type: number @@ -11327,58 +11490,54 @@ components: type: string description: Preview Image example: - - 67 - - 111 - - 110 - - 115 - - 101 - - 113 - - 117 - - 117 - - 110 + - 80 + - 97 + - 114 + - 105 + - 97 - 116 - 117 - 114 - 32 - - 115 - - 117 - - 110 - - 116 + - 101 + - 97 - 32 - - 105 - - 112 + - 101 + - 111 - 115 - - 97 - - 109 - 32 + - 100 + - 101 + - 108 + - 101 - 99 + - 116 - 117 - - 109 + - 115 + - 32 + - 101 + - 97 - 113 - 117 - 101 - 32 - - 114 + - 105 + - 115 + - 116 - 101 - - 114 - - 117 - - 109 - 32 - - 100 - - 111 - - 108 - - 111 - - 114 + - 97 + - 116 - 46 format: binary rare_on_internet_graph_json_b64: type: string description: Base64 Compressed JSON of Rare On Internet Graph - example: Enim earum animi sed consequatur. + example: Nostrum laudantium ea dolores occaecati incidunt. rare_on_internet_summary_table_json_b64: type: string description: Base64 Compressed JSON Table of Rare On Internet Summary - example: Molestiae optio sit. + example: Quae necessitatibus quia amet necessitatibus est. rareness_score: type: number description: Average pastel rareness score @@ -11389,7 +11548,7 @@ components: royalty: type: number description: how much artist should get on all future resales - example: 0.7857079421562394 + example: 0.3989923141701758 format: double series_name: type: string @@ -11412,52 +11571,84 @@ components: type: string description: Thumbnail_1 image example: - - 65 - - 117 - - 116 + - 73 + - 100 - 32 - - 110 - - 117 - - 109 - - 113 - - 117 + - 108 - 97 - - 109 - - 46 - format: binary - thumbnail_2: - type: string - description: Thumbnail_2 image - example: - - 81 - - 117 + - 98 + - 111 + - 114 - 105 - - 32 - - 99 - - 117 + - 111 + - 115 + - 97 - 109 - - 113 - - 117 - - 101 - 32 - - 114 + - 109 + - 111 + - 108 - 101 - - 99 - - 117 - 115 + - 116 + - 105 + - 97 + - 115 + - 32 + - 98 + - 108 - 97 - 110 - 100 + - 105 + - 116 + - 105 + - 105 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 - 97 + - 116 - 101 - 32 - - 109 - 97 + - 108 - 105 + - 113 + - 117 + - 105 + - 100 + - 32 + - 99 - 111 + - 110 + - 115 + - 101 + - 113 + - 117 + - 97 + - 116 + - 117 - 114 + - 46 + format: binary + thumbnail_2: + type: string + description: Thumbnail_2 image + example: + - 69 + - 97 + - 32 + - 118 + - 105 + - 116 + - 97 - 101 - - 115 - 46 format: binary title: @@ -11482,171 +11673,122 @@ components: example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 maxLength: 128 example: - alt_rare_on_internet_dict_json_b64: Nostrum laudantium ea dolores occaecati incidunt. + alt_rare_on_internet_dict_json_b64: Et hic sed deleniti repellendus. copies: 1 creator_name: Leonardo da Vinci creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS creator_website_url: https://www.leonardodavinci.net description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. drawing_nsfw_score: 1 - earliest_date_of_results: Ut qui qui. + earliest_date_of_results: Enim perspiciatis maxime asperiores. green_address: true hentai_nsfw_score: 1 is_likely_dupe: false is_rare_on_internet: false keywords: Renaissance, sfumato, portrait - min_num_exact_matches_on_page: 596076702 + min_num_exact_matches_on_page: 1288258079 neutral_nsfw_score: 1 nsfw_score: 1 porn_nsfw_score: 1 preview_thumbnail: - - 67 - - 111 - - 110 - - 115 + - 82 - 101 - - 113 - - 117 - - 97 - - 116 - - 117 + - 112 - 114 - - 32 - - 110 - - 111 + - 101 + - 104 + - 101 - 110 - - 32 - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 112 - - 97 + - 101 - 114 - 105 - - 97 - 116 - - 117 - - 114 - 32 - - 101 - - 97 - - 32 - - 101 - - 111 - 115 + - 101 + - 100 - 46 - rare_on_internet_graph_json_b64: Quia amet necessitatibus est. - rare_on_internet_summary_table_json_b64: Eaque iste at recusandae quae. + rare_on_internet_graph_json_b64: Vero optio maiores hic provident recusandae rem. + rare_on_internet_summary_table_json_b64: Quia recusandae ipsam est quia incidunt. rareness_score: 1 - royalty: 0.09918013589498481 + royalty: 0.36445655653960873 series_name: Famous artist sexy_nsfw_score: 1 storage_fee: 100 thumbnail_1: - - 86 - - 111 - - 108 + - 83 - 117 + - 115 + - 99 + - 105 - 112 + - 105 - 116 - - 97 + - 32 + - 101 + - 115 - 115 + - 101 - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 + - 110 + - 105 - 115 + - 105 - 32 - - 114 - - 101 + - 97 - 112 - - 117 - - 100 + - 101 + - 114 - 105 - 97 - - 110 - - 100 - - 97 - - 101 + - 109 - 32 + - 100 - 101 - - 111 - - 115 - - 32 - - 118 - - 111 - 108 - - 117 - - 112 - - 116 - - 97 + - 101 + - 99 - 116 - - 105 - - 98 - 117 - 115 - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 + - 101 - 97 - - 115 - - 46 - thumbnail_2: - - 68 - - 111 - - 108 - - 111 - - 114 - 32 - 101 - - 117 - - 109 - - 32 - - 105 - - 100 - - 32 + - 120 + - 112 - 108 + - 105 + - 99 - 97 - 98 - 111 - - 114 + - 46 + thumbnail_2: + - 81 + - 117 - 105 - - 111 - - 115 - 97 - - 109 - 32 - - 109 - - 111 - - 108 - 101 - - 115 - - 116 - - 105 - 97 + - 32 + - 111 + - 109 + - 110 + - 105 - 115 - 32 - - 98 - - 108 - 97 - - 110 - 100 + - 32 + - 109 + - 97 + - 103 + - 110 - 105 - - 116 - - 105 - - 105 - - 115 - 46 title: Mona Lisa txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 @@ -11738,7 +11880,7 @@ components: type: string description: OpenAPI GroupID string default: PASTEL - example: Autem impedit sunt alias velit tempore. + example: Consequatur voluptates voluptas qui commodi deleniti qui. royalty: type: number description: Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT @@ -11779,7 +11921,7 @@ components: make_publicly_accessible: false maximum_fee: 100 name: Mona Lisa - open_api_group_id: Corporis explicabo est. + open_api_group_id: Minima et eligendi fuga repudiandae beatae laudantium. royalty: 12 series_name: Famous artist spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j @@ -11802,7 +11944,7 @@ components: match_index: type: integer description: Sort index of the match based on score.This must be used to sort results on UI. - example: 2898803378117933666 + example: 8815865718703222196 format: int64 matches: type: array @@ -11841,7 +11983,7 @@ components: nft: $ref: '#/components/schemas/NftSummary' example: - match_index: 8624382637488210084 + match_index: 914775292025259545 matches: - field_type: art_title matched_indexes: @@ -11857,6 +11999,20 @@ components: - 6872177758464281011 score: 3987001657133176801 str: Corrupti natus sit velit consequatur. + - field_type: art_title + matched_indexes: + - 3612816769359928583 + - 2434896289749192084 + - 6872177758464281011 + score: 3987001657133176801 + str: Corrupti natus sit velit consequatur. + - field_type: art_title + matched_indexes: + - 3612816769359928583 + - 2434896289749192084 + - 6872177758464281011 + score: 3987001657133176801 + str: Corrupti natus sit velit consequatur. nft: copies: 1 creator_name: Leonardo da Vinci @@ -11985,86 +12141,49 @@ components: type: string description: Thumbnail_1 image example: - - 86 - - 111 - - 108 + - 81 - 117 - - 112 - - 116 - 97 - - 116 - - 101 - 115 - 32 + - 97 + - 98 + - 32 - 100 - 111 - 108 - 111 - 114 + - 101 + - 115 - 32 - - 112 - - 108 - 97 - - 99 + - 112 - 101 + - 114 + - 105 - 97 - - 116 - - 32 - - 101 - - 117 - 109 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 - - 116 - - 32 - - 101 - - 116 - 46 format: binary thumbnail_2: type: string description: Thumbnail_2 image example: - - 81 - - 117 - - 105 - - 115 - - 113 - - 117 - - 97 + - 82 + - 101 - 109 - 32 - - 114 - - 101 - - 112 - 101 - - 108 - - 108 - - 97 - 116 - 32 - - 115 - - 101 - - 113 - 117 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - 116 + - 32 + - 113 - 117 - - 109 + - 111 + - 100 - 46 format: binary title: @@ -12096,84 +12215,67 @@ components: rareness_score: 1 series_name: Famous artist thumbnail_1: - - 78 - - 111 + - 83 + - 117 - 110 + - 116 - 32 - 105 - - 109 - 112 - - 101 - - 100 - - 105 - - 116 - - 32 - - 101 - - 120 - - 32 + - 115 - 97 + - 109 - 32 - 99 - - 111 - - 110 - - 115 + - 117 + - 109 + - 113 + - 117 - 101 - - 99 - - 116 + - 32 + - 114 - 101 - - 116 + - 114 - 117 + - 109 + - 32 + - 100 + - 111 + - 108 + - 111 - 114 - 32 + - 101 + - 120 + - 101 + - 114 - 99 + - 105 + - 116 + - 97 + - 116 + - 105 - 111 - 110 - - 115 - 101 - - 113 - - 117 - - 97 - - 116 - - 117 - - 114 + - 109 - 46 thumbnail_2: - - 86 - - 111 - - 108 - - 117 + - 79 - 112 - 116 - - 97 - - 115 - - 32 - - 113 - - 117 - 105 - - 32 - - 99 - - 111 - - 109 - - 109 - 111 - - 100 - - 105 - 32 - - 100 - - 101 - - 108 - - 101 - - 110 + - 115 - 105 - 116 - - 105 - - 32 - - 113 - - 117 - - 105 - 32 + - 101 + - 97 + - 114 - 117 - - 116 + - 109 - 46 title: Mona Lisa txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 @@ -12191,12 +12293,12 @@ components: block: type: integer description: Block - example: 763035756 + example: 2022086719 format: int32 is_challenge_timestamp_ok: type: boolean description: IsChallengeTimestampOK - example: false + example: true is_challenger_signature_ok: type: boolean description: IsChallengerSignatureOK @@ -12208,7 +12310,7 @@ components: is_evaluation_timestamp_ok: type: boolean description: IsEvaluationTimestampOK - example: false + example: true is_process_timestamp_ok: type: boolean description: IsProcessTimestampOK @@ -12220,32 +12322,32 @@ components: merkelroot: type: string description: Merkelroot - example: Dignissimos laboriosam vero. + example: Minus repellendus quaerat explicabo molestiae dolorem. reason: type: string description: Reason - example: Laudantium animi architecto ea. + example: Fuga dolorem ea reprehenderit quia. timestamp: type: string description: Timestamp - example: Rerum ut cum quo et. + example: Accusamus veniam. true_hash: type: string description: TrueHash - example: Veniam quidem quia amet et qui. + example: Dicta explicabo aperiam consequatur. description: Data of Observer's evaluation example: - block: 1830926455 + block: 1828914406 is_challenge_timestamp_ok: true - is_challenger_signature_ok: false - is_evaluation_result_ok: true + is_challenger_signature_ok: true + is_evaluation_result_ok: false is_evaluation_timestamp_ok: false is_process_timestamp_ok: false - is_recipient_signature_ok: false - merkelroot: Est amet labore rerum consequuntur numquam autem. - reason: Culpa doloremque id. - timestamp: Tenetur exercitationem et reprehenderit quo sed. - true_hash: Minima amet laudantium necessitatibus vero laborum. + is_recipient_signature_ok: true + merkelroot: Esse voluptatem quibusdam nihil. + reason: Nam aut. + timestamp: Porro eius dolorem est. + true_hash: Consequatur iusto repudiandae reprehenderit est. required: - timestamp - is_challenge_timestamp_ok @@ -12293,7 +12395,7 @@ components: type: array items: type: string - example: Ad neque quia. + example: Sunt officiis magnam ea. description: list of authorized contributors example: - apple @@ -12458,7 +12560,7 @@ components: type: string description: OpenAPI GroupID string default: PASTEL - example: At modi cupiditate dolorum fugiat aspernatur. + example: Quis sit et consectetur quisquam repellat sequi. royalty: type: number description: Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT @@ -12498,7 +12600,7 @@ components: make_publicly_accessible: false maximum_fee: 100 name: Mona Lisa - open_api_group_id: Ut praesentium similique. + open_api_group_id: Esse non impedit. royalty: 12 series_name: Famous artist spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j @@ -12547,8 +12649,6 @@ components: status: Task Started - date: 2006-01-02T15:04:05Z07:00 status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started status: type: string description: Status of the registration process @@ -12657,271 +12757,227 @@ components: description: List of files example: - activation_attempts: - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 - is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 - is_successful: true - activation_txid: Sequi qui eum et dolorum esse. - base_file_id: Rerum iusto accusamus. - burn_txn_id: Delectus dignissimos id dolorem et totam deserunt. - cascade_metadata_ticket_id: Numquam voluptas. - done_block: 4949105958821157300 - file_id: Perspiciatis accusantium sed eveniet qui qui. - file_index: Cumque est et fugiat qui. - hash_of_original_big_file: Accusamus repellat commodi architecto aut quidem inventore. - is_concluded: false - name_of_original_big_file_with_ext: Perferendis unde qui qui dicta. - reg_txid: Quasi est. - registration_attempts: - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - req_amount: 0.11360537957590923 - req_burn_txn_amount: 0.2916254651446542 - size_of_original_big_file: 0.5209096568475247 - start_block: 918621255 - task_id: Sit tenetur labore illum numquam quia. - upload_timestamp: "1973-10-04T06:27:17Z" - uuid_key: Voluptatem aliquam molestias. - - activation_attempts: - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 - is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 - is_successful: true - activation_txid: Sequi qui eum et dolorum esse. - base_file_id: Rerum iusto accusamus. - burn_txn_id: Delectus dignissimos id dolorem et totam deserunt. - cascade_metadata_ticket_id: Numquam voluptas. - done_block: 4949105958821157300 - file_id: Perspiciatis accusantium sed eveniet qui qui. - file_index: Cumque est et fugiat qui. - hash_of_original_big_file: Accusamus repellat commodi architecto aut quidem inventore. - is_concluded: false - name_of_original_big_file_with_ext: Perferendis unde qui qui dicta. - reg_txid: Quasi est. - registration_attempts: - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - req_amount: 0.11360537957590923 - req_burn_txn_amount: 0.2916254651446542 - size_of_original_big_file: 0.5209096568475247 - start_block: 918621255 - task_id: Sit tenetur labore illum numquam quia. - upload_timestamp: "1973-10-04T06:27:17Z" - uuid_key: Voluptatem aliquam molestias. - - activation_attempts: - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - activation_txid: Sequi qui eum et dolorum esse. - base_file_id: Rerum iusto accusamus. - burn_txn_id: Delectus dignissimos id dolorem et totam deserunt. - cascade_metadata_ticket_id: Numquam voluptas. - done_block: 4949105958821157300 - file_id: Perspiciatis accusantium sed eveniet qui qui. - file_index: Cumque est et fugiat qui. - hash_of_original_big_file: Accusamus repellat commodi architecto aut quidem inventore. - is_concluded: false - name_of_original_big_file_with_ext: Perferendis unde qui qui dicta. - reg_txid: Quasi est. + activation_txid: Voluptatem aliquam molestias. + base_file_id: Dignissimos id dolorem et totam. + burn_txn_id: Repellat commodi. + cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. + done_block: 649100778871101980 + file_id: Inventore illo. + file_index: Qui eum et dolorum esse dicta aut. + hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + is_concluded: true + name_of_original_big_file_with_ext: Officia quis. + reg_txid: Numquam voluptas. registration_attempts: - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - req_amount: 0.11360537957590923 - req_burn_txn_amount: 0.2916254651446542 - size_of_original_big_file: 0.5209096568475247 - start_block: 918621255 - task_id: Sit tenetur labore illum numquam quia. - upload_timestamp: "1973-10-04T06:27:17Z" - uuid_key: Voluptatem aliquam molestias. + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + req_amount: 0.8217214546342201 + req_burn_txn_amount: 0.0062028958461957965 + size_of_original_big_file: 0.8474169125149866 + start_block: 256891858 + task_id: Et autem. + upload_timestamp: "1989-07-01T07:51:12Z" + uuid_key: Doloribus alias qui est. - activation_attempts: - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - activation_txid: Sequi qui eum et dolorum esse. - base_file_id: Rerum iusto accusamus. - burn_txn_id: Delectus dignissimos id dolorem et totam deserunt. - cascade_metadata_ticket_id: Numquam voluptas. - done_block: 4949105958821157300 - file_id: Perspiciatis accusantium sed eveniet qui qui. - file_index: Cumque est et fugiat qui. - hash_of_original_big_file: Accusamus repellat commodi architecto aut quidem inventore. - is_concluded: false - name_of_original_big_file_with_ext: Perferendis unde qui qui dicta. - reg_txid: Quasi est. + activation_txid: Voluptatem aliquam molestias. + base_file_id: Dignissimos id dolorem et totam. + burn_txn_id: Repellat commodi. + cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. + done_block: 649100778871101980 + file_id: Inventore illo. + file_index: Qui eum et dolorum esse dicta aut. + hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + is_concluded: true + name_of_original_big_file_with_ext: Officia quis. + reg_txid: Numquam voluptas. registration_attempts: - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - req_amount: 0.11360537957590923 - req_burn_txn_amount: 0.2916254651446542 - size_of_original_big_file: 0.5209096568475247 - start_block: 918621255 - task_id: Sit tenetur labore illum numquam quia. - upload_timestamp: "1973-10-04T06:27:17Z" - uuid_key: Voluptatem aliquam molestias. + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + req_amount: 0.8217214546342201 + req_burn_txn_amount: 0.0062028958461957965 + size_of_original_big_file: 0.8474169125149866 + start_block: 256891858 + task_id: Et autem. + upload_timestamp: "1989-07-01T07:51:12Z" + uuid_key: Doloribus alias qui est. example: files: - activation_attempts: - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - activation_txid: Sequi qui eum et dolorum esse. - base_file_id: Rerum iusto accusamus. - burn_txn_id: Delectus dignissimos id dolorem et totam deserunt. - cascade_metadata_ticket_id: Numquam voluptas. - done_block: 4949105958821157300 - file_id: Perspiciatis accusantium sed eveniet qui qui. - file_index: Cumque est et fugiat qui. - hash_of_original_big_file: Accusamus repellat commodi architecto aut quidem inventore. - is_concluded: false - name_of_original_big_file_with_ext: Perferendis unde qui qui dicta. - reg_txid: Quasi est. + activation_txid: Voluptatem aliquam molestias. + base_file_id: Dignissimos id dolorem et totam. + burn_txn_id: Repellat commodi. + cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. + done_block: 649100778871101980 + file_id: Inventore illo. + file_index: Qui eum et dolorum esse dicta aut. + hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + is_concluded: true + name_of_original_big_file_with_ext: Officia quis. + reg_txid: Numquam voluptas. registration_attempts: - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 - is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - req_amount: 0.11360537957590923 - req_burn_txn_amount: 0.2916254651446542 - size_of_original_big_file: 0.5209096568475247 - start_block: 918621255 - task_id: Sit tenetur labore illum numquam quia. - upload_timestamp: "1973-10-04T06:27:17Z" - uuid_key: Voluptatem aliquam molestias. + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + req_amount: 0.8217214546342201 + req_burn_txn_amount: 0.0062028958461957965 + size_of_original_big_file: 0.8474169125149866 + start_block: 256891858 + task_id: Et autem. + upload_timestamp: "1989-07-01T07:51:12Z" + uuid_key: Doloribus alias qui est. - activation_attempts: - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - - activation_attempt_at: "1987-10-12T17:16:09Z" - error_message: Voluptas debitis adipisci vero ut provident. - file_id: Culpa consectetur quas tempore eaque. - id: 7740701512258571566 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - activation_txid: Sequi qui eum et dolorum esse. - base_file_id: Rerum iusto accusamus. - burn_txn_id: Delectus dignissimos id dolorem et totam deserunt. - cascade_metadata_ticket_id: Numquam voluptas. - done_block: 4949105958821157300 - file_id: Perspiciatis accusantium sed eveniet qui qui. - file_index: Cumque est et fugiat qui. - hash_of_original_big_file: Accusamus repellat commodi architecto aut quidem inventore. - is_concluded: false - name_of_original_big_file_with_ext: Perferendis unde qui qui dicta. - reg_txid: Quasi est. + activation_txid: Voluptatem aliquam molestias. + base_file_id: Dignissimos id dolorem et totam. + burn_txn_id: Repellat commodi. + cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. + done_block: 649100778871101980 + file_id: Inventore illo. + file_index: Qui eum et dolorum esse dicta aut. + hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + is_concluded: true + name_of_original_big_file_with_ext: Officia quis. + reg_txid: Numquam voluptas. registration_attempts: - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + req_amount: 0.8217214546342201 + req_burn_txn_amount: 0.0062028958461957965 + size_of_original_big_file: 0.8474169125149866 + start_block: 256891858 + task_id: Et autem. + upload_timestamp: "1989-07-01T07:51:12Z" + uuid_key: Doloribus alias qui est. + - activation_attempts: + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - - error_message: Corrupti repellat consequatur consequatur et ipsam. - file_id: Ipsa deserunt qui velit quasi quia. - finished_at: "1998-02-09T20:04:12Z" - id: 1336197498951122785 + - activation_attempt_at: "1976-01-17T20:08:30Z" + error_message: Adipisci vero ut provident. + file_id: Animi non. + id: 8187970716996098639 is_successful: true - processor_sns: Sit perferendis quia ut totam. - reg_started_at: "2005-10-11T10:17:47Z" - req_amount: 0.11360537957590923 - req_burn_txn_amount: 0.2916254651446542 - size_of_original_big_file: 0.5209096568475247 - start_block: 918621255 - task_id: Sit tenetur labore illum numquam quia. - upload_timestamp: "1973-10-04T06:27:17Z" - uuid_key: Voluptatem aliquam molestias. + activation_txid: Voluptatem aliquam molestias. + base_file_id: Dignissimos id dolorem et totam. + burn_txn_id: Repellat commodi. + cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. + done_block: 649100778871101980 + file_id: Inventore illo. + file_index: Qui eum et dolorum esse dicta aut. + hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + is_concluded: true + name_of_original_big_file_with_ext: Officia quis. + reg_txid: Numquam voluptas. + registration_attempts: + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + - error_message: Consectetur quas. + file_id: Veniam accusantium. + finished_at: "1999-11-22T20:03:19Z" + id: 8874338336868617 + is_successful: false + processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. + reg_started_at: "2006-02-20T22:03:54Z" + req_amount: 0.8217214546342201 + req_burn_txn_amount: 0.0062028958461957965 + size_of_original_big_file: 0.8474169125149866 + start_block: 256891858 + task_id: Et autem. + upload_timestamp: "1989-07-01T07:51:12Z" + uuid_key: Doloribus alias qui est. required: - files RegistrationAttempt: @@ -12930,20 +12986,20 @@ components: error_message: type: string description: Error Message - example: Ipsam illum. + example: Voluptatem consequatur architecto possimus. file_id: type: string description: File ID - example: Illum ducimus id saepe. + example: Qui incidunt velit. finished_at: type: string description: Finished At in datetime format - example: "2012-05-14T04:22:17Z" + example: "2003-02-01T10:02:34Z" format: date-time id: type: integer description: ID - example: 815724289313716634 + example: 1612055692617853928 format: int64 is_successful: type: boolean @@ -12952,20 +13008,20 @@ components: processor_sns: type: string description: Processor SNS - example: Consequatur qui. + example: Omnis ipsam illum. reg_started_at: type: string description: Registration Started At in datetime format - example: "2006-04-11T23:09:47Z" + example: "2012-05-14T04:22:17Z" format: date-time example: - error_message: Id quis. - file_id: Voluptatem sapiente molestiae. - finished_at: "1971-06-02T04:41:34Z" - id: 3414400387391588062 + error_message: Eum voluptatem hic consequatur qui veritatis. + file_id: Aut libero nobis qui sit. + finished_at: "1996-11-10T22:28:46Z" + id: 5895971488814617698 is_successful: true - processor_sns: Possimus omnis est aut libero. - reg_started_at: "2014-06-06T15:28:52Z" + processor_sns: Officia consequuntur sequi itaque doloremque qui qui. + reg_started_at: "1998-07-10T20:17:43Z" required: - id - file_id @@ -12981,126 +13037,143 @@ components: type: array items: type: string - example: Similique doloribus placeat itaque rerum architecto. + example: Quis adipisci amet voluptas nisi explicabo. example: - - Sunt est dolor hic. - - Ipsum accusantium rerum. - - Et debitis. + - In debitis quia atque molestias. + - Asperiores culpa sunt sit. + - Similique porro voluptatem cum consequatur ut et. reconstructed_file_hash: type: string example: - - 81 - - 117 + - 65 + - 100 + - 105 + - 112 - 105 - - 32 - - 110 - - 111 - 115 - - 116 - - 114 - - 117 - - 109 + - 99 + - 105 - 32 - 101 - - 116 + - 120 - 32 - - 104 - - 97 + - 114 + - 101 - 114 - 117 - 109 - 32 - - 101 - - 110 + - 113 + - 117 - 105 - - 109 - 32 - - 118 - - 111 - - 108 + - 113 - 117 - - 112 - - 116 - 97 + - 109 + - 32 + - 105 - 116 + - 97 + - 113 + - 117 - 101 - - 115 - 32 - - 101 - - 116 + - 105 + - 110 - 46 format: binary ticket_type: type: string - example: Odio qui vel sunt minus alias. + example: Doloremque vel doloremque facere. tx_id: type: string - example: Est occaecati officia. + example: In voluptatem sed enim impedit. example: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Dolor harum laborum non qui. - - Unde soluta ad. + - Iure aperiam ut sapiente. + - Quaerat est quae architecto deleniti. + - In officiis aspernatur deserunt. + - Ut officia. reconstructed_file_hash: - 73 - - 110 - - 32 - - 118 - - 111 - - 108 - 117 - - 112 - - 116 - - 97 + - 115 - 116 - - 101 - - 109 + - 111 - 32 - - 115 - 101 - - 100 - - 32 + - 120 + - 99 - 101 - - 110 + - 112 + - 116 + - 117 + - 114 - 105 - - 109 - 32 + - 108 + - 97 + - 98 + - 111 + - 114 - 105 + - 111 + - 115 + - 97 - 109 - - 112 + - 32 + - 111 + - 99 + - 99 + - 97 - 101 - - 100 + - 99 + - 97 + - 116 - 105 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 110 - 116 + - 105 + - 117 + - 109 - 46 - ticket_type: Consequuntur necessitatibus eveniet. - tx_id: Mollitia magni aut molestiae similique. + ticket_type: Cum dolor. + tx_id: Alias quo amet voluptatem. ResponseData: type: object properties: block: type: integer description: Block - example: 1926592463 + example: 1830926455 format: int32 hash: type: string description: Hash - example: Aut unde. + example: Et fuga quos odio. merkelroot: type: string description: Merkelroot - example: Accusantium sit dolor quaerat. + example: Est amet labore rerum consequuntur numquam autem. timestamp: type: string description: Timestamp - example: Qui voluptatibus magni consectetur voluptate dolorum. + example: Et culpa doloremque id corrupti minima amet. description: Data of response example: - block: 558397639 - hash: Explicabo molestias aliquam repellendus nobis. - merkelroot: Laudantium sit. - timestamp: Mollitia qui laudantium maiores. + block: 1743298666 + hash: Sed reprehenderit harum quas ab quaerat. + merkelroot: Vero laborum sunt tenetur exercitationem et reprehenderit. + timestamp: Nulla reiciendis sit. required: - timestamp RestoreFile: @@ -13109,40 +13182,40 @@ components: activated_volumes: type: integer description: Total volumes that are activated - example: 5277715179027470780 + example: 806571868897374333 format: int64 registered_volumes: type: integer description: Total registered volumes - example: 1426244910437790821 + example: 7545780460008396473 format: int64 total_volumes: type: integer description: Total volumes of selected file - example: 1289073817904375199 + example: 1665300231075412669 format: int64 volumes_activated_in_recovery_flow: type: integer description: Total volumes that are activated in restore process - example: 2466850311106163935 + example: 398681028404636651 format: int64 volumes_registration_in_progress: type: integer description: Total volumes with in-progress registration - example: 1416448990018310995 + example: 1357198289991579544 format: int64 volumes_with_pending_registration: type: integer description: Total volumes with pending registration - example: 7624270104237442069 + example: 3396363195058332263 format: int64 example: - activated_volumes: 8733724021026231447 - registered_volumes: 994841821210668727 - total_volumes: 8434349129993203093 - volumes_activated_in_recovery_flow: 718328378407419058 - volumes_registration_in_progress: 6951484627609331717 - volumes_with_pending_registration: 8912379064408317396 + activated_volumes: 5650439815539890343 + registered_volumes: 3031149071443920694 + total_volumes: 7161817749037530316 + volumes_activated_in_recovery_flow: 6024487610152049805 + volumes_registration_in_progress: 5792437328606046464 + volumes_with_pending_registration: 4365828140604197761 required: - total_volumes - registered_volumes @@ -13184,83 +13257,83 @@ components: total_file_healing_failed: type: integer description: Total number of file healings that failed - example: 7601055110588379011 + example: 879295683357536917 format: int64 total_files_healed: type: integer description: Total number of files healed - example: 4017086950567849191 + example: 561289090697403675 format: int64 total_reconstruction_not_required_evaluations_approved: type: integer description: Total number of reconstructions not required approved by verifier nodes - example: 7292219726328051514 + example: 3740670154458596332 format: int64 total_reconstruction_required_evaluations_approved: type: integer description: Total number of reconstructions approved by verifier nodes - example: 864880277735263997 + example: 7082670242566329789 format: int64 total_reconstruction_required_evaluations_not_approved: type: integer description: Total number of reconstructions not approved by verifier nodes - example: 3933090910401687684 + example: 1139166420317043116 format: int64 total_reconstruction_required_hash_mismatch: type: integer description: Total number of reconstructions required with hash mismatch - example: 2640050113801816041 + example: 4987601387876620942 format: int64 total_reconstructions_not_required_evaluations_not_approved: type: integer description: Total number of reconstructions not required evaluation not approved by verifier nodes - example: 4083130699704998640 + example: 2088254083994164728 format: int64 total_self_healing_events_accepted: type: integer description: Total number of events accepted (healer node evaluated that reconstruction is required) - example: 7495715008841322457 + example: 8188130298552292266 format: int64 total_self_healing_events_acknowledged: type: integer description: Total number of events acknowledged by the healer node - example: 8589474276749660183 + example: 5951863253232021290 format: int64 total_self_healing_events_evaluations_unverified: type: integer description: Total number of challenge evaluations unverified by verifier nodes - example: 4980421385447295589 + example: 3799024174070481865 format: int64 total_self_healing_events_evaluations_verified: type: integer description: Total number of challenges verified - example: 371785026389084519 + example: 6564643128404903284 format: int64 total_self_healing_events_issued: type: integer description: Total number of self-healing events issued - example: 1991747603062736881 + example: 2700767640222453508 format: int64 total_self_healing_events_rejected: type: integer description: Total number of events rejected (healer node evaluated that reconstruction is not required) - example: 7163669102428250342 + example: 587181744822064718 format: int64 description: Self-healing execution stats example: - total_file_healing_failed: 2101824502205008832 - total_files_healed: 1168774161270963739 - total_reconstruction_not_required_evaluations_approved: 6223014132452500449 - total_reconstruction_required_evaluations_approved: 5141508266112142562 - total_reconstruction_required_evaluations_not_approved: 3455696881956251886 - total_reconstruction_required_hash_mismatch: 2253001553567223832 - total_reconstructions_not_required_evaluations_not_approved: 7648635050709611073 - total_self_healing_events_accepted: 1595757187094497253 - total_self_healing_events_acknowledged: 3168003967489424384 - total_self_healing_events_evaluations_unverified: 4267651162698538645 - total_self_healing_events_evaluations_verified: 5062369179517526000 - total_self_healing_events_issued: 4222917846085163198 - total_self_healing_events_rejected: 4638256339478094874 + total_file_healing_failed: 4132569794906174981 + total_files_healed: 299449972248189702 + total_reconstruction_not_required_evaluations_approved: 3948085026758093264 + total_reconstruction_required_evaluations_approved: 7890445729771450423 + total_reconstruction_required_evaluations_not_approved: 3761061347061502409 + total_reconstruction_required_hash_mismatch: 8670542380715302054 + total_reconstructions_not_required_evaluations_not_approved: 4323782701548225820 + total_self_healing_events_accepted: 6384457494329020345 + total_self_healing_events_acknowledged: 1502303318195151610 + total_self_healing_events_evaluations_unverified: 611683296482964614 + total_self_healing_events_evaluations_verified: 1700215197640479597 + total_self_healing_events_issued: 2872196506620467630 + total_self_healing_events_rejected: 3503350653128617398 required: - total_self_healing_events_issued - total_self_healing_events_acknowledged @@ -13280,33 +13353,33 @@ components: list_of_nodes: type: string description: Comma-separated list of offline nodes - example: Repellat magni sint qui iure ipsa. + example: Amet quaerat blanditiis consequatur et perferendis. nodes_offline: type: integer description: Number of nodes offline - example: 6906079468246402139 + example: 7038159273472894165 format: int64 total_files_identified: type: integer description: Total number of files identified for self-healing - example: 8050790234578223711 + example: 4928475190187598797 format: int64 total_tickets_identified: type: integer description: Total number of tickets identified for self-healing - example: 6509921496688036133 + example: 5291546525723281204 format: int64 trigger_id: type: string description: Unique identifier for the trigger - example: Reprehenderit molestias odio. + example: Dolorum atque sequi. description: Self-healing trigger stats example: - list_of_nodes: Distinctio iste natus enim iste. - nodes_offline: 6460897271932646186 - total_files_identified: 485475253540290975 - total_tickets_identified: 2263624505302267545 - trigger_id: Nesciunt et. + list_of_nodes: Et ratione fuga nobis incidunt est. + nodes_offline: 2634691086720156436 + total_files_identified: 4911447140705622375 + total_tickets_identified: 7697835316004070642 + trigger_id: Non explicabo. required: - trigger_id - nodes_offline @@ -13318,7 +13391,7 @@ components: properties: block: type: integer - example: 2069511093 + example: 1677968800 format: int32 event_tickets: type: array @@ -13438,15 +13511,15 @@ components: tx_id: Amet et sunt. merkelroot: type: string - example: Rerum repellat id. + example: Eveniet iure id corporis et. nodes_on_watchlist: type: string - example: Ipsum deleniti eos voluptatem libero. + example: Sunt est dolor hic. timestamp: type: string - example: Et sequi ut praesentium ducimus. + example: In velit suscipit id. example: - block: 457183182 + block: 983726503 event_tickets: - data_hash: - 77 @@ -13596,9 +13669,9 @@ components: recipient: Aliquid voluptatem. ticket_type: Repellat qui reprehenderit id ex ea. tx_id: Amet et sunt. - merkelroot: Omnis aut ut veniam minima quisquam sapiente. - nodes_on_watchlist: Sed nam distinctio deleniti deleniti officia. - timestamp: Similique atque facere exercitationem molestias enim. + merkelroot: Accusantium rerum aspernatur et debitis. + nodes_on_watchlist: Mollitia magni aut molestiae similique. + timestamp: Qui nostrum et harum enim voluptates et. SelfHealingMessage: type: object properties: @@ -13606,31 +13679,70 @@ components: $ref: '#/components/schemas/SelfHealingMessageData' message_type: type: string - example: Fuga voluptatem ipsum voluptas eius. + example: Ipsa molestiae. sender_id: type: string - example: Expedita dolor ea quos. + example: Repellat enim a ullam qui. sender_signature: type: string example: - - 86 + - 77 - 111 - 108 - - 117 - - 112 + - 101 + - 115 - 116 + - 105 - 97 - - 116 + - 115 + - 32 + - 97 + - 115 + - 112 - 101 - - 109 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 - 32 + - 114 - 101 - - 116 + - 105 + - 99 + - 105 + - 101 + - 110 + - 100 + - 105 + - 115 + - 32 + - 113 + - 117 + - 111 + - 115 + - 32 + - 113 + - 117 + - 105 + - 98 + - 117 + - 115 + - 100 + - 97 + - 109 + - 32 + - 113 + - 117 + - 97 + - 115 + - 105 - 46 format: binary trigger_id: type: string - example: Ut voluptas cum est molestiae. + example: Sit amet eligendi beatae commodi itaque. example: data: challenger_id: Omnis in quaerat molestiae iusto. @@ -13844,46 +13956,40 @@ components: - 117 - 101 - 46 - message_type: Repudiandae incidunt veniam debitis repellendus modi. - sender_id: Voluptas atque magni qui dolore et rerum. + message_type: Odio et nihil voluptatum. + sender_id: Dolorum qui accusantium blanditiis voluptas aut fugiat. sender_signature: - - 70 - - 97 - - 99 - - 101 - - 114 - - 101 + - 83 + - 105 + - 116 - 32 - - 114 - - 101 - - 112 - - 117 - - 100 - 105 - - 97 - 110 + - 99 + - 105 - 100 - - 97 - - 101 + - 117 + - 110 + - 116 - 46 - trigger_id: Iure non. + trigger_id: Quod autem repellendus fugiat beatae officia voluptatem. SelfHealingMessageData: type: object properties: challenger_id: type: string - example: Animi totam laboriosam et qui iure. + example: Magni quod architecto ipsa laborum consectetur praesentium. event_details: $ref: '#/components/schemas/SelfHealingChallengeData' recipient_id: type: string - example: Omnis soluta occaecati maiores ut voluptatum dolor. + example: Consequatur vel sed. response: $ref: '#/components/schemas/SelfHealingResponseData' verification: $ref: '#/components/schemas/SelfHealingVerificationData' example: - challenger_id: Aut ut. + challenger_id: Qui quisquam cum quasi dolores quod. event_details: block: 1202389484 event_tickets: @@ -13964,7 +14070,7 @@ components: merkelroot: Aperiam voluptates magnam. nodes_on_watchlist: Et iste nisi eos. timestamp: Voluptatem nobis. - recipient_id: Unde officiis ipsum quidem qui et cumque. + recipient_id: Modi incidunt dolore dolor a eligendi. response: block: 1982812630 event_id: Sapiente nulla ipsum qui. @@ -14100,7 +14206,7 @@ components: message_type: type: string description: Message type - example: Neque omnis tempora. + example: Magnam ipsum corrupti iste sequi. messages: type: array items: @@ -14839,252 +14945,8 @@ components: - 97 - 46 trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. example: - message_type: Est amet natus quo consequuntur id. + message_type: Quasi eveniet harum qui. messages: - data: challenger_id: Omnis in quaerat molestiae iusto. @@ -15818,250 +15680,6 @@ components: - 97 - 46 trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. SelfHealingReport: type: object properties: @@ -20963,13737 +20581,5904 @@ components: - 97 - 46 trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - SelfHealingReportKV: - type: object - properties: - event_id: - type: string - description: Challenge ID - example: Blanditiis natus beatae amet maiores. - report: - $ref: '#/components/schemas/SelfHealingReport' - example: - event_id: Itaque facilis ut et. - report: - messages: - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - SelfHealingReports: - type: object - properties: - reports: - type: array - items: - $ref: '#/components/schemas/SelfHealingReportKV' - description: Map of challenge ID to SelfHealingReport - example: - - event_id: Eum itaque totam dicta. - report: - messages: - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - event_id: Eum itaque totam dicta. - report: - messages: - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - event_id: Eum itaque totam dicta. - report: - messages: - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - event_id: Eum itaque totam dicta. - report: - messages: - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - example: - reports: - - event_id: Eum itaque totam dicta. - report: - messages: - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. + SelfHealingReportKV: + type: object + properties: + event_id: + type: string + description: Challenge ID + example: Praesentium ducimus ea voluptates optio et sed. + report: + $ref: '#/components/schemas/SelfHealingReport' + example: + event_id: Dolorum velit aliquam eum quod aut. + report: + messages: + - message_type: Recusandae ipsa sit ipsa. + messages: + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - message_type: Recusandae ipsa sit ipsa. + messages: + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + SelfHealingReports: + type: object + properties: + reports: + type: array + items: + $ref: '#/components/schemas/SelfHealingReportKV' + description: Map of challenge ID to SelfHealingReport + example: + - event_id: Eum itaque totam dicta. + report: + messages: + - message_type: Recusandae ipsa sit ipsa. + messages: + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - message_type: Recusandae ipsa sit ipsa. + messages: + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - event_id: Eum itaque totam dicta. + report: + messages: + - message_type: Recusandae ipsa sit ipsa. + messages: + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - message_type: Recusandae ipsa sit ipsa. + messages: + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + - data: + challenger_id: Omnis in quaerat molestiae iusto. + event_details: + block: 1202389484 + event_tickets: + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + - data_hash: + - 77 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 46 + missing_keys: + - Totam qui. + - Aliquam quidem. + recipient: Aliquid voluptatem. + ticket_type: Repellat qui reprehenderit id ex ea. + tx_id: Amet et sunt. + merkelroot: Aperiam voluptates magnam. + nodes_on_watchlist: Et iste nisi eos. + timestamp: Voluptatem nobis. + recipient_id: Sed a cupiditate repellat at non et. + response: + block: 1982812630 + event_id: Sapiente nulla ipsum qui. + merkelroot: Totam et. + responded_ticket: + is_reconstruction_required: true + missing_keys: + - Nihil molestias. + - Quia aut. + - Expedita ea nostrum fuga excepturi. + reconstructed_file_hash: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + ticket_type: Veniam porro corrupti voluptates consequatur. + tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. + timestamp: Sunt consectetur laudantium. + verifiers: + - Quibusdam sit id pariatur. + - Est consectetur aut voluptas repellat. + verification: + block: 125244077 + event_id: Voluptatibus sint modi voluptas quisquam quisquam. + merkelroot: Quo quia doloribus aut numquam deleniti. + timestamp: Esse dolorem id molestiae iusto. + verified_ticket: + is_reconstruction_required: false + is_verified: true + message: Libero et alias. + missing_keys: + - Et quia. + - Qui vel dolor. + reconstructed_file_hash: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 97 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 111 + - 99 + - 99 + - 97 + - 101 + - 99 + - 97 + - 116 + - 105 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 115 + - 32 + - 97 + - 98 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + ticket_type: Dolor qui aut expedita. + tx_id: Saepe excepturi nisi est est veritatis. + verifiers_data: + Voluptas nihil et voluptates sed.: + - 83 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 32 + - 117 + - 108 + - 108 + - 97 + - 109 + - 32 + - 110 + - 101 + - 113 + - 117 + - 101 + - 46 + message_type: Delectus aut rerum. + sender_id: Quas ut natus beatae voluptatem quis dolorum. + sender_signature: + - 85 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 100 + - 101 + - 108 + - 101 + - 99 + - 116 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 32 + - 100 + - 105 + - 99 + - 116 + - 97 + - 46 + trigger_id: Ut omnis. + example: + reports: - event_id: Eum itaque totam dicta. report: messages: @@ -40576,32 +32361,31 @@ components: properties: block: type: integer - example: 2136714775 + example: 15564711 format: int32 event_id: type: string - example: Unde quia magni minima. + example: Consequuntur necessitatibus eveniet. merkelroot: type: string - example: Ut quae atque ut suscipit. + example: Dolor harum laborum non qui. responded_ticket: $ref: '#/components/schemas/RespondedTicket' timestamp: type: string - example: Voluptatum explicabo quaerat aspernatur sit illum. + example: Unde soluta ad. verifiers: type: array items: type: string - example: Vel doloremque facere odio quis adipisci. + example: Qui ut qui ut. example: - - Nisi explicabo aperiam. - - In debitis quia atque molestias. - - Asperiores culpa sunt sit. + - Sequi veritatis fuga consequuntur maxime aut. + - Voluptas est. example: - block: 1212931187 - event_id: Similique porro voluptatem cum consequatur ut et. - merkelroot: Ex rerum. + block: 1344120165 + event_id: Quas id id ut consectetur. + merkelroot: Quia a adipisci esse. responded_ticket: is_reconstruction_required: true missing_keys: @@ -40628,69 +32412,162 @@ components: - 46 ticket_type: Veniam porro corrupti voluptates consequatur. tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Quam itaque in et optio alias quo. + timestamp: Excepturi laudantium consectetur fugit quibusdam sit. verifiers: - - Est cum dolor debitis aut iure aperiam. - - Sapiente aspernatur quaerat est quae architecto deleniti. - - In officiis aspernatur deserunt. + - Rem dicta. + - Id labore. + - Modi accusamus et perspiciatis cumque praesentium. + - Ut ipsa odit. SelfHealingVerificationData: type: object properties: block: type: integer - example: 1141342755 + example: 1701068661 format: int32 event_id: type: string - example: Ut officia. + example: Dicta non. merkelroot: type: string - example: Excepturi laboriosam. + example: Magnam omnis debitis consequatur aspernatur excepturi. timestamp: type: string - example: Accusantium dolorum dolor qui ut. + example: Numquam consectetur voluptatum. verified_ticket: $ref: '#/components/schemas/VerifiedTicket' verifiers_data: type: object example: - Aut velit.: - - 69 - - 115 + Et et iure.: + - 86 + - 111 + - 108 + - 117 + - 112 - 116 - - 32 - 97 - - 117 - 116 + - 117 + - 109 - 32 + - 114 + - 101 + - 112 + - 117 + - 100 + - 105 - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 105 + - 110 + - 99 + - 105 + - 100 - 117 + - 110 - 116 - 32 + - 118 + - 101 + - 110 + - 105 - 97 - - 117 - - 116 + - 109 - 32 + - 100 - 101 + - 98 + - 105 - 116 + - 105 + - 115 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 101 + - 110 + - 100 + - 117 + - 115 + - 32 + - 109 + - 111 + - 100 + - 105 + - 46 + Voluptas atque magni qui dolore et rerum.: + - 70 + - 97 + - 99 + - 101 + - 114 + - 101 + - 32 + - 114 + - 101 + - 112 + - 117 + - 100 + - 105 + - 97 + - 110 + - 100 + - 97 + - 101 - 46 additionalProperties: type: string example: - - 83 + - 67 + - 111 + - 110 + - 115 + - 101 + - 99 + - 116 + - 101 + - 116 + - 117 + - 114 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 32 - 101 + - 97 + - 32 + - 113 + - 117 + - 111 - 115 - - 116 - 46 format: binary example: - block: 1107087745 - event_id: Maiores minima dolor quo. - merkelroot: Omnis molestias animi mollitia quibusdam vel. - timestamp: Dignissimos impedit. + block: 469848106 + event_id: Voluptatum est. + merkelroot: Quo consequuntur id. + timestamp: Est vero qui itaque facilis ut et. verified_ticket: is_reconstruction_required: false is_verified: true @@ -40753,86 +32630,81 @@ components: ticket_type: Dolor qui aut expedita. tx_id: Saepe excepturi nisi est est veritatis. verifiers_data: - Autem soluta.: - - 80 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 + Consequuntur saepe qui.: + - 67 + - 117 + - 109 - 32 - - 101 + - 112 + - 114 - 97 - - 32 - - 109 - - 111 - - 108 - 101 - 115 + - 101 + - 110 - 116 - 105 - - 97 - - 101 - - 32 - - 101 - - 97 + - 117 + - 109 - 32 - 101 - - 116 + - 120 - 32 - - 110 - - 105 - - 115 + - 113 + - 117 - 105 - 32 - - 97 + - 113 - 117 - - 116 - - 46 - Debitis voluptatem.: - - 69 - - 97 + - 105 - 32 - - 109 - - 111 - - 108 - - 101 - 115 - - 116 - - 105 - 97 - - 115 + - 101 + - 112 + - 101 - 46 - Provident aperiam molestiae ipsum.: - - 65 + Deserunt omnis nesciunt et eos dolores.: + - 73 + - 115 - 116 - - 113 - - 117 - 101 - 32 + - 110 - 97 - - 117 - 116 + - 117 + - 115 - 32 - 101 - 110 - 105 - 109 - 32 - - 99 - - 111 - - 110 + - 105 - 115 + - 116 - 101 + - 46 + Sed reprehenderit molestias odio sit facere repellat.: + - 83 + - 105 + - 110 + - 116 + - 32 - 113 - 117 - - 97 - - 116 + - 105 + - 32 + - 105 - 117 - 114 + - 101 + - 32 + - 105 + - 112 + - 115 + - 97 - 46 StartProcessingRequestBody: type: object @@ -40854,7 +32726,7 @@ components: type: array items: type: string - example: Nulla fugit consectetur est distinctio magni. + example: Rerum harum esse et. description: List of Burn transaction IDs for multi-volume registration example: - 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 @@ -40903,7 +32775,7 @@ components: type: string description: OpenAPI GroupID string default: PASTEL - example: Nihil molestias asperiores reiciendis quos quibusdam quasi. + example: Nulla eveniet non vitae qui ducimus. spendable_address: type: string description: 'Address to use for registration fee ' @@ -40915,7 +32787,7 @@ components: app_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - open_api_group_id: Quod autem repellendus fugiat beatae officia voluptatem. + open_api_group_id: Similique nam et odio vero consectetur. spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j required: - burn_txid @@ -40941,42 +32813,42 @@ components: challenge_id: type: string description: ID of the challenge - example: Fugiat accusantium sit incidunt dolore assumenda quasi. + example: Amet qui voluptatibus magni consectetur voluptate. challenger_evaluation: $ref: '#/components/schemas/EvaluationData' challenger_id: type: string description: ID of the challenger - example: Amet quaerat blanditiis consequatur et perferendis. + example: Numquam sed et eos a officia iusto. message_type: type: string description: type of the message - example: Harum qui est. + example: Et nulla laudantium. observer_evaluation: $ref: '#/components/schemas/ObserverEvaluationData' observers: type: array items: type: string - example: Dolorum nulla eveniet non vitae qui ducimus. + example: Laboriosam vero fuga illum mollitia non ducimus. description: List of observer IDs example: - - Nam et. - - Vero consectetur molestiae. + - Laudantium animi architecto ea. + - Veniam quidem quia amet et qui. recipient_id: type: string description: ID of the recipient - example: Aut quaerat ut rem sunt alias autem. + example: Rerum ut cum quo et. response: $ref: '#/components/schemas/ResponseData' sender_id: type: string description: ID of the sender's node - example: Qui ipsa dolorum velit aliquam eum quod. + example: Sint explicabo molestias aliquam repellendus nobis. sender_signature: type: string description: signature of the sender - example: Voluptate harum voluptatem dolorum atque sequi aspernatur. + example: Mollitia qui laudantium maiores. description: Storage challenge message data example: challenge: @@ -40986,15 +32858,15 @@ components: merkelroot: Sint aut repellat consequatur dignissimos voluptatibus. start_index: 6285852628941175332 timestamp: Odio deleniti omnis maiores dolorem. - challenge_id: Harum quas ab. + challenge_id: Provident voluptas dolorem. challenger_evaluation: block: 346663458 hash: Voluptatem sint recusandae. is_verified: true merkelroot: Et rem ducimus maxime aut. timestamp: Fugit eaque nesciunt eum quasi. - challenger_id: At pariatur ullam et. - message_type: Illo nulla reiciendis sit explicabo sunt. + challenger_id: Omnis non neque ducimus alias magni rerum. + message_type: Voluptas odit quae quo ut saepe aperiam. observer_evaluation: block: 1725989442 is_challenge_timestamp_ok: false @@ -41008,16 +32880,16 @@ components: timestamp: Voluptas exercitationem quisquam id accusantium voluptatibus. true_hash: Architecto sit quidem deserunt rem dolore aut. observers: - - Corporis consectetur distinctio. - - Nostrum doloribus. - recipient_id: Temporibus vitae aliquam incidunt ut autem. + - Qui dignissimos quae. + - Dolores dolor ut totam vel officia. + recipient_id: Fuga voluptatem libero tempora vel consectetur. response: block: 2076283382 hash: Dolor autem quo vero quia quod omnis. merkelroot: Et ullam officiis libero. timestamp: Qui non quibusdam. - sender_id: Voluptatem autem. - sender_signature: Unde excepturi corrupti et et. + sender_id: Sunt libero hic. + sender_signature: Molestiae non fuga animi architecto. required: - challenge_id - message_type @@ -41379,54 +33251,60 @@ components: type: string description: File to upload example: - - 86 - - 105 - - 116 - - 97 + - 82 - 101 - - 32 - - 117 - - 116 - - 32 - - 105 - - 108 - - 108 - - 117 - 109 - 32 - - 102 - - 117 - - 103 - - 105 - - 97 + - 101 + - 120 + - 99 + - 101 + - 112 - 116 - - 32 - - 113 - 117 + - 114 - 105 - - 100 + - 32 - 101 + - 97 + - 114 + - 117 - 109 - 32 - - 110 + - 116 - 101 - - 99 + - 109 + - 112 + - 111 + - 114 - 101 - - 115 - - 115 - - 105 - - 116 - - 97 + - 32 - 116 + - 101 + - 109 + - 112 + - 111 + - 114 - 105 - 98 - 117 - 115 - 32 + - 113 - 117 - - 110 - - 100 + - 105 + - 115 + - 32 + - 97 + - 115 + - 112 - 101 + - 114 + - 110 + - 97 + - 116 + - 117 + - 114 - 46 format: binary filename: @@ -41441,42 +33319,50 @@ components: format: int64 example: file: - - 69 - - 116 - - 32 - - 100 - - 111 + - 78 + - 117 + - 108 - 108 - - 111 - - 114 - - 32 - - 116 - - 111 - - 116 - 97 - - 109 - 32 - 102 - 117 - 103 - 105 - - 97 - 116 - 32 + - 99 + - 111 + - 110 + - 115 - 101 - - 97 - - 113 + - 99 + - 116 + - 101 + - 116 - 117 + - 114 + - 32 - 101 + - 115 + - 116 - 32 - - 110 + - 100 - 105 - - 104 + - 115 + - 116 - 105 - - 108 - - 32 - - 101 + - 110 + - 99 - 116 + - 105 + - 111 + - 32 + - 109 + - 97 + - 103 + - 110 + - 105 - 46 required: - file @@ -41487,27 +33373,23 @@ components: type: string description: File to upload example: - - 76 - - 97 - - 98 - - 111 - - 114 - - 105 + - 77 - 111 + - 108 + - 101 - 115 + - 116 + - 105 - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - 101 - 32 + - 108 + - 97 + - 98 - 111 - - 100 - - 105 - - 116 + - 114 + - 117 + - 109 - 32 - 113 - 117 @@ -41525,16 +33407,35 @@ components: description: For internal use example: file: - - 73 + - 86 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 109 + - 32 + - 105 - 112 - 115 - - 117 + - 97 - 109 - 32 - - 113 + - 110 - 117 - - 105 + - 108 + - 108 - 97 + - 32 + - 102 + - 97 + - 99 + - 101 + - 114 + - 101 - 46 required: - file @@ -41641,134 +33542,93 @@ components: properties: is_reconstruction_required: type: boolean - example: true + example: false is_verified: type: boolean - example: false + example: true message: type: string - example: Dicta perferendis id labore sunt. + example: Mollitia quibusdam vel saepe dignissimos impedit consequatur. missing_keys: type: array items: type: string - example: Dolores quas. + example: Adipisci quod non dignissimos veniam porro et. example: - - Ut consectetur. - - Quas quia a adipisci esse. + - Reiciendis sit. + - Voluptas repellendus aut velit nesciunt. + - Aut aut. + - Et quia maiores minima dolor. reconstructed_file_hash: type: string example: - - 69 - - 120 - - 99 - - 101 - - 112 - - 116 + - 67 - 117 - - 114 + - 112 - 105 - - 32 - - 108 - - 97 - - 117 - 100 - - 97 - - 110 - - 116 - 105 - - 117 - - 109 - - 32 - - 99 - - 111 - - 110 - - 115 - - 101 - - 99 - 116 - - 101 - - 116 - - 117 - - 114 - - 32 - - 102 - - 117 - - 103 - - 105 + - 97 - 116 + - 101 - 32 - - 113 - - 117 - 105 - - 98 - - 117 + - 112 - 115 - - 100 - 97 - - 109 - - 32 - - 115 - - 105 - - 116 - 46 format: binary ticket_type: type: string - example: Veritatis fuga consequuntur maxime aut eaque voluptas. + example: Ipsum recusandae illum voluptatum. tx_id: type: string - example: Ut possimus cupiditate. + example: Qui reprehenderit est. example: is_reconstruction_required: true - is_verified: true - message: Et sint ducimus. + is_verified: false + message: Laborum unde officiis ipsum quidem qui et. missing_keys: - - Omnis debitis consequatur aspernatur excepturi aut numquam. - - Voluptatum velit qui reprehenderit est nobis ipsum. + - Soluta ullam provident ea. + - Ea et nisi. + - Omnis provident aperiam molestiae. reconstructed_file_hash: - - 73 - - 108 - - 108 + - 65 - 117 + - 116 + - 101 - 109 - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - 97 - 116 + - 113 - 117 - - 109 + - 101 + - 32 + - 97 + - 117 + - 116 - 32 - 101 - 110 - 105 - 109 - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - 99 - - 105 - - 32 - - 113 - - 117 - - 111 - - 100 - - 32 - - 110 - 111 - 110 + - 115 + - 101 + - 113 + - 117 + - 97 + - 116 + - 117 + - 114 - 46 - ticket_type: Ipsa odit atque dicta non ab. - tx_id: Accusamus et perspiciatis cumque praesentium ut. + ticket_type: Ea molestias. + tx_id: Debitis voluptatem. securitySchemes: api_key_header_Authorization: type: apiKey diff --git a/walletnode/api/services/cascade.go b/walletnode/api/services/cascade.go index 05966bd2a..11222e98f 100644 --- a/walletnode/api/services/cascade.go +++ b/walletnode/api/services/cascade.go @@ -32,8 +32,8 @@ import ( const ( maxFileSize = 300 * 1024 * 1024 // 300MB in bytes maxFileRegistrationAttempts = 3 - downloadDeadline = 30 * time.Minute - downloadConcurrency = 1 + downloadDeadline = 120 * time.Minute + downloadConcurrency = 2 ) // CascadeAPIHandler - CascadeAPIHandler service @@ -303,6 +303,12 @@ func (service *CascadeAPIHandler) getTxIDs(ctx context.Context, txID string) (tx return } +type DownloadResult struct { + File []byte + Filename string + Txid string +} + // Download registered cascade file - also supports multi-volume files func (service *CascadeAPIHandler) Download(ctx context.Context, p *cascade.DownloadPayload) (*cascade.FileDownloadResult, error) { log.WithContext(ctx).WithField("txid", p.Txid).Info("Start downloading") @@ -315,12 +321,6 @@ func (service *CascadeAPIHandler) Download(ctx context.Context, p *cascade.Downl txIDs, ticket := service.getTxIDs(ctx, p.Txid) isMultiVolume := len(txIDs) > 1 - type DownloadResult struct { - File []byte - Filename string - Txid string - } - // Create directory with p.Txid folderPath := filepath.Join(service.config.StaticFilesDir, p.Txid) if _, err := os.Stat(folderPath); os.IsNotExist(err) { @@ -446,6 +446,175 @@ func (service *CascadeAPIHandler) Download(ctx context.Context, p *cascade.Downl }, nil } +// Download registered cascade file - also supports multi-volume files +func (service *CascadeAPIHandler) DownloadV2(ctx context.Context, p *cascade.DownloadPayload) (*cascade.FileDownloadV2Result, error) { + log.WithContext(ctx).WithField("txid", p.Txid).Info("Download Request Received (V2)") + if !service.register.ValidateUser(ctx, p.Pid, p.Key) { + return nil, cascade.MakeUnAuthorized(errors.New("user not authorized: invalid PastelID or Key")) + } + + txIDs, ticket := service.getTxIDs(ctx, p.Txid) + isMultiVolume := len(txIDs) > 1 + + // Create directory with p.Txid + folderPath := filepath.Join(service.config.StaticFilesDir, p.Txid) + if _, err := os.Stat(folderPath); os.IsNotExist(err) { + if err := os.MkdirAll(folderPath, os.ModePerm); err != nil { + return nil, err + } + } + + // generating a single unique ID + uniqueID := randIDFunc() + service.fileMappings.Store(uniqueID, folderPath) + + // Start asynchronous download process + go service.manageDownloads(ctx, p, txIDs, folderPath, isMultiVolume, ticket.NameOfOriginalFile, ticket.SHA3256HashOfOriginalFile, uniqueID) + + return &cascade.FileDownloadV2Result{ + FileID: uniqueID, + }, nil +} + +func (service *CascadeAPIHandler) manageDownloads(_ context.Context, p *cascade.DownloadPayload, txIDs []string, folderPath string, isMulti bool, name string, sha string, id string) { + sem := make(chan struct{}, downloadConcurrency) // Max 3 concurrent downloads + taskResults := make(chan *DownloadResult) + errorsChan := make(chan error) + + ctx, cancel := context.WithTimeout(context.Background(), downloadDeadline) + defer cancel() + + // Starting multiple download tasks + tasks := 0 + for _, txID := range txIDs { + filename, size, err := service.download.GetFilenameAndSize(ctx, txID) + if err != nil { + return + } + + // check if file already exists + filePath := filepath.Join(folderPath, filename) + if fileinfo, err := os.Stat(filePath); err == nil { + if fileinfo.Size() == int64(size) { + log.WithContext(ctx).WithField("filename", filename).WithField("txid", txID).Info("skipping file download as it already exists") + if len(txIDs) == 1 { + service.fileMappings.Store(id, filePath) + } + continue + } else { + log.WithContext(ctx).WithField("filename", filename).WithField("txid", txID).Warn("file exists but downloading again due to size mismatch") + } + } + tasks++ + + go func(txID string) { + sem <- struct{}{} // Acquiring the semaphore + defer func() { <-sem }() // Releasing the semaphore + + taskID := service.download.AddTask(&nft.DownloadPayload{Key: p.Key, Pid: p.Pid, Txid: txID}, pastel.ActionTypeCascade, false) + task := service.download.GetTask(taskID) + defer task.Cancel() + + sub := task.SubscribeStatus() + + for { + select { + case <-ctx.Done(): + errorsChan <- cascade.MakeBadRequest(errors.Errorf("context done: %w", ctx.Err())) + log.WithContext(ctx).Info("context done down v2") + return + case status := <-sub(): + if status.IsFailure() { + errStr := fmt.Errorf("internal processing error: %s", status.String()) + if task.Error() != nil { + errStr = task.Error() + } + errorsChan <- cascade.MakeInternalServerError(errStr) + return + } + + if status.IsFinal() { + taskResults <- &DownloadResult{File: task.File, Filename: task.Filename, Txid: txID} + return + } + } + } + }(txID) + } + log.WithContext(ctx).WithField("tasks-count", tasks).Info("Download tasks started") + + // Processing results + service.processDownloadResults(ctx, taskResults, errorsChan, folderPath, isMulti, tasks, sha, name, id) +} + +func (service *CascadeAPIHandler) GetDownloadTaskState(ctx context.Context, p *cascade.GetDownloadTaskStatePayload) (res []*cascade.TaskHistory, err error) { + filePath, ok := service.fileMappings.Load(p.FileID) + if !ok { + return nil, cascade.MakeNotFound(errors.New("file not found")) + } + + filePathStr, ok := filePath.(string) + if !ok { + return nil, cascade.MakeInternalServerError(errors.New("unable to cast file path")) + } + + // Check if the file exists + if _, err := os.Stat(filePathStr); os.IsNotExist(err) { + return nil, cascade.MakeNotFound(errors.New("file not found")) + } + + return []*cascade.TaskHistory{}, nil +} + +func (service *CascadeAPIHandler) processDownloadResults(ctx context.Context, taskResults chan *DownloadResult, errorsChan chan error, folderPath string, + isMultiVolume bool, tasks int, sha string, name string, id string) error { + + filePath := "" + for i := 0; i < tasks; i++ { + select { + case res := <-taskResults: + filePath = filepath.Join(folderPath, res.Filename) + fmt.Println("file path", filePath) + if err := os.WriteFile(filePath, res.File, 0644); err != nil { + log.WithContext(ctx).WithError(err).Error("unable to write file") + return fmt.Errorf("unable to write file: %w", err) + } + case err := <-errorsChan: + log.WithContext(ctx).WithError(err).Error("error during download process") + return fmt.Errorf("error during download process: %w", err) + case <-ctx.Done(): + log.WithContext(ctx).Info("download process context expired") + return fmt.Errorf("download process context expired: %w", ctx.Err()) + } + } + + if isMultiVolume { + fsp := common.FileSplitter{PartSizeMB: partSizeMB} + if err := fsp.JoinFiles(folderPath); err != nil { + log.WithContext(ctx).WithError(err).Error("unable to join files") + return cascade.MakeInternalServerError(errors.New("unable to join files")) + } + + filePath = filepath.Join(folderPath, name) + + // Check if the hash of the file matches the hash in the ticket + hash, err := utils.ComputeSHA256HashOfFile(filePath) + if err != nil { + return fmt.Errorf("unable to compute hash: %w", err) + } + + if hex.EncodeToString(hash) != sha { + return fmt.Errorf("hash mismatch: %w", errors.New("hash mismatch")) + } + } + if filePath != "" { + service.fileMappings.Store(id, filePath) + } + log.WithContext(ctx).WithField("file_id", id).Info("file downloaded successfully") + + return nil +} + // GetTaskHistory - Gets a task's history func (service *CascadeAPIHandler) GetTaskHistory(ctx context.Context, p *cascade.GetTaskHistoryPayload) (history []*cascade.TaskHistory, err error) { store, err := queries.OpenHistoryDB() diff --git a/walletnode/services/download/cleanup.go b/walletnode/services/download/cleanup.go index c8a5abea6..aa0a4b7ec 100644 --- a/walletnode/services/download/cleanup.go +++ b/walletnode/services/download/cleanup.go @@ -11,8 +11,8 @@ import ( ) const ( - defaultFileTTL = 1 * time.Hour - defaultCheckInterval = 1 * time.Minute + defaultFileTTL = 12 * time.Hour + defaultCheckInterval = 5 * time.Minute ) // CleanupService cleans up the static dir periodically. diff --git a/walletnode/services/download/task.go b/walletnode/services/download/task.go index 27b3c6a40..00faefcf8 100644 --- a/walletnode/services/download/task.go +++ b/walletnode/services/download/task.go @@ -188,7 +188,6 @@ func (task *NftDownloadingTask) run(ctx context.Context) (err error) { // Download downloads the file from supernodes. func (task *NftDownloadingTask) Download(cctx context.Context, txid, ttxid, ttype string, timeout time.Duration) ([]error, []string, error) { - var wg sync.WaitGroup errChan := make(chan error, len(task.MeshHandler.Nodes)) var badNodes []string var badMtx sync.Mutex @@ -197,14 +196,6 @@ func (task *NftDownloadingTask) Download(cctx context.Context, txid, ttxid, ttyp ctx, cancel := context.WithCancel(cctx) defer cancel() - // Create a buffered channel to communicate successful downloads - successes := make(chan struct{}, requiredSuccessfulCount) - - // Semaphore channel to limit concurrent downloads to 3 - semaphore := make(chan struct{}, concurrentDownloads) - - defer close(successes) - for _, someNode := range task.MeshHandler.Nodes { nftDownNode, ok := someNode.SuperNodeAPIInterface.(*NftDownloadingNode) if !ok { @@ -212,69 +203,49 @@ func (task *NftDownloadingTask) Download(cctx context.Context, txid, ttxid, ttyp } someNode := someNode - wg.Add(1) - semaphore <- struct{}{} - go func() { - defer wg.Done() - defer func() { <-semaphore }() // Release semaphore when goroutine finishes + // Create a new context with a timeout for this goroutine + goroutineCtx, cancel := context.WithTimeout(ctx, timeout) + defer cancel() - // Create a new context with a timeout for this goroutine - goroutineCtx, cancel := context.WithTimeout(ctx, timeout) - defer cancel() + timestamp := time.Now().UTC().Format(time.RFC3339) + signature, err := task.service.pastelHandler.PastelClient.Sign(ctx, []byte(timestamp), task.Request.PastelID, task.Request.PastelIDPassphrase, pastel.SignAlgorithmED448) + if err != nil { + log.WithContext(ctx).WithError(err).WithField("txid", task.Request.Txid).WithField("timestamp", timestamp).WithField("pastelid", task.Request.PastelID).Error("Could not sign timestamp") + errChan <- err + } - timestamp := time.Now().UTC().Format(time.RFC3339) - signature, err := task.service.pastelHandler.PastelClient.Sign(ctx, []byte(timestamp), task.Request.PastelID, task.Request.PastelIDPassphrase, pastel.SignAlgorithmED448) - if err != nil { - log.WithContext(ctx).WithError(err).WithField("txid", task.Request.Txid).WithField("timestamp", timestamp).WithField("pastelid", task.Request.PastelID).Error("Could not sign timestamp") - errChan <- err + log.WithContext(ctx).WithField("address", someNode.String()).WithField("txid", txid).Info("Downloading from supernode") + file, subErr := nftDownNode.Download(goroutineCtx, txid, timestamp, string(signature), ttxid, ttype, task.Request.HashOnly) + if subErr != nil || len(file) == 0 { + if subErr == nil { + subErr = errors.New("empty file") } - log.WithContext(ctx).WithField("address", someNode.String()).WithField("txid", txid).Info("Downloading from supernode") - file, subErr := nftDownNode.Download(goroutineCtx, txid, timestamp, string(signature), ttxid, ttype, task.Request.HashOnly) - if subErr != nil || len(file) == 0 { - if subErr == nil { - subErr = errors.New("empty file") - } - - if !strings.Contains(subErr.Error(), "context canceled") { - log.WithContext(ctx).WithField("address", someNode.String()).WithField("txid", txid).WithError(subErr).Error("Could not download from supernode") - - func() { - badMtx.Lock() - defer badMtx.Unlock() - - badNodes = append(badNodes, someNode.PastelID()) - }() - } - errChan <- subErr - } else { - log.WithContext(ctx).WithField("address", someNode.String()).WithField("txid", txid).WithField("len", len(file)).Info("Downloaded from supernode") + if !strings.Contains(subErr.Error(), "context canceled") { + log.WithContext(ctx).WithField("address", someNode.String()).WithField("txid", txid).WithError(subErr).Error("Could not download from supernode") func() { - task.mtx.Lock() - defer task.mtx.Unlock() - task.files = append(task.files, downFile{file: file, pastelID: someNode.PastelID()}) - }() + badMtx.Lock() + defer badMtx.Unlock() - // Signal a successful download - successes <- struct{}{} + badNodes = append(badNodes, someNode.PastelID()) + }() } - }() - } - // Wait for 3 successful downloads, then cancel the context - go func() { - for i := 0; i < requiredSuccessfulCount; i++ { - select { - case <-successes: - case <-ctx.Done(): - return - } + errChan <- subErr + } else { + log.WithContext(ctx).WithField("address", someNode.String()).WithField("txid", txid).WithField("len", len(file)).Info("Downloaded from supernode") + + func() { + task.mtx.Lock() + defer task.mtx.Unlock() + task.files = append(task.files, downFile{file: file, pastelID: someNode.PastelID()}) + }() + + return nil, badNodes, nil } - cancel() - }() - wg.Wait() + } close(errChan) @@ -299,16 +270,13 @@ func (task *NftDownloadingTask) MatchFiles() (int, []string, error) { log.Debugf("file of node %s - content: %q", task.files[i].pastelID, task.files[i].file) for j := 0; j < len(task.files); j++ { - if i == j { - continue - } if bytes.Equal(task.files[i].file, task.files[j].file) { matches++ } } - if matches >= 2 { + if matches >= requiredSuccessfulCount { return i, badNodes, nil }