diff --git a/js/protos/guard/guard_pb.js b/js/protos/guard/guard_pb.js index 7a470c4..d5ce094 100644 --- a/js/protos/guard/guard_pb.js +++ b/js/protos/guard/guard_pb.js @@ -59,6 +59,7 @@ goog.exportSymbol('proto.guard.ResponseRepairContracts.RepairStat', null, global goog.exportSymbol('proto.guard.Result', null, global); goog.exportSymbol('proto.guard.ShardChallengeQuestions', null, global); goog.exportSymbol('proto.guard.ShardChallengeResult', null, global); +goog.exportSymbol('proto.guard.TotalStateSummary', null, global); /** * Generated by JsPbCodeGenerator. * @param {Array=} opt_data Optional initial data array, typically from a @@ -122,6 +123,27 @@ if (goog.DEBUG && !COMPILED) { */ proto.guard.HostSummary.displayName = 'proto.guard.HostSummary'; } +/** + * Generated by JsPbCodeGenerator. + * @param {Array=} opt_data Optional initial data array, typically from a + * server response, or constructed directly in Javascript. The array is used + * in place and becomes part of the constructed object. It is not cloned. + * If no data is provided, the constructed object will be empty, but still + * valid. + * @extends {jspb.Message} + * @constructor + */ +proto.guard.TotalStateSummary = function(opt_data) { + jspb.Message.initialize(this, opt_data, 0, -1, null, null); +}; +goog.inherits(proto.guard.TotalStateSummary, jspb.Message); +if (goog.DEBUG && !COMPILED) { + /** + * @public + * @override + */ + proto.guard.TotalStateSummary.displayName = 'proto.guard.TotalStateSummary'; +} /** * Generated by JsPbCodeGenerator. * @param {Array=} opt_data Optional initial data array, typically from a @@ -1964,6 +1986,442 @@ proto.guard.HostSummary.prototype.clearStatusList = function() { +if (jspb.Message.GENERATE_TO_OBJECT) { +/** + * Creates an object representation of this proto. + * Field names that are reserved in JavaScript and will be renamed to pb_name. + * Optional fields that are not set will be set to undefined. + * To access a reserved field use, foo.pb_, eg, foo.pb_default. + * For the list of reserved names please see: + * net/proto2/compiler/js/internal/generator.cc#kKeyword. + * @param {boolean=} opt_includeInstance Deprecated. whether to include the + * JSPB instance for transitional soy proto support: + * http://goto/soy-param-migration + * @return {!Object} + */ +proto.guard.TotalStateSummary.prototype.toObject = function(opt_includeInstance) { + return proto.guard.TotalStateSummary.toObject(opt_includeInstance, this); +}; + + +/** + * Static version of the {@see toObject} method. + * @param {boolean|undefined} includeInstance Deprecated. Whether to include + * the JSPB instance for transitional soy proto support: + * http://goto/soy-param-migration + * @param {!proto.guard.TotalStateSummary} msg The msg instance to transform. + * @return {!Object} + * @suppress {unusedLocalVariables} f is only used for nested messages + */ +proto.guard.TotalStateSummary.toObject = function(includeInstance, msg) { + var f, obj = { + queryDate: (f = msg.getQueryDate()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f), + responseTime: (f = msg.getResponseTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f), + preparerPid: jspb.Message.getFieldWithDefault(msg, 3, ""), + signature: msg.getSignature_asB64(), + validContractCount: jspb.Message.getFieldWithDefault(msg, 5, 0), + existedShardSize: jspb.Message.getFieldWithDefault(msg, 6, 0), + invalidContractCount: jspb.Message.getFieldWithDefault(msg, 7, 0), + lostShardSize: jspb.Message.getFieldWithDefault(msg, 8, 0), + totalHostReward: jspb.Message.getFieldWithDefault(msg, 9, 0) + }; + + if (includeInstance) { + obj.$jspbMessageInstance = msg; + } + return obj; +}; +} + + +/** + * Deserializes binary data (in protobuf wire format). + * @param {jspb.ByteSource} bytes The bytes to deserialize. + * @return {!proto.guard.TotalStateSummary} + */ +proto.guard.TotalStateSummary.deserializeBinary = function(bytes) { + var reader = new jspb.BinaryReader(bytes); + var msg = new proto.guard.TotalStateSummary; + return proto.guard.TotalStateSummary.deserializeBinaryFromReader(msg, reader); +}; + + +/** + * Deserializes binary data (in protobuf wire format) from the + * given reader into the given message object. + * @param {!proto.guard.TotalStateSummary} msg The message object to deserialize into. + * @param {!jspb.BinaryReader} reader The BinaryReader to use. + * @return {!proto.guard.TotalStateSummary} + */ +proto.guard.TotalStateSummary.deserializeBinaryFromReader = function(msg, reader) { + while (reader.nextField()) { + if (reader.isEndGroup()) { + break; + } + var field = reader.getFieldNumber(); + switch (field) { + case 1: + var value = new google_protobuf_timestamp_pb.Timestamp; + reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader); + msg.setQueryDate(value); + break; + case 2: + var value = new google_protobuf_timestamp_pb.Timestamp; + reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader); + msg.setResponseTime(value); + break; + case 3: + var value = /** @type {string} */ (reader.readString()); + msg.setPreparerPid(value); + break; + case 4: + var value = /** @type {!Uint8Array} */ (reader.readBytes()); + msg.setSignature(value); + break; + case 5: + var value = /** @type {number} */ (reader.readInt64()); + msg.setValidContractCount(value); + break; + case 6: + var value = /** @type {number} */ (reader.readInt64()); + msg.setExistedShardSize(value); + break; + case 7: + var value = /** @type {number} */ (reader.readInt64()); + msg.setInvalidContractCount(value); + break; + case 8: + var value = /** @type {number} */ (reader.readInt64()); + msg.setLostShardSize(value); + break; + case 9: + var value = /** @type {number} */ (reader.readInt64()); + msg.setTotalHostReward(value); + break; + default: + reader.skipField(); + break; + } + } + return msg; +}; + + +/** + * Serializes the message to binary data (in protobuf wire format). + * @return {!Uint8Array} + */ +proto.guard.TotalStateSummary.prototype.serializeBinary = function() { + var writer = new jspb.BinaryWriter(); + proto.guard.TotalStateSummary.serializeBinaryToWriter(this, writer); + return writer.getResultBuffer(); +}; + + +/** + * Serializes the given message to binary data (in protobuf wire + * format), writing to the given BinaryWriter. + * @param {!proto.guard.TotalStateSummary} message + * @param {!jspb.BinaryWriter} writer + * @suppress {unusedLocalVariables} f is only used for nested messages + */ +proto.guard.TotalStateSummary.serializeBinaryToWriter = function(message, writer) { + var f = undefined; + f = message.getQueryDate(); + if (f != null) { + writer.writeMessage( + 1, + f, + google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter + ); + } + f = message.getResponseTime(); + if (f != null) { + writer.writeMessage( + 2, + f, + google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter + ); + } + f = message.getPreparerPid(); + if (f.length > 0) { + writer.writeString( + 3, + f + ); + } + f = message.getSignature_asU8(); + if (f.length > 0) { + writer.writeBytes( + 4, + f + ); + } + f = message.getValidContractCount(); + if (f !== 0) { + writer.writeInt64( + 5, + f + ); + } + f = message.getExistedShardSize(); + if (f !== 0) { + writer.writeInt64( + 6, + f + ); + } + f = message.getInvalidContractCount(); + if (f !== 0) { + writer.writeInt64( + 7, + f + ); + } + f = message.getLostShardSize(); + if (f !== 0) { + writer.writeInt64( + 8, + f + ); + } + f = message.getTotalHostReward(); + if (f !== 0) { + writer.writeInt64( + 9, + f + ); + } +}; + + +/** + * optional google.protobuf.Timestamp query_date = 1; + * @return {?proto.google.protobuf.Timestamp} + */ +proto.guard.TotalStateSummary.prototype.getQueryDate = function() { + return /** @type{?proto.google.protobuf.Timestamp} */ ( + jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 1)); +}; + + +/** + * @param {?proto.google.protobuf.Timestamp|undefined} value + * @return {!proto.guard.TotalStateSummary} returns this +*/ +proto.guard.TotalStateSummary.prototype.setQueryDate = function(value) { + return jspb.Message.setWrapperField(this, 1, value); +}; + + +/** + * Clears the message field making it undefined. + * @return {!proto.guard.TotalStateSummary} returns this + */ +proto.guard.TotalStateSummary.prototype.clearQueryDate = function() { + return this.setQueryDate(undefined); +}; + + +/** + * Returns whether this field is set. + * @return {boolean} + */ +proto.guard.TotalStateSummary.prototype.hasQueryDate = function() { + return jspb.Message.getField(this, 1) != null; +}; + + +/** + * optional google.protobuf.Timestamp response_time = 2; + * @return {?proto.google.protobuf.Timestamp} + */ +proto.guard.TotalStateSummary.prototype.getResponseTime = function() { + return /** @type{?proto.google.protobuf.Timestamp} */ ( + jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 2)); +}; + + +/** + * @param {?proto.google.protobuf.Timestamp|undefined} value + * @return {!proto.guard.TotalStateSummary} returns this +*/ +proto.guard.TotalStateSummary.prototype.setResponseTime = function(value) { + return jspb.Message.setWrapperField(this, 2, value); +}; + + +/** + * Clears the message field making it undefined. + * @return {!proto.guard.TotalStateSummary} returns this + */ +proto.guard.TotalStateSummary.prototype.clearResponseTime = function() { + return this.setResponseTime(undefined); +}; + + +/** + * Returns whether this field is set. + * @return {boolean} + */ +proto.guard.TotalStateSummary.prototype.hasResponseTime = function() { + return jspb.Message.getField(this, 2) != null; +}; + + +/** + * optional string preparer_pid = 3; + * @return {string} + */ +proto.guard.TotalStateSummary.prototype.getPreparerPid = function() { + return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, "")); +}; + + +/** + * @param {string} value + * @return {!proto.guard.TotalStateSummary} returns this + */ +proto.guard.TotalStateSummary.prototype.setPreparerPid = function(value) { + return jspb.Message.setProto3StringField(this, 3, value); +}; + + +/** + * optional bytes signature = 4; + * @return {!(string|Uint8Array)} + */ +proto.guard.TotalStateSummary.prototype.getSignature = function() { + return /** @type {!(string|Uint8Array)} */ (jspb.Message.getFieldWithDefault(this, 4, "")); +}; + + +/** + * optional bytes signature = 4; + * This is a type-conversion wrapper around `getSignature()` + * @return {string} + */ +proto.guard.TotalStateSummary.prototype.getSignature_asB64 = function() { + return /** @type {string} */ (jspb.Message.bytesAsB64( + this.getSignature())); +}; + + +/** + * optional bytes signature = 4; + * Note that Uint8Array is not supported on all browsers. + * @see http://caniuse.com/Uint8Array + * This is a type-conversion wrapper around `getSignature()` + * @return {!Uint8Array} + */ +proto.guard.TotalStateSummary.prototype.getSignature_asU8 = function() { + return /** @type {!Uint8Array} */ (jspb.Message.bytesAsU8( + this.getSignature())); +}; + + +/** + * @param {!(string|Uint8Array)} value + * @return {!proto.guard.TotalStateSummary} returns this + */ +proto.guard.TotalStateSummary.prototype.setSignature = function(value) { + return jspb.Message.setProto3BytesField(this, 4, value); +}; + + +/** + * optional int64 valid_contract_count = 5; + * @return {number} + */ +proto.guard.TotalStateSummary.prototype.getValidContractCount = function() { + return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 5, 0)); +}; + + +/** + * @param {number} value + * @return {!proto.guard.TotalStateSummary} returns this + */ +proto.guard.TotalStateSummary.prototype.setValidContractCount = function(value) { + return jspb.Message.setProto3IntField(this, 5, value); +}; + + +/** + * optional int64 existed_shard_size = 6; + * @return {number} + */ +proto.guard.TotalStateSummary.prototype.getExistedShardSize = function() { + return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 6, 0)); +}; + + +/** + * @param {number} value + * @return {!proto.guard.TotalStateSummary} returns this + */ +proto.guard.TotalStateSummary.prototype.setExistedShardSize = function(value) { + return jspb.Message.setProto3IntField(this, 6, value); +}; + + +/** + * optional int64 invalid_contract_count = 7; + * @return {number} + */ +proto.guard.TotalStateSummary.prototype.getInvalidContractCount = function() { + return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 7, 0)); +}; + + +/** + * @param {number} value + * @return {!proto.guard.TotalStateSummary} returns this + */ +proto.guard.TotalStateSummary.prototype.setInvalidContractCount = function(value) { + return jspb.Message.setProto3IntField(this, 7, value); +}; + + +/** + * optional int64 lost_shard_size = 8; + * @return {number} + */ +proto.guard.TotalStateSummary.prototype.getLostShardSize = function() { + return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 8, 0)); +}; + + +/** + * @param {number} value + * @return {!proto.guard.TotalStateSummary} returns this + */ +proto.guard.TotalStateSummary.prototype.setLostShardSize = function(value) { + return jspb.Message.setProto3IntField(this, 8, value); +}; + + +/** + * optional int64 total_host_reward = 9; + * @return {number} + */ +proto.guard.TotalStateSummary.prototype.getTotalHostReward = function() { + return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 9, 0)); +}; + + +/** + * @param {number} value + * @return {!proto.guard.TotalStateSummary} returns this + */ +proto.guard.TotalStateSummary.prototype.setTotalHostReward = function(value) { + return jspb.Message.setProto3IntField(this, 9, value); +}; + + + + + if (jspb.Message.GENERATE_TO_OBJECT) { /** * Creates an object representation of this proto. diff --git a/js/protos/node/node_pb.js b/js/protos/node/node_pb.js index 3b36690..f03432b 100644 --- a/js/protos/node/node_pb.js +++ b/js/protos/node/node_pb.js @@ -5927,7 +5927,9 @@ proto.node.BtfsScanTab.toObject = function(includeInstance, msg) { storageLeftWhenContract: jspb.Message.getFloatingPointFieldWithDefault(msg, 16, 0.0), superOnlineMinersCount: jspb.Message.getFieldWithDefault(msg, 17, 0), newOnlineMinersCount: jspb.Message.getFieldWithDefault(msg, 18, 0), - minersAllAmount: jspb.Message.getFieldWithDefault(msg, 19, 0) + minersAllAmount: jspb.Message.getFieldWithDefault(msg, 19, 0), + totalMiners: jspb.Message.getFieldWithDefault(msg, 20, 0), + bigMiners: jspb.Message.getFieldWithDefault(msg, 21, 0) }; if (includeInstance) { @@ -6046,6 +6048,14 @@ proto.node.BtfsScanTab.deserializeBinaryFromReader = function(msg, reader) { var value = /** @type {number} */ (reader.readInt64()); msg.setMinersAllAmount(value); break; + case 20: + var value = /** @type {number} */ (reader.readInt64()); + msg.setTotalMiners(value); + break; + case 21: + var value = /** @type {number} */ (reader.readInt64()); + msg.setBigMiners(value); + break; default: reader.skipField(); break; @@ -6204,6 +6214,20 @@ proto.node.BtfsScanTab.serializeBinaryToWriter = function(message, writer) { f ); } + f = message.getTotalMiners(); + if (f !== 0) { + writer.writeInt64( + 20, + f + ); + } + f = message.getBigMiners(); + if (f !== 0) { + writer.writeInt64( + 21, + f + ); + } }; @@ -6595,6 +6619,42 @@ proto.node.BtfsScanTab.prototype.setMinersAllAmount = function(value) { }; +/** + * optional int64 total_miners = 20; + * @return {number} + */ +proto.node.BtfsScanTab.prototype.getTotalMiners = function() { + return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 20, 0)); +}; + + +/** + * @param {number} value + * @return {!proto.node.BtfsScanTab} returns this + */ +proto.node.BtfsScanTab.prototype.setTotalMiners = function(value) { + return jspb.Message.setProto3IntField(this, 20, value); +}; + + +/** + * optional int64 big_miners = 21; + * @return {number} + */ +proto.node.BtfsScanTab.prototype.getBigMiners = function() { + return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 21, 0)); +}; + + +/** + * @param {number} value + * @return {!proto.node.BtfsScanTab} returns this + */ +proto.node.BtfsScanTab.prototype.setBigMiners = function(value) { + return jspb.Message.setProto3IntField(this, 21, value); +}; + + diff --git a/protos/node/node.pb.go b/protos/node/node.pb.go index caa09bf..b5823d7 100644 --- a/protos/node/node.pb.go +++ b/protos/node/node.pb.go @@ -1698,6 +1698,8 @@ type BtfsScanTab struct { SuperOnlineMinersCount uint32 `protobuf:"varint,17,opt,name=super_online_miners_count,json=superOnlineMinersCount,proto3" json:"super_online_miners_count,omitempty" pg:"super_online_miners_count"` NewOnlineMinersCount uint32 `protobuf:"varint,18,opt,name=new_online_miners_count,json=newOnlineMinersCount,proto3" json:"new_online_miners_count,omitempty" pg:"new_online_miners_count"` MinersAllAmount int64 `protobuf:"varint,19,opt,name=miners_all_amount,json=minersAllAmount,proto3" json:"miners_all_amount,omitempty" pg:"miners_all_amount"` + TotalMiners int64 `protobuf:"varint,20,opt,name=total_miners,json=totalMiners,proto3" json:"total_miners,omitempty" pg:"total_miners"` + BigMiners int64 `protobuf:"varint,21,opt,name=big_miners,json=bigMiners,proto3" json:"big_miners,omitempty" pg:"big_miners"` XXX_NoUnkeyedLiteral struct{} `json:"-" pg:"-"` XXX_unrecognized []byte `json:"-" pg:"-"` XXX_sizecache int32 `json:"-" pg:"-"` @@ -1869,6 +1871,20 @@ func (m *BtfsScanTab) GetMinersAllAmount() int64 { return 0 } +func (m *BtfsScanTab) GetTotalMiners() int64 { + if m != nil { + return m.TotalMiners + } + return 0 +} + +func (m *BtfsScanTab) GetBigMiners() int64 { + if m != nil { + return m.BigMiners + } + return 0 +} + func (*BtfsScanTab) XXX_MessageName() string { return "node.BtfsScanTab" } @@ -2161,213 +2177,214 @@ func init() { proto.RegisterFile("protos/node/node.proto", fileDescriptor_35f8e1 func init() { golang_proto.RegisterFile("protos/node/node.proto", fileDescriptor_35f8e1f5ec2240a2) } var fileDescriptor_35f8e1f5ec2240a2 = []byte{ - // 3281 bytes of a gzipped FileDescriptorProto + // 3308 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x59, 0xcd, 0x6f, 0x23, 0x47, 0x76, 0x37, 0x45, 0x4a, 0x22, 0x1f, 0x29, 0x7e, 0x94, 0x34, 0x12, 0x47, 0xf6, 0x48, 0x13, 0x39, 0xbb, 0x3b, 0x99, 0x1d, 0x73, 0x26, 0xf2, 0x47, 0xd6, 0xe3, 0x0d, 0x1c, 0x89, 0xe2, 0x8e, 0x84, 0xd5, 0x50, 0xda, 0x26, 0x35, 0x46, 0x72, 0x48, 0xa3, 0xd4, 0x5d, 0x22, 0x1b, 0x6a, 0x76, 0x77, 0xba, 0xaa, 0x25, 0xcb, 0xc8, 0x3d, 0x01, 0x82, 0x00, 0x39, 0xe4, 0x90, 0x53, 0x10, 0xe4, 0x90, - 0x43, 0x72, 0x08, 0x90, 0xbf, 0x20, 0xb7, 0xf8, 0xb8, 0x7f, 0x40, 0x30, 0xbb, 0xb1, 0x6f, 0xb9, - 0x65, 0x2e, 0xc9, 0x31, 0x78, 0xaf, 0xaa, 0x9b, 0x4d, 0x49, 0xbb, 0xb0, 0x06, 0xbe, 0x08, 0xaa, - 0xf7, 0x7b, 0xef, 0x75, 0xbd, 0xcf, 0x7a, 0x55, 0x84, 0xd5, 0x28, 0x0e, 0x55, 0x28, 0x9f, 0x06, - 0xa1, 0x2b, 0xe8, 0x4f, 0x87, 0x08, 0xac, 0x84, 0xff, 0xaf, 0x3f, 0x1f, 0x79, 0x6a, 0x9c, 0x9c, - 0x76, 0x9c, 0x70, 0xf2, 0x54, 0xc5, 0x61, 0xf0, 0x41, 0x22, 0x9f, 0x8e, 0xc2, 0x0f, 0x4e, 0xd5, - 0x99, 0xfc, 0xc0, 0x09, 0x27, 0x93, 0x30, 0x78, 0x6a, 0xe4, 0x47, 0x09, 0x8f, 0x5d, 0xfd, 0x57, - 0x6b, 0x58, 0x7f, 0x76, 0x8b, 0x2c, 0x21, 0xa7, 0xc9, 0xd9, 0xd3, 0x51, 0x38, 0x0a, 0x69, 0x41, - 0xff, 0x19, 0x89, 0xcd, 0x51, 0x18, 0x8e, 0x7c, 0x31, 0xe5, 0x52, 0xde, 0x44, 0x48, 0xc5, 0x27, - 0x91, 0x66, 0xd8, 0xfa, 0x8f, 0x02, 0x54, 0x8f, 0xf9, 0xd5, 0x61, 0xc8, 0xdd, 0x83, 0xe0, 0x2c, - 0x64, 0x6b, 0xb0, 0x88, 0xdb, 0xb4, 0x3d, 0xb7, 0x5d, 0x78, 0x58, 0x78, 0x54, 0xb1, 0x16, 0x70, - 0x79, 0xe0, 0xb2, 0x0d, 0xa0, 0xfd, 0xb7, 0xe7, 0x1e, 0x16, 0x1e, 0x55, 0xb7, 0xa1, 0x43, 0x86, - 0xf5, 0x43, 0x57, 0x58, 0x44, 0x67, 0x3f, 0x85, 0x86, 0xeb, 0x49, 0x27, 0xbc, 0x10, 0xf1, 0x95, - 0x8d, 0x14, 0xd9, 0x2e, 0x3e, 0x2c, 0x3e, 0xaa, 0x6e, 0x2f, 0x6b, 0xd6, 0xbd, 0x14, 0x24, 0x99, - 0xba, 0x9b, 0x5f, 0x4a, 0xb6, 0x03, 0x15, 0x9f, 0x4b, 0x65, 0xe3, 0xf6, 0xda, 0x25, 0xfa, 0xc4, - 0x7a, 0x47, 0xef, 0xbd, 0x93, 0xee, 0xbd, 0x33, 0x4c, 0xf7, 0xbe, 0x5b, 0xfe, 0xfa, 0xf5, 0xe6, - 0x3b, 0x7f, 0xf3, 0xab, 0xcd, 0x82, 0x55, 0x46, 0x31, 0x04, 0xb6, 0xfe, 0xb6, 0x00, 0x4b, 0x33, - 0x1f, 0x61, 0xef, 0x01, 0xa8, 0xd0, 0x9e, 0x35, 0xa7, 0xac, 0xc2, 0xbe, 0x36, 0xe8, 0x19, 0xac, - 0x10, 0xe4, 0x84, 0x41, 0x20, 0x1c, 0x65, 0xfb, 0x5c, 0x89, 0xc0, 0xb9, 0x22, 0x03, 0xe7, 0x2d, - 0x86, 0x58, 0x57, 0x43, 0x87, 0x1a, 0x61, 0x1f, 0x42, 0x59, 0xc4, 0xb1, 0xed, 0xa0, 0x1b, 0x8a, - 0x0f, 0x0b, 0x8f, 0xea, 0xdb, 0xed, 0x6b, 0xb6, 0xf5, 0xe2, 0x38, 0x8c, 0xbb, 0x68, 0xe0, 0xa2, - 0x88, 0xe9, 0x9f, 0xad, 0xff, 0x9d, 0x83, 0x5a, 0x86, 0x0f, 0xf9, 0x29, 0x7b, 0x05, 0xa0, 0xf8, - 0xa9, 0x2f, 0xec, 0x80, 0x4f, 0x84, 0xde, 0xd5, 0xee, 0x1f, 0xbc, 0x79, 0xbd, 0xf9, 0x61, 0x34, - 0x7a, 0xbe, 0x45, 0x3b, 0xca, 0x7c, 0xf3, 0x84, 0xfb, 0x1e, 0x97, 0xcf, 0xd5, 0x13, 0xa4, 0xf0, - 0xd8, 0xb5, 0x93, 0xe0, 0x3c, 0x08, 0x2f, 0x03, 0xdb, 0x09, 0xfd, 0x64, 0x12, 0xc8, 0x2d, 0xab, - 0x42, 0xaa, 0xfa, 0x7c, 0x22, 0xf2, 0x91, 0x9b, 0x9b, 0x89, 0xdc, 0x26, 0x54, 0x53, 0x1b, 0x9d, - 0x40, 0xd1, 0xce, 0x97, 0x2c, 0x30, 0xa4, 0x6e, 0xa0, 0x58, 0x07, 0x96, 0xf9, 0xc5, 0xe8, 0x86, - 0x23, 0x4a, 0xe4, 0x88, 0x16, 0xbf, 0x18, 0xfd, 0x16, 0x3f, 0xcc, 0x7f, 0x47, 0x3f, 0xb0, 0x1f, - 0xe5, 0xf3, 0xc3, 0xe7, 0xa7, 0xc2, 0x6f, 0x2f, 0xd0, 0x07, 0xa6, 0xa9, 0x70, 0x88, 0x54, 0xf6, - 0x02, 0x6a, 0x98, 0x05, 0xb6, 0x13, 0x0b, 0xae, 0x84, 0xdb, 0x5e, 0xbc, 0x43, 0x36, 0x54, 0x51, - 0xb2, 0xab, 0x05, 0xb7, 0xfe, 0x67, 0x05, 0x4a, 0x94, 0x07, 0xc3, 0x5b, 0x3c, 0xfe, 0xf1, 0x9b, - 0xd7, 0x9b, 0xbf, 0x9f, 0x79, 0x7c, 0x22, 0x54, 0xec, 0x39, 0xf2, 0xfb, 0xf1, 0xf7, 0xef, 0x40, - 0x0d, 0xab, 0xd9, 0xbe, 0x10, 0xb1, 0xf4, 0xc2, 0x80, 0x1c, 0x5e, 0xb1, 0xaa, 0x48, 0x7b, 0xa5, - 0x49, 0x28, 0x9b, 0x44, 0xd3, 0x64, 0x2f, 0x59, 0x0b, 0x49, 0x84, 0xf6, 0xa0, 0xac, 0x54, 0x61, - 0xcc, 0x47, 0xc2, 0x4e, 0xa4, 0x70, 0xc9, 0xbd, 0x25, 0xab, 0x6a, 0x68, 0x27, 0x52, 0xb8, 0xec, - 0x09, 0xb0, 0x94, 0xe5, 0x02, 0xb7, 0x25, 0x6c, 0x87, 0x47, 0xe4, 0xcb, 0x92, 0xd5, 0x34, 0xc8, - 0x2b, 0x02, 0xba, 0x3c, 0xc2, 0xe0, 0x4f, 0xc4, 0x24, 0x8c, 0xaf, 0xb4, 0xbe, 0x45, 0x62, 0x03, - 0x4d, 0x22, 0x75, 0xf7, 0xa1, 0xec, 0x44, 0x89, 0x46, 0xcb, 0x0f, 0x0b, 0x8f, 0x0a, 0xd6, 0xa2, - 0x13, 0x25, 0x04, 0xad, 0xc2, 0x42, 0x12, 0xf9, 0x21, 0x77, 0xdb, 0x95, 0x74, 0x93, 0xb8, 0x62, - 0xeb, 0x50, 0x76, 0xc3, 0xcb, 0x80, 0x10, 0x20, 0x24, 0x5b, 0xa3, 0x01, 0x2a, 0x54, 0xdc, 0xb7, - 0x8d, 0x64, 0x55, 0x1b, 0x40, 0xb4, 0x13, 0x2d, 0xfe, 0x03, 0xa8, 0x6b, 0x96, 0x4c, 0x49, 0x8d, - 0x98, 0x96, 0x88, 0xba, 0x97, 0x6a, 0xca, 0xd9, 0x19, 0xc5, 0x9e, 0x23, 0x6c, 0x57, 0x70, 0xbf, - 0xbd, 0x34, 0x63, 0xe7, 0x31, 0x02, 0x7b, 0x82, 0xfb, 0x58, 0xcd, 0xa7, 0x3c, 0x70, 0x2f, 0x3d, - 0x57, 0x8d, 0xf3, 0xfc, 0x75, 0xe2, 0x67, 0x19, 0x36, 0x95, 0xf8, 0x14, 0xca, 0x52, 0x28, 0xe5, - 0x05, 0x23, 0xd9, 0x6e, 0x50, 0x8e, 0x2d, 0x4f, 0x9b, 0x5a, 0x67, 0x60, 0x20, 0x9d, 0x5c, 0xbf, - 0x7c, 0x8d, 0xad, 0x26, 0x65, 0x67, 0x1b, 0x00, 0xb1, 0x88, 0x12, 0xc5, 0x15, 0xc6, 0xb7, 0x49, - 0x5e, 0xcb, 0x51, 0xd8, 0xbb, 0x50, 0x39, 0xf5, 0x43, 0xe7, 0x5c, 0xda, 0x49, 0xd4, 0x6e, 0x69, - 0x0f, 0x69, 0xc2, 0x09, 0x45, 0xc4, 0x80, 0x68, 0x7f, 0x9b, 0xe9, 0x88, 0x68, 0x12, 0x1a, 0x8f, - 0xc9, 0x11, 0x4a, 0x5b, 0x5d, 0x45, 0xa2, 0xbd, 0xac, 0x13, 0x2b, 0x94, 0xc3, 0xab, 0x48, 0xa0, - 0x5a, 0x1e, 0x3b, 0x63, 0x0d, 0xad, 0xe8, 0x76, 0x86, 0x04, 0x02, 0x4d, 0x1c, 0xbd, 0xe0, 0x2c, - 0x6c, 0xdf, 0x23, 0x0c, 0xe3, 0x48, 0x3d, 0xfd, 0x47, 0xd0, 0x88, 0x84, 0x88, 0x65, 0x5a, 0xe1, - 0xc2, 0x6d, 0xaf, 0xd1, 0x57, 0xeb, 0x44, 0xee, 0xa6, 0xd4, 0x1b, 0xa5, 0xd7, 0x7e, 0xcb, 0xd2, - 0x63, 0xcb, 0x30, 0x3f, 0xb6, 0x2f, 0xb8, 0xdf, 0xbe, 0x4f, 0x3b, 0x29, 0x8d, 0x5f, 0x71, 0x9f, - 0x3d, 0x86, 0xe2, 0x48, 0x84, 0xed, 0x75, 0x52, 0x5a, 0xcf, 0xf9, 0xfa, 0x85, 0x08, 0x73, 0x6e, - 0x46, 0x26, 0xf6, 0x13, 0x28, 0x9e, 0xf9, 0xa3, 0xf6, 0xbb, 0xc4, 0xfb, 0x5e, 0x8e, 0xb7, 0xf7, - 0x65, 0x24, 0x62, 0x6f, 0x22, 0x02, 0xc5, 0xfd, 0x9f, 0xf9, 0x7c, 0x26, 0x40, 0x28, 0xb2, 0xfe, - 0x9f, 0xf3, 0x50, 0x4e, 0x83, 0xc7, 0x1e, 0x43, 0x6b, 0x36, 0x87, 0xb8, 0x3c, 0xa7, 0x06, 0x50, - 0xb2, 0x1a, 0xf9, 0x14, 0xda, 0x91, 0xe7, 0xd8, 0x05, 0xaf, 0x67, 0x10, 0x72, 0xcf, 0x11, 0x77, - 0x6b, 0x36, 0x81, 0x90, 0xff, 0x11, 0xa4, 0x59, 0x48, 0x85, 0x6c, 0x4f, 0x3c, 0x5d, 0xea, 0x25, - 0xab, 0x6e, 0xe8, 0xe8, 0xa6, 0x97, 0x5e, 0x80, 0xfe, 0x9f, 0x6a, 0xf6, 0xbd, 0x89, 0xa7, 0xa8, - 0xea, 0x0b, 0x56, 0x3d, 0x23, 0x1f, 0x22, 0x95, 0xfd, 0x1e, 0x34, 0x9d, 0xd0, 0xc7, 0xfe, 0x1b, - 0x73, 0xdf, 0x96, 0x8a, 0x9f, 0x0b, 0xd3, 0x01, 0x1a, 0x53, 0xfa, 0x00, 0xc9, 0x6c, 0x1b, 0xee, - 0x5d, 0xaf, 0x8e, 0x33, 0x9e, 0xf8, 0xca, 0x34, 0x82, 0xe5, 0xd9, 0x02, 0x21, 0x88, 0x7d, 0x00, - 0xcc, 0x49, 0xa4, 0x0a, 0x27, 0xde, 0x57, 0xc2, 0x25, 0x31, 0x2f, 0x18, 0x51, 0x4b, 0x28, 0x5b, - 0xad, 0x29, 0x72, 0xac, 0x01, 0xf6, 0x31, 0xcc, 0xc7, 0xa1, 0x2f, 0x64, 0xbb, 0xfc, 0xb0, 0xf8, - 0xa8, 0x9e, 0x8f, 0x98, 0x15, 0xfa, 0x62, 0xb7, 0xf1, 0xcf, 0xbf, 0xda, 0xac, 0x12, 0xc3, 0x13, - 0x1e, 0xc7, 0xfc, 0xca, 0xd2, 0xdc, 0x58, 0x89, 0xb1, 0x88, 0xb8, 0x17, 0x5f, 0xdb, 0x98, 0xee, - 0x21, 0x4c, 0x63, 0x33, 0xfb, 0xfa, 0x04, 0xd6, 0x66, 0x24, 0xa6, 0x5b, 0x31, 0xed, 0xe5, 0x5e, - 0x4e, 0xa8, 0x9b, 0x81, 0xec, 0x39, 0xdc, 0x37, 0x72, 0xb7, 0x98, 0x55, 0x25, 0xb3, 0x8c, 0xe2, - 0xee, 0x0d, 0xe3, 0x3e, 0x81, 0x35, 0x67, 0xcc, 0x7d, 0x5f, 0x04, 0x37, 0x3c, 0xa8, 0xbb, 0xd1, - 0xbd, 0x0c, 0x9e, 0xd9, 0xeb, 0x4f, 0x61, 0xfd, 0xba, 0x5c, 0x6e, 0xbb, 0xba, 0x3b, 0xb5, 0x67, - 0x45, 0x73, 0x3b, 0xfe, 0x23, 0x78, 0x6f, 0x2a, 0x7d, 0xcb, 0xa6, 0xeb, 0xb4, 0xe9, 0xe9, 0x17, - 0x6e, 0xec, 0x7b, 0xfd, 0xcf, 0xa1, 0xf8, 0x42, 0x84, 0xec, 0x7d, 0x58, 0x72, 0xc2, 0x24, 0x50, - 0xf1, 0x95, 0x2d, 0xc7, 0x61, 0xac, 0xcc, 0x74, 0x53, 0x33, 0xc4, 0x01, 0xd2, 0xb0, 0x7f, 0xc7, - 0x62, 0x84, 0x2d, 0xca, 0x1c, 0x50, 0x7a, 0x85, 0xfd, 0xdb, 0xe7, 0xca, 0x53, 0x89, 0x99, 0x63, - 0xe6, 0xac, 0x6c, 0xcd, 0xde, 0x83, 0x8a, 0x1f, 0x06, 0x23, 0x0d, 0x96, 0x08, 0x9c, 0x12, 0xd6, - 0xff, 0x7e, 0x01, 0x5a, 0x37, 0x2a, 0x10, 0x65, 0x78, 0xc0, 0xfd, 0x2b, 0xe5, 0x39, 0x92, 0x36, - 0x52, 0xb6, 0xa6, 0x04, 0xf6, 0x63, 0x68, 0x9d, 0x79, 0xbe, 0xc0, 0x84, 0x14, 0xb6, 0x08, 0xf0, - 0xfc, 0xd4, 0x27, 0x66, 0xd9, 0x6a, 0x66, 0x40, 0x4f, 0xd3, 0xb1, 0xe9, 0x8f, 0x43, 0xa9, 0xa4, - 0x2d, 0xaf, 0x02, 0x27, 0xe3, 0x2e, 0x6a, 0x6e, 0x42, 0x06, 0x57, 0x81, 0x93, 0x72, 0xff, 0x10, - 0x1a, 0x39, 0xee, 0x49, 0x68, 0xb6, 0x5c, 0xb1, 0x96, 0x32, 0xd6, 0x97, 0x38, 0x00, 0x7c, 0x04, - 0xab, 0xbe, 0x77, 0x1a, 0x6d, 0x47, 0xb6, 0x54, 0xb1, 0xe0, 0x13, 0x7b, 0x82, 0x6e, 0x42, 0x87, - 0xcf, 0x93, 0xe6, 0x15, 0x8d, 0x0e, 0x08, 0x7c, 0x69, 0x30, 0xf6, 0xbb, 0x50, 0x47, 0x91, 0xb1, - 0x52, 0x91, 0x1d, 0xc5, 0xe1, 0x97, 0x57, 0x54, 0x5b, 0x65, 0xab, 0x16, 0x6d, 0x47, 0xfb, 0x4a, - 0x45, 0xc7, 0x48, 0x63, 0x0f, 0x00, 0xa2, 0x58, 0x9c, 0x89, 0xd8, 0x56, 0xbe, 0x34, 0xc5, 0x54, - 0xd1, 0x94, 0xa1, 0x2f, 0x19, 0x83, 0xd2, 0x9f, 0x25, 0x9e, 0x43, 0x47, 0x6b, 0xd9, 0xa2, 0xff, - 0x71, 0xdb, 0xb1, 0x98, 0x84, 0x17, 0xc2, 0x0e, 0x03, 0x3b, 0x09, 0x22, 0x2f, 0xa0, 0xe2, 0x28, - 0x5b, 0x4b, 0x9a, 0x7c, 0x14, 0x9c, 0x20, 0x11, 0xdb, 0x81, 0x1c, 0xf3, 0xd8, 0xf5, 0x82, 0x51, - 0xe6, 0x0a, 0x20, 0xc6, 0x46, 0x4a, 0x4f, 0x3d, 0xf1, 0x11, 0xac, 0xa6, 0xed, 0xc0, 0xf1, 0x3d, - 0x11, 0xa8, 0x4c, 0x40, 0xd7, 0xc1, 0x8a, 0x41, 0xbb, 0x04, 0xa6, 0x52, 0xcf, 0x20, 0xa5, 0xdb, - 0xe8, 0xb0, 0x4c, 0xa6, 0x46, 0x32, 0xe9, 0xf1, 0xbb, 0x1f, 0xca, 0x4c, 0xe2, 0x29, 0x2c, 0x4b, - 0x15, 0x73, 0x25, 0x46, 0x9e, 0x83, 0x4e, 0xb9, 0xf0, 0x70, 0x17, 0x94, 0xf7, 0x24, 0x60, 0xa0, - 0xe3, 0x14, 0xc1, 0x0e, 0x9c, 0xc4, 0xd8, 0xcb, 0xf2, 0xd1, 0xd7, 0x69, 0xde, 0x48, 0x62, 0x7f, - 0x90, 0x0f, 0x7e, 0x07, 0x96, 0x5d, 0x4f, 0xd2, 0xa4, 0xc6, 0x13, 0x15, 0xda, 0x49, 0xe4, 0x72, - 0x25, 0xe8, 0x70, 0x2e, 0x5b, 0x2d, 0x03, 0xed, 0x24, 0x2a, 0x3c, 0x21, 0x00, 0x33, 0x6b, 0x14, - 0xf3, 0x68, 0x3c, 0x93, 0x2b, 0x4d, 0x9d, 0x2b, 0x19, 0x90, 0x53, 0x6e, 0x9a, 0xc5, 0x8c, 0xa9, - 0x2d, 0xad, 0x5c, 0x43, 0x79, 0x4b, 0x3f, 0x82, 0xd5, 0x69, 0xa9, 0xce, 0x88, 0x30, 0xed, 0xd1, - 0x0c, 0xcd, 0x49, 0x6d, 0xfd, 0x5b, 0x19, 0xaa, 0x03, 0xed, 0xb6, 0x81, 0xe2, 0x8a, 0x7d, 0x06, - 0x40, 0xb2, 0x52, 0x71, 0xa5, 0x6b, 0xa3, 0xba, 0xbd, 0xaa, 0x1b, 0x69, 0x8e, 0xad, 0x83, 0x2a, - 0x76, 0x4b, 0x78, 0x90, 0x59, 0x15, 0xe4, 0x47, 0x22, 0x5e, 0x8a, 0x6a, 0xb1, 0x08, 0x94, 0x88, - 0x8d, 0xb8, 0xbe, 0x7a, 0xb5, 0x6f, 0x8a, 0x5b, 0xc4, 0x65, 0x14, 0x54, 0xb5, 0x0c, 0xa9, 0x58, - 0xff, 0x75, 0x09, 0x2a, 0xfb, 0x99, 0x42, 0x1a, 0xe8, 0x68, 0xea, 0x2c, 0x50, 0x65, 0x9b, 0x15, - 0x5b, 0x81, 0x79, 0xe9, 0x84, 0xb1, 0xbe, 0xdc, 0xcd, 0x59, 0x7a, 0x81, 0xa3, 0x9c, 0xc6, 0x6d, - 0x0d, 0xea, 0x56, 0x51, 0xd5, 0xb4, 0x01, 0xb1, 0xe0, 0x44, 0x32, 0x4a, 0x71, 0xdd, 0x2d, 0xca, - 0xb8, 0x29, 0x02, 0xdf, 0x87, 0x25, 0x33, 0x02, 0x1b, 0x86, 0x79, 0x62, 0xa8, 0x19, 0xa2, 0x66, - 0xda, 0x84, 0xaa, 0x8c, 0x84, 0x70, 0x0d, 0xcb, 0x02, 0xb1, 0x00, 0x91, 0x34, 0xc3, 0x13, 0x60, - 0x7a, 0x94, 0xb4, 0xf3, 0x7c, 0x8b, 0xc4, 0xd7, 0xd4, 0xc8, 0x60, 0xca, 0xfd, 0x0c, 0x56, 0xd2, - 0xa9, 0x72, 0x86, 0xbf, 0x4c, 0xfc, 0x2c, 0xc5, 0x72, 0x12, 0xef, 0xc3, 0x92, 0xb1, 0xf2, 0x52, - 0x78, 0xa3, 0xb1, 0x3e, 0xa7, 0xe6, 0x2c, 0x63, 0xfa, 0x17, 0x44, 0xc3, 0x22, 0x47, 0x3b, 0x0d, - 0x07, 0xe8, 0xb6, 0xc8, 0x47, 0x29, 0xfc, 0x03, 0xa8, 0xa7, 0x96, 0x1a, 0x96, 0x2a, 0xb1, 0xa4, - 0xf6, 0x1b, 0x36, 0x1c, 0xee, 0x69, 0x4f, 0x86, 0xa9, 0xa6, 0x1d, 0x4a, 0x34, 0xc3, 0xd2, 0x81, - 0xe5, 0x19, 0x6b, 0x0d, 0xe7, 0x12, 0x71, 0xb6, 0x72, 0xe6, 0x1a, 0xfe, 0x6d, 0xb8, 0x77, 0xcd, - 0x5e, 0x23, 0x51, 0x27, 0x89, 0xe5, 0x19, 0x83, 0x8d, 0xcc, 0x0b, 0xa8, 0xd1, 0x5d, 0x5b, 0x97, - 0x97, 0x6b, 0x86, 0xdf, 0xef, 0x38, 0xe5, 0xa1, 0xa4, 0x2e, 0x3f, 0xf7, 0x79, 0xe9, 0x1f, 0xfe, - 0x71, 0xb3, 0xb0, 0xfe, 0xd7, 0x73, 0x50, 0xc2, 0x14, 0xc3, 0xec, 0x0a, 0x03, 0xdf, 0x0b, 0x84, - 0x39, 0x03, 0xcc, 0xea, 0xc6, 0x9d, 0x06, 0x93, 0xac, 0x38, 0x7b, 0xa7, 0xc1, 0x2c, 0x48, 0xdb, - 0x17, 0x8f, 0x28, 0xd3, 0x8a, 0x16, 0xa4, 0x3d, 0x8b, 0x47, 0xf9, 0xcb, 0x80, 0xeb, 0xc9, 0x73, - 0x9b, 0xae, 0x0a, 0x94, 0x71, 0xc5, 0xec, 0x32, 0xb0, 0xe7, 0xc9, 0xf3, 0x21, 0xd2, 0xf3, 0xdd, - 0x90, 0xb8, 0xf9, 0x05, 0xf7, 0x7c, 0x2c, 0x50, 0x4a, 0xc1, 0x62, 0xd6, 0x0d, 0x51, 0x62, 0x27, - 0xc5, 0xd8, 0xe7, 0x30, 0xaf, 0xeb, 0x6c, 0x81, 0x1c, 0xf2, 0xee, 0xed, 0x65, 0x4a, 0x95, 0xb4, - 0x5b, 0x4b, 0x87, 0xce, 0xff, 0xc6, 0x92, 0xd3, 0x72, 0xc6, 0x1f, 0x8f, 0x61, 0x41, 0xd7, 0x23, - 0x9e, 0xb3, 0xb1, 0x90, 0x22, 0xbe, 0x10, 0xd9, 0xeb, 0x43, 0xba, 0xd6, 0xbc, 0xfa, 0xef, 0xd6, - 0xbf, 0x16, 0xa1, 0xd6, 0x0d, 0x03, 0x15, 0x73, 0x87, 0xd4, 0xd3, 0x85, 0xdc, 0x51, 0xde, 0x05, - 0x3d, 0x4e, 0x10, 0xd9, 0x0e, 0x92, 0x09, 0xe9, 0x28, 0x5a, 0x2d, 0x0d, 0xa5, 0x02, 0xfd, 0x64, - 0x82, 0x8d, 0xd0, 0x09, 0x27, 0x91, 0x08, 0x24, 0xdd, 0x3f, 0xec, 0x88, 0x7b, 0xa9, 0x9b, 0x9b, - 0x79, 0xe0, 0x98, 0x7b, 0x2e, 0xfb, 0x14, 0xda, 0x33, 0xcc, 0x61, 0xa2, 0xa4, 0xe2, 0x01, 0xf5, - 0x71, 0xed, 0xf8, 0xb5, 0x3c, 0x7e, 0x34, 0x85, 0xd9, 0x2b, 0x58, 0x39, 0xf3, 0x62, 0xa9, 0xa6, - 0xdb, 0x92, 0x8a, 0xc7, 0xea, 0x4e, 0x0f, 0x36, 0x8c, 0x34, 0xe4, 0xcc, 0x8d, 0x15, 0x3b, 0x86, - 0x16, 0x65, 0x64, 0xa6, 0x56, 0x04, 0xfa, 0xea, 0xfb, 0x5d, 0x95, 0x36, 0x50, 0x3c, 0xd5, 0xd9, - 0x0b, 0x5c, 0xf6, 0x63, 0x28, 0xe1, 0x34, 0x4a, 0xa1, 0xac, 0x6f, 0xaf, 0xe9, 0x50, 0xe6, 0x7d, - 0xdc, 0xc1, 0x19, 0xd6, 0x22, 0xa6, 0xad, 0xc7, 0x50, 0xc2, 0x15, 0x2b, 0x43, 0x69, 0xff, 0x68, - 0x30, 0x6c, 0xbe, 0xc3, 0x00, 0x16, 0xac, 0x5e, 0x7f, 0xd8, 0xb3, 0x9a, 0x05, 0x56, 0x83, 0xb2, - 0xd5, 0x1b, 0xf4, 0xac, 0x57, 0xbd, 0xbd, 0xe6, 0x9c, 0x89, 0xd8, 0x9b, 0x79, 0xa8, 0xa4, 0xda, - 0x24, 0xfb, 0x04, 0x2a, 0xe9, 0xce, 0xb1, 0xc7, 0x17, 0xa7, 0x4d, 0x3a, 0xe3, 0xc9, 0xfe, 0xb3, - 0xa6, 0xac, 0xeb, 0xff, 0x34, 0x0f, 0xe5, 0x94, 0x6e, 0x5e, 0x69, 0xb4, 0xf9, 0xd9, 0x6b, 0x15, - 0xa4, 0xa4, 0x03, 0x17, 0xaf, 0x85, 0x74, 0x94, 0x4c, 0xdf, 0x1b, 0x70, 0x79, 0xe0, 0x62, 0x13, - 0x36, 0xc7, 0x84, 0xe7, 0x9a, 0xc7, 0x86, 0xb2, 0x26, 0x1c, 0xb8, 0xec, 0x63, 0x58, 0xc0, 0xe4, - 0x4c, 0x24, 0x05, 0xa9, 0xbe, 0xfd, 0xa0, 0xa3, 0x1f, 0x14, 0xd3, 0xef, 0xce, 0x38, 0x45, 0x58, - 0x86, 0x99, 0x75, 0x01, 0x28, 0xb4, 0xfa, 0x8d, 0xe2, 0x2e, 0xa1, 0xa8, 0x90, 0x1c, 0x3d, 0x66, - 0x7c, 0x0e, 0x65, 0x11, 0xb8, 0x5a, 0xc5, 0xc2, 0x1d, 0x54, 0x2c, 0x8a, 0xc0, 0x25, 0x05, 0x7d, - 0x68, 0x06, 0xe2, 0x4b, 0x65, 0x0b, 0xe9, 0xc4, 0xe1, 0xa5, 0x56, 0x74, 0x97, 0xe7, 0xa0, 0x3a, - 0x4a, 0xf7, 0x48, 0x98, 0xf4, 0xdd, 0x5a, 0x27, 0xe5, 0xb7, 0xa8, 0x93, 0xca, 0x6f, 0xaf, 0x93, - 0x07, 0x00, 0x49, 0xe0, 0x29, 0x7d, 0x3f, 0xa0, 0xe3, 0xa2, 0x68, 0x55, 0x90, 0x42, 0xf7, 0x01, - 0x84, 0x69, 0x7e, 0xb3, 0xa5, 0xf7, 0x95, 0xa0, 0xa3, 0xa2, 0x68, 0x55, 0x88, 0x32, 0xf0, 0xbe, - 0xca, 0xc1, 0x63, 0x2e, 0xc7, 0x74, 0x48, 0x54, 0x0c, 0xbc, 0xcf, 0xe5, 0x18, 0xc3, 0x8d, 0x63, - 0xb3, 0x46, 0x97, 0x74, 0xb8, 0x91, 0x40, 0x60, 0x1f, 0x9a, 0x54, 0x49, 0x93, 0xd0, 0xf5, 0xce, - 0xae, 0xb4, 0xc7, 0xea, 0x77, 0xf1, 0x18, 0x4a, 0xbf, 0x24, 0x61, 0x84, 0x67, 0xda, 0xd4, 0xbf, - 0x54, 0xa0, 0xba, 0xab, 0xce, 0xe4, 0xc0, 0xe1, 0xc1, 0x90, 0x9f, 0xb2, 0x5f, 0xdc, 0xf2, 0xac, - 0xb6, 0xfd, 0xe6, 0xf5, 0x66, 0x27, 0x1a, 0x3d, 0xdf, 0xa2, 0x17, 0x30, 0xe9, 0xf0, 0xe0, 0x4e, - 0x6f, 0x6a, 0x1d, 0x58, 0xbe, 0xf6, 0xb6, 0xe5, 0x8b, 0x33, 0x45, 0xf9, 0x5e, 0xb0, 0x5a, 0x33, - 0x8f, 0x5b, 0x87, 0xe2, 0x4c, 0xe1, 0x71, 0xaf, 0x0f, 0x19, 0xbc, 0x7d, 0x8b, 0x58, 0x62, 0x9b, - 0x3c, 0x15, 0xb1, 0x79, 0xe3, 0x64, 0x1a, 0x7b, 0x49, 0x50, 0x9f, 0x10, 0xf6, 0x05, 0xb0, 0xf4, - 0xe2, 0xe4, 0x7a, 0x52, 0xc5, 0xde, 0x69, 0xa2, 0x70, 0x74, 0xc1, 0xa2, 0x7d, 0xa4, 0x8b, 0x36, - 0x67, 0x63, 0xa7, 0xab, 0x79, 0xf7, 0x32, 0xd6, 0x1e, 0x2e, 0xad, 0x96, 0x73, 0x9d, 0xce, 0x7e, - 0x01, 0x4d, 0x1a, 0x35, 0xf2, 0x6a, 0xe7, 0x49, 0xed, 0x0f, 0x6f, 0xaa, 0xa5, 0xd1, 0xe3, 0xba, - 0xd2, 0x86, 0x9c, 0xa5, 0xde, 0x78, 0x8e, 0x59, 0x78, 0xdb, 0xe7, 0x98, 0xdc, 0x9c, 0xcf, 0xfd, - 0x58, 0x70, 0x37, 0xf7, 0x1a, 0x58, 0xc8, 0xe6, 0xfc, 0x1d, 0x0d, 0xd1, 0x81, 0xbc, 0x02, 0xf3, - 0x3a, 0x79, 0xf5, 0x93, 0xa0, 0x5e, 0xe0, 0x86, 0xf0, 0xe4, 0xcf, 0x36, 0x54, 0xb9, 0xcb, 0x86, - 0x50, 0x32, 0xdd, 0xd0, 0x7d, 0x28, 0x07, 0xe2, 0xd2, 0x8e, 0x79, 0x70, 0x4e, 0xe5, 0x51, 0xb1, - 0x16, 0x03, 0x71, 0x69, 0xf1, 0xe0, 0x1c, 0xb3, 0x5f, 0xbf, 0x0e, 0x12, 0x58, 0xd5, 0xd9, 0x4f, - 0x14, 0x82, 0x9f, 0x60, 0xfc, 0x4c, 0x9b, 0xe4, 0xbe, 0x6f, 0x53, 0x20, 0xa8, 0x48, 0x96, 0xb0, - 0x86, 0x35, 0xb2, 0xe3, 0xfb, 0x14, 0x38, 0xcc, 0xa7, 0x8c, 0xfb, 0x8c, 0x7b, 0x29, 0xfb, 0x12, - 0xb1, 0xb7, 0x52, 0xe8, 0x67, 0xdc, 0x33, 0xfc, 0xcf, 0x60, 0x65, 0x46, 0xbb, 0xf1, 0x0c, 0x95, - 0x50, 0xc1, 0x62, 0x39, 0xfd, 0x66, 0x2c, 0xc0, 0x01, 0x6c, 0xf6, 0x0b, 0xa9, 0x48, 0x83, 0x44, - 0x96, 0xf3, 0xdf, 0x48, 0x65, 0x3e, 0x83, 0xf5, 0x34, 0x1c, 0x98, 0xde, 0xf6, 0xe5, 0x58, 0x04, - 0xd9, 0xd9, 0x67, 0x9e, 0x13, 0xd7, 0x0c, 0x07, 0xa6, 0xf9, 0x17, 0x63, 0x11, 0x64, 0xe7, 0xc4, - 0xa7, 0x70, 0x5f, 0x26, 0x91, 0x88, 0xed, 0xd9, 0xc4, 0xd7, 0x86, 0xb5, 0xc8, 0xb0, 0x55, 0x62, - 0x38, 0xca, 0x25, 0xbf, 0xb6, 0xee, 0x63, 0x58, 0x43, 0xaf, 0xdf, 0x26, 0xc8, 0x48, 0x70, 0x25, - 0x10, 0x97, 0x37, 0xc5, 0x1e, 0x43, 0xcb, 0xf0, 0xa2, 0x4b, 0x38, 0xdd, 0x9d, 0xe9, 0x65, 0xb2, - 0x68, 0x35, 0x34, 0xb0, 0xe3, 0xfb, 0x3b, 0x44, 0x5e, 0xdf, 0x83, 0xd5, 0xdb, 0x4b, 0x86, 0x35, - 0xa1, 0x78, 0x2e, 0xae, 0xcc, 0xb9, 0x86, 0xff, 0x62, 0x8e, 0x5d, 0x70, 0x3f, 0x11, 0xe6, 0x17, - 0x17, 0xbd, 0x78, 0x3e, 0xf7, 0x93, 0xc2, 0xfa, 0x2e, 0xac, 0xdc, 0x56, 0x21, 0x77, 0xd1, 0xb1, - 0xf5, 0x17, 0x45, 0x68, 0x90, 0x92, 0x7d, 0x0f, 0x5d, 0x49, 0x3f, 0xbd, 0x9c, 0xdc, 0xd2, 0xb1, - 0x3e, 0x79, 0xf3, 0x7a, 0x73, 0x1b, 0x3b, 0x96, 0xae, 0xde, 0xb1, 0xe6, 0xfe, 0x7e, 0x7e, 0x09, - 0xb8, 0xfd, 0xa9, 0xbe, 0xf8, 0x1b, 0x9e, 0xea, 0x7f, 0x43, 0xf3, 0xd3, 0x3f, 0x10, 0xdc, 0xd2, - 0xfc, 0xb2, 0x5b, 0xdb, 0x3c, 0x05, 0xcf, 0xdc, 0xda, 0xae, 0xd7, 0xe8, 0xc2, 0xdb, 0xd6, 0xe8, - 0xf7, 0xf6, 0x3b, 0xcc, 0x5f, 0x95, 0x60, 0x6d, 0xc7, 0x8b, 0xdd, 0x38, 0x8c, 0x2c, 0x71, 0x89, - 0xc7, 0xd8, 0x34, 0x22, 0x7f, 0x7a, 0x4b, 0x44, 0x3e, 0x7f, 0xf3, 0x7a, 0xf3, 0x33, 0x8c, 0x08, - 0xd7, 0x42, 0x76, 0x4c, 0x52, 0x6f, 0x15, 0x1a, 0x06, 0x25, 0x7a, 0x2d, 0x9f, 0x23, 0x17, 0xd1, - 0xff, 0xf9, 0x70, 0x15, 0x67, 0xc2, 0xf5, 0x00, 0xc0, 0x93, 0xb6, 0x4c, 0x64, 0x24, 0x1c, 0x65, - 0x9e, 0x86, 0x2a, 0x9e, 0x1c, 0x68, 0x02, 0xde, 0x6f, 0xcc, 0xe5, 0x6a, 0x81, 0xb4, 0x99, 0x15, - 0xc5, 0x81, 0x9e, 0x6a, 0x17, 0x4d, 0x1c, 0xe8, 0x81, 0xf6, 0x7a, 0x1c, 0xca, 0xdf, 0x57, 0x1c, - 0x2a, 0x6f, 0x7b, 0x0a, 0x3c, 0x00, 0xa0, 0xc1, 0x41, 0x57, 0x3c, 0xd0, 0x66, 0x69, 0x94, 0xd0, - 0x65, 0x9e, 0xce, 0x15, 0xd9, 0x50, 0x52, 0xd2, 0x73, 0x05, 0xcd, 0x24, 0xef, 0xc3, 0x92, 0x1c, - 0x87, 0x89, 0xef, 0x9a, 0x60, 0x98, 0x47, 0xd2, 0x9a, 0x26, 0xea, 0xb0, 0x22, 0x13, 0x77, 0x54, - 0x82, 0xbd, 0x5b, 0x33, 0xe9, 0xe7, 0xd0, 0x9a, 0x26, 0x6a, 0xa6, 0xc7, 0x7f, 0x59, 0x80, 0x72, - 0xfa, 0x86, 0x9c, 0x9b, 0xb3, 0xdf, 0xc9, 0xa6, 0x6f, 0x33, 0x71, 0x1f, 0xef, 0x1c, 0x58, 0x3d, - 0xab, 0x39, 0xc7, 0xea, 0x00, 0xdd, 0xfd, 0x9d, 0xc3, 0xc3, 0x5e, 0xff, 0x45, 0xcf, 0x6a, 0x16, - 0xd9, 0x32, 0x34, 0xfa, 0xbd, 0xe1, 0x17, 0x47, 0xd6, 0xcf, 0xed, 0xee, 0x7e, 0xaf, 0xfb, 0xf3, - 0x9e, 0xd5, 0x2c, 0xb1, 0x55, 0x60, 0x56, 0xef, 0xf8, 0x64, 0xb8, 0x33, 0x3c, 0x38, 0xea, 0x67, - 0xf4, 0x79, 0xd6, 0x84, 0x5a, 0x77, 0xaf, 0x6f, 0x1f, 0x5b, 0x47, 0xaf, 0x0e, 0xf6, 0x7a, 0x56, - 0x73, 0x81, 0x55, 0x60, 0xfe, 0x68, 0xb8, 0xdf, 0xb3, 0x9a, 0x2b, 0x8f, 0xc7, 0xc0, 0x6e, 0xfe, - 0x62, 0xc9, 0xaa, 0xb0, 0x38, 0x38, 0xe9, 0x76, 0x7b, 0x83, 0x41, 0xf3, 0x1d, 0xd6, 0x80, 0xea, - 0x49, 0xbf, 0x7b, 0xd4, 0xef, 0xf7, 0xba, 0xc3, 0xde, 0x5e, 0xb3, 0x80, 0xe8, 0xf0, 0xe0, 0x65, - 0xef, 0xe8, 0x64, 0xd8, 0x9c, 0x63, 0xf7, 0xa0, 0xb5, 0xb3, 0x3b, 0x38, 0x3a, 0x3c, 0x19, 0xf6, - 0x0e, 0xff, 0xd8, 0x3e, 0xe9, 0x1f, 0x1d, 0xf7, 0xfa, 0xcd, 0x22, 0x7e, 0x94, 0x3e, 0x61, 0x5b, - 0xbd, 0x9d, 0xc1, 0x51, 0xbf, 0x09, 0xbb, 0x7f, 0xf8, 0x7f, 0xff, 0xb5, 0x51, 0xf8, 0xfa, 0x9b, - 0x8d, 0xc2, 0x2f, 0xbf, 0xd9, 0x28, 0xfc, 0xfa, 0x9b, 0x8d, 0xc2, 0xdf, 0x7d, 0xbb, 0x51, 0xf8, - 0xf7, 0x6f, 0x37, 0x0a, 0x5f, 0x7f, 0xbb, 0x51, 0x80, 0x9a, 0x17, 0x76, 0x70, 0x5e, 0xa2, 0x39, - 0x61, 0xb7, 0x82, 0xde, 0x39, 0xc6, 0xa8, 0x1e, 0x17, 0xfe, 0x84, 0x7e, 0x5b, 0x3f, 0x5d, 0xa0, - 0x20, 0x7f, 0xf8, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0x9d, 0x4f, 0x2f, 0x65, 0x5a, 0x20, 0x00, - 0x00, + 0x43, 0x2e, 0x01, 0xf2, 0x17, 0xe4, 0x16, 0x1f, 0xf7, 0x0f, 0x08, 0x66, 0x37, 0xf6, 0x2d, 0x40, + 0x0e, 0x99, 0x4b, 0x72, 0x0c, 0xde, 0xab, 0xea, 0x66, 0x53, 0xd2, 0x2e, 0xac, 0x81, 0x2f, 0x82, + 0xea, 0xfd, 0xde, 0x7b, 0x5d, 0xf5, 0xbe, 0xea, 0xd5, 0x23, 0xac, 0x46, 0x71, 0xa8, 0x42, 0xf9, + 0x34, 0x08, 0x5d, 0x41, 0x7f, 0x3a, 0x44, 0x60, 0x25, 0xfc, 0x7f, 0xfd, 0xf9, 0xc8, 0x53, 0xe3, + 0xe4, 0xb4, 0xe3, 0x84, 0x93, 0xa7, 0x2a, 0x0e, 0x83, 0x0f, 0x12, 0xf9, 0x74, 0x14, 0x7e, 0x70, + 0xaa, 0xce, 0xe4, 0x07, 0x4e, 0x38, 0x99, 0x84, 0xc1, 0x53, 0x23, 0x3f, 0x4a, 0x78, 0xec, 0xea, + 0xbf, 0x5a, 0xc3, 0xfa, 0xb3, 0x5b, 0x64, 0x09, 0x39, 0x4d, 0xce, 0x9e, 0x8e, 0xc2, 0x51, 0x48, + 0x0b, 0xfa, 0xcf, 0x48, 0x6c, 0x8e, 0xc2, 0x70, 0xe4, 0x8b, 0x29, 0x97, 0xf2, 0x26, 0x42, 0x2a, + 0x3e, 0x89, 0x34, 0xc3, 0xd6, 0xbf, 0x17, 0xa0, 0x7a, 0xcc, 0xaf, 0x0e, 0x43, 0xee, 0x1e, 0x04, + 0x67, 0x21, 0x5b, 0x83, 0x45, 0xdc, 0xa6, 0xed, 0xb9, 0xed, 0xc2, 0xc3, 0xc2, 0xa3, 0x8a, 0xb5, + 0x80, 0xcb, 0x03, 0x97, 0x6d, 0x00, 0xed, 0xbf, 0x3d, 0xf7, 0xb0, 0xf0, 0xa8, 0xba, 0x0d, 0x1d, + 0x3a, 0x58, 0x3f, 0x74, 0x85, 0x45, 0x74, 0xf6, 0x53, 0x68, 0xb8, 0x9e, 0x74, 0xc2, 0x0b, 0x11, + 0x5f, 0xd9, 0x48, 0x91, 0xed, 0xe2, 0xc3, 0xe2, 0xa3, 0xea, 0xf6, 0xb2, 0x66, 0xdd, 0x4b, 0x41, + 0x92, 0xa9, 0xbb, 0xf9, 0xa5, 0x64, 0x3b, 0x50, 0xf1, 0xb9, 0x54, 0x36, 0x6e, 0xaf, 0x5d, 0xa2, + 0x4f, 0xac, 0x77, 0xf4, 0xde, 0x3b, 0xe9, 0xde, 0x3b, 0xc3, 0x74, 0xef, 0xbb, 0xe5, 0xaf, 0x5f, + 0x6f, 0xbe, 0xf3, 0x37, 0xbf, 0xda, 0x2c, 0x58, 0x65, 0x14, 0x43, 0x60, 0xeb, 0x6f, 0x0b, 0xb0, + 0x34, 0xf3, 0x11, 0xf6, 0x1e, 0x80, 0x0a, 0xed, 0xd9, 0xe3, 0x94, 0x55, 0xd8, 0xd7, 0x07, 0x7a, + 0x06, 0x2b, 0x04, 0x39, 0x61, 0x10, 0x08, 0x47, 0xd9, 0x3e, 0x57, 0x22, 0x70, 0xae, 0xe8, 0x80, + 0xf3, 0x16, 0x43, 0xac, 0xab, 0xa1, 0x43, 0x8d, 0xb0, 0x0f, 0xa1, 0x2c, 0xe2, 0xd8, 0x76, 0xd0, + 0x0c, 0xc5, 0x87, 0x85, 0x47, 0xf5, 0xed, 0xf6, 0xb5, 0xb3, 0xf5, 0xe2, 0x38, 0x8c, 0xbb, 0x78, + 0xc0, 0x45, 0x11, 0xd3, 0x3f, 0x5b, 0xff, 0x3b, 0x07, 0xb5, 0x0c, 0x1f, 0xf2, 0x53, 0xf6, 0x0a, + 0x40, 0xf1, 0x53, 0x5f, 0xd8, 0x01, 0x9f, 0x08, 0xbd, 0xab, 0xdd, 0x3f, 0x78, 0xf3, 0x7a, 0xf3, + 0xc3, 0x68, 0xf4, 0x7c, 0x8b, 0x76, 0x94, 0xd9, 0xe6, 0x09, 0xf7, 0x3d, 0x2e, 0x9f, 0xab, 0x27, + 0x48, 0xe1, 0xb1, 0x6b, 0x27, 0xc1, 0x79, 0x10, 0x5e, 0x06, 0xb6, 0x13, 0xfa, 0xc9, 0x24, 0x90, + 0x5b, 0x56, 0x85, 0x54, 0xf5, 0xf9, 0x44, 0xe4, 0x3d, 0x37, 0x37, 0xe3, 0xb9, 0x4d, 0xa8, 0xa6, + 0x67, 0x74, 0x02, 0x45, 0x3b, 0x5f, 0xb2, 0xc0, 0x90, 0xba, 0x81, 0x62, 0x1d, 0x58, 0xe6, 0x17, + 0xa3, 0x1b, 0x86, 0x28, 0x91, 0x21, 0x5a, 0xfc, 0x62, 0xf4, 0x5b, 0xec, 0x30, 0xff, 0x1d, 0xed, + 0xc0, 0x7e, 0x94, 0x8f, 0x0f, 0x9f, 0x9f, 0x0a, 0xbf, 0xbd, 0x40, 0x1f, 0x98, 0x86, 0xc2, 0x21, + 0x52, 0xd9, 0x0b, 0xa8, 0x61, 0x14, 0xd8, 0x4e, 0x2c, 0xb8, 0x12, 0x6e, 0x7b, 0xf1, 0x0e, 0xd1, + 0x50, 0x45, 0xc9, 0xae, 0x16, 0xdc, 0xfa, 0x9f, 0x15, 0x28, 0x51, 0x1c, 0x0c, 0x6f, 0xb1, 0xf8, + 0xc7, 0x6f, 0x5e, 0x6f, 0xfe, 0x7e, 0x66, 0xf1, 0x89, 0x50, 0xb1, 0xe7, 0xc8, 0xef, 0xc7, 0xde, + 0xbf, 0x03, 0x35, 0xcc, 0x66, 0xfb, 0x42, 0xc4, 0xd2, 0x0b, 0x03, 0x32, 0x78, 0xc5, 0xaa, 0x22, + 0xed, 0x95, 0x26, 0xa1, 0x6c, 0x12, 0x4d, 0x83, 0xbd, 0x64, 0x2d, 0x24, 0x11, 0x9e, 0x07, 0x65, + 0xa5, 0x0a, 0x63, 0x3e, 0x12, 0x76, 0x22, 0x85, 0x4b, 0xe6, 0x2d, 0x59, 0x55, 0x43, 0x3b, 0x91, + 0xc2, 0x65, 0x4f, 0x80, 0xa5, 0x2c, 0x17, 0xb8, 0x2d, 0x61, 0x3b, 0x3c, 0x22, 0x5b, 0x96, 0xac, + 0xa6, 0x41, 0x5e, 0x11, 0xd0, 0xe5, 0x11, 0x3a, 0x7f, 0x22, 0x26, 0x61, 0x7c, 0xa5, 0xf5, 0x2d, + 0x12, 0x1b, 0x68, 0x12, 0xa9, 0xbb, 0x0f, 0x65, 0x27, 0x4a, 0x34, 0x5a, 0x7e, 0x58, 0x78, 0x54, + 0xb0, 0x16, 0x9d, 0x28, 0x21, 0x68, 0x15, 0x16, 0x92, 0xc8, 0x0f, 0xb9, 0xdb, 0xae, 0xa4, 0x9b, + 0xc4, 0x15, 0x5b, 0x87, 0xb2, 0x1b, 0x5e, 0x06, 0x84, 0x00, 0x21, 0xd9, 0x1a, 0x0f, 0xa0, 0x42, + 0xc5, 0x7d, 0xdb, 0x48, 0x56, 0xf5, 0x01, 0x88, 0x76, 0xa2, 0xc5, 0x7f, 0x00, 0x75, 0xcd, 0x92, + 0x29, 0xa9, 0x11, 0xd3, 0x12, 0x51, 0xf7, 0x52, 0x4d, 0xb9, 0x73, 0x46, 0xb1, 0xe7, 0x08, 0xdb, + 0x15, 0xdc, 0x6f, 0x2f, 0xcd, 0x9c, 0xf3, 0x18, 0x81, 0x3d, 0xc1, 0x7d, 0xcc, 0xe6, 0x53, 0x1e, + 0xb8, 0x97, 0x9e, 0xab, 0xc6, 0x79, 0xfe, 0x3a, 0xf1, 0xb3, 0x0c, 0x9b, 0x4a, 0x7c, 0x0a, 0x65, + 0x29, 0x94, 0xf2, 0x82, 0x91, 0x6c, 0x37, 0x28, 0xc6, 0x96, 0xa7, 0x45, 0xad, 0x33, 0x30, 0x90, + 0x0e, 0xae, 0x5f, 0xbe, 0xc6, 0x52, 0x93, 0xb2, 0xb3, 0x0d, 0x80, 0x58, 0x44, 0x89, 0xe2, 0x0a, + 0xfd, 0xdb, 0x24, 0xab, 0xe5, 0x28, 0xec, 0x5d, 0xa8, 0x9c, 0xfa, 0xa1, 0x73, 0x2e, 0xed, 0x24, + 0x6a, 0xb7, 0xb4, 0x85, 0x34, 0xe1, 0x84, 0x3c, 0x62, 0x40, 0x3c, 0x7f, 0x9b, 0x69, 0x8f, 0x68, + 0x12, 0x1e, 0x1e, 0x83, 0x23, 0x94, 0xb6, 0xba, 0x8a, 0x44, 0x7b, 0x59, 0x07, 0x56, 0x28, 0x87, + 0x57, 0x91, 0x40, 0xb5, 0x3c, 0x76, 0xc6, 0x1a, 0x5a, 0xd1, 0xe5, 0x0c, 0x09, 0x04, 0x1a, 0x3f, + 0x7a, 0xc1, 0x59, 0xd8, 0xbe, 0x47, 0x18, 0xfa, 0x91, 0x6a, 0xfa, 0x8f, 0xa0, 0x11, 0x09, 0x11, + 0xcb, 0x34, 0xc3, 0x85, 0xdb, 0x5e, 0xa3, 0xaf, 0xd6, 0x89, 0xdc, 0x4d, 0xa9, 0x37, 0x52, 0xaf, + 0xfd, 0x96, 0xa9, 0xc7, 0x96, 0x61, 0x7e, 0x6c, 0x5f, 0x70, 0xbf, 0x7d, 0x9f, 0x76, 0x52, 0x1a, + 0xbf, 0xe2, 0x3e, 0x7b, 0x0c, 0xc5, 0x91, 0x08, 0xdb, 0xeb, 0xa4, 0xb4, 0x9e, 0xb3, 0xf5, 0x0b, + 0x11, 0xe6, 0xcc, 0x8c, 0x4c, 0xec, 0x27, 0x50, 0x3c, 0xf3, 0x47, 0xed, 0x77, 0x89, 0xf7, 0xbd, + 0x1c, 0x6f, 0xef, 0xcb, 0x48, 0xc4, 0xde, 0x44, 0x04, 0x8a, 0xfb, 0x3f, 0xf3, 0xf9, 0x8c, 0x83, + 0x50, 0x64, 0xfd, 0x3f, 0xe6, 0xa1, 0x9c, 0x3a, 0x8f, 0x3d, 0x86, 0xd6, 0x6c, 0x0c, 0x71, 0x79, + 0x4e, 0x05, 0xa0, 0x64, 0x35, 0xf2, 0x21, 0xb4, 0x23, 0xcf, 0xb1, 0x0a, 0x5e, 0x8f, 0x20, 0xe4, + 0x9e, 0x23, 0xee, 0xd6, 0x6c, 0x00, 0x21, 0xff, 0x23, 0x48, 0xa3, 0x90, 0x12, 0xd9, 0x9e, 0x78, + 0x3a, 0xd5, 0x4b, 0x56, 0xdd, 0xd0, 0xd1, 0x4c, 0x2f, 0xbd, 0x00, 0xed, 0x3f, 0xd5, 0xec, 0x7b, + 0x13, 0x4f, 0x51, 0xd6, 0x17, 0xac, 0x7a, 0x46, 0x3e, 0x44, 0x2a, 0xfb, 0x3d, 0x68, 0x3a, 0xa1, + 0x8f, 0xf5, 0x37, 0xe6, 0xbe, 0x2d, 0x15, 0x3f, 0x17, 0xa6, 0x02, 0x34, 0xa6, 0xf4, 0x01, 0x92, + 0xd9, 0x36, 0xdc, 0xbb, 0x9e, 0x1d, 0x67, 0x3c, 0xf1, 0x95, 0x29, 0x04, 0xcb, 0xb3, 0x09, 0x42, + 0x10, 0xfb, 0x00, 0x98, 0x93, 0x48, 0x15, 0x4e, 0xbc, 0xaf, 0x84, 0x4b, 0x62, 0x5e, 0x30, 0xa2, + 0x92, 0x50, 0xb6, 0x5a, 0x53, 0xe4, 0x58, 0x03, 0xec, 0x63, 0x98, 0x8f, 0x43, 0x5f, 0xc8, 0x76, + 0xf9, 0x61, 0xf1, 0x51, 0x3d, 0xef, 0x31, 0x2b, 0xf4, 0xc5, 0x6e, 0xe3, 0x9f, 0x7f, 0xb5, 0x59, + 0x25, 0x86, 0x27, 0x3c, 0x8e, 0xf9, 0x95, 0xa5, 0xb9, 0x31, 0x13, 0x63, 0x11, 0x71, 0x2f, 0xbe, + 0xb6, 0x31, 0x5d, 0x43, 0x98, 0xc6, 0x66, 0xf6, 0xf5, 0x09, 0xac, 0xcd, 0x48, 0x4c, 0xb7, 0x62, + 0xca, 0xcb, 0xbd, 0x9c, 0x50, 0x37, 0x03, 0xd9, 0x73, 0xb8, 0x6f, 0xe4, 0x6e, 0x39, 0x56, 0x95, + 0x8e, 0x65, 0x14, 0x77, 0x6f, 0x1c, 0xee, 0x13, 0x58, 0x73, 0xc6, 0xdc, 0xf7, 0x45, 0x70, 0xc3, + 0x82, 0xba, 0x1a, 0xdd, 0xcb, 0xe0, 0x99, 0xbd, 0xfe, 0x14, 0xd6, 0xaf, 0xcb, 0xe5, 0xb6, 0xab, + 0xab, 0x53, 0x7b, 0x56, 0x34, 0xb7, 0xe3, 0x3f, 0x82, 0xf7, 0xa6, 0xd2, 0xb7, 0x6c, 0xba, 0x4e, + 0x9b, 0x9e, 0x7e, 0xe1, 0xc6, 0xbe, 0xd7, 0xff, 0x1c, 0x8a, 0x2f, 0x44, 0xc8, 0xde, 0x87, 0x25, + 0x27, 0x4c, 0x02, 0x15, 0x5f, 0xd9, 0x72, 0x1c, 0xc6, 0xca, 0x74, 0x37, 0x35, 0x43, 0x1c, 0x20, + 0x0d, 0xeb, 0x77, 0x2c, 0x46, 0x58, 0xa2, 0xcc, 0x05, 0xa5, 0x57, 0x58, 0xbf, 0x7d, 0xae, 0x3c, + 0x95, 0x98, 0x3e, 0x66, 0xce, 0xca, 0xd6, 0xec, 0x3d, 0xa8, 0xf8, 0x61, 0x30, 0xd2, 0x60, 0x89, + 0xc0, 0x29, 0x61, 0xfd, 0xef, 0x17, 0xa0, 0x75, 0x23, 0x03, 0x51, 0x86, 0x07, 0xdc, 0xbf, 0x52, + 0x9e, 0x23, 0x69, 0x23, 0x65, 0x6b, 0x4a, 0x60, 0x3f, 0x86, 0xd6, 0x99, 0xe7, 0x0b, 0x0c, 0x48, + 0x61, 0x8b, 0x00, 0xef, 0x4f, 0x7d, 0x63, 0x96, 0xad, 0x66, 0x06, 0xf4, 0x34, 0x1d, 0x8b, 0xfe, + 0x38, 0x94, 0x4a, 0xda, 0xf2, 0x2a, 0x70, 0x32, 0xee, 0xa2, 0xe6, 0x26, 0x64, 0x70, 0x15, 0x38, + 0x29, 0xf7, 0x0f, 0xa1, 0x91, 0xe3, 0x9e, 0x84, 0x66, 0xcb, 0x15, 0x6b, 0x29, 0x63, 0x7d, 0x89, + 0x0d, 0xc0, 0x47, 0xb0, 0xea, 0x7b, 0xa7, 0xd1, 0x76, 0x64, 0x4b, 0x15, 0x0b, 0x3e, 0xb1, 0x27, + 0x68, 0x26, 0x34, 0xf8, 0x3c, 0x69, 0x5e, 0xd1, 0xe8, 0x80, 0xc0, 0x97, 0x06, 0x63, 0xbf, 0x0b, + 0x75, 0x14, 0x19, 0x2b, 0x15, 0xd9, 0x51, 0x1c, 0x7e, 0x79, 0x45, 0xb9, 0x55, 0xb6, 0x6a, 0xd1, + 0x76, 0xb4, 0xaf, 0x54, 0x74, 0x8c, 0x34, 0xf6, 0x00, 0x20, 0x8a, 0xc5, 0x99, 0x88, 0x6d, 0xe5, + 0x4b, 0x93, 0x4c, 0x15, 0x4d, 0x19, 0xfa, 0x92, 0x31, 0x28, 0xfd, 0x59, 0xe2, 0x39, 0x74, 0xb5, + 0x96, 0x2d, 0xfa, 0x1f, 0xb7, 0x1d, 0x8b, 0x49, 0x78, 0x21, 0xec, 0x30, 0xb0, 0x93, 0x20, 0xf2, + 0x02, 0x4a, 0x8e, 0xb2, 0xb5, 0xa4, 0xc9, 0x47, 0xc1, 0x09, 0x12, 0xb1, 0x1c, 0xc8, 0x31, 0x8f, + 0x5d, 0x2f, 0x18, 0x65, 0xa6, 0x00, 0x62, 0x6c, 0xa4, 0xf4, 0xd4, 0x12, 0x1f, 0xc1, 0x6a, 0x5a, + 0x0e, 0x1c, 0xdf, 0x13, 0x81, 0xca, 0x04, 0x74, 0x1e, 0xac, 0x18, 0xb4, 0x4b, 0x60, 0x2a, 0xf5, + 0x0c, 0x52, 0xba, 0x8d, 0x06, 0xcb, 0x64, 0x6a, 0x24, 0x93, 0x5e, 0xbf, 0xfb, 0xa1, 0xcc, 0x24, + 0x9e, 0xc2, 0xb2, 0x54, 0x31, 0x57, 0x62, 0xe4, 0x39, 0x68, 0x94, 0x0b, 0x0f, 0x77, 0x41, 0x71, + 0x4f, 0x02, 0x06, 0x3a, 0x4e, 0x11, 0xac, 0xc0, 0x49, 0x8c, 0xb5, 0x2c, 0xef, 0x7d, 0x1d, 0xe6, + 0x8d, 0x24, 0xf6, 0x07, 0x79, 0xe7, 0x77, 0x60, 0xd9, 0xf5, 0x24, 0x75, 0x6a, 0x3c, 0x51, 0xa1, + 0x9d, 0x44, 0x2e, 0x57, 0x82, 0x2e, 0xe7, 0xb2, 0xd5, 0x32, 0xd0, 0x4e, 0xa2, 0xc2, 0x13, 0x02, + 0x30, 0xb2, 0x46, 0x31, 0x8f, 0xc6, 0x33, 0xb1, 0xd2, 0xd4, 0xb1, 0x92, 0x01, 0x39, 0xe5, 0xa6, + 0x58, 0xcc, 0x1c, 0xb5, 0xa5, 0x95, 0x6b, 0x28, 0x7f, 0xd2, 0x8f, 0x60, 0x75, 0x9a, 0xaa, 0x33, + 0x22, 0x4c, 0x5b, 0x34, 0x43, 0x73, 0x52, 0x5b, 0xff, 0x5a, 0x86, 0xea, 0x40, 0x9b, 0x6d, 0xa0, + 0xb8, 0x62, 0x9f, 0x01, 0x90, 0xac, 0x54, 0x5c, 0xe9, 0xdc, 0xa8, 0x6e, 0xaf, 0xea, 0x42, 0x9a, + 0x63, 0xeb, 0xa0, 0x8a, 0xdd, 0x12, 0x5e, 0x64, 0x56, 0x05, 0xf9, 0x91, 0x88, 0x8f, 0xa2, 0x5a, + 0x2c, 0x02, 0x25, 0x62, 0x23, 0xae, 0x9f, 0x5e, 0xed, 0x9b, 0xe2, 0x16, 0x71, 0x19, 0x05, 0x55, + 0x2d, 0x43, 0x2a, 0xd6, 0x7f, 0x5d, 0x82, 0xca, 0x7e, 0xa6, 0x90, 0x1a, 0x3a, 0xea, 0x3a, 0x0b, + 0x94, 0xd9, 0x66, 0xc5, 0x56, 0x60, 0x5e, 0x3a, 0x61, 0xac, 0x1f, 0x77, 0x73, 0x96, 0x5e, 0x60, + 0x2b, 0xa7, 0x71, 0x5b, 0x83, 0xba, 0x54, 0x54, 0x35, 0x6d, 0x40, 0x2c, 0xd8, 0x91, 0x8c, 0x52, + 0x5c, 0x57, 0x8b, 0x32, 0x6e, 0x8a, 0xc0, 0xf7, 0x61, 0xc9, 0xb4, 0xc0, 0x86, 0x61, 0x9e, 0x18, + 0x6a, 0x86, 0xa8, 0x99, 0x36, 0xa1, 0x2a, 0x23, 0x21, 0x5c, 0xc3, 0xb2, 0x40, 0x2c, 0x40, 0x24, + 0xcd, 0xf0, 0x04, 0x98, 0x6e, 0x25, 0xed, 0x3c, 0xdf, 0x22, 0xf1, 0x35, 0x35, 0x32, 0x98, 0x72, + 0x3f, 0x83, 0x95, 0xb4, 0xab, 0x9c, 0xe1, 0x2f, 0x13, 0x3f, 0x4b, 0xb1, 0x9c, 0xc4, 0xfb, 0xb0, + 0x64, 0x4e, 0x79, 0x29, 0xbc, 0xd1, 0x58, 0xdf, 0x53, 0x73, 0x96, 0x39, 0xfa, 0x17, 0x44, 0xc3, + 0x24, 0xc7, 0x73, 0x1a, 0x0e, 0xd0, 0x65, 0x91, 0x8f, 0x52, 0xf8, 0x07, 0x50, 0x4f, 0x4f, 0x6a, + 0x58, 0xaa, 0xc4, 0x92, 0x9e, 0xdf, 0xb0, 0x61, 0x73, 0x4f, 0x7b, 0x32, 0x4c, 0x35, 0x6d, 0x50, + 0xa2, 0x19, 0x96, 0x0e, 0x2c, 0xcf, 0x9c, 0xd6, 0x70, 0x2e, 0x11, 0x67, 0x2b, 0x77, 0x5c, 0xc3, + 0xbf, 0x0d, 0xf7, 0xae, 0x9d, 0xd7, 0x48, 0xd4, 0x49, 0x62, 0x79, 0xe6, 0xc0, 0x46, 0xe6, 0x05, + 0xd4, 0xe8, 0xad, 0xad, 0xd3, 0xcb, 0x35, 0xcd, 0xef, 0x77, 0xec, 0xf2, 0x50, 0x52, 0xa7, 0x9f, + 0xfb, 0xbc, 0xf4, 0x0f, 0xff, 0xb8, 0x59, 0x58, 0xff, 0xeb, 0x39, 0x28, 0x61, 0x88, 0x61, 0x74, + 0x85, 0x81, 0xef, 0x05, 0xc2, 0xdc, 0x01, 0x66, 0x75, 0xe3, 0x4d, 0x83, 0x41, 0x56, 0x9c, 0x7d, + 0xd3, 0x60, 0x14, 0xa4, 0xe5, 0x8b, 0x47, 0x14, 0x69, 0x45, 0x0b, 0xd2, 0x9a, 0xc5, 0xa3, 0xfc, + 0x63, 0xc0, 0xf5, 0xe4, 0xb9, 0x4d, 0x4f, 0x05, 0x8a, 0xb8, 0x62, 0xf6, 0x18, 0xd8, 0xf3, 0xe4, + 0xf9, 0x10, 0xe9, 0xf9, 0x6a, 0x48, 0xdc, 0xfc, 0x82, 0x7b, 0x3e, 0x26, 0x28, 0x85, 0x60, 0x31, + 0xab, 0x86, 0x28, 0xb1, 0x93, 0x62, 0xec, 0x73, 0x98, 0xd7, 0x79, 0xb6, 0x40, 0x06, 0x79, 0xf7, + 0xf6, 0x34, 0xa5, 0x4c, 0xda, 0xad, 0xa5, 0x4d, 0xe7, 0x7f, 0x61, 0xca, 0x69, 0x39, 0x63, 0x8f, + 0xc7, 0xb0, 0xa0, 0xf3, 0x11, 0xef, 0xd9, 0x58, 0x48, 0x11, 0x5f, 0x88, 0x6c, 0xfa, 0x90, 0xae, + 0x35, 0xaf, 0xfe, 0xbb, 0xf5, 0x2f, 0x45, 0xa8, 0x75, 0xc3, 0x40, 0xc5, 0xdc, 0x21, 0xf5, 0xf4, + 0x20, 0x77, 0x94, 0x77, 0x41, 0xc3, 0x09, 0x22, 0xdb, 0x41, 0x32, 0x21, 0x1d, 0x45, 0xab, 0xa5, + 0xa1, 0x54, 0xa0, 0x9f, 0x4c, 0xb0, 0x10, 0x3a, 0xe1, 0x24, 0x12, 0x81, 0xa4, 0xf7, 0x87, 0x1d, + 0x71, 0x2f, 0x35, 0x73, 0x33, 0x0f, 0x1c, 0x73, 0xcf, 0x65, 0x9f, 0x42, 0x7b, 0x86, 0x39, 0x4c, + 0x94, 0x54, 0x3c, 0xa0, 0x3a, 0xae, 0x0d, 0xbf, 0x96, 0xc7, 0x8f, 0xa6, 0x30, 0x7b, 0x05, 0x2b, + 0x67, 0x5e, 0x2c, 0xd5, 0x74, 0x5b, 0x52, 0xf1, 0x58, 0xdd, 0x69, 0x60, 0xc3, 0x48, 0x43, 0xee, + 0xb8, 0xb1, 0x62, 0xc7, 0xd0, 0xa2, 0x88, 0xcc, 0xd4, 0x8a, 0x40, 0x3f, 0x7d, 0xbf, 0xab, 0xd2, + 0x06, 0x8a, 0xa7, 0x3a, 0x7b, 0x81, 0xcb, 0x7e, 0x0c, 0x25, 0xec, 0x46, 0xc9, 0x95, 0xf5, 0xed, + 0x35, 0xed, 0xca, 0xbc, 0x8d, 0x3b, 0xd8, 0xc3, 0x5a, 0xc4, 0xb4, 0xf5, 0x18, 0x4a, 0xb8, 0x62, + 0x65, 0x28, 0xed, 0x1f, 0x0d, 0x86, 0xcd, 0x77, 0x18, 0xc0, 0x82, 0xd5, 0xeb, 0x0f, 0x7b, 0x56, + 0xb3, 0xc0, 0x6a, 0x50, 0xb6, 0x7a, 0x83, 0x9e, 0xf5, 0xaa, 0xb7, 0xd7, 0x9c, 0x33, 0x1e, 0x7b, + 0x33, 0x0f, 0x95, 0x54, 0x9b, 0x64, 0x9f, 0x40, 0x25, 0xdd, 0x39, 0xd6, 0xf8, 0xe2, 0xb4, 0x48, + 0x67, 0x3c, 0xd9, 0x7f, 0xd6, 0x94, 0x75, 0xfd, 0x9f, 0xe6, 0xa1, 0x9c, 0xd2, 0xcd, 0x94, 0x46, + 0x1f, 0x3f, 0x9b, 0x56, 0x41, 0x4a, 0x3a, 0x70, 0xf1, 0x59, 0x48, 0x57, 0xc9, 0x74, 0xde, 0x80, + 0xcb, 0x03, 0x17, 0x8b, 0xb0, 0xb9, 0x26, 0x3c, 0xd7, 0x0c, 0x1b, 0xca, 0x9a, 0x70, 0xe0, 0xb2, + 0x8f, 0x61, 0x01, 0x83, 0x33, 0x91, 0xe4, 0xa4, 0xfa, 0xf6, 0x83, 0x8e, 0x1e, 0x28, 0xa6, 0xdf, + 0x9d, 0x31, 0x8a, 0xb0, 0x0c, 0x33, 0xeb, 0x02, 0x90, 0x6b, 0xf5, 0x8c, 0xe2, 0x2e, 0xae, 0xa8, + 0x90, 0x1c, 0x0d, 0x33, 0x3e, 0x87, 0xb2, 0x08, 0x5c, 0xad, 0x62, 0xe1, 0x0e, 0x2a, 0x16, 0x45, + 0xe0, 0x92, 0x82, 0x3e, 0x34, 0x03, 0xf1, 0xa5, 0xb2, 0x85, 0x74, 0xe2, 0xf0, 0x52, 0x2b, 0xba, + 0xcb, 0x38, 0xa8, 0x8e, 0xd2, 0x3d, 0x12, 0x26, 0x7d, 0xb7, 0xe6, 0x49, 0xf9, 0x2d, 0xf2, 0xa4, + 0xf2, 0xdb, 0xf3, 0xe4, 0x01, 0x40, 0x12, 0x78, 0x4a, 0xbf, 0x0f, 0xe8, 0xba, 0x28, 0x5a, 0x15, + 0xa4, 0xd0, 0x7b, 0x00, 0x61, 0xea, 0xdf, 0x6c, 0xe9, 0x7d, 0x25, 0xe8, 0xaa, 0x28, 0x5a, 0x15, + 0xa2, 0x0c, 0xbc, 0xaf, 0x72, 0xf0, 0x98, 0xcb, 0x31, 0x5d, 0x12, 0x15, 0x03, 0xef, 0x73, 0x39, + 0x46, 0x77, 0x63, 0xdb, 0xac, 0xd1, 0x25, 0xed, 0x6e, 0x24, 0x10, 0xd8, 0x87, 0x26, 0x65, 0xd2, + 0x24, 0x74, 0xbd, 0xb3, 0x2b, 0x6d, 0xb1, 0xfa, 0x5d, 0x2c, 0x86, 0xd2, 0x2f, 0x49, 0x18, 0xe1, + 0x99, 0x32, 0xf5, 0xdf, 0x15, 0xa8, 0xee, 0xaa, 0x33, 0x39, 0x70, 0x78, 0x30, 0xe4, 0xa7, 0xec, + 0x17, 0xb7, 0x8c, 0xd5, 0xb6, 0xdf, 0xbc, 0xde, 0xec, 0x44, 0xa3, 0xe7, 0x5b, 0x34, 0x01, 0x93, + 0x0e, 0x0f, 0xee, 0x34, 0x53, 0xeb, 0xc0, 0xf2, 0xb5, 0xd9, 0x96, 0x2f, 0xce, 0x14, 0xc5, 0x7b, + 0xc1, 0x6a, 0xcd, 0x0c, 0xb7, 0x0e, 0xc5, 0x99, 0xc2, 0xeb, 0x5e, 0x5f, 0x32, 0xf8, 0xfa, 0x16, + 0xb1, 0xc4, 0x32, 0x79, 0x2a, 0x62, 0x33, 0xe3, 0x64, 0x1a, 0x7b, 0x49, 0x50, 0x9f, 0x10, 0xf6, + 0x05, 0xb0, 0xf4, 0xe1, 0xe4, 0x7a, 0x52, 0xc5, 0xde, 0x69, 0xa2, 0xb0, 0x75, 0xc1, 0xa4, 0x7d, + 0xa4, 0x93, 0x36, 0x77, 0xc6, 0x4e, 0x57, 0xf3, 0xee, 0x65, 0xac, 0x3d, 0x5c, 0x5a, 0x2d, 0xe7, + 0x3a, 0x9d, 0xfd, 0x02, 0x9a, 0xd4, 0x6a, 0xe4, 0xd5, 0xce, 0x93, 0xda, 0x1f, 0xde, 0x54, 0x4b, + 0xad, 0xc7, 0x75, 0xa5, 0x0d, 0x39, 0x4b, 0xbd, 0x31, 0x8e, 0x59, 0x78, 0xdb, 0x71, 0x4c, 0xae, + 0xcf, 0xe7, 0x7e, 0x2c, 0xb8, 0x9b, 0x9b, 0x06, 0x16, 0xb2, 0x3e, 0x7f, 0x47, 0x43, 0x74, 0x21, + 0xaf, 0xc0, 0xbc, 0x0e, 0x5e, 0x3d, 0x12, 0xd4, 0x0b, 0xdc, 0x10, 0xde, 0xfc, 0xd9, 0x86, 0x2a, + 0x77, 0xd9, 0x10, 0x4a, 0xa6, 0x1b, 0xba, 0x0f, 0xe5, 0x40, 0x5c, 0xda, 0x31, 0x0f, 0xce, 0x29, + 0x3d, 0x2a, 0xd6, 0x62, 0x20, 0x2e, 0x2d, 0x1e, 0x9c, 0x63, 0xf4, 0xeb, 0xe9, 0x20, 0x81, 0x55, + 0x1d, 0xfd, 0x44, 0x21, 0xf8, 0x09, 0xfa, 0xcf, 0x94, 0x49, 0xee, 0xfb, 0x36, 0x39, 0x82, 0x92, + 0x64, 0x09, 0x73, 0x58, 0x23, 0x3b, 0xbe, 0x4f, 0x8e, 0xc3, 0x78, 0xca, 0xb8, 0xcf, 0xb8, 0x97, + 0xb2, 0x2f, 0x11, 0x7b, 0x2b, 0x85, 0x7e, 0xc6, 0x3d, 0xc3, 0xff, 0x0c, 0x56, 0x66, 0xb4, 0x1b, + 0xcb, 0x50, 0x0a, 0x15, 0x2c, 0x96, 0xd3, 0x6f, 0xda, 0x02, 0x6c, 0xc0, 0x66, 0xbf, 0x90, 0x8a, + 0x34, 0x48, 0x64, 0x39, 0xff, 0x8d, 0x54, 0xe6, 0x33, 0x58, 0x4f, 0xdd, 0x81, 0xe1, 0x6d, 0x5f, + 0x8e, 0x45, 0x90, 0xdd, 0x7d, 0x66, 0x9c, 0xb8, 0x66, 0x38, 0x30, 0xcc, 0xbf, 0x18, 0x8b, 0x20, + 0xbb, 0x27, 0x3e, 0x85, 0xfb, 0x32, 0x89, 0x44, 0x6c, 0xcf, 0x06, 0xbe, 0x3e, 0x58, 0x8b, 0x0e, + 0xb6, 0x4a, 0x0c, 0x47, 0xb9, 0xe0, 0xd7, 0xa7, 0xfb, 0x18, 0xd6, 0xd0, 0xea, 0xb7, 0x09, 0x32, + 0x12, 0x5c, 0x09, 0xc4, 0xe5, 0x4d, 0xb1, 0xc7, 0xd0, 0x32, 0xbc, 0x68, 0x12, 0x4e, 0x6f, 0x67, + 0x9a, 0x4c, 0x16, 0xad, 0x86, 0x06, 0x76, 0x7c, 0x7f, 0x87, 0xc8, 0xd3, 0xf1, 0xaf, 0x06, 0x68, + 0x4a, 0x59, 0x34, 0xe3, 0x5f, 0xad, 0x13, 0x1d, 0x7c, 0xea, 0x8d, 0x52, 0x86, 0x7b, 0xba, 0xfa, + 0x9d, 0x7a, 0x23, 0x0d, 0xaf, 0xef, 0xc1, 0xea, 0xed, 0x49, 0xc7, 0x9a, 0x50, 0x3c, 0x17, 0x57, + 0xe6, 0x66, 0xc4, 0x7f, 0x31, 0x4a, 0x2f, 0xb8, 0x9f, 0x08, 0xf3, 0x9b, 0x8d, 0x5e, 0x3c, 0x9f, + 0xfb, 0x49, 0x61, 0x7d, 0x17, 0x56, 0x6e, 0xcb, 0xb1, 0xbb, 0xe8, 0xd8, 0xfa, 0x8b, 0x22, 0x34, + 0x48, 0xc9, 0xbe, 0x87, 0xce, 0xa0, 0x1f, 0x6f, 0x4e, 0x6e, 0xa9, 0x79, 0x9f, 0xbc, 0x79, 0xbd, + 0xb9, 0x8d, 0x35, 0x4f, 0xe7, 0xff, 0x58, 0x73, 0x7f, 0x3f, 0xbf, 0x25, 0xdc, 0x3e, 0xec, 0x2f, + 0xfe, 0x86, 0x61, 0xff, 0x6f, 0x28, 0x9f, 0xfa, 0x27, 0x86, 0x5b, 0xca, 0x67, 0xf6, 0xee, 0x9b, + 0x27, 0xf7, 0x9b, 0x77, 0xdf, 0xf5, 0x2c, 0x5f, 0x78, 0xdb, 0x2c, 0xff, 0xde, 0x7e, 0xc9, 0xf9, + 0xab, 0x12, 0xac, 0xed, 0x78, 0xb1, 0x1b, 0x87, 0x91, 0x25, 0x2e, 0xf1, 0x22, 0x9c, 0x7a, 0xe4, + 0x4f, 0x6f, 0xf1, 0xc8, 0xe7, 0x6f, 0x5e, 0x6f, 0x7e, 0x86, 0x1e, 0xe1, 0x5a, 0xc8, 0x8e, 0x49, + 0xea, 0xad, 0x5c, 0xc3, 0xa0, 0x44, 0xf3, 0xf6, 0x39, 0x32, 0x11, 0xfd, 0x9f, 0x77, 0x57, 0x71, + 0xc6, 0x5d, 0x0f, 0x00, 0x3c, 0x69, 0xcb, 0x44, 0x46, 0xc2, 0x51, 0x66, 0xb8, 0x54, 0xf1, 0xe4, + 0x40, 0x13, 0xf0, 0x85, 0x64, 0x9e, 0x67, 0x0b, 0xa4, 0xcd, 0xac, 0xc8, 0x0f, 0x34, 0xec, 0x5d, + 0x34, 0x7e, 0xa0, 0x11, 0xef, 0x75, 0x3f, 0x94, 0xbf, 0x2f, 0x3f, 0x54, 0xde, 0xf6, 0x1e, 0x79, + 0x00, 0x40, 0xad, 0x87, 0xae, 0x19, 0x40, 0x9b, 0xa5, 0x66, 0x44, 0x17, 0x8a, 0xb4, 0x33, 0xc9, + 0xda, 0x9a, 0x92, 0xee, 0x4c, 0xa8, 0xab, 0x79, 0x1f, 0x96, 0xe4, 0x38, 0x4c, 0x7c, 0xd7, 0x38, + 0xc3, 0x8c, 0x59, 0x6b, 0x9a, 0xa8, 0xdd, 0x8a, 0x4c, 0xdc, 0x51, 0x09, 0x56, 0x7f, 0xcd, 0xa4, + 0x07, 0xaa, 0x35, 0x4d, 0xd4, 0x4c, 0x8f, 0xff, 0xb2, 0x00, 0xe5, 0x74, 0x0a, 0x9d, 0xeb, 0xd4, + 0xdf, 0xc9, 0xfa, 0x77, 0xd3, 0xb3, 0x1f, 0xef, 0x1c, 0x58, 0x3d, 0xab, 0x39, 0xc7, 0xea, 0x00, + 0xdd, 0xfd, 0x9d, 0xc3, 0xc3, 0x5e, 0xff, 0x45, 0xcf, 0x6a, 0x16, 0xd9, 0x32, 0x34, 0xfa, 0xbd, + 0xe1, 0x17, 0x47, 0xd6, 0xcf, 0xed, 0xee, 0x7e, 0xaf, 0xfb, 0xf3, 0x9e, 0xd5, 0x2c, 0xb1, 0x55, + 0x60, 0x56, 0xef, 0xf8, 0x64, 0xb8, 0x33, 0x3c, 0x38, 0xea, 0x67, 0xf4, 0x79, 0xd6, 0x84, 0x5a, + 0x77, 0xaf, 0x6f, 0x1f, 0x5b, 0x47, 0xaf, 0x0e, 0xf6, 0x7a, 0x56, 0x73, 0x81, 0x55, 0x60, 0xfe, + 0x68, 0xb8, 0xdf, 0xb3, 0x9a, 0x2b, 0x8f, 0xc7, 0xc0, 0x6e, 0xfe, 0xe6, 0xc9, 0xaa, 0xb0, 0x38, + 0x38, 0xe9, 0x76, 0x7b, 0x83, 0x41, 0xf3, 0x1d, 0xd6, 0x80, 0xea, 0x49, 0xbf, 0x7b, 0xd4, 0xef, + 0xf7, 0xba, 0xc3, 0xde, 0x5e, 0xb3, 0x80, 0xe8, 0xf0, 0xe0, 0x65, 0xef, 0xe8, 0x64, 0xd8, 0x9c, + 0x63, 0xf7, 0xa0, 0xb5, 0xb3, 0x3b, 0x38, 0x3a, 0x3c, 0x19, 0xf6, 0x0e, 0xff, 0xd8, 0x3e, 0xe9, + 0x1f, 0x1d, 0xf7, 0xfa, 0xcd, 0x22, 0x7e, 0x94, 0x3e, 0x61, 0x5b, 0xbd, 0x9d, 0xc1, 0x51, 0xbf, + 0x09, 0xbb, 0x7f, 0xf8, 0x7f, 0xff, 0xb9, 0x51, 0xf8, 0xfa, 0x9b, 0x8d, 0xc2, 0x2f, 0xbf, 0xd9, + 0x28, 0xfc, 0xfa, 0x9b, 0x8d, 0xc2, 0xdf, 0x7d, 0xbb, 0x51, 0xf8, 0xb7, 0x6f, 0x37, 0x0a, 0x5f, + 0x7f, 0xbb, 0x51, 0x80, 0x9a, 0x17, 0x76, 0xb0, 0xe3, 0xa2, 0x4e, 0x63, 0xb7, 0x82, 0xd6, 0x39, + 0x46, 0xaf, 0x1e, 0x17, 0xfe, 0x84, 0x7e, 0x9d, 0x3f, 0x5d, 0x20, 0x27, 0x7f, 0xf8, 0xff, 0x01, + 0x00, 0x00, 0xff, 0xff, 0x22, 0xf8, 0xe5, 0x1f, 0x9c, 0x20, 0x00, 0x00, } func (m *PayLoadInfo) Marshal() (dAtA []byte, err error) { @@ -3667,6 +3684,20 @@ func (m *BtfsScanTab) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.BigMiners != 0 { + i = encodeVarintNode(dAtA, i, uint64(m.BigMiners)) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0xa8 + } + if m.TotalMiners != 0 { + i = encodeVarintNode(dAtA, i, uint64(m.TotalMiners)) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0xa0 + } if m.MinersAllAmount != 0 { i = encodeVarintNode(dAtA, i, uint64(m.MinersAllAmount)) i-- @@ -4430,8 +4461,16 @@ func NewPopulatedBtfsScanTab(r randyNode, easy bool) *BtfsScanTab { if r.Intn(2) == 0 { this.MinersAllAmount *= -1 } + this.TotalMiners = int64(r.Int63()) + if r.Intn(2) == 0 { + this.TotalMiners *= -1 + } + this.BigMiners = int64(r.Int63()) + if r.Intn(2) == 0 { + this.BigMiners *= -1 + } if !easy && r.Intn(10) != 0 { - this.XXX_unrecognized = randUnrecognizedNode(r, 20) + this.XXX_unrecognized = randUnrecognizedNode(r, 22) } return this } @@ -5167,6 +5206,12 @@ func (m *BtfsScanTab) Size() (n int) { if m.MinersAllAmount != 0 { n += 2 + sovNode(uint64(m.MinersAllAmount)) } + if m.TotalMiners != 0 { + n += 2 + sovNode(uint64(m.TotalMiners)) + } + if m.BigMiners != 0 { + n += 2 + sovNode(uint64(m.BigMiners)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -9362,6 +9407,44 @@ func (m *BtfsScanTab) Unmarshal(dAtA []byte) error { break } } + case 20: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TotalMiners", wireType) + } + m.TotalMiners = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowNode + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.TotalMiners |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 21: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field BigMiners", wireType) + } + m.BigMiners = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowNode + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.BigMiners |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipNode(dAtA[iNdEx:]) diff --git a/protos/node/node.proto b/protos/node/node.proto index d177427..0e2fb5a 100644 --- a/protos/node/node.proto +++ b/protos/node/node.proto @@ -277,6 +277,8 @@ message BtfsScanTab { uint32 super_online_miners_count = 17; uint32 new_online_miners_count = 18; int64 miners_all_amount = 19; + int64 total_miners = 20; + int64 big_miners = 21; } message ScoreHistoryTab {