@cratis/chronicle.contracts 15.30.2 → 15.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/generated/index.d.ts +1 -1
- package/dist/cjs/generated/index.d.ts.map +1 -1
- package/dist/cjs/generated/observation.d.ts +1 -0
- package/dist/cjs/generated/observation.d.ts.map +1 -1
- package/dist/cjs/generated/observation.js +19 -0
- package/dist/cjs/generated/observation.js.map +1 -1
- package/dist/cjs/generated/observation_reactors.d.ts +11 -0
- package/dist/cjs/generated/observation_reactors.d.ts.map +1 -1
- package/dist/cjs/generated/observation_reactors.js +67 -1
- package/dist/cjs/generated/observation_reactors.js.map +1 -1
- package/dist/cjs/generated/observation_reducers.d.ts +11 -0
- package/dist/cjs/generated/observation_reducers.d.ts.map +1 -1
- package/dist/cjs/generated/observation_reducers.js +67 -1
- package/dist/cjs/generated/observation_reducers.js.map +1 -1
- package/dist/cjs/index.js +6 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/generated/index.d.ts +1 -1
- package/dist/esm/generated/index.d.ts.map +1 -1
- package/dist/esm/generated/observation.d.ts +1 -0
- package/dist/esm/generated/observation.d.ts.map +1 -1
- package/dist/esm/generated/observation.js +19 -0
- package/dist/esm/generated/observation.js.map +1 -1
- package/dist/esm/generated/observation_reactors.d.ts +11 -0
- package/dist/esm/generated/observation_reactors.d.ts.map +1 -1
- package/dist/esm/generated/observation_reactors.js +66 -2
- package/dist/esm/generated/observation_reactors.js.map +1 -1
- package/dist/esm/generated/observation_reducers.d.ts +11 -0
- package/dist/esm/generated/observation_reducers.d.ts.map +1 -1
- package/dist/esm/generated/observation_reducers.js +66 -2
- package/dist/esm/generated/observation_reducers.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/generated/index.d.ts +1 -1
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/generated/index.js +1 -1
- package/dist/generated/index.js.map +1 -1
- package/dist/generated/observation.d.ts +1 -0
- package/dist/generated/observation.d.ts.map +1 -1
- package/dist/generated/observation.js +19 -0
- package/dist/generated/observation.js.map +1 -1
- package/dist/generated/observation_reactors.d.ts +11 -0
- package/dist/generated/observation_reactors.d.ts.map +1 -1
- package/dist/generated/observation_reactors.js +65 -1
- package/dist/generated/observation_reactors.js.map +1 -1
- package/dist/generated/observation_reducers.d.ts +11 -0
- package/dist/generated/observation_reducers.d.ts.map +1 -1
- package/dist/generated/observation_reducers.js +65 -1
- package/dist/generated/observation_reducers.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/generated/index.ts +1 -1
- package/generated/observation.ts +21 -0
- package/generated/observation_reactors.ts +69 -1
- package/generated/observation_reducers.ts +69 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"observation.js","sources":["../../../generated/observation.ts"],"sourcesContent":["// Code generated by protoc-gen-ts_proto. DO NOT EDIT.\n// versions:\n// protoc-gen-ts_proto v2.11.8\n// protoc v5.28.3\n// source: observation.proto\n\n/* eslint-disable */\nimport { BinaryReader, BinaryWriter } from \"@bufbuild/protobuf/wire\";\nimport type { CallContext, CallOptions } from \"nice-grpc-common\";\nimport { Empty } from \"./google/protobuf/empty\";\nimport { Guid } from \"./protobuf-net/bcl\";\n\nexport const protobufPackage = \"Cratis.Chronicle.Contracts.Observation\";\n\nexport enum ObserverOwner {\n None = 0,\n Client = 1,\n Kernel = 2,\n UNRECOGNIZED = -1,\n}\n\nexport function observerOwnerFromJSON(object: any): ObserverOwner {\n switch (object) {\n case 0:\n case \"None\":\n return ObserverOwner.None;\n case 1:\n case \"Client\":\n return ObserverOwner.Client;\n case 2:\n case \"Kernel\":\n return ObserverOwner.Kernel;\n case -1:\n case \"UNRECOGNIZED\":\n default:\n return ObserverOwner.UNRECOGNIZED;\n }\n}\n\nexport function observerOwnerToJSON(object: ObserverOwner): string {\n switch (object) {\n case ObserverOwner.None:\n return \"None\";\n case ObserverOwner.Client:\n return \"Client\";\n case ObserverOwner.Kernel:\n return \"Kernel\";\n case ObserverOwner.UNRECOGNIZED:\n default:\n return \"UNRECOGNIZED\";\n }\n}\n\nexport enum ObserverRunningState {\n OBSERVER_RUNNING_STATE_Unknown = 0,\n Active = 1,\n Suspended = 2,\n Replaying = 3,\n Disconnected = 4,\n Quarantined = 5,\n UNRECOGNIZED = -1,\n}\n\nexport function observerRunningStateFromJSON(object: any): ObserverRunningState {\n switch (object) {\n case 0:\n case \"OBSERVER_RUNNING_STATE_Unknown\":\n return ObserverRunningState.OBSERVER_RUNNING_STATE_Unknown;\n case 1:\n case \"Active\":\n return ObserverRunningState.Active;\n case 2:\n case \"Suspended\":\n return ObserverRunningState.Suspended;\n case 3:\n case \"Replaying\":\n return ObserverRunningState.Replaying;\n case 4:\n case \"Disconnected\":\n return ObserverRunningState.Disconnected;\n case 5:\n case \"Quarantined\":\n return ObserverRunningState.Quarantined;\n case -1:\n case \"UNRECOGNIZED\":\n default:\n return ObserverRunningState.UNRECOGNIZED;\n }\n}\n\nexport function observerRunningStateToJSON(object: ObserverRunningState): string {\n switch (object) {\n case ObserverRunningState.OBSERVER_RUNNING_STATE_Unknown:\n return \"OBSERVER_RUNNING_STATE_Unknown\";\n case ObserverRunningState.Active:\n return \"Active\";\n case ObserverRunningState.Suspended:\n return \"Suspended\";\n case ObserverRunningState.Replaying:\n return \"Replaying\";\n case ObserverRunningState.Disconnected:\n return \"Disconnected\";\n case ObserverRunningState.Quarantined:\n return \"Quarantined\";\n case ObserverRunningState.UNRECOGNIZED:\n default:\n return \"UNRECOGNIZED\";\n }\n}\n\nexport enum ObserverType {\n OBSERVER_TYPE_Unknown = 0,\n Reactor = 1,\n Projection = 2,\n Reducer = 3,\n External = 4,\n UNRECOGNIZED = -1,\n}\n\nexport function observerTypeFromJSON(object: any): ObserverType {\n switch (object) {\n case 0:\n case \"OBSERVER_TYPE_Unknown\":\n return ObserverType.OBSERVER_TYPE_Unknown;\n case 1:\n case \"Reactor\":\n return ObserverType.Reactor;\n case 2:\n case \"Projection\":\n return ObserverType.Projection;\n case 3:\n case \"Reducer\":\n return ObserverType.Reducer;\n case 4:\n case \"External\":\n return ObserverType.External;\n case -1:\n case \"UNRECOGNIZED\":\n default:\n return ObserverType.UNRECOGNIZED;\n }\n}\n\nexport function observerTypeToJSON(object: ObserverType): string {\n switch (object) {\n case ObserverType.OBSERVER_TYPE_Unknown:\n return \"OBSERVER_TYPE_Unknown\";\n case ObserverType.Reactor:\n return \"Reactor\";\n case ObserverType.Projection:\n return \"Projection\";\n case ObserverType.Reducer:\n return \"Reducer\";\n case ObserverType.External:\n return \"External\";\n case ObserverType.UNRECOGNIZED:\n default:\n return \"UNRECOGNIZED\";\n }\n}\n\nexport interface AllObserversRequest {\n EventStore: string;\n Namespace: string;\n}\n\nexport interface ClearObserverQuarantine {\n EventStore: string;\n Namespace: string;\n ObserverId: string;\n EventSequenceId: string;\n}\n\nexport interface EventType {\n Id: string;\n Generation: number;\n Tombstone: boolean;\n}\n\nexport interface FailedPartition {\n /** default value could not be applied: 00000000-0000-0000-0000-000000000000 */\n Id: Guid | undefined;\n ObserverId: string;\n Partition: string;\n Attempts: FailedPartitionAttempt[];\n}\n\nexport interface FailedPartitionAttempt {\n Occurred: SerializableDateTimeOffset | undefined;\n SequenceNumber: bigint;\n Messages: string[];\n StackTrace: string;\n}\n\nexport interface GetFailedPartitionsRequest {\n EventStore: string;\n Namespace: string;\n ObserverId: string;\n}\n\nexport interface GetObserverInformationRequest {\n EventStore: string;\n Namespace: string;\n ObserverId: string;\n EventSequenceId: string;\n}\n\nexport interface GetReplayableObserversForEventTypesRequest {\n EventStore: string;\n Namespace: string;\n EventTypes: EventType[];\n}\n\nexport interface IEnumerableFailedPartition {\n items: FailedPartition[];\n}\n\nexport interface IEnumerableObserverInformation {\n items: ObserverInformation[];\n}\n\nexport interface ObserverInformation {\n Id: string;\n EventSequenceId: string;\n Type: ObserverType;\n Owner: ObserverOwner;\n EventTypes: EventType[];\n NextEventSequenceNumber: bigint;\n LastHandledEventSequenceNumber: bigint;\n RunningState: ObserverRunningState;\n IsSubscribed: boolean;\n /** default value could not be applied: True */\n IsReplayable: boolean;\n}\n\nexport interface Replay {\n EventStore: string;\n Namespace: string;\n ObserverId: string;\n EventSequenceId: string;\n}\n\nexport interface ReplayPartition {\n EventStore: string;\n Namespace: string;\n ObserverId: string;\n EventSequenceId: string;\n Partition: string;\n}\n\nexport interface RetryPartition {\n EventStore: string;\n Namespace: string;\n ObserverId: string;\n EventSequenceId: string;\n Partition: string;\n}\n\n/** Represents a DateTimeOffset value as an ISO 8601 string (e.g., \"2024-01-15T12:30:00.0000000+02:00\"). */\nexport interface SerializableDateTimeOffset {\n Value: string;\n}\n\nexport interface WaitForObserverCompletionRequest {\n EventStore: string;\n Namespace: string;\n EventSequenceId: string;\n TailEventSequenceNumber: bigint;\n}\n\nexport interface WaitForObserverCompletionResponse {\n IsSuccess: boolean;\n FailedPartitions: FailedPartition[];\n}\n\nfunction createBaseAllObserversRequest(): AllObserversRequest {\n return { EventStore: \"\", Namespace: \"\" };\n}\n\nexport const AllObserversRequest: MessageFns<AllObserversRequest> = {\n encode(message: AllObserversRequest, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.EventStore !== \"\") {\n writer.uint32(10).string(message.EventStore);\n }\n if (message.Namespace !== \"\") {\n writer.uint32(18).string(message.Namespace);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): AllObserversRequest {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseAllObserversRequest();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.EventStore = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.Namespace = reader.string();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): AllObserversRequest {\n return {\n EventStore: isSet(object.EventStore) ? globalThis.String(object.EventStore) : \"\",\n Namespace: isSet(object.Namespace) ? globalThis.String(object.Namespace) : \"\",\n };\n },\n\n toJSON(message: AllObserversRequest): unknown {\n const obj: any = {};\n if (message.EventStore !== \"\") {\n obj.EventStore = message.EventStore;\n }\n if (message.Namespace !== \"\") {\n obj.Namespace = message.Namespace;\n }\n return obj;\n },\n\n create(base?: DeepPartial<AllObserversRequest>): AllObserversRequest {\n return AllObserversRequest.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<AllObserversRequest>): AllObserversRequest {\n const message = createBaseAllObserversRequest();\n message.EventStore = object.EventStore ?? \"\";\n message.Namespace = object.Namespace ?? \"\";\n return message;\n },\n};\n\nfunction createBaseClearObserverQuarantine(): ClearObserverQuarantine {\n return { EventStore: \"\", Namespace: \"\", ObserverId: \"\", EventSequenceId: \"\" };\n}\n\nexport const ClearObserverQuarantine: MessageFns<ClearObserverQuarantine> = {\n encode(message: ClearObserverQuarantine, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.EventStore !== \"\") {\n writer.uint32(10).string(message.EventStore);\n }\n if (message.Namespace !== \"\") {\n writer.uint32(18).string(message.Namespace);\n }\n if (message.ObserverId !== \"\") {\n writer.uint32(26).string(message.ObserverId);\n }\n if (message.EventSequenceId !== \"\") {\n writer.uint32(34).string(message.EventSequenceId);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): ClearObserverQuarantine {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseClearObserverQuarantine();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.EventStore = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.Namespace = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.ObserverId = reader.string();\n continue;\n }\n case 4: {\n if (tag !== 34) {\n break;\n }\n\n message.EventSequenceId = reader.string();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): ClearObserverQuarantine {\n return {\n EventStore: isSet(object.EventStore) ? globalThis.String(object.EventStore) : \"\",\n Namespace: isSet(object.Namespace) ? globalThis.String(object.Namespace) : \"\",\n ObserverId: isSet(object.ObserverId) ? globalThis.String(object.ObserverId) : \"\",\n EventSequenceId: isSet(object.EventSequenceId) ? globalThis.String(object.EventSequenceId) : \"\",\n };\n },\n\n toJSON(message: ClearObserverQuarantine): unknown {\n const obj: any = {};\n if (message.EventStore !== \"\") {\n obj.EventStore = message.EventStore;\n }\n if (message.Namespace !== \"\") {\n obj.Namespace = message.Namespace;\n }\n if (message.ObserverId !== \"\") {\n obj.ObserverId = message.ObserverId;\n }\n if (message.EventSequenceId !== \"\") {\n obj.EventSequenceId = message.EventSequenceId;\n }\n return obj;\n },\n\n create(base?: DeepPartial<ClearObserverQuarantine>): ClearObserverQuarantine {\n return ClearObserverQuarantine.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<ClearObserverQuarantine>): ClearObserverQuarantine {\n const message = createBaseClearObserverQuarantine();\n message.EventStore = object.EventStore ?? \"\";\n message.Namespace = object.Namespace ?? \"\";\n message.ObserverId = object.ObserverId ?? \"\";\n message.EventSequenceId = object.EventSequenceId ?? \"\";\n return message;\n },\n};\n\nfunction createBaseEventType(): EventType {\n return { Id: \"\", Generation: 0, Tombstone: false };\n}\n\nexport const EventType: MessageFns<EventType> = {\n encode(message: EventType, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.Id !== \"\") {\n writer.uint32(10).string(message.Id);\n }\n if (message.Generation !== 0) {\n writer.uint32(16).uint32(message.Generation);\n }\n if (message.Tombstone !== false) {\n writer.uint32(24).bool(message.Tombstone);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): EventType {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseEventType();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.Id = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 16) {\n break;\n }\n\n message.Generation = reader.uint32();\n continue;\n }\n case 3: {\n if (tag !== 24) {\n break;\n }\n\n message.Tombstone = reader.bool();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): EventType {\n return {\n Id: isSet(object.Id) ? globalThis.String(object.Id) : \"\",\n Generation: isSet(object.Generation) ? globalThis.Number(object.Generation) : 0,\n Tombstone: isSet(object.Tombstone) ? globalThis.Boolean(object.Tombstone) : false,\n };\n },\n\n toJSON(message: EventType): unknown {\n const obj: any = {};\n if (message.Id !== \"\") {\n obj.Id = message.Id;\n }\n if (message.Generation !== 0) {\n obj.Generation = Math.round(message.Generation);\n }\n if (message.Tombstone !== false) {\n obj.Tombstone = message.Tombstone;\n }\n return obj;\n },\n\n create(base?: DeepPartial<EventType>): EventType {\n return EventType.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<EventType>): EventType {\n const message = createBaseEventType();\n message.Id = object.Id ?? \"\";\n message.Generation = object.Generation ?? 0;\n message.Tombstone = object.Tombstone ?? false;\n return message;\n },\n};\n\nfunction createBaseFailedPartition(): FailedPartition {\n return { Id: undefined, ObserverId: \"\", Partition: \"\", Attempts: [] };\n}\n\nexport const FailedPartition: MessageFns<FailedPartition> = {\n encode(message: FailedPartition, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.Id !== undefined) {\n Guid.encode(message.Id, writer.uint32(10).fork()).join();\n }\n if (message.ObserverId !== \"\") {\n writer.uint32(18).string(message.ObserverId);\n }\n if (message.Partition !== \"\") {\n writer.uint32(26).string(message.Partition);\n }\n for (const v of message.Attempts) {\n FailedPartitionAttempt.encode(v!, writer.uint32(34).fork()).join();\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): FailedPartition {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseFailedPartition();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.Id = Guid.decode(reader, reader.uint32());\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.ObserverId = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.Partition = reader.string();\n continue;\n }\n case 4: {\n if (tag !== 34) {\n break;\n }\n\n message.Attempts.push(FailedPartitionAttempt.decode(reader, reader.uint32()));\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): FailedPartition {\n return {\n Id: isSet(object.Id) ? Guid.fromJSON(object.Id) : undefined,\n ObserverId: isSet(object.ObserverId) ? globalThis.String(object.ObserverId) : \"\",\n Partition: isSet(object.Partition) ? globalThis.String(object.Partition) : \"\",\n Attempts: globalThis.Array.isArray(object?.Attempts)\n ? object.Attempts.map((e: any) => FailedPartitionAttempt.fromJSON(e))\n : [],\n };\n },\n\n toJSON(message: FailedPartition): unknown {\n const obj: any = {};\n if (message.Id !== undefined) {\n obj.Id = Guid.toJSON(message.Id);\n }\n if (message.ObserverId !== \"\") {\n obj.ObserverId = message.ObserverId;\n }\n if (message.Partition !== \"\") {\n obj.Partition = message.Partition;\n }\n if (message.Attempts?.length) {\n obj.Attempts = message.Attempts.map((e) => FailedPartitionAttempt.toJSON(e));\n }\n return obj;\n },\n\n create(base?: DeepPartial<FailedPartition>): FailedPartition {\n return FailedPartition.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<FailedPartition>): FailedPartition {\n const message = createBaseFailedPartition();\n message.Id = (object.Id !== undefined && object.Id !== null) ? Guid.fromPartial(object.Id) : undefined;\n message.ObserverId = object.ObserverId ?? \"\";\n message.Partition = object.Partition ?? \"\";\n message.Attempts = object.Attempts?.map((e) => FailedPartitionAttempt.fromPartial(e)) || [];\n return message;\n },\n};\n\nfunction createBaseFailedPartitionAttempt(): FailedPartitionAttempt {\n return { Occurred: undefined, SequenceNumber: 0n, Messages: [], StackTrace: \"\" };\n}\n\nexport const FailedPartitionAttempt: MessageFns<FailedPartitionAttempt> = {\n encode(message: FailedPartitionAttempt, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.Occurred !== undefined) {\n SerializableDateTimeOffset.encode(message.Occurred, writer.uint32(10).fork()).join();\n }\n if (message.SequenceNumber !== 0n) {\n if (BigInt.asUintN(64, message.SequenceNumber) !== message.SequenceNumber) {\n throw new globalThis.Error(\"value provided for field message.SequenceNumber of type uint64 too large\");\n }\n writer.uint32(16).uint64(message.SequenceNumber);\n }\n for (const v of message.Messages) {\n writer.uint32(26).string(v!);\n }\n if (message.StackTrace !== \"\") {\n writer.uint32(34).string(message.StackTrace);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): FailedPartitionAttempt {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseFailedPartitionAttempt();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.Occurred = SerializableDateTimeOffset.decode(reader, reader.uint32());\n continue;\n }\n case 2: {\n if (tag !== 16) {\n break;\n }\n\n message.SequenceNumber = reader.uint64() as bigint;\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.Messages.push(reader.string());\n continue;\n }\n case 4: {\n if (tag !== 34) {\n break;\n }\n\n message.StackTrace = reader.string();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): FailedPartitionAttempt {\n return {\n Occurred: isSet(object.Occurred) ? SerializableDateTimeOffset.fromJSON(object.Occurred) : undefined,\n SequenceNumber: isSet(object.SequenceNumber) ? BigInt(object.SequenceNumber) : 0n,\n Messages: globalThis.Array.isArray(object?.Messages) ? object.Messages.map((e: any) => globalThis.String(e)) : [],\n StackTrace: isSet(object.StackTrace) ? globalThis.String(object.StackTrace) : \"\",\n };\n },\n\n toJSON(message: FailedPartitionAttempt): unknown {\n const obj: any = {};\n if (message.Occurred !== undefined) {\n obj.Occurred = SerializableDateTimeOffset.toJSON(message.Occurred);\n }\n if (message.SequenceNumber !== 0n) {\n obj.SequenceNumber = message.SequenceNumber.toString();\n }\n if (message.Messages?.length) {\n obj.Messages = message.Messages;\n }\n if (message.StackTrace !== \"\") {\n obj.StackTrace = message.StackTrace;\n }\n return obj;\n },\n\n create(base?: DeepPartial<FailedPartitionAttempt>): FailedPartitionAttempt {\n return FailedPartitionAttempt.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<FailedPartitionAttempt>): FailedPartitionAttempt {\n const message = createBaseFailedPartitionAttempt();\n message.Occurred = (object.Occurred !== undefined && object.Occurred !== null)\n ? SerializableDateTimeOffset.fromPartial(object.Occurred)\n : undefined;\n message.SequenceNumber = object.SequenceNumber ?? 0n;\n message.Messages = object.Messages?.map((e) => e) || [];\n message.StackTrace = object.StackTrace ?? \"\";\n return message;\n },\n};\n\nfunction createBaseGetFailedPartitionsRequest(): GetFailedPartitionsRequest {\n return { EventStore: \"\", Namespace: \"\", ObserverId: \"\" };\n}\n\nexport const GetFailedPartitionsRequest: MessageFns<GetFailedPartitionsRequest> = {\n encode(message: GetFailedPartitionsRequest, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.EventStore !== \"\") {\n writer.uint32(10).string(message.EventStore);\n }\n if (message.Namespace !== \"\") {\n writer.uint32(18).string(message.Namespace);\n }\n if (message.ObserverId !== \"\") {\n writer.uint32(26).string(message.ObserverId);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): GetFailedPartitionsRequest {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseGetFailedPartitionsRequest();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.EventStore = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.Namespace = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.ObserverId = reader.string();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): GetFailedPartitionsRequest {\n return {\n EventStore: isSet(object.EventStore) ? globalThis.String(object.EventStore) : \"\",\n Namespace: isSet(object.Namespace) ? globalThis.String(object.Namespace) : \"\",\n ObserverId: isSet(object.ObserverId) ? globalThis.String(object.ObserverId) : \"\",\n };\n },\n\n toJSON(message: GetFailedPartitionsRequest): unknown {\n const obj: any = {};\n if (message.EventStore !== \"\") {\n obj.EventStore = message.EventStore;\n }\n if (message.Namespace !== \"\") {\n obj.Namespace = message.Namespace;\n }\n if (message.ObserverId !== \"\") {\n obj.ObserverId = message.ObserverId;\n }\n return obj;\n },\n\n create(base?: DeepPartial<GetFailedPartitionsRequest>): GetFailedPartitionsRequest {\n return GetFailedPartitionsRequest.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<GetFailedPartitionsRequest>): GetFailedPartitionsRequest {\n const message = createBaseGetFailedPartitionsRequest();\n message.EventStore = object.EventStore ?? \"\";\n message.Namespace = object.Namespace ?? \"\";\n message.ObserverId = object.ObserverId ?? \"\";\n return message;\n },\n};\n\nfunction createBaseGetObserverInformationRequest(): GetObserverInformationRequest {\n return { EventStore: \"\", Namespace: \"\", ObserverId: \"\", EventSequenceId: \"\" };\n}\n\nexport const GetObserverInformationRequest: MessageFns<GetObserverInformationRequest> = {\n encode(message: GetObserverInformationRequest, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.EventStore !== \"\") {\n writer.uint32(10).string(message.EventStore);\n }\n if (message.Namespace !== \"\") {\n writer.uint32(18).string(message.Namespace);\n }\n if (message.ObserverId !== \"\") {\n writer.uint32(26).string(message.ObserverId);\n }\n if (message.EventSequenceId !== \"\") {\n writer.uint32(34).string(message.EventSequenceId);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): GetObserverInformationRequest {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseGetObserverInformationRequest();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.EventStore = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.Namespace = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.ObserverId = reader.string();\n continue;\n }\n case 4: {\n if (tag !== 34) {\n break;\n }\n\n message.EventSequenceId = reader.string();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): GetObserverInformationRequest {\n return {\n EventStore: isSet(object.EventStore) ? globalThis.String(object.EventStore) : \"\",\n Namespace: isSet(object.Namespace) ? globalThis.String(object.Namespace) : \"\",\n ObserverId: isSet(object.ObserverId) ? globalThis.String(object.ObserverId) : \"\",\n EventSequenceId: isSet(object.EventSequenceId) ? globalThis.String(object.EventSequenceId) : \"\",\n };\n },\n\n toJSON(message: GetObserverInformationRequest): unknown {\n const obj: any = {};\n if (message.EventStore !== \"\") {\n obj.EventStore = message.EventStore;\n }\n if (message.Namespace !== \"\") {\n obj.Namespace = message.Namespace;\n }\n if (message.ObserverId !== \"\") {\n obj.ObserverId = message.ObserverId;\n }\n if (message.EventSequenceId !== \"\") {\n obj.EventSequenceId = message.EventSequenceId;\n }\n return obj;\n },\n\n create(base?: DeepPartial<GetObserverInformationRequest>): GetObserverInformationRequest {\n return GetObserverInformationRequest.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<GetObserverInformationRequest>): GetObserverInformationRequest {\n const message = createBaseGetObserverInformationRequest();\n message.EventStore = object.EventStore ?? \"\";\n message.Namespace = object.Namespace ?? \"\";\n message.ObserverId = object.ObserverId ?? \"\";\n message.EventSequenceId = object.EventSequenceId ?? \"\";\n return message;\n },\n};\n\nfunction createBaseGetReplayableObserversForEventTypesRequest(): GetReplayableObserversForEventTypesRequest {\n return { EventStore: \"\", Namespace: \"\", EventTypes: [] };\n}\n\nexport const GetReplayableObserversForEventTypesRequest: MessageFns<GetReplayableObserversForEventTypesRequest> = {\n encode(message: GetReplayableObserversForEventTypesRequest, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.EventStore !== \"\") {\n writer.uint32(10).string(message.EventStore);\n }\n if (message.Namespace !== \"\") {\n writer.uint32(18).string(message.Namespace);\n }\n for (const v of message.EventTypes) {\n EventType.encode(v!, writer.uint32(26).fork()).join();\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): GetReplayableObserversForEventTypesRequest {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseGetReplayableObserversForEventTypesRequest();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.EventStore = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.Namespace = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.EventTypes.push(EventType.decode(reader, reader.uint32()));\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): GetReplayableObserversForEventTypesRequest {\n return {\n EventStore: isSet(object.EventStore) ? globalThis.String(object.EventStore) : \"\",\n Namespace: isSet(object.Namespace) ? globalThis.String(object.Namespace) : \"\",\n EventTypes: globalThis.Array.isArray(object?.EventTypes)\n ? object.EventTypes.map((e: any) => EventType.fromJSON(e))\n : [],\n };\n },\n\n toJSON(message: GetReplayableObserversForEventTypesRequest): unknown {\n const obj: any = {};\n if (message.EventStore !== \"\") {\n obj.EventStore = message.EventStore;\n }\n if (message.Namespace !== \"\") {\n obj.Namespace = message.Namespace;\n }\n if (message.EventTypes?.length) {\n obj.EventTypes = message.EventTypes.map((e) => EventType.toJSON(e));\n }\n return obj;\n },\n\n create(base?: DeepPartial<GetReplayableObserversForEventTypesRequest>): GetReplayableObserversForEventTypesRequest {\n return GetReplayableObserversForEventTypesRequest.fromPartial(base ?? {});\n },\n fromPartial(\n object: DeepPartial<GetReplayableObserversForEventTypesRequest>,\n ): GetReplayableObserversForEventTypesRequest {\n const message = createBaseGetReplayableObserversForEventTypesRequest();\n message.EventStore = object.EventStore ?? \"\";\n message.Namespace = object.Namespace ?? \"\";\n message.EventTypes = object.EventTypes?.map((e) => EventType.fromPartial(e)) || [];\n return message;\n },\n};\n\nfunction createBaseIEnumerableFailedPartition(): IEnumerableFailedPartition {\n return { items: [] };\n}\n\nexport const IEnumerableFailedPartition: MessageFns<IEnumerableFailedPartition> = {\n encode(message: IEnumerableFailedPartition, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n for (const v of message.items) {\n FailedPartition.encode(v!, writer.uint32(10).fork()).join();\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): IEnumerableFailedPartition {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseIEnumerableFailedPartition();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.items.push(FailedPartition.decode(reader, reader.uint32()));\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): IEnumerableFailedPartition {\n return {\n items: globalThis.Array.isArray(object?.items) ? object.items.map((e: any) => FailedPartition.fromJSON(e)) : [],\n };\n },\n\n toJSON(message: IEnumerableFailedPartition): unknown {\n const obj: any = {};\n if (message.items?.length) {\n obj.items = message.items.map((e) => FailedPartition.toJSON(e));\n }\n return obj;\n },\n\n create(base?: DeepPartial<IEnumerableFailedPartition>): IEnumerableFailedPartition {\n return IEnumerableFailedPartition.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<IEnumerableFailedPartition>): IEnumerableFailedPartition {\n const message = createBaseIEnumerableFailedPartition();\n message.items = object.items?.map((e) => FailedPartition.fromPartial(e)) || [];\n return message;\n },\n};\n\nfunction createBaseIEnumerableObserverInformation(): IEnumerableObserverInformation {\n return { items: [] };\n}\n\nexport const IEnumerableObserverInformation: MessageFns<IEnumerableObserverInformation> = {\n encode(message: IEnumerableObserverInformation, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n for (const v of message.items) {\n ObserverInformation.encode(v!, writer.uint32(10).fork()).join();\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): IEnumerableObserverInformation {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseIEnumerableObserverInformation();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.items.push(ObserverInformation.decode(reader, reader.uint32()));\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): IEnumerableObserverInformation {\n return {\n items: globalThis.Array.isArray(object?.items)\n ? object.items.map((e: any) => ObserverInformation.fromJSON(e))\n : [],\n };\n },\n\n toJSON(message: IEnumerableObserverInformation): unknown {\n const obj: any = {};\n if (message.items?.length) {\n obj.items = message.items.map((e) => ObserverInformation.toJSON(e));\n }\n return obj;\n },\n\n create(base?: DeepPartial<IEnumerableObserverInformation>): IEnumerableObserverInformation {\n return IEnumerableObserverInformation.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<IEnumerableObserverInformation>): IEnumerableObserverInformation {\n const message = createBaseIEnumerableObserverInformation();\n message.items = object.items?.map((e) => ObserverInformation.fromPartial(e)) || [];\n return message;\n },\n};\n\nfunction createBaseObserverInformation(): ObserverInformation {\n return {\n Id: \"\",\n EventSequenceId: \"\",\n Type: 0,\n Owner: 0,\n EventTypes: [],\n NextEventSequenceNumber: 0n,\n LastHandledEventSequenceNumber: 0n,\n RunningState: 0,\n IsSubscribed: false,\n IsReplayable: false,\n };\n}\n\nexport const ObserverInformation: MessageFns<ObserverInformation> = {\n encode(message: ObserverInformation, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.Id !== \"\") {\n writer.uint32(10).string(message.Id);\n }\n if (message.EventSequenceId !== \"\") {\n writer.uint32(18).string(message.EventSequenceId);\n }\n if (message.Type !== 0) {\n writer.uint32(24).int32(message.Type);\n }\n if (message.Owner !== 0) {\n writer.uint32(32).int32(message.Owner);\n }\n for (const v of message.EventTypes) {\n EventType.encode(v!, writer.uint32(42).fork()).join();\n }\n if (message.NextEventSequenceNumber !== 0n) {\n if (BigInt.asUintN(64, message.NextEventSequenceNumber) !== message.NextEventSequenceNumber) {\n throw new globalThis.Error(\"value provided for field message.NextEventSequenceNumber of type uint64 too large\");\n }\n writer.uint32(48).uint64(message.NextEventSequenceNumber);\n }\n if (message.LastHandledEventSequenceNumber !== 0n) {\n if (BigInt.asUintN(64, message.LastHandledEventSequenceNumber) !== message.LastHandledEventSequenceNumber) {\n throw new globalThis.Error(\n \"value provided for field message.LastHandledEventSequenceNumber of type uint64 too large\",\n );\n }\n writer.uint32(56).uint64(message.LastHandledEventSequenceNumber);\n }\n if (message.RunningState !== 0) {\n writer.uint32(64).int32(message.RunningState);\n }\n if (message.IsSubscribed !== false) {\n writer.uint32(72).bool(message.IsSubscribed);\n }\n if (message.IsReplayable !== false) {\n writer.uint32(80).bool(message.IsReplayable);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): ObserverInformation {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseObserverInformation();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.Id = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.EventSequenceId = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 24) {\n break;\n }\n\n message.Type = reader.int32() as any;\n continue;\n }\n case 4: {\n if (tag !== 32) {\n break;\n }\n\n message.Owner = reader.int32() as any;\n continue;\n }\n case 5: {\n if (tag !== 42) {\n break;\n }\n\n message.EventTypes.push(EventType.decode(reader, reader.uint32()));\n continue;\n }\n case 6: {\n if (tag !== 48) {\n break;\n }\n\n message.NextEventSequenceNumber = reader.uint64() as bigint;\n continue;\n }\n case 7: {\n if (tag !== 56) {\n break;\n }\n\n message.LastHandledEventSequenceNumber = reader.uint64() as bigint;\n continue;\n }\n case 8: {\n if (tag !== 64) {\n break;\n }\n\n message.RunningState = reader.int32() as any;\n continue;\n }\n case 9: {\n if (tag !== 72) {\n break;\n }\n\n message.IsSubscribed = reader.bool();\n continue;\n }\n case 10: {\n if (tag !== 80) {\n break;\n }\n\n message.IsReplayable = reader.bool();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): ObserverInformation {\n return {\n Id: isSet(object.Id) ? globalThis.String(object.Id) : \"\",\n EventSequenceId: isSet(object.EventSequenceId) ? globalThis.String(object.EventSequenceId) : \"\",\n Type: isSet(object.Type) ? observerTypeFromJSON(object.Type) : 0,\n Owner: isSet(object.Owner) ? observerOwnerFromJSON(object.Owner) : 0,\n EventTypes: globalThis.Array.isArray(object?.EventTypes)\n ? object.EventTypes.map((e: any) => EventType.fromJSON(e))\n : [],\n NextEventSequenceNumber: isSet(object.NextEventSequenceNumber) ? BigInt(object.NextEventSequenceNumber) : 0n,\n LastHandledEventSequenceNumber: isSet(object.LastHandledEventSequenceNumber)\n ? BigInt(object.LastHandledEventSequenceNumber)\n : 0n,\n RunningState: isSet(object.RunningState) ? observerRunningStateFromJSON(object.RunningState) : 0,\n IsSubscribed: isSet(object.IsSubscribed) ? globalThis.Boolean(object.IsSubscribed) : false,\n IsReplayable: isSet(object.IsReplayable) ? globalThis.Boolean(object.IsReplayable) : false,\n };\n },\n\n toJSON(message: ObserverInformation): unknown {\n const obj: any = {};\n if (message.Id !== \"\") {\n obj.Id = message.Id;\n }\n if (message.EventSequenceId !== \"\") {\n obj.EventSequenceId = message.EventSequenceId;\n }\n if (message.Type !== 0) {\n obj.Type = observerTypeToJSON(message.Type);\n }\n if (message.Owner !== 0) {\n obj.Owner = observerOwnerToJSON(message.Owner);\n }\n if (message.EventTypes?.length) {\n obj.EventTypes = message.EventTypes.map((e) => EventType.toJSON(e));\n }\n if (message.NextEventSequenceNumber !== 0n) {\n obj.NextEventSequenceNumber = message.NextEventSequenceNumber.toString();\n }\n if (message.LastHandledEventSequenceNumber !== 0n) {\n obj.LastHandledEventSequenceNumber = message.LastHandledEventSequenceNumber.toString();\n }\n if (message.RunningState !== 0) {\n obj.RunningState = observerRunningStateToJSON(message.RunningState);\n }\n if (message.IsSubscribed !== false) {\n obj.IsSubscribed = message.IsSubscribed;\n }\n if (message.IsReplayable !== false) {\n obj.IsReplayable = message.IsReplayable;\n }\n return obj;\n },\n\n create(base?: DeepPartial<ObserverInformation>): ObserverInformation {\n return ObserverInformation.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<ObserverInformation>): ObserverInformation {\n const message = createBaseObserverInformation();\n message.Id = object.Id ?? \"\";\n message.EventSequenceId = object.EventSequenceId ?? \"\";\n message.Type = object.Type ?? 0;\n message.Owner = object.Owner ?? 0;\n message.EventTypes = object.EventTypes?.map((e) => EventType.fromPartial(e)) || [];\n message.NextEventSequenceNumber = object.NextEventSequenceNumber ?? 0n;\n message.LastHandledEventSequenceNumber = object.LastHandledEventSequenceNumber ?? 0n;\n message.RunningState = object.RunningState ?? 0;\n message.IsSubscribed = object.IsSubscribed ?? false;\n message.IsReplayable = object.IsReplayable ?? false;\n return message;\n },\n};\n\nfunction createBaseReplay(): Replay {\n return { EventStore: \"\", Namespace: \"\", ObserverId: \"\", EventSequenceId: \"\" };\n}\n\nexport const Replay: MessageFns<Replay> = {\n encode(message: Replay, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.EventStore !== \"\") {\n writer.uint32(10).string(message.EventStore);\n }\n if (message.Namespace !== \"\") {\n writer.uint32(18).string(message.Namespace);\n }\n if (message.ObserverId !== \"\") {\n writer.uint32(26).string(message.ObserverId);\n }\n if (message.EventSequenceId !== \"\") {\n writer.uint32(34).string(message.EventSequenceId);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): Replay {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseReplay();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.EventStore = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.Namespace = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.ObserverId = reader.string();\n continue;\n }\n case 4: {\n if (tag !== 34) {\n break;\n }\n\n message.EventSequenceId = reader.string();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): Replay {\n return {\n EventStore: isSet(object.EventStore) ? globalThis.String(object.EventStore) : \"\",\n Namespace: isSet(object.Namespace) ? globalThis.String(object.Namespace) : \"\",\n ObserverId: isSet(object.ObserverId) ? globalThis.String(object.ObserverId) : \"\",\n EventSequenceId: isSet(object.EventSequenceId) ? globalThis.String(object.EventSequenceId) : \"\",\n };\n },\n\n toJSON(message: Replay): unknown {\n const obj: any = {};\n if (message.EventStore !== \"\") {\n obj.EventStore = message.EventStore;\n }\n if (message.Namespace !== \"\") {\n obj.Namespace = message.Namespace;\n }\n if (message.ObserverId !== \"\") {\n obj.ObserverId = message.ObserverId;\n }\n if (message.EventSequenceId !== \"\") {\n obj.EventSequenceId = message.EventSequenceId;\n }\n return obj;\n },\n\n create(base?: DeepPartial<Replay>): Replay {\n return Replay.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<Replay>): Replay {\n const message = createBaseReplay();\n message.EventStore = object.EventStore ?? \"\";\n message.Namespace = object.Namespace ?? \"\";\n message.ObserverId = object.ObserverId ?? \"\";\n message.EventSequenceId = object.EventSequenceId ?? \"\";\n return message;\n },\n};\n\nfunction createBaseReplayPartition(): ReplayPartition {\n return { EventStore: \"\", Namespace: \"\", ObserverId: \"\", EventSequenceId: \"\", Partition: \"\" };\n}\n\nexport const ReplayPartition: MessageFns<ReplayPartition> = {\n encode(message: ReplayPartition, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.EventStore !== \"\") {\n writer.uint32(10).string(message.EventStore);\n }\n if (message.Namespace !== \"\") {\n writer.uint32(18).string(message.Namespace);\n }\n if (message.ObserverId !== \"\") {\n writer.uint32(26).string(message.ObserverId);\n }\n if (message.EventSequenceId !== \"\") {\n writer.uint32(34).string(message.EventSequenceId);\n }\n if (message.Partition !== \"\") {\n writer.uint32(42).string(message.Partition);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): ReplayPartition {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseReplayPartition();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.EventStore = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.Namespace = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.ObserverId = reader.string();\n continue;\n }\n case 4: {\n if (tag !== 34) {\n break;\n }\n\n message.EventSequenceId = reader.string();\n continue;\n }\n case 5: {\n if (tag !== 42) {\n break;\n }\n\n message.Partition = reader.string();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): ReplayPartition {\n return {\n EventStore: isSet(object.EventStore) ? globalThis.String(object.EventStore) : \"\",\n Namespace: isSet(object.Namespace) ? globalThis.String(object.Namespace) : \"\",\n ObserverId: isSet(object.ObserverId) ? globalThis.String(object.ObserverId) : \"\",\n EventSequenceId: isSet(object.EventSequenceId) ? globalThis.String(object.EventSequenceId) : \"\",\n Partition: isSet(object.Partition) ? globalThis.String(object.Partition) : \"\",\n };\n },\n\n toJSON(message: ReplayPartition): unknown {\n const obj: any = {};\n if (message.EventStore !== \"\") {\n obj.EventStore = message.EventStore;\n }\n if (message.Namespace !== \"\") {\n obj.Namespace = message.Namespace;\n }\n if (message.ObserverId !== \"\") {\n obj.ObserverId = message.ObserverId;\n }\n if (message.EventSequenceId !== \"\") {\n obj.EventSequenceId = message.EventSequenceId;\n }\n if (message.Partition !== \"\") {\n obj.Partition = message.Partition;\n }\n return obj;\n },\n\n create(base?: DeepPartial<ReplayPartition>): ReplayPartition {\n return ReplayPartition.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<ReplayPartition>): ReplayPartition {\n const message = createBaseReplayPartition();\n message.EventStore = object.EventStore ?? \"\";\n message.Namespace = object.Namespace ?? \"\";\n message.ObserverId = object.ObserverId ?? \"\";\n message.EventSequenceId = object.EventSequenceId ?? \"\";\n message.Partition = object.Partition ?? \"\";\n return message;\n },\n};\n\nfunction createBaseRetryPartition(): RetryPartition {\n return { EventStore: \"\", Namespace: \"\", ObserverId: \"\", EventSequenceId: \"\", Partition: \"\" };\n}\n\nexport const RetryPartition: MessageFns<RetryPartition> = {\n encode(message: RetryPartition, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.EventStore !== \"\") {\n writer.uint32(10).string(message.EventStore);\n }\n if (message.Namespace !== \"\") {\n writer.uint32(18).string(message.Namespace);\n }\n if (message.ObserverId !== \"\") {\n writer.uint32(26).string(message.ObserverId);\n }\n if (message.EventSequenceId !== \"\") {\n writer.uint32(34).string(message.EventSequenceId);\n }\n if (message.Partition !== \"\") {\n writer.uint32(42).string(message.Partition);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): RetryPartition {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseRetryPartition();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.EventStore = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.Namespace = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.ObserverId = reader.string();\n continue;\n }\n case 4: {\n if (tag !== 34) {\n break;\n }\n\n message.EventSequenceId = reader.string();\n continue;\n }\n case 5: {\n if (tag !== 42) {\n break;\n }\n\n message.Partition = reader.string();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): RetryPartition {\n return {\n EventStore: isSet(object.EventStore) ? globalThis.String(object.EventStore) : \"\",\n Namespace: isSet(object.Namespace) ? globalThis.String(object.Namespace) : \"\",\n ObserverId: isSet(object.ObserverId) ? globalThis.String(object.ObserverId) : \"\",\n EventSequenceId: isSet(object.EventSequenceId) ? globalThis.String(object.EventSequenceId) : \"\",\n Partition: isSet(object.Partition) ? globalThis.String(object.Partition) : \"\",\n };\n },\n\n toJSON(message: RetryPartition): unknown {\n const obj: any = {};\n if (message.EventStore !== \"\") {\n obj.EventStore = message.EventStore;\n }\n if (message.Namespace !== \"\") {\n obj.Namespace = message.Namespace;\n }\n if (message.ObserverId !== \"\") {\n obj.ObserverId = message.ObserverId;\n }\n if (message.EventSequenceId !== \"\") {\n obj.EventSequenceId = message.EventSequenceId;\n }\n if (message.Partition !== \"\") {\n obj.Partition = message.Partition;\n }\n return obj;\n },\n\n create(base?: DeepPartial<RetryPartition>): RetryPartition {\n return RetryPartition.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<RetryPartition>): RetryPartition {\n const message = createBaseRetryPartition();\n message.EventStore = object.EventStore ?? \"\";\n message.Namespace = object.Namespace ?? \"\";\n message.ObserverId = object.ObserverId ?? \"\";\n message.EventSequenceId = object.EventSequenceId ?? \"\";\n message.Partition = object.Partition ?? \"\";\n return message;\n },\n};\n\nfunction createBaseSerializableDateTimeOffset(): SerializableDateTimeOffset {\n return { Value: \"\" };\n}\n\nexport const SerializableDateTimeOffset: MessageFns<SerializableDateTimeOffset> = {\n encode(message: SerializableDateTimeOffset, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.Value !== \"\") {\n writer.uint32(10).string(message.Value);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): SerializableDateTimeOffset {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseSerializableDateTimeOffset();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.Value = reader.string();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): SerializableDateTimeOffset {\n return { Value: isSet(object.Value) ? globalThis.String(object.Value) : \"\" };\n },\n\n toJSON(message: SerializableDateTimeOffset): unknown {\n const obj: any = {};\n if (message.Value !== \"\") {\n obj.Value = message.Value;\n }\n return obj;\n },\n\n create(base?: DeepPartial<SerializableDateTimeOffset>): SerializableDateTimeOffset {\n return SerializableDateTimeOffset.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<SerializableDateTimeOffset>): SerializableDateTimeOffset {\n const message = createBaseSerializableDateTimeOffset();\n message.Value = object.Value ?? \"\";\n return message;\n },\n};\n\nfunction createBaseWaitForObserverCompletionRequest(): WaitForObserverCompletionRequest {\n return { EventStore: \"\", Namespace: \"\", EventSequenceId: \"\", TailEventSequenceNumber: 0n };\n}\n\nexport const WaitForObserverCompletionRequest: MessageFns<WaitForObserverCompletionRequest> = {\n encode(message: WaitForObserverCompletionRequest, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.EventStore !== \"\") {\n writer.uint32(10).string(message.EventStore);\n }\n if (message.Namespace !== \"\") {\n writer.uint32(18).string(message.Namespace);\n }\n if (message.EventSequenceId !== \"\") {\n writer.uint32(26).string(message.EventSequenceId);\n }\n if (message.TailEventSequenceNumber !== 0n) {\n if (BigInt.asUintN(64, message.TailEventSequenceNumber) !== message.TailEventSequenceNumber) {\n throw new globalThis.Error(\"value provided for field message.TailEventSequenceNumber of type uint64 too large\");\n }\n writer.uint32(32).uint64(message.TailEventSequenceNumber);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): WaitForObserverCompletionRequest {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseWaitForObserverCompletionRequest();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.EventStore = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.Namespace = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.EventSequenceId = reader.string();\n continue;\n }\n case 4: {\n if (tag !== 32) {\n break;\n }\n\n message.TailEventSequenceNumber = reader.uint64() as bigint;\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): WaitForObserverCompletionRequest {\n return {\n EventStore: isSet(object.EventStore) ? globalThis.String(object.EventStore) : \"\",\n Namespace: isSet(object.Namespace) ? globalThis.String(object.Namespace) : \"\",\n EventSequenceId: isSet(object.EventSequenceId) ? globalThis.String(object.EventSequenceId) : \"\",\n TailEventSequenceNumber: isSet(object.TailEventSequenceNumber) ? BigInt(object.TailEventSequenceNumber) : 0n,\n };\n },\n\n toJSON(message: WaitForObserverCompletionRequest): unknown {\n const obj: any = {};\n if (message.EventStore !== \"\") {\n obj.EventStore = message.EventStore;\n }\n if (message.Namespace !== \"\") {\n obj.Namespace = message.Namespace;\n }\n if (message.EventSequenceId !== \"\") {\n obj.EventSequenceId = message.EventSequenceId;\n }\n if (message.TailEventSequenceNumber !== 0n) {\n obj.TailEventSequenceNumber = message.TailEventSequenceNumber.toString();\n }\n return obj;\n },\n\n create(base?: DeepPartial<WaitForObserverCompletionRequest>): WaitForObserverCompletionRequest {\n return WaitForObserverCompletionRequest.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<WaitForObserverCompletionRequest>): WaitForObserverCompletionRequest {\n const message = createBaseWaitForObserverCompletionRequest();\n message.EventStore = object.EventStore ?? \"\";\n message.Namespace = object.Namespace ?? \"\";\n message.EventSequenceId = object.EventSequenceId ?? \"\";\n message.TailEventSequenceNumber = object.TailEventSequenceNumber ?? 0n;\n return message;\n },\n};\n\nfunction createBaseWaitForObserverCompletionResponse(): WaitForObserverCompletionResponse {\n return { IsSuccess: false, FailedPartitions: [] };\n}\n\nexport const WaitForObserverCompletionResponse: MessageFns<WaitForObserverCompletionResponse> = {\n encode(message: WaitForObserverCompletionResponse, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.IsSuccess !== false) {\n writer.uint32(8).bool(message.IsSuccess);\n }\n for (const v of message.FailedPartitions) {\n FailedPartition.encode(v!, writer.uint32(18).fork()).join();\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): WaitForObserverCompletionResponse {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseWaitForObserverCompletionResponse();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 8) {\n break;\n }\n\n message.IsSuccess = reader.bool();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.FailedPartitions.push(FailedPartition.decode(reader, reader.uint32()));\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): WaitForObserverCompletionResponse {\n return {\n IsSuccess: isSet(object.IsSuccess) ? globalThis.Boolean(object.IsSuccess) : false,\n FailedPartitions: globalThis.Array.isArray(object?.FailedPartitions)\n ? object.FailedPartitions.map((e: any) => FailedPartition.fromJSON(e))\n : [],\n };\n },\n\n toJSON(message: WaitForObserverCompletionResponse): unknown {\n const obj: any = {};\n if (message.IsSuccess !== false) {\n obj.IsSuccess = message.IsSuccess;\n }\n if (message.FailedPartitions?.length) {\n obj.FailedPartitions = message.FailedPartitions.map((e) => FailedPartition.toJSON(e));\n }\n return obj;\n },\n\n create(base?: DeepPartial<WaitForObserverCompletionResponse>): WaitForObserverCompletionResponse {\n return WaitForObserverCompletionResponse.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<WaitForObserverCompletionResponse>): WaitForObserverCompletionResponse {\n const message = createBaseWaitForObserverCompletionResponse();\n message.IsSuccess = object.IsSuccess ?? false;\n message.FailedPartitions = object.FailedPartitions?.map((e) => FailedPartition.fromPartial(e)) || [];\n return message;\n },\n};\n\nexport type FailedPartitionsDefinition = typeof FailedPartitionsDefinition;\nexport const FailedPartitionsDefinition = {\n name: \"FailedPartitions\",\n fullName: \"Cratis.Chronicle.Contracts.Observation.FailedPartitions\",\n methods: {\n getFailedPartitions: {\n name: \"GetFailedPartitions\",\n requestType: GetFailedPartitionsRequest as typeof GetFailedPartitionsRequest,\n requestStream: false,\n responseType: IEnumerableFailedPartition as typeof IEnumerableFailedPartition,\n responseStream: false,\n options: {},\n },\n observeFailedPartitions: {\n name: \"ObserveFailedPartitions\",\n requestType: GetFailedPartitionsRequest as typeof GetFailedPartitionsRequest,\n requestStream: false,\n responseType: IEnumerableFailedPartition as typeof IEnumerableFailedPartition,\n responseStream: true,\n options: {},\n },\n },\n} as const;\n\nexport interface FailedPartitionsServiceImplementation<CallContextExt = {}> {\n getFailedPartitions(\n request: GetFailedPartitionsRequest,\n context: CallContext & CallContextExt,\n ): Promise<DeepPartial<IEnumerableFailedPartition>>;\n observeFailedPartitions(\n request: GetFailedPartitionsRequest,\n context: CallContext & CallContextExt,\n ): ServerStreamingMethodResult<DeepPartial<IEnumerableFailedPartition>>;\n}\n\nexport interface FailedPartitionsClient<CallOptionsExt = {}> {\n getFailedPartitions(\n request: DeepPartial<GetFailedPartitionsRequest>,\n options?: CallOptions & CallOptionsExt,\n ): Promise<IEnumerableFailedPartition>;\n observeFailedPartitions(\n request: DeepPartial<GetFailedPartitionsRequest>,\n options?: CallOptions & CallOptionsExt,\n ): AsyncIterable<IEnumerableFailedPartition>;\n}\n\nexport type ObserversDefinition = typeof ObserversDefinition;\nexport const ObserversDefinition = {\n name: \"Observers\",\n fullName: \"Cratis.Chronicle.Contracts.Observation.Observers\",\n methods: {\n clearObserverQuarantine: {\n name: \"ClearObserverQuarantine\",\n requestType: ClearObserverQuarantine as typeof ClearObserverQuarantine,\n requestStream: false,\n responseType: Empty as typeof Empty,\n responseStream: false,\n options: {},\n },\n getObserverInformation: {\n name: \"GetObserverInformation\",\n requestType: GetObserverInformationRequest as typeof GetObserverInformationRequest,\n requestStream: false,\n responseType: ObserverInformation as typeof ObserverInformation,\n responseStream: false,\n options: {},\n },\n getObservers: {\n name: \"GetObservers\",\n requestType: AllObserversRequest as typeof AllObserversRequest,\n requestStream: false,\n responseType: IEnumerableObserverInformation as typeof IEnumerableObserverInformation,\n responseStream: false,\n options: {},\n },\n getReplayableObserversForEventTypes: {\n name: \"GetReplayableObserversForEventTypes\",\n requestType: GetReplayableObserversForEventTypesRequest as typeof GetReplayableObserversForEventTypesRequest,\n requestStream: false,\n responseType: IEnumerableObserverInformation as typeof IEnumerableObserverInformation,\n responseStream: false,\n options: {},\n },\n observeObservers: {\n name: \"ObserveObservers\",\n requestType: AllObserversRequest as typeof AllObserversRequest,\n requestStream: false,\n responseType: IEnumerableObserverInformation as typeof IEnumerableObserverInformation,\n responseStream: true,\n options: {},\n },\n replay: {\n name: \"Replay\",\n requestType: Replay as typeof Replay,\n requestStream: false,\n responseType: Empty as typeof Empty,\n responseStream: false,\n options: {},\n },\n replayPartition: {\n name: \"ReplayPartition\",\n requestType: ReplayPartition as typeof ReplayPartition,\n requestStream: false,\n responseType: Empty as typeof Empty,\n responseStream: false,\n options: {},\n },\n retryPartition: {\n name: \"RetryPartition\",\n requestType: RetryPartition as typeof RetryPartition,\n requestStream: false,\n responseType: Empty as typeof Empty,\n responseStream: false,\n options: {},\n },\n waitForCompletion: {\n name: \"WaitForCompletion\",\n requestType: WaitForObserverCompletionRequest as typeof WaitForObserverCompletionRequest,\n requestStream: false,\n responseType: WaitForObserverCompletionResponse as typeof WaitForObserverCompletionResponse,\n responseStream: false,\n options: {},\n },\n },\n} as const;\n\nexport interface ObserversServiceImplementation<CallContextExt = {}> {\n clearObserverQuarantine(\n request: ClearObserverQuarantine,\n context: CallContext & CallContextExt,\n ): Promise<DeepPartial<Empty>>;\n getObserverInformation(\n request: GetObserverInformationRequest,\n context: CallContext & CallContextExt,\n ): Promise<DeepPartial<ObserverInformation>>;\n getObservers(\n request: AllObserversRequest,\n context: CallContext & CallContextExt,\n ): Promise<DeepPartial<IEnumerableObserverInformation>>;\n getReplayableObserversForEventTypes(\n request: GetReplayableObserversForEventTypesRequest,\n context: CallContext & CallContextExt,\n ): Promise<DeepPartial<IEnumerableObserverInformation>>;\n observeObservers(\n request: AllObserversRequest,\n context: CallContext & CallContextExt,\n ): ServerStreamingMethodResult<DeepPartial<IEnumerableObserverInformation>>;\n replay(request: Replay, context: CallContext & CallContextExt): Promise<DeepPartial<Empty>>;\n replayPartition(request: ReplayPartition, context: CallContext & CallContextExt): Promise<DeepPartial<Empty>>;\n retryPartition(request: RetryPartition, context: CallContext & CallContextExt): Promise<DeepPartial<Empty>>;\n waitForCompletion(\n request: WaitForObserverCompletionRequest,\n context: CallContext & CallContextExt,\n ): Promise<DeepPartial<WaitForObserverCompletionResponse>>;\n}\n\nexport interface ObserversClient<CallOptionsExt = {}> {\n clearObserverQuarantine(\n request: DeepPartial<ClearObserverQuarantine>,\n options?: CallOptions & CallOptionsExt,\n ): Promise<Empty>;\n getObserverInformation(\n request: DeepPartial<GetObserverInformationRequest>,\n options?: CallOptions & CallOptionsExt,\n ): Promise<ObserverInformation>;\n getObservers(\n request: DeepPartial<AllObserversRequest>,\n options?: CallOptions & CallOptionsExt,\n ): Promise<IEnumerableObserverInformation>;\n getReplayableObserversForEventTypes(\n request: DeepPartial<GetReplayableObserversForEventTypesRequest>,\n options?: CallOptions & CallOptionsExt,\n ): Promise<IEnumerableObserverInformation>;\n observeObservers(\n request: DeepPartial<AllObserversRequest>,\n options?: CallOptions & CallOptionsExt,\n ): AsyncIterable<IEnumerableObserverInformation>;\n replay(request: DeepPartial<Replay>, options?: CallOptions & CallOptionsExt): Promise<Empty>;\n replayPartition(request: DeepPartial<ReplayPartition>, options?: CallOptions & CallOptionsExt): Promise<Empty>;\n retryPartition(request: DeepPartial<RetryPartition>, options?: CallOptions & CallOptionsExt): Promise<Empty>;\n waitForCompletion(\n request: DeepPartial<WaitForObserverCompletionRequest>,\n options?: CallOptions & CallOptionsExt,\n ): Promise<WaitForObserverCompletionResponse>;\n}\n\ntype Builtin = Date | Function | Uint8Array | string | number | boolean | bigint | undefined;\n\nexport type DeepPartial<T> = T extends Builtin ? T\n : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>>\n : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>>\n : T extends {} ? { [K in keyof T]?: DeepPartial<T[K]> }\n : Partial<T>;\n\nfunction isSet(value: any): boolean {\n return value !== null && value !== undefined;\n}\n\nexport type ServerStreamingMethodResult<Response> = { [Symbol.asyncIterator](): AsyncIterator<Response, void> };\n\nexport interface MessageFns<T> {\n encode(message: T, writer?: BinaryWriter): BinaryWriter;\n decode(input: BinaryReader | Uint8Array, length?: number): T;\n fromJSON(object: any): T;\n toJSON(message: T): unknown;\n create(base?: DeepPartial<T>): T;\n fromPartial(object: DeepPartial<T>): T;\n}\n"],"names":["ObserverOwner","ObserverRunningState","ObserverType","BinaryWriter","BinaryReader","Guid","Empty"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"observation.js","sources":["../../../generated/observation.ts"],"sourcesContent":["// Code generated by protoc-gen-ts_proto. DO NOT EDIT.\n// versions:\n// protoc-gen-ts_proto v2.11.8\n// protoc v5.28.3\n// source: observation.proto\n\n/* eslint-disable */\nimport { BinaryReader, BinaryWriter } from \"@bufbuild/protobuf/wire\";\nimport type { CallContext, CallOptions } from \"nice-grpc-common\";\nimport { Empty } from \"./google/protobuf/empty\";\nimport { Guid } from \"./protobuf-net/bcl\";\n\nexport const protobufPackage = \"Cratis.Chronicle.Contracts.Observation\";\n\nexport enum ObserverOwner {\n None = 0,\n Client = 1,\n Kernel = 2,\n UNRECOGNIZED = -1,\n}\n\nexport function observerOwnerFromJSON(object: any): ObserverOwner {\n switch (object) {\n case 0:\n case \"None\":\n return ObserverOwner.None;\n case 1:\n case \"Client\":\n return ObserverOwner.Client;\n case 2:\n case \"Kernel\":\n return ObserverOwner.Kernel;\n case -1:\n case \"UNRECOGNIZED\":\n default:\n return ObserverOwner.UNRECOGNIZED;\n }\n}\n\nexport function observerOwnerToJSON(object: ObserverOwner): string {\n switch (object) {\n case ObserverOwner.None:\n return \"None\";\n case ObserverOwner.Client:\n return \"Client\";\n case ObserverOwner.Kernel:\n return \"Kernel\";\n case ObserverOwner.UNRECOGNIZED:\n default:\n return \"UNRECOGNIZED\";\n }\n}\n\nexport enum ObserverRunningState {\n OBSERVER_RUNNING_STATE_Unknown = 0,\n Active = 1,\n Suspended = 2,\n Replaying = 3,\n Disconnected = 4,\n Quarantined = 5,\n UNRECOGNIZED = -1,\n}\n\nexport function observerRunningStateFromJSON(object: any): ObserverRunningState {\n switch (object) {\n case 0:\n case \"OBSERVER_RUNNING_STATE_Unknown\":\n return ObserverRunningState.OBSERVER_RUNNING_STATE_Unknown;\n case 1:\n case \"Active\":\n return ObserverRunningState.Active;\n case 2:\n case \"Suspended\":\n return ObserverRunningState.Suspended;\n case 3:\n case \"Replaying\":\n return ObserverRunningState.Replaying;\n case 4:\n case \"Disconnected\":\n return ObserverRunningState.Disconnected;\n case 5:\n case \"Quarantined\":\n return ObserverRunningState.Quarantined;\n case -1:\n case \"UNRECOGNIZED\":\n default:\n return ObserverRunningState.UNRECOGNIZED;\n }\n}\n\nexport function observerRunningStateToJSON(object: ObserverRunningState): string {\n switch (object) {\n case ObserverRunningState.OBSERVER_RUNNING_STATE_Unknown:\n return \"OBSERVER_RUNNING_STATE_Unknown\";\n case ObserverRunningState.Active:\n return \"Active\";\n case ObserverRunningState.Suspended:\n return \"Suspended\";\n case ObserverRunningState.Replaying:\n return \"Replaying\";\n case ObserverRunningState.Disconnected:\n return \"Disconnected\";\n case ObserverRunningState.Quarantined:\n return \"Quarantined\";\n case ObserverRunningState.UNRECOGNIZED:\n default:\n return \"UNRECOGNIZED\";\n }\n}\n\nexport enum ObserverType {\n OBSERVER_TYPE_Unknown = 0,\n Reactor = 1,\n Projection = 2,\n Reducer = 3,\n External = 4,\n UNRECOGNIZED = -1,\n}\n\nexport function observerTypeFromJSON(object: any): ObserverType {\n switch (object) {\n case 0:\n case \"OBSERVER_TYPE_Unknown\":\n return ObserverType.OBSERVER_TYPE_Unknown;\n case 1:\n case \"Reactor\":\n return ObserverType.Reactor;\n case 2:\n case \"Projection\":\n return ObserverType.Projection;\n case 3:\n case \"Reducer\":\n return ObserverType.Reducer;\n case 4:\n case \"External\":\n return ObserverType.External;\n case -1:\n case \"UNRECOGNIZED\":\n default:\n return ObserverType.UNRECOGNIZED;\n }\n}\n\nexport function observerTypeToJSON(object: ObserverType): string {\n switch (object) {\n case ObserverType.OBSERVER_TYPE_Unknown:\n return \"OBSERVER_TYPE_Unknown\";\n case ObserverType.Reactor:\n return \"Reactor\";\n case ObserverType.Projection:\n return \"Projection\";\n case ObserverType.Reducer:\n return \"Reducer\";\n case ObserverType.External:\n return \"External\";\n case ObserverType.UNRECOGNIZED:\n default:\n return \"UNRECOGNIZED\";\n }\n}\n\nexport interface AllObserversRequest {\n EventStore: string;\n Namespace: string;\n}\n\nexport interface ClearObserverQuarantine {\n EventStore: string;\n Namespace: string;\n ObserverId: string;\n EventSequenceId: string;\n}\n\nexport interface EventType {\n Id: string;\n Generation: number;\n Tombstone: boolean;\n}\n\nexport interface FailedPartition {\n /** default value could not be applied: 00000000-0000-0000-0000-000000000000 */\n Id: Guid | undefined;\n ObserverId: string;\n Partition: string;\n Attempts: FailedPartitionAttempt[];\n}\n\nexport interface FailedPartitionAttempt {\n Occurred: SerializableDateTimeOffset | undefined;\n SequenceNumber: bigint;\n Messages: string[];\n StackTrace: string;\n}\n\nexport interface GetFailedPartitionsRequest {\n EventStore: string;\n Namespace: string;\n ObserverId: string;\n}\n\nexport interface GetObserverInformationRequest {\n EventStore: string;\n Namespace: string;\n ObserverId: string;\n EventSequenceId: string;\n}\n\nexport interface GetReplayableObserversForEventTypesRequest {\n EventStore: string;\n Namespace: string;\n EventTypes: EventType[];\n}\n\nexport interface IEnumerableFailedPartition {\n items: FailedPartition[];\n}\n\nexport interface IEnumerableObserverInformation {\n items: ObserverInformation[];\n}\n\nexport interface ObserverInformation {\n Id: string;\n EventSequenceId: string;\n Type: ObserverType;\n Owner: ObserverOwner;\n EventTypes: EventType[];\n NextEventSequenceNumber: bigint;\n LastHandledEventSequenceNumber: bigint;\n RunningState: ObserverRunningState;\n IsSubscribed: boolean;\n /** default value could not be applied: True */\n IsReplayable: boolean;\n TailEventSequenceNumber: bigint;\n}\n\nexport interface Replay {\n EventStore: string;\n Namespace: string;\n ObserverId: string;\n EventSequenceId: string;\n}\n\nexport interface ReplayPartition {\n EventStore: string;\n Namespace: string;\n ObserverId: string;\n EventSequenceId: string;\n Partition: string;\n}\n\nexport interface RetryPartition {\n EventStore: string;\n Namespace: string;\n ObserverId: string;\n EventSequenceId: string;\n Partition: string;\n}\n\n/** Represents a DateTimeOffset value as an ISO 8601 string (e.g., \"2024-01-15T12:30:00.0000000+02:00\"). */\nexport interface SerializableDateTimeOffset {\n Value: string;\n}\n\nexport interface WaitForObserverCompletionRequest {\n EventStore: string;\n Namespace: string;\n EventSequenceId: string;\n TailEventSequenceNumber: bigint;\n}\n\nexport interface WaitForObserverCompletionResponse {\n IsSuccess: boolean;\n FailedPartitions: FailedPartition[];\n}\n\nfunction createBaseAllObserversRequest(): AllObserversRequest {\n return { EventStore: \"\", Namespace: \"\" };\n}\n\nexport const AllObserversRequest: MessageFns<AllObserversRequest> = {\n encode(message: AllObserversRequest, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.EventStore !== \"\") {\n writer.uint32(10).string(message.EventStore);\n }\n if (message.Namespace !== \"\") {\n writer.uint32(18).string(message.Namespace);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): AllObserversRequest {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseAllObserversRequest();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.EventStore = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.Namespace = reader.string();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): AllObserversRequest {\n return {\n EventStore: isSet(object.EventStore) ? globalThis.String(object.EventStore) : \"\",\n Namespace: isSet(object.Namespace) ? globalThis.String(object.Namespace) : \"\",\n };\n },\n\n toJSON(message: AllObserversRequest): unknown {\n const obj: any = {};\n if (message.EventStore !== \"\") {\n obj.EventStore = message.EventStore;\n }\n if (message.Namespace !== \"\") {\n obj.Namespace = message.Namespace;\n }\n return obj;\n },\n\n create(base?: DeepPartial<AllObserversRequest>): AllObserversRequest {\n return AllObserversRequest.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<AllObserversRequest>): AllObserversRequest {\n const message = createBaseAllObserversRequest();\n message.EventStore = object.EventStore ?? \"\";\n message.Namespace = object.Namespace ?? \"\";\n return message;\n },\n};\n\nfunction createBaseClearObserverQuarantine(): ClearObserverQuarantine {\n return { EventStore: \"\", Namespace: \"\", ObserverId: \"\", EventSequenceId: \"\" };\n}\n\nexport const ClearObserverQuarantine: MessageFns<ClearObserverQuarantine> = {\n encode(message: ClearObserverQuarantine, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.EventStore !== \"\") {\n writer.uint32(10).string(message.EventStore);\n }\n if (message.Namespace !== \"\") {\n writer.uint32(18).string(message.Namespace);\n }\n if (message.ObserverId !== \"\") {\n writer.uint32(26).string(message.ObserverId);\n }\n if (message.EventSequenceId !== \"\") {\n writer.uint32(34).string(message.EventSequenceId);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): ClearObserverQuarantine {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseClearObserverQuarantine();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.EventStore = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.Namespace = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.ObserverId = reader.string();\n continue;\n }\n case 4: {\n if (tag !== 34) {\n break;\n }\n\n message.EventSequenceId = reader.string();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): ClearObserverQuarantine {\n return {\n EventStore: isSet(object.EventStore) ? globalThis.String(object.EventStore) : \"\",\n Namespace: isSet(object.Namespace) ? globalThis.String(object.Namespace) : \"\",\n ObserverId: isSet(object.ObserverId) ? globalThis.String(object.ObserverId) : \"\",\n EventSequenceId: isSet(object.EventSequenceId) ? globalThis.String(object.EventSequenceId) : \"\",\n };\n },\n\n toJSON(message: ClearObserverQuarantine): unknown {\n const obj: any = {};\n if (message.EventStore !== \"\") {\n obj.EventStore = message.EventStore;\n }\n if (message.Namespace !== \"\") {\n obj.Namespace = message.Namespace;\n }\n if (message.ObserverId !== \"\") {\n obj.ObserverId = message.ObserverId;\n }\n if (message.EventSequenceId !== \"\") {\n obj.EventSequenceId = message.EventSequenceId;\n }\n return obj;\n },\n\n create(base?: DeepPartial<ClearObserverQuarantine>): ClearObserverQuarantine {\n return ClearObserverQuarantine.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<ClearObserverQuarantine>): ClearObserverQuarantine {\n const message = createBaseClearObserverQuarantine();\n message.EventStore = object.EventStore ?? \"\";\n message.Namespace = object.Namespace ?? \"\";\n message.ObserverId = object.ObserverId ?? \"\";\n message.EventSequenceId = object.EventSequenceId ?? \"\";\n return message;\n },\n};\n\nfunction createBaseEventType(): EventType {\n return { Id: \"\", Generation: 0, Tombstone: false };\n}\n\nexport const EventType: MessageFns<EventType> = {\n encode(message: EventType, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.Id !== \"\") {\n writer.uint32(10).string(message.Id);\n }\n if (message.Generation !== 0) {\n writer.uint32(16).uint32(message.Generation);\n }\n if (message.Tombstone !== false) {\n writer.uint32(24).bool(message.Tombstone);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): EventType {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseEventType();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.Id = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 16) {\n break;\n }\n\n message.Generation = reader.uint32();\n continue;\n }\n case 3: {\n if (tag !== 24) {\n break;\n }\n\n message.Tombstone = reader.bool();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): EventType {\n return {\n Id: isSet(object.Id) ? globalThis.String(object.Id) : \"\",\n Generation: isSet(object.Generation) ? globalThis.Number(object.Generation) : 0,\n Tombstone: isSet(object.Tombstone) ? globalThis.Boolean(object.Tombstone) : false,\n };\n },\n\n toJSON(message: EventType): unknown {\n const obj: any = {};\n if (message.Id !== \"\") {\n obj.Id = message.Id;\n }\n if (message.Generation !== 0) {\n obj.Generation = Math.round(message.Generation);\n }\n if (message.Tombstone !== false) {\n obj.Tombstone = message.Tombstone;\n }\n return obj;\n },\n\n create(base?: DeepPartial<EventType>): EventType {\n return EventType.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<EventType>): EventType {\n const message = createBaseEventType();\n message.Id = object.Id ?? \"\";\n message.Generation = object.Generation ?? 0;\n message.Tombstone = object.Tombstone ?? false;\n return message;\n },\n};\n\nfunction createBaseFailedPartition(): FailedPartition {\n return { Id: undefined, ObserverId: \"\", Partition: \"\", Attempts: [] };\n}\n\nexport const FailedPartition: MessageFns<FailedPartition> = {\n encode(message: FailedPartition, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.Id !== undefined) {\n Guid.encode(message.Id, writer.uint32(10).fork()).join();\n }\n if (message.ObserverId !== \"\") {\n writer.uint32(18).string(message.ObserverId);\n }\n if (message.Partition !== \"\") {\n writer.uint32(26).string(message.Partition);\n }\n for (const v of message.Attempts) {\n FailedPartitionAttempt.encode(v!, writer.uint32(34).fork()).join();\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): FailedPartition {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseFailedPartition();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.Id = Guid.decode(reader, reader.uint32());\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.ObserverId = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.Partition = reader.string();\n continue;\n }\n case 4: {\n if (tag !== 34) {\n break;\n }\n\n message.Attempts.push(FailedPartitionAttempt.decode(reader, reader.uint32()));\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): FailedPartition {\n return {\n Id: isSet(object.Id) ? Guid.fromJSON(object.Id) : undefined,\n ObserverId: isSet(object.ObserverId) ? globalThis.String(object.ObserverId) : \"\",\n Partition: isSet(object.Partition) ? globalThis.String(object.Partition) : \"\",\n Attempts: globalThis.Array.isArray(object?.Attempts)\n ? object.Attempts.map((e: any) => FailedPartitionAttempt.fromJSON(e))\n : [],\n };\n },\n\n toJSON(message: FailedPartition): unknown {\n const obj: any = {};\n if (message.Id !== undefined) {\n obj.Id = Guid.toJSON(message.Id);\n }\n if (message.ObserverId !== \"\") {\n obj.ObserverId = message.ObserverId;\n }\n if (message.Partition !== \"\") {\n obj.Partition = message.Partition;\n }\n if (message.Attempts?.length) {\n obj.Attempts = message.Attempts.map((e) => FailedPartitionAttempt.toJSON(e));\n }\n return obj;\n },\n\n create(base?: DeepPartial<FailedPartition>): FailedPartition {\n return FailedPartition.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<FailedPartition>): FailedPartition {\n const message = createBaseFailedPartition();\n message.Id = (object.Id !== undefined && object.Id !== null) ? Guid.fromPartial(object.Id) : undefined;\n message.ObserverId = object.ObserverId ?? \"\";\n message.Partition = object.Partition ?? \"\";\n message.Attempts = object.Attempts?.map((e) => FailedPartitionAttempt.fromPartial(e)) || [];\n return message;\n },\n};\n\nfunction createBaseFailedPartitionAttempt(): FailedPartitionAttempt {\n return { Occurred: undefined, SequenceNumber: 0n, Messages: [], StackTrace: \"\" };\n}\n\nexport const FailedPartitionAttempt: MessageFns<FailedPartitionAttempt> = {\n encode(message: FailedPartitionAttempt, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.Occurred !== undefined) {\n SerializableDateTimeOffset.encode(message.Occurred, writer.uint32(10).fork()).join();\n }\n if (message.SequenceNumber !== 0n) {\n if (BigInt.asUintN(64, message.SequenceNumber) !== message.SequenceNumber) {\n throw new globalThis.Error(\"value provided for field message.SequenceNumber of type uint64 too large\");\n }\n writer.uint32(16).uint64(message.SequenceNumber);\n }\n for (const v of message.Messages) {\n writer.uint32(26).string(v!);\n }\n if (message.StackTrace !== \"\") {\n writer.uint32(34).string(message.StackTrace);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): FailedPartitionAttempt {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseFailedPartitionAttempt();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.Occurred = SerializableDateTimeOffset.decode(reader, reader.uint32());\n continue;\n }\n case 2: {\n if (tag !== 16) {\n break;\n }\n\n message.SequenceNumber = reader.uint64() as bigint;\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.Messages.push(reader.string());\n continue;\n }\n case 4: {\n if (tag !== 34) {\n break;\n }\n\n message.StackTrace = reader.string();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): FailedPartitionAttempt {\n return {\n Occurred: isSet(object.Occurred) ? SerializableDateTimeOffset.fromJSON(object.Occurred) : undefined,\n SequenceNumber: isSet(object.SequenceNumber) ? BigInt(object.SequenceNumber) : 0n,\n Messages: globalThis.Array.isArray(object?.Messages) ? object.Messages.map((e: any) => globalThis.String(e)) : [],\n StackTrace: isSet(object.StackTrace) ? globalThis.String(object.StackTrace) : \"\",\n };\n },\n\n toJSON(message: FailedPartitionAttempt): unknown {\n const obj: any = {};\n if (message.Occurred !== undefined) {\n obj.Occurred = SerializableDateTimeOffset.toJSON(message.Occurred);\n }\n if (message.SequenceNumber !== 0n) {\n obj.SequenceNumber = message.SequenceNumber.toString();\n }\n if (message.Messages?.length) {\n obj.Messages = message.Messages;\n }\n if (message.StackTrace !== \"\") {\n obj.StackTrace = message.StackTrace;\n }\n return obj;\n },\n\n create(base?: DeepPartial<FailedPartitionAttempt>): FailedPartitionAttempt {\n return FailedPartitionAttempt.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<FailedPartitionAttempt>): FailedPartitionAttempt {\n const message = createBaseFailedPartitionAttempt();\n message.Occurred = (object.Occurred !== undefined && object.Occurred !== null)\n ? SerializableDateTimeOffset.fromPartial(object.Occurred)\n : undefined;\n message.SequenceNumber = object.SequenceNumber ?? 0n;\n message.Messages = object.Messages?.map((e) => e) || [];\n message.StackTrace = object.StackTrace ?? \"\";\n return message;\n },\n};\n\nfunction createBaseGetFailedPartitionsRequest(): GetFailedPartitionsRequest {\n return { EventStore: \"\", Namespace: \"\", ObserverId: \"\" };\n}\n\nexport const GetFailedPartitionsRequest: MessageFns<GetFailedPartitionsRequest> = {\n encode(message: GetFailedPartitionsRequest, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.EventStore !== \"\") {\n writer.uint32(10).string(message.EventStore);\n }\n if (message.Namespace !== \"\") {\n writer.uint32(18).string(message.Namespace);\n }\n if (message.ObserverId !== \"\") {\n writer.uint32(26).string(message.ObserverId);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): GetFailedPartitionsRequest {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseGetFailedPartitionsRequest();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.EventStore = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.Namespace = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.ObserverId = reader.string();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): GetFailedPartitionsRequest {\n return {\n EventStore: isSet(object.EventStore) ? globalThis.String(object.EventStore) : \"\",\n Namespace: isSet(object.Namespace) ? globalThis.String(object.Namespace) : \"\",\n ObserverId: isSet(object.ObserverId) ? globalThis.String(object.ObserverId) : \"\",\n };\n },\n\n toJSON(message: GetFailedPartitionsRequest): unknown {\n const obj: any = {};\n if (message.EventStore !== \"\") {\n obj.EventStore = message.EventStore;\n }\n if (message.Namespace !== \"\") {\n obj.Namespace = message.Namespace;\n }\n if (message.ObserverId !== \"\") {\n obj.ObserverId = message.ObserverId;\n }\n return obj;\n },\n\n create(base?: DeepPartial<GetFailedPartitionsRequest>): GetFailedPartitionsRequest {\n return GetFailedPartitionsRequest.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<GetFailedPartitionsRequest>): GetFailedPartitionsRequest {\n const message = createBaseGetFailedPartitionsRequest();\n message.EventStore = object.EventStore ?? \"\";\n message.Namespace = object.Namespace ?? \"\";\n message.ObserverId = object.ObserverId ?? \"\";\n return message;\n },\n};\n\nfunction createBaseGetObserverInformationRequest(): GetObserverInformationRequest {\n return { EventStore: \"\", Namespace: \"\", ObserverId: \"\", EventSequenceId: \"\" };\n}\n\nexport const GetObserverInformationRequest: MessageFns<GetObserverInformationRequest> = {\n encode(message: GetObserverInformationRequest, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.EventStore !== \"\") {\n writer.uint32(10).string(message.EventStore);\n }\n if (message.Namespace !== \"\") {\n writer.uint32(18).string(message.Namespace);\n }\n if (message.ObserverId !== \"\") {\n writer.uint32(26).string(message.ObserverId);\n }\n if (message.EventSequenceId !== \"\") {\n writer.uint32(34).string(message.EventSequenceId);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): GetObserverInformationRequest {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseGetObserverInformationRequest();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.EventStore = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.Namespace = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.ObserverId = reader.string();\n continue;\n }\n case 4: {\n if (tag !== 34) {\n break;\n }\n\n message.EventSequenceId = reader.string();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): GetObserverInformationRequest {\n return {\n EventStore: isSet(object.EventStore) ? globalThis.String(object.EventStore) : \"\",\n Namespace: isSet(object.Namespace) ? globalThis.String(object.Namespace) : \"\",\n ObserverId: isSet(object.ObserverId) ? globalThis.String(object.ObserverId) : \"\",\n EventSequenceId: isSet(object.EventSequenceId) ? globalThis.String(object.EventSequenceId) : \"\",\n };\n },\n\n toJSON(message: GetObserverInformationRequest): unknown {\n const obj: any = {};\n if (message.EventStore !== \"\") {\n obj.EventStore = message.EventStore;\n }\n if (message.Namespace !== \"\") {\n obj.Namespace = message.Namespace;\n }\n if (message.ObserverId !== \"\") {\n obj.ObserverId = message.ObserverId;\n }\n if (message.EventSequenceId !== \"\") {\n obj.EventSequenceId = message.EventSequenceId;\n }\n return obj;\n },\n\n create(base?: DeepPartial<GetObserverInformationRequest>): GetObserverInformationRequest {\n return GetObserverInformationRequest.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<GetObserverInformationRequest>): GetObserverInformationRequest {\n const message = createBaseGetObserverInformationRequest();\n message.EventStore = object.EventStore ?? \"\";\n message.Namespace = object.Namespace ?? \"\";\n message.ObserverId = object.ObserverId ?? \"\";\n message.EventSequenceId = object.EventSequenceId ?? \"\";\n return message;\n },\n};\n\nfunction createBaseGetReplayableObserversForEventTypesRequest(): GetReplayableObserversForEventTypesRequest {\n return { EventStore: \"\", Namespace: \"\", EventTypes: [] };\n}\n\nexport const GetReplayableObserversForEventTypesRequest: MessageFns<GetReplayableObserversForEventTypesRequest> = {\n encode(message: GetReplayableObserversForEventTypesRequest, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.EventStore !== \"\") {\n writer.uint32(10).string(message.EventStore);\n }\n if (message.Namespace !== \"\") {\n writer.uint32(18).string(message.Namespace);\n }\n for (const v of message.EventTypes) {\n EventType.encode(v!, writer.uint32(26).fork()).join();\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): GetReplayableObserversForEventTypesRequest {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseGetReplayableObserversForEventTypesRequest();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.EventStore = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.Namespace = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.EventTypes.push(EventType.decode(reader, reader.uint32()));\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): GetReplayableObserversForEventTypesRequest {\n return {\n EventStore: isSet(object.EventStore) ? globalThis.String(object.EventStore) : \"\",\n Namespace: isSet(object.Namespace) ? globalThis.String(object.Namespace) : \"\",\n EventTypes: globalThis.Array.isArray(object?.EventTypes)\n ? object.EventTypes.map((e: any) => EventType.fromJSON(e))\n : [],\n };\n },\n\n toJSON(message: GetReplayableObserversForEventTypesRequest): unknown {\n const obj: any = {};\n if (message.EventStore !== \"\") {\n obj.EventStore = message.EventStore;\n }\n if (message.Namespace !== \"\") {\n obj.Namespace = message.Namespace;\n }\n if (message.EventTypes?.length) {\n obj.EventTypes = message.EventTypes.map((e) => EventType.toJSON(e));\n }\n return obj;\n },\n\n create(base?: DeepPartial<GetReplayableObserversForEventTypesRequest>): GetReplayableObserversForEventTypesRequest {\n return GetReplayableObserversForEventTypesRequest.fromPartial(base ?? {});\n },\n fromPartial(\n object: DeepPartial<GetReplayableObserversForEventTypesRequest>,\n ): GetReplayableObserversForEventTypesRequest {\n const message = createBaseGetReplayableObserversForEventTypesRequest();\n message.EventStore = object.EventStore ?? \"\";\n message.Namespace = object.Namespace ?? \"\";\n message.EventTypes = object.EventTypes?.map((e) => EventType.fromPartial(e)) || [];\n return message;\n },\n};\n\nfunction createBaseIEnumerableFailedPartition(): IEnumerableFailedPartition {\n return { items: [] };\n}\n\nexport const IEnumerableFailedPartition: MessageFns<IEnumerableFailedPartition> = {\n encode(message: IEnumerableFailedPartition, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n for (const v of message.items) {\n FailedPartition.encode(v!, writer.uint32(10).fork()).join();\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): IEnumerableFailedPartition {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseIEnumerableFailedPartition();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.items.push(FailedPartition.decode(reader, reader.uint32()));\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): IEnumerableFailedPartition {\n return {\n items: globalThis.Array.isArray(object?.items) ? object.items.map((e: any) => FailedPartition.fromJSON(e)) : [],\n };\n },\n\n toJSON(message: IEnumerableFailedPartition): unknown {\n const obj: any = {};\n if (message.items?.length) {\n obj.items = message.items.map((e) => FailedPartition.toJSON(e));\n }\n return obj;\n },\n\n create(base?: DeepPartial<IEnumerableFailedPartition>): IEnumerableFailedPartition {\n return IEnumerableFailedPartition.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<IEnumerableFailedPartition>): IEnumerableFailedPartition {\n const message = createBaseIEnumerableFailedPartition();\n message.items = object.items?.map((e) => FailedPartition.fromPartial(e)) || [];\n return message;\n },\n};\n\nfunction createBaseIEnumerableObserverInformation(): IEnumerableObserverInformation {\n return { items: [] };\n}\n\nexport const IEnumerableObserverInformation: MessageFns<IEnumerableObserverInformation> = {\n encode(message: IEnumerableObserverInformation, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n for (const v of message.items) {\n ObserverInformation.encode(v!, writer.uint32(10).fork()).join();\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): IEnumerableObserverInformation {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseIEnumerableObserverInformation();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.items.push(ObserverInformation.decode(reader, reader.uint32()));\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): IEnumerableObserverInformation {\n return {\n items: globalThis.Array.isArray(object?.items)\n ? object.items.map((e: any) => ObserverInformation.fromJSON(e))\n : [],\n };\n },\n\n toJSON(message: IEnumerableObserverInformation): unknown {\n const obj: any = {};\n if (message.items?.length) {\n obj.items = message.items.map((e) => ObserverInformation.toJSON(e));\n }\n return obj;\n },\n\n create(base?: DeepPartial<IEnumerableObserverInformation>): IEnumerableObserverInformation {\n return IEnumerableObserverInformation.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<IEnumerableObserverInformation>): IEnumerableObserverInformation {\n const message = createBaseIEnumerableObserverInformation();\n message.items = object.items?.map((e) => ObserverInformation.fromPartial(e)) || [];\n return message;\n },\n};\n\nfunction createBaseObserverInformation(): ObserverInformation {\n return {\n Id: \"\",\n EventSequenceId: \"\",\n Type: 0,\n Owner: 0,\n EventTypes: [],\n NextEventSequenceNumber: 0n,\n LastHandledEventSequenceNumber: 0n,\n RunningState: 0,\n IsSubscribed: false,\n IsReplayable: false,\n TailEventSequenceNumber: 0n,\n };\n}\n\nexport const ObserverInformation: MessageFns<ObserverInformation> = {\n encode(message: ObserverInformation, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.Id !== \"\") {\n writer.uint32(10).string(message.Id);\n }\n if (message.EventSequenceId !== \"\") {\n writer.uint32(18).string(message.EventSequenceId);\n }\n if (message.Type !== 0) {\n writer.uint32(24).int32(message.Type);\n }\n if (message.Owner !== 0) {\n writer.uint32(32).int32(message.Owner);\n }\n for (const v of message.EventTypes) {\n EventType.encode(v!, writer.uint32(42).fork()).join();\n }\n if (message.NextEventSequenceNumber !== 0n) {\n if (BigInt.asUintN(64, message.NextEventSequenceNumber) !== message.NextEventSequenceNumber) {\n throw new globalThis.Error(\"value provided for field message.NextEventSequenceNumber of type uint64 too large\");\n }\n writer.uint32(48).uint64(message.NextEventSequenceNumber);\n }\n if (message.LastHandledEventSequenceNumber !== 0n) {\n if (BigInt.asUintN(64, message.LastHandledEventSequenceNumber) !== message.LastHandledEventSequenceNumber) {\n throw new globalThis.Error(\n \"value provided for field message.LastHandledEventSequenceNumber of type uint64 too large\",\n );\n }\n writer.uint32(56).uint64(message.LastHandledEventSequenceNumber);\n }\n if (message.RunningState !== 0) {\n writer.uint32(64).int32(message.RunningState);\n }\n if (message.IsSubscribed !== false) {\n writer.uint32(72).bool(message.IsSubscribed);\n }\n if (message.IsReplayable !== false) {\n writer.uint32(80).bool(message.IsReplayable);\n }\n if (message.TailEventSequenceNumber !== 0n) {\n if (BigInt.asUintN(64, message.TailEventSequenceNumber) !== message.TailEventSequenceNumber) {\n throw new globalThis.Error(\"value provided for field message.TailEventSequenceNumber of type uint64 too large\");\n }\n writer.uint32(88).uint64(message.TailEventSequenceNumber);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): ObserverInformation {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseObserverInformation();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.Id = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.EventSequenceId = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 24) {\n break;\n }\n\n message.Type = reader.int32() as any;\n continue;\n }\n case 4: {\n if (tag !== 32) {\n break;\n }\n\n message.Owner = reader.int32() as any;\n continue;\n }\n case 5: {\n if (tag !== 42) {\n break;\n }\n\n message.EventTypes.push(EventType.decode(reader, reader.uint32()));\n continue;\n }\n case 6: {\n if (tag !== 48) {\n break;\n }\n\n message.NextEventSequenceNumber = reader.uint64() as bigint;\n continue;\n }\n case 7: {\n if (tag !== 56) {\n break;\n }\n\n message.LastHandledEventSequenceNumber = reader.uint64() as bigint;\n continue;\n }\n case 8: {\n if (tag !== 64) {\n break;\n }\n\n message.RunningState = reader.int32() as any;\n continue;\n }\n case 9: {\n if (tag !== 72) {\n break;\n }\n\n message.IsSubscribed = reader.bool();\n continue;\n }\n case 10: {\n if (tag !== 80) {\n break;\n }\n\n message.IsReplayable = reader.bool();\n continue;\n }\n case 11: {\n if (tag !== 88) {\n break;\n }\n\n message.TailEventSequenceNumber = reader.uint64() as bigint;\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): ObserverInformation {\n return {\n Id: isSet(object.Id) ? globalThis.String(object.Id) : \"\",\n EventSequenceId: isSet(object.EventSequenceId) ? globalThis.String(object.EventSequenceId) : \"\",\n Type: isSet(object.Type) ? observerTypeFromJSON(object.Type) : 0,\n Owner: isSet(object.Owner) ? observerOwnerFromJSON(object.Owner) : 0,\n EventTypes: globalThis.Array.isArray(object?.EventTypes)\n ? object.EventTypes.map((e: any) => EventType.fromJSON(e))\n : [],\n NextEventSequenceNumber: isSet(object.NextEventSequenceNumber) ? BigInt(object.NextEventSequenceNumber) : 0n,\n LastHandledEventSequenceNumber: isSet(object.LastHandledEventSequenceNumber)\n ? BigInt(object.LastHandledEventSequenceNumber)\n : 0n,\n RunningState: isSet(object.RunningState) ? observerRunningStateFromJSON(object.RunningState) : 0,\n IsSubscribed: isSet(object.IsSubscribed) ? globalThis.Boolean(object.IsSubscribed) : false,\n IsReplayable: isSet(object.IsReplayable) ? globalThis.Boolean(object.IsReplayable) : false,\n TailEventSequenceNumber: isSet(object.TailEventSequenceNumber) ? BigInt(object.TailEventSequenceNumber) : 0n,\n };\n },\n\n toJSON(message: ObserverInformation): unknown {\n const obj: any = {};\n if (message.Id !== \"\") {\n obj.Id = message.Id;\n }\n if (message.EventSequenceId !== \"\") {\n obj.EventSequenceId = message.EventSequenceId;\n }\n if (message.Type !== 0) {\n obj.Type = observerTypeToJSON(message.Type);\n }\n if (message.Owner !== 0) {\n obj.Owner = observerOwnerToJSON(message.Owner);\n }\n if (message.EventTypes?.length) {\n obj.EventTypes = message.EventTypes.map((e) => EventType.toJSON(e));\n }\n if (message.NextEventSequenceNumber !== 0n) {\n obj.NextEventSequenceNumber = message.NextEventSequenceNumber.toString();\n }\n if (message.LastHandledEventSequenceNumber !== 0n) {\n obj.LastHandledEventSequenceNumber = message.LastHandledEventSequenceNumber.toString();\n }\n if (message.RunningState !== 0) {\n obj.RunningState = observerRunningStateToJSON(message.RunningState);\n }\n if (message.IsSubscribed !== false) {\n obj.IsSubscribed = message.IsSubscribed;\n }\n if (message.IsReplayable !== false) {\n obj.IsReplayable = message.IsReplayable;\n }\n if (message.TailEventSequenceNumber !== 0n) {\n obj.TailEventSequenceNumber = message.TailEventSequenceNumber.toString();\n }\n return obj;\n },\n\n create(base?: DeepPartial<ObserverInformation>): ObserverInformation {\n return ObserverInformation.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<ObserverInformation>): ObserverInformation {\n const message = createBaseObserverInformation();\n message.Id = object.Id ?? \"\";\n message.EventSequenceId = object.EventSequenceId ?? \"\";\n message.Type = object.Type ?? 0;\n message.Owner = object.Owner ?? 0;\n message.EventTypes = object.EventTypes?.map((e) => EventType.fromPartial(e)) || [];\n message.NextEventSequenceNumber = object.NextEventSequenceNumber ?? 0n;\n message.LastHandledEventSequenceNumber = object.LastHandledEventSequenceNumber ?? 0n;\n message.RunningState = object.RunningState ?? 0;\n message.IsSubscribed = object.IsSubscribed ?? false;\n message.IsReplayable = object.IsReplayable ?? false;\n message.TailEventSequenceNumber = object.TailEventSequenceNumber ?? 0n;\n return message;\n },\n};\n\nfunction createBaseReplay(): Replay {\n return { EventStore: \"\", Namespace: \"\", ObserverId: \"\", EventSequenceId: \"\" };\n}\n\nexport const Replay: MessageFns<Replay> = {\n encode(message: Replay, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.EventStore !== \"\") {\n writer.uint32(10).string(message.EventStore);\n }\n if (message.Namespace !== \"\") {\n writer.uint32(18).string(message.Namespace);\n }\n if (message.ObserverId !== \"\") {\n writer.uint32(26).string(message.ObserverId);\n }\n if (message.EventSequenceId !== \"\") {\n writer.uint32(34).string(message.EventSequenceId);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): Replay {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseReplay();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.EventStore = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.Namespace = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.ObserverId = reader.string();\n continue;\n }\n case 4: {\n if (tag !== 34) {\n break;\n }\n\n message.EventSequenceId = reader.string();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): Replay {\n return {\n EventStore: isSet(object.EventStore) ? globalThis.String(object.EventStore) : \"\",\n Namespace: isSet(object.Namespace) ? globalThis.String(object.Namespace) : \"\",\n ObserverId: isSet(object.ObserverId) ? globalThis.String(object.ObserverId) : \"\",\n EventSequenceId: isSet(object.EventSequenceId) ? globalThis.String(object.EventSequenceId) : \"\",\n };\n },\n\n toJSON(message: Replay): unknown {\n const obj: any = {};\n if (message.EventStore !== \"\") {\n obj.EventStore = message.EventStore;\n }\n if (message.Namespace !== \"\") {\n obj.Namespace = message.Namespace;\n }\n if (message.ObserverId !== \"\") {\n obj.ObserverId = message.ObserverId;\n }\n if (message.EventSequenceId !== \"\") {\n obj.EventSequenceId = message.EventSequenceId;\n }\n return obj;\n },\n\n create(base?: DeepPartial<Replay>): Replay {\n return Replay.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<Replay>): Replay {\n const message = createBaseReplay();\n message.EventStore = object.EventStore ?? \"\";\n message.Namespace = object.Namespace ?? \"\";\n message.ObserverId = object.ObserverId ?? \"\";\n message.EventSequenceId = object.EventSequenceId ?? \"\";\n return message;\n },\n};\n\nfunction createBaseReplayPartition(): ReplayPartition {\n return { EventStore: \"\", Namespace: \"\", ObserverId: \"\", EventSequenceId: \"\", Partition: \"\" };\n}\n\nexport const ReplayPartition: MessageFns<ReplayPartition> = {\n encode(message: ReplayPartition, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.EventStore !== \"\") {\n writer.uint32(10).string(message.EventStore);\n }\n if (message.Namespace !== \"\") {\n writer.uint32(18).string(message.Namespace);\n }\n if (message.ObserverId !== \"\") {\n writer.uint32(26).string(message.ObserverId);\n }\n if (message.EventSequenceId !== \"\") {\n writer.uint32(34).string(message.EventSequenceId);\n }\n if (message.Partition !== \"\") {\n writer.uint32(42).string(message.Partition);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): ReplayPartition {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseReplayPartition();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.EventStore = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.Namespace = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.ObserverId = reader.string();\n continue;\n }\n case 4: {\n if (tag !== 34) {\n break;\n }\n\n message.EventSequenceId = reader.string();\n continue;\n }\n case 5: {\n if (tag !== 42) {\n break;\n }\n\n message.Partition = reader.string();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): ReplayPartition {\n return {\n EventStore: isSet(object.EventStore) ? globalThis.String(object.EventStore) : \"\",\n Namespace: isSet(object.Namespace) ? globalThis.String(object.Namespace) : \"\",\n ObserverId: isSet(object.ObserverId) ? globalThis.String(object.ObserverId) : \"\",\n EventSequenceId: isSet(object.EventSequenceId) ? globalThis.String(object.EventSequenceId) : \"\",\n Partition: isSet(object.Partition) ? globalThis.String(object.Partition) : \"\",\n };\n },\n\n toJSON(message: ReplayPartition): unknown {\n const obj: any = {};\n if (message.EventStore !== \"\") {\n obj.EventStore = message.EventStore;\n }\n if (message.Namespace !== \"\") {\n obj.Namespace = message.Namespace;\n }\n if (message.ObserverId !== \"\") {\n obj.ObserverId = message.ObserverId;\n }\n if (message.EventSequenceId !== \"\") {\n obj.EventSequenceId = message.EventSequenceId;\n }\n if (message.Partition !== \"\") {\n obj.Partition = message.Partition;\n }\n return obj;\n },\n\n create(base?: DeepPartial<ReplayPartition>): ReplayPartition {\n return ReplayPartition.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<ReplayPartition>): ReplayPartition {\n const message = createBaseReplayPartition();\n message.EventStore = object.EventStore ?? \"\";\n message.Namespace = object.Namespace ?? \"\";\n message.ObserverId = object.ObserverId ?? \"\";\n message.EventSequenceId = object.EventSequenceId ?? \"\";\n message.Partition = object.Partition ?? \"\";\n return message;\n },\n};\n\nfunction createBaseRetryPartition(): RetryPartition {\n return { EventStore: \"\", Namespace: \"\", ObserverId: \"\", EventSequenceId: \"\", Partition: \"\" };\n}\n\nexport const RetryPartition: MessageFns<RetryPartition> = {\n encode(message: RetryPartition, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.EventStore !== \"\") {\n writer.uint32(10).string(message.EventStore);\n }\n if (message.Namespace !== \"\") {\n writer.uint32(18).string(message.Namespace);\n }\n if (message.ObserverId !== \"\") {\n writer.uint32(26).string(message.ObserverId);\n }\n if (message.EventSequenceId !== \"\") {\n writer.uint32(34).string(message.EventSequenceId);\n }\n if (message.Partition !== \"\") {\n writer.uint32(42).string(message.Partition);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): RetryPartition {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseRetryPartition();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.EventStore = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.Namespace = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.ObserverId = reader.string();\n continue;\n }\n case 4: {\n if (tag !== 34) {\n break;\n }\n\n message.EventSequenceId = reader.string();\n continue;\n }\n case 5: {\n if (tag !== 42) {\n break;\n }\n\n message.Partition = reader.string();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): RetryPartition {\n return {\n EventStore: isSet(object.EventStore) ? globalThis.String(object.EventStore) : \"\",\n Namespace: isSet(object.Namespace) ? globalThis.String(object.Namespace) : \"\",\n ObserverId: isSet(object.ObserverId) ? globalThis.String(object.ObserverId) : \"\",\n EventSequenceId: isSet(object.EventSequenceId) ? globalThis.String(object.EventSequenceId) : \"\",\n Partition: isSet(object.Partition) ? globalThis.String(object.Partition) : \"\",\n };\n },\n\n toJSON(message: RetryPartition): unknown {\n const obj: any = {};\n if (message.EventStore !== \"\") {\n obj.EventStore = message.EventStore;\n }\n if (message.Namespace !== \"\") {\n obj.Namespace = message.Namespace;\n }\n if (message.ObserverId !== \"\") {\n obj.ObserverId = message.ObserverId;\n }\n if (message.EventSequenceId !== \"\") {\n obj.EventSequenceId = message.EventSequenceId;\n }\n if (message.Partition !== \"\") {\n obj.Partition = message.Partition;\n }\n return obj;\n },\n\n create(base?: DeepPartial<RetryPartition>): RetryPartition {\n return RetryPartition.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<RetryPartition>): RetryPartition {\n const message = createBaseRetryPartition();\n message.EventStore = object.EventStore ?? \"\";\n message.Namespace = object.Namespace ?? \"\";\n message.ObserverId = object.ObserverId ?? \"\";\n message.EventSequenceId = object.EventSequenceId ?? \"\";\n message.Partition = object.Partition ?? \"\";\n return message;\n },\n};\n\nfunction createBaseSerializableDateTimeOffset(): SerializableDateTimeOffset {\n return { Value: \"\" };\n}\n\nexport const SerializableDateTimeOffset: MessageFns<SerializableDateTimeOffset> = {\n encode(message: SerializableDateTimeOffset, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.Value !== \"\") {\n writer.uint32(10).string(message.Value);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): SerializableDateTimeOffset {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseSerializableDateTimeOffset();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.Value = reader.string();\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): SerializableDateTimeOffset {\n return { Value: isSet(object.Value) ? globalThis.String(object.Value) : \"\" };\n },\n\n toJSON(message: SerializableDateTimeOffset): unknown {\n const obj: any = {};\n if (message.Value !== \"\") {\n obj.Value = message.Value;\n }\n return obj;\n },\n\n create(base?: DeepPartial<SerializableDateTimeOffset>): SerializableDateTimeOffset {\n return SerializableDateTimeOffset.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<SerializableDateTimeOffset>): SerializableDateTimeOffset {\n const message = createBaseSerializableDateTimeOffset();\n message.Value = object.Value ?? \"\";\n return message;\n },\n};\n\nfunction createBaseWaitForObserverCompletionRequest(): WaitForObserverCompletionRequest {\n return { EventStore: \"\", Namespace: \"\", EventSequenceId: \"\", TailEventSequenceNumber: 0n };\n}\n\nexport const WaitForObserverCompletionRequest: MessageFns<WaitForObserverCompletionRequest> = {\n encode(message: WaitForObserverCompletionRequest, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.EventStore !== \"\") {\n writer.uint32(10).string(message.EventStore);\n }\n if (message.Namespace !== \"\") {\n writer.uint32(18).string(message.Namespace);\n }\n if (message.EventSequenceId !== \"\") {\n writer.uint32(26).string(message.EventSequenceId);\n }\n if (message.TailEventSequenceNumber !== 0n) {\n if (BigInt.asUintN(64, message.TailEventSequenceNumber) !== message.TailEventSequenceNumber) {\n throw new globalThis.Error(\"value provided for field message.TailEventSequenceNumber of type uint64 too large\");\n }\n writer.uint32(32).uint64(message.TailEventSequenceNumber);\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): WaitForObserverCompletionRequest {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseWaitForObserverCompletionRequest();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 10) {\n break;\n }\n\n message.EventStore = reader.string();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.Namespace = reader.string();\n continue;\n }\n case 3: {\n if (tag !== 26) {\n break;\n }\n\n message.EventSequenceId = reader.string();\n continue;\n }\n case 4: {\n if (tag !== 32) {\n break;\n }\n\n message.TailEventSequenceNumber = reader.uint64() as bigint;\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): WaitForObserverCompletionRequest {\n return {\n EventStore: isSet(object.EventStore) ? globalThis.String(object.EventStore) : \"\",\n Namespace: isSet(object.Namespace) ? globalThis.String(object.Namespace) : \"\",\n EventSequenceId: isSet(object.EventSequenceId) ? globalThis.String(object.EventSequenceId) : \"\",\n TailEventSequenceNumber: isSet(object.TailEventSequenceNumber) ? BigInt(object.TailEventSequenceNumber) : 0n,\n };\n },\n\n toJSON(message: WaitForObserverCompletionRequest): unknown {\n const obj: any = {};\n if (message.EventStore !== \"\") {\n obj.EventStore = message.EventStore;\n }\n if (message.Namespace !== \"\") {\n obj.Namespace = message.Namespace;\n }\n if (message.EventSequenceId !== \"\") {\n obj.EventSequenceId = message.EventSequenceId;\n }\n if (message.TailEventSequenceNumber !== 0n) {\n obj.TailEventSequenceNumber = message.TailEventSequenceNumber.toString();\n }\n return obj;\n },\n\n create(base?: DeepPartial<WaitForObserverCompletionRequest>): WaitForObserverCompletionRequest {\n return WaitForObserverCompletionRequest.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<WaitForObserverCompletionRequest>): WaitForObserverCompletionRequest {\n const message = createBaseWaitForObserverCompletionRequest();\n message.EventStore = object.EventStore ?? \"\";\n message.Namespace = object.Namespace ?? \"\";\n message.EventSequenceId = object.EventSequenceId ?? \"\";\n message.TailEventSequenceNumber = object.TailEventSequenceNumber ?? 0n;\n return message;\n },\n};\n\nfunction createBaseWaitForObserverCompletionResponse(): WaitForObserverCompletionResponse {\n return { IsSuccess: false, FailedPartitions: [] };\n}\n\nexport const WaitForObserverCompletionResponse: MessageFns<WaitForObserverCompletionResponse> = {\n encode(message: WaitForObserverCompletionResponse, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {\n if (message.IsSuccess !== false) {\n writer.uint32(8).bool(message.IsSuccess);\n }\n for (const v of message.FailedPartitions) {\n FailedPartition.encode(v!, writer.uint32(18).fork()).join();\n }\n return writer;\n },\n\n decode(input: BinaryReader | Uint8Array, length?: number): WaitForObserverCompletionResponse {\n const reader = input instanceof BinaryReader ? input : new BinaryReader(input);\n const end = length === undefined ? reader.len : reader.pos + length;\n const message = createBaseWaitForObserverCompletionResponse();\n while (reader.pos < end) {\n const tag = reader.uint32();\n switch (tag >>> 3) {\n case 1: {\n if (tag !== 8) {\n break;\n }\n\n message.IsSuccess = reader.bool();\n continue;\n }\n case 2: {\n if (tag !== 18) {\n break;\n }\n\n message.FailedPartitions.push(FailedPartition.decode(reader, reader.uint32()));\n continue;\n }\n }\n if ((tag & 7) === 4 || tag === 0) {\n break;\n }\n reader.skip(tag & 7);\n }\n return message;\n },\n\n fromJSON(object: any): WaitForObserverCompletionResponse {\n return {\n IsSuccess: isSet(object.IsSuccess) ? globalThis.Boolean(object.IsSuccess) : false,\n FailedPartitions: globalThis.Array.isArray(object?.FailedPartitions)\n ? object.FailedPartitions.map((e: any) => FailedPartition.fromJSON(e))\n : [],\n };\n },\n\n toJSON(message: WaitForObserverCompletionResponse): unknown {\n const obj: any = {};\n if (message.IsSuccess !== false) {\n obj.IsSuccess = message.IsSuccess;\n }\n if (message.FailedPartitions?.length) {\n obj.FailedPartitions = message.FailedPartitions.map((e) => FailedPartition.toJSON(e));\n }\n return obj;\n },\n\n create(base?: DeepPartial<WaitForObserverCompletionResponse>): WaitForObserverCompletionResponse {\n return WaitForObserverCompletionResponse.fromPartial(base ?? {});\n },\n fromPartial(object: DeepPartial<WaitForObserverCompletionResponse>): WaitForObserverCompletionResponse {\n const message = createBaseWaitForObserverCompletionResponse();\n message.IsSuccess = object.IsSuccess ?? false;\n message.FailedPartitions = object.FailedPartitions?.map((e) => FailedPartition.fromPartial(e)) || [];\n return message;\n },\n};\n\nexport type FailedPartitionsDefinition = typeof FailedPartitionsDefinition;\nexport const FailedPartitionsDefinition = {\n name: \"FailedPartitions\",\n fullName: \"Cratis.Chronicle.Contracts.Observation.FailedPartitions\",\n methods: {\n getFailedPartitions: {\n name: \"GetFailedPartitions\",\n requestType: GetFailedPartitionsRequest as typeof GetFailedPartitionsRequest,\n requestStream: false,\n responseType: IEnumerableFailedPartition as typeof IEnumerableFailedPartition,\n responseStream: false,\n options: {},\n },\n observeFailedPartitions: {\n name: \"ObserveFailedPartitions\",\n requestType: GetFailedPartitionsRequest as typeof GetFailedPartitionsRequest,\n requestStream: false,\n responseType: IEnumerableFailedPartition as typeof IEnumerableFailedPartition,\n responseStream: true,\n options: {},\n },\n },\n} as const;\n\nexport interface FailedPartitionsServiceImplementation<CallContextExt = {}> {\n getFailedPartitions(\n request: GetFailedPartitionsRequest,\n context: CallContext & CallContextExt,\n ): Promise<DeepPartial<IEnumerableFailedPartition>>;\n observeFailedPartitions(\n request: GetFailedPartitionsRequest,\n context: CallContext & CallContextExt,\n ): ServerStreamingMethodResult<DeepPartial<IEnumerableFailedPartition>>;\n}\n\nexport interface FailedPartitionsClient<CallOptionsExt = {}> {\n getFailedPartitions(\n request: DeepPartial<GetFailedPartitionsRequest>,\n options?: CallOptions & CallOptionsExt,\n ): Promise<IEnumerableFailedPartition>;\n observeFailedPartitions(\n request: DeepPartial<GetFailedPartitionsRequest>,\n options?: CallOptions & CallOptionsExt,\n ): AsyncIterable<IEnumerableFailedPartition>;\n}\n\nexport type ObserversDefinition = typeof ObserversDefinition;\nexport const ObserversDefinition = {\n name: \"Observers\",\n fullName: \"Cratis.Chronicle.Contracts.Observation.Observers\",\n methods: {\n clearObserverQuarantine: {\n name: \"ClearObserverQuarantine\",\n requestType: ClearObserverQuarantine as typeof ClearObserverQuarantine,\n requestStream: false,\n responseType: Empty as typeof Empty,\n responseStream: false,\n options: {},\n },\n getObserverInformation: {\n name: \"GetObserverInformation\",\n requestType: GetObserverInformationRequest as typeof GetObserverInformationRequest,\n requestStream: false,\n responseType: ObserverInformation as typeof ObserverInformation,\n responseStream: false,\n options: {},\n },\n getObservers: {\n name: \"GetObservers\",\n requestType: AllObserversRequest as typeof AllObserversRequest,\n requestStream: false,\n responseType: IEnumerableObserverInformation as typeof IEnumerableObserverInformation,\n responseStream: false,\n options: {},\n },\n getReplayableObserversForEventTypes: {\n name: \"GetReplayableObserversForEventTypes\",\n requestType: GetReplayableObserversForEventTypesRequest as typeof GetReplayableObserversForEventTypesRequest,\n requestStream: false,\n responseType: IEnumerableObserverInformation as typeof IEnumerableObserverInformation,\n responseStream: false,\n options: {},\n },\n observeObservers: {\n name: \"ObserveObservers\",\n requestType: AllObserversRequest as typeof AllObserversRequest,\n requestStream: false,\n responseType: IEnumerableObserverInformation as typeof IEnumerableObserverInformation,\n responseStream: true,\n options: {},\n },\n replay: {\n name: \"Replay\",\n requestType: Replay as typeof Replay,\n requestStream: false,\n responseType: Empty as typeof Empty,\n responseStream: false,\n options: {},\n },\n replayPartition: {\n name: \"ReplayPartition\",\n requestType: ReplayPartition as typeof ReplayPartition,\n requestStream: false,\n responseType: Empty as typeof Empty,\n responseStream: false,\n options: {},\n },\n retryPartition: {\n name: \"RetryPartition\",\n requestType: RetryPartition as typeof RetryPartition,\n requestStream: false,\n responseType: Empty as typeof Empty,\n responseStream: false,\n options: {},\n },\n waitForCompletion: {\n name: \"WaitForCompletion\",\n requestType: WaitForObserverCompletionRequest as typeof WaitForObserverCompletionRequest,\n requestStream: false,\n responseType: WaitForObserverCompletionResponse as typeof WaitForObserverCompletionResponse,\n responseStream: false,\n options: {},\n },\n },\n} as const;\n\nexport interface ObserversServiceImplementation<CallContextExt = {}> {\n clearObserverQuarantine(\n request: ClearObserverQuarantine,\n context: CallContext & CallContextExt,\n ): Promise<DeepPartial<Empty>>;\n getObserverInformation(\n request: GetObserverInformationRequest,\n context: CallContext & CallContextExt,\n ): Promise<DeepPartial<ObserverInformation>>;\n getObservers(\n request: AllObserversRequest,\n context: CallContext & CallContextExt,\n ): Promise<DeepPartial<IEnumerableObserverInformation>>;\n getReplayableObserversForEventTypes(\n request: GetReplayableObserversForEventTypesRequest,\n context: CallContext & CallContextExt,\n ): Promise<DeepPartial<IEnumerableObserverInformation>>;\n observeObservers(\n request: AllObserversRequest,\n context: CallContext & CallContextExt,\n ): ServerStreamingMethodResult<DeepPartial<IEnumerableObserverInformation>>;\n replay(request: Replay, context: CallContext & CallContextExt): Promise<DeepPartial<Empty>>;\n replayPartition(request: ReplayPartition, context: CallContext & CallContextExt): Promise<DeepPartial<Empty>>;\n retryPartition(request: RetryPartition, context: CallContext & CallContextExt): Promise<DeepPartial<Empty>>;\n waitForCompletion(\n request: WaitForObserverCompletionRequest,\n context: CallContext & CallContextExt,\n ): Promise<DeepPartial<WaitForObserverCompletionResponse>>;\n}\n\nexport interface ObserversClient<CallOptionsExt = {}> {\n clearObserverQuarantine(\n request: DeepPartial<ClearObserverQuarantine>,\n options?: CallOptions & CallOptionsExt,\n ): Promise<Empty>;\n getObserverInformation(\n request: DeepPartial<GetObserverInformationRequest>,\n options?: CallOptions & CallOptionsExt,\n ): Promise<ObserverInformation>;\n getObservers(\n request: DeepPartial<AllObserversRequest>,\n options?: CallOptions & CallOptionsExt,\n ): Promise<IEnumerableObserverInformation>;\n getReplayableObserversForEventTypes(\n request: DeepPartial<GetReplayableObserversForEventTypesRequest>,\n options?: CallOptions & CallOptionsExt,\n ): Promise<IEnumerableObserverInformation>;\n observeObservers(\n request: DeepPartial<AllObserversRequest>,\n options?: CallOptions & CallOptionsExt,\n ): AsyncIterable<IEnumerableObserverInformation>;\n replay(request: DeepPartial<Replay>, options?: CallOptions & CallOptionsExt): Promise<Empty>;\n replayPartition(request: DeepPartial<ReplayPartition>, options?: CallOptions & CallOptionsExt): Promise<Empty>;\n retryPartition(request: DeepPartial<RetryPartition>, options?: CallOptions & CallOptionsExt): Promise<Empty>;\n waitForCompletion(\n request: DeepPartial<WaitForObserverCompletionRequest>,\n options?: CallOptions & CallOptionsExt,\n ): Promise<WaitForObserverCompletionResponse>;\n}\n\ntype Builtin = Date | Function | Uint8Array | string | number | boolean | bigint | undefined;\n\nexport type DeepPartial<T> = T extends Builtin ? T\n : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>>\n : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>>\n : T extends {} ? { [K in keyof T]?: DeepPartial<T[K]> }\n : Partial<T>;\n\nfunction isSet(value: any): boolean {\n return value !== null && value !== undefined;\n}\n\nexport type ServerStreamingMethodResult<Response> = { [Symbol.asyncIterator](): AsyncIterator<Response, void> };\n\nexport interface MessageFns<T> {\n encode(message: T, writer?: BinaryWriter): BinaryWriter;\n decode(input: BinaryReader | Uint8Array, length?: number): T;\n fromJSON(object: any): T;\n toJSON(message: T): unknown;\n create(base?: DeepPartial<T>): T;\n fromPartial(object: DeepPartial<T>): T;\n}\n"],"names":["ObserverOwner","ObserverRunningState","ObserverType","BinaryWriter","BinaryReader","Guid","Empty"],"mappings":";;;;;;AAcYA;AAAZ,CAAA,UAAY,aAAa,EAAA;AACvB,IAAA,aAAA,CAAA,aAAA,CAAA,MAAA,CAAA,GAAA,CAAA,CAAA,GAAA,MAAQ;AACR,IAAA,aAAA,CAAA,aAAA,CAAA,QAAA,CAAA,GAAA,CAAA,CAAA,GAAA,QAAU;AACV,IAAA,aAAA,CAAA,aAAA,CAAA,QAAA,CAAA,GAAA,CAAA,CAAA,GAAA,QAAU;AACV,IAAA,aAAA,CAAA,aAAA,CAAA,cAAA,CAAA,GAAA,EAAA,CAAA,GAAA,cAAiB;AACnB,CAAC,EALWA,qBAAa,KAAbA,qBAAa,GAAA,EAAA,CAAA,CAAA;AAOnB,SAAU,qBAAqB,CAAC,MAAW,EAAA;IAC/C,QAAQ,MAAM;AACZ,QAAA,KAAK,CAAC;AACN,QAAA,KAAK,MAAM;YACT,OAAOA,qBAAa,CAAC,IAAI;AAC3B,QAAA,KAAK,CAAC;AACN,QAAA,KAAK,QAAQ;YACX,OAAOA,qBAAa,CAAC,MAAM;AAC7B,QAAA,KAAK,CAAC;AACN,QAAA,KAAK,QAAQ;YACX,OAAOA,qBAAa,CAAC,MAAM;QAC7B,KAAK,EAAE;AACP,QAAA,KAAK,cAAc;AACnB,QAAA;YACE,OAAOA,qBAAa,CAAC,YAAY;;AAEvC;AAEM,SAAU,mBAAmB,CAAC,MAAqB,EAAA;IACvD,QAAQ,MAAM;QACZ,KAAKA,qBAAa,CAAC,IAAI;AACrB,YAAA,OAAO,MAAM;QACf,KAAKA,qBAAa,CAAC,MAAM;AACvB,YAAA,OAAO,QAAQ;QACjB,KAAKA,qBAAa,CAAC,MAAM;AACvB,YAAA,OAAO,QAAQ;QACjB,KAAKA,qBAAa,CAAC,YAAY;AAC/B,QAAA;AACE,YAAA,OAAO,cAAc;;AAE3B;AAEYC;AAAZ,CAAA,UAAY,oBAAoB,EAAA;AAC9B,IAAA,oBAAA,CAAA,oBAAA,CAAA,gCAAA,CAAA,GAAA,CAAA,CAAA,GAAA,gCAAkC;AAClC,IAAA,oBAAA,CAAA,oBAAA,CAAA,QAAA,CAAA,GAAA,CAAA,CAAA,GAAA,QAAU;AACV,IAAA,oBAAA,CAAA,oBAAA,CAAA,WAAA,CAAA,GAAA,CAAA,CAAA,GAAA,WAAa;AACb,IAAA,oBAAA,CAAA,oBAAA,CAAA,WAAA,CAAA,GAAA,CAAA,CAAA,GAAA,WAAa;AACb,IAAA,oBAAA,CAAA,oBAAA,CAAA,cAAA,CAAA,GAAA,CAAA,CAAA,GAAA,cAAgB;AAChB,IAAA,oBAAA,CAAA,oBAAA,CAAA,aAAA,CAAA,GAAA,CAAA,CAAA,GAAA,aAAe;AACf,IAAA,oBAAA,CAAA,oBAAA,CAAA,cAAA,CAAA,GAAA,EAAA,CAAA,GAAA,cAAiB;AACnB,CAAC,EARWA,4BAAoB,KAApBA,4BAAoB,GAAA,EAAA,CAAA,CAAA;AAU1B,SAAU,4BAA4B,CAAC,MAAW,EAAA;IACtD,QAAQ,MAAM;AACZ,QAAA,KAAK,CAAC;AACN,QAAA,KAAK,gCAAgC;YACnC,OAAOA,4BAAoB,CAAC,8BAA8B;AAC5D,QAAA,KAAK,CAAC;AACN,QAAA,KAAK,QAAQ;YACX,OAAOA,4BAAoB,CAAC,MAAM;AACpC,QAAA,KAAK,CAAC;AACN,QAAA,KAAK,WAAW;YACd,OAAOA,4BAAoB,CAAC,SAAS;AACvC,QAAA,KAAK,CAAC;AACN,QAAA,KAAK,WAAW;YACd,OAAOA,4BAAoB,CAAC,SAAS;AACvC,QAAA,KAAK,CAAC;AACN,QAAA,KAAK,cAAc;YACjB,OAAOA,4BAAoB,CAAC,YAAY;AAC1C,QAAA,KAAK,CAAC;AACN,QAAA,KAAK,aAAa;YAChB,OAAOA,4BAAoB,CAAC,WAAW;QACzC,KAAK,EAAE;AACP,QAAA,KAAK,cAAc;AACnB,QAAA;YACE,OAAOA,4BAAoB,CAAC,YAAY;;AAE9C;AAEM,SAAU,0BAA0B,CAAC,MAA4B,EAAA;IACrE,QAAQ,MAAM;QACZ,KAAKA,4BAAoB,CAAC,8BAA8B;AACtD,YAAA,OAAO,gCAAgC;QACzC,KAAKA,4BAAoB,CAAC,MAAM;AAC9B,YAAA,OAAO,QAAQ;QACjB,KAAKA,4BAAoB,CAAC,SAAS;AACjC,YAAA,OAAO,WAAW;QACpB,KAAKA,4BAAoB,CAAC,SAAS;AACjC,YAAA,OAAO,WAAW;QACpB,KAAKA,4BAAoB,CAAC,YAAY;AACpC,YAAA,OAAO,cAAc;QACvB,KAAKA,4BAAoB,CAAC,WAAW;AACnC,YAAA,OAAO,aAAa;QACtB,KAAKA,4BAAoB,CAAC,YAAY;AACtC,QAAA;AACE,YAAA,OAAO,cAAc;;AAE3B;AAEYC;AAAZ,CAAA,UAAY,YAAY,EAAA;AACtB,IAAA,YAAA,CAAA,YAAA,CAAA,uBAAA,CAAA,GAAA,CAAA,CAAA,GAAA,uBAAyB;AACzB,IAAA,YAAA,CAAA,YAAA,CAAA,SAAA,CAAA,GAAA,CAAA,CAAA,GAAA,SAAW;AACX,IAAA,YAAA,CAAA,YAAA,CAAA,YAAA,CAAA,GAAA,CAAA,CAAA,GAAA,YAAc;AACd,IAAA,YAAA,CAAA,YAAA,CAAA,SAAA,CAAA,GAAA,CAAA,CAAA,GAAA,SAAW;AACX,IAAA,YAAA,CAAA,YAAA,CAAA,UAAA,CAAA,GAAA,CAAA,CAAA,GAAA,UAAY;AACZ,IAAA,YAAA,CAAA,YAAA,CAAA,cAAA,CAAA,GAAA,EAAA,CAAA,GAAA,cAAiB;AACnB,CAAC,EAPWA,oBAAY,KAAZA,oBAAY,GAAA,EAAA,CAAA,CAAA;AASlB,SAAU,oBAAoB,CAAC,MAAW,EAAA;IAC9C,QAAQ,MAAM;AACZ,QAAA,KAAK,CAAC;AACN,QAAA,KAAK,uBAAuB;YAC1B,OAAOA,oBAAY,CAAC,qBAAqB;AAC3C,QAAA,KAAK,CAAC;AACN,QAAA,KAAK,SAAS;YACZ,OAAOA,oBAAY,CAAC,OAAO;AAC7B,QAAA,KAAK,CAAC;AACN,QAAA,KAAK,YAAY;YACf,OAAOA,oBAAY,CAAC,UAAU;AAChC,QAAA,KAAK,CAAC;AACN,QAAA,KAAK,SAAS;YACZ,OAAOA,oBAAY,CAAC,OAAO;AAC7B,QAAA,KAAK,CAAC;AACN,QAAA,KAAK,UAAU;YACb,OAAOA,oBAAY,CAAC,QAAQ;QAC9B,KAAK,EAAE;AACP,QAAA,KAAK,cAAc;AACnB,QAAA;YACE,OAAOA,oBAAY,CAAC,YAAY;;AAEtC;AAEM,SAAU,kBAAkB,CAAC,MAAoB,EAAA;IACrD,QAAQ,MAAM;QACZ,KAAKA,oBAAY,CAAC,qBAAqB;AACrC,YAAA,OAAO,uBAAuB;QAChC,KAAKA,oBAAY,CAAC,OAAO;AACvB,YAAA,OAAO,SAAS;QAClB,KAAKA,oBAAY,CAAC,UAAU;AAC1B,YAAA,OAAO,YAAY;QACrB,KAAKA,oBAAY,CAAC,OAAO;AACvB,YAAA,OAAO,SAAS;QAClB,KAAKA,oBAAY,CAAC,QAAQ;AACxB,YAAA,OAAO,UAAU;QACnB,KAAKA,oBAAY,CAAC,YAAY;AAC9B,QAAA;AACE,YAAA,OAAO,cAAc;;AAE3B;AAqHA,SAAS,6BAA6B,GAAA;IACpC,OAAO,EAAE,UAAU,EAAE,EAAE,EAAE,SAAS,EAAE,EAAE,EAAE;AAC1C;AAEO,MAAM,mBAAmB,GAAoC;AAClE,IAAA,MAAM,CAAC,OAA4B,EAAE,MAAA,GAAuB,IAAIC,iBAAY,EAAE,EAAA;AAC5E,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9C;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC;QAC7C;AACA,QAAA,OAAO,MAAM;IACf,CAAC;IAED,MAAM,CAAC,KAAgC,EAAE,MAAe,EAAA;AACtD,QAAA,MAAM,MAAM,GAAG,KAAK,YAAYC,iBAAY,GAAG,KAAK,GAAG,IAAIA,iBAAY,CAAC,KAAK,CAAC;AAC9E,QAAA,MAAM,GAAG,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM;AACnE,QAAA,MAAM,OAAO,GAAG,6BAA6B,EAAE;AAC/C,QAAA,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE;AACvB,YAAA,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE;AAC3B,YAAA,QAAQ,GAAG,KAAK,CAAC;gBACf,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE;oBACpC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE;oBACnC;gBACF;;AAEF,YAAA,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE;gBAChC;YACF;AACA,YAAA,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACtB;AACA,QAAA,OAAO,OAAO;IAChB,CAAC;AAED,IAAA,QAAQ,CAAC,MAAW,EAAA;QAClB,OAAO;YACL,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE;YAChF,SAAS,EAAE,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,EAAE;SAC9E;IACH,CAAC;AAED,IAAA,MAAM,CAAC,OAA4B,EAAA;QACjC,MAAM,GAAG,GAAQ,EAAE;AACnB,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,GAAG,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU;QACrC;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,GAAG,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS;QACnC;AACA,QAAA,OAAO,GAAG;IACZ,CAAC;AAED,IAAA,MAAM,CAAC,IAAuC,EAAA;QAC5C,OAAO,mBAAmB,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE,CAAC;IACpD,CAAC;AACD,IAAA,WAAW,CAAC,MAAwC,EAAA;AAClD,QAAA,MAAM,OAAO,GAAG,6BAA6B,EAAE;QAC/C,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,IAAI,EAAE;QAC5C,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,IAAI,EAAE;AAC1C,QAAA,OAAO,OAAO;IAChB,CAAC;;AAGH,SAAS,iCAAiC,GAAA;AACxC,IAAA,OAAO,EAAE,UAAU,EAAE,EAAE,EAAE,SAAS,EAAE,EAAE,EAAE,UAAU,EAAE,EAAE,EAAE,eAAe,EAAE,EAAE,EAAE;AAC/E;AAEO,MAAM,uBAAuB,GAAwC;AAC1E,IAAA,MAAM,CAAC,OAAgC,EAAE,MAAA,GAAuB,IAAID,iBAAY,EAAE,EAAA;AAChF,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9C;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC;QAC7C;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9C;AACA,QAAA,IAAI,OAAO,CAAC,eAAe,KAAK,EAAE,EAAE;AAClC,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,eAAe,CAAC;QACnD;AACA,QAAA,OAAO,MAAM;IACf,CAAC;IAED,MAAM,CAAC,KAAgC,EAAE,MAAe,EAAA;AACtD,QAAA,MAAM,MAAM,GAAG,KAAK,YAAYC,iBAAY,GAAG,KAAK,GAAG,IAAIA,iBAAY,CAAC,KAAK,CAAC;AAC9E,QAAA,MAAM,GAAG,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM;AACnE,QAAA,MAAM,OAAO,GAAG,iCAAiC,EAAE;AACnD,QAAA,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE;AACvB,YAAA,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE;AAC3B,YAAA,QAAQ,GAAG,KAAK,CAAC;gBACf,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE;oBACpC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE;oBACnC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE;oBACpC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,eAAe,GAAG,MAAM,CAAC,MAAM,EAAE;oBACzC;gBACF;;AAEF,YAAA,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE;gBAChC;YACF;AACA,YAAA,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACtB;AACA,QAAA,OAAO,OAAO;IAChB,CAAC;AAED,IAAA,QAAQ,CAAC,MAAW,EAAA;QAClB,OAAO;YACL,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE;YAChF,SAAS,EAAE,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,EAAE;YAC7E,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE;YAChF,eAAe,EAAE,KAAK,CAAC,MAAM,CAAC,eAAe,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,eAAe,CAAC,GAAG,EAAE;SAChG;IACH,CAAC;AAED,IAAA,MAAM,CAAC,OAAgC,EAAA;QACrC,MAAM,GAAG,GAAQ,EAAE;AACnB,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,GAAG,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU;QACrC;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,GAAG,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS;QACnC;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,GAAG,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU;QACrC;AACA,QAAA,IAAI,OAAO,CAAC,eAAe,KAAK,EAAE,EAAE;AAClC,YAAA,GAAG,CAAC,eAAe,GAAG,OAAO,CAAC,eAAe;QAC/C;AACA,QAAA,OAAO,GAAG;IACZ,CAAC;AAED,IAAA,MAAM,CAAC,IAA2C,EAAA;QAChD,OAAO,uBAAuB,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE,CAAC;IACxD,CAAC;AACD,IAAA,WAAW,CAAC,MAA4C,EAAA;AACtD,QAAA,MAAM,OAAO,GAAG,iCAAiC,EAAE;QACnD,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,IAAI,EAAE;QAC5C,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,IAAI,EAAE;QAC1C,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,IAAI,EAAE;QAC5C,OAAO,CAAC,eAAe,GAAG,MAAM,CAAC,eAAe,IAAI,EAAE;AACtD,QAAA,OAAO,OAAO;IAChB,CAAC;;AAGH,SAAS,mBAAmB,GAAA;AAC1B,IAAA,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,UAAU,EAAE,CAAC,EAAE,SAAS,EAAE,KAAK,EAAE;AACpD;AAEO,MAAM,SAAS,GAA0B;AAC9C,IAAA,MAAM,CAAC,OAAkB,EAAE,MAAA,GAAuB,IAAID,iBAAY,EAAE,EAAA;AAClE,QAAA,IAAI,OAAO,CAAC,EAAE,KAAK,EAAE,EAAE;AACrB,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC;QACtC;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,CAAC,EAAE;AAC5B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9C;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,KAAK,EAAE;AAC/B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;QAC3C;AACA,QAAA,OAAO,MAAM;IACf,CAAC;IAED,MAAM,CAAC,KAAgC,EAAE,MAAe,EAAA;AACtD,QAAA,MAAM,MAAM,GAAG,KAAK,YAAYC,iBAAY,GAAG,KAAK,GAAG,IAAIA,iBAAY,CAAC,KAAK,CAAC;AAC9E,QAAA,MAAM,GAAG,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM;AACnE,QAAA,MAAM,OAAO,GAAG,mBAAmB,EAAE;AACrC,QAAA,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE;AACvB,YAAA,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE;AAC3B,YAAA,QAAQ,GAAG,KAAK,CAAC;gBACf,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE;oBAC5B;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE;oBACpC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,IAAI,EAAE;oBACjC;gBACF;;AAEF,YAAA,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE;gBAChC;YACF;AACA,YAAA,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACtB;AACA,QAAA,OAAO,OAAO;IAChB,CAAC;AAED,IAAA,QAAQ,CAAC,MAAW,EAAA;QAClB,OAAO;YACL,EAAE,EAAE,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,EAAE;YACxD,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC;YAC/E,SAAS,EAAE,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,UAAU,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,KAAK;SAClF;IACH,CAAC;AAED,IAAA,MAAM,CAAC,OAAkB,EAAA;QACvB,MAAM,GAAG,GAAQ,EAAE;AACnB,QAAA,IAAI,OAAO,CAAC,EAAE,KAAK,EAAE,EAAE;AACrB,YAAA,GAAG,CAAC,EAAE,GAAG,OAAO,CAAC,EAAE;QACrB;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,CAAC,EAAE;YAC5B,GAAG,CAAC,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,UAAU,CAAC;QACjD;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,KAAK,EAAE;AAC/B,YAAA,GAAG,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS;QACnC;AACA,QAAA,OAAO,GAAG;IACZ,CAAC;AAED,IAAA,MAAM,CAAC,IAA6B,EAAA;QAClC,OAAO,SAAS,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE,CAAC;IAC1C,CAAC;AACD,IAAA,WAAW,CAAC,MAA8B,EAAA;AACxC,QAAA,MAAM,OAAO,GAAG,mBAAmB,EAAE;QACrC,OAAO,CAAC,EAAE,GAAG,MAAM,CAAC,EAAE,IAAI,EAAE;QAC5B,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,IAAI,CAAC;QAC3C,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,IAAI,KAAK;AAC7C,QAAA,OAAO,OAAO;IAChB,CAAC;;AAGH,SAAS,yBAAyB,GAAA;AAChC,IAAA,OAAO,EAAE,EAAE,EAAE,SAAS,EAAE,UAAU,EAAE,EAAE,EAAE,SAAS,EAAE,EAAE,EAAE,QAAQ,EAAE,EAAE,EAAE;AACvE;AAEO,MAAM,eAAe,GAAgC;AAC1D,IAAA,MAAM,CAAC,OAAwB,EAAE,MAAA,GAAuB,IAAID,iBAAY,EAAE,EAAA;AACxE,QAAA,IAAI,OAAO,CAAC,EAAE,KAAK,SAAS,EAAE;YAC5BE,QAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE;QAC1D;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9C;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC;QAC7C;AACA,QAAA,KAAK,MAAM,CAAC,IAAI,OAAO,CAAC,QAAQ,EAAE;AAChC,YAAA,sBAAsB,CAAC,MAAM,CAAC,CAAE,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE;QACpE;AACA,QAAA,OAAO,MAAM;IACf,CAAC;IAED,MAAM,CAAC,KAAgC,EAAE,MAAe,EAAA;AACtD,QAAA,MAAM,MAAM,GAAG,KAAK,YAAYD,iBAAY,GAAG,KAAK,GAAG,IAAIA,iBAAY,CAAC,KAAK,CAAC;AAC9E,QAAA,MAAM,GAAG,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM;AACnE,QAAA,MAAM,OAAO,GAAG,yBAAyB,EAAE;AAC3C,QAAA,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE;AACvB,YAAA,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE;AAC3B,YAAA,QAAQ,GAAG,KAAK,CAAC;gBACf,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,EAAE,GAAGC,QAAI,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC;oBACjD;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE;oBACpC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE;oBACnC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,sBAAsB,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC;oBAC7E;gBACF;;AAEF,YAAA,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE;gBAChC;YACF;AACA,YAAA,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACtB;AACA,QAAA,OAAO,OAAO;IAChB,CAAC;AAED,IAAA,QAAQ,CAAC,MAAW,EAAA;QAClB,OAAO;YACL,EAAE,EAAE,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,GAAGA,QAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,SAAS;YAC3D,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE;YAChF,SAAS,EAAE,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,EAAE;YAC7E,QAAQ,EAAE,UAAU,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,QAAQ;AACjD,kBAAE,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAM,KAAK,sBAAsB,CAAC,QAAQ,CAAC,CAAC,CAAC;AACpE,kBAAE,EAAE;SACP;IACH,CAAC;AAED,IAAA,MAAM,CAAC,OAAwB,EAAA;QAC7B,MAAM,GAAG,GAAQ,EAAE;AACnB,QAAA,IAAI,OAAO,CAAC,EAAE,KAAK,SAAS,EAAE;YAC5B,GAAG,CAAC,EAAE,GAAGA,QAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC;QAClC;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,GAAG,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU;QACrC;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,GAAG,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS;QACnC;AACA,QAAA,IAAI,OAAO,CAAC,QAAQ,EAAE,MAAM,EAAE;YAC5B,GAAG,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,sBAAsB,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;QAC9E;AACA,QAAA,OAAO,GAAG;IACZ,CAAC;AAED,IAAA,MAAM,CAAC,IAAmC,EAAA;QACxC,OAAO,eAAe,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE,CAAC;IAChD,CAAC;AACD,IAAA,WAAW,CAAC,MAAoC,EAAA;AAC9C,QAAA,MAAM,OAAO,GAAG,yBAAyB,EAAE;AAC3C,QAAA,OAAO,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,EAAE,KAAK,SAAS,IAAI,MAAM,CAAC,EAAE,KAAK,IAAI,IAAIA,QAAI,CAAC,WAAW,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,SAAS;QACtG,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,IAAI,EAAE;QAC5C,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,IAAI,EAAE;QAC1C,OAAO,CAAC,QAAQ,GAAG,MAAM,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC,CAAC,KAAK,sBAAsB,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE;AAC3F,QAAA,OAAO,OAAO;IAChB,CAAC;;AAGH,SAAS,gCAAgC,GAAA;AACvC,IAAA,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,cAAc,EAAE,EAAE,EAAE,QAAQ,EAAE,EAAE,EAAE,UAAU,EAAE,EAAE,EAAE;AAClF;AAEO,MAAM,sBAAsB,GAAuC;AACxE,IAAA,MAAM,CAAC,OAA+B,EAAE,MAAA,GAAuB,IAAIF,iBAAY,EAAE,EAAA;AAC/E,QAAA,IAAI,OAAO,CAAC,QAAQ,KAAK,SAAS,EAAE;YAClC,0BAA0B,CAAC,MAAM,CAAC,OAAO,CAAC,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE;QACtF;AACA,QAAA,IAAI,OAAO,CAAC,cAAc,KAAK,EAAE,EAAE;AACjC,YAAA,IAAI,MAAM,CAAC,OAAO,CAAC,EAAE,EAAE,OAAO,CAAC,cAAc,CAAC,KAAK,OAAO,CAAC,cAAc,EAAE;AACzE,gBAAA,MAAM,IAAI,UAAU,CAAC,KAAK,CAAC,0EAA0E,CAAC;YACxG;AACA,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,cAAc,CAAC;QAClD;AACA,QAAA,KAAK,MAAM,CAAC,IAAI,OAAO,CAAC,QAAQ,EAAE;YAChC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,CAAE,CAAC;QAC9B;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9C;AACA,QAAA,OAAO,MAAM;IACf,CAAC;IAED,MAAM,CAAC,KAAgC,EAAE,MAAe,EAAA;AACtD,QAAA,MAAM,MAAM,GAAG,KAAK,YAAYC,iBAAY,GAAG,KAAK,GAAG,IAAIA,iBAAY,CAAC,KAAK,CAAC;AAC9E,QAAA,MAAM,GAAG,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM;AACnE,QAAA,MAAM,OAAO,GAAG,gCAAgC,EAAE;AAClD,QAAA,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE;AACvB,YAAA,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE;AAC3B,YAAA,QAAQ,GAAG,KAAK,CAAC;gBACf,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,QAAQ,GAAG,0BAA0B,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC;oBAC7E;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,cAAc,GAAG,MAAM,CAAC,MAAM,EAAY;oBAClD;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;oBAEA,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC;oBACtC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE;oBACpC;gBACF;;AAEF,YAAA,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE;gBAChC;YACF;AACA,YAAA,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACtB;AACA,QAAA,OAAO,OAAO;IAChB,CAAC;AAED,IAAA,QAAQ,CAAC,MAAW,EAAA;QAClB,OAAO;YACL,QAAQ,EAAE,KAAK,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,0BAA0B,CAAC,QAAQ,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,SAAS;AACnG,YAAA,cAAc,EAAE,KAAK,CAAC,MAAM,CAAC,cAAc,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,cAAc,CAAC,GAAG,EAAE;AACjF,YAAA,QAAQ,EAAE,UAAU,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,QAAQ,CAAC,GAAG,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAM,KAAK,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE;YACjH,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE;SACjF;IACH,CAAC;AAED,IAAA,MAAM,CAAC,OAA+B,EAAA;QACpC,MAAM,GAAG,GAAQ,EAAE;AACnB,QAAA,IAAI,OAAO,CAAC,QAAQ,KAAK,SAAS,EAAE;YAClC,GAAG,CAAC,QAAQ,GAAG,0BAA0B,CAAC,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC;QACpE;AACA,QAAA,IAAI,OAAO,CAAC,cAAc,KAAK,EAAE,EAAE;YACjC,GAAG,CAAC,cAAc,GAAG,OAAO,CAAC,cAAc,CAAC,QAAQ,EAAE;QACxD;AACA,QAAA,IAAI,OAAO,CAAC,QAAQ,EAAE,MAAM,EAAE;AAC5B,YAAA,GAAG,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ;QACjC;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,GAAG,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU;QACrC;AACA,QAAA,OAAO,GAAG;IACZ,CAAC;AAED,IAAA,MAAM,CAAC,IAA0C,EAAA;QAC/C,OAAO,sBAAsB,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE,CAAC;IACvD,CAAC;AACD,IAAA,WAAW,CAAC,MAA2C,EAAA;AACrD,QAAA,MAAM,OAAO,GAAG,gCAAgC,EAAE;AAClD,QAAA,OAAO,CAAC,QAAQ,GAAG,CAAC,MAAM,CAAC,QAAQ,KAAK,SAAS,IAAI,MAAM,CAAC,QAAQ,KAAK,IAAI;cACzE,0BAA0B,CAAC,WAAW,CAAC,MAAM,CAAC,QAAQ;cACtD,SAAS;QACb,OAAO,CAAC,cAAc,GAAG,MAAM,CAAC,cAAc,IAAI,EAAE;AACpD,QAAA,OAAO,CAAC,QAAQ,GAAG,MAAM,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,IAAI,EAAE;QACvD,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,IAAI,EAAE;AAC5C,QAAA,OAAO,OAAO;IAChB,CAAC;;AAGH,SAAS,oCAAoC,GAAA;AAC3C,IAAA,OAAO,EAAE,UAAU,EAAE,EAAE,EAAE,SAAS,EAAE,EAAE,EAAE,UAAU,EAAE,EAAE,EAAE;AAC1D;AAEO,MAAM,0BAA0B,GAA2C;AAChF,IAAA,MAAM,CAAC,OAAmC,EAAE,MAAA,GAAuB,IAAID,iBAAY,EAAE,EAAA;AACnF,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9C;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC;QAC7C;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9C;AACA,QAAA,OAAO,MAAM;IACf,CAAC;IAED,MAAM,CAAC,KAAgC,EAAE,MAAe,EAAA;AACtD,QAAA,MAAM,MAAM,GAAG,KAAK,YAAYC,iBAAY,GAAG,KAAK,GAAG,IAAIA,iBAAY,CAAC,KAAK,CAAC;AAC9E,QAAA,MAAM,GAAG,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM;AACnE,QAAA,MAAM,OAAO,GAAG,oCAAoC,EAAE;AACtD,QAAA,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE;AACvB,YAAA,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE;AAC3B,YAAA,QAAQ,GAAG,KAAK,CAAC;gBACf,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE;oBACpC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE;oBACnC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE;oBACpC;gBACF;;AAEF,YAAA,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE;gBAChC;YACF;AACA,YAAA,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACtB;AACA,QAAA,OAAO,OAAO;IAChB,CAAC;AAED,IAAA,QAAQ,CAAC,MAAW,EAAA;QAClB,OAAO;YACL,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE;YAChF,SAAS,EAAE,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,EAAE;YAC7E,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE;SACjF;IACH,CAAC;AAED,IAAA,MAAM,CAAC,OAAmC,EAAA;QACxC,MAAM,GAAG,GAAQ,EAAE;AACnB,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,GAAG,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU;QACrC;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,GAAG,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS;QACnC;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,GAAG,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU;QACrC;AACA,QAAA,OAAO,GAAG;IACZ,CAAC;AAED,IAAA,MAAM,CAAC,IAA8C,EAAA;QACnD,OAAO,0BAA0B,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE,CAAC;IAC3D,CAAC;AACD,IAAA,WAAW,CAAC,MAA+C,EAAA;AACzD,QAAA,MAAM,OAAO,GAAG,oCAAoC,EAAE;QACtD,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,IAAI,EAAE;QAC5C,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,IAAI,EAAE;QAC1C,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,IAAI,EAAE;AAC5C,QAAA,OAAO,OAAO;IAChB,CAAC;;AAGH,SAAS,uCAAuC,GAAA;AAC9C,IAAA,OAAO,EAAE,UAAU,EAAE,EAAE,EAAE,SAAS,EAAE,EAAE,EAAE,UAAU,EAAE,EAAE,EAAE,eAAe,EAAE,EAAE,EAAE;AAC/E;AAEO,MAAM,6BAA6B,GAA8C;AACtF,IAAA,MAAM,CAAC,OAAsC,EAAE,MAAA,GAAuB,IAAID,iBAAY,EAAE,EAAA;AACtF,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9C;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC;QAC7C;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9C;AACA,QAAA,IAAI,OAAO,CAAC,eAAe,KAAK,EAAE,EAAE;AAClC,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,eAAe,CAAC;QACnD;AACA,QAAA,OAAO,MAAM;IACf,CAAC;IAED,MAAM,CAAC,KAAgC,EAAE,MAAe,EAAA;AACtD,QAAA,MAAM,MAAM,GAAG,KAAK,YAAYC,iBAAY,GAAG,KAAK,GAAG,IAAIA,iBAAY,CAAC,KAAK,CAAC;AAC9E,QAAA,MAAM,GAAG,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM;AACnE,QAAA,MAAM,OAAO,GAAG,uCAAuC,EAAE;AACzD,QAAA,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE;AACvB,YAAA,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE;AAC3B,YAAA,QAAQ,GAAG,KAAK,CAAC;gBACf,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE;oBACpC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE;oBACnC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE;oBACpC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,eAAe,GAAG,MAAM,CAAC,MAAM,EAAE;oBACzC;gBACF;;AAEF,YAAA,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE;gBAChC;YACF;AACA,YAAA,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACtB;AACA,QAAA,OAAO,OAAO;IAChB,CAAC;AAED,IAAA,QAAQ,CAAC,MAAW,EAAA;QAClB,OAAO;YACL,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE;YAChF,SAAS,EAAE,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,EAAE;YAC7E,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE;YAChF,eAAe,EAAE,KAAK,CAAC,MAAM,CAAC,eAAe,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,eAAe,CAAC,GAAG,EAAE;SAChG;IACH,CAAC;AAED,IAAA,MAAM,CAAC,OAAsC,EAAA;QAC3C,MAAM,GAAG,GAAQ,EAAE;AACnB,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,GAAG,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU;QACrC;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,GAAG,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS;QACnC;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,GAAG,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU;QACrC;AACA,QAAA,IAAI,OAAO,CAAC,eAAe,KAAK,EAAE,EAAE;AAClC,YAAA,GAAG,CAAC,eAAe,GAAG,OAAO,CAAC,eAAe;QAC/C;AACA,QAAA,OAAO,GAAG;IACZ,CAAC;AAED,IAAA,MAAM,CAAC,IAAiD,EAAA;QACtD,OAAO,6BAA6B,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE,CAAC;IAC9D,CAAC;AACD,IAAA,WAAW,CAAC,MAAkD,EAAA;AAC5D,QAAA,MAAM,OAAO,GAAG,uCAAuC,EAAE;QACzD,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,IAAI,EAAE;QAC5C,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,IAAI,EAAE;QAC1C,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,IAAI,EAAE;QAC5C,OAAO,CAAC,eAAe,GAAG,MAAM,CAAC,eAAe,IAAI,EAAE;AACtD,QAAA,OAAO,OAAO;IAChB,CAAC;;AAGH,SAAS,oDAAoD,GAAA;AAC3D,IAAA,OAAO,EAAE,UAAU,EAAE,EAAE,EAAE,SAAS,EAAE,EAAE,EAAE,UAAU,EAAE,EAAE,EAAE;AAC1D;AAEO,MAAM,0CAA0C,GAA2D;AAChH,IAAA,MAAM,CAAC,OAAmD,EAAE,MAAA,GAAuB,IAAID,iBAAY,EAAE,EAAA;AACnG,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9C;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC;QAC7C;AACA,QAAA,KAAK,MAAM,CAAC,IAAI,OAAO,CAAC,UAAU,EAAE;AAClC,YAAA,SAAS,CAAC,MAAM,CAAC,CAAE,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE;QACvD;AACA,QAAA,OAAO,MAAM;IACf,CAAC;IAED,MAAM,CAAC,KAAgC,EAAE,MAAe,EAAA;AACtD,QAAA,MAAM,MAAM,GAAG,KAAK,YAAYC,iBAAY,GAAG,KAAK,GAAG,IAAIA,iBAAY,CAAC,KAAK,CAAC;AAC9E,QAAA,MAAM,GAAG,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM;AACnE,QAAA,MAAM,OAAO,GAAG,oDAAoD,EAAE;AACtE,QAAA,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE;AACvB,YAAA,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE;AAC3B,YAAA,QAAQ,GAAG,KAAK,CAAC;gBACf,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE;oBACpC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE;oBACnC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC;oBAClE;gBACF;;AAEF,YAAA,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE;gBAChC;YACF;AACA,YAAA,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACtB;AACA,QAAA,OAAO,OAAO;IAChB,CAAC;AAED,IAAA,QAAQ,CAAC,MAAW,EAAA;QAClB,OAAO;YACL,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE;YAChF,SAAS,EAAE,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,EAAE;YAC7E,UAAU,EAAE,UAAU,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,UAAU;AACrD,kBAAE,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAM,KAAK,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAC;AACzD,kBAAE,EAAE;SACP;IACH,CAAC;AAED,IAAA,MAAM,CAAC,OAAmD,EAAA;QACxD,MAAM,GAAG,GAAQ,EAAE;AACnB,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,GAAG,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU;QACrC;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,GAAG,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS;QACnC;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,EAAE,MAAM,EAAE;YAC9B,GAAG,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;QACrE;AACA,QAAA,OAAO,GAAG;IACZ,CAAC;AAED,IAAA,MAAM,CAAC,IAA8D,EAAA;QACnE,OAAO,0CAA0C,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE,CAAC;IAC3E,CAAC;AACD,IAAA,WAAW,CACT,MAA+D,EAAA;AAE/D,QAAA,MAAM,OAAO,GAAG,oDAAoD,EAAE;QACtE,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,IAAI,EAAE;QAC5C,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,IAAI,EAAE;QAC1C,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC,CAAC,KAAK,SAAS,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE;AAClF,QAAA,OAAO,OAAO;IAChB,CAAC;;AAGH,SAAS,oCAAoC,GAAA;AAC3C,IAAA,OAAO,EAAE,KAAK,EAAE,EAAE,EAAE;AACtB;AAEO,MAAM,0BAA0B,GAA2C;AAChF,IAAA,MAAM,CAAC,OAAmC,EAAE,MAAA,GAAuB,IAAID,iBAAY,EAAE,EAAA;AACnF,QAAA,KAAK,MAAM,CAAC,IAAI,OAAO,CAAC,KAAK,EAAE;AAC7B,YAAA,eAAe,CAAC,MAAM,CAAC,CAAE,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE;QAC7D;AACA,QAAA,OAAO,MAAM;IACf,CAAC;IAED,MAAM,CAAC,KAAgC,EAAE,MAAe,EAAA;AACtD,QAAA,MAAM,MAAM,GAAG,KAAK,YAAYC,iBAAY,GAAG,KAAK,GAAG,IAAIA,iBAAY,CAAC,KAAK,CAAC;AAC9E,QAAA,MAAM,GAAG,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM;AACnE,QAAA,MAAM,OAAO,GAAG,oCAAoC,EAAE;AACtD,QAAA,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE;AACvB,YAAA,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE;AAC3B,YAAA,QAAQ,GAAG,KAAK,CAAC;gBACf,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC;oBACnE;gBACF;;AAEF,YAAA,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE;gBAChC;YACF;AACA,YAAA,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACtB;AACA,QAAA,OAAO,OAAO;IAChB,CAAC;AAED,IAAA,QAAQ,CAAC,MAAW,EAAA;QAClB,OAAO;AACL,YAAA,KAAK,EAAE,UAAU,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,GAAG,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAM,KAAK,eAAe,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE;SAChH;IACH,CAAC;AAED,IAAA,MAAM,CAAC,OAAmC,EAAA;QACxC,MAAM,GAAG,GAAQ,EAAE;AACnB,QAAA,IAAI,OAAO,CAAC,KAAK,EAAE,MAAM,EAAE;YACzB,GAAG,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,eAAe,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;QACjE;AACA,QAAA,OAAO,GAAG;IACZ,CAAC;AAED,IAAA,MAAM,CAAC,IAA8C,EAAA;QACnD,OAAO,0BAA0B,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE,CAAC;IAC3D,CAAC;AACD,IAAA,WAAW,CAAC,MAA+C,EAAA;AACzD,QAAA,MAAM,OAAO,GAAG,oCAAoC,EAAE;QACtD,OAAO,CAAC,KAAK,GAAG,MAAM,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC,CAAC,KAAK,eAAe,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE;AAC9E,QAAA,OAAO,OAAO;IAChB,CAAC;;AAGH,SAAS,wCAAwC,GAAA;AAC/C,IAAA,OAAO,EAAE,KAAK,EAAE,EAAE,EAAE;AACtB;AAEO,MAAM,8BAA8B,GAA+C;AACxF,IAAA,MAAM,CAAC,OAAuC,EAAE,MAAA,GAAuB,IAAID,iBAAY,EAAE,EAAA;AACvF,QAAA,KAAK,MAAM,CAAC,IAAI,OAAO,CAAC,KAAK,EAAE;AAC7B,YAAA,mBAAmB,CAAC,MAAM,CAAC,CAAE,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE;QACjE;AACA,QAAA,OAAO,MAAM;IACf,CAAC;IAED,MAAM,CAAC,KAAgC,EAAE,MAAe,EAAA;AACtD,QAAA,MAAM,MAAM,GAAG,KAAK,YAAYC,iBAAY,GAAG,KAAK,GAAG,IAAIA,iBAAY,CAAC,KAAK,CAAC;AAC9E,QAAA,MAAM,GAAG,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM;AACnE,QAAA,MAAM,OAAO,GAAG,wCAAwC,EAAE;AAC1D,QAAA,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE;AACvB,YAAA,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE;AAC3B,YAAA,QAAQ,GAAG,KAAK,CAAC;gBACf,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC;oBACvE;gBACF;;AAEF,YAAA,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE;gBAChC;YACF;AACA,YAAA,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACtB;AACA,QAAA,OAAO,OAAO;IAChB,CAAC;AAED,IAAA,QAAQ,CAAC,MAAW,EAAA;QAClB,OAAO;YACL,KAAK,EAAE,UAAU,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,KAAK;AAC3C,kBAAE,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAM,KAAK,mBAAmB,CAAC,QAAQ,CAAC,CAAC,CAAC;AAC9D,kBAAE,EAAE;SACP;IACH,CAAC;AAED,IAAA,MAAM,CAAC,OAAuC,EAAA;QAC5C,MAAM,GAAG,GAAQ,EAAE;AACnB,QAAA,IAAI,OAAO,CAAC,KAAK,EAAE,MAAM,EAAE;YACzB,GAAG,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,mBAAmB,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;QACrE;AACA,QAAA,OAAO,GAAG;IACZ,CAAC;AAED,IAAA,MAAM,CAAC,IAAkD,EAAA;QACvD,OAAO,8BAA8B,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE,CAAC;IAC/D,CAAC;AACD,IAAA,WAAW,CAAC,MAAmD,EAAA;AAC7D,QAAA,MAAM,OAAO,GAAG,wCAAwC,EAAE;QAC1D,OAAO,CAAC,KAAK,GAAG,MAAM,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC,CAAC,KAAK,mBAAmB,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE;AAClF,QAAA,OAAO,OAAO;IAChB,CAAC;;AAGH,SAAS,6BAA6B,GAAA;IACpC,OAAO;AACL,QAAA,EAAE,EAAE,EAAE;AACN,QAAA,eAAe,EAAE,EAAE;AACnB,QAAA,IAAI,EAAE,CAAC;AACP,QAAA,KAAK,EAAE,CAAC;AACR,QAAA,UAAU,EAAE,EAAE;AACd,QAAA,uBAAuB,EAAE,EAAE;AAC3B,QAAA,8BAA8B,EAAE,EAAE;AAClC,QAAA,YAAY,EAAE,CAAC;AACf,QAAA,YAAY,EAAE,KAAK;AACnB,QAAA,YAAY,EAAE,KAAK;AACnB,QAAA,uBAAuB,EAAE,EAAE;KAC5B;AACH;AAEO,MAAM,mBAAmB,GAAoC;AAClE,IAAA,MAAM,CAAC,OAA4B,EAAE,MAAA,GAAuB,IAAID,iBAAY,EAAE,EAAA;AAC5E,QAAA,IAAI,OAAO,CAAC,EAAE,KAAK,EAAE,EAAE;AACrB,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC;QACtC;AACA,QAAA,IAAI,OAAO,CAAC,eAAe,KAAK,EAAE,EAAE;AAClC,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,eAAe,CAAC;QACnD;AACA,QAAA,IAAI,OAAO,CAAC,IAAI,KAAK,CAAC,EAAE;AACtB,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC;QACvC;AACA,QAAA,IAAI,OAAO,CAAC,KAAK,KAAK,CAAC,EAAE;AACvB,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC;QACxC;AACA,QAAA,KAAK,MAAM,CAAC,IAAI,OAAO,CAAC,UAAU,EAAE;AAClC,YAAA,SAAS,CAAC,MAAM,CAAC,CAAE,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE;QACvD;AACA,QAAA,IAAI,OAAO,CAAC,uBAAuB,KAAK,EAAE,EAAE;AAC1C,YAAA,IAAI,MAAM,CAAC,OAAO,CAAC,EAAE,EAAE,OAAO,CAAC,uBAAuB,CAAC,KAAK,OAAO,CAAC,uBAAuB,EAAE;AAC3F,gBAAA,MAAM,IAAI,UAAU,CAAC,KAAK,CAAC,mFAAmF,CAAC;YACjH;AACA,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,uBAAuB,CAAC;QAC3D;AACA,QAAA,IAAI,OAAO,CAAC,8BAA8B,KAAK,EAAE,EAAE;AACjD,YAAA,IAAI,MAAM,CAAC,OAAO,CAAC,EAAE,EAAE,OAAO,CAAC,8BAA8B,CAAC,KAAK,OAAO,CAAC,8BAA8B,EAAE;AACzG,gBAAA,MAAM,IAAI,UAAU,CAAC,KAAK,CACxB,0FAA0F,CAC3F;YACH;AACA,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,8BAA8B,CAAC;QAClE;AACA,QAAA,IAAI,OAAO,CAAC,YAAY,KAAK,CAAC,EAAE;AAC9B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,YAAY,CAAC;QAC/C;AACA,QAAA,IAAI,OAAO,CAAC,YAAY,KAAK,KAAK,EAAE;AAClC,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;QAC9C;AACA,QAAA,IAAI,OAAO,CAAC,YAAY,KAAK,KAAK,EAAE;AAClC,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;QAC9C;AACA,QAAA,IAAI,OAAO,CAAC,uBAAuB,KAAK,EAAE,EAAE;AAC1C,YAAA,IAAI,MAAM,CAAC,OAAO,CAAC,EAAE,EAAE,OAAO,CAAC,uBAAuB,CAAC,KAAK,OAAO,CAAC,uBAAuB,EAAE;AAC3F,gBAAA,MAAM,IAAI,UAAU,CAAC,KAAK,CAAC,mFAAmF,CAAC;YACjH;AACA,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,uBAAuB,CAAC;QAC3D;AACA,QAAA,OAAO,MAAM;IACf,CAAC;IAED,MAAM,CAAC,KAAgC,EAAE,MAAe,EAAA;AACtD,QAAA,MAAM,MAAM,GAAG,KAAK,YAAYC,iBAAY,GAAG,KAAK,GAAG,IAAIA,iBAAY,CAAC,KAAK,CAAC;AAC9E,QAAA,MAAM,GAAG,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM;AACnE,QAAA,MAAM,OAAO,GAAG,6BAA6B,EAAE;AAC/C,QAAA,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE;AACvB,YAAA,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE;AAC3B,YAAA,QAAQ,GAAG,KAAK,CAAC;gBACf,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE;oBAC5B;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,eAAe,GAAG,MAAM,CAAC,MAAM,EAAE;oBACzC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,IAAI,GAAG,MAAM,CAAC,KAAK,EAAS;oBACpC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,KAAK,GAAG,MAAM,CAAC,KAAK,EAAS;oBACrC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC;oBAClE;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,uBAAuB,GAAG,MAAM,CAAC,MAAM,EAAY;oBAC3D;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,8BAA8B,GAAG,MAAM,CAAC,MAAM,EAAY;oBAClE;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,YAAY,GAAG,MAAM,CAAC,KAAK,EAAS;oBAC5C;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,YAAY,GAAG,MAAM,CAAC,IAAI,EAAE;oBACpC;gBACF;gBACA,KAAK,EAAE,EAAE;AACP,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,YAAY,GAAG,MAAM,CAAC,IAAI,EAAE;oBACpC;gBACF;gBACA,KAAK,EAAE,EAAE;AACP,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,uBAAuB,GAAG,MAAM,CAAC,MAAM,EAAY;oBAC3D;gBACF;;AAEF,YAAA,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE;gBAChC;YACF;AACA,YAAA,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACtB;AACA,QAAA,OAAO,OAAO;IAChB,CAAC;AAED,IAAA,QAAQ,CAAC,MAAW,EAAA;QAClB,OAAO;YACL,EAAE,EAAE,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,EAAE;YACxD,eAAe,EAAE,KAAK,CAAC,MAAM,CAAC,eAAe,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,eAAe,CAAC,GAAG,EAAE;AAC/F,YAAA,IAAI,EAAE,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,oBAAoB,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC;AAChE,YAAA,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,qBAAqB,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC;YACpE,UAAU,EAAE,UAAU,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,UAAU;AACrD,kBAAE,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAM,KAAK,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAC;AACzD,kBAAE,EAAE;AACN,YAAA,uBAAuB,EAAE,KAAK,CAAC,MAAM,CAAC,uBAAuB,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,uBAAuB,CAAC,GAAG,EAAE;AAC5G,YAAA,8BAA8B,EAAE,KAAK,CAAC,MAAM,CAAC,8BAA8B;AACzE,kBAAE,MAAM,CAAC,MAAM,CAAC,8BAA8B;AAC9C,kBAAE,EAAE;AACN,YAAA,YAAY,EAAE,KAAK,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,4BAA4B,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,CAAC;YAChG,YAAY,EAAE,KAAK,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,UAAU,CAAC,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,KAAK;YAC1F,YAAY,EAAE,KAAK,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,UAAU,CAAC,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,KAAK;AAC1F,YAAA,uBAAuB,EAAE,KAAK,CAAC,MAAM,CAAC,uBAAuB,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,uBAAuB,CAAC,GAAG,EAAE;SAC7G;IACH,CAAC;AAED,IAAA,MAAM,CAAC,OAA4B,EAAA;QACjC,MAAM,GAAG,GAAQ,EAAE;AACnB,QAAA,IAAI,OAAO,CAAC,EAAE,KAAK,EAAE,EAAE;AACrB,YAAA,GAAG,CAAC,EAAE,GAAG,OAAO,CAAC,EAAE;QACrB;AACA,QAAA,IAAI,OAAO,CAAC,eAAe,KAAK,EAAE,EAAE;AAClC,YAAA,GAAG,CAAC,eAAe,GAAG,OAAO,CAAC,eAAe;QAC/C;AACA,QAAA,IAAI,OAAO,CAAC,IAAI,KAAK,CAAC,EAAE;YACtB,GAAG,CAAC,IAAI,GAAG,kBAAkB,CAAC,OAAO,CAAC,IAAI,CAAC;QAC7C;AACA,QAAA,IAAI,OAAO,CAAC,KAAK,KAAK,CAAC,EAAE;YACvB,GAAG,CAAC,KAAK,GAAG,mBAAmB,CAAC,OAAO,CAAC,KAAK,CAAC;QAChD;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,EAAE,MAAM,EAAE;YAC9B,GAAG,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;QACrE;AACA,QAAA,IAAI,OAAO,CAAC,uBAAuB,KAAK,EAAE,EAAE;YAC1C,GAAG,CAAC,uBAAuB,GAAG,OAAO,CAAC,uBAAuB,CAAC,QAAQ,EAAE;QAC1E;AACA,QAAA,IAAI,OAAO,CAAC,8BAA8B,KAAK,EAAE,EAAE;YACjD,GAAG,CAAC,8BAA8B,GAAG,OAAO,CAAC,8BAA8B,CAAC,QAAQ,EAAE;QACxF;AACA,QAAA,IAAI,OAAO,CAAC,YAAY,KAAK,CAAC,EAAE;YAC9B,GAAG,CAAC,YAAY,GAAG,0BAA0B,CAAC,OAAO,CAAC,YAAY,CAAC;QACrE;AACA,QAAA,IAAI,OAAO,CAAC,YAAY,KAAK,KAAK,EAAE;AAClC,YAAA,GAAG,CAAC,YAAY,GAAG,OAAO,CAAC,YAAY;QACzC;AACA,QAAA,IAAI,OAAO,CAAC,YAAY,KAAK,KAAK,EAAE;AAClC,YAAA,GAAG,CAAC,YAAY,GAAG,OAAO,CAAC,YAAY;QACzC;AACA,QAAA,IAAI,OAAO,CAAC,uBAAuB,KAAK,EAAE,EAAE;YAC1C,GAAG,CAAC,uBAAuB,GAAG,OAAO,CAAC,uBAAuB,CAAC,QAAQ,EAAE;QAC1E;AACA,QAAA,OAAO,GAAG;IACZ,CAAC;AAED,IAAA,MAAM,CAAC,IAAuC,EAAA;QAC5C,OAAO,mBAAmB,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE,CAAC;IACpD,CAAC;AACD,IAAA,WAAW,CAAC,MAAwC,EAAA;AAClD,QAAA,MAAM,OAAO,GAAG,6BAA6B,EAAE;QAC/C,OAAO,CAAC,EAAE,GAAG,MAAM,CAAC,EAAE,IAAI,EAAE;QAC5B,OAAO,CAAC,eAAe,GAAG,MAAM,CAAC,eAAe,IAAI,EAAE;QACtD,OAAO,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,IAAI,CAAC;QAC/B,OAAO,CAAC,KAAK,GAAG,MAAM,CAAC,KAAK,IAAI,CAAC;QACjC,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC,CAAC,KAAK,SAAS,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE;QAClF,OAAO,CAAC,uBAAuB,GAAG,MAAM,CAAC,uBAAuB,IAAI,EAAE;QACtE,OAAO,CAAC,8BAA8B,GAAG,MAAM,CAAC,8BAA8B,IAAI,EAAE;QACpF,OAAO,CAAC,YAAY,GAAG,MAAM,CAAC,YAAY,IAAI,CAAC;QAC/C,OAAO,CAAC,YAAY,GAAG,MAAM,CAAC,YAAY,IAAI,KAAK;QACnD,OAAO,CAAC,YAAY,GAAG,MAAM,CAAC,YAAY,IAAI,KAAK;QACnD,OAAO,CAAC,uBAAuB,GAAG,MAAM,CAAC,uBAAuB,IAAI,EAAE;AACtE,QAAA,OAAO,OAAO;IAChB,CAAC;;AAGH,SAAS,gBAAgB,GAAA;AACvB,IAAA,OAAO,EAAE,UAAU,EAAE,EAAE,EAAE,SAAS,EAAE,EAAE,EAAE,UAAU,EAAE,EAAE,EAAE,eAAe,EAAE,EAAE,EAAE;AAC/E;AAEO,MAAM,MAAM,GAAuB;AACxC,IAAA,MAAM,CAAC,OAAe,EAAE,MAAA,GAAuB,IAAID,iBAAY,EAAE,EAAA;AAC/D,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9C;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC;QAC7C;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9C;AACA,QAAA,IAAI,OAAO,CAAC,eAAe,KAAK,EAAE,EAAE;AAClC,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,eAAe,CAAC;QACnD;AACA,QAAA,OAAO,MAAM;IACf,CAAC;IAED,MAAM,CAAC,KAAgC,EAAE,MAAe,EAAA;AACtD,QAAA,MAAM,MAAM,GAAG,KAAK,YAAYC,iBAAY,GAAG,KAAK,GAAG,IAAIA,iBAAY,CAAC,KAAK,CAAC;AAC9E,QAAA,MAAM,GAAG,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM;AACnE,QAAA,MAAM,OAAO,GAAG,gBAAgB,EAAE;AAClC,QAAA,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE;AACvB,YAAA,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE;AAC3B,YAAA,QAAQ,GAAG,KAAK,CAAC;gBACf,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE;oBACpC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE;oBACnC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE;oBACpC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,eAAe,GAAG,MAAM,CAAC,MAAM,EAAE;oBACzC;gBACF;;AAEF,YAAA,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE;gBAChC;YACF;AACA,YAAA,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACtB;AACA,QAAA,OAAO,OAAO;IAChB,CAAC;AAED,IAAA,QAAQ,CAAC,MAAW,EAAA;QAClB,OAAO;YACL,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE;YAChF,SAAS,EAAE,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,EAAE;YAC7E,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE;YAChF,eAAe,EAAE,KAAK,CAAC,MAAM,CAAC,eAAe,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,eAAe,CAAC,GAAG,EAAE;SAChG;IACH,CAAC;AAED,IAAA,MAAM,CAAC,OAAe,EAAA;QACpB,MAAM,GAAG,GAAQ,EAAE;AACnB,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,GAAG,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU;QACrC;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,GAAG,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS;QACnC;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,GAAG,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU;QACrC;AACA,QAAA,IAAI,OAAO,CAAC,eAAe,KAAK,EAAE,EAAE;AAClC,YAAA,GAAG,CAAC,eAAe,GAAG,OAAO,CAAC,eAAe;QAC/C;AACA,QAAA,OAAO,GAAG;IACZ,CAAC;AAED,IAAA,MAAM,CAAC,IAA0B,EAAA;QAC/B,OAAO,MAAM,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE,CAAC;IACvC,CAAC;AACD,IAAA,WAAW,CAAC,MAA2B,EAAA;AACrC,QAAA,MAAM,OAAO,GAAG,gBAAgB,EAAE;QAClC,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,IAAI,EAAE;QAC5C,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,IAAI,EAAE;QAC1C,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,IAAI,EAAE;QAC5C,OAAO,CAAC,eAAe,GAAG,MAAM,CAAC,eAAe,IAAI,EAAE;AACtD,QAAA,OAAO,OAAO;IAChB,CAAC;;AAGH,SAAS,yBAAyB,GAAA;IAChC,OAAO,EAAE,UAAU,EAAE,EAAE,EAAE,SAAS,EAAE,EAAE,EAAE,UAAU,EAAE,EAAE,EAAE,eAAe,EAAE,EAAE,EAAE,SAAS,EAAE,EAAE,EAAE;AAC9F;AAEO,MAAM,eAAe,GAAgC;AAC1D,IAAA,MAAM,CAAC,OAAwB,EAAE,MAAA,GAAuB,IAAID,iBAAY,EAAE,EAAA;AACxE,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9C;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC;QAC7C;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9C;AACA,QAAA,IAAI,OAAO,CAAC,eAAe,KAAK,EAAE,EAAE;AAClC,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,eAAe,CAAC;QACnD;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC;QAC7C;AACA,QAAA,OAAO,MAAM;IACf,CAAC;IAED,MAAM,CAAC,KAAgC,EAAE,MAAe,EAAA;AACtD,QAAA,MAAM,MAAM,GAAG,KAAK,YAAYC,iBAAY,GAAG,KAAK,GAAG,IAAIA,iBAAY,CAAC,KAAK,CAAC;AAC9E,QAAA,MAAM,GAAG,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM;AACnE,QAAA,MAAM,OAAO,GAAG,yBAAyB,EAAE;AAC3C,QAAA,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE;AACvB,YAAA,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE;AAC3B,YAAA,QAAQ,GAAG,KAAK,CAAC;gBACf,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE;oBACpC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE;oBACnC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE;oBACpC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,eAAe,GAAG,MAAM,CAAC,MAAM,EAAE;oBACzC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE;oBACnC;gBACF;;AAEF,YAAA,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE;gBAChC;YACF;AACA,YAAA,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACtB;AACA,QAAA,OAAO,OAAO;IAChB,CAAC;AAED,IAAA,QAAQ,CAAC,MAAW,EAAA;QAClB,OAAO;YACL,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE;YAChF,SAAS,EAAE,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,EAAE;YAC7E,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE;YAChF,eAAe,EAAE,KAAK,CAAC,MAAM,CAAC,eAAe,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,eAAe,CAAC,GAAG,EAAE;YAC/F,SAAS,EAAE,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,EAAE;SAC9E;IACH,CAAC;AAED,IAAA,MAAM,CAAC,OAAwB,EAAA;QAC7B,MAAM,GAAG,GAAQ,EAAE;AACnB,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,GAAG,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU;QACrC;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,GAAG,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS;QACnC;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,GAAG,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU;QACrC;AACA,QAAA,IAAI,OAAO,CAAC,eAAe,KAAK,EAAE,EAAE;AAClC,YAAA,GAAG,CAAC,eAAe,GAAG,OAAO,CAAC,eAAe;QAC/C;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,GAAG,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS;QACnC;AACA,QAAA,OAAO,GAAG;IACZ,CAAC;AAED,IAAA,MAAM,CAAC,IAAmC,EAAA;QACxC,OAAO,eAAe,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE,CAAC;IAChD,CAAC;AACD,IAAA,WAAW,CAAC,MAAoC,EAAA;AAC9C,QAAA,MAAM,OAAO,GAAG,yBAAyB,EAAE;QAC3C,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,IAAI,EAAE;QAC5C,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,IAAI,EAAE;QAC1C,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,IAAI,EAAE;QAC5C,OAAO,CAAC,eAAe,GAAG,MAAM,CAAC,eAAe,IAAI,EAAE;QACtD,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,IAAI,EAAE;AAC1C,QAAA,OAAO,OAAO;IAChB,CAAC;;AAGH,SAAS,wBAAwB,GAAA;IAC/B,OAAO,EAAE,UAAU,EAAE,EAAE,EAAE,SAAS,EAAE,EAAE,EAAE,UAAU,EAAE,EAAE,EAAE,eAAe,EAAE,EAAE,EAAE,SAAS,EAAE,EAAE,EAAE;AAC9F;AAEO,MAAM,cAAc,GAA+B;AACxD,IAAA,MAAM,CAAC,OAAuB,EAAE,MAAA,GAAuB,IAAID,iBAAY,EAAE,EAAA;AACvE,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9C;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC;QAC7C;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9C;AACA,QAAA,IAAI,OAAO,CAAC,eAAe,KAAK,EAAE,EAAE;AAClC,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,eAAe,CAAC;QACnD;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC;QAC7C;AACA,QAAA,OAAO,MAAM;IACf,CAAC;IAED,MAAM,CAAC,KAAgC,EAAE,MAAe,EAAA;AACtD,QAAA,MAAM,MAAM,GAAG,KAAK,YAAYC,iBAAY,GAAG,KAAK,GAAG,IAAIA,iBAAY,CAAC,KAAK,CAAC;AAC9E,QAAA,MAAM,GAAG,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM;AACnE,QAAA,MAAM,OAAO,GAAG,wBAAwB,EAAE;AAC1C,QAAA,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE;AACvB,YAAA,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE;AAC3B,YAAA,QAAQ,GAAG,KAAK,CAAC;gBACf,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE;oBACpC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE;oBACnC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE;oBACpC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,eAAe,GAAG,MAAM,CAAC,MAAM,EAAE;oBACzC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE;oBACnC;gBACF;;AAEF,YAAA,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE;gBAChC;YACF;AACA,YAAA,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACtB;AACA,QAAA,OAAO,OAAO;IAChB,CAAC;AAED,IAAA,QAAQ,CAAC,MAAW,EAAA;QAClB,OAAO;YACL,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE;YAChF,SAAS,EAAE,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,EAAE;YAC7E,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE;YAChF,eAAe,EAAE,KAAK,CAAC,MAAM,CAAC,eAAe,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,eAAe,CAAC,GAAG,EAAE;YAC/F,SAAS,EAAE,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,EAAE;SAC9E;IACH,CAAC;AAED,IAAA,MAAM,CAAC,OAAuB,EAAA;QAC5B,MAAM,GAAG,GAAQ,EAAE;AACnB,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,GAAG,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU;QACrC;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,GAAG,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS;QACnC;AACA,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,GAAG,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU;QACrC;AACA,QAAA,IAAI,OAAO,CAAC,eAAe,KAAK,EAAE,EAAE;AAClC,YAAA,GAAG,CAAC,eAAe,GAAG,OAAO,CAAC,eAAe;QAC/C;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,GAAG,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS;QACnC;AACA,QAAA,OAAO,GAAG;IACZ,CAAC;AAED,IAAA,MAAM,CAAC,IAAkC,EAAA;QACvC,OAAO,cAAc,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE,CAAC;IAC/C,CAAC;AACD,IAAA,WAAW,CAAC,MAAmC,EAAA;AAC7C,QAAA,MAAM,OAAO,GAAG,wBAAwB,EAAE;QAC1C,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,IAAI,EAAE;QAC5C,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,IAAI,EAAE;QAC1C,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,IAAI,EAAE;QAC5C,OAAO,CAAC,eAAe,GAAG,MAAM,CAAC,eAAe,IAAI,EAAE;QACtD,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,IAAI,EAAE;AAC1C,QAAA,OAAO,OAAO;IAChB,CAAC;;AAGH,SAAS,oCAAoC,GAAA;AAC3C,IAAA,OAAO,EAAE,KAAK,EAAE,EAAE,EAAE;AACtB;AAEO,MAAM,0BAA0B,GAA2C;AAChF,IAAA,MAAM,CAAC,OAAmC,EAAE,MAAA,GAAuB,IAAID,iBAAY,EAAE,EAAA;AACnF,QAAA,IAAI,OAAO,CAAC,KAAK,KAAK,EAAE,EAAE;AACxB,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC;QACzC;AACA,QAAA,OAAO,MAAM;IACf,CAAC;IAED,MAAM,CAAC,KAAgC,EAAE,MAAe,EAAA;AACtD,QAAA,MAAM,MAAM,GAAG,KAAK,YAAYC,iBAAY,GAAG,KAAK,GAAG,IAAIA,iBAAY,CAAC,KAAK,CAAC;AAC9E,QAAA,MAAM,GAAG,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM;AACnE,QAAA,MAAM,OAAO,GAAG,oCAAoC,EAAE;AACtD,QAAA,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE;AACvB,YAAA,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE;AAC3B,YAAA,QAAQ,GAAG,KAAK,CAAC;gBACf,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,KAAK,GAAG,MAAM,CAAC,MAAM,EAAE;oBAC/B;gBACF;;AAEF,YAAA,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE;gBAChC;YACF;AACA,YAAA,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACtB;AACA,QAAA,OAAO,OAAO;IAChB,CAAC;AAED,IAAA,QAAQ,CAAC,MAAW,EAAA;QAClB,OAAO,EAAE,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,EAAE;IAC9E,CAAC;AAED,IAAA,MAAM,CAAC,OAAmC,EAAA;QACxC,MAAM,GAAG,GAAQ,EAAE;AACnB,QAAA,IAAI,OAAO,CAAC,KAAK,KAAK,EAAE,EAAE;AACxB,YAAA,GAAG,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK;QAC3B;AACA,QAAA,OAAO,GAAG;IACZ,CAAC;AAED,IAAA,MAAM,CAAC,IAA8C,EAAA;QACnD,OAAO,0BAA0B,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE,CAAC;IAC3D,CAAC;AACD,IAAA,WAAW,CAAC,MAA+C,EAAA;AACzD,QAAA,MAAM,OAAO,GAAG,oCAAoC,EAAE;QACtD,OAAO,CAAC,KAAK,GAAG,MAAM,CAAC,KAAK,IAAI,EAAE;AAClC,QAAA,OAAO,OAAO;IAChB,CAAC;;AAGH,SAAS,0CAA0C,GAAA;AACjD,IAAA,OAAO,EAAE,UAAU,EAAE,EAAE,EAAE,SAAS,EAAE,EAAE,EAAE,eAAe,EAAE,EAAE,EAAE,uBAAuB,EAAE,EAAE,EAAE;AAC5F;AAEO,MAAM,gCAAgC,GAAiD;AAC5F,IAAA,MAAM,CAAC,OAAyC,EAAE,MAAA,GAAuB,IAAID,iBAAY,EAAE,EAAA;AACzF,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9C;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC;QAC7C;AACA,QAAA,IAAI,OAAO,CAAC,eAAe,KAAK,EAAE,EAAE;AAClC,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,eAAe,CAAC;QACnD;AACA,QAAA,IAAI,OAAO,CAAC,uBAAuB,KAAK,EAAE,EAAE;AAC1C,YAAA,IAAI,MAAM,CAAC,OAAO,CAAC,EAAE,EAAE,OAAO,CAAC,uBAAuB,CAAC,KAAK,OAAO,CAAC,uBAAuB,EAAE;AAC3F,gBAAA,MAAM,IAAI,UAAU,CAAC,KAAK,CAAC,mFAAmF,CAAC;YACjH;AACA,YAAA,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,uBAAuB,CAAC;QAC3D;AACA,QAAA,OAAO,MAAM;IACf,CAAC;IAED,MAAM,CAAC,KAAgC,EAAE,MAAe,EAAA;AACtD,QAAA,MAAM,MAAM,GAAG,KAAK,YAAYC,iBAAY,GAAG,KAAK,GAAG,IAAIA,iBAAY,CAAC,KAAK,CAAC;AAC9E,QAAA,MAAM,GAAG,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM;AACnE,QAAA,MAAM,OAAO,GAAG,0CAA0C,EAAE;AAC5D,QAAA,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE;AACvB,YAAA,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE;AAC3B,YAAA,QAAQ,GAAG,KAAK,CAAC;gBACf,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE;oBACpC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE;oBACnC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,eAAe,GAAG,MAAM,CAAC,MAAM,EAAE;oBACzC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,uBAAuB,GAAG,MAAM,CAAC,MAAM,EAAY;oBAC3D;gBACF;;AAEF,YAAA,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE;gBAChC;YACF;AACA,YAAA,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACtB;AACA,QAAA,OAAO,OAAO;IAChB,CAAC;AAED,IAAA,QAAQ,CAAC,MAAW,EAAA;QAClB,OAAO;YACL,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE;YAChF,SAAS,EAAE,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,EAAE;YAC7E,eAAe,EAAE,KAAK,CAAC,MAAM,CAAC,eAAe,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,eAAe,CAAC,GAAG,EAAE;AAC/F,YAAA,uBAAuB,EAAE,KAAK,CAAC,MAAM,CAAC,uBAAuB,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,uBAAuB,CAAC,GAAG,EAAE;SAC7G;IACH,CAAC;AAED,IAAA,MAAM,CAAC,OAAyC,EAAA;QAC9C,MAAM,GAAG,GAAQ,EAAE;AACnB,QAAA,IAAI,OAAO,CAAC,UAAU,KAAK,EAAE,EAAE;AAC7B,YAAA,GAAG,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU;QACrC;AACA,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE,EAAE;AAC5B,YAAA,GAAG,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS;QACnC;AACA,QAAA,IAAI,OAAO,CAAC,eAAe,KAAK,EAAE,EAAE;AAClC,YAAA,GAAG,CAAC,eAAe,GAAG,OAAO,CAAC,eAAe;QAC/C;AACA,QAAA,IAAI,OAAO,CAAC,uBAAuB,KAAK,EAAE,EAAE;YAC1C,GAAG,CAAC,uBAAuB,GAAG,OAAO,CAAC,uBAAuB,CAAC,QAAQ,EAAE;QAC1E;AACA,QAAA,OAAO,GAAG;IACZ,CAAC;AAED,IAAA,MAAM,CAAC,IAAoD,EAAA;QACzD,OAAO,gCAAgC,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE,CAAC;IACjE,CAAC;AACD,IAAA,WAAW,CAAC,MAAqD,EAAA;AAC/D,QAAA,MAAM,OAAO,GAAG,0CAA0C,EAAE;QAC5D,OAAO,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,IAAI,EAAE;QAC5C,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,IAAI,EAAE;QAC1C,OAAO,CAAC,eAAe,GAAG,MAAM,CAAC,eAAe,IAAI,EAAE;QACtD,OAAO,CAAC,uBAAuB,GAAG,MAAM,CAAC,uBAAuB,IAAI,EAAE;AACtE,QAAA,OAAO,OAAO;IAChB,CAAC;;AAGH,SAAS,2CAA2C,GAAA;IAClD,OAAO,EAAE,SAAS,EAAE,KAAK,EAAE,gBAAgB,EAAE,EAAE,EAAE;AACnD;AAEO,MAAM,iCAAiC,GAAkD;AAC9F,IAAA,MAAM,CAAC,OAA0C,EAAE,MAAA,GAAuB,IAAID,iBAAY,EAAE,EAAA;AAC1F,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,KAAK,EAAE;AAC/B,YAAA,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;QAC1C;AACA,QAAA,KAAK,MAAM,CAAC,IAAI,OAAO,CAAC,gBAAgB,EAAE;AACxC,YAAA,eAAe,CAAC,MAAM,CAAC,CAAE,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE;QAC7D;AACA,QAAA,OAAO,MAAM;IACf,CAAC;IAED,MAAM,CAAC,KAAgC,EAAE,MAAe,EAAA;AACtD,QAAA,MAAM,MAAM,GAAG,KAAK,YAAYC,iBAAY,GAAG,KAAK,GAAG,IAAIA,iBAAY,CAAC,KAAK,CAAC;AAC9E,QAAA,MAAM,GAAG,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM;AACnE,QAAA,MAAM,OAAO,GAAG,2CAA2C,EAAE;AAC7D,QAAA,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE;AACvB,YAAA,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE;AAC3B,YAAA,QAAQ,GAAG,KAAK,CAAC;gBACf,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,CAAC,EAAE;wBACb;oBACF;AAEA,oBAAA,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,IAAI,EAAE;oBACjC;gBACF;gBACA,KAAK,CAAC,EAAE;AACN,oBAAA,IAAI,GAAG,KAAK,EAAE,EAAE;wBACd;oBACF;AAEA,oBAAA,OAAO,CAAC,gBAAgB,CAAC,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC;oBAC9E;gBACF;;AAEF,YAAA,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE;gBAChC;YACF;AACA,YAAA,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACtB;AACA,QAAA,OAAO,OAAO;IAChB,CAAC;AAED,IAAA,QAAQ,CAAC,MAAW,EAAA;QAClB,OAAO;YACL,SAAS,EAAE,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,UAAU,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,KAAK;YACjF,gBAAgB,EAAE,UAAU,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,gBAAgB;AACjE,kBAAE,MAAM,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC,CAAM,KAAK,eAAe,CAAC,QAAQ,CAAC,CAAC,CAAC;AACrE,kBAAE,EAAE;SACP;IACH,CAAC;AAED,IAAA,MAAM,CAAC,OAA0C,EAAA;QAC/C,MAAM,GAAG,GAAQ,EAAE;AACnB,QAAA,IAAI,OAAO,CAAC,SAAS,KAAK,KAAK,EAAE;AAC/B,YAAA,GAAG,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS;QACnC;AACA,QAAA,IAAI,OAAO,CAAC,gBAAgB,EAAE,MAAM,EAAE;YACpC,GAAG,CAAC,gBAAgB,GAAG,OAAO,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,eAAe,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;QACvF;AACA,QAAA,OAAO,GAAG;IACZ,CAAC;AAED,IAAA,MAAM,CAAC,IAAqD,EAAA;QAC1D,OAAO,iCAAiC,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE,CAAC;IAClE,CAAC;AACD,IAAA,WAAW,CAAC,MAAsD,EAAA;AAChE,QAAA,MAAM,OAAO,GAAG,2CAA2C,EAAE;QAC7D,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,IAAI,KAAK;QAC7C,OAAO,CAAC,gBAAgB,GAAG,MAAM,CAAC,gBAAgB,EAAE,GAAG,CAAC,CAAC,CAAC,KAAK,eAAe,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE;AACpG,QAAA,OAAO,OAAO;IAChB,CAAC;;AAII,MAAM,0BAA0B,GAAG;AACxC,IAAA,IAAI,EAAE,kBAAkB;AACxB,IAAA,QAAQ,EAAE,yDAAyD;AACnE,IAAA,OAAO,EAAE;AACP,QAAA,mBAAmB,EAAE;AACnB,YAAA,IAAI,EAAE,qBAAqB;AAC3B,YAAA,WAAW,EAAE,0BAA+D;AAC5E,YAAA,aAAa,EAAE,KAAK;AACpB,YAAA,YAAY,EAAE,0BAA+D;AAC7E,YAAA,cAAc,EAAE,KAAK;AACrB,YAAA,OAAO,EAAE,EAAE;AACZ,SAAA;AACD,QAAA,uBAAuB,EAAE;AACvB,YAAA,IAAI,EAAE,yBAAyB;AAC/B,YAAA,WAAW,EAAE,0BAA+D;AAC5E,YAAA,aAAa,EAAE,KAAK;AACpB,YAAA,YAAY,EAAE,0BAA+D;AAC7E,YAAA,cAAc,EAAE,IAAI;AACpB,YAAA,OAAO,EAAE,EAAE;AACZ,SAAA;AACF,KAAA;;AA0BI,MAAM,mBAAmB,GAAG;AACjC,IAAA,IAAI,EAAE,WAAW;AACjB,IAAA,QAAQ,EAAE,kDAAkD;AAC5D,IAAA,OAAO,EAAE;AACP,QAAA,uBAAuB,EAAE;AACvB,YAAA,IAAI,EAAE,yBAAyB;AAC/B,YAAA,WAAW,EAAE,uBAAyD;AACtE,YAAA,aAAa,EAAE,KAAK;AACpB,YAAA,YAAY,EAAEE,WAAqB;AACnC,YAAA,cAAc,EAAE,KAAK;AACrB,YAAA,OAAO,EAAE,EAAE;AACZ,SAAA;AACD,QAAA,sBAAsB,EAAE;AACtB,YAAA,IAAI,EAAE,wBAAwB;AAC9B,YAAA,WAAW,EAAE,6BAAqE;AAClF,YAAA,aAAa,EAAE,KAAK;AACpB,YAAA,YAAY,EAAE,mBAAiD;AAC/D,YAAA,cAAc,EAAE,KAAK;AACrB,YAAA,OAAO,EAAE,EAAE;AACZ,SAAA;AACD,QAAA,YAAY,EAAE;AACZ,YAAA,IAAI,EAAE,cAAc;AACpB,YAAA,WAAW,EAAE,mBAAiD;AAC9D,YAAA,aAAa,EAAE,KAAK;AACpB,YAAA,YAAY,EAAE,8BAAuE;AACrF,YAAA,cAAc,EAAE,KAAK;AACrB,YAAA,OAAO,EAAE,EAAE;AACZ,SAAA;AACD,QAAA,mCAAmC,EAAE;AACnC,YAAA,IAAI,EAAE,qCAAqC;AAC3C,YAAA,WAAW,EAAE,0CAA+F;AAC5G,YAAA,aAAa,EAAE,KAAK;AACpB,YAAA,YAAY,EAAE,8BAAuE;AACrF,YAAA,cAAc,EAAE,KAAK;AACrB,YAAA,OAAO,EAAE,EAAE;AACZ,SAAA;AACD,QAAA,gBAAgB,EAAE;AAChB,YAAA,IAAI,EAAE,kBAAkB;AACxB,YAAA,WAAW,EAAE,mBAAiD;AAC9D,YAAA,aAAa,EAAE,KAAK;AACpB,YAAA,YAAY,EAAE,8BAAuE;AACrF,YAAA,cAAc,EAAE,IAAI;AACpB,YAAA,OAAO,EAAE,EAAE;AACZ,SAAA;AACD,QAAA,MAAM,EAAE;AACN,YAAA,IAAI,EAAE,QAAQ;AACd,YAAA,WAAW,EAAE,MAAuB;AACpC,YAAA,aAAa,EAAE,KAAK;AACpB,YAAA,YAAY,EAAEA,WAAqB;AACnC,YAAA,cAAc,EAAE,KAAK;AACrB,YAAA,OAAO,EAAE,EAAE;AACZ,SAAA;AACD,QAAA,eAAe,EAAE;AACf,YAAA,IAAI,EAAE,iBAAiB;AACvB,YAAA,WAAW,EAAE,eAAyC;AACtD,YAAA,aAAa,EAAE,KAAK;AACpB,YAAA,YAAY,EAAEA,WAAqB;AACnC,YAAA,cAAc,EAAE,KAAK;AACrB,YAAA,OAAO,EAAE,EAAE;AACZ,SAAA;AACD,QAAA,cAAc,EAAE;AACd,YAAA,IAAI,EAAE,gBAAgB;AACtB,YAAA,WAAW,EAAE,cAAuC;AACpD,YAAA,aAAa,EAAE,KAAK;AACpB,YAAA,YAAY,EAAEA,WAAqB;AACnC,YAAA,cAAc,EAAE,KAAK;AACrB,YAAA,OAAO,EAAE,EAAE;AACZ,SAAA;AACD,QAAA,iBAAiB,EAAE;AACjB,YAAA,IAAI,EAAE,mBAAmB;AACzB,YAAA,WAAW,EAAE,gCAA2E;AACxF,YAAA,aAAa,EAAE,KAAK;AACpB,YAAA,YAAY,EAAE,iCAA6E;AAC3F,YAAA,cAAc,EAAE,KAAK;AACrB,YAAA,OAAO,EAAE,EAAE;AACZ,SAAA;AACF,KAAA;;AAuEH,SAAS,KAAK,CAAC,KAAU,EAAA;AACvB,IAAA,OAAO,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,SAAS;AAC9C;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|