From 82623882793eb0270ff2f16ec663b3a2b5f99275 Mon Sep 17 00:00:00 2001 From: stana-ethernal Date: Thu, 12 Dec 2024 13:46:06 +0100 Subject: [PATCH 1/4] add tombstone field to SlashJailParameters --- docs/docs/build/modules/02-provider.md | 12 +- .../ccv/provider/v1/provider.proto | 2 + x/ccv/provider/client/cli/tx.go | 12 +- .../provider/keeper/consumer_equivocation.go | 16 +- .../keeper/consumer_equivocation_test.go | 2 + .../provider/keeper/infraction_parameters.go | 3 + x/ccv/provider/keeper/relay.go | 9 + x/ccv/provider/types/msg_test.go | 2 + x/ccv/provider/types/provider.go | 2 + x/ccv/provider/types/provider.pb.go | 343 ++++++++++-------- 10 files changed, 240 insertions(+), 163 deletions(-) diff --git a/docs/docs/build/modules/02-provider.md b/docs/docs/build/modules/02-provider.md index af2ad60065..e3027d49b4 100644 --- a/docs/docs/build/modules/02-provider.md +++ b/docs/docs/build/modules/02-provider.md @@ -2884,11 +2884,13 @@ grpcurl -plaintext -d '{"consumer_id": "0"}' localhost:9090 interchain_security. "infraction_parameters":{ "double_sign":{ "slash_fraction":"0.050000000000000000", - "jail_duration":"9223372036.854775807s" + "jail_duration":"9223372036.854775807s", + "tombstone": true }, "downtime":{ "slash_fraction":"0.000000000000000000", - "jail_duration":"600s" + "jail_duration":"600s", + "tombstone": false } }, "clientId": "07-tendermint-28" @@ -3594,11 +3596,13 @@ Output: "infraction_parameters":{ "double_sign":{ "slash_fraction":"0.050000000000000000", - "jail_duration":"9223372036.854775807s" + "jail_duration":"9223372036.854775807s", + "tombstone": true }, "downtime":{ "slash_fraction":"0.000000000000000000", - "jail_duration":"600s" + "jail_duration":"600s", + "tombstone": false } } } diff --git a/proto/interchain_security/ccv/provider/v1/provider.proto b/proto/interchain_security/ccv/provider/v1/provider.proto index a99778ba32..76b283ef6c 100644 --- a/proto/interchain_security/ccv/provider/v1/provider.proto +++ b/proto/interchain_security/ccv/provider/v1/provider.proto @@ -574,4 +574,6 @@ message SlashJailParameters { // for permanent jailing use 9223372036854775807 which is the largest value a time.Duration can hold (approximately 292 years) google.protobuf.Duration jail_duration = 2 [ (gogoproto.nullable) = false, (gogoproto.stdduration) = true ]; + // Indicates whether the validator should be tombstoned when slashed + bool tombstone = 3; } \ No newline at end of file diff --git a/x/ccv/provider/client/cli/tx.go b/x/ccv/provider/client/cli/tx.go index 4e2ed1075a..1974a46b8c 100644 --- a/x/ccv/provider/client/cli/tx.go +++ b/x/ccv/provider/client/cli/tx.go @@ -260,11 +260,13 @@ where create_consumer.json has the following structure: "infraction_parameters":{ "double_sign":{ "slash_fraction": "0.05", - "jail_duration": 9223372036854775807 + "jail_duration": 9223372036854775807, + "tombstone": true }, "downtime":{ "slash_fraction": "0.0001", - "jail_duration": 600000000000 + "jail_duration": 600000000000, + "tombstone": false } }, "allowlisted_reward_denoms": { @@ -369,11 +371,13 @@ where update_consumer.json has the following structure: "infraction_parameters":{ "double_sign":{ "slash_fraction": "0.05", - "jail_duration": 9223372036854775807 + "jail_duration": 9223372036854775807, + "tombstone": true }, "downtime":{ "slash_fraction": "0.0001", - "jail_duration": 600000000000 + "jail_duration": 600000000000, + "tombstone": false } }, "allowlisted_reward_denoms": { diff --git a/x/ccv/provider/keeper/consumer_equivocation.go b/x/ccv/provider/keeper/consumer_equivocation.go index 439dc80bce..132dfe9873 100644 --- a/x/ccv/provider/keeper/consumer_equivocation.go +++ b/x/ccv/provider/keeper/consumer_equivocation.go @@ -451,11 +451,17 @@ func (k Keeper) JailAndTombstoneValidator(ctx sdk.Context, providerAddr types.Pr return fmt.Errorf("fail to set jail duration for validator: %s: %s", providerAddr.String(), err) } - // Tombstone the validator so that we cannot slash the validator more than once - // Note that we cannot simply use the fact that a validator is jailed to avoid slashing more than once - // because then a validator could i) perform an equivocation, ii) get jailed (e.g., through downtime) - // and in such a case the validator would not get slashed when we call `SlashValidator`. - return k.slashingKeeper.Tombstone(ctx, providerAddr.ToSdkConsAddr()) + if jailingParams.Tombstone { + // Tombstone the validator so that we cannot slash the validator more than once + // Note that we cannot simply use the fact that a validator is jailed to avoid slashing more than once + // because then a validator could i) perform an equivocation, ii) get jailed (e.g., through downtime) + // and in such a case the validator would not get slashed when we call `SlashValidator`. + if err = k.slashingKeeper.Tombstone(ctx, providerAddr.ToSdkConsAddr()); err != nil { + return fmt.Errorf("fail to tombstone validator: %s: %s", providerAddr.String(), err) + } + } + + return nil } // ComputePowerToSlash computes the power to be slashed based on the tokens in non-matured `undelegations` and diff --git a/x/ccv/provider/keeper/consumer_equivocation_test.go b/x/ccv/provider/keeper/consumer_equivocation_test.go index 1e740a4aae..65b58d3a26 100644 --- a/x/ccv/provider/keeper/consumer_equivocation_test.go +++ b/x/ccv/provider/keeper/consumer_equivocation_test.go @@ -792,10 +792,12 @@ func getTestInfractionParameters() *types.InfractionParameters { DoubleSign: &types.SlashJailParameters{ JailDuration: 1200 * time.Second, SlashFraction: math.LegacyNewDecWithPrec(5, 1), // 0.5 + Tombstone: true, }, Downtime: &types.SlashJailParameters{ JailDuration: 600 * time.Second, SlashFraction: math.LegacyNewDec(0), + Tombstone: false, }, } } diff --git a/x/ccv/provider/keeper/infraction_parameters.go b/x/ccv/provider/keeper/infraction_parameters.go index 8abf21a5b6..5f4f2fda43 100644 --- a/x/ccv/provider/keeper/infraction_parameters.go +++ b/x/ccv/provider/keeper/infraction_parameters.go @@ -250,6 +250,9 @@ func compareSlashJailParameters(param1, param2 *types.SlashJailParameters) bool if param1 == nil || param2 == nil { return false } + if param1.Tombstone != param2.Tombstone { + return false + } if !param1.SlashFraction.Equal(param2.SlashFraction) { return false } diff --git a/x/ccv/provider/keeper/relay.go b/x/ccv/provider/keeper/relay.go index 33a7e05e4c..c8b10003b9 100644 --- a/x/ccv/provider/keeper/relay.go +++ b/x/ccv/provider/keeper/relay.go @@ -507,6 +507,15 @@ func (k Keeper) HandleSlashPacket(ctx sdk.Context, consumerId string, data ccv.S k.Logger(ctx).Error("failed to set jail duration", "err", err.Error()) return } + + // tombstone validator + if infractionParams.Downtime.Tombstone { + if err = k.slashingKeeper.Tombstone(ctx, providerConsAddr.ToSdkConsAddr()); err != nil { + k.Logger(ctx).Error("failed to tombstone validator", "err", err.Error()) + return + } + k.Logger(ctx).Info("HandleSlashPacket - validator tombstoned", "provider cons addr", providerConsAddr.String()) + } } ctx.EventManager().EmitEvent( diff --git a/x/ccv/provider/types/msg_test.go b/x/ccv/provider/types/msg_test.go index 9f13d8d257..8fe82b9ed0 100644 --- a/x/ccv/provider/types/msg_test.go +++ b/x/ccv/provider/types/msg_test.go @@ -470,10 +470,12 @@ func TestMsgCreateConsumerValidateBasic(t *testing.T) { DoubleSign: &types.SlashJailParameters{ JailDuration: time.Duration(1<<63 - 1), // max duration SlashFraction: math.LegacyNewDecWithPrec(5, 2), // 0.05 + Tombstone: true, }, Downtime: &types.SlashJailParameters{ JailDuration: 600 * time.Second, SlashFraction: math.LegacyNewDec(0), + Tombstone: false, }, }, // valid infraction params true, diff --git a/x/ccv/provider/types/provider.go b/x/ccv/provider/types/provider.go index 90f1173ffd..74ccebe27f 100644 --- a/x/ccv/provider/types/provider.go +++ b/x/ccv/provider/types/provider.go @@ -44,10 +44,12 @@ func DefaultConsumerInfractionParameters(ctx context.Context, slashingKeeper ccv DoubleSign: &SlashJailParameters{ JailDuration: time.Duration(1<<63 - 1), // the largest value a time.Duration can hold 9223372036854775807 (approximately 292 years) SlashFraction: doubleSignSlashingFraction, + Tombstone: true, }, Downtime: &SlashJailParameters{ JailDuration: jailDuration, SlashFraction: math.LegacyNewDec(0), + Tombstone: false, }, }, nil } diff --git a/x/ccv/provider/types/provider.pb.go b/x/ccv/provider/types/provider.pb.go index b45af3359f..ce65b5e111 100644 --- a/x/ccv/provider/types/provider.pb.go +++ b/x/ccv/provider/types/provider.pb.go @@ -1943,6 +1943,8 @@ type SlashJailParameters struct { SlashFraction cosmossdk_io_math.LegacyDec `protobuf:"bytes,1,opt,name=slash_fraction,json=slashFraction,proto3,customtype=cosmossdk.io/math.LegacyDec" json:"slash_fraction"` // for permanent jailing use 9223372036854775807 which is the largest value a time.Duration can hold (approximately 292 years) JailDuration time.Duration `protobuf:"bytes,2,opt,name=jail_duration,json=jailDuration,proto3,stdduration" json:"jail_duration"` + // Indicates whether the validator should be tombstoned when slashed + Tombstone bool `protobuf:"varint,3,opt,name=tombstone,proto3" json:"tombstone,omitempty"` } func (m *SlashJailParameters) Reset() { *m = SlashJailParameters{} } @@ -1985,6 +1987,13 @@ func (m *SlashJailParameters) GetJailDuration() time.Duration { return 0 } +func (m *SlashJailParameters) GetTombstone() bool { + if m != nil { + return m.Tombstone + } + return false +} + func init() { proto.RegisterEnum("interchain_security.ccv.provider.v1.ConsumerPhase", ConsumerPhase_name, ConsumerPhase_value) proto.RegisterType((*ConsumerAdditionProposal)(nil), "interchain_security.ccv.provider.v1.ConsumerAdditionProposal") @@ -2020,158 +2029,159 @@ func init() { } var fileDescriptor_f22ec409a72b7b72 = []byte{ - // 2414 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x19, 0x4b, 0x6c, 0x1b, 0xc7, - 0x55, 0x2b, 0x52, 0x12, 0x39, 0xd4, 0x87, 0x1a, 0x29, 0x32, 0x25, 0x2b, 0x24, 0xbd, 0x69, 0x02, - 0x35, 0xae, 0xc9, 0x48, 0x01, 0x02, 0xc3, 0x6d, 0x10, 0x50, 0x24, 0x63, 0xd1, 0x1f, 0x99, 0x5d, + // 2428 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x19, 0x4b, 0x6f, 0x1b, 0xc7, + 0x59, 0x2b, 0x52, 0x12, 0x39, 0xd4, 0x83, 0x1a, 0x29, 0x32, 0x25, 0x2b, 0x24, 0xbd, 0x69, 0x02, + 0x35, 0xae, 0xc9, 0x48, 0x01, 0x02, 0xc3, 0x6d, 0x10, 0x50, 0x24, 0x63, 0xd1, 0x0f, 0x99, 0x5d, 0xd2, 0x0a, 0xea, 0xa2, 0x58, 0x0c, 0x77, 0x47, 0xe4, 0x44, 0xbb, 0x3b, 0xeb, 0x9d, 0x21, 0x65, 0xf6, 0xd0, 0x73, 0x50, 0xa0, 0x40, 0x7a, 0x0b, 0x7a, 0x69, 0x80, 0x5e, 0x8a, 0x9e, 0x7a, 0x08, - 0x72, 0xec, 0xa1, 0x97, 0xa6, 0x05, 0x0a, 0xa4, 0x3d, 0x15, 0x3d, 0x38, 0x85, 0x7d, 0xe8, 0xa1, - 0x40, 0x7b, 0xee, 0xad, 0x98, 0xd9, 0x0f, 0x97, 0xfa, 0x99, 0x86, 0xed, 0x5e, 0xa4, 0x9d, 0xf7, - 0x9b, 0xf7, 0x66, 0xde, 0x77, 0x08, 0x76, 0x88, 0xc3, 0xb1, 0x67, 0xf4, 0x10, 0x71, 0x74, 0x86, - 0x8d, 0xbe, 0x47, 0xf8, 0xb0, 0x6c, 0x18, 0x83, 0xb2, 0xeb, 0xd1, 0x01, 0x31, 0xb1, 0x57, 0x1e, - 0x6c, 0x47, 0xdf, 0x25, 0xd7, 0xa3, 0x9c, 0xc2, 0x37, 0xce, 0xe0, 0x29, 0x19, 0xc6, 0xa0, 0x14, - 0xd1, 0x0d, 0xb6, 0x37, 0x96, 0x91, 0x4d, 0x1c, 0x5a, 0x96, 0x7f, 0x7d, 0xbe, 0x8d, 0xbc, 0x41, - 0x99, 0x4d, 0x59, 0xb9, 0x83, 0x18, 0x2e, 0x0f, 0xb6, 0x3b, 0x98, 0xa3, 0xed, 0xb2, 0x41, 0x89, - 0x13, 0xe0, 0xdf, 0x0a, 0xf0, 0x58, 0x08, 0x71, 0x8c, 0x11, 0x4d, 0x08, 0x08, 0xe8, 0xd6, 0x7d, - 0x3a, 0x5d, 0xae, 0xca, 0xfe, 0x22, 0x40, 0xad, 0x76, 0x69, 0x97, 0xfa, 0x70, 0xf1, 0x15, 0x6e, - 0xdc, 0xa5, 0xb4, 0x6b, 0xe1, 0xb2, 0x5c, 0x75, 0xfa, 0x87, 0x65, 0xb3, 0xef, 0x21, 0x4e, 0x68, - 0xb8, 0x71, 0xe1, 0x24, 0x9e, 0x13, 0x1b, 0x33, 0x8e, 0x6c, 0x37, 0x24, 0x20, 0x1d, 0xa3, 0x6c, - 0x50, 0x0f, 0x97, 0x0d, 0x8b, 0x60, 0x87, 0x8b, 0x43, 0xf1, 0xbf, 0x02, 0x82, 0xb2, 0x20, 0xb0, - 0x48, 0xb7, 0xc7, 0x7d, 0x30, 0x2b, 0x73, 0xec, 0x98, 0xd8, 0xb3, 0x89, 0x4f, 0x3c, 0x5a, 0x05, - 0x0c, 0x6f, 0x9e, 0x77, 0xee, 0x83, 0xed, 0xf2, 0x31, 0xf1, 0x42, 0x53, 0x37, 0x63, 0x62, 0x0c, - 0x6f, 0xe8, 0x72, 0x5a, 0x3e, 0xc2, 0xc3, 0xc0, 0x5a, 0xf5, 0xbf, 0x29, 0x90, 0xab, 0x52, 0x87, - 0xf5, 0x6d, 0xec, 0x55, 0x4c, 0x93, 0x08, 0x93, 0x9a, 0x1e, 0x75, 0x29, 0x43, 0x16, 0x5c, 0x05, - 0x33, 0x9c, 0x70, 0x0b, 0xe7, 0x94, 0xa2, 0xb2, 0x95, 0xd6, 0xfc, 0x05, 0x2c, 0x82, 0x8c, 0x89, - 0x99, 0xe1, 0x11, 0x57, 0x10, 0xe7, 0xa6, 0x25, 0x2e, 0x0e, 0x82, 0xeb, 0x20, 0xe5, 0xab, 0x45, - 0xcc, 0x5c, 0x42, 0xa2, 0xe7, 0xe4, 0xba, 0x61, 0xc2, 0x9b, 0x60, 0x91, 0x38, 0x84, 0x13, 0x64, - 0xe9, 0x3d, 0x2c, 0x8c, 0xcd, 0x25, 0x8b, 0xca, 0x56, 0x66, 0x67, 0xa3, 0x44, 0x3a, 0x46, 0x49, - 0x9c, 0x4f, 0x29, 0x38, 0x95, 0xc1, 0x76, 0x69, 0x4f, 0x52, 0xec, 0x26, 0xbf, 0x7a, 0x5c, 0x98, - 0xd2, 0x16, 0x02, 0x3e, 0x1f, 0x08, 0xaf, 0x80, 0xf9, 0x2e, 0x76, 0x30, 0x23, 0x4c, 0xef, 0x21, - 0xd6, 0xcb, 0xcd, 0x14, 0x95, 0xad, 0x79, 0x2d, 0x13, 0xc0, 0xf6, 0x10, 0xeb, 0xc1, 0x02, 0xc8, - 0x74, 0x88, 0x83, 0xbc, 0xa1, 0x4f, 0x31, 0x2b, 0x29, 0x80, 0x0f, 0x92, 0x04, 0x55, 0x00, 0x98, - 0x8b, 0x8e, 0x1d, 0x5d, 0x5c, 0x56, 0x6e, 0x2e, 0x50, 0xc4, 0xbf, 0xc9, 0x52, 0x78, 0x93, 0xa5, - 0x76, 0x78, 0x93, 0xbb, 0x29, 0xa1, 0xc8, 0xa7, 0xdf, 0x14, 0x14, 0x2d, 0x2d, 0xf9, 0x04, 0x06, - 0xee, 0x83, 0x6c, 0xdf, 0xe9, 0x50, 0xc7, 0x24, 0x4e, 0x57, 0x77, 0xb1, 0x47, 0xa8, 0x99, 0x4b, - 0x49, 0x51, 0xeb, 0xa7, 0x44, 0xd5, 0x02, 0xa7, 0xf1, 0x25, 0x7d, 0x26, 0x24, 0x2d, 0x45, 0xcc, - 0x4d, 0xc9, 0x0b, 0xbf, 0x0f, 0xa0, 0x61, 0x0c, 0xa4, 0x4a, 0xb4, 0xcf, 0x43, 0x89, 0xe9, 0xc9, - 0x25, 0x66, 0x0d, 0x63, 0xd0, 0xf6, 0xb9, 0x03, 0x91, 0x3f, 0x04, 0x97, 0xb8, 0x87, 0x1c, 0x76, - 0x88, 0xbd, 0x93, 0x72, 0xc1, 0xe4, 0x72, 0x5f, 0x0b, 0x65, 0x8c, 0x0b, 0xdf, 0x03, 0x45, 0x23, - 0x70, 0x20, 0xdd, 0xc3, 0x26, 0x61, 0xdc, 0x23, 0x9d, 0xbe, 0xe0, 0xd5, 0x0f, 0x3d, 0x64, 0x48, - 0x1f, 0xc9, 0x48, 0x27, 0xc8, 0x87, 0x74, 0xda, 0x18, 0xd9, 0x87, 0x01, 0x15, 0xbc, 0x07, 0xbe, - 0xd5, 0xb1, 0xa8, 0x71, 0xc4, 0x84, 0x72, 0xfa, 0x98, 0x24, 0xb9, 0xb5, 0x4d, 0x18, 0x13, 0xd2, - 0xe6, 0x8b, 0xca, 0x56, 0x42, 0xbb, 0xe2, 0xd3, 0x36, 0xb1, 0x57, 0x8b, 0x51, 0xb6, 0x63, 0x84, - 0xf0, 0x1a, 0x80, 0x3d, 0xc2, 0x38, 0xf5, 0x88, 0x81, 0x2c, 0x1d, 0x3b, 0xdc, 0x23, 0x98, 0xe5, - 0x16, 0x24, 0xfb, 0xf2, 0x08, 0x53, 0xf7, 0x11, 0xf0, 0x16, 0xb8, 0x72, 0xee, 0xa6, 0xba, 0xd1, - 0x43, 0x8e, 0x83, 0xad, 0xdc, 0xa2, 0x34, 0xa5, 0x60, 0x9e, 0xb3, 0x67, 0xd5, 0x27, 0x83, 0x2b, - 0x60, 0x86, 0x53, 0x57, 0xdf, 0xcf, 0x2d, 0x15, 0x95, 0xad, 0x05, 0x2d, 0xc9, 0xa9, 0xbb, 0x0f, - 0xdf, 0x01, 0xab, 0x03, 0x64, 0x11, 0x13, 0x71, 0xea, 0x31, 0xdd, 0xa5, 0xc7, 0xd8, 0xd3, 0x0d, - 0xe4, 0xe6, 0xb2, 0x92, 0x06, 0x8e, 0x70, 0x4d, 0x81, 0xaa, 0x22, 0x17, 0xbe, 0x0d, 0x96, 0x23, - 0xa8, 0xce, 0x30, 0x97, 0xe4, 0xcb, 0x92, 0x7c, 0x29, 0x42, 0xb4, 0x30, 0x17, 0xb4, 0x9b, 0x20, - 0x8d, 0x2c, 0x8b, 0x1e, 0x5b, 0x84, 0xf1, 0x1c, 0x2c, 0x26, 0xb6, 0xd2, 0xda, 0x08, 0x00, 0x37, - 0x40, 0xca, 0xc4, 0xce, 0x50, 0x22, 0x57, 0x24, 0x32, 0x5a, 0xc3, 0xcb, 0x20, 0x6d, 0x8b, 0x24, - 0xc2, 0xd1, 0x11, 0xce, 0xad, 0x16, 0x95, 0xad, 0xa4, 0x96, 0xb2, 0x89, 0xd3, 0x12, 0x6b, 0x58, - 0x02, 0x2b, 0x52, 0x8a, 0x4e, 0x1c, 0x71, 0x4f, 0x03, 0xac, 0x0f, 0x90, 0xc5, 0x72, 0xaf, 0x15, - 0x95, 0xad, 0x94, 0xb6, 0x2c, 0x51, 0x8d, 0x00, 0x73, 0x80, 0x2c, 0x76, 0x63, 0xeb, 0x93, 0xcf, - 0x0b, 0x53, 0x9f, 0x7d, 0x5e, 0x98, 0xfa, 0xd3, 0x17, 0xd7, 0x36, 0x82, 0xcc, 0xda, 0xa5, 0x83, - 0x52, 0x90, 0x89, 0x4b, 0x55, 0xea, 0x70, 0xec, 0xf0, 0x9c, 0xa2, 0xfe, 0x45, 0x01, 0x97, 0xaa, - 0x91, 0x4b, 0xd8, 0x74, 0x80, 0xac, 0x57, 0x99, 0x7a, 0x2a, 0x20, 0xcd, 0xc4, 0x9d, 0xc8, 0x60, - 0x4f, 0x3e, 0x47, 0xb0, 0xa7, 0x04, 0x9b, 0x40, 0xdc, 0x28, 0x3e, 0xd3, 0xa6, 0xff, 0x4c, 0x83, - 0xcd, 0xd0, 0xa6, 0xbb, 0xd4, 0x24, 0x87, 0xc4, 0x40, 0xaf, 0x3a, 0xa7, 0x46, 0xbe, 0x96, 0x9c, - 0xc0, 0xd7, 0x66, 0x9e, 0xcf, 0xd7, 0x66, 0x27, 0xf0, 0xb5, 0xb9, 0x8b, 0x7c, 0x2d, 0x75, 0x91, - 0xaf, 0xa5, 0x27, 0xf3, 0x35, 0x70, 0x9e, 0xaf, 0x4d, 0xe7, 0x14, 0xf5, 0x97, 0x0a, 0x58, 0xad, - 0x3f, 0xec, 0x93, 0x01, 0x7d, 0x49, 0x27, 0x7d, 0x1b, 0x2c, 0xe0, 0x98, 0x3c, 0x96, 0x4b, 0x14, - 0x13, 0x5b, 0x99, 0x9d, 0x37, 0x4b, 0xc1, 0xc5, 0x47, 0xad, 0x44, 0x78, 0xfb, 0xf1, 0xdd, 0xb5, - 0x71, 0x5e, 0xa9, 0xe1, 0xef, 0x15, 0xb0, 0x21, 0xf2, 0x42, 0x17, 0x6b, 0xf8, 0x18, 0x79, 0x66, - 0x0d, 0x3b, 0xd4, 0x66, 0x2f, 0xac, 0xa7, 0x0a, 0x16, 0x4c, 0x29, 0x49, 0xe7, 0x54, 0x47, 0xa6, - 0x29, 0xf5, 0x94, 0x34, 0x02, 0xd8, 0xa6, 0x15, 0xd3, 0x84, 0x5b, 0x20, 0x3b, 0xa2, 0xf1, 0x44, - 0x8c, 0x09, 0xd7, 0x17, 0x64, 0x8b, 0x21, 0x99, 0x8c, 0x3c, 0x7c, 0x23, 0x7f, 0xb1, 0x6b, 0xab, - 0xff, 0x52, 0x40, 0xf6, 0xa6, 0x45, 0x3b, 0xc8, 0x6a, 0x59, 0x88, 0xf5, 0x44, 0xce, 0x1c, 0x8a, - 0x90, 0xf2, 0x70, 0x50, 0xac, 0xa4, 0xfa, 0x13, 0x87, 0x94, 0x60, 0x93, 0xe5, 0xf3, 0x03, 0xb0, - 0x1c, 0x95, 0x8f, 0xc8, 0xc1, 0xa5, 0xb5, 0xbb, 0x2b, 0x4f, 0x1e, 0x17, 0x96, 0xc2, 0x60, 0xaa, - 0x4a, 0x67, 0xaf, 0x69, 0x4b, 0xc6, 0x18, 0xc0, 0x84, 0x79, 0x90, 0x21, 0x1d, 0x43, 0x67, 0xf8, - 0xa1, 0xee, 0xf4, 0x6d, 0x19, 0x1b, 0x49, 0x2d, 0x4d, 0x3a, 0x46, 0x0b, 0x3f, 0xdc, 0xef, 0xdb, - 0xf0, 0x5d, 0xb0, 0x16, 0x36, 0x95, 0xc2, 0x9b, 0x74, 0xc1, 0x2f, 0x8e, 0xcb, 0x93, 0xe1, 0x32, - 0xaf, 0xad, 0x84, 0xd8, 0x03, 0x64, 0x89, 0xcd, 0x2a, 0xa6, 0xe9, 0xa9, 0xff, 0x9e, 0x01, 0xb3, - 0x4d, 0xe4, 0x21, 0x9b, 0xc1, 0x36, 0x58, 0xe2, 0xd8, 0x76, 0x2d, 0xc4, 0xb1, 0xee, 0xb7, 0x26, - 0x81, 0xa5, 0x57, 0x65, 0xcb, 0x12, 0xef, 0xd8, 0x4a, 0xb1, 0x1e, 0x6d, 0xb0, 0x5d, 0xaa, 0x4a, - 0x68, 0x8b, 0x23, 0x8e, 0xb5, 0xc5, 0x50, 0x86, 0x0f, 0x84, 0xd7, 0x41, 0x8e, 0x7b, 0x7d, 0xc6, - 0x47, 0x4d, 0xc3, 0xa8, 0x5a, 0xfa, 0x77, 0xbd, 0x16, 0xe2, 0xfd, 0x3a, 0x1b, 0x55, 0xc9, 0xb3, - 0xfb, 0x83, 0xc4, 0x8b, 0xf4, 0x07, 0x26, 0xd8, 0x64, 0xe2, 0x52, 0x75, 0x1b, 0x73, 0x59, 0xc5, - 0x5d, 0x0b, 0x3b, 0x84, 0xf5, 0x42, 0xe1, 0xb3, 0x93, 0x0b, 0x5f, 0x97, 0x82, 0xee, 0x0a, 0x39, - 0x5a, 0x28, 0x26, 0xd8, 0xa5, 0x0a, 0xf2, 0x67, 0xef, 0x12, 0x19, 0x3e, 0x27, 0x0d, 0xbf, 0x7c, - 0x86, 0x88, 0xc8, 0x7a, 0x06, 0xde, 0x8a, 0x75, 0x1b, 0x22, 0x9a, 0x74, 0xe9, 0xc8, 0xba, 0x87, - 0xbb, 0xa2, 0x24, 0x23, 0xbf, 0xf1, 0xc0, 0x38, 0xea, 0x98, 0x02, 0x9f, 0x16, 0x13, 0x43, 0xcc, - 0xa9, 0x89, 0x13, 0xb4, 0x95, 0xea, 0xa8, 0x29, 0x89, 0x62, 0x53, 0x8b, 0xc9, 0xfa, 0x10, 0x63, - 0x11, 0x45, 0xb1, 0xc6, 0x04, 0xbb, 0xd4, 0xe8, 0xc9, 0x9c, 0x94, 0xd0, 0x16, 0xa3, 0x26, 0xa4, - 0x2e, 0xa0, 0xf0, 0x01, 0xb8, 0xea, 0xf4, 0xed, 0x0e, 0xf6, 0x74, 0x7a, 0xe8, 0x13, 0xca, 0xc8, - 0x63, 0x1c, 0x79, 0x5c, 0xf7, 0xb0, 0x81, 0xc9, 0x40, 0xdc, 0xb8, 0xaf, 0x39, 0x93, 0x7d, 0x51, - 0x42, 0x7b, 0xd3, 0x67, 0xb9, 0x77, 0x28, 0x65, 0xb0, 0x36, 0x6d, 0x09, 0x72, 0x2d, 0xa4, 0xf6, - 0x15, 0x63, 0xb0, 0x01, 0xae, 0xd8, 0xe8, 0x91, 0x1e, 0x39, 0xb3, 0x50, 0x1c, 0x3b, 0xac, 0xcf, - 0xf4, 0x51, 0x32, 0x0f, 0x7a, 0xa3, 0xbc, 0x8d, 0x1e, 0x35, 0x03, 0xba, 0x6a, 0x48, 0x76, 0x10, - 0x51, 0xdd, 0x4a, 0xa6, 0x92, 0xd9, 0x99, 0x5b, 0xc9, 0xd4, 0x4c, 0x76, 0xf6, 0x56, 0x32, 0x95, - 0xca, 0xa6, 0xd5, 0x6f, 0x83, 0xb4, 0x8c, 0xeb, 0x8a, 0x71, 0xc4, 0x64, 0x76, 0x37, 0x4d, 0x0f, - 0x33, 0x86, 0x59, 0x4e, 0x09, 0xb2, 0x7b, 0x08, 0x50, 0x39, 0x58, 0x3f, 0x6f, 0x62, 0x60, 0xf0, - 0x23, 0x30, 0xe7, 0x62, 0xd9, 0xce, 0x4a, 0xc6, 0xcc, 0xce, 0xfb, 0xa5, 0x09, 0x46, 0xbd, 0xd2, - 0x79, 0x02, 0xb5, 0x50, 0x9a, 0xea, 0x8d, 0xe6, 0x94, 0x13, 0xbd, 0x02, 0x83, 0x07, 0x27, 0x37, - 0xfd, 0xde, 0x73, 0x6d, 0x7a, 0x42, 0xde, 0x68, 0xcf, 0xab, 0x20, 0x53, 0xf1, 0xcd, 0xbe, 0x23, - 0x4a, 0xd7, 0xa9, 0x63, 0x99, 0x8f, 0x1f, 0xcb, 0x3e, 0x58, 0x0c, 0x9a, 0xbf, 0x36, 0x95, 0xb9, - 0x09, 0xbe, 0x0e, 0x40, 0xd0, 0x35, 0x8a, 0x9c, 0xe6, 0x67, 0xf7, 0x74, 0x00, 0x69, 0x98, 0x63, - 0x15, 0x7d, 0x7a, 0xac, 0xa2, 0xcb, 0xaa, 0x41, 0xc1, 0xfa, 0x41, 0xbc, 0xea, 0xca, 0x02, 0xd2, - 0x44, 0xc6, 0x11, 0xe6, 0x0c, 0x6a, 0x20, 0x29, 0xab, 0xab, 0x6f, 0xee, 0xf5, 0x73, 0xcd, 0x1d, - 0x6c, 0x97, 0xce, 0x13, 0x52, 0x43, 0x1c, 0x05, 0x31, 0x20, 0x65, 0xa9, 0x3f, 0x57, 0x40, 0xee, - 0x36, 0x1e, 0x56, 0x18, 0x23, 0x5d, 0xc7, 0xc6, 0x0e, 0x17, 0xd1, 0x87, 0x0c, 0x2c, 0x3e, 0xe1, - 0x1b, 0x60, 0x21, 0x72, 0x3c, 0x99, 0x3c, 0x15, 0x99, 0x3c, 0xe7, 0x43, 0xa0, 0x38, 0x27, 0x78, - 0x03, 0x00, 0xd7, 0xc3, 0x03, 0xdd, 0xd0, 0x8f, 0xf0, 0x50, 0xda, 0x94, 0xd9, 0xd9, 0x8c, 0x27, - 0x45, 0x7f, 0xfe, 0x2c, 0x35, 0xfb, 0x1d, 0x8b, 0x18, 0xb7, 0xf1, 0x50, 0x4b, 0x09, 0xfa, 0xea, - 0x6d, 0x3c, 0x14, 0x55, 0x50, 0x36, 0x29, 0x32, 0x93, 0x25, 0x34, 0x7f, 0xa1, 0xfe, 0x42, 0x01, - 0x97, 0x22, 0x03, 0xc2, 0xfb, 0x6a, 0xf6, 0x3b, 0x82, 0x23, 0x7e, 0x7e, 0xca, 0x78, 0x47, 0x74, - 0x4a, 0xdb, 0xe9, 0x33, 0xb4, 0xfd, 0x00, 0xcc, 0x47, 0xa9, 0x44, 0xe8, 0x9b, 0x98, 0x40, 0xdf, - 0x4c, 0xc8, 0x71, 0x1b, 0x0f, 0xd5, 0x9f, 0xc4, 0x74, 0xdb, 0x1d, 0xc6, 0x5c, 0xd8, 0x7b, 0x86, - 0x6e, 0xd1, 0xb6, 0x71, 0xdd, 0x8c, 0x38, 0xff, 0x29, 0x03, 0x12, 0xa7, 0x0d, 0x50, 0xff, 0xac, - 0x80, 0xb5, 0xf8, 0xae, 0xac, 0x4d, 0x9b, 0x5e, 0xdf, 0xc1, 0x07, 0x3b, 0x17, 0xed, 0xff, 0x01, - 0x48, 0xb9, 0x82, 0x4a, 0xe7, 0x2c, 0xb8, 0xa2, 0xc9, 0x4a, 0xf6, 0x9c, 0xe4, 0x6a, 0x8b, 0x10, - 0x5f, 0x1c, 0x33, 0x80, 0x05, 0x27, 0xf7, 0xce, 0x44, 0x41, 0x17, 0x0b, 0x28, 0x6d, 0x21, 0x6e, - 0x33, 0x53, 0xbf, 0x54, 0x00, 0x3c, 0x9d, 0xad, 0xe0, 0x77, 0x00, 0x1c, 0xcb, 0x79, 0x71, 0xff, - 0xcb, 0xba, 0xb1, 0x2c, 0x27, 0x4f, 0x2e, 0xf2, 0xa3, 0xe9, 0x98, 0x1f, 0xc1, 0xef, 0x02, 0xe0, - 0xca, 0x4b, 0x9c, 0xf8, 0xa6, 0xd3, 0x6e, 0xf8, 0x09, 0x0b, 0x20, 0xf3, 0x31, 0x25, 0x4e, 0xfc, - 0xc1, 0x22, 0xa1, 0x01, 0x01, 0xf2, 0xdf, 0x22, 0xd4, 0x9f, 0x29, 0xa3, 0x94, 0x18, 0x64, 0xeb, - 0x8a, 0x65, 0x05, 0x3d, 0x20, 0x74, 0xc1, 0x5c, 0x98, 0xef, 0xfd, 0x70, 0xdd, 0x3c, 0xb3, 0x26, - 0xd5, 0xb0, 0x21, 0xcb, 0xd2, 0x75, 0x71, 0xe2, 0xbf, 0xf9, 0xa6, 0x70, 0xb5, 0x4b, 0x78, 0xaf, - 0xdf, 0x29, 0x19, 0xd4, 0x0e, 0x1e, 0xa8, 0x82, 0x7f, 0xd7, 0x98, 0x79, 0x54, 0xe6, 0x43, 0x17, - 0xb3, 0x90, 0x87, 0xfd, 0xfa, 0x9f, 0xbf, 0x7d, 0x5b, 0xd1, 0xc2, 0x6d, 0x54, 0x13, 0x64, 0xa3, - 0x19, 0x04, 0x73, 0x64, 0x22, 0x8e, 0x20, 0x04, 0x49, 0x07, 0xd9, 0x61, 0x93, 0x29, 0xbf, 0x27, - 0xe8, 0x31, 0x37, 0x40, 0xca, 0x0e, 0x24, 0x04, 0x53, 0x47, 0xb4, 0x56, 0x7f, 0x3a, 0x0b, 0x8a, - 0xe1, 0x36, 0x0d, 0xff, 0x6d, 0x86, 0xfc, 0xd8, 0x6f, 0xc1, 0x45, 0xe7, 0x24, 0xea, 0x37, 0x3b, - 0xe3, 0xbd, 0x47, 0x79, 0x39, 0xef, 0x3d, 0xd3, 0xcf, 0x7c, 0xef, 0x49, 0x3c, 0xe3, 0xbd, 0x27, - 0xf9, 0xf2, 0xde, 0x7b, 0x66, 0x5e, 0xfa, 0x7b, 0xcf, 0xec, 0x2b, 0x7a, 0xef, 0x99, 0xfb, 0xbf, - 0xbc, 0xf7, 0xa4, 0x5e, 0xea, 0x7b, 0x4f, 0xfa, 0xc5, 0xde, 0x7b, 0xc0, 0x0b, 0xbd, 0xf7, 0x64, - 0x26, 0x7a, 0xef, 0x51, 0xbf, 0x9c, 0x06, 0x6b, 0x72, 0x92, 0x6e, 0xf5, 0x90, 0x2b, 0x2e, 0x77, - 0x14, 0x02, 0xd1, 0x78, 0xae, 0x4c, 0x30, 0x9e, 0x4f, 0x3f, 0xdf, 0x78, 0x9e, 0x98, 0x60, 0x3c, - 0x4f, 0x5e, 0x34, 0x9e, 0xcf, 0x5c, 0x34, 0x9e, 0xcf, 0x4e, 0x36, 0x9e, 0xcf, 0x9d, 0x33, 0x9e, - 0x43, 0x15, 0xcc, 0xbb, 0x1e, 0xa1, 0xa2, 0x0e, 0xc4, 0xde, 0x02, 0xc6, 0x60, 0x6a, 0x01, 0x64, - 0xa2, 0x24, 0x62, 0x32, 0x98, 0x05, 0x09, 0x62, 0x86, 0x4d, 0xa7, 0xf8, 0x54, 0xb7, 0xc1, 0xa5, - 0x4a, 0xa8, 0x3a, 0x36, 0xe3, 0x13, 0x34, 0x5c, 0x03, 0xb3, 0xfe, 0x14, 0x1b, 0xd0, 0x07, 0x2b, - 0xf5, 0x0f, 0x0a, 0x58, 0x6d, 0x38, 0xa1, 0x37, 0xc6, 0xae, 0xe2, 0x07, 0x20, 0x63, 0xd2, 0x7e, - 0xc7, 0xc2, 0xba, 0xe8, 0x71, 0x82, 0x54, 0x74, 0x7d, 0xa2, 0xba, 0x25, 0xbb, 0xe3, 0x5b, 0x88, - 0x58, 0x23, 0x71, 0x1a, 0xf0, 0x85, 0xb5, 0x48, 0xd7, 0x81, 0x6d, 0x90, 0x32, 0xe9, 0xb1, 0x23, - 0x33, 0xcb, 0xf4, 0x0b, 0xca, 0x8d, 0x24, 0xa9, 0xbf, 0x53, 0xc0, 0xca, 0x19, 0x14, 0xf0, 0x47, - 0x60, 0xd1, 0x9f, 0xa5, 0xa2, 0x90, 0x93, 0xf5, 0x70, 0xf7, 0x3d, 0x11, 0xbd, 0x7f, 0x7f, 0x5c, - 0xb8, 0xec, 0x97, 0x0a, 0x66, 0x1e, 0x95, 0x08, 0x2d, 0xdb, 0x88, 0xf7, 0x4a, 0x77, 0x70, 0x17, - 0x19, 0xc3, 0x1a, 0x36, 0xfe, 0xfa, 0xc5, 0x35, 0x10, 0x14, 0xa0, 0x1a, 0x36, 0xfc, 0xd2, 0xb1, - 0x20, 0xa5, 0x45, 0x91, 0xb9, 0x07, 0x16, 0x3e, 0x46, 0xc4, 0xd2, 0xc3, 0x1f, 0x39, 0x02, 0x8b, - 0x26, 0x4a, 0x1b, 0xf3, 0x82, 0x33, 0x84, 0xbf, 0xfd, 0x47, 0x05, 0x2c, 0x44, 0x7d, 0x5b, 0x0f, - 0x31, 0x0c, 0xf3, 0x60, 0xa3, 0x7a, 0x6f, 0xbf, 0x75, 0xff, 0x6e, 0x5d, 0xd3, 0x9b, 0x7b, 0x95, - 0x56, 0x5d, 0xbf, 0xbf, 0xdf, 0x6a, 0xd6, 0xab, 0x8d, 0x0f, 0x1b, 0xf5, 0x5a, 0x76, 0x0a, 0xbe, - 0x0e, 0xd6, 0x4f, 0xe0, 0xb5, 0xfa, 0xcd, 0x46, 0xab, 0x5d, 0xd7, 0xea, 0xb5, 0xac, 0x72, 0x06, - 0x7b, 0x63, 0xbf, 0xd1, 0x6e, 0x54, 0xee, 0x34, 0x1e, 0xd4, 0x6b, 0xd9, 0x69, 0x78, 0x19, 0x5c, - 0x3a, 0x81, 0xbf, 0x53, 0xb9, 0xbf, 0x5f, 0xdd, 0xab, 0xd7, 0xb2, 0x09, 0xb8, 0x01, 0xd6, 0x4e, - 0x20, 0x5b, 0xed, 0x7b, 0xcd, 0x66, 0xbd, 0x96, 0x4d, 0x9e, 0x81, 0xab, 0xd5, 0xef, 0xd4, 0xdb, - 0xf5, 0x5a, 0x76, 0x66, 0x23, 0xf9, 0xc9, 0xaf, 0xf2, 0x53, 0xbb, 0x1f, 0x7d, 0xf5, 0x24, 0xaf, - 0x7c, 0xfd, 0x24, 0xaf, 0xfc, 0xe3, 0x49, 0x5e, 0xf9, 0xf4, 0x69, 0x7e, 0xea, 0xeb, 0xa7, 0xf9, - 0xa9, 0xbf, 0x3d, 0xcd, 0x4f, 0x3d, 0x78, 0xff, 0x74, 0xad, 0x1e, 0xdd, 0xfd, 0xb5, 0xe8, 0xc7, - 0x99, 0xc1, 0x7b, 0xe5, 0x47, 0xe3, 0xbf, 0x8c, 0xc9, 0x32, 0xde, 0x99, 0x95, 0xe7, 0xf9, 0xee, - 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0xf1, 0x1b, 0x2e, 0x6d, 0x4a, 0x1b, 0x00, 0x00, + 0xf2, 0x03, 0x7a, 0x69, 0x5a, 0xa0, 0x40, 0xda, 0x53, 0x51, 0x14, 0x4e, 0x61, 0x1f, 0x7a, 0x28, + 0xd0, 0x9e, 0x7b, 0x2b, 0x66, 0xf6, 0xc1, 0xa5, 0x5e, 0xa6, 0x61, 0xbb, 0x17, 0x69, 0xe7, 0x7b, + 0xcd, 0xf7, 0xcd, 0x7c, 0xcf, 0x21, 0xd8, 0x21, 0x0e, 0xc7, 0x9e, 0xd1, 0x43, 0xc4, 0xd1, 0x19, + 0x36, 0xfa, 0x1e, 0xe1, 0xc3, 0xb2, 0x61, 0x0c, 0xca, 0xae, 0x47, 0x07, 0xc4, 0xc4, 0x5e, 0x79, + 0xb0, 0x1d, 0x7d, 0x97, 0x5c, 0x8f, 0x72, 0x0a, 0xdf, 0x38, 0x83, 0xa7, 0x64, 0x18, 0x83, 0x52, + 0x44, 0x37, 0xd8, 0xde, 0x58, 0x46, 0x36, 0x71, 0x68, 0x59, 0xfe, 0xf5, 0xf9, 0x36, 0xf2, 0x06, + 0x65, 0x36, 0x65, 0xe5, 0x0e, 0x62, 0xb8, 0x3c, 0xd8, 0xee, 0x60, 0x8e, 0xb6, 0xcb, 0x06, 0x25, + 0x4e, 0x80, 0x7f, 0x2b, 0xc0, 0x63, 0x21, 0xc4, 0x31, 0x46, 0x34, 0x21, 0x20, 0xa0, 0x5b, 0xf7, + 0xe9, 0x74, 0xb9, 0x2a, 0xfb, 0x8b, 0x00, 0xb5, 0xda, 0xa5, 0x5d, 0xea, 0xc3, 0xc5, 0x57, 0xb8, + 0x71, 0x97, 0xd2, 0xae, 0x85, 0xcb, 0x72, 0xd5, 0xe9, 0x1f, 0x96, 0xcd, 0xbe, 0x87, 0x38, 0xa1, + 0xe1, 0xc6, 0x85, 0x93, 0x78, 0x4e, 0x6c, 0xcc, 0x38, 0xb2, 0xdd, 0x90, 0x80, 0x74, 0x8c, 0xb2, + 0x41, 0x3d, 0x5c, 0x36, 0x2c, 0x82, 0x1d, 0x2e, 0x0e, 0xc5, 0xff, 0x0a, 0x08, 0xca, 0x82, 0xc0, + 0x22, 0xdd, 0x1e, 0xf7, 0xc1, 0xac, 0xcc, 0xb1, 0x63, 0x62, 0xcf, 0x26, 0x3e, 0xf1, 0x68, 0x15, + 0x30, 0xbc, 0x79, 0xde, 0xb9, 0x0f, 0xb6, 0xcb, 0xc7, 0xc4, 0x0b, 0x4d, 0xdd, 0x8c, 0x89, 0x31, + 0xbc, 0xa1, 0xcb, 0x69, 0xf9, 0x08, 0x0f, 0x03, 0x6b, 0xd5, 0xff, 0xa6, 0x40, 0xae, 0x4a, 0x1d, + 0xd6, 0xb7, 0xb1, 0x57, 0x31, 0x4d, 0x22, 0x4c, 0x6a, 0x7a, 0xd4, 0xa5, 0x0c, 0x59, 0x70, 0x15, + 0xcc, 0x70, 0xc2, 0x2d, 0x9c, 0x53, 0x8a, 0xca, 0x56, 0x5a, 0xf3, 0x17, 0xb0, 0x08, 0x32, 0x26, + 0x66, 0x86, 0x47, 0x5c, 0x41, 0x9c, 0x9b, 0x96, 0xb8, 0x38, 0x08, 0xae, 0x83, 0x94, 0xaf, 0x16, + 0x31, 0x73, 0x09, 0x89, 0x9e, 0x93, 0xeb, 0x86, 0x09, 0x6f, 0x82, 0x45, 0xe2, 0x10, 0x4e, 0x90, + 0xa5, 0xf7, 0xb0, 0x30, 0x36, 0x97, 0x2c, 0x2a, 0x5b, 0x99, 0x9d, 0x8d, 0x12, 0xe9, 0x18, 0x25, + 0x71, 0x3e, 0xa5, 0xe0, 0x54, 0x06, 0xdb, 0xa5, 0x3d, 0x49, 0xb1, 0x9b, 0xfc, 0xea, 0x71, 0x61, + 0x4a, 0x5b, 0x08, 0xf8, 0x7c, 0x20, 0xbc, 0x02, 0xe6, 0xbb, 0xd8, 0xc1, 0x8c, 0x30, 0xbd, 0x87, + 0x58, 0x2f, 0x37, 0x53, 0x54, 0xb6, 0xe6, 0xb5, 0x4c, 0x00, 0xdb, 0x43, 0xac, 0x07, 0x0b, 0x20, + 0xd3, 0x21, 0x0e, 0xf2, 0x86, 0x3e, 0xc5, 0xac, 0xa4, 0x00, 0x3e, 0x48, 0x12, 0x54, 0x01, 0x60, + 0x2e, 0x3a, 0x76, 0x74, 0x71, 0x59, 0xb9, 0xb9, 0x40, 0x11, 0xff, 0x26, 0x4b, 0xe1, 0x4d, 0x96, + 0xda, 0xe1, 0x4d, 0xee, 0xa6, 0x84, 0x22, 0x9f, 0x7e, 0x53, 0x50, 0xb4, 0xb4, 0xe4, 0x13, 0x18, + 0xb8, 0x0f, 0xb2, 0x7d, 0xa7, 0x43, 0x1d, 0x93, 0x38, 0x5d, 0xdd, 0xc5, 0x1e, 0xa1, 0x66, 0x2e, + 0x25, 0x45, 0xad, 0x9f, 0x12, 0x55, 0x0b, 0x9c, 0xc6, 0x97, 0xf4, 0x99, 0x90, 0xb4, 0x14, 0x31, + 0x37, 0x25, 0x2f, 0xfc, 0x3e, 0x80, 0x86, 0x31, 0x90, 0x2a, 0xd1, 0x3e, 0x0f, 0x25, 0xa6, 0x27, + 0x97, 0x98, 0x35, 0x8c, 0x41, 0xdb, 0xe7, 0x0e, 0x44, 0xfe, 0x10, 0x5c, 0xe2, 0x1e, 0x72, 0xd8, + 0x21, 0xf6, 0x4e, 0xca, 0x05, 0x93, 0xcb, 0x7d, 0x2d, 0x94, 0x31, 0x2e, 0x7c, 0x0f, 0x14, 0x8d, + 0xc0, 0x81, 0x74, 0x0f, 0x9b, 0x84, 0x71, 0x8f, 0x74, 0xfa, 0x82, 0x57, 0x3f, 0xf4, 0x90, 0x21, + 0x7d, 0x24, 0x23, 0x9d, 0x20, 0x1f, 0xd2, 0x69, 0x63, 0x64, 0x1f, 0x06, 0x54, 0xf0, 0x1e, 0xf8, + 0x56, 0xc7, 0xa2, 0xc6, 0x11, 0x13, 0xca, 0xe9, 0x63, 0x92, 0xe4, 0xd6, 0x36, 0x61, 0x4c, 0x48, + 0x9b, 0x2f, 0x2a, 0x5b, 0x09, 0xed, 0x8a, 0x4f, 0xdb, 0xc4, 0x5e, 0x2d, 0x46, 0xd9, 0x8e, 0x11, + 0xc2, 0x6b, 0x00, 0xf6, 0x08, 0xe3, 0xd4, 0x23, 0x06, 0xb2, 0x74, 0xec, 0x70, 0x8f, 0x60, 0x96, + 0x5b, 0x90, 0xec, 0xcb, 0x23, 0x4c, 0xdd, 0x47, 0xc0, 0x5b, 0xe0, 0xca, 0xb9, 0x9b, 0xea, 0x46, + 0x0f, 0x39, 0x0e, 0xb6, 0x72, 0x8b, 0xd2, 0x94, 0x82, 0x79, 0xce, 0x9e, 0x55, 0x9f, 0x0c, 0xae, + 0x80, 0x19, 0x4e, 0x5d, 0x7d, 0x3f, 0xb7, 0x54, 0x54, 0xb6, 0x16, 0xb4, 0x24, 0xa7, 0xee, 0x3e, + 0x7c, 0x07, 0xac, 0x0e, 0x90, 0x45, 0x4c, 0xc4, 0xa9, 0xc7, 0x74, 0x97, 0x1e, 0x63, 0x4f, 0x37, + 0x90, 0x9b, 0xcb, 0x4a, 0x1a, 0x38, 0xc2, 0x35, 0x05, 0xaa, 0x8a, 0x5c, 0xf8, 0x36, 0x58, 0x8e, + 0xa0, 0x3a, 0xc3, 0x5c, 0x92, 0x2f, 0x4b, 0xf2, 0xa5, 0x08, 0xd1, 0xc2, 0x5c, 0xd0, 0x6e, 0x82, + 0x34, 0xb2, 0x2c, 0x7a, 0x6c, 0x11, 0xc6, 0x73, 0xb0, 0x98, 0xd8, 0x4a, 0x6b, 0x23, 0x00, 0xdc, + 0x00, 0x29, 0x13, 0x3b, 0x43, 0x89, 0x5c, 0x91, 0xc8, 0x68, 0x0d, 0x2f, 0x83, 0xb4, 0x2d, 0x92, + 0x08, 0x47, 0x47, 0x38, 0xb7, 0x5a, 0x54, 0xb6, 0x92, 0x5a, 0xca, 0x26, 0x4e, 0x4b, 0xac, 0x61, + 0x09, 0xac, 0x48, 0x29, 0x3a, 0x71, 0xc4, 0x3d, 0x0d, 0xb0, 0x3e, 0x40, 0x16, 0xcb, 0xbd, 0x56, + 0x54, 0xb6, 0x52, 0xda, 0xb2, 0x44, 0x35, 0x02, 0xcc, 0x01, 0xb2, 0xd8, 0x8d, 0xad, 0x4f, 0x3e, + 0x2f, 0x4c, 0x7d, 0xf6, 0x79, 0x61, 0xea, 0x8f, 0x5f, 0x5c, 0xdb, 0x08, 0x32, 0x6b, 0x97, 0x0e, + 0x4a, 0x41, 0x26, 0x2e, 0x55, 0xa9, 0xc3, 0xb1, 0xc3, 0x73, 0x8a, 0xfa, 0x67, 0x05, 0x5c, 0xaa, + 0x46, 0x2e, 0x61, 0xd3, 0x01, 0xb2, 0x5e, 0x65, 0xea, 0xa9, 0x80, 0x34, 0x13, 0x77, 0x22, 0x83, + 0x3d, 0xf9, 0x1c, 0xc1, 0x9e, 0x12, 0x6c, 0x02, 0x71, 0xa3, 0xf8, 0x4c, 0x9b, 0xfe, 0x33, 0x0d, + 0x36, 0x43, 0x9b, 0xee, 0x52, 0x93, 0x1c, 0x12, 0x03, 0xbd, 0xea, 0x9c, 0x1a, 0xf9, 0x5a, 0x72, + 0x02, 0x5f, 0x9b, 0x79, 0x3e, 0x5f, 0x9b, 0x9d, 0xc0, 0xd7, 0xe6, 0x2e, 0xf2, 0xb5, 0xd4, 0x45, + 0xbe, 0x96, 0x9e, 0xcc, 0xd7, 0xc0, 0x79, 0xbe, 0x36, 0x9d, 0x53, 0xd4, 0x5f, 0x2a, 0x60, 0xb5, + 0xfe, 0xb0, 0x4f, 0x06, 0xf4, 0x25, 0x9d, 0xf4, 0x6d, 0xb0, 0x80, 0x63, 0xf2, 0x58, 0x2e, 0x51, + 0x4c, 0x6c, 0x65, 0x76, 0xde, 0x2c, 0x05, 0x17, 0x1f, 0xb5, 0x12, 0xe1, 0xed, 0xc7, 0x77, 0xd7, + 0xc6, 0x79, 0xa5, 0x86, 0xbf, 0x53, 0xc0, 0x86, 0xc8, 0x0b, 0x5d, 0xac, 0xe1, 0x63, 0xe4, 0x99, + 0x35, 0xec, 0x50, 0x9b, 0xbd, 0xb0, 0x9e, 0x2a, 0x58, 0x30, 0xa5, 0x24, 0x9d, 0x53, 0x1d, 0x99, + 0xa6, 0xd4, 0x53, 0xd2, 0x08, 0x60, 0x9b, 0x56, 0x4c, 0x13, 0x6e, 0x81, 0xec, 0x88, 0xc6, 0x13, + 0x31, 0x26, 0x5c, 0x5f, 0x90, 0x2d, 0x86, 0x64, 0x32, 0xf2, 0xf0, 0x8d, 0xfc, 0xc5, 0xae, 0xad, + 0xfe, 0x4b, 0x01, 0xd9, 0x9b, 0x16, 0xed, 0x20, 0xab, 0x65, 0x21, 0xd6, 0x13, 0x39, 0x73, 0x28, + 0x42, 0xca, 0xc3, 0x41, 0xb1, 0x92, 0xea, 0x4f, 0x1c, 0x52, 0x82, 0x4d, 0x96, 0xcf, 0x0f, 0xc0, + 0x72, 0x54, 0x3e, 0x22, 0x07, 0x97, 0xd6, 0xee, 0xae, 0x3c, 0x79, 0x5c, 0x58, 0x0a, 0x83, 0xa9, + 0x2a, 0x9d, 0xbd, 0xa6, 0x2d, 0x19, 0x63, 0x00, 0x13, 0xe6, 0x41, 0x86, 0x74, 0x0c, 0x9d, 0xe1, + 0x87, 0xba, 0xd3, 0xb7, 0x65, 0x6c, 0x24, 0xb5, 0x34, 0xe9, 0x18, 0x2d, 0xfc, 0x70, 0xbf, 0x6f, + 0xc3, 0x77, 0xc1, 0x5a, 0xd8, 0x54, 0x0a, 0x6f, 0xd2, 0x05, 0xbf, 0x38, 0x2e, 0x4f, 0x86, 0xcb, + 0xbc, 0xb6, 0x12, 0x62, 0x0f, 0x90, 0x25, 0x36, 0xab, 0x98, 0xa6, 0xa7, 0xfe, 0x7b, 0x06, 0xcc, + 0x36, 0x91, 0x87, 0x6c, 0x06, 0xdb, 0x60, 0x89, 0x63, 0xdb, 0xb5, 0x10, 0xc7, 0xba, 0xdf, 0x9a, + 0x04, 0x96, 0x5e, 0x95, 0x2d, 0x4b, 0xbc, 0x63, 0x2b, 0xc5, 0x7a, 0xb4, 0xc1, 0x76, 0xa9, 0x2a, + 0xa1, 0x2d, 0x8e, 0x38, 0xd6, 0x16, 0x43, 0x19, 0x3e, 0x10, 0x5e, 0x07, 0x39, 0xee, 0xf5, 0x19, + 0x1f, 0x35, 0x0d, 0xa3, 0x6a, 0xe9, 0xdf, 0xf5, 0x5a, 0x88, 0xf7, 0xeb, 0x6c, 0x54, 0x25, 0xcf, + 0xee, 0x0f, 0x12, 0x2f, 0xd2, 0x1f, 0x98, 0x60, 0x93, 0x89, 0x4b, 0xd5, 0x6d, 0xcc, 0x65, 0x15, + 0x77, 0x2d, 0xec, 0x10, 0xd6, 0x0b, 0x85, 0xcf, 0x4e, 0x2e, 0x7c, 0x5d, 0x0a, 0xba, 0x2b, 0xe4, + 0x68, 0xa1, 0x98, 0x60, 0x97, 0x2a, 0xc8, 0x9f, 0xbd, 0x4b, 0x64, 0xf8, 0x9c, 0x34, 0xfc, 0xf2, + 0x19, 0x22, 0x22, 0xeb, 0x19, 0x78, 0x2b, 0xd6, 0x6d, 0x88, 0x68, 0xd2, 0xa5, 0x23, 0xeb, 0x1e, + 0xee, 0x8a, 0x92, 0x8c, 0xfc, 0xc6, 0x03, 0xe3, 0xa8, 0x63, 0x0a, 0x7c, 0x5a, 0x4c, 0x0c, 0x31, + 0xa7, 0x26, 0x4e, 0xd0, 0x56, 0xaa, 0xa3, 0xa6, 0x24, 0x8a, 0x4d, 0x2d, 0x26, 0xeb, 0x43, 0x8c, + 0x45, 0x14, 0xc5, 0x1a, 0x13, 0xec, 0x52, 0xa3, 0x27, 0x73, 0x52, 0x42, 0x5b, 0x8c, 0x9a, 0x90, + 0xba, 0x80, 0xc2, 0x07, 0xe0, 0xaa, 0xd3, 0xb7, 0x3b, 0xd8, 0xd3, 0xe9, 0xa1, 0x4f, 0x28, 0x23, + 0x8f, 0x71, 0xe4, 0x71, 0xdd, 0xc3, 0x06, 0x26, 0x03, 0x71, 0xe3, 0xbe, 0xe6, 0x4c, 0xf6, 0x45, + 0x09, 0xed, 0x4d, 0x9f, 0xe5, 0xde, 0xa1, 0x94, 0xc1, 0xda, 0xb4, 0x25, 0xc8, 0xb5, 0x90, 0xda, + 0x57, 0x8c, 0xc1, 0x06, 0xb8, 0x62, 0xa3, 0x47, 0x7a, 0xe4, 0xcc, 0x42, 0x71, 0xec, 0xb0, 0x3e, + 0xd3, 0x47, 0xc9, 0x3c, 0xe8, 0x8d, 0xf2, 0x36, 0x7a, 0xd4, 0x0c, 0xe8, 0xaa, 0x21, 0xd9, 0x41, + 0x44, 0x75, 0x2b, 0x99, 0x4a, 0x66, 0x67, 0x6e, 0x25, 0x53, 0x33, 0xd9, 0xd9, 0x5b, 0xc9, 0x54, + 0x2a, 0x9b, 0x56, 0xbf, 0x0d, 0xd2, 0x32, 0xae, 0x2b, 0xc6, 0x11, 0x93, 0xd9, 0xdd, 0x34, 0x3d, + 0xcc, 0x18, 0x66, 0x39, 0x25, 0xc8, 0xee, 0x21, 0x40, 0xe5, 0x60, 0xfd, 0xbc, 0x89, 0x81, 0xc1, + 0x8f, 0xc0, 0x9c, 0x8b, 0x65, 0x3b, 0x2b, 0x19, 0x33, 0x3b, 0xef, 0x97, 0x26, 0x18, 0xf5, 0x4a, + 0xe7, 0x09, 0xd4, 0x42, 0x69, 0xaa, 0x37, 0x9a, 0x53, 0x4e, 0xf4, 0x0a, 0x0c, 0x1e, 0x9c, 0xdc, + 0xf4, 0x7b, 0xcf, 0xb5, 0xe9, 0x09, 0x79, 0xa3, 0x3d, 0xaf, 0x82, 0x4c, 0xc5, 0x37, 0xfb, 0x8e, + 0x28, 0x5d, 0xa7, 0x8e, 0x65, 0x3e, 0x7e, 0x2c, 0xfb, 0x60, 0x31, 0x68, 0xfe, 0xda, 0x54, 0xe6, + 0x26, 0xf8, 0x3a, 0x00, 0x41, 0xd7, 0x28, 0x72, 0x9a, 0x9f, 0xdd, 0xd3, 0x01, 0xa4, 0x61, 0x8e, + 0x55, 0xf4, 0xe9, 0xb1, 0x8a, 0x2e, 0xab, 0x06, 0x05, 0xeb, 0x07, 0xf1, 0xaa, 0x2b, 0x0b, 0x48, + 0x13, 0x19, 0x47, 0x98, 0x33, 0xa8, 0x81, 0xa4, 0xac, 0xae, 0xbe, 0xb9, 0xd7, 0xcf, 0x35, 0x77, + 0xb0, 0x5d, 0x3a, 0x4f, 0x48, 0x0d, 0x71, 0x14, 0xc4, 0x80, 0x94, 0xa5, 0xfe, 0x5c, 0x01, 0xb9, + 0xdb, 0x78, 0x58, 0x61, 0x8c, 0x74, 0x1d, 0x1b, 0x3b, 0x5c, 0x44, 0x1f, 0x32, 0xb0, 0xf8, 0x84, + 0x6f, 0x80, 0x85, 0xc8, 0xf1, 0x64, 0xf2, 0x54, 0x64, 0xf2, 0x9c, 0x0f, 0x81, 0xe2, 0x9c, 0xe0, + 0x0d, 0x00, 0x5c, 0x0f, 0x0f, 0x74, 0x43, 0x3f, 0xc2, 0x43, 0x69, 0x53, 0x66, 0x67, 0x33, 0x9e, + 0x14, 0xfd, 0xf9, 0xb3, 0xd4, 0xec, 0x77, 0x2c, 0x62, 0xdc, 0xc6, 0x43, 0x2d, 0x25, 0xe8, 0xab, + 0xb7, 0xf1, 0x50, 0x54, 0x41, 0xd9, 0xa4, 0xc8, 0x4c, 0x96, 0xd0, 0xfc, 0x85, 0xfa, 0x0b, 0x05, + 0x5c, 0x8a, 0x0c, 0x08, 0xef, 0xab, 0xd9, 0xef, 0x08, 0x8e, 0xf8, 0xf9, 0x29, 0xe3, 0x1d, 0xd1, + 0x29, 0x6d, 0xa7, 0xcf, 0xd0, 0xf6, 0x03, 0x30, 0x1f, 0xa5, 0x12, 0xa1, 0x6f, 0x62, 0x02, 0x7d, + 0x33, 0x21, 0xc7, 0x6d, 0x3c, 0x54, 0x7f, 0x12, 0xd3, 0x6d, 0x77, 0x18, 0x73, 0x61, 0xef, 0x19, + 0xba, 0x45, 0xdb, 0xc6, 0x75, 0x33, 0xe2, 0xfc, 0xa7, 0x0c, 0x48, 0x9c, 0x36, 0x40, 0xfd, 0x93, + 0x02, 0xd6, 0xe2, 0xbb, 0xb2, 0x36, 0x6d, 0x7a, 0x7d, 0x07, 0x1f, 0xec, 0x5c, 0xb4, 0xff, 0x07, + 0x20, 0xe5, 0x0a, 0x2a, 0x9d, 0xb3, 0xe0, 0x8a, 0x26, 0x2b, 0xd9, 0x73, 0x92, 0xab, 0x2d, 0x42, + 0x7c, 0x71, 0xcc, 0x00, 0x16, 0x9c, 0xdc, 0x3b, 0x13, 0x05, 0x5d, 0x2c, 0xa0, 0xb4, 0x85, 0xb8, + 0xcd, 0x4c, 0xfd, 0x52, 0x01, 0xf0, 0x74, 0xb6, 0x82, 0xdf, 0x01, 0x70, 0x2c, 0xe7, 0xc5, 0xfd, + 0x2f, 0xeb, 0xc6, 0xb2, 0x9c, 0x3c, 0xb9, 0xc8, 0x8f, 0xa6, 0x63, 0x7e, 0x04, 0xbf, 0x0b, 0x80, + 0x2b, 0x2f, 0x71, 0xe2, 0x9b, 0x4e, 0xbb, 0xe1, 0x27, 0x2c, 0x80, 0xcc, 0xc7, 0x94, 0x38, 0xf1, + 0x07, 0x8b, 0x84, 0x06, 0x04, 0xc8, 0x7f, 0x8b, 0x50, 0x7f, 0xa6, 0x8c, 0x52, 0x62, 0x90, 0xad, + 0x2b, 0x96, 0x15, 0xf4, 0x80, 0xd0, 0x05, 0x73, 0x61, 0xbe, 0xf7, 0xc3, 0x75, 0xf3, 0xcc, 0x9a, + 0x54, 0xc3, 0x86, 0x2c, 0x4b, 0xd7, 0xc5, 0x89, 0xff, 0xe6, 0x9b, 0xc2, 0xd5, 0x2e, 0xe1, 0xbd, + 0x7e, 0xa7, 0x64, 0x50, 0x3b, 0x78, 0xa0, 0x0a, 0xfe, 0x5d, 0x63, 0xe6, 0x51, 0x99, 0x0f, 0x5d, + 0xcc, 0x42, 0x1e, 0xf6, 0xeb, 0x7f, 0xfe, 0xf6, 0x6d, 0x45, 0x0b, 0xb7, 0x51, 0x4d, 0x90, 0x8d, + 0x66, 0x10, 0xcc, 0x91, 0x89, 0x38, 0x82, 0x10, 0x24, 0x1d, 0x64, 0x87, 0x4d, 0xa6, 0xfc, 0x9e, + 0xa0, 0xc7, 0xdc, 0x00, 0x29, 0x3b, 0x90, 0x10, 0x4c, 0x1d, 0xd1, 0x5a, 0xfd, 0xe9, 0x2c, 0x28, + 0x86, 0xdb, 0x34, 0xfc, 0xb7, 0x19, 0xf2, 0x63, 0xbf, 0x05, 0x17, 0x9d, 0x93, 0xa8, 0xdf, 0xec, + 0x8c, 0xf7, 0x1e, 0xe5, 0xe5, 0xbc, 0xf7, 0x4c, 0x3f, 0xf3, 0xbd, 0x27, 0xf1, 0x8c, 0xf7, 0x9e, + 0xe4, 0xcb, 0x7b, 0xef, 0x99, 0x79, 0xe9, 0xef, 0x3d, 0xb3, 0xaf, 0xe8, 0xbd, 0x67, 0xee, 0xff, + 0xf2, 0xde, 0x93, 0x7a, 0xa9, 0xef, 0x3d, 0xe9, 0x17, 0x7b, 0xef, 0x01, 0x2f, 0xf4, 0xde, 0x93, + 0x99, 0xe8, 0xbd, 0x47, 0xfd, 0x72, 0x1a, 0xac, 0xc9, 0x49, 0xba, 0xd5, 0x43, 0xae, 0xb8, 0xdc, + 0x51, 0x08, 0x44, 0xe3, 0xb9, 0x32, 0xc1, 0x78, 0x3e, 0xfd, 0x7c, 0xe3, 0x79, 0x62, 0x82, 0xf1, + 0x3c, 0x79, 0xd1, 0x78, 0x3e, 0x73, 0xd1, 0x78, 0x3e, 0x3b, 0xd9, 0x78, 0x3e, 0x77, 0xce, 0x78, + 0x0e, 0x55, 0x30, 0xef, 0x7a, 0x84, 0x8a, 0x3a, 0x10, 0x7b, 0x0b, 0x18, 0x83, 0xa9, 0x05, 0x90, + 0x89, 0x92, 0x88, 0xc9, 0x60, 0x16, 0x24, 0x88, 0x19, 0x36, 0x9d, 0xe2, 0x53, 0xdd, 0x06, 0x97, + 0x2a, 0xa1, 0xea, 0xd8, 0x8c, 0x4f, 0xd0, 0x70, 0x0d, 0xcc, 0xfa, 0x53, 0x6c, 0x40, 0x1f, 0xac, + 0xd4, 0xdf, 0x2b, 0x60, 0xb5, 0xe1, 0x84, 0xde, 0x18, 0xbb, 0x8a, 0x1f, 0x80, 0x8c, 0x49, 0xfb, + 0x1d, 0x0b, 0xeb, 0xa2, 0xc7, 0x09, 0x52, 0xd1, 0xf5, 0x89, 0xea, 0x96, 0xec, 0x8e, 0x6f, 0x21, + 0x62, 0x8d, 0xc4, 0x69, 0xc0, 0x17, 0xd6, 0x22, 0x5d, 0x07, 0xb6, 0x41, 0xca, 0xa4, 0xc7, 0x8e, + 0xcc, 0x2c, 0xd3, 0x2f, 0x28, 0x37, 0x92, 0xa4, 0xfe, 0x5d, 0x01, 0x2b, 0x67, 0x50, 0xc0, 0x1f, + 0x81, 0x45, 0x7f, 0x96, 0x8a, 0x42, 0x4e, 0xd6, 0xc3, 0xdd, 0xf7, 0x44, 0xf4, 0xfe, 0xed, 0x71, + 0xe1, 0xb2, 0x5f, 0x2a, 0x98, 0x79, 0x54, 0x22, 0xb4, 0x6c, 0x23, 0xde, 0x2b, 0xdd, 0xc1, 0x5d, + 0x64, 0x0c, 0x6b, 0xd8, 0xf8, 0xcb, 0x17, 0xd7, 0x40, 0x50, 0x80, 0x6a, 0xd8, 0xf0, 0x4b, 0xc7, + 0x82, 0x94, 0x16, 0x45, 0xe6, 0x1e, 0x58, 0xf8, 0x18, 0x11, 0x4b, 0x0f, 0x7f, 0xe4, 0x08, 0x2c, + 0x9a, 0x28, 0x6d, 0xcc, 0x0b, 0xce, 0x10, 0x2e, 0x3c, 0x91, 0x53, 0xbb, 0xc3, 0x38, 0x75, 0xb0, + 0xf4, 0xd6, 0x94, 0x36, 0x02, 0xbc, 0xfd, 0x07, 0x05, 0x2c, 0x44, 0x5d, 0x5d, 0x0f, 0x31, 0x0c, + 0xf3, 0x60, 0xa3, 0x7a, 0x6f, 0xbf, 0x75, 0xff, 0x6e, 0x5d, 0xd3, 0x9b, 0x7b, 0x95, 0x56, 0x5d, + 0xbf, 0xbf, 0xdf, 0x6a, 0xd6, 0xab, 0x8d, 0x0f, 0x1b, 0xf5, 0x5a, 0x76, 0x0a, 0xbe, 0x0e, 0xd6, + 0x4f, 0xe0, 0xb5, 0xfa, 0xcd, 0x46, 0xab, 0x5d, 0xd7, 0xea, 0xb5, 0xac, 0x72, 0x06, 0x7b, 0x63, + 0xbf, 0xd1, 0x6e, 0x54, 0xee, 0x34, 0x1e, 0xd4, 0x6b, 0xd9, 0x69, 0x78, 0x19, 0x5c, 0x3a, 0x81, + 0xbf, 0x53, 0xb9, 0xbf, 0x5f, 0xdd, 0xab, 0xd7, 0xb2, 0x09, 0xb8, 0x01, 0xd6, 0x4e, 0x20, 0x5b, + 0xed, 0x7b, 0xcd, 0x66, 0xbd, 0x96, 0x4d, 0x9e, 0x81, 0xab, 0xd5, 0xef, 0xd4, 0xdb, 0xf5, 0x5a, + 0x76, 0x66, 0x23, 0xf9, 0xc9, 0xaf, 0xf2, 0x53, 0xbb, 0x1f, 0x7d, 0xf5, 0x24, 0xaf, 0x7c, 0xfd, + 0x24, 0xaf, 0xfc, 0xe3, 0x49, 0x5e, 0xf9, 0xf4, 0x69, 0x7e, 0xea, 0xeb, 0xa7, 0xf9, 0xa9, 0xbf, + 0x3e, 0xcd, 0x4f, 0x3d, 0x78, 0xff, 0x74, 0x25, 0x1f, 0x79, 0xc6, 0xb5, 0xe8, 0xa7, 0x9b, 0xc1, + 0x7b, 0xe5, 0x47, 0xe3, 0xbf, 0x9b, 0xc9, 0x22, 0xdf, 0x99, 0x95, 0xa7, 0xfd, 0xee, 0xff, 0x02, + 0x00, 0x00, 0xff, 0xff, 0xc8, 0x29, 0xb8, 0xcb, 0x68, 0x1b, 0x00, 0x00, } func (m *ConsumerAdditionProposal) Marshal() (dAtA []byte, err error) { @@ -3597,6 +3607,16 @@ func (m *SlashJailParameters) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.Tombstone { + i-- + if m.Tombstone { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x18 + } n24, err24 := github_com_cosmos_gogoproto_types.StdDurationMarshalTo(m.JailDuration, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.JailDuration):]) if err24 != nil { return 0, err24 @@ -4262,6 +4282,9 @@ func (m *SlashJailParameters) Size() (n int) { n += 1 + l + sovProvider(uint64(l)) l = github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.JailDuration) n += 1 + l + sovProvider(uint64(l)) + if m.Tombstone { + n += 2 + } return n } @@ -8715,6 +8738,26 @@ func (m *SlashJailParameters) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Tombstone", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowProvider + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Tombstone = bool(v != 0) default: iNdEx = preIndex skippy, err := skipProvider(dAtA[iNdEx:]) From 66cc8720368e4b042227e3cafdd750a04a9614be Mon Sep 17 00:00:00 2001 From: stana-ethernal Date: Thu, 12 Dec 2024 15:28:31 +0100 Subject: [PATCH 2/4] test fix --- testutil/keeper/unit_test_helpers.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testutil/keeper/unit_test_helpers.go b/testutil/keeper/unit_test_helpers.go index 6da3384b23..35ecf47937 100644 --- a/testutil/keeper/unit_test_helpers.go +++ b/testutil/keeper/unit_test_helpers.go @@ -306,10 +306,12 @@ func GetTestInfractionParameters() providertypes.InfractionParameters { DoubleSign: &providertypes.SlashJailParameters{ JailDuration: 1200 * time.Second, SlashFraction: math.LegacyNewDecWithPrec(5, 1), // 0.5 + Tombstone: true, }, Downtime: &providertypes.SlashJailParameters{ JailDuration: 600 * time.Second, SlashFraction: math.LegacyNewDec(0), + Tombstone: false, }, } } From dbd34b729cc20a78b023260104e1d2e8a7d06d0c Mon Sep 17 00:00:00 2001 From: stana-ethernal Date: Thu, 12 Dec 2024 16:05:22 +0100 Subject: [PATCH 3/4] make the tombstone field irrelevant for downtime infractions --- x/ccv/provider/keeper/relay.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/x/ccv/provider/keeper/relay.go b/x/ccv/provider/keeper/relay.go index c8b10003b9..33a7e05e4c 100644 --- a/x/ccv/provider/keeper/relay.go +++ b/x/ccv/provider/keeper/relay.go @@ -507,15 +507,6 @@ func (k Keeper) HandleSlashPacket(ctx sdk.Context, consumerId string, data ccv.S k.Logger(ctx).Error("failed to set jail duration", "err", err.Error()) return } - - // tombstone validator - if infractionParams.Downtime.Tombstone { - if err = k.slashingKeeper.Tombstone(ctx, providerConsAddr.ToSdkConsAddr()); err != nil { - k.Logger(ctx).Error("failed to tombstone validator", "err", err.Error()) - return - } - k.Logger(ctx).Info("HandleSlashPacket - validator tombstoned", "provider cons addr", providerConsAddr.String()) - } } ctx.EventManager().EmitEvent( From 8e9dfcd7137f10f1c88a312077a935e658008d95 Mon Sep 17 00:00:00 2001 From: stana-ethernal Date: Fri, 13 Dec 2024 14:22:52 +0100 Subject: [PATCH 4/4] add log when setting tomstone to true for downtime --- x/ccv/provider/keeper/infraction_parameters.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/x/ccv/provider/keeper/infraction_parameters.go b/x/ccv/provider/keeper/infraction_parameters.go index 5f4f2fda43..76d5ee4d9b 100644 --- a/x/ccv/provider/keeper/infraction_parameters.go +++ b/x/ccv/provider/keeper/infraction_parameters.go @@ -33,6 +33,10 @@ func (k Keeper) SetInfractionParameters(ctx sdk.Context, consumerId string, para return fmt.Errorf("failed to marshal infraction parameters (%+v) for consumer id (%s): %w", parameters, consumerId, err) } + if parameters.Downtime.Tombstone { + k.Logger(ctx).Info("tombstone field is ignored for downtime infractions; setting it to true for consumer ID (%s) will have no effect", consumerId) + } + store.Set(types.ConsumerIdToInfractionParametersKey(consumerId), bz) return nil