From 02eb3ea0c9aa7f69076db34dce967e274dd26a94 Mon Sep 17 00:00:00 2001 From: JamesMurkin Date: Fri, 21 Aug 2026 16:47:06 +0100 Subject: [PATCH 1/3] Simplfy how requestor is set in scheduler - Don't set UserId on sequence generated by the scheduler, as this can have the wrong user in the case multiple events happen at once that could set the user - Probably we should make all sequences generated by scheduler have user id "armada-scheduler" or just left blank as now - Use Deref as it is neater Signed-off-by: JamesMurkin --- internal/scheduler/scheduler.go | 53 ++++++++------------------------- 1 file changed, 12 insertions(+), 41 deletions(-) diff --git a/internal/scheduler/scheduler.go b/internal/scheduler/scheduler.go index 8f1851b3d9c..77de1cb5e9c 100644 --- a/internal/scheduler/scheduler.go +++ b/internal/scheduler/scheduler.go @@ -15,6 +15,7 @@ import ( v1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/resource" "k8s.io/utils/clock" + "k8s.io/utils/ptr" "github.com/armadaproject/armada/internal/common/armadacontext" "github.com/armadaproject/armada/internal/common/constants" @@ -800,10 +801,7 @@ func AppendEventSequencesFromPreemptedJobs(eventSequences []*armadaevents.EventS if run == nil { return nil, errors.Errorf("attempting to generate preempted eventSequences for job %s with no associated runs", jctx.JobId) } - var requestor string - if requestorPtr := run.PreemptUser(); requestorPtr != nil { - requestor = *requestorPtr - } + requestor := ptr.Deref(run.PreemptUser(), "") eventSequences = append(eventSequences, &armadaevents.EventSequence{ Queue: jctx.Job.Queue(), JobSetName: jctx.Job.Jobset(), @@ -984,10 +982,7 @@ func AppendEventSequencesFromReconciliationFailureJobs(eventSequences []*armadae if run == nil { return nil, errors.Errorf("attempting to generate reconciliation preemption eventSequences for job %s with no associated runs", jobInfo.Job.Id()) } - var requestor string - if requestorPtr := run.PreemptUser(); requestorPtr != nil { - requestor = *requestorPtr - } + requestor := ptr.Deref(run.PreemptUser(), "") es := &armadaevents.EventSequence{ Queue: jobInfo.Job.Queue(), JobSetName: jobInfo.Job.Jobset(), @@ -1186,7 +1181,6 @@ func (s *Scheduler) buildQueueRetryPolicyMap(ctx *armadacontext.Context) map[str // If there are no state changes it returns nil. func (s *Scheduler) generateUpdateMessagesFromJob(ctx *armadacontext.Context, job *jobdb.Job, jobRunErrors map[string]*armadaevents.Error, queueRetryPolicies map[string]string, txn *jobdb.Txn) (*armadaevents.EventSequence, error) { var events []*armadaevents.EventSequence_Event - var sequenceUserId string // Is the job already in a terminal state? If so then don't send any more messages if job.InTerminalState() { @@ -1197,18 +1191,14 @@ func (s *Scheduler) generateUpdateMessagesFromJob(ctx *armadacontext.Context, jo if job.RequestedPriority() != job.Priority() { job = job.WithPriority(job.RequestedPriority()) - if reprioritiseUserPtr := job.ReprioritiseUser(); reprioritiseUserPtr != nil { - if sequenceUserId == "" { - sequenceUserId = *reprioritiseUserPtr - } - } + requestor := ptr.Deref(job.ReprioritiseUser(), "") jobReprioritised := &armadaevents.EventSequence_Event{ Created: s.now(), Event: &armadaevents.EventSequence_Event_ReprioritisedJob{ ReprioritisedJob: &armadaevents.ReprioritisedJob{ JobId: job.Id(), Priority: job.Priority(), - Requestor: sequenceUserId, + Requestor: requestor, }, }, } @@ -1217,13 +1207,7 @@ func (s *Scheduler) generateUpdateMessagesFromJob(ctx *armadacontext.Context, jo // Has the job been requested cancelled. If so, cancel the job if job.CancelRequested() { - var cancelUser string - if cancelUserPtr := job.CancelUser(); cancelUserPtr != nil { - cancelUser = *cancelUserPtr - } - if sequenceUserId == "" { - sequenceUserId = cancelUser - } + requestor := ptr.Deref(job.CancelUser(), "") var cancelReason string if cancelReasonPtr := job.CancelReason(); cancelReasonPtr != nil { cancelReason = *cancelReasonPtr @@ -1238,7 +1222,7 @@ func (s *Scheduler) generateUpdateMessagesFromJob(ctx *armadacontext.Context, jo JobRunCancelled: &armadaevents.JobRunCancelled{ RunId: lastRun.Id(), JobId: job.Id(), - Requestor: cancelUser, + Requestor: requestor, Reason: cancelReason, }, }, @@ -1250,20 +1234,14 @@ func (s *Scheduler) generateUpdateMessagesFromJob(ctx *armadacontext.Context, jo Event: &armadaevents.EventSequence_Event_CancelledJob{ CancelledJob: &armadaevents.CancelledJob{ JobId: job.Id(), - Requestor: cancelUser, + Requestor: requestor, }, }, } events = append(events, cancel) } else if job.CancelByJobsetRequested() { job = job.WithQueued(false).WithoutTerminal().WithCancelled(true) - var cancelUser string - if cancelUserPtr := job.CancelUser(); cancelUserPtr != nil { - cancelUser = *cancelUserPtr - } - if sequenceUserId == "" { - sequenceUserId = cancelUser - } + requestor := ptr.Deref(job.CancelUser(), "") var cancelReason string if cancelReasonPtr := job.CancelReason(); cancelReasonPtr != nil { cancelReason = *cancelReasonPtr @@ -1286,7 +1264,7 @@ func (s *Scheduler) generateUpdateMessagesFromJob(ctx *armadacontext.Context, jo JobRunCancelled: &armadaevents.JobRunCancelled{ RunId: lastRun.Id(), JobId: job.Id(), - Requestor: cancelUser, + Requestor: requestor, Reason: cancelReason, }, }, @@ -1298,7 +1276,7 @@ func (s *Scheduler) generateUpdateMessagesFromJob(ctx *armadacontext.Context, jo Event: &armadaevents.EventSequence_Event_CancelledJob{ CancelledJob: &armadaevents.CancelledJob{ JobId: job.Id(), - Requestor: cancelUser, + Requestor: requestor, }, }, } @@ -1499,13 +1477,7 @@ func (s *Scheduler) generateUpdateMessagesFromJob(ctx *armadacontext.Context, jo if lastRun.PreemptReason() != nil && *lastRun.PreemptReason() != "" { reason = *lastRun.PreemptReason() } - var requestor string - if requestorPtr := lastRun.PreemptUser(); requestorPtr != nil { - requestor = *requestorPtr - if sequenceUserId == "" { - sequenceUserId = requestor - } - } + requestor := ptr.Deref(lastRun.PreemptUser(), "") events = append(events, createEventsForPreemptedJob(job.Id(), lastRun.Id(), "", reason, requestor, s.clock.Now())...) s.metrics.ReportJobPreemptedWithType(job, schedulercontext.PreemptedViaApi) } @@ -1524,7 +1496,6 @@ func (s *Scheduler) generateUpdateMessagesFromJob(ctx *armadacontext.Context, jo return &armadaevents.EventSequence{ Queue: job.Queue(), JobSetName: job.Jobset(), - UserId: sequenceUserId, Events: events, }, nil } From dde87cbf19e6fb415d282fa0d56b3f20853c68ca Mon Sep 17 00:00:00 2001 From: JamesMurkin Date: Mon, 24 Aug 2026 12:15:56 +0100 Subject: [PATCH 2/3] Set requestor in CancelJob Signed-off-by: JamesMurkin --- internal/scheduler/scheduler.go | 6 +- internal/scheduler/scheduler_test.go | 12 +- .../server/event/conversion/conversions.go | 6 +- pkg/armadaevents/events.pb.go | 547 ++++++++++-------- pkg/armadaevents/events.proto | 1 + 5 files changed, 316 insertions(+), 256 deletions(-) diff --git a/internal/scheduler/scheduler.go b/internal/scheduler/scheduler.go index 77de1cb5e9c..6cfd1ae6cdb 100644 --- a/internal/scheduler/scheduler.go +++ b/internal/scheduler/scheduler.go @@ -1249,7 +1249,10 @@ func (s *Scheduler) generateUpdateMessagesFromJob(ctx *armadacontext.Context, jo cancelRequest := &armadaevents.EventSequence_Event{ Created: s.now(), Event: &armadaevents.EventSequence_Event_CancelJob{ - CancelJob: &armadaevents.CancelJob{JobId: job.Id()}, + CancelJob: &armadaevents.CancelJob{ + JobId: job.Id(), + Requestor: requestor, + }, }, } events = append(events, cancelRequest) @@ -1277,6 +1280,7 @@ func (s *Scheduler) generateUpdateMessagesFromJob(ctx *armadacontext.Context, jo CancelledJob: &armadaevents.CancelledJob{ JobId: job.Id(), Requestor: requestor, + Reason: cancelReason, }, }, } diff --git a/internal/scheduler/scheduler_test.go b/internal/scheduler/scheduler_test.go index 6fbacd2f217..20eb0f86359 100644 --- a/internal/scheduler/scheduler_test.go +++ b/internal/scheduler/scheduler_test.go @@ -1667,6 +1667,8 @@ func subtractEventsFromOutstandingEventsByType(eventSequences []*armadaevents.Ev requestor := eventSequence.UserId switch e := event.Event.(type) { + case *armadaevents.EventSequence_Event_CancelJob: + requestor = e.CancelJob.Requestor case *armadaevents.EventSequence_Event_CancelledJob: requestor = e.CancelledJob.Requestor case *armadaevents.EventSequence_Event_ReprioritisedJob: @@ -3155,7 +3157,6 @@ func TestCycleConsistency(t *testing.T) { { Queue: queuedJobA.Queue, JobSetName: queuedJobA.JobSet, - UserId: "cancel-user-a", Events: []*armadaevents.EventSequence_Event{ { Created: &types.Timestamp{}, @@ -3185,13 +3186,13 @@ func TestCycleConsistency(t *testing.T) { { Queue: queuedJobA.Queue, JobSetName: queuedJobA.JobSet, - UserId: "cancel-user-a", Events: []*armadaevents.EventSequence_Event{ { Created: &types.Timestamp{}, Event: &armadaevents.EventSequence_Event_CancelJob{ CancelJob: &armadaevents.CancelJob{ - JobId: queuedJobA.JobID, + JobId: queuedJobA.JobID, + Requestor: "cancel-user-a", }, }, }, @@ -3229,7 +3230,6 @@ func TestCycleConsistency(t *testing.T) { { Queue: queuedJobA.Queue, JobSetName: queuedJobA.JobSet, - UserId: "cancel-user-a", Events: []*armadaevents.EventSequence_Event{ { Created: &types.Timestamp{}, @@ -3275,13 +3275,13 @@ func TestCycleConsistency(t *testing.T) { { Queue: queuedJobA.Queue, JobSetName: queuedJobA.JobSet, - UserId: "cancel-user-a", Events: []*armadaevents.EventSequence_Event{ { Created: &types.Timestamp{}, Event: &armadaevents.EventSequence_Event_CancelJob{ CancelJob: &armadaevents.CancelJob{ - JobId: queuedJobA.JobID, + JobId: queuedJobA.JobID, + Requestor: "cancel-user-a", }, }, }, diff --git a/internal/server/event/conversion/conversions.go b/internal/server/event/conversion/conversions.go index 7993f3a0b0b..33de5a35203 100644 --- a/internal/server/event/conversion/conversions.go +++ b/internal/server/event/conversion/conversions.go @@ -129,6 +129,10 @@ func FromInternalPreemptionRequested(userId string, queueName string, jobSetName } func FromInternalCancel(userId string, queueName string, jobSetName string, time time.Time, e *armadaevents.CancelJob) ([]*api.EventMessage, error) { + requestor := userId + if e.Requestor != "" { + requestor = e.Requestor + } return []*api.EventMessage{ { Events: &api.EventMessage_Cancelling{ @@ -137,7 +141,7 @@ func FromInternalCancel(userId string, queueName string, jobSetName string, time JobSetId: jobSetName, Queue: queueName, Created: protoutil.ToTimestamp(time), - Requestor: userId, + Requestor: requestor, }, }, }, diff --git a/pkg/armadaevents/events.pb.go b/pkg/armadaevents/events.pb.go index 86499eef139..74c0dfc365c 100644 --- a/pkg/armadaevents/events.pb.go +++ b/pkg/armadaevents/events.pb.go @@ -1380,8 +1380,9 @@ func (m *ReprioritisedJob) GetRequestor() string { // This will cancel all runs (preempting it if running) for the job (i.e., move them to the failed state) // and then cancel job itself (i.e., move it to the failed state). type CancelJob struct { - Reason string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"` - JobId string `protobuf:"bytes,3,opt,name=job_id,json=jobId,proto3" json:"jobId,omitempty"` + Reason string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"` + JobId string `protobuf:"bytes,3,opt,name=job_id,json=jobId,proto3" json:"jobId,omitempty"` + Requestor string `protobuf:"bytes,4,opt,name=requestor,proto3" json:"requestor,omitempty"` } func (m *CancelJob) Reset() { *m = CancelJob{} } @@ -1431,6 +1432,13 @@ func (m *CancelJob) GetJobId() string { return "" } +func (m *CancelJob) GetRequestor() string { + if m != nil { + return m.Requestor + } + return "" +} + // Filter to be used when cancelling job sets // This allows users to cancel all jobs in a given state for a specific job set type JobSetFilter struct { @@ -3881,252 +3889,252 @@ func init() { func init() { proto.RegisterFile("pkg/armadaevents/events.proto", fileDescriptor_6aab92ca59e015f8) } var fileDescriptor_6aab92ca59e015f8 = []byte{ - // 3906 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3b, 0xcf, 0x6f, 0x1b, 0x47, - 0x77, 0x5e, 0xfe, 0xe6, 0xa3, 0x44, 0xd1, 0xa3, 0x1f, 0xa6, 0xf5, 0xc5, 0xa2, 0x4c, 0xa7, 0xdf, - 0x67, 0x07, 0xf9, 0x28, 0x7f, 0x4e, 0x5b, 0xe4, 0x4b, 0x8a, 0x04, 0xa2, 0x2d, 0xdb, 0x52, 0x2c, - 0x5b, 0xa6, 0xac, 0xd4, 0x2d, 0x02, 0x30, 0x4b, 0xee, 0x88, 0x5a, 0x8b, 0xdc, 0xdd, 0xec, 0x0f, - 0x45, 0x02, 0x02, 0x34, 0x29, 0xd2, 0x9e, 0x73, 0x29, 0x50, 0xe4, 0xd2, 0x5c, 0x72, 0x48, 0x81, - 0xa2, 0x87, 0xa2, 0x7f, 0x42, 0x81, 0x16, 0x28, 0x8a, 0xdc, 0x5a, 0xf4, 0x40, 0x14, 0x09, 0x7a, - 0xe1, 0xa1, 0xe8, 0xb9, 0xa7, 0x62, 0x7e, 0xec, 0xee, 0xcc, 0x72, 0x68, 0x51, 0x8e, 0xf5, 0x21, - 0x41, 0x4e, 0x12, 0xdf, 0xcf, 0x99, 0x79, 0x6f, 0xde, 0xbc, 0xf7, 0x66, 0x16, 0xae, 0x38, 0x87, - 0xbd, 0x35, 0xdd, 0x1d, 0xe8, 0x86, 0x8e, 0x8f, 0xb0, 0xe5, 0x7b, 0x6b, 0xec, 0x4f, 0xc3, 0x71, - 0x6d, 0xdf, 0x46, 0x33, 0x22, 0x6a, 0xb9, 0x7e, 0xf8, 0xa6, 0xd7, 0x30, 0xed, 0x35, 0xdd, 0x31, - 0xd7, 0xba, 0xb6, 0x8b, 0xd7, 0x8e, 0x7e, 0xb3, 0xd6, 0xc3, 0x16, 0x76, 0x75, 0x1f, 0x1b, 0x8c, - 0x63, 0xf9, 0xba, 0x40, 0x63, 0x61, 0xff, 0x63, 0xdb, 0x3d, 0x34, 0xad, 0x9e, 0x8a, 0xb2, 0xd6, - 0xb3, 0xed, 0x5e, 0x1f, 0xaf, 0xd1, 0x5f, 0x9d, 0x60, 0x7f, 0xcd, 0x37, 0x07, 0xd8, 0xf3, 0xf5, - 0x81, 0xc3, 0x09, 0x7e, 0x3f, 0x16, 0x35, 0xd0, 0xbb, 0x07, 0xa6, 0x85, 0xdd, 0x93, 0x35, 0x3a, - 0x5e, 0xc7, 0x5c, 0x73, 0xb1, 0x67, 0x07, 0x6e, 0x17, 0x8f, 0x89, 0x7d, 0xcb, 0xb4, 0x7c, 0xec, - 0x5a, 0x7a, 0x7f, 0xcd, 0xeb, 0x1e, 0x60, 0x23, 0xe8, 0x63, 0x37, 0xfe, 0xcf, 0xee, 0x3c, 0xc3, - 0x5d, 0xdf, 0x1b, 0x03, 0x30, 0xde, 0xfa, 0xff, 0x2e, 0xc1, 0xec, 0x06, 0x99, 0xeb, 0x2e, 0xfe, - 0x28, 0xc0, 0x56, 0x17, 0xa3, 0x1b, 0x90, 0xfd, 0x28, 0xc0, 0x01, 0xae, 0x6a, 0xab, 0xda, 0xf5, - 0x62, 0x73, 0x7e, 0x34, 0xac, 0xcd, 0x51, 0xc0, 0xeb, 0xf6, 0xc0, 0xf4, 0xf1, 0xc0, 0xf1, 0x4f, - 0x5a, 0x8c, 0x02, 0xbd, 0x05, 0x33, 0xcf, 0xec, 0x4e, 0xdb, 0xc3, 0x7e, 0xdb, 0xd2, 0x07, 0xb8, - 0x9a, 0xa2, 0x1c, 0xd5, 0xd1, 0xb0, 0xb6, 0xf0, 0xcc, 0xee, 0xec, 0x62, 0xff, 0xa1, 0x3e, 0x10, - 0xd9, 0x20, 0x86, 0xa2, 0x5f, 0x43, 0x3e, 0xf0, 0xb0, 0xdb, 0x36, 0x8d, 0x6a, 0x9a, 0xb2, 0x2d, - 0x8c, 0x86, 0xb5, 0x0a, 0x01, 0x6d, 0x1a, 0x02, 0x4b, 0x8e, 0x41, 0xd0, 0xeb, 0x90, 0xeb, 0xb9, - 0x76, 0xe0, 0x78, 0xd5, 0xcc, 0x6a, 0x3a, 0xa4, 0x66, 0x10, 0x91, 0x9a, 0x41, 0xd0, 0x23, 0xc8, - 0x31, 0x03, 0x56, 0xb3, 0xab, 0xe9, 0xeb, 0xa5, 0x5b, 0x57, 0x1b, 0xa2, 0x55, 0x1b, 0xd2, 0x84, - 0xd9, 0x2f, 0x26, 0x90, 0xe1, 0x45, 0x81, 0xdc, 0x0f, 0xfe, 0x65, 0x01, 0xb2, 0x94, 0x0e, 0xbd, - 0x07, 0xf9, 0xae, 0x8b, 0xc9, 0xea, 0x57, 0xd1, 0xaa, 0x76, 0xbd, 0x74, 0x6b, 0xb9, 0xc1, 0xac, - 0xda, 0x08, 0xad, 0xda, 0x78, 0x12, 0x5a, 0xb5, 0xb9, 0x38, 0x1a, 0xd6, 0x2e, 0x72, 0x72, 0x41, - 0x6a, 0x28, 0x01, 0xed, 0x40, 0xd1, 0x0b, 0x3a, 0x03, 0xd3, 0xdf, 0xb2, 0x3b, 0x74, 0xbd, 0x4b, - 0xb7, 0x2e, 0xc9, 0x43, 0xdd, 0x0d, 0xd1, 0xcd, 0x4b, 0xa3, 0x61, 0x6d, 0x3e, 0xa2, 0x8e, 0xa5, - 0xdd, 0xbf, 0xd0, 0x8a, 0x85, 0xa0, 0x03, 0x98, 0x73, 0xb1, 0xe3, 0x9a, 0xb6, 0x6b, 0xfa, 0xa6, - 0x87, 0x89, 0xdc, 0x14, 0x95, 0x7b, 0x45, 0x96, 0xdb, 0x92, 0x89, 0x9a, 0x57, 0x46, 0xc3, 0xda, - 0xe5, 0x04, 0xa7, 0xa4, 0x23, 0x29, 0x16, 0xf9, 0x80, 0x12, 0xa0, 0x5d, 0xec, 0x53, 0x5b, 0x96, - 0x6e, 0xad, 0x3e, 0x57, 0xd9, 0x2e, 0xf6, 0x9b, 0xab, 0xa3, 0x61, 0xed, 0x95, 0x71, 0x7e, 0x49, - 0xa5, 0x42, 0x3e, 0xea, 0x43, 0x45, 0x84, 0x1a, 0x64, 0x82, 0x19, 0xaa, 0x73, 0x65, 0xb2, 0x4e, - 0x42, 0xd5, 0x5c, 0x19, 0x0d, 0x6b, 0xcb, 0x49, 0x5e, 0x49, 0xdf, 0x98, 0x64, 0x62, 0x9f, 0xae, - 0x6e, 0x75, 0x71, 0x9f, 0xa8, 0xc9, 0xaa, 0xec, 0x73, 0x3b, 0x44, 0x33, 0xfb, 0x44, 0xd4, 0xb2, - 0x7d, 0x22, 0x30, 0xfa, 0x00, 0x66, 0xa2, 0x1f, 0x64, 0xbd, 0x72, 0xdc, 0x87, 0xd4, 0x42, 0xc9, - 0x4a, 0x2d, 0x8f, 0x86, 0xb5, 0x25, 0x91, 0x47, 0x12, 0x2d, 0x49, 0x8b, 0xa5, 0xf7, 0xd9, 0xca, - 0xe4, 0x27, 0x4b, 0x67, 0x14, 0xa2, 0xf4, 0xfe, 0xf8, 0x8a, 0x48, 0xd2, 0x88, 0x74, 0xb2, 0x81, - 0x83, 0x6e, 0x17, 0x63, 0x03, 0x1b, 0xd5, 0x82, 0x4a, 0xfa, 0x96, 0x40, 0xc1, 0xa4, 0x8b, 0x3c, - 0xb2, 0x74, 0x11, 0x43, 0xd6, 0xfa, 0x99, 0xdd, 0xd9, 0x70, 0x5d, 0xdb, 0xf5, 0xaa, 0x45, 0xd5, - 0x5a, 0x6f, 0x85, 0x68, 0xb6, 0xd6, 0x11, 0xb5, 0xbc, 0xd6, 0x11, 0x98, 0x8f, 0xb7, 0x15, 0x58, - 0x0f, 0xb0, 0xee, 0x61, 0xa3, 0x0a, 0x13, 0xc6, 0x1b, 0x51, 0x44, 0xe3, 0x8d, 0x20, 0x63, 0xe3, - 0x8d, 0x30, 0xc8, 0x80, 0x32, 0xfb, 0xbd, 0xee, 0x79, 0x66, 0xcf, 0xc2, 0x46, 0xb5, 0x44, 0xe5, - 0xbf, 0xa2, 0x92, 0x1f, 0xd2, 0x34, 0x5f, 0x19, 0x0d, 0x6b, 0x55, 0x99, 0x4f, 0xd2, 0x91, 0x90, - 0x89, 0x3e, 0x84, 0x59, 0x06, 0x69, 0x05, 0x96, 0x65, 0x5a, 0xbd, 0xea, 0x0c, 0x55, 0xf2, 0x0b, - 0x95, 0x12, 0x4e, 0xd2, 0xfc, 0xc5, 0x68, 0x58, 0xbb, 0x24, 0x71, 0x49, 0x2a, 0x64, 0x81, 0x24, - 0x62, 0x30, 0x40, 0x6c, 0xd8, 0x59, 0x55, 0xc4, 0xd8, 0x92, 0x89, 0x58, 0xc4, 0x48, 0x70, 0xca, - 0x11, 0x23, 0x81, 0x8c, 0xed, 0xc1, 0x8d, 0x5c, 0x9e, 0x6c, 0x0f, 0x6e, 0x67, 0xc1, 0x1e, 0x0a, - 0x53, 0x4b, 0xd2, 0xd0, 0xa7, 0x1a, 0x2c, 0x7a, 0xbe, 0x6e, 0x19, 0x7a, 0xdf, 0xb6, 0xf0, 0xa6, - 0xd5, 0x73, 0xb1, 0xe7, 0x6d, 0x5a, 0xfb, 0x76, 0xb5, 0x42, 0xf5, 0x5c, 0x4b, 0x04, 0x56, 0x15, - 0x69, 0xf3, 0xda, 0x68, 0x58, 0xab, 0x29, 0xa5, 0x48, 0x9a, 0xd5, 0x8a, 0xd0, 0x31, 0xcc, 0x87, - 0x87, 0xf4, 0x9e, 0x6f, 0xf6, 0x4d, 0x4f, 0xf7, 0x4d, 0xdb, 0xaa, 0x5e, 0xa4, 0xfa, 0xaf, 0x26, - 0xe3, 0xd3, 0x18, 0x61, 0xf3, 0xea, 0x68, 0x58, 0xbb, 0xa2, 0x90, 0x20, 0xe9, 0x56, 0xa9, 0x88, - 0x8d, 0xb8, 0xe3, 0x62, 0x42, 0x88, 0x8d, 0xea, 0xfc, 0x64, 0x23, 0x46, 0x44, 0xa2, 0x11, 0x23, - 0xa0, 0xca, 0x88, 0x11, 0x92, 0x68, 0x72, 0x74, 0xd7, 0x37, 0x89, 0xda, 0x6d, 0xdd, 0x3d, 0xc4, - 0x6e, 0x75, 0x41, 0xa5, 0x69, 0x47, 0x26, 0x62, 0x9a, 0x12, 0x9c, 0xb2, 0xa6, 0x04, 0x12, 0x7d, - 0xa1, 0x81, 0x3c, 0x34, 0xd3, 0xb6, 0x5a, 0xe4, 0xd0, 0xf6, 0xc8, 0xf4, 0x16, 0xa9, 0xd2, 0x5f, - 0x3d, 0x67, 0x7a, 0x22, 0x79, 0xf3, 0x57, 0xa3, 0x61, 0xed, 0xda, 0x44, 0x69, 0xd2, 0x40, 0x26, - 0x2b, 0x45, 0x4f, 0xa1, 0x44, 0x90, 0x98, 0xa6, 0x3f, 0x46, 0x75, 0x89, 0x8e, 0xe1, 0xf2, 0xf8, - 0x18, 0x38, 0x41, 0xf3, 0xf2, 0x68, 0x58, 0x5b, 0x14, 0x38, 0x24, 0x3d, 0xa2, 0x28, 0xf4, 0xb9, - 0x06, 0xc4, 0xd1, 0x55, 0x33, 0xbd, 0x44, 0xb5, 0xbc, 0x3a, 0xa6, 0x45, 0x35, 0xcd, 0x57, 0x47, - 0xc3, 0xda, 0xaa, 0x5a, 0x8e, 0xa4, 0x7b, 0x82, 0xae, 0xd8, 0x8f, 0xa2, 0x43, 0xa2, 0x5a, 0x9d, - 0xec, 0x47, 0x11, 0x91, 0xe8, 0x47, 0x11, 0x50, 0xe5, 0x47, 0x11, 0x92, 0x07, 0x83, 0xf7, 0xf5, - 0xbe, 0x69, 0xd0, 0x64, 0xea, 0xf2, 0x84, 0x60, 0x10, 0x51, 0x44, 0xc1, 0x20, 0x82, 0x8c, 0x05, - 0x83, 0x08, 0x23, 0xf8, 0xce, 0x13, 0xec, 0x0e, 0x4c, 0x8b, 0x00, 0xef, 0xe0, 0x4e, 0xd0, 0xa3, - 0x01, 0x61, 0x79, 0xb2, 0xef, 0x28, 0xc8, 0x45, 0xdf, 0x51, 0xa0, 0x55, 0xbe, 0xa3, 0x92, 0x92, - 0x87, 0x2c, 0xd5, 0x54, 0xff, 0xb2, 0x08, 0xf3, 0x8a, 0xdd, 0x8f, 0x30, 0xcc, 0x86, 0x5b, 0xbb, - 0x6d, 0x92, 0x61, 0xa6, 0x55, 0x86, 0x7f, 0x2f, 0xe8, 0x60, 0xd7, 0xc2, 0x3e, 0xf6, 0x42, 0x19, - 0x54, 0x3a, 0x5d, 0x1c, 0x57, 0x80, 0x08, 0xe9, 0xe6, 0x8c, 0x08, 0x47, 0x5f, 0x6a, 0x50, 0x1d, - 0xe8, 0xc7, 0xed, 0x10, 0xe8, 0xb5, 0xf7, 0x6d, 0xb7, 0xed, 0x60, 0xd7, 0xb4, 0x0d, 0x9a, 0x5c, - 0x97, 0x6e, 0xfd, 0xd1, 0xa9, 0xa1, 0xaa, 0xb1, 0xad, 0x1f, 0x87, 0x60, 0xef, 0xae, 0xed, 0xee, - 0x50, 0xf6, 0x0d, 0xcb, 0x77, 0x4f, 0x58, 0x0c, 0x1d, 0xa8, 0xf0, 0xc2, 0x98, 0x16, 0x95, 0x04, - 0xe8, 0xaf, 0x34, 0x58, 0xf2, 0x6d, 0x5f, 0xef, 0xb7, 0xbb, 0xc1, 0x20, 0xe8, 0xeb, 0xbe, 0x79, - 0x84, 0xdb, 0x81, 0xa7, 0xf7, 0x30, 0xcf, 0xe4, 0xdf, 0x3e, 0x7d, 0x68, 0x4f, 0x08, 0xff, 0xed, - 0x88, 0x7d, 0x8f, 0x70, 0xb3, 0x91, 0xd5, 0x47, 0xc3, 0xda, 0x8a, 0xaf, 0x40, 0x0b, 0x03, 0x5b, - 0x50, 0xe1, 0xd1, 0x6b, 0x90, 0x23, 0x95, 0x8e, 0x69, 0xd0, 0x84, 0x8d, 0x57, 0x45, 0xcf, 0xec, - 0x8e, 0x54, 0xab, 0x64, 0x29, 0x80, 0xd0, 0xba, 0x81, 0x45, 0x68, 0xf3, 0x31, 0xad, 0x1b, 0x58, - 0x32, 0x2d, 0x05, 0x50, 0x63, 0xe8, 0x47, 0x3d, 0xb5, 0x31, 0x0a, 0xd3, 0x1a, 0x63, 0xfd, 0xa8, - 0xf7, 0x5c, 0x63, 0xe8, 0x2a, 0xbc, 0x68, 0x0c, 0x25, 0xc1, 0xf2, 0x57, 0x1a, 0x2c, 0x4f, 0xb6, - 0x33, 0xba, 0x06, 0xe9, 0x43, 0x7c, 0xc2, 0xcb, 0xc4, 0x8b, 0xa3, 0x61, 0x6d, 0xf6, 0x10, 0x9f, - 0x08, 0x52, 0x09, 0x16, 0xfd, 0x09, 0x64, 0x8f, 0xf4, 0x7e, 0x80, 0x79, 0x15, 0xd2, 0x68, 0xb0, - 0x0a, 0xb7, 0x21, 0x56, 0xb8, 0x0d, 0xe7, 0xb0, 0x47, 0x00, 0x8d, 0x70, 0x15, 0x1a, 0x8f, 0x03, - 0xdd, 0xf2, 0x4d, 0xff, 0x84, 0xad, 0x1d, 0x15, 0x20, 0xae, 0x1d, 0x05, 0xbc, 0x95, 0x7a, 0x53, - 0x5b, 0xfe, 0x1b, 0x0d, 0x2e, 0x4f, 0xb4, 0xf7, 0x8f, 0x62, 0x84, 0x64, 0x11, 0x27, 0xdb, 0xe7, - 0xc7, 0x30, 0xc4, 0xad, 0x4c, 0x41, 0xab, 0xa4, 0xb6, 0x32, 0x85, 0x54, 0x25, 0x5d, 0xff, 0xbf, - 0x1c, 0x14, 0xa3, 0x9a, 0x13, 0xdd, 0x87, 0x8a, 0x81, 0x8d, 0xc0, 0xe9, 0x9b, 0x5d, 0xea, 0x69, - 0xc4, 0xa9, 0x59, 0x91, 0x4f, 0x03, 0xbe, 0x84, 0x93, 0xdc, 0x7b, 0x2e, 0x81, 0x42, 0xb7, 0xa0, - 0xc0, 0x6b, 0xab, 0x13, 0x1a, 0xd7, 0x66, 0x9b, 0x4b, 0xa3, 0x61, 0x0d, 0x85, 0x30, 0x81, 0x35, - 0xa2, 0x43, 0x2d, 0x00, 0xd6, 0xac, 0xd8, 0xc6, 0xbe, 0xce, 0xab, 0xbc, 0xaa, 0xbc, 0x1b, 0x1e, - 0x45, 0x78, 0xd6, 0x76, 0x88, 0xe9, 0xc5, 0xb6, 0x43, 0x0c, 0x45, 0x1f, 0x00, 0x0c, 0x74, 0xd3, - 0x62, 0x7c, 0xbc, 0xa4, 0xab, 0x4f, 0x8a, 0xb0, 0xdb, 0x11, 0x25, 0x93, 0x1e, 0x73, 0x8a, 0xd2, - 0x63, 0x28, 0x7a, 0x04, 0x79, 0xde, 0x5e, 0xa9, 0xe6, 0xe8, 0xe6, 0x5d, 0x99, 0x24, 0x9a, 0x8b, - 0xa5, 0x0d, 0x02, 0xce, 0x22, 0x36, 0x08, 0x38, 0x88, 0x2c, 0x5b, 0xdf, 0xdc, 0xc7, 0xbe, 0x39, - 0xc0, 0x34, 0x9a, 0xf0, 0x65, 0x0b, 0x61, 0xe2, 0xb2, 0x85, 0x30, 0xf4, 0x26, 0x80, 0xee, 0x6f, - 0xdb, 0x9e, 0xff, 0xc8, 0xea, 0x62, 0x5a, 0xa4, 0x15, 0xd8, 0xf0, 0x63, 0xa8, 0x38, 0xfc, 0x18, - 0x8a, 0xde, 0x86, 0x92, 0xc3, 0x93, 0x82, 0x4e, 0x1f, 0xd3, 0x22, 0xac, 0xc0, 0x72, 0x18, 0x01, - 0x2c, 0xf0, 0x8a, 0xd4, 0xe8, 0x1e, 0xcc, 0x75, 0x6d, 0xab, 0x1b, 0xb8, 0x2e, 0xb6, 0xba, 0x27, - 0xbb, 0xfa, 0x3e, 0xa6, 0x05, 0x57, 0x81, 0xb9, 0x4a, 0x02, 0x25, 0xba, 0x4a, 0x02, 0x85, 0xfe, - 0x00, 0x8a, 0x51, 0xb3, 0x8a, 0xd6, 0x54, 0x45, 0xde, 0xfb, 0x08, 0x81, 0x02, 0x73, 0x4c, 0x49, - 0x06, 0x6f, 0x7a, 0x77, 0xb8, 0xd3, 0x61, 0x5a, 0x27, 0xf1, 0xc1, 0x0b, 0x60, 0x71, 0xf0, 0x02, - 0x58, 0x88, 0xef, 0xe5, 0x53, 0xe3, 0xfb, 0x5d, 0xa8, 0xe0, 0x63, 0xd6, 0x70, 0x6b, 0x13, 0xa6, - 0xc0, 0x35, 0x69, 0x89, 0x51, 0x64, 0xc5, 0x5d, 0x88, 0xdb, 0xb2, 0x3b, 0x7b, 0xae, 0x29, 0xb0, - 0x97, 0x65, 0x4c, 0xb4, 0xed, 0x66, 0x2b, 0xe5, 0xad, 0x4c, 0x61, 0xae, 0x52, 0xa9, 0xff, 0xab, - 0x06, 0x0b, 0x2a, 0xef, 0x4b, 0xec, 0x04, 0xed, 0xa5, 0xec, 0x84, 0xf7, 0xa1, 0xe0, 0xd8, 0x46, - 0xdb, 0x73, 0x70, 0x97, 0xc7, 0x95, 0xc4, 0x3e, 0xd8, 0xb1, 0x8d, 0x5d, 0x07, 0x77, 0xff, 0xd8, - 0xf4, 0x0f, 0xd6, 0x8f, 0x6c, 0xd3, 0x78, 0x60, 0x7a, 0xdc, 0x61, 0x1d, 0x86, 0x91, 0x32, 0x9f, - 0x3c, 0x07, 0x36, 0x0b, 0x90, 0x63, 0x5a, 0xea, 0xff, 0x96, 0x86, 0x4a, 0xd2, 0xe3, 0x7f, 0x4a, - 0x53, 0x41, 0x4f, 0x21, 0x6f, 0xb2, 0xf2, 0x8e, 0xe7, 0x62, 0xbf, 0x27, 0x44, 0xde, 0x46, 0xdc, - 0xeb, 0x6d, 0x1c, 0xfd, 0xa6, 0xc1, 0xeb, 0x40, 0xba, 0x04, 0x54, 0x32, 0xe7, 0x94, 0x25, 0x73, - 0x20, 0x6a, 0x41, 0xde, 0xc3, 0xee, 0x91, 0xd9, 0xc5, 0x3c, 0xae, 0xd5, 0x44, 0xc9, 0x5d, 0xdb, - 0xc5, 0x44, 0xe6, 0x2e, 0x23, 0x89, 0x65, 0x72, 0x1e, 0x59, 0x26, 0x07, 0xa2, 0xf7, 0xa1, 0xd8, - 0xb5, 0xad, 0x7d, 0xb3, 0xb7, 0xad, 0x3b, 0x3c, 0xb2, 0x5d, 0x51, 0x49, 0xbd, 0x1d, 0x12, 0xf1, - 0x96, 0x55, 0xf8, 0x33, 0xd1, 0xb2, 0x8a, 0xa8, 0x62, 0x83, 0xfe, 0x4f, 0x06, 0x20, 0x36, 0x0e, - 0xfa, 0x2d, 0x94, 0xf0, 0x31, 0xee, 0x06, 0xbe, 0x4d, 0xdb, 0xb8, 0x5a, 0xdc, 0xfd, 0x0d, 0xc1, - 0xd2, 0xf6, 0x81, 0x18, 0x4a, 0xf6, 0xb8, 0xa5, 0x0f, 0xb0, 0xe7, 0xe8, 0xdd, 0xb0, 0x6d, 0x4c, - 0x07, 0x13, 0x01, 0xc5, 0x3d, 0x1e, 0x01, 0xd1, 0x2f, 0x21, 0x43, 0x1b, 0xcd, 0xac, 0x63, 0x8c, - 0x46, 0xc3, 0x5a, 0xd9, 0x92, 0x5b, 0xcc, 0x14, 0x8f, 0xde, 0x85, 0xd9, 0xc3, 0xc8, 0xf1, 0xc8, - 0xd8, 0x32, 0x94, 0x81, 0x26, 0xc9, 0x31, 0x42, 0x1a, 0xdd, 0x8c, 0x08, 0x47, 0xfb, 0x50, 0xd2, - 0x2d, 0xcb, 0xf6, 0xe9, 0xf1, 0x15, 0x76, 0x91, 0x6f, 0x4c, 0x72, 0xd3, 0xc6, 0x7a, 0x4c, 0xcb, - 0xd2, 0x2e, 0x1a, 0x77, 0x04, 0x09, 0x62, 0xdc, 0x11, 0xc0, 0xa8, 0x05, 0xb9, 0xbe, 0xde, 0xc1, - 0xfd, 0xf0, 0xbc, 0x78, 0x75, 0xa2, 0x8a, 0x07, 0x94, 0x8c, 0x49, 0xa7, 0xbd, 0x6a, 0xc6, 0x27, - 0xf6, 0xaa, 0x19, 0x64, 0x79, 0x1f, 0x2a, 0xc9, 0xf1, 0x4c, 0x97, 0x66, 0xdc, 0x10, 0xd3, 0x8c, - 0xe2, 0xa9, 0x99, 0x8d, 0x0e, 0x25, 0x61, 0x50, 0xe7, 0xa1, 0xa2, 0xfe, 0x8d, 0x06, 0x0b, 0xaa, - 0xbd, 0x8b, 0xb6, 0x85, 0x1d, 0xaf, 0xf1, 0x8e, 0x98, 0xc2, 0xd5, 0x39, 0xef, 0x84, 0xad, 0x1e, - 0x6f, 0xf4, 0x26, 0x94, 0x2d, 0xdb, 0xc0, 0x6d, 0x9d, 0x28, 0xe8, 0x9b, 0x9e, 0x5f, 0x4d, 0xd1, - 0x5b, 0x06, 0xda, 0x49, 0x23, 0x98, 0xf5, 0x10, 0x21, 0x70, 0xcf, 0x4a, 0x88, 0xfa, 0xc7, 0x30, - 0x97, 0xe8, 0x73, 0x4b, 0x49, 0x4f, 0x6a, 0xca, 0xa4, 0x27, 0x3e, 0x89, 0xd2, 0xa7, 0x9d, 0x44, - 0xec, 0x04, 0xa9, 0xff, 0x45, 0x0a, 0x4a, 0x42, 0xd3, 0x01, 0x3d, 0x83, 0x39, 0x7e, 0x2a, 0x9a, - 0x56, 0x8f, 0x55, 0x92, 0x29, 0xde, 0x01, 0x1b, 0xbb, 0x04, 0xda, 0xb2, 0x3b, 0xbb, 0x11, 0x2d, - 0x2d, 0x24, 0xe9, 0x19, 0xe6, 0x49, 0x30, 0xf1, 0x0c, 0x93, 0x31, 0xe8, 0x29, 0x2c, 0x05, 0x0e, - 0x29, 0xb9, 0xdb, 0x1e, 0xbf, 0x4e, 0x69, 0x5b, 0xc1, 0xa0, 0x83, 0x5d, 0x3a, 0xfa, 0x2c, 0xab, - 0xb8, 0x18, 0x45, 0x78, 0xdf, 0xf2, 0x90, 0xe2, 0xc5, 0x8a, 0x4b, 0x85, 0x17, 0xd6, 0x21, 0x33, - 0xe5, 0x3a, 0xdc, 0x07, 0x34, 0x7e, 0xd1, 0x20, 0xd9, 0x40, 0x9b, 0xce, 0x06, 0xf5, 0xbf, 0xd7, - 0xa0, 0x92, 0xbc, 0x3f, 0x38, 0x6f, 0x63, 0x92, 0x90, 0xe8, 0xb2, 0x3e, 0x8c, 0xed, 0xf2, 0x39, - 0xd3, 0x90, 0x18, 0x01, 0xc5, 0x90, 0x18, 0x01, 0xf9, 0xdc, 0x0f, 0xa1, 0x18, 0x5d, 0x1a, 0xa0, - 0xd7, 0x21, 0xe7, 0x62, 0xdd, 0xb3, 0x2d, 0xbe, 0xcb, 0x68, 0xb8, 0x60, 0x10, 0x31, 0x5c, 0x30, - 0xc8, 0x0b, 0x38, 0xdc, 0x13, 0x98, 0x61, 0x8b, 0x7b, 0xd7, 0xec, 0xfb, 0xd8, 0x45, 0x77, 0x20, - 0xe7, 0xf9, 0xba, 0x8f, 0xbd, 0xaa, 0xb6, 0x9a, 0xbe, 0x5e, 0xbe, 0xb5, 0x34, 0x7e, 0x23, 0x40, - 0xd0, 0x6c, 0x1c, 0x8c, 0x52, 0x1c, 0x07, 0x83, 0xd4, 0xff, 0x5c, 0x83, 0x19, 0xf1, 0xe2, 0xe3, - 0xe5, 0x88, 0x3d, 0xdb, 0x62, 0xd4, 0xbf, 0x8e, 0x06, 0xc1, 0xef, 0x3c, 0xce, 0x6d, 0x2d, 0x7f, - 0x98, 0xbd, 0xbf, 0xd1, 0x98, 0x0d, 0xa2, 0xde, 0x7a, 0x2f, 0x6e, 0x1e, 0x91, 0x8d, 0xe9, 0xd1, - 0x00, 0x36, 0x6d, 0xf3, 0x88, 0x86, 0x39, 0x89, 0x5d, 0x0c, 0x73, 0x12, 0xe2, 0x05, 0xdc, 0xe5, - 0xab, 0x2c, 0x1d, 0x6b, 0x7c, 0x73, 0x92, 0xc8, 0x1b, 0xd2, 0x67, 0xc8, 0x1b, 0x7e, 0x0d, 0x79, - 0x1a, 0xa8, 0xa3, 0xb0, 0x40, 0xed, 0x41, 0x40, 0xf2, 0xad, 0x31, 0x83, 0x3c, 0x27, 0x3c, 0x65, - 0x7f, 0x60, 0x78, 0x6a, 0xc3, 0xe5, 0x03, 0xdd, 0x6b, 0x87, 0x01, 0xd5, 0x68, 0xeb, 0x7e, 0x3b, - 0x0a, 0x0f, 0x39, 0x5a, 0x7b, 0xd0, 0x5e, 0xec, 0x81, 0xee, 0xed, 0x86, 0x34, 0xeb, 0xfe, 0xce, - 0x78, 0xb0, 0x58, 0x52, 0x53, 0xa0, 0x3d, 0x58, 0x54, 0x0b, 0xcf, 0xd3, 0x91, 0xd3, 0xab, 0x02, - 0xef, 0xb9, 0x92, 0xe7, 0x15, 0x68, 0xf4, 0x99, 0x06, 0x55, 0x72, 0x72, 0x12, 0x87, 0x32, 0x5d, - 0x3c, 0x20, 0x6e, 0xd1, 0xb6, 0x8f, 0xb0, 0xdb, 0xd7, 0x4f, 0xf8, 0xad, 0xdb, 0xd5, 0xf1, 0x63, - 0x62, 0xc7, 0x36, 0x5a, 0x02, 0x03, 0x9b, 0x9a, 0x23, 0x03, 0x1f, 0x31, 0x21, 0xe2, 0xd4, 0xd4, - 0x14, 0x82, 0x0b, 0xc1, 0x19, 0x9a, 0x69, 0xa5, 0x53, 0x9b, 0x69, 0xbf, 0x84, 0x8c, 0x63, 0xdb, - 0x7d, 0x5a, 0xfa, 0xf1, 0xec, 0x90, 0xfc, 0x16, 0xb3, 0x43, 0xf2, 0x5b, 0xec, 0x77, 0x6c, 0x65, - 0x0a, 0x85, 0x4a, 0x91, 0x1c, 0xa1, 0x65, 0xf9, 0xa2, 0x6e, 0x7c, 0x43, 0xa5, 0xcf, 0x7d, 0x43, - 0x65, 0xce, 0xb0, 0x1a, 0xd9, 0xa9, 0x57, 0x23, 0x37, 0xfd, 0x6a, 0xd4, 0x3f, 0x4f, 0xc1, 0xac, - 0x74, 0x97, 0xf8, 0xf3, 0x5c, 0x86, 0xbf, 0x4e, 0xc1, 0x92, 0x7a, 0x4a, 0xe7, 0x52, 0xbe, 0xde, - 0x07, 0x92, 0x88, 0x6e, 0xc6, 0x89, 0xda, 0xe2, 0x58, 0xf5, 0x4a, 0x97, 0x33, 0xcc, 0x62, 0xc7, - 0x6e, 0x1d, 0x42, 0x76, 0xf4, 0x14, 0x4a, 0xa6, 0x70, 0xf1, 0x99, 0x56, 0xdd, 0x4f, 0x89, 0xd7, - 0x9d, 0xac, 0x3d, 0x32, 0xe1, 0x92, 0x53, 0x14, 0xd5, 0xcc, 0x41, 0x86, 0x64, 0x92, 0xf5, 0x23, - 0xc8, 0xf3, 0xe1, 0xa0, 0x37, 0xa0, 0x48, 0x63, 0x31, 0xad, 0xc8, 0x58, 0xda, 0x4f, 0x33, 0x22, - 0x02, 0x4c, 0x3c, 0xfc, 0x29, 0x84, 0x30, 0xf4, 0x87, 0x00, 0x24, 0xfc, 0xf0, 0x28, 0x9c, 0xa2, - 0xb1, 0x8c, 0x1e, 0x7b, 0x8e, 0x6d, 0x8c, 0x85, 0xde, 0x62, 0x04, 0xac, 0xff, 0x5d, 0x0a, 0x4a, - 0xe2, 0x55, 0xeb, 0x0b, 0x29, 0xff, 0x04, 0xc2, 0xaa, 0xbc, 0xad, 0x1b, 0x06, 0xf9, 0x8b, 0xc3, - 0x83, 0x72, 0x6d, 0xe2, 0x22, 0x85, 0xff, 0xaf, 0x87, 0x1c, 0xac, 0x06, 0xa3, 0xcf, 0x49, 0xcc, - 0x04, 0x4a, 0xd0, 0x5a, 0x49, 0xe2, 0x96, 0x0f, 0x61, 0x51, 0x29, 0x4a, 0xac, 0x9c, 0xb2, 0x2f, - 0xab, 0x72, 0xfa, 0x3a, 0x0b, 0x8b, 0xca, 0x2b, 0xee, 0x84, 0x07, 0xa7, 0x5f, 0x8a, 0x07, 0xff, - 0xa5, 0xa6, 0x5a, 0x59, 0x76, 0x99, 0xf4, 0xdb, 0x29, 0xee, 0xdd, 0x5f, 0xd6, 0x1a, 0xcb, 0x6e, - 0x91, 0x7d, 0x21, 0x9f, 0xcc, 0x4d, 0xeb, 0x93, 0xe8, 0x26, 0x2b, 0x42, 0xa9, 0x2e, 0x76, 0xd5, - 0x13, 0xee, 0xd0, 0x84, 0xaa, 0x3c, 0x07, 0xa1, 0x77, 0x61, 0x36, 0xe4, 0x60, 0xad, 0x8f, 0x42, - 0xdc, 0x97, 0xe0, 0x34, 0xc9, 0xee, 0xc7, 0x8c, 0x08, 0x17, 0xa2, 0x64, 0xf1, 0x0c, 0x51, 0x12, - 0x4e, 0x8b, 0x92, 0xbf, 0x53, 0xdf, 0x94, 0x42, 0xed, 0x50, 0x83, 0xb9, 0xc4, 0xcb, 0x92, 0x9f, - 0xfc, 0x99, 0x23, 0x4d, 0xf0, 0x53, 0x0d, 0x8a, 0xd1, 0xc3, 0x25, 0xb4, 0x0e, 0x39, 0xcc, 0x1e, - 0xbf, 0xb0, 0xb0, 0x33, 0x9f, 0x78, 0x98, 0x48, 0x70, 0xfc, 0x29, 0x62, 0xe2, 0xbd, 0x4b, 0x8b, - 0x33, 0xbe, 0x40, 0x02, 0xfe, 0x8f, 0x5a, 0x98, 0x80, 0x8f, 0x8d, 0x22, 0xfd, 0xc3, 0x47, 0x71, - 0x7e, 0x4b, 0xf7, 0x4f, 0x25, 0xc8, 0xd2, 0xb1, 0x90, 0xda, 0xdb, 0x67, 0x57, 0xea, 0x7d, 0xea, - 0x8a, 0x05, 0xb6, 0xab, 0x43, 0x98, 0xb8, 0xab, 0x43, 0x18, 0x3a, 0x80, 0xb9, 0xb8, 0xa5, 0x47, - 0xc5, 0xa8, 0x5f, 0x42, 0xbe, 0x27, 0x13, 0xb1, 0xeb, 0x8a, 0x04, 0xa7, 0xfc, 0x94, 0x21, 0x81, - 0x44, 0x06, 0x94, 0xbb, 0xb6, 0xe5, 0xeb, 0xa6, 0x85, 0x5d, 0xa6, 0x28, 0xad, 0x7a, 0x09, 0x76, - 0x5b, 0xa2, 0x61, 0x8d, 0x16, 0x99, 0x4f, 0x7e, 0x09, 0x26, 0xe3, 0xd0, 0x87, 0x30, 0x1b, 0x16, - 0x42, 0x4c, 0x49, 0x46, 0xf5, 0x12, 0x6c, 0x43, 0x24, 0x61, 0x9b, 0x41, 0xe2, 0x92, 0x5f, 0x82, - 0x49, 0x28, 0xf4, 0x01, 0xcc, 0xf4, 0x49, 0x85, 0xb6, 0x71, 0xec, 0x98, 0x2e, 0x36, 0xd4, 0x6f, - 0x13, 0x1f, 0x08, 0x14, 0x2c, 0x70, 0x89, 0x3c, 0xf2, 0x93, 0x0c, 0x11, 0x43, 0xec, 0x31, 0xd0, - 0x8f, 0x5b, 0x81, 0xe5, 0x6d, 0x1c, 0xf3, 0x77, 0x66, 0x79, 0x95, 0x3d, 0xb6, 0x65, 0x22, 0x66, - 0x8f, 0x04, 0xa7, 0x6c, 0x8f, 0x04, 0x12, 0x3d, 0xa0, 0x71, 0x99, 0x2d, 0x12, 0x7b, 0xa3, 0xb8, - 0x34, 0x96, 0x50, 0xb1, 0xf5, 0x61, 0x1d, 0x1c, 0xfe, 0x4b, 0x12, 0x1a, 0x49, 0x40, 0x7d, 0xa8, - 0x38, 0xb6, 0x41, 0xa7, 0xdd, 0xc2, 0x7e, 0xe0, 0x5a, 0xd8, 0xe0, 0x85, 0xd2, 0xca, 0x98, 0x54, - 0x89, 0x8a, 0x1d, 0x5f, 0x49, 0x5e, 0xf9, 0xc5, 0x69, 0x12, 0x8b, 0x3e, 0x81, 0x85, 0xc4, 0x8b, - 0x2b, 0x36, 0x8f, 0x92, 0xea, 0x5a, 0x63, 0x4b, 0x41, 0xc9, 0x6a, 0x5a, 0x95, 0x0c, 0x49, 0xb3, - 0x52, 0x0b, 0xd1, 0xde, 0xd3, 0xad, 0xde, 0x96, 0xdd, 0xd9, 0xb3, 0x78, 0x11, 0xa8, 0x77, 0xfa, - 0x98, 0x3f, 0x3a, 0x4c, 0x68, 0xbf, 0xa7, 0xa0, 0x64, 0xda, 0x55, 0x32, 0x64, 0xed, 0x2a, 0x8a, - 0xe8, 0x75, 0x15, 0x49, 0x2b, 0xa2, 0x57, 0x88, 0xaa, 0xd7, 0x55, 0x8c, 0x40, 0x78, 0x5d, 0xc5, - 0x00, 0x8a, 0xd7, 0x55, 0x0c, 0xc1, 0x1e, 0xe6, 0x75, 0x6d, 0xab, 0x6b, 0xf6, 0x4d, 0xda, 0x16, - 0x67, 0x8b, 0x5a, 0x56, 0x3f, 0xcc, 0x1b, 0x23, 0x0c, 0x1f, 0xe6, 0x8d, 0x21, 0x92, 0x0f, 0xf3, - 0xc6, 0x08, 0xd0, 0x7d, 0xa8, 0xec, 0xeb, 0x66, 0x3f, 0x70, 0x71, 0xbb, 0xab, 0xfb, 0xb8, 0x67, - 0xbb, 0x27, 0xfc, 0xb2, 0x90, 0xfa, 0x35, 0xc7, 0xdd, 0xe6, 0x28, 0xf1, 0x5a, 0x34, 0x81, 0x42, - 0x8f, 0x61, 0x3e, 0x94, 0xe4, 0x05, 0x9d, 0x48, 0xd8, 0x45, 0x2a, 0x8c, 0x3e, 0xa7, 0xe6, 0xe8, - 0xdd, 0x18, 0x2b, 0xc8, 0x43, 0xe3, 0x58, 0xb4, 0x09, 0x17, 0x5d, 0xec, 0xbb, 0x27, 0x6d, 0xc7, - 0xee, 0x9b, 0xdd, 0x13, 0x96, 0xc9, 0xa0, 0x78, 0x74, 0x14, 0xb9, 0x43, 0x71, 0x89, 0x8c, 0x66, - 0x2e, 0x81, 0x6a, 0x16, 0xc2, 0x3e, 0xd9, 0x56, 0xa6, 0x90, 0xad, 0xe4, 0xb6, 0x32, 0x05, 0xa8, - 0x94, 0xf8, 0xb5, 0xe6, 0x63, 0x98, 0x4b, 0x04, 0x59, 0xf4, 0x0e, 0x44, 0x8f, 0x92, 0x9e, 0x9c, - 0x38, 0x61, 0x06, 0x2f, 0x3d, 0x62, 0x22, 0x70, 0xd5, 0x23, 0x26, 0x02, 0xaf, 0x7f, 0x91, 0x81, - 0x42, 0xb8, 0x8b, 0xcf, 0xa5, 0x26, 0x5b, 0x83, 0xfc, 0x00, 0x7b, 0xf4, 0xe1, 0x51, 0x2a, 0x4e, - 0xed, 0x38, 0x48, 0x4c, 0xed, 0x38, 0x48, 0xce, 0x3c, 0xd3, 0x2f, 0x94, 0x79, 0x66, 0xa6, 0xce, - 0x3c, 0x31, 0xbd, 0x6b, 0x17, 0x4e, 0x87, 0xf0, 0x8a, 0xea, 0xf9, 0x47, 0x4e, 0x78, 0x13, 0x2f, - 0x32, 0x26, 0x6e, 0xe2, 0x45, 0x14, 0x3a, 0x84, 0x8b, 0xc2, 0x35, 0x1a, 0xef, 0x83, 0x92, 0x53, - 0xa1, 0x3c, 0xf9, 0x61, 0x43, 0x8b, 0x52, 0xb1, 0xd8, 0x77, 0x98, 0x80, 0x8a, 0xa9, 0x7b, 0x12, - 0x47, 0x5c, 0xc2, 0xc0, 0x9d, 0xa0, 0xb7, 0xcd, 0x97, 0x3d, 0x1f, 0xbb, 0x84, 0x08, 0x17, 0x5d, - 0x42, 0x84, 0xd7, 0xff, 0x3b, 0x05, 0x65, 0x79, 0xbe, 0xe7, 0xe2, 0x18, 0x6f, 0x40, 0x11, 0x1f, - 0x9b, 0x7e, 0xbb, 0x6b, 0x1b, 0x98, 0xd7, 0xaf, 0xd4, 0xce, 0x04, 0x78, 0xdb, 0x36, 0x24, 0x3b, - 0x87, 0x30, 0xd1, 0x9b, 0xd2, 0x53, 0x79, 0x53, 0xdc, 0x76, 0xce, 0x4c, 0xd1, 0x76, 0x56, 0xda, - 0xa9, 0x78, 0x3e, 0x76, 0xaa, 0x7f, 0x9b, 0x82, 0x4a, 0xf2, 0xa8, 0xfb, 0x71, 0x6c, 0x41, 0x79, - 0x37, 0xa5, 0xa7, 0xde, 0x4d, 0xef, 0xc2, 0x2c, 0xc9, 0x4f, 0x75, 0xdf, 0xe7, 0x4f, 0xa7, 0x33, - 0x34, 0xc5, 0x64, 0xd1, 0x28, 0xb0, 0xd6, 0x43, 0xb8, 0x14, 0x8d, 0x04, 0xf8, 0x98, 0xeb, 0x66, - 0xcf, 0xe8, 0xba, 0x9f, 0xa5, 0x60, 0x76, 0xc7, 0x36, 0xe2, 0x57, 0xa3, 0x3f, 0xbf, 0x90, 0x56, - 0x9f, 0x83, 0x59, 0x29, 0x77, 0xad, 0x7f, 0xce, 0xfc, 0x4c, 0x4e, 0x11, 0x7e, 0x7e, 0xeb, 0x52, - 0x86, 0x19, 0x31, 0xe5, 0xae, 0x37, 0x61, 0x2e, 0x91, 0x21, 0x8b, 0x13, 0xd0, 0xa6, 0x99, 0x40, - 0xfd, 0x0e, 0x2c, 0xa8, 0x52, 0x47, 0x21, 0xea, 0x68, 0x53, 0xdc, 0x95, 0xdd, 0x83, 0x05, 0x55, - 0x0a, 0x78, 0xf6, 0xe1, 0xbc, 0xc3, 0xef, 0xaf, 0x79, 0xb2, 0x76, 0x66, 0xfe, 0xbb, 0x30, 0xaf, - 0x48, 0xda, 0xce, 0x2e, 0xe7, 0xdf, 0x53, 0x61, 0x2f, 0x22, 0xfe, 0xdc, 0xe1, 0x2e, 0x54, 0x9c, - 0xf0, 0x47, 0x9b, 0x57, 0xbc, 0xd9, 0xf8, 0xb1, 0x57, 0x84, 0xdb, 0x4a, 0x94, 0xbe, 0x65, 0x19, - 0x23, 0xcb, 0xe1, 0xd5, 0x70, 0x4e, 0x21, 0xa7, 0x95, 0x28, 0x8b, 0xcb, 0x32, 0x46, 0x30, 0x51, - 0x7e, 0x8a, 0x83, 0x61, 0x13, 0x2e, 0x86, 0x4f, 0xf4, 0xac, 0x5e, 0x38, 0xfc, 0x42, 0x9c, 0xe0, - 0xc5, 0xc8, 0xe4, 0xf8, 0xe7, 0x12, 0x28, 0xf9, 0xba, 0xb2, 0x78, 0xa6, 0xeb, 0xca, 0x6c, 0xfd, - 0x53, 0x0d, 0xe6, 0x12, 0x1f, 0x84, 0xa0, 0x9b, 0x50, 0xa0, 0x5f, 0x6b, 0xc6, 0x9d, 0x0c, 0x6a, - 0x1f, 0x0a, 0x93, 0x86, 0x92, 0xe7, 0x20, 0x32, 0x84, 0xe8, 0x1b, 0x11, 0x7e, 0x05, 0xcf, 0x76, - 0x50, 0x08, 0x94, 0x76, 0x50, 0x08, 0xe4, 0x4d, 0x90, 0x3f, 0x83, 0xcb, 0x13, 0xbf, 0x0e, 0x39, - 0xd3, 0xbd, 0x6d, 0xdc, 0xcd, 0xc8, 0x9c, 0xa9, 0x9b, 0x71, 0x0c, 0x4b, 0xea, 0x8f, 0x36, 0x04, - 0xed, 0xa9, 0x53, 0xb5, 0xc7, 0xf6, 0x4f, 0x9f, 0x6e, 0xff, 0xe8, 0x71, 0xc0, 0x8c, 0xf8, 0x21, - 0x05, 0xba, 0x01, 0x59, 0xc7, 0xb6, 0xfb, 0x1e, 0x7f, 0xe4, 0x42, 0xd5, 0x51, 0x80, 0xa8, 0x8e, - 0x02, 0x5e, 0xa0, 0xd9, 0xf4, 0x9f, 0x51, 0x43, 0x2f, 0xfe, 0xd6, 0xe3, 0x9c, 0x96, 0x57, 0x58, - 0x8c, 0xec, 0x14, 0x9b, 0x41, 0xf2, 0xe0, 0xdc, 0xd9, 0x2e, 0xdc, 0xb9, 0x0d, 0xff, 0x41, 0x0b, - 0xbd, 0x48, 0xf1, 0x85, 0x87, 0x30, 0x4d, 0xed, 0x0c, 0xd3, 0x4c, 0x9d, 0x3a, 0xcd, 0x64, 0x7a, - 0x91, 0x3e, 0x5b, 0x7a, 0xf1, 0xda, 0x4d, 0x28, 0x84, 0x8f, 0x25, 0x10, 0x40, 0xee, 0xf1, 0xde, - 0xc6, 0xde, 0xc6, 0x9d, 0xca, 0x05, 0x54, 0x82, 0xfc, 0xce, 0xc6, 0xc3, 0x3b, 0x9b, 0x0f, 0xef, - 0x55, 0x34, 0xf2, 0xa3, 0xb5, 0xf7, 0xf0, 0x21, 0xf9, 0x91, 0x7a, 0xed, 0x81, 0xf8, 0x70, 0x93, - 0xe7, 0xe7, 0x33, 0x50, 0x58, 0x77, 0x1c, 0x1a, 0x5a, 0x19, 0xef, 0xc6, 0x91, 0x49, 0xe2, 0x75, - 0x45, 0x43, 0x79, 0x48, 0x3f, 0x7a, 0xb4, 0x5d, 0x49, 0xa1, 0x05, 0xa8, 0xdc, 0xc1, 0xba, 0xd1, - 0x37, 0x2d, 0x1c, 0x9e, 0x4e, 0x95, 0x74, 0xf3, 0xd9, 0x3f, 0x7f, 0xb7, 0xa2, 0x7d, 0xfb, 0xdd, - 0x8a, 0xf6, 0x5f, 0xdf, 0xad, 0x68, 0x5f, 0x7c, 0xbf, 0x72, 0xe1, 0xdb, 0xef, 0x57, 0x2e, 0xfc, - 0xc7, 0xf7, 0x2b, 0x17, 0xfe, 0xf4, 0x66, 0xcf, 0xf4, 0x0f, 0x82, 0x4e, 0xa3, 0x6b, 0x0f, 0xf8, - 0x27, 0xf9, 0x8e, 0x6b, 0x93, 0x63, 0x80, 0xff, 0x5a, 0x4b, 0x7e, 0xab, 0xff, 0xb7, 0xa9, 0x2b, - 0xeb, 0xf4, 0xe7, 0x0e, 0xa3, 0x6b, 0x6c, 0xda, 0x0d, 0x06, 0xa0, 0x5f, 0x67, 0x7b, 0x9d, 0x1c, - 0xfd, 0x0a, 0xfb, 0x8d, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x36, 0x30, 0x8c, 0xbf, 0xe6, 0x3f, - 0x00, 0x00, + // 3908 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3b, 0x5d, 0x6f, 0x1b, 0xc7, + 0x76, 0x5e, 0x7e, 0xf3, 0x50, 0xa2, 0xe8, 0xd1, 0x87, 0x69, 0xdd, 0x58, 0x94, 0xe9, 0xf4, 0x5e, + 0x3b, 0xc8, 0xa5, 0x7c, 0x9d, 0xb6, 0xc8, 0xcd, 0x2d, 0x6e, 0x20, 0xda, 0xb2, 0x2d, 0xc5, 0xb2, + 0x65, 0xca, 0x4a, 0xdd, 0x22, 0x00, 0xef, 0x92, 0x3b, 0xa2, 0xd6, 0x22, 0x77, 0xf7, 0xee, 0x87, + 0x22, 0x01, 0x01, 0x9a, 0x14, 0x69, 0x9f, 0xf3, 0x52, 0xa0, 0xc8, 0x4b, 0x83, 0x02, 0x79, 0x48, + 0x81, 0xa2, 0x0f, 0x45, 0x7f, 0x42, 0x81, 0x16, 0x28, 0x8a, 0xbc, 0xb5, 0xe8, 0x03, 0x51, 0x24, + 0xe8, 0x0b, 0x1f, 0x8a, 0x3e, 0xf7, 0xe9, 0x62, 0x3e, 0x76, 0x77, 0x66, 0x39, 0xb4, 0x28, 0xc7, + 0x0a, 0x1c, 0xe4, 0x49, 0xe2, 0xf9, 0x9c, 0x99, 0x73, 0xe6, 0xcc, 0x39, 0x67, 0x66, 0xe1, 0x8a, + 0x73, 0xd8, 0x5b, 0xd3, 0xdd, 0x81, 0x6e, 0xe8, 0xf8, 0x08, 0x5b, 0xbe, 0xb7, 0xc6, 0xfe, 0x34, + 0x1c, 0xd7, 0xf6, 0x6d, 0x34, 0x23, 0xa2, 0x96, 0xeb, 0x87, 0x6f, 0x7b, 0x0d, 0xd3, 0x5e, 0xd3, + 0x1d, 0x73, 0xad, 0x6b, 0xbb, 0x78, 0xed, 0xe8, 0x17, 0x6b, 0x3d, 0x6c, 0x61, 0x57, 0xf7, 0xb1, + 0xc1, 0x38, 0x96, 0xaf, 0x0b, 0x34, 0x16, 0xf6, 0x3f, 0xb4, 0xdd, 0x43, 0xd3, 0xea, 0xa9, 0x28, + 0x6b, 0x3d, 0xdb, 0xee, 0xf5, 0xf1, 0x1a, 0xfd, 0xd5, 0x09, 0xf6, 0xd7, 0x7c, 0x73, 0x80, 0x3d, + 0x5f, 0x1f, 0x38, 0x9c, 0xe0, 0xf7, 0x63, 0x51, 0x03, 0xbd, 0x7b, 0x60, 0x5a, 0xd8, 0x3d, 0x59, + 0xa3, 0xe3, 0x75, 0xcc, 0x35, 0x17, 0x7b, 0x76, 0xe0, 0x76, 0xf1, 0x98, 0xd8, 0x77, 0x4c, 0xcb, + 0xc7, 0xae, 0xa5, 0xf7, 0xd7, 0xbc, 0xee, 0x01, 0x36, 0x82, 0x3e, 0x76, 0xe3, 0xff, 0xec, 0xce, + 0x33, 0xdc, 0xf5, 0xbd, 0x31, 0x00, 0xe3, 0xad, 0xff, 0xdf, 0x12, 0xcc, 0x6e, 0x90, 0xb9, 0xee, + 0xe2, 0xdf, 0x06, 0xd8, 0xea, 0x62, 0x74, 0x03, 0xb2, 0xbf, 0x0d, 0x70, 0x80, 0xab, 0xda, 0xaa, + 0x76, 0xbd, 0xd8, 0x9c, 0x1f, 0x0d, 0x6b, 0x73, 0x14, 0xf0, 0xa6, 0x3d, 0x30, 0x7d, 0x3c, 0x70, + 0xfc, 0x93, 0x16, 0xa3, 0x40, 0xef, 0xc0, 0xcc, 0x33, 0xbb, 0xd3, 0xf6, 0xb0, 0xdf, 0xb6, 0xf4, + 0x01, 0xae, 0xa6, 0x28, 0x47, 0x75, 0x34, 0xac, 0x2d, 0x3c, 0xb3, 0x3b, 0xbb, 0xd8, 0x7f, 0xa8, + 0x0f, 0x44, 0x36, 0x88, 0xa1, 0xe8, 0xe7, 0x90, 0x0f, 0x3c, 0xec, 0xb6, 0x4d, 0xa3, 0x9a, 0xa6, + 0x6c, 0x0b, 0xa3, 0x61, 0xad, 0x42, 0x40, 0x9b, 0x86, 0xc0, 0x92, 0x63, 0x10, 0xf4, 0x26, 0xe4, + 0x7a, 0xae, 0x1d, 0x38, 0x5e, 0x35, 0xb3, 0x9a, 0x0e, 0xa9, 0x19, 0x44, 0xa4, 0x66, 0x10, 0xf4, + 0x08, 0x72, 0xcc, 0x80, 0xd5, 0xec, 0x6a, 0xfa, 0x7a, 0xe9, 0xd6, 0xd5, 0x86, 0x68, 0xd5, 0x86, + 0x34, 0x61, 0xf6, 0x8b, 0x09, 0x64, 0x78, 0x51, 0x20, 0xf7, 0x83, 0x7f, 0x5d, 0x80, 0x2c, 0xa5, + 0x43, 0xef, 0x41, 0xbe, 0xeb, 0x62, 0xb2, 0xfa, 0x55, 0xb4, 0xaa, 0x5d, 0x2f, 0xdd, 0x5a, 0x6e, + 0x30, 0xab, 0x36, 0x42, 0xab, 0x36, 0x9e, 0x84, 0x56, 0x6d, 0x2e, 0x8e, 0x86, 0xb5, 0x8b, 0x9c, + 0x5c, 0x90, 0x1a, 0x4a, 0x40, 0x3b, 0x50, 0xf4, 0x82, 0xce, 0xc0, 0xf4, 0xb7, 0xec, 0x0e, 0x5d, + 0xef, 0xd2, 0xad, 0x4b, 0xf2, 0x50, 0x77, 0x43, 0x74, 0xf3, 0xd2, 0x68, 0x58, 0x9b, 0x8f, 0xa8, + 0x63, 0x69, 0xf7, 0x2f, 0xb4, 0x62, 0x21, 0xe8, 0x00, 0xe6, 0x5c, 0xec, 0xb8, 0xa6, 0xed, 0x9a, + 0xbe, 0xe9, 0x61, 0x22, 0x37, 0x45, 0xe5, 0x5e, 0x91, 0xe5, 0xb6, 0x64, 0xa2, 0xe6, 0x95, 0xd1, + 0xb0, 0x76, 0x39, 0xc1, 0x29, 0xe9, 0x48, 0x8a, 0x45, 0x3e, 0xa0, 0x04, 0x68, 0x17, 0xfb, 0xd4, + 0x96, 0xa5, 0x5b, 0xab, 0xcf, 0x55, 0xb6, 0x8b, 0xfd, 0xe6, 0xea, 0x68, 0x58, 0x7b, 0x6d, 0x9c, + 0x5f, 0x52, 0xa9, 0x90, 0x8f, 0xfa, 0x50, 0x11, 0xa1, 0x06, 0x99, 0x60, 0x86, 0xea, 0x5c, 0x99, + 0xac, 0x93, 0x50, 0x35, 0x57, 0x46, 0xc3, 0xda, 0x72, 0x92, 0x57, 0xd2, 0x37, 0x26, 0x99, 0xd8, + 0xa7, 0xab, 0x5b, 0x5d, 0xdc, 0x27, 0x6a, 0xb2, 0x2a, 0xfb, 0xdc, 0x0e, 0xd1, 0xcc, 0x3e, 0x11, + 0xb5, 0x6c, 0x9f, 0x08, 0x8c, 0x3e, 0x80, 0x99, 0xe8, 0x07, 0x59, 0xaf, 0x1c, 0xf7, 0x21, 0xb5, + 0x50, 0xb2, 0x52, 0xcb, 0xa3, 0x61, 0x6d, 0x49, 0xe4, 0x91, 0x44, 0x4b, 0xd2, 0x62, 0xe9, 0x7d, + 0xb6, 0x32, 0xf9, 0xc9, 0xd2, 0x19, 0x85, 0x28, 0xbd, 0x3f, 0xbe, 0x22, 0x92, 0x34, 0x22, 0x9d, + 0x6c, 0xe0, 0xa0, 0xdb, 0xc5, 0xd8, 0xc0, 0x46, 0xb5, 0xa0, 0x92, 0xbe, 0x25, 0x50, 0x30, 0xe9, + 0x22, 0x8f, 0x2c, 0x5d, 0xc4, 0x90, 0xb5, 0x7e, 0x66, 0x77, 0x36, 0x5c, 0xd7, 0x76, 0xbd, 0x6a, + 0x51, 0xb5, 0xd6, 0x5b, 0x21, 0x9a, 0xad, 0x75, 0x44, 0x2d, 0xaf, 0x75, 0x04, 0xe6, 0xe3, 0x6d, + 0x05, 0xd6, 0x03, 0xac, 0x7b, 0xd8, 0xa8, 0xc2, 0x84, 0xf1, 0x46, 0x14, 0xd1, 0x78, 0x23, 0xc8, + 0xd8, 0x78, 0x23, 0x0c, 0x32, 0xa0, 0xcc, 0x7e, 0xaf, 0x7b, 0x9e, 0xd9, 0xb3, 0xb0, 0x51, 0x2d, + 0x51, 0xf9, 0xaf, 0xa9, 0xe4, 0x87, 0x34, 0xcd, 0xd7, 0x46, 0xc3, 0x5a, 0x55, 0xe6, 0x93, 0x74, + 0x24, 0x64, 0xa2, 0xdf, 0xc0, 0x2c, 0x83, 0xb4, 0x02, 0xcb, 0x32, 0xad, 0x5e, 0x75, 0x86, 0x2a, + 0xf9, 0x89, 0x4a, 0x09, 0x27, 0x69, 0xfe, 0x64, 0x34, 0xac, 0x5d, 0x92, 0xb8, 0x24, 0x15, 0xb2, + 0x40, 0x12, 0x31, 0x18, 0x20, 0x36, 0xec, 0xac, 0x2a, 0x62, 0x6c, 0xc9, 0x44, 0x2c, 0x62, 0x24, + 0x38, 0xe5, 0x88, 0x91, 0x40, 0xc6, 0xf6, 0xe0, 0x46, 0x2e, 0x4f, 0xb6, 0x07, 0xb7, 0xb3, 0x60, + 0x0f, 0x85, 0xa9, 0x25, 0x69, 0xe8, 0x63, 0x0d, 0x16, 0x3d, 0x5f, 0xb7, 0x0c, 0xbd, 0x6f, 0x5b, + 0x78, 0xd3, 0xea, 0xb9, 0xd8, 0xf3, 0x36, 0xad, 0x7d, 0xbb, 0x5a, 0xa1, 0x7a, 0xae, 0x25, 0x02, + 0xab, 0x8a, 0xb4, 0x79, 0x6d, 0x34, 0xac, 0xd5, 0x94, 0x52, 0x24, 0xcd, 0x6a, 0x45, 0xe8, 0x18, + 0xe6, 0xc3, 0x43, 0x7a, 0xcf, 0x37, 0xfb, 0xa6, 0xa7, 0xfb, 0xa6, 0x6d, 0x55, 0x2f, 0x52, 0xfd, + 0x57, 0x93, 0xf1, 0x69, 0x8c, 0xb0, 0x79, 0x75, 0x34, 0xac, 0x5d, 0x51, 0x48, 0x90, 0x74, 0xab, + 0x54, 0xc4, 0x46, 0xdc, 0x71, 0x31, 0x21, 0xc4, 0x46, 0x75, 0x7e, 0xb2, 0x11, 0x23, 0x22, 0xd1, + 0x88, 0x11, 0x50, 0x65, 0xc4, 0x08, 0x49, 0x34, 0x39, 0xba, 0xeb, 0x9b, 0x44, 0xed, 0xb6, 0xee, + 0x1e, 0x62, 0xb7, 0xba, 0xa0, 0xd2, 0xb4, 0x23, 0x13, 0x31, 0x4d, 0x09, 0x4e, 0x59, 0x53, 0x02, + 0x89, 0x3e, 0xd3, 0x40, 0x1e, 0x9a, 0x69, 0x5b, 0x2d, 0x72, 0x68, 0x7b, 0x64, 0x7a, 0x8b, 0x54, + 0xe9, 0xcf, 0x9e, 0x33, 0x3d, 0x91, 0xbc, 0xf9, 0xb3, 0xd1, 0xb0, 0x76, 0x6d, 0xa2, 0x34, 0x69, + 0x20, 0x93, 0x95, 0xa2, 0xa7, 0x50, 0x22, 0x48, 0x4c, 0xd3, 0x1f, 0xa3, 0xba, 0x44, 0xc7, 0x70, + 0x79, 0x7c, 0x0c, 0x9c, 0xa0, 0x79, 0x79, 0x34, 0xac, 0x2d, 0x0a, 0x1c, 0x92, 0x1e, 0x51, 0x14, + 0xfa, 0x54, 0x03, 0xe2, 0xe8, 0xaa, 0x99, 0x5e, 0xa2, 0x5a, 0x5e, 0x1f, 0xd3, 0xa2, 0x9a, 0xe6, + 0xeb, 0xa3, 0x61, 0x6d, 0x55, 0x2d, 0x47, 0xd2, 0x3d, 0x41, 0x57, 0xec, 0x47, 0xd1, 0x21, 0x51, + 0xad, 0x4e, 0xf6, 0xa3, 0x88, 0x48, 0xf4, 0xa3, 0x08, 0xa8, 0xf2, 0xa3, 0x08, 0xc9, 0x83, 0xc1, + 0xfb, 0x7a, 0xdf, 0x34, 0x68, 0x32, 0x75, 0x79, 0x42, 0x30, 0x88, 0x28, 0xa2, 0x60, 0x10, 0x41, + 0xc6, 0x82, 0x41, 0x84, 0x11, 0x7c, 0xe7, 0x09, 0x76, 0x07, 0xa6, 0x45, 0x80, 0x77, 0x70, 0x27, + 0xe8, 0xd1, 0x80, 0xb0, 0x3c, 0xd9, 0x77, 0x14, 0xe4, 0xa2, 0xef, 0x28, 0xd0, 0x2a, 0xdf, 0x51, + 0x49, 0xc9, 0x43, 0x96, 0x6a, 0xaa, 0x7f, 0x5e, 0x84, 0x79, 0xc5, 0xee, 0x47, 0x18, 0x66, 0xc3, + 0xad, 0xdd, 0x36, 0xc9, 0x30, 0xd3, 0x2a, 0xc3, 0xbf, 0x17, 0x74, 0xb0, 0x6b, 0x61, 0x1f, 0x7b, + 0xa1, 0x0c, 0x2a, 0x9d, 0x2e, 0x8e, 0x2b, 0x40, 0x84, 0x74, 0x73, 0x46, 0x84, 0xa3, 0xcf, 0x35, + 0xa8, 0x0e, 0xf4, 0xe3, 0x76, 0x08, 0xf4, 0xda, 0xfb, 0xb6, 0xdb, 0x76, 0xb0, 0x6b, 0xda, 0x06, + 0x4d, 0xae, 0x4b, 0xb7, 0xfe, 0xe8, 0xd4, 0x50, 0xd5, 0xd8, 0xd6, 0x8f, 0x43, 0xb0, 0x77, 0xd7, + 0x76, 0x77, 0x28, 0xfb, 0x86, 0xe5, 0xbb, 0x27, 0x2c, 0x86, 0x0e, 0x54, 0x78, 0x61, 0x4c, 0x8b, + 0x4a, 0x02, 0xf4, 0x57, 0x1a, 0x2c, 0xf9, 0xb6, 0xaf, 0xf7, 0xdb, 0xdd, 0x60, 0x10, 0xf4, 0x75, + 0xdf, 0x3c, 0xc2, 0xed, 0xc0, 0xd3, 0x7b, 0x98, 0x67, 0xf2, 0xbf, 0x3a, 0x7d, 0x68, 0x4f, 0x08, + 0xff, 0xed, 0x88, 0x7d, 0x8f, 0x70, 0xb3, 0x91, 0xd5, 0x47, 0xc3, 0xda, 0x8a, 0xaf, 0x40, 0x0b, + 0x03, 0x5b, 0x50, 0xe1, 0xd1, 0x1b, 0x90, 0x23, 0x95, 0x8e, 0x69, 0xd0, 0x84, 0x8d, 0x57, 0x45, + 0xcf, 0xec, 0x8e, 0x54, 0xab, 0x64, 0x29, 0x80, 0xd0, 0xba, 0x81, 0x45, 0x68, 0xf3, 0x31, 0xad, + 0x1b, 0x58, 0x32, 0x2d, 0x05, 0x50, 0x63, 0xe8, 0x47, 0x3d, 0xb5, 0x31, 0x0a, 0xd3, 0x1a, 0x63, + 0xfd, 0xa8, 0xf7, 0x5c, 0x63, 0xe8, 0x2a, 0xbc, 0x68, 0x0c, 0x25, 0xc1, 0xf2, 0x17, 0x1a, 0x2c, + 0x4f, 0xb6, 0x33, 0xba, 0x06, 0xe9, 0x43, 0x7c, 0xc2, 0xcb, 0xc4, 0x8b, 0xa3, 0x61, 0x6d, 0xf6, + 0x10, 0x9f, 0x08, 0x52, 0x09, 0x16, 0xfd, 0x09, 0x64, 0x8f, 0xf4, 0x7e, 0x80, 0x79, 0x15, 0xd2, + 0x68, 0xb0, 0x0a, 0xb7, 0x21, 0x56, 0xb8, 0x0d, 0xe7, 0xb0, 0x47, 0x00, 0x8d, 0x70, 0x15, 0x1a, + 0x8f, 0x03, 0xdd, 0xf2, 0x4d, 0xff, 0x84, 0xad, 0x1d, 0x15, 0x20, 0xae, 0x1d, 0x05, 0xbc, 0x93, + 0x7a, 0x5b, 0x5b, 0xfe, 0x1b, 0x0d, 0x2e, 0x4f, 0xb4, 0xf7, 0x2b, 0x31, 0x42, 0xb2, 0x88, 0x93, + 0xed, 0xf3, 0x2a, 0x0c, 0x71, 0x2b, 0x53, 0xd0, 0x2a, 0xa9, 0xad, 0x4c, 0x21, 0x55, 0x49, 0xd7, + 0xff, 0x3f, 0x07, 0xc5, 0xa8, 0xe6, 0x44, 0xf7, 0xa1, 0x62, 0x60, 0x23, 0x70, 0xfa, 0x66, 0x97, + 0x7a, 0x1a, 0x71, 0x6a, 0x56, 0xe4, 0xd3, 0x80, 0x2f, 0xe1, 0x24, 0xf7, 0x9e, 0x4b, 0xa0, 0xd0, + 0x2d, 0x28, 0xf0, 0xda, 0xea, 0x84, 0xc6, 0xb5, 0xd9, 0xe6, 0xd2, 0x68, 0x58, 0x43, 0x21, 0x4c, + 0x60, 0x8d, 0xe8, 0x50, 0x0b, 0x80, 0x35, 0x2b, 0xb6, 0xb1, 0xaf, 0xf3, 0x2a, 0xaf, 0x2a, 0xef, + 0x86, 0x47, 0x11, 0x9e, 0xb5, 0x1d, 0x62, 0x7a, 0xb1, 0xed, 0x10, 0x43, 0xd1, 0x07, 0x00, 0x03, + 0xdd, 0xb4, 0x18, 0x1f, 0x2f, 0xe9, 0xea, 0x93, 0x22, 0xec, 0x76, 0x44, 0xc9, 0xa4, 0xc7, 0x9c, + 0xa2, 0xf4, 0x18, 0x8a, 0x1e, 0x41, 0x9e, 0xb7, 0x57, 0xaa, 0x39, 0xba, 0x79, 0x57, 0x26, 0x89, + 0xe6, 0x62, 0x69, 0x83, 0x80, 0xb3, 0x88, 0x0d, 0x02, 0x0e, 0x22, 0xcb, 0xd6, 0x37, 0xf7, 0xb1, + 0x6f, 0x0e, 0x30, 0x8d, 0x26, 0x7c, 0xd9, 0x42, 0x98, 0xb8, 0x6c, 0x21, 0x0c, 0xbd, 0x0d, 0xa0, + 0xfb, 0xdb, 0xb6, 0xe7, 0x3f, 0xb2, 0xba, 0x98, 0x16, 0x69, 0x05, 0x36, 0xfc, 0x18, 0x2a, 0x0e, + 0x3f, 0x86, 0xa2, 0x5f, 0x41, 0xc9, 0xe1, 0x49, 0x41, 0xa7, 0x8f, 0x69, 0x11, 0x56, 0x60, 0x39, + 0x8c, 0x00, 0x16, 0x78, 0x45, 0x6a, 0x74, 0x0f, 0xe6, 0xba, 0xb6, 0xd5, 0x0d, 0x5c, 0x17, 0x5b, + 0xdd, 0x93, 0x5d, 0x7d, 0x1f, 0xd3, 0x82, 0xab, 0xc0, 0x5c, 0x25, 0x81, 0x12, 0x5d, 0x25, 0x81, + 0x42, 0x7f, 0x00, 0xc5, 0xa8, 0x59, 0x45, 0x6b, 0xaa, 0x22, 0xef, 0x7d, 0x84, 0x40, 0x81, 0x39, + 0xa6, 0x24, 0x83, 0x37, 0xbd, 0x3b, 0xdc, 0xe9, 0x30, 0xad, 0x93, 0xf8, 0xe0, 0x05, 0xb0, 0x38, + 0x78, 0x01, 0x2c, 0xc4, 0xf7, 0xf2, 0xa9, 0xf1, 0xfd, 0x2e, 0x54, 0xf0, 0x31, 0x6b, 0xb8, 0xb5, + 0x09, 0x53, 0xe0, 0x9a, 0xb4, 0xc4, 0x28, 0xb2, 0xe2, 0x2e, 0xc4, 0x6d, 0xd9, 0x9d, 0x3d, 0xd7, + 0x14, 0xd8, 0xcb, 0x32, 0x26, 0xda, 0x76, 0xb3, 0x95, 0xf2, 0x56, 0xa6, 0x30, 0x57, 0xa9, 0xd4, + 0xff, 0x4d, 0x83, 0x05, 0x95, 0xf7, 0x25, 0x76, 0x82, 0xf6, 0x52, 0x76, 0xc2, 0xfb, 0x50, 0x70, + 0x6c, 0xa3, 0xed, 0x39, 0xb8, 0xcb, 0xe3, 0x4a, 0x62, 0x1f, 0xec, 0xd8, 0xc6, 0xae, 0x83, 0xbb, + 0x7f, 0x6c, 0xfa, 0x07, 0xeb, 0x47, 0xb6, 0x69, 0x3c, 0x30, 0x3d, 0xee, 0xb0, 0x0e, 0xc3, 0x48, + 0x99, 0x4f, 0x9e, 0x03, 0x9b, 0x05, 0xc8, 0x31, 0x2d, 0xf5, 0x7f, 0x4f, 0x43, 0x25, 0xe9, 0xf1, + 0x3f, 0xa4, 0xa9, 0xa0, 0xa7, 0x90, 0x37, 0x59, 0x79, 0xc7, 0x73, 0xb1, 0xdf, 0x13, 0x22, 0x6f, + 0x23, 0xee, 0xf5, 0x36, 0x8e, 0x7e, 0xd1, 0xe0, 0x75, 0x20, 0x5d, 0x02, 0x2a, 0x99, 0x73, 0xca, + 0x92, 0x39, 0x10, 0xb5, 0x20, 0xef, 0x61, 0xf7, 0xc8, 0xec, 0x62, 0x1e, 0xd7, 0x6a, 0xa2, 0xe4, + 0xae, 0xed, 0x62, 0x22, 0x73, 0x97, 0x91, 0xc4, 0x32, 0x39, 0x8f, 0x2c, 0x93, 0x03, 0xd1, 0xfb, + 0x50, 0xec, 0xda, 0xd6, 0xbe, 0xd9, 0xdb, 0xd6, 0x1d, 0x1e, 0xd9, 0xae, 0xa8, 0xa4, 0xde, 0x0e, + 0x89, 0x78, 0xcb, 0x2a, 0xfc, 0x99, 0x68, 0x59, 0x45, 0x54, 0xb1, 0x41, 0xff, 0x37, 0x03, 0x10, + 0x1b, 0x07, 0xfd, 0x12, 0x4a, 0xf8, 0x18, 0x77, 0x03, 0xdf, 0xa6, 0x6d, 0x5c, 0x2d, 0xee, 0xfe, + 0x86, 0x60, 0x69, 0xfb, 0x40, 0x0c, 0x25, 0x7b, 0xdc, 0xd2, 0x07, 0xd8, 0x73, 0xf4, 0x6e, 0xd8, + 0x36, 0xa6, 0x83, 0x89, 0x80, 0xe2, 0x1e, 0x8f, 0x80, 0xe8, 0xa7, 0x90, 0xa1, 0x8d, 0x66, 0xd6, + 0x31, 0x46, 0xa3, 0x61, 0xad, 0x6c, 0xc9, 0x2d, 0x66, 0x8a, 0x47, 0xef, 0xc2, 0xec, 0x61, 0xe4, + 0x78, 0x64, 0x6c, 0x19, 0xca, 0x40, 0x93, 0xe4, 0x18, 0x21, 0x8d, 0x6e, 0x46, 0x84, 0xa3, 0x7d, + 0x28, 0xe9, 0x96, 0x65, 0xfb, 0xf4, 0xf8, 0x0a, 0xbb, 0xc8, 0x37, 0x26, 0xb9, 0x69, 0x63, 0x3d, + 0xa6, 0x65, 0x69, 0x17, 0x8d, 0x3b, 0x82, 0x04, 0x31, 0xee, 0x08, 0x60, 0xd4, 0x82, 0x5c, 0x5f, + 0xef, 0xe0, 0x7e, 0x78, 0x5e, 0xbc, 0x3e, 0x51, 0xc5, 0x03, 0x4a, 0xc6, 0xa4, 0xd3, 0x5e, 0x35, + 0xe3, 0x13, 0x7b, 0xd5, 0x0c, 0xb2, 0xbc, 0x0f, 0x95, 0xe4, 0x78, 0xa6, 0x4b, 0x33, 0x6e, 0x88, + 0x69, 0x46, 0xf1, 0xd4, 0xcc, 0x46, 0x87, 0x92, 0x30, 0xa8, 0xf3, 0x50, 0x51, 0xff, 0x4a, 0x83, + 0x05, 0xd5, 0xde, 0x45, 0xdb, 0xc2, 0x8e, 0xd7, 0x78, 0x47, 0x4c, 0xe1, 0xea, 0x9c, 0x77, 0xc2, + 0x56, 0x8f, 0x37, 0x7a, 0x13, 0xca, 0x96, 0x6d, 0xe0, 0xb6, 0x4e, 0x14, 0xf4, 0x4d, 0xcf, 0xaf, + 0xa6, 0xe8, 0x2d, 0x03, 0xed, 0xa4, 0x11, 0xcc, 0x7a, 0x88, 0x10, 0xb8, 0x67, 0x25, 0x44, 0xfd, + 0x43, 0x98, 0x4b, 0xf4, 0xb9, 0xa5, 0xa4, 0x27, 0x35, 0x65, 0xd2, 0x13, 0x9f, 0x44, 0xe9, 0xd3, + 0x4e, 0x22, 0x76, 0x82, 0xd4, 0xff, 0x22, 0x05, 0x25, 0xa1, 0xe9, 0x80, 0x9e, 0xc1, 0x1c, 0x3f, + 0x15, 0x4d, 0xab, 0xc7, 0x2a, 0xc9, 0x14, 0xef, 0x80, 0x8d, 0x5d, 0x02, 0x6d, 0xd9, 0x9d, 0xdd, + 0x88, 0x96, 0x16, 0x92, 0xf4, 0x0c, 0xf3, 0x24, 0x98, 0x78, 0x86, 0xc9, 0x18, 0xf4, 0x14, 0x96, + 0x02, 0x87, 0x94, 0xdc, 0x6d, 0x8f, 0x5f, 0xa7, 0xb4, 0xad, 0x60, 0xd0, 0xc1, 0x2e, 0x1d, 0x7d, + 0x96, 0x55, 0x5c, 0x8c, 0x22, 0xbc, 0x6f, 0x79, 0x48, 0xf1, 0x62, 0xc5, 0xa5, 0xc2, 0x0b, 0xeb, + 0x90, 0x99, 0x72, 0x1d, 0xee, 0x03, 0x1a, 0xbf, 0x68, 0x90, 0x6c, 0xa0, 0x4d, 0x67, 0x83, 0xfa, + 0x3f, 0x68, 0x50, 0x49, 0xde, 0x1f, 0x9c, 0xb7, 0x31, 0x49, 0x48, 0x74, 0x59, 0x1f, 0xc6, 0x76, + 0xf9, 0x9c, 0x69, 0x48, 0x8c, 0x80, 0x62, 0x48, 0x8c, 0x80, 0x7c, 0xee, 0x7f, 0xab, 0x41, 0x31, + 0xba, 0x35, 0x40, 0x6f, 0x42, 0xce, 0xc5, 0xba, 0x67, 0x5b, 0x7c, 0x9b, 0xd1, 0x78, 0xc1, 0x20, + 0x62, 0xbc, 0x60, 0x90, 0xef, 0x6f, 0x90, 0x4f, 0x60, 0x86, 0x19, 0xe5, 0xae, 0xd9, 0xf7, 0xb1, + 0x8b, 0xee, 0x40, 0xce, 0xf3, 0x75, 0x1f, 0x7b, 0x55, 0x6d, 0x35, 0x7d, 0xbd, 0x7c, 0x6b, 0x69, + 0xfc, 0x26, 0x81, 0xa0, 0xd9, 0xf0, 0x19, 0xa5, 0x38, 0x7c, 0x06, 0xa9, 0xff, 0xb9, 0x06, 0x33, + 0xe2, 0x85, 0xc9, 0xcb, 0x11, 0x7b, 0xb6, 0x35, 0xac, 0x7f, 0x19, 0x0d, 0x82, 0xdf, 0x95, 0xbc, + 0xa2, 0x26, 0xf8, 0x4a, 0x63, 0x36, 0x88, 0x7a, 0xf2, 0xbd, 0xb8, 0xe9, 0x44, 0x36, 0xb4, 0x47, + 0x03, 0xdf, 0xb4, 0x4d, 0x27, 0x1a, 0x1e, 0x25, 0x76, 0x31, 0x3c, 0x4a, 0x88, 0x17, 0x88, 0x6b, + 0x5f, 0x64, 0xe9, 0x58, 0xe3, 0x1b, 0x97, 0x44, 0xbe, 0x91, 0x3e, 0x43, 0xbe, 0xf1, 0x73, 0xc8, + 0xd3, 0x00, 0x1f, 0x85, 0x13, 0x6a, 0x0f, 0x02, 0x92, 0x6f, 0x9b, 0x19, 0xe4, 0x39, 0x61, 0x2d, + 0xfb, 0x1d, 0xc3, 0x5a, 0x1b, 0x2e, 0x1f, 0xe8, 0x5e, 0x3b, 0x0c, 0xc4, 0x46, 0x5b, 0xf7, 0xdb, + 0x51, 0x58, 0xc9, 0xd1, 0x9a, 0x85, 0xf6, 0x70, 0x0f, 0x74, 0x6f, 0x37, 0xa4, 0x59, 0xf7, 0x77, + 0xc6, 0x83, 0xcc, 0x92, 0x9a, 0x02, 0xed, 0xc1, 0xa2, 0x5a, 0x78, 0x9e, 0x8e, 0x9c, 0x5e, 0x31, + 0x78, 0xcf, 0x95, 0x3c, 0xaf, 0x40, 0xa3, 0x4f, 0x34, 0xa8, 0x92, 0x13, 0x97, 0x38, 0x94, 0xe9, + 0xe2, 0x01, 0x71, 0x8b, 0xb6, 0x7d, 0x84, 0xdd, 0xbe, 0x7e, 0xc2, 0x6f, 0xeb, 0xae, 0x8e, 0x1f, + 0x2f, 0x3b, 0xb6, 0xd1, 0x12, 0x18, 0xd8, 0xd4, 0x1c, 0x19, 0xf8, 0x88, 0x09, 0x11, 0xa7, 0xa6, + 0xa6, 0x10, 0x5c, 0x08, 0xce, 0xd0, 0x84, 0x2b, 0x9d, 0xda, 0x84, 0xfb, 0x29, 0x64, 0x1c, 0xdb, + 0xee, 0xd3, 0x92, 0x91, 0x67, 0x95, 0xe4, 0xb7, 0x98, 0x55, 0x92, 0xdf, 0x62, 0x9f, 0x64, 0x2b, + 0x53, 0x28, 0x54, 0x8a, 0xe4, 0xe8, 0x2d, 0xcb, 0x17, 0x7c, 0xe3, 0x1b, 0x2a, 0x7d, 0xee, 0x1b, + 0x2a, 0x73, 0x86, 0xd5, 0xc8, 0x4e, 0xbd, 0x1a, 0xb9, 0xe9, 0x57, 0xa3, 0xfe, 0x69, 0x0a, 0x66, + 0xa5, 0x3b, 0xc8, 0x1f, 0xe7, 0x32, 0xfc, 0x75, 0x0a, 0x96, 0xd4, 0x53, 0x3a, 0x97, 0xb2, 0xf7, + 0x3e, 0x90, 0x04, 0x76, 0x33, 0x4e, 0xf0, 0x16, 0xc7, 0xaa, 0x5e, 0xba, 0x9c, 0x61, 0xf6, 0x3b, + 0x76, 0x5b, 0x11, 0xb2, 0xa3, 0xa7, 0x50, 0x32, 0x85, 0x0b, 0xd3, 0xb4, 0xea, 0x5e, 0x4b, 0xbc, + 0x26, 0x65, 0x6d, 0x95, 0x09, 0x97, 0xa3, 0xa2, 0xa8, 0x66, 0x0e, 0x32, 0x24, 0x03, 0xad, 0x1f, + 0x41, 0x9e, 0x0f, 0x07, 0xbd, 0x05, 0x45, 0x1a, 0x8b, 0x69, 0x25, 0xc7, 0xca, 0x05, 0x9a, 0x49, + 0x11, 0x60, 0xe2, 0xc1, 0x50, 0x21, 0x84, 0xa1, 0x3f, 0x04, 0x20, 0xe1, 0x87, 0x47, 0xe1, 0x14, + 0x8d, 0x65, 0xf4, 0xd8, 0x73, 0x6c, 0x63, 0x2c, 0xf4, 0x16, 0x23, 0x60, 0xfd, 0xef, 0x53, 0x50, + 0x12, 0xaf, 0x68, 0x5f, 0x48, 0xf9, 0x47, 0x10, 0x56, 0xf3, 0x6d, 0xdd, 0x30, 0xc8, 0x5f, 0x1c, + 0x1e, 0x94, 0x6b, 0x13, 0x17, 0x29, 0xfc, 0x7f, 0x3d, 0xe4, 0x60, 0xb5, 0x1b, 0x7d, 0x86, 0x62, + 0x26, 0x50, 0x82, 0xd6, 0x4a, 0x12, 0xb7, 0x7c, 0x08, 0x8b, 0x4a, 0x51, 0x62, 0xc5, 0x95, 0x7d, + 0x59, 0x15, 0xd7, 0x97, 0x59, 0x58, 0x54, 0x5e, 0x8d, 0x27, 0x3c, 0x38, 0xfd, 0x52, 0x3c, 0xf8, + 0x2f, 0x35, 0xd5, 0xca, 0xb2, 0x4b, 0xa8, 0x5f, 0x4e, 0x71, 0x5f, 0xff, 0xb2, 0xd6, 0x58, 0x76, + 0x8b, 0xec, 0x0b, 0xf9, 0x64, 0x6e, 0x5a, 0x9f, 0x44, 0x37, 0x59, 0xf1, 0x4a, 0x75, 0xb1, 0x2b, + 0xa2, 0x70, 0x87, 0x26, 0x54, 0xe5, 0x39, 0x08, 0xbd, 0x0b, 0xb3, 0x21, 0x07, 0x6b, 0x99, 0x14, + 0xe2, 0x7e, 0x06, 0xa7, 0x49, 0x76, 0x4d, 0x66, 0x44, 0xb8, 0x10, 0x25, 0x8b, 0x67, 0x88, 0x92, + 0x70, 0x5a, 0x94, 0xfc, 0x5e, 0x7d, 0x53, 0x0a, 0xb5, 0x43, 0x0d, 0xe6, 0x12, 0x2f, 0x52, 0x7e, + 0xf0, 0x67, 0x8e, 0x34, 0xc1, 0x8f, 0x35, 0x28, 0x46, 0x0f, 0x9e, 0xd0, 0x3a, 0xe4, 0x30, 0x7b, + 0x34, 0xc3, 0xc2, 0xce, 0x7c, 0xe2, 0x41, 0x23, 0xc1, 0xf1, 0x27, 0x8c, 0x89, 0x77, 0x32, 0x2d, + 0xce, 0xf8, 0x02, 0x09, 0xf8, 0x3f, 0x69, 0x61, 0x02, 0x3e, 0x36, 0x8a, 0xf4, 0x77, 0x1f, 0xc5, + 0xf9, 0x2d, 0xdd, 0x3f, 0x97, 0x20, 0x4b, 0xc7, 0x42, 0x6a, 0x76, 0x9f, 0x5d, 0xc5, 0xf7, 0xa9, + 0x2b, 0x16, 0xd8, 0xae, 0x0e, 0x61, 0xe2, 0xae, 0x0e, 0x61, 0xe8, 0x00, 0xe6, 0xe2, 0x56, 0x20, + 0x15, 0xa3, 0x7e, 0x41, 0xf9, 0x9e, 0x4c, 0xc4, 0xae, 0x39, 0x12, 0x9c, 0xf2, 0x13, 0x88, 0x04, + 0x12, 0x19, 0x50, 0xee, 0xda, 0x96, 0xaf, 0x9b, 0x16, 0x76, 0x99, 0xa2, 0xb4, 0xea, 0x05, 0xd9, + 0x6d, 0x89, 0x86, 0x35, 0x68, 0x64, 0x3e, 0xf9, 0x05, 0x99, 0x8c, 0x43, 0xbf, 0x81, 0xd9, 0xb0, + 0x10, 0x62, 0x4a, 0x32, 0xaa, 0x17, 0x64, 0x1b, 0x22, 0x09, 0xdb, 0x0c, 0x12, 0x97, 0xfc, 0x82, + 0x4c, 0x42, 0xa1, 0x0f, 0x60, 0xa6, 0x4f, 0x2a, 0xb4, 0x8d, 0x63, 0xc7, 0x74, 0xb1, 0xa1, 0x7e, + 0xd3, 0xf8, 0x40, 0xa0, 0x60, 0x81, 0x4b, 0xe4, 0x91, 0x9f, 0x72, 0x88, 0x18, 0x62, 0x8f, 0x81, + 0x7e, 0xdc, 0x0a, 0x2c, 0x6f, 0xe3, 0x98, 0xbf, 0x4f, 0xcb, 0xab, 0xec, 0xb1, 0x2d, 0x13, 0x31, + 0x7b, 0x24, 0x38, 0x65, 0x7b, 0x24, 0x90, 0xe8, 0x01, 0x8d, 0xcb, 0x6c, 0x91, 0xd8, 0xdb, 0xc6, + 0xa5, 0xb1, 0x84, 0x8a, 0xad, 0x0f, 0xeb, 0xfc, 0xf0, 0x5f, 0x92, 0xd0, 0x48, 0x02, 0xea, 0x43, + 0xc5, 0xb1, 0x0d, 0x3a, 0xed, 0x16, 0xf6, 0x03, 0xd7, 0xc2, 0x06, 0x2f, 0x94, 0x56, 0xc6, 0xa4, + 0x4a, 0x54, 0xec, 0xf8, 0x4a, 0xf2, 0xca, 0x2f, 0x55, 0x93, 0x58, 0xf4, 0x11, 0x2c, 0x24, 0x5e, + 0x6a, 0xb1, 0x79, 0x94, 0x54, 0xd7, 0x21, 0x5b, 0x0a, 0x4a, 0x56, 0xd3, 0xaa, 0x64, 0x48, 0x9a, + 0x95, 0x5a, 0x88, 0xf6, 0x9e, 0x6e, 0xf5, 0xb6, 0xec, 0xce, 0x9e, 0xc5, 0x8b, 0x40, 0xbd, 0xd3, + 0xc7, 0xfc, 0xb1, 0x62, 0x42, 0xfb, 0x3d, 0x05, 0x25, 0xd3, 0xae, 0x92, 0x21, 0x6b, 0x57, 0x51, + 0x44, 0xaf, 0xb2, 0x48, 0x5a, 0x11, 0xbd, 0x5e, 0x54, 0xbd, 0xca, 0x62, 0x04, 0xc2, 0xab, 0x2c, + 0x06, 0x50, 0xbc, 0xca, 0x62, 0x08, 0xf6, 0xa0, 0xaf, 0x6b, 0x5b, 0x5d, 0xb3, 0x6f, 0xd2, 0x76, + 0x3a, 0x5b, 0xd4, 0xb2, 0xfa, 0x41, 0xdf, 0x18, 0x61, 0xf8, 0xa0, 0x6f, 0x0c, 0x91, 0x7c, 0xd0, + 0x37, 0x46, 0x80, 0xee, 0x43, 0x65, 0x5f, 0x37, 0xfb, 0x81, 0x8b, 0xdb, 0x5d, 0xdd, 0xc7, 0x3d, + 0xdb, 0x3d, 0xe1, 0x97, 0x8c, 0xd4, 0xaf, 0x39, 0xee, 0x36, 0x47, 0x89, 0xd7, 0xa9, 0x09, 0x14, + 0x7a, 0x0c, 0xf3, 0xa1, 0x24, 0x2f, 0xe8, 0x44, 0xc2, 0x2e, 0x52, 0x61, 0xf4, 0x19, 0x36, 0x47, + 0xef, 0xc6, 0x58, 0x41, 0x1e, 0x1a, 0xc7, 0xa2, 0x4d, 0xb8, 0xe8, 0x62, 0xdf, 0x3d, 0x69, 0x3b, + 0x76, 0xdf, 0xec, 0x9e, 0xb0, 0x4c, 0x06, 0xc5, 0xa3, 0xa3, 0xc8, 0x1d, 0x8a, 0x4b, 0x64, 0x34, + 0x73, 0x09, 0x54, 0xb3, 0x10, 0xf6, 0xc9, 0xb6, 0x32, 0x85, 0x6c, 0x25, 0xb7, 0x95, 0x29, 0x40, + 0xa5, 0xc4, 0xaf, 0x43, 0x1f, 0xc3, 0x5c, 0x22, 0xc8, 0xa2, 0x5f, 0x43, 0xf4, 0x98, 0xe9, 0xc9, + 0x89, 0x13, 0x66, 0xf0, 0xd2, 0xe3, 0x27, 0x02, 0x57, 0x3d, 0x7e, 0x22, 0xf0, 0xfa, 0x67, 0x19, + 0x28, 0x84, 0xbb, 0xf8, 0x5c, 0x6a, 0xb2, 0x35, 0xc8, 0x0f, 0xb0, 0x47, 0x1f, 0x2c, 0xa5, 0xe2, + 0xd4, 0x8e, 0x83, 0xc4, 0xd4, 0x8e, 0x83, 0xe4, 0xcc, 0x33, 0xfd, 0x42, 0x99, 0x67, 0x66, 0xea, + 0xcc, 0x13, 0xd3, 0x3b, 0x7a, 0xe1, 0x74, 0x08, 0xaf, 0xb6, 0x9e, 0x7f, 0xe4, 0x84, 0x37, 0xf8, + 0x22, 0x63, 0xe2, 0x06, 0x5f, 0x44, 0xa1, 0x43, 0xb8, 0x28, 0x5c, 0xbf, 0xf1, 0x3e, 0x28, 0x39, + 0x15, 0xca, 0x93, 0x1f, 0x44, 0xb4, 0x28, 0x15, 0x8b, 0x7d, 0x87, 0x09, 0xa8, 0x98, 0xba, 0x27, + 0x71, 0xc4, 0x25, 0x0c, 0xdc, 0x09, 0x7a, 0xdb, 0x7c, 0xd9, 0xf3, 0xb1, 0x4b, 0x88, 0x70, 0xd1, + 0x25, 0x44, 0x78, 0xfd, 0x7f, 0x52, 0x50, 0x96, 0xe7, 0x7b, 0x2e, 0x8e, 0xf1, 0x16, 0x14, 0xf1, + 0xb1, 0xe9, 0xb7, 0xbb, 0xb6, 0x81, 0x79, 0xfd, 0x4a, 0xed, 0x4c, 0x80, 0xb7, 0x6d, 0x43, 0xb2, + 0x73, 0x08, 0x13, 0xbd, 0x29, 0x3d, 0x95, 0x37, 0xc5, 0x6d, 0xe7, 0xcc, 0x14, 0x6d, 0x67, 0xa5, + 0x9d, 0x8a, 0xe7, 0x63, 0xa7, 0xfa, 0xd7, 0x29, 0xa8, 0x24, 0x8f, 0xba, 0x57, 0x63, 0x0b, 0xca, + 0xbb, 0x29, 0x3d, 0xf5, 0x6e, 0x7a, 0x17, 0x66, 0x49, 0x7e, 0xaa, 0xfb, 0x3e, 0x7f, 0x72, 0x9d, + 0xa1, 0x29, 0x26, 0x8b, 0x46, 0x81, 0xb5, 0x1e, 0xc2, 0xa5, 0x68, 0x24, 0xc0, 0xc7, 0x5c, 0x37, + 0x7b, 0x46, 0xd7, 0xfd, 0x24, 0x05, 0xb3, 0x3b, 0xb6, 0x11, 0xbf, 0x36, 0xfd, 0xf1, 0x85, 0xb4, + 0xfa, 0x1c, 0xcc, 0x4a, 0xb9, 0x6b, 0xfd, 0x53, 0xe6, 0x67, 0x72, 0x8a, 0xf0, 0xe3, 0x5b, 0x97, + 0x32, 0xcc, 0x88, 0x29, 0x77, 0xbd, 0x09, 0x73, 0x89, 0x0c, 0x59, 0x9c, 0x80, 0x36, 0xcd, 0x04, + 0xea, 0x77, 0x60, 0x41, 0x95, 0x3a, 0x0a, 0x51, 0x47, 0x9b, 0xe2, 0xae, 0xec, 0x1e, 0x2c, 0xa8, + 0x52, 0xc0, 0xb3, 0x0f, 0xe7, 0xd7, 0xfc, 0xde, 0x9b, 0x27, 0x6b, 0x67, 0xe6, 0xbf, 0x0b, 0xf3, + 0x8a, 0xa4, 0xed, 0xec, 0x72, 0xfe, 0x23, 0x15, 0xf6, 0x22, 0xe2, 0xcf, 0x24, 0xee, 0x42, 0xc5, + 0x09, 0x7f, 0xb4, 0x79, 0xc5, 0x9b, 0x8d, 0x1f, 0x89, 0x45, 0xb8, 0xad, 0x44, 0xe9, 0x5b, 0x96, + 0x31, 0xb2, 0x1c, 0x5e, 0x0d, 0xe7, 0x14, 0x72, 0x5a, 0x89, 0xb2, 0xb8, 0x2c, 0x63, 0x04, 0x13, + 0xe5, 0xa7, 0x38, 0x18, 0x36, 0xe1, 0x62, 0xf8, 0xb4, 0xcf, 0xea, 0x85, 0xc3, 0x2f, 0xc4, 0x09, + 0x5e, 0x8c, 0x4c, 0x8e, 0x7f, 0x2e, 0x81, 0x92, 0xaf, 0x2b, 0x8b, 0x67, 0xba, 0xae, 0xcc, 0xd6, + 0x3f, 0xd6, 0x60, 0x2e, 0xf1, 0x21, 0x09, 0xba, 0x09, 0x05, 0xfa, 0x95, 0x67, 0xdc, 0xc9, 0xa0, + 0xf6, 0xa1, 0x30, 0x69, 0x28, 0x79, 0x0e, 0x22, 0x43, 0x88, 0xbe, 0x2d, 0xe1, 0x57, 0xf7, 0x6c, + 0x07, 0x85, 0x40, 0x69, 0x07, 0x85, 0x40, 0xde, 0x04, 0xf9, 0x33, 0xb8, 0x3c, 0xf1, 0xab, 0x92, + 0x33, 0xdd, 0xdb, 0xc6, 0xdd, 0x8c, 0xcc, 0x99, 0xba, 0x19, 0xc7, 0xb0, 0xa4, 0xfe, 0xd8, 0x43, + 0xd0, 0x9e, 0x3a, 0x55, 0x7b, 0x6c, 0xff, 0xf4, 0xe9, 0xf6, 0xe7, 0x53, 0x3f, 0xa4, 0xed, 0x9f, + 0xf8, 0xa3, 0x8a, 0x1b, 0x90, 0x75, 0x6c, 0xbb, 0xef, 0xf1, 0xc7, 0x31, 0x54, 0x1d, 0x05, 0x88, + 0xea, 0x28, 0xe0, 0x05, 0x9a, 0x4d, 0xff, 0x15, 0x35, 0xf4, 0xe2, 0x6f, 0x44, 0xce, 0x69, 0x79, + 0x85, 0xc5, 0xc8, 0x4e, 0xb1, 0x19, 0x24, 0x0f, 0xce, 0x9d, 0xed, 0xc2, 0x9d, 0xdb, 0xf0, 0x1f, + 0xb5, 0xd0, 0x8b, 0x14, 0x5f, 0x86, 0x08, 0xd3, 0xd4, 0xce, 0x30, 0xcd, 0xd4, 0xa9, 0xd3, 0x4c, + 0xa6, 0x17, 0xe9, 0xb3, 0xa5, 0x17, 0x6f, 0xdc, 0x84, 0x42, 0xf8, 0x58, 0x02, 0x01, 0xe4, 0x1e, + 0xef, 0x6d, 0xec, 0x6d, 0xdc, 0xa9, 0x5c, 0x40, 0x25, 0xc8, 0xef, 0x6c, 0x3c, 0xbc, 0xb3, 0xf9, + 0xf0, 0x5e, 0x45, 0x23, 0x3f, 0x5a, 0x7b, 0x0f, 0x1f, 0x92, 0x1f, 0xa9, 0x37, 0x1e, 0x88, 0x0f, + 0x3e, 0x79, 0x7e, 0x3e, 0x03, 0x85, 0x75, 0xc7, 0xa1, 0xa1, 0x95, 0xf1, 0x6e, 0x1c, 0x99, 0x24, + 0x5e, 0x57, 0x34, 0x94, 0x87, 0xf4, 0xa3, 0x47, 0xdb, 0x95, 0x14, 0x5a, 0x80, 0xca, 0x1d, 0xac, + 0x1b, 0x7d, 0xd3, 0xc2, 0xe1, 0xe9, 0x54, 0x49, 0x37, 0x9f, 0xfd, 0xcb, 0x37, 0x2b, 0xda, 0xd7, + 0xdf, 0xac, 0x68, 0xff, 0xfd, 0xcd, 0x8a, 0xf6, 0xd9, 0xb7, 0x2b, 0x17, 0xbe, 0xfe, 0x76, 0xe5, + 0xc2, 0x7f, 0x7e, 0xbb, 0x72, 0xe1, 0x4f, 0x6f, 0xf6, 0x4c, 0xff, 0x20, 0xe8, 0x34, 0xba, 0xf6, + 0x80, 0x7f, 0xca, 0xef, 0xb8, 0x36, 0x39, 0x06, 0xf8, 0xaf, 0xb5, 0xe4, 0x37, 0xfe, 0x7f, 0x97, + 0xba, 0xb2, 0x4e, 0x7f, 0xee, 0x30, 0xba, 0xc6, 0xa6, 0xdd, 0x60, 0x00, 0xfa, 0x55, 0xb7, 0xd7, + 0xc9, 0xd1, 0xaf, 0xb7, 0xdf, 0xfa, 0x5d, 0x00, 0x00, 0x00, 0xff, 0xff, 0x9d, 0x44, 0xfb, 0x88, + 0x1e, 0x40, 0x00, 0x00, } func (m *EventSequence) Marshal() (dAtA []byte, err error) { @@ -5532,6 +5540,13 @@ func (m *CancelJob) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if len(m.Requestor) > 0 { + i -= len(m.Requestor) + copy(dAtA[i:], m.Requestor) + i = encodeVarintEvents(dAtA, i, uint64(len(m.Requestor))) + i-- + dAtA[i] = 0x22 + } if len(m.JobId) > 0 { i -= len(m.JobId) copy(dAtA[i:], m.JobId) @@ -8175,6 +8190,10 @@ func (m *CancelJob) Size() (n int) { if l > 0 { n += 1 + l + sovEvents(uint64(l)) } + l = len(m.Requestor) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } return n } @@ -12587,6 +12606,38 @@ func (m *CancelJob) Unmarshal(dAtA []byte) error { } m.JobId = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Requestor", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Requestor = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipEvents(dAtA[iNdEx:]) diff --git a/pkg/armadaevents/events.proto b/pkg/armadaevents/events.proto index 5de59708c2b..f300542df60 100644 --- a/pkg/armadaevents/events.proto +++ b/pkg/armadaevents/events.proto @@ -245,6 +245,7 @@ message CancelJob { reserved 1; string reason = 2; string job_id = 3; + string requestor = 4; } From 330c84e80cb01fd8c02ead75bf8c0d7f1c2148a4 Mon Sep 17 00:00:00 2001 From: JamesMurkin Date: Tue, 25 Aug 2026 09:26:49 +0100 Subject: [PATCH 3/3] Fix tests Signed-off-by: JamesMurkin --- internal/scheduler/retry_policy_test.go | 1 - internal/scheduler/scheduler.go | 1 - 2 files changed, 2 deletions(-) diff --git a/internal/scheduler/retry_policy_test.go b/internal/scheduler/retry_policy_test.go index a6ee6660a6a..f7bc34424b5 100644 --- a/internal/scheduler/retry_policy_test.go +++ b/internal/scheduler/retry_policy_test.go @@ -839,7 +839,6 @@ func TestRetryPolicy_FFOff_ApiPreemptionIdentity(t *testing.T) { sched.clock.Now(), ) assert.Equal(t, expected, events.Events) - assert.Equal(t, requestor, events.UserId) updated := txn.GetById(job.Id()) require.NotNil(t, updated) diff --git a/internal/scheduler/scheduler.go b/internal/scheduler/scheduler.go index 6cfd1ae6cdb..770cb2aeb90 100644 --- a/internal/scheduler/scheduler.go +++ b/internal/scheduler/scheduler.go @@ -1280,7 +1280,6 @@ func (s *Scheduler) generateUpdateMessagesFromJob(ctx *armadacontext.Context, jo CancelledJob: &armadaevents.CancelledJob{ JobId: job.Id(), Requestor: requestor, - Reason: cancelReason, }, }, }