From 0e0a35dc4830f13613ef7ee407a4645cd0a23511 Mon Sep 17 00:00:00 2001 From: Daniel Sainati Date: Wed, 5 Jul 2023 15:58:33 -0400 Subject: [PATCH] Update to newest Stable Cadence Preview (#371) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * update to view functions for stable cadence * remove unreachable code * update templates to Stable Cadence * update to Stable Cadence preview 4 * update for stable cadence * fix parse error --------- Co-authored-by: Josh Hannan Co-authored-by: Bastian Müller --- contracts/FlowContractAudits.cdc | 64 +-- contracts/FlowFees.cdc | 48 +-- contracts/FlowIDTableStaking.cdc | 354 +++++++++-------- contracts/FlowServiceAccount.cdc | 52 +-- contracts/FlowStakingCollection.cdc | 137 ++++--- contracts/FlowStorageFees.cdc | 34 +- contracts/FlowToken.cdc | 44 +- contracts/LockedTokens.cdc | 164 ++++---- contracts/NodeVersionBeacon.cdc | 80 ++-- contracts/StakingProxy.cdc | 68 ++-- contracts/epochs/FlowClusterQC.cdc | 92 ++--- contracts/epochs/FlowDKG.cdc | 76 ++-- contracts/epochs/FlowEpoch.cdc | 132 +++--- lib/go/contracts/go.mod | 2 + lib/go/contracts/go.sum | 2 - lib/go/contracts/internal/assets/assets.go | 78 ++-- lib/go/templates/go.mod | 6 +- lib/go/templates/go.sum | 10 +- lib/go/templates/internal/assets/assets.go | 15 +- lib/go/test/go.mod | 161 ++++---- lib/go/test/go.sum | 442 ++++++++++----------- lib/go/test/staking_test_helpers.go | 11 +- 22 files changed, 1034 insertions(+), 1038 deletions(-) diff --git a/contracts/FlowContractAudits.cdc b/contracts/FlowContractAudits.cdc index e5f73a2f4..eab49da7f 100644 --- a/contracts/FlowContractAudits.cdc +++ b/contracts/FlowContractAudits.cdc @@ -4,47 +4,47 @@ /// deployed to the Service Account, so it is documented here /// for reference -pub contract FlowContractAudits { +access(all) contract FlowContractAudits { // Event that is emitted when a new Auditor resource is created - pub event AuditorCreated() + access(all) event AuditorCreated() // Event that is emitted when a new contract audit voucher is created - pub event VoucherCreated(address: Address?, recurrent: Bool, expiryBlockHeight: UInt64?, codeHash: String) + access(all) event VoucherCreated(address: Address?, recurrent: Bool, expiryBlockHeight: UInt64?, codeHash: String) // Event that is emitted when a contract audit voucher is used - pub event VoucherUsed(address: Address, key: String, recurrent: Bool, expiryBlockHeight: UInt64?) + access(all) event VoucherUsed(address: Address, key: String, recurrent: Bool, expiryBlockHeight: UInt64?) // Event that is emitted when a contract audit voucher is removed - pub event VoucherRemoved(key: String, recurrent: Bool, expiryBlockHeight: UInt64?) + access(all) event VoucherRemoved(key: String, recurrent: Bool, expiryBlockHeight: UInt64?) // Dictionary of all vouchers access(contract) var vouchers: {String: AuditVoucher} // The storage path for the admin resource - pub let AdminStoragePath: StoragePath + access(all) let AdminStoragePath: StoragePath // The storage Path for auditors' AuditorProxy - pub let AuditorProxyStoragePath: StoragePath + access(all) let AuditorProxyStoragePath: StoragePath // The public path for auditors' AuditorProxy capability - pub let AuditorProxyPublicPath: PublicPath + access(all) let AuditorProxyPublicPath: PublicPath // Single audit voucher that is used for contract deployment - pub struct AuditVoucher { + access(all) struct AuditVoucher { // Address of the account the voucher is intended for // If nil, the contract can be deployed to any account - pub let address: Address? + access(all) let address: Address? // If false, the voucher will be removed after first use - pub let recurrent: Bool + access(all) let recurrent: Bool // If non-nil, the voucher won't be valid after the expiry block height - pub let expiryBlockHeight: UInt64? + access(all) let expiryBlockHeight: UInt64? // Hash of contract code - pub let codeHash: String + access(all) let codeHash: String init(address: Address?, recurrent: Bool, expiryBlockHeight: UInt64?, codeHash: String) { self.address = address @@ -55,33 +55,33 @@ pub contract FlowContractAudits { } // Returns all current vouchers - pub fun getAllVouchers(): {String: AuditVoucher} { + access(all) fun getAllVouchers(): {String: AuditVoucher} { return self.vouchers } // Get the associated dictionary key for given address and codeHash - pub fun generateVoucherKey(address: Address?, codeHash: String): String { + access(all) fun generateVoucherKey(address: Address?, codeHash: String): String { if address != nil { return address!.toString().concat("-").concat(codeHash) } return "any-".concat(codeHash) } - pub fun hashContractCode(_ code: String): String { + access(all) fun hashContractCode(_ code: String): String { return String.encodeHex(HashAlgorithm.SHA3_256.hash(code.utf8)) } // Auditors can create new vouchers and remove them - pub resource Auditor { + access(all) resource Auditor { // Create new voucher with contract code - pub fun addVoucher(address: Address?, recurrent: Bool, expiryOffset: UInt64?, code: String) { + access(all) fun addVoucher(address: Address?, recurrent: Bool, expiryOffset: UInt64?, code: String) { let codeHash = FlowContractAudits.hashContractCode(code) self.addVoucherHashed(address: address, recurrent: recurrent, expiryOffset: expiryOffset, codeHash: codeHash) } // Create new voucher with hashed contract code - pub fun addVoucherHashed(address: Address?, recurrent: Bool, expiryOffset: UInt64?, codeHash: String) { + access(all) fun addVoucherHashed(address: Address?, recurrent: Bool, expiryOffset: UInt64?, codeHash: String) { // calculate expiry block height based on expiryOffset var expiryBlockHeight: UInt64? = nil @@ -102,35 +102,35 @@ pub contract FlowContractAudits { } // Remove a voucher with given key - pub fun deleteVoucher(key: String) { + access(all) fun deleteVoucher(key: String) { FlowContractAudits.deleteVoucher(key) } } // Used by admin to set the Auditor capability - pub resource interface AuditorProxyPublic { - pub fun setAuditorCapability(_ cap: Capability<&Auditor>) + access(all) resource interface AuditorProxyPublic { + access(all) fun setAuditorCapability(_ cap: Capability<&Auditor>) } // The auditor account will have audit access through AuditorProxy // This enables the admin account to revoke access // See https://docs.onflow.org/cadence/design-patterns/#capability-revocation - pub resource AuditorProxy: AuditorProxyPublic { + access(all) resource AuditorProxy: AuditorProxyPublic { access(self) var auditorCapability: Capability<&Auditor>? - pub fun setAuditorCapability(_ cap: Capability<&Auditor>) { + access(all) fun setAuditorCapability(_ cap: Capability<&Auditor>) { self.auditorCapability = cap } - pub fun addVoucher(address: Address?, recurrent: Bool, expiryOffset: UInt64?, code: String) { + access(all) fun addVoucher(address: Address?, recurrent: Bool, expiryOffset: UInt64?, code: String) { self.auditorCapability!.borrow()!.addVoucher(address: address, recurrent: recurrent, expiryOffset: expiryOffset, code: code) } - pub fun addVoucherHashed(address: Address?, recurrent: Bool, expiryOffset: UInt64?, codeHash: String) { + access(all) fun addVoucherHashed(address: Address?, recurrent: Bool, expiryOffset: UInt64?, codeHash: String) { self.auditorCapability!.borrow()!.addVoucherHashed(address: address, recurrent: recurrent, expiryOffset: expiryOffset, codeHash: codeHash) } - pub fun deleteVoucher(key: String) { + access(all) fun deleteVoucher(key: String) { self.auditorCapability!.borrow()!.deleteVoucher(key: key) } @@ -141,20 +141,20 @@ pub contract FlowContractAudits { } // Can be called by anyone but needs a capability to function - pub fun createAuditorProxy(): @AuditorProxy { + access(all) fun createAuditorProxy(): @AuditorProxy { return <- create AuditorProxy() } - pub resource Administrator { + access(all) resource Administrator { // Creates new Auditor - pub fun createNewAuditor(): @Auditor { + access(all) fun createNewAuditor(): @Auditor { emit AuditorCreated() return <-create Auditor() } // Checks all vouchers and removes expired ones - pub fun cleanupExpiredVouchers() { + access(all) fun cleanupExpiredVouchers() { for key in FlowContractAudits.vouchers.keys { let v = FlowContractAudits.vouchers[key]! if v.expiryBlockHeight != nil { @@ -166,7 +166,7 @@ pub contract FlowContractAudits { } // For testing - pub fun useVoucherForDeploy(address: Address, code: String): Bool { + access(all) fun useVoucherForDeploy(address: Address, code: String): Bool { return FlowContractAudits.useVoucherForDeploy(address: address, code: code) } } diff --git a/contracts/FlowFees.cdc b/contracts/FlowFees.cdc index 8ffa7dd4e..577e1b070 100644 --- a/contracts/FlowFees.cdc +++ b/contracts/FlowFees.cdc @@ -2,24 +2,24 @@ import FungibleToken from 0xFUNGIBLETOKENADDRESS import FlowToken from 0xFLOWTOKENADDRESS import FlowStorageFees from 0xFLOWSTORAGEFEESADDRESS -pub contract FlowFees { +access(all) contract FlowFees { // Event that is emitted when tokens are deposited to the fee vault - pub event TokensDeposited(amount: UFix64) + access(all) event TokensDeposited(amount: UFix64) // Event that is emitted when tokens are withdrawn from the fee vault - pub event TokensWithdrawn(amount: UFix64) + access(all) event TokensWithdrawn(amount: UFix64) // Event that is emitted when fees are deducted - pub event FeesDeducted(amount: UFix64, inclusionEffort: UFix64, executionEffort: UFix64) + access(all) event FeesDeducted(amount: UFix64, inclusionEffort: UFix64, executionEffort: UFix64) // Event that is emitted when fee parameters change - pub event FeeParametersChanged(surgeFactor: UFix64, inclusionEffortCost: UFix64, executionEffortCost: UFix64) + access(all) event FeeParametersChanged(surgeFactor: UFix64, inclusionEffortCost: UFix64, executionEffortCost: UFix64) // Private vault with public deposit function access(self) var vault: @FlowToken.Vault - pub fun deposit(from: @FungibleToken.Vault) { + access(all) fun deposit(from: @FungibleToken.Vault) { let from <- from as! @FlowToken.Vault let balance = from.balance self.vault.deposit(from: <-from) @@ -27,28 +27,28 @@ pub contract FlowFees { } /// Get the balance of the Fees Vault - pub fun getFeeBalance(): UFix64 { + access(all) fun getFeeBalance(): UFix64 { return self.vault.balance } - pub resource Administrator { + access(all) resource Administrator { // withdraw // // Allows the administrator to withdraw tokens from the fee vault - pub fun withdrawTokensFromFeeVault(amount: UFix64): @FungibleToken.Vault { + access(all) fun withdrawTokensFromFeeVault(amount: UFix64): @FungibleToken.Vault { let vault <- FlowFees.vault.withdraw(amount: amount) emit TokensWithdrawn(amount: amount) return <-vault } /// Allows the administrator to change all the fee parameters at once - pub fun setFeeParameters(surgeFactor: UFix64, inclusionEffortCost: UFix64, executionEffortCost: UFix64) { + access(all) fun setFeeParameters(surgeFactor: UFix64, inclusionEffortCost: UFix64, executionEffortCost: UFix64) { let newParameters = FeeParameters(surgeFactor: surgeFactor, inclusionEffortCost: inclusionEffortCost, executionEffortCost: executionEffortCost) FlowFees.setFeeParameters(newParameters) } /// Allows the administrator to change the fee surge factor - pub fun setFeeSurgeFactor(_ surgeFactor: UFix64) { + access(all) fun setFeeSurgeFactor(_ surgeFactor: UFix64) { let oldParameters = FlowFees.getFeeParameters() let newParameters = FeeParameters(surgeFactor: surgeFactor, inclusionEffortCost: oldParameters.inclusionEffortCost, executionEffortCost: oldParameters.executionEffortCost) FlowFees.setFeeParameters(newParameters) @@ -56,13 +56,13 @@ pub contract FlowFees { } /// A struct holding the fee parameters needed to calculate the fees - pub struct FeeParameters { + access(all) struct FeeParameters { /// The surge factor is used to make transaction fees respond to high loads on the network - pub var surgeFactor: UFix64 + access(all) var surgeFactor: UFix64 /// The FLOW cost of one unit of inclusion effort. The FVM is responsible for metering inclusion effort. - pub var inclusionEffortCost: UFix64 + access(all) var inclusionEffortCost: UFix64 /// The FLOW cost of one unit of execution effort. The FVM is responsible for metering execution effort. - pub var executionEffortCost: UFix64 + access(all) var executionEffortCost: UFix64 init(surgeFactor: UFix64, inclusionEffortCost: UFix64, executionEffortCost: UFix64){ self.surgeFactor = surgeFactor @@ -72,15 +72,15 @@ pub contract FlowFees { } // VerifyPayerBalanceResult is returned by the verifyPayersBalanceForTransactionExecution function - pub struct VerifyPayerBalanceResult { + access(all) struct VerifyPayerBalanceResult { // True if the payer has sufficient balance for the transaction execution to continue - pub let canExecuteTransaction: Bool + access(all) let canExecuteTransaction: Bool // The minimum payer balance required for the transaction execution to continue. // This value is defined by verifyPayersBalanceForTransactionExecution. - pub let requiredBalance: UFix64 + access(all) let requiredBalance: UFix64 // The maximum transaction fees (inclusion fees + execution fees) the transaction can incur // (if all available execution effort is used) - pub let maximumTransactionFees: UFix64 + access(all) let maximumTransactionFees: UFix64 init(canExecuteTransaction: Bool, requiredBalance: UFix64, maximumTransactionFees: UFix64){ self.canExecuteTransaction = canExecuteTransaction @@ -97,7 +97,7 @@ pub contract FlowFees { // // The requiredBalance balance is defined as the minimum account balance + // maximum transaction fees (inclusion fees + execution fees at max execution effort). - pub fun verifyPayersBalanceForTransactionExecution( + access(all) fun verifyPayersBalanceForTransactionExecution( _ payerAcct: AuthAccount, inclusionEffort: UFix64, maxExecutionEffort: UFix64, @@ -133,7 +133,7 @@ pub contract FlowFees { /// Called when a transaction is submitted to deduct the fee /// from the AuthAccount that submitted it - pub fun deductTransactionFee(_ acct: AuthAccount, inclusionEffort: UFix64, executionEffort: UFix64) { + access(all) fun deductTransactionFee(_ acct: AuthAccount, inclusionEffort: UFix64, executionEffort: UFix64) { var feeAmount = self.computeFees(inclusionEffort: inclusionEffort, executionEffort: executionEffort) if feeAmount == UFix64(0) { @@ -142,7 +142,7 @@ pub contract FlowFees { return } - let tokenVault = acct.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) + let tokenVault = acct.borrow(from: /storage/flowTokenVault) ?? panic("Unable to borrow reference to the default token vault") @@ -162,7 +162,7 @@ pub contract FlowFees { emit FeesDeducted(amount: feeAmount, inclusionEffort: inclusionEffort, executionEffort: executionEffort) } - pub fun getFeeParameters(): FeeParameters { + access(all) fun getFeeParameters(): FeeParameters { return self.account.copy(from: /storage/FlowTxFeeParameters) ?? panic("Error getting tx fee parameters. They need to be initialized first!") } @@ -175,7 +175,7 @@ pub contract FlowFees { // compute the transaction fees with the current fee parameters and the given inclusionEffort and executionEffort - pub fun computeFees(inclusionEffort: UFix64, executionEffort: UFix64): UFix64 { + access(all) fun computeFees(inclusionEffort: UFix64, executionEffort: UFix64): UFix64 { let params = self.getFeeParameters() let totalFees = params.surgeFactor * ( inclusionEffort * params.inclusionEffortCost + executionEffort * params.executionEffortCost ) diff --git a/contracts/FlowIDTableStaking.cdc b/contracts/FlowIDTableStaking.cdc index 9b6e2d79a..21ab8b75d 100644 --- a/contracts/FlowIDTableStaking.cdc +++ b/contracts/FlowIDTableStaking.cdc @@ -32,43 +32,43 @@ import FlowToken from 0xFLOWTOKENADDRESS import FlowFees from 0xFLOWFEESADDRESS import Crypto -pub contract FlowIDTableStaking { +access(all) contract FlowIDTableStaking { /****** ID Table and Staking Events ******/ - pub event NewEpoch(totalStaked: UFix64, totalRewardPayout: UFix64) - pub event EpochTotalRewardsPaid(total: UFix64, fromFees: UFix64, minted: UFix64, feesBurned: UFix64) + access(all) event NewEpoch(totalStaked: UFix64, totalRewardPayout: UFix64) + access(all) event EpochTotalRewardsPaid(total: UFix64, fromFees: UFix64, minted: UFix64, feesBurned: UFix64) /// Node Events - pub event NewNodeCreated(nodeID: String, role: UInt8, amountCommitted: UFix64) - pub event TokensCommitted(nodeID: String, amount: UFix64) - pub event TokensStaked(nodeID: String, amount: UFix64) - pub event NodeTokensRequestedToUnstake(nodeID: String, amount: UFix64) - pub event TokensUnstaking(nodeID: String, amount: UFix64) - pub event TokensUnstaked(nodeID: String, amount: UFix64) - pub event NodeRemovedAndRefunded(nodeID: String, amount: UFix64) - pub event RewardsPaid(nodeID: String, amount: UFix64) - pub event UnstakedTokensWithdrawn(nodeID: String, amount: UFix64) - pub event RewardTokensWithdrawn(nodeID: String, amount: UFix64) - pub event NetworkingAddressUpdated(nodeID: String, newAddress: String) - pub event NodeWeightChanged(nodeID: String, newWeight: UInt64) + access(all) event NewNodeCreated(nodeID: String, role: UInt8, amountCommitted: UFix64) + access(all) event TokensCommitted(nodeID: String, amount: UFix64) + access(all) event TokensStaked(nodeID: String, amount: UFix64) + access(all) event NodeTokensRequestedToUnstake(nodeID: String, amount: UFix64) + access(all) event TokensUnstaking(nodeID: String, amount: UFix64) + access(all) event TokensUnstaked(nodeID: String, amount: UFix64) + access(all) event NodeRemovedAndRefunded(nodeID: String, amount: UFix64) + access(all) event RewardsPaid(nodeID: String, amount: UFix64) + access(all) event UnstakedTokensWithdrawn(nodeID: String, amount: UFix64) + access(all) event RewardTokensWithdrawn(nodeID: String, amount: UFix64) + access(all) event NetworkingAddressUpdated(nodeID: String, newAddress: String) + access(all) event NodeWeightChanged(nodeID: String, newWeight: UInt64) /// Delegator Events - pub event NewDelegatorCreated(nodeID: String, delegatorID: UInt32) - pub event DelegatorTokensCommitted(nodeID: String, delegatorID: UInt32, amount: UFix64) - pub event DelegatorTokensStaked(nodeID: String, delegatorID: UInt32, amount: UFix64) - pub event DelegatorTokensRequestedToUnstake(nodeID: String, delegatorID: UInt32, amount: UFix64) - pub event DelegatorTokensUnstaking(nodeID: String, delegatorID: UInt32, amount: UFix64) - pub event DelegatorTokensUnstaked(nodeID: String, delegatorID: UInt32, amount: UFix64) - pub event DelegatorRewardsPaid(nodeID: String, delegatorID: UInt32, amount: UFix64) - pub event DelegatorUnstakedTokensWithdrawn(nodeID: String, delegatorID: UInt32, amount: UFix64) - pub event DelegatorRewardTokensWithdrawn(nodeID: String, delegatorID: UInt32, amount: UFix64) + access(all) event NewDelegatorCreated(nodeID: String, delegatorID: UInt32) + access(all) event DelegatorTokensCommitted(nodeID: String, delegatorID: UInt32, amount: UFix64) + access(all) event DelegatorTokensStaked(nodeID: String, delegatorID: UInt32, amount: UFix64) + access(all) event DelegatorTokensRequestedToUnstake(nodeID: String, delegatorID: UInt32, amount: UFix64) + access(all) event DelegatorTokensUnstaking(nodeID: String, delegatorID: UInt32, amount: UFix64) + access(all) event DelegatorTokensUnstaked(nodeID: String, delegatorID: UInt32, amount: UFix64) + access(all) event DelegatorRewardsPaid(nodeID: String, delegatorID: UInt32, amount: UFix64) + access(all) event DelegatorUnstakedTokensWithdrawn(nodeID: String, delegatorID: UInt32, amount: UFix64) + access(all) event DelegatorRewardTokensWithdrawn(nodeID: String, delegatorID: UInt32, amount: UFix64) /// Contract Field Change Events - pub event NewDelegatorCutPercentage(newCutPercentage: UFix64) - pub event NewWeeklyPayout(newPayout: UFix64) - pub event NewStakingMinimums(newMinimums: {UInt8: UFix64}) - pub event NewDelegatorStakingMinimum(newMinimum: UFix64) + access(all) event NewDelegatorCutPercentage(newCutPercentage: UFix64) + access(all) event NewWeeklyPayout(newPayout: UFix64) + access(all) event NewStakingMinimums(newMinimums: {UInt8: UFix64}) + access(all) event NewDelegatorStakingMinimum(newMinimum: UFix64) /// Holds the identity table for all the nodes in the network. /// Includes nodes that aren't actively participating @@ -105,19 +105,19 @@ pub contract FlowIDTableStaking { access(account) var nodeDelegatingRewardCut: UFix64 /// Paths for storing staking resources - pub let NodeStakerStoragePath: StoragePath - pub let NodeStakerPublicPath: PublicPath - pub let StakingAdminStoragePath: StoragePath - pub let DelegatorStoragePath: StoragePath + access(all) let NodeStakerStoragePath: StoragePath + access(all) let NodeStakerPublicPath: PublicPath + access(all) let StakingAdminStoragePath: StoragePath + access(all) let DelegatorStoragePath: StoragePath /*********** ID Table and Staking Composite Type Definitions *************/ /// Contains information that is specific to a node in Flow - pub resource NodeRecord { + access(all) resource NodeRecord { /// The unique ID of the node /// Set when the node is created - pub let id: String + access(all) let id: String /// The type of node: /// 1 = collection @@ -125,43 +125,43 @@ pub contract FlowIDTableStaking { /// 3 = execution /// 4 = verification /// 5 = access - pub var role: UInt8 + access(all) var role: UInt8 - pub(set) var networkingAddress: String - pub(set) var networkingKey: String - pub(set) var stakingKey: String + access(all) var networkingAddress: String + access(all) var networkingKey: String + access(all) var stakingKey: String /// TODO: Proof of Possession (PoP) of the staking private key /// The total tokens that only this node currently has staked, not including delegators /// This value must always be above the minimum requirement to stay staked or accept delegators - pub var tokensStaked: @FlowToken.Vault + access(all) var tokensStaked: @FlowToken.Vault /// The tokens that this node has committed to stake for the next epoch. /// Moves to the tokensStaked bucket at the end of an epoch - pub var tokensCommitted: @FlowToken.Vault + access(all) var tokensCommitted: @FlowToken.Vault /// The tokens that this node has unstaked from the previous epoch /// Moves to the tokensUnstaked bucket at the end of an epoch. - pub var tokensUnstaking: @FlowToken.Vault + access(all) var tokensUnstaking: @FlowToken.Vault /// Tokens that this node has unstaked and are able to withdraw whenever they want - pub var tokensUnstaked: @FlowToken.Vault + access(all) var tokensUnstaked: @FlowToken.Vault /// Staking rewards are paid to this bucket - pub var tokensRewarded: @FlowToken.Vault + access(all) var tokensRewarded: @FlowToken.Vault /// list of delegators for this node operator - pub let delegators: @{UInt32: DelegatorRecord} + access(all) let delegators: @{UInt32: DelegatorRecord} /// The incrementing ID used to register new delegators - pub(set) var delegatorIDCounter: UInt32 + access(all) var delegatorIDCounter: UInt32 /// The amount of tokens that this node has requested to unstake for the next epoch - pub(set) var tokensRequestedToUnstake: UFix64 + access(all) var tokensRequestedToUnstake: UFix64 /// weight as determined by the amount staked after the staking auction - pub(set) var initialWeight: UInt64 + access(all) var initialWeight: UInt64 init( id: String, @@ -266,23 +266,23 @@ pub contract FlowIDTableStaking { } /// Struct to create to get read-only info about a node - pub struct NodeInfo { - pub let id: String - pub let role: UInt8 - pub let networkingAddress: String - pub let networkingKey: String - pub let stakingKey: String - pub let tokensStaked: UFix64 - pub let tokensCommitted: UFix64 - pub let tokensUnstaking: UFix64 - pub let tokensUnstaked: UFix64 - pub let tokensRewarded: UFix64 + access(all) struct NodeInfo { + access(all) let id: String + access(all) let role: UInt8 + access(all) let networkingAddress: String + access(all) let networkingKey: String + access(all) let stakingKey: String + access(all) let tokensStaked: UFix64 + access(all) let tokensCommitted: UFix64 + access(all) let tokensUnstaking: UFix64 + access(all) let tokensUnstaked: UFix64 + access(all) let tokensRewarded: UFix64 /// list of delegator IDs for this node operator - pub let delegators: [UInt32] - pub let delegatorIDCounter: UInt32 - pub let tokensRequestedToUnstake: UFix64 - pub let initialWeight: UInt64 + access(all) let delegators: [UInt32] + access(all) let delegatorIDCounter: UInt32 + access(all) let tokensRequestedToUnstake: UFix64 + access(all) let initialWeight: UInt64 init(nodeID: String) { let nodeRecord = FlowIDTableStaking.borrowNodeRecord(nodeID) @@ -304,7 +304,7 @@ pub contract FlowIDTableStaking { } /// Derived Fields - pub fun totalCommittedWithDelegators(): UFix64 { + access(all) fun totalCommittedWithDelegators(): UFix64 { let nodeRecord = FlowIDTableStaking.borrowNodeRecord(self.id) var committedSum = self.totalCommittedWithoutDelegators() for delegator in self.delegators { @@ -314,12 +314,12 @@ pub contract FlowIDTableStaking { return committedSum } - pub fun totalCommittedWithoutDelegators(): UFix64 { + access(all) fun totalCommittedWithoutDelegators(): UFix64 { let nodeRecord = FlowIDTableStaking.borrowNodeRecord(self.id) return nodeRecord.nodeFullCommittedBalance() } - pub fun totalStakedWithDelegators(): UFix64 { + access(all) fun totalStakedWithDelegators(): UFix64 { let nodeRecord = FlowIDTableStaking.borrowNodeRecord(self.id) var stakedSum = self.tokensStaked for delegator in self.delegators { @@ -329,31 +329,31 @@ pub contract FlowIDTableStaking { return stakedSum } - pub fun totalTokensInRecord(): UFix64 { + access(all) fun totalTokensInRecord(): UFix64 { return self.tokensStaked + self.tokensCommitted + self.tokensUnstaking + self.tokensUnstaked + self.tokensRewarded } } /// Records the staking info associated with a delegator /// This resource is stored in the NodeRecord object that is being delegated to - pub resource DelegatorRecord { + access(all) resource DelegatorRecord { /// Tokens this delegator has committed for the next epoch - pub var tokensCommitted: @FlowToken.Vault + access(all) var tokensCommitted: @FlowToken.Vault /// Tokens this delegator has staked for the current epoch - pub var tokensStaked: @FlowToken.Vault + access(all) var tokensStaked: @FlowToken.Vault /// Tokens this delegator has requested to unstake and is locked for the current epoch - pub var tokensUnstaking: @FlowToken.Vault + access(all) var tokensUnstaking: @FlowToken.Vault /// Tokens this delegator has been rewarded and can withdraw - pub let tokensRewarded: @FlowToken.Vault + access(all) let tokensRewarded: @FlowToken.Vault /// Tokens that this delegator unstaked and can withdraw - pub let tokensUnstaked: @FlowToken.Vault + access(all) let tokensUnstaked: @FlowToken.Vault /// Amount of tokens that the delegator has requested to unstake - pub(set) var tokensRequestedToUnstake: UFix64 + access(all) var tokensRequestedToUnstake: UFix64 init() { self.tokensCommitted <- FlowToken.createEmptyVault() as! @FlowToken.Vault @@ -383,15 +383,15 @@ pub contract FlowIDTableStaking { } /// Struct that can be returned to show all the info about a delegator - pub struct DelegatorInfo { - pub let id: UInt32 - pub let nodeID: String - pub let tokensCommitted: UFix64 - pub let tokensStaked: UFix64 - pub let tokensUnstaking: UFix64 - pub let tokensRewarded: UFix64 - pub let tokensUnstaked: UFix64 - pub let tokensRequestedToUnstake: UFix64 + access(all) struct DelegatorInfo { + access(all) let id: UInt32 + access(all) let nodeID: String + access(all) let tokensCommitted: UFix64 + access(all) let tokensStaked: UFix64 + access(all) let tokensUnstaking: UFix64 + access(all) let tokensRewarded: UFix64 + access(all) let tokensUnstaked: UFix64 + access(all) let tokensRequestedToUnstake: UFix64 init(nodeID: String, delegatorID: UInt32) { let nodeRecord = FlowIDTableStaking.borrowNodeRecord(nodeID) @@ -406,20 +406,20 @@ pub contract FlowIDTableStaking { self.tokensRequestedToUnstake = delegatorRecord.tokensRequestedToUnstake } - pub fun totalTokensInRecord(): UFix64 { + access(all) fun totalTokensInRecord(): UFix64 { return self.tokensStaked + self.tokensCommitted + self.tokensUnstaking + self.tokensUnstaked + self.tokensRewarded } } - pub resource interface NodeStakerPublic { - pub let id: String + access(all) resource interface NodeStakerPublic { + access(all) let id: String } /// Resource that the node operator controls for staking - pub resource NodeStaker: NodeStakerPublic { + access(all) resource NodeStaker: NodeStakerPublic { /// Unique ID for the node operator - pub let id: String + access(all) let id: String init(id: String) { self.id = id @@ -438,7 +438,7 @@ pub contract FlowIDTableStaking { } /// Change the node's networking address to a new one - pub fun updateNetworkingAddress(_ newAddress: String) { + access(all) fun updateNetworkingAddress(_ newAddress: String) { pre { FlowIDTableStaking.stakingEnabled(): "Cannot update networking address if the staking auction isn't in progress" newAddress.length > 0 && newAddress.length <= 510: "The networkingAddress must be less than 510 characters" @@ -458,7 +458,7 @@ pub contract FlowIDTableStaking { } /// Add new tokens to the system to stake during the next epoch - pub fun stakeNewTokens(_ tokens: @FungibleToken.Vault) { + access(all) fun stakeNewTokens(_ tokens: @FungibleToken.Vault) { pre { FlowIDTableStaking.stakingEnabled(): "Cannot stake if the staking auction isn't in progress" } @@ -481,7 +481,7 @@ pub contract FlowIDTableStaking { } /// Stake tokens that are in the tokensUnstaked bucket - pub fun stakeUnstakedTokens(amount: UFix64) { + access(all) fun stakeUnstakedTokens(amount: UFix64) { pre { FlowIDTableStaking.stakingEnabled(): "Cannot stake if the staking auction isn't in progress" } @@ -515,7 +515,7 @@ pub contract FlowIDTableStaking { } /// Stake tokens that are in the tokensRewarded bucket - pub fun stakeRewardedTokens(amount: UFix64) { + access(all) fun stakeRewardedTokens(amount: UFix64) { pre { FlowIDTableStaking.stakingEnabled(): "Cannot stake if the staking auction isn't in progress" } @@ -536,7 +536,7 @@ pub contract FlowIDTableStaking { } /// Request amount tokens to be removed from staking at the end of the next epoch - pub fun requestUnstaking(amount: UFix64) { + access(all) fun requestUnstaking(amount: UFix64) { pre { FlowIDTableStaking.stakingEnabled(): "Cannot unstake if the staking auction isn't in progress" } @@ -594,7 +594,7 @@ pub contract FlowIDTableStaking { /// Requests to unstake all of the node operators staked and committed tokens /// as well as all the staked and committed tokens of all of their delegators - pub fun unstakeAll() { + access(all) fun unstakeAll() { pre { FlowIDTableStaking.stakingEnabled(): "Cannot unstake if the staking auction isn't in progress" } @@ -624,7 +624,7 @@ pub contract FlowIDTableStaking { } /// Withdraw tokens from the unstaked bucket - pub fun withdrawUnstakedTokens(amount: UFix64): @FungibleToken.Vault { + access(all) fun withdrawUnstakedTokens(amount: UFix64): @FungibleToken.Vault { let nodeRecord = FlowIDTableStaking.borrowNodeRecord(self.id) emit UnstakedTokensWithdrawn(nodeID: nodeRecord.id, amount: amount) @@ -633,7 +633,7 @@ pub contract FlowIDTableStaking { } /// Withdraw tokens from the rewarded bucket - pub fun withdrawRewardedTokens(amount: UFix64): @FungibleToken.Vault { + access(all) fun withdrawRewardedTokens(amount: UFix64): @FungibleToken.Vault { let nodeRecord = FlowIDTableStaking.borrowNodeRecord(self.id) emit RewardTokensWithdrawn(nodeID: nodeRecord.id, amount: amount) @@ -644,16 +644,16 @@ pub contract FlowIDTableStaking { /// Public interface to query information about a delegator /// from the account it is stored in - pub resource interface NodeDelegatorPublic { - pub let id: UInt32 - pub let nodeID: String + access(all) resource interface NodeDelegatorPublic { + access(all) let id: UInt32 + access(all) let nodeID: String } /// Resource object that the delegator stores in their account to perform staking actions - pub resource NodeDelegator: NodeDelegatorPublic { + access(all) resource NodeDelegator: NodeDelegatorPublic { - pub let id: UInt32 - pub let nodeID: String + access(all) let id: UInt32 + access(all) let nodeID: String init(id: UInt32, nodeID: String) { self.id = id @@ -661,7 +661,7 @@ pub contract FlowIDTableStaking { } /// Delegate new tokens to the node operator - pub fun delegateNewTokens(from: @FungibleToken.Vault) { + access(all) fun delegateNewTokens(from: @FungibleToken.Vault) { pre { FlowIDTableStaking.stakingEnabled(): "Cannot delegate if the staking auction isn't in progress" } @@ -679,7 +679,7 @@ pub contract FlowIDTableStaking { } /// Delegate tokens from the unstaked bucket to the node operator - pub fun delegateUnstakedTokens(amount: UFix64) { + access(all) fun delegateUnstakedTokens(amount: UFix64) { pre { FlowIDTableStaking.stakingEnabled(): "Cannot delegate if the staking auction isn't in progress" } @@ -708,7 +708,7 @@ pub contract FlowIDTableStaking { } /// Delegate tokens from the rewards bucket to the node operator - pub fun delegateRewardedTokens(amount: UFix64) { + access(all) fun delegateRewardedTokens(amount: UFix64) { pre { FlowIDTableStaking.stakingEnabled(): "Cannot delegate if the staking auction isn't in progress" } @@ -724,7 +724,7 @@ pub contract FlowIDTableStaking { } /// Request to unstake delegated tokens during the next epoch - pub fun requestUnstaking(amount: UFix64) { + access(all) fun requestUnstaking(amount: UFix64) { pre { FlowIDTableStaking.stakingEnabled(): "Cannot request unstaking if the staking auction isn't in progress" } @@ -766,7 +766,7 @@ pub contract FlowIDTableStaking { } /// Withdraw tokens from the unstaked bucket - pub fun withdrawUnstakedTokens(amount: UFix64): @FungibleToken.Vault { + access(all) fun withdrawUnstakedTokens(amount: UFix64): @FungibleToken.Vault { let nodeRecord = FlowIDTableStaking.borrowNodeRecord(self.nodeID) let delRecord = nodeRecord.borrowDelegatorRecord(self.id) @@ -776,7 +776,7 @@ pub contract FlowIDTableStaking { } /// Withdraw tokens from the rewarded bucket - pub fun withdrawRewardedTokens(amount: UFix64): @FungibleToken.Vault { + access(all) fun withdrawRewardedTokens(amount: UFix64): @FungibleToken.Vault { let nodeRecord = FlowIDTableStaking.borrowNodeRecord(self.nodeID) let delRecord = nodeRecord.borrowDelegatorRecord(self.id) @@ -788,9 +788,9 @@ pub contract FlowIDTableStaking { /// Includes all the rewards breakdowns for all the nodes and delegators for a specific epoch /// as well as the total amount of tokens to be minted for rewards - pub struct EpochRewardsSummary { - pub let totalRewards: UFix64 - pub let breakdown: [RewardsBreakdown] + access(all) struct EpochRewardsSummary { + access(all) let totalRewards: UFix64 + access(all) let breakdown: [RewardsBreakdown] init(totalRewards: UFix64, breakdown: [RewardsBreakdown]) { self.totalRewards = totalRewards @@ -799,10 +799,10 @@ pub contract FlowIDTableStaking { } /// Details the rewards breakdown for an individual node and its delegators - pub struct RewardsBreakdown { - pub let nodeID: String - pub(set) var nodeRewards: UFix64 - pub let delegatorRewards: {UInt32: UFix64} + access(all) struct RewardsBreakdown { + access(all) let nodeID: String + access(all) var nodeRewards: UFix64 + access(all) let delegatorRewards: {UInt32: UFix64} init(nodeID: String) { self.nodeID = nodeID @@ -811,18 +811,18 @@ pub contract FlowIDTableStaking { } /// Scale the rewards of a single delegator by a scaling factor - pub fun scaleDelegatorRewards(delegatorID: UInt32, scalingFactor: UFix64) { + access(all) fun scaleDelegatorRewards(delegatorID: UInt32, scalingFactor: UFix64) { if let reward = self.delegatorRewards[delegatorID] { self.delegatorRewards[delegatorID] = reward * scalingFactor } } - pub fun scaleOperatorRewards(scalingFactor: UFix64) { + access(all) fun scaleOperatorRewards(scalingFactor: UFix64) { self.nodeRewards = self.nodeRewards * scalingFactor } /// Scale the rewards of all the stakers in the record - pub fun scaleAllRewards(scalingFactor: UFix64) { + access(all) fun scaleAllRewards(scalingFactor: UFix64) { self.scaleOperatorRewards(scalingFactor: scalingFactor) for id in self.delegatorRewards.keys { self.scaleDelegatorRewards(delegatorID: id, scalingFactor: scalingFactor) @@ -830,7 +830,7 @@ pub contract FlowIDTableStaking { } /// Sets the reward amount for a specific delegator of this node - pub fun setDelegatorReward(delegatorID: UInt32, rewards: UFix64) { + access(all) fun setDelegatorReward(delegatorID: UInt32, rewards: UFix64) { self.delegatorRewards[delegatorID] = rewards } } @@ -838,24 +838,24 @@ pub contract FlowIDTableStaking { /// Interface that only contains operations that are part /// of the regular automated functioning of the epoch process /// These are accessed by the `FlowEpoch` contract through a capability - pub resource interface EpochOperations { - pub fun setEpochTokenPayout(_ newPayout: UFix64) - pub fun setSlotLimits(slotLimits: {UInt8: UInt16}) - pub fun setNodeWeight(nodeID: String, weight: UInt64) - pub fun startStakingAuction() - pub fun endStakingAuction() - pub fun payRewards(_ rewardsSummary: EpochRewardsSummary) - pub fun calculateRewards(): EpochRewardsSummary - pub fun moveTokens() + access(all) resource interface EpochOperations { + access(all) fun setEpochTokenPayout(_ newPayout: UFix64) + access(all) fun setSlotLimits(slotLimits: {UInt8: UInt16}) + access(all) fun setNodeWeight(nodeID: String, weight: UInt64) + access(all) fun startStakingAuction() + access(all) fun endStakingAuction() + access(all) fun payRewards(_ rewardsSummary: EpochRewardsSummary) + access(all) fun calculateRewards(): EpochRewardsSummary + access(all) fun moveTokens() } /// Admin resource that has the ability to create new staker objects, remove insufficiently staked nodes /// at the end of the staking auction, and pay rewards to nodes at the end of an epoch - pub resource Admin: EpochOperations { + access(all) resource Admin: EpochOperations { /// Sets a new set of minimum staking requirements for all the nodes /// Nodes' indexes are their role numbers - pub fun setMinimumStakeRequirements(_ newRequirements: {UInt8: UFix64}) { + access(all) fun setMinimumStakeRequirements(_ newRequirements: {UInt8: UFix64}) { pre { newRequirements.keys.length == 5: "There must be six entries for node minimum stake requirements" @@ -865,7 +865,7 @@ pub contract FlowIDTableStaking { } /// Sets a new set of minimum staking requirements for all the delegators - pub fun setDelegatorMinimumStakeRequirement(_ newRequirement: UFix64) { + access(all) fun setDelegatorMinimumStakeRequirement(_ newRequirement: UFix64) { FlowIDTableStaking.account.load(from: /storage/delegatorStakingMinimum) FlowIDTableStaking.account.save(newRequirement, to: /storage/delegatorStakingMinimum) @@ -873,7 +873,7 @@ pub contract FlowIDTableStaking { } /// Changes the total weekly payout to a new value - pub fun setEpochTokenPayout(_ newPayout: UFix64) { + access(all) fun setEpochTokenPayout(_ newPayout: UFix64) { if newPayout != FlowIDTableStaking.epochTokenPayout { emit NewWeeklyPayout(newPayout: newPayout) } @@ -881,7 +881,7 @@ pub contract FlowIDTableStaking { } /// Sets a new delegator cut percentage that nodes take from delegator rewards - pub fun setCutPercentage(_ newCutPercentage: UFix64) { + access(all) fun setCutPercentage(_ newCutPercentage: UFix64) { pre { newCutPercentage > 0.0 && newCutPercentage < 1.0: "Cut percentage must be between 0 and 1!" @@ -893,7 +893,7 @@ pub contract FlowIDTableStaking { } /// Sets new limits to the number of candidate nodes for an epoch - pub fun setCandidateNodeLimit(role: UInt8, newLimit: UInt64) { + access(all) fun setCandidateNodeLimit(role: UInt8, newLimit: UInt64) { pre { role >= UInt8(1) && role <= UInt8(5): "The role must be 1, 2, 3, 4, or 5" } @@ -907,7 +907,7 @@ pub contract FlowIDTableStaking { /// The slot limit limits the number of participant nodes with the given role which may be added to the network. /// It only prevents candidate nodes from joining. It does not cause existing participant nodes to unstake, /// even if the number of participant nodes exceeds the slot limit. - pub fun setSlotLimits(slotLimits: {UInt8: UInt16}) { + access(all) fun setSlotLimits(slotLimits: {UInt8: UInt16}) { pre { slotLimits.keys.length == 5: "Slot Limits Dictionary can only have 5 entries" slotLimits[UInt8(1)] != nil: "Need to have a limit set for collector nodes" @@ -928,7 +928,7 @@ pub contract FlowIDTableStaking { /// The parameter is a dictionary mapping node IDs /// to a percentage, which is the percentage of their expected rewards that /// they will receive instead of the full amount - pub fun setNonOperationalNodesList(_ nodeIDs: {String: UFix64}) { + access(all) fun setNonOperationalNodesList(_ nodeIDs: {String: UFix64}) { for percentage in nodeIDs.values { assert( percentage >= 0.0 && percentage < 1.0, @@ -943,7 +943,7 @@ pub contract FlowIDTableStaking { /// Allows the protocol to set a specific weight for a node /// if their staked amount changes or if they are removed - pub fun setNodeWeight(nodeID: String, weight: UInt64) { + access(all) fun setNodeWeight(nodeID: String, weight: UInt64) { if weight > 100 { panic("Specified node weight out of range.") } @@ -957,7 +957,7 @@ pub contract FlowIDTableStaking { /// Sets a list of approved node IDs for the next epoch /// Nodes not on this list will be unstaked at the end of the staking auction /// and not considered to be a proposed/staked node - pub fun setApprovedList(_ newApproveList: {String: Bool}) { + access(all) fun setApprovedList(_ newApproveList: {String: Bool}) { let currentApproveList = FlowIDTableStaking.getApprovedList() ?? panic("Could not load approve list from storage") @@ -1049,7 +1049,7 @@ pub contract FlowIDTableStaking { /// Removes nodes by setting their weight to zero and refunding /// staked and delegated tokens. - pub fun removeAndRefundNodeRecord(_ nodeID: String) { + access(all) fun removeAndRefundNodeRecord(_ nodeID: String) { // remove the refunded node from the approve list let approveList = FlowIDTableStaking.getApprovedList() ?? panic("Could not load approve list from storage") @@ -1062,14 +1062,14 @@ pub contract FlowIDTableStaking { /// Starts the staking auction, the period when nodes and delegators /// are allowed to perform staking related operations - pub fun startStakingAuction() { + access(all) fun startStakingAuction() { FlowIDTableStaking.account.load(from: /storage/stakingEnabled) FlowIDTableStaking.account.save(true, to: /storage/stakingEnabled) } /// Ends the staking Auction by removing any unapproved nodes /// and setting stakingEnabled to false - pub fun endStakingAuction() { + access(all) fun endStakingAuction() { let approvedNodeIDs = FlowIDTableStaking.getApprovedList() ?? panic("Could not read the approve list from storage") @@ -1089,7 +1089,7 @@ pub contract FlowIDTableStaking { /// by the protocol to be a staker for the next epoch. The node software /// checks if the node that corresponds to each proposed ID is running properly /// and that its node info is correct - pub fun removeInvalidNodes(approvedNodeIDs: {String: Bool}) { + access(all) fun removeInvalidNodes(approvedNodeIDs: {String: Bool}) { let movesPendingList = FlowIDTableStaking.getMovesPendingList() ?? panic("Could not copy moves pending list from storage") @@ -1139,7 +1139,7 @@ pub contract FlowIDTableStaking { /// All candidate nodes left staked after this function exits are implicitly selected to fill the /// available slots, and will become participants at the next epoch transition. /// - pub fun fillNodeRoleSlots() { + access(all) fun fillNodeRoleSlots() { var currentNodeCount: {UInt8: UInt16} = FlowIDTableStaking.getCurrentRoleNodeCounts() @@ -1204,7 +1204,7 @@ pub contract FlowIDTableStaking { /// Called at the end of the epoch to pay rewards to node operators /// based on the tokens that they have staked - pub fun payRewards(_ rewardsSummary: EpochRewardsSummary) { + access(all) fun payRewards(_ rewardsSummary: EpochRewardsSummary) { let rewardsBreakdownArray = rewardsSummary.breakdown let totalRewards = rewardsSummary.totalRewards @@ -1269,7 +1269,7 @@ pub contract FlowIDTableStaking { } /// Calculates rewards for all the staked node operators and delegators - pub fun calculateRewards(): EpochRewardsSummary { + access(all) fun calculateRewards(): EpochRewardsSummary { let stakedNodeIDs: {String: Bool} = FlowIDTableStaking.getParticipantNodeList()! // Get the sum of all tokens staked @@ -1393,7 +1393,7 @@ pub contract FlowIDTableStaking { /// Tokens that have been committed are moved to the staked bucket /// Tokens that were unstaking during the last epoch are fully unstaked /// Unstaking requests are filled by moving those tokens from staked to unstaking - pub fun moveTokens() { + access(all) fun moveTokens() { pre { !FlowIDTableStaking.stakingEnabled(): "Cannot move tokens if the staking auction is still in progress" } @@ -1507,7 +1507,7 @@ pub contract FlowIDTableStaking { /// Any user can call this function to register a new Node /// It returns the resource for nodes that they can store in their account storage - pub fun addNodeRecord(id: String, + access(all) fun addNodeRecord(id: String, role: UInt8, networkingAddress: String, networkingKey: String, @@ -1544,7 +1544,7 @@ pub contract FlowIDTableStaking { /// Registers a new delegator with a unique ID for the specified node operator /// and returns a delegator object to the caller - pub fun registerNewDelegator(nodeID: String, tokensCommitted: @FungibleToken.Vault): @NodeDelegator { + access(all) fun registerNewDelegator(nodeID: String, tokensCommitted: @FungibleToken.Vault): @NodeDelegator { pre { FlowIDTableStaking.stakingEnabled(): "Cannot register a node operator if the staking auction isn't in progress" } @@ -1623,13 +1623,13 @@ pub contract FlowIDTableStaking { } /// Gets the current list of participant (staked in the current epoch) nodes as a dictionary. - pub view fun getParticipantNodeList(): {String: Bool}? { + access(all) view fun getParticipantNodeList(): {String: Bool}? { return self.account.copy<{String: Bool}>(from: /storage/idTableCurrentList) } /// Gets the current list of participant nodes (like getCurrentNodeList) but as a list /// Kept for backwards compatibility - pub view fun getStakedNodeIDs(): [String] { + access(all) view fun getStakedNodeIDs(): [String] { let nodeIDs = self.getParticipantNodeList()! return nodeIDs.keys } @@ -1666,7 +1666,7 @@ pub contract FlowIDTableStaking { /// Gets a list of node IDs who have pending token movements /// or who's delegators have pending movements - pub view fun getMovesPendingList(): {String: {UInt32: Bool}}? { + access(all) view fun getMovesPendingList(): {String: {UInt32: Bool}}? { return self.account.copy<{String: {UInt32: Bool}}>(from: /storage/idTableMovesPendingList) } @@ -1677,7 +1677,7 @@ pub contract FlowIDTableStaking { /// The candidate node list is a dictionary that maps node roles /// to a list of node IDs of that role /// Gets the candidate node list size limits for each role - pub view fun getCandidateNodeLimits(): {UInt8: UInt64}? { + access(all) view fun getCandidateNodeLimits(): {UInt8: UInt64}? { return self.account.copy<{UInt8: UInt64}>(from: /storage/idTableCandidateNodeLimits) } @@ -1716,19 +1716,19 @@ pub contract FlowIDTableStaking { } /// Returns the current candidate node list - pub view fun getCandidateNodeList(): {UInt8: {String: Bool}} { + access(all) view fun getCandidateNodeList(): {UInt8: {String: Bool}} { return FlowIDTableStaking.account.copy<{UInt8: {String: Bool}}>(from: /storage/idTableCandidateNodes) ?? {1: {}, 2: {}, 3: {}, 4: {}, 5: {}} } /// Get slot (count) limits for each node role - pub view fun getRoleSlotLimits(): {UInt8: UInt16} { + access(all) fun getRoleSlotLimits(): {UInt8: UInt16} { return FlowIDTableStaking.account.copy<{UInt8: UInt16}>(from: /storage/flowStakingSlotLimits) ?? {1: 0, 2: 0, 3: 0, 4: 0, 5: 0} } /// Returns a dictionary that indicates how many participant nodes there are for each role - pub view fun getCurrentRoleNodeCounts(): {UInt8: UInt16} { + access(all) fun getCurrentRoleNodeCounts(): {UInt8: UInt16} { if let currentCounts = FlowIDTableStaking.account.copy<{UInt8: UInt16}>(from: /storage/flowStakingRoleNodeCounts) { return currentCounts } else { @@ -1747,7 +1747,7 @@ pub contract FlowIDTableStaking { /// Checks if the given string has all numbers or lowercase hex characters /// Used to ensure that there are no duplicate node IDs - pub view fun isValidNodeID(_ input: String): Bool { + access(all) view fun isValidNodeID(_ input: String): Bool { let byteVersion = input.utf8 for character in byteVersion { @@ -1760,7 +1760,7 @@ pub contract FlowIDTableStaking { } /// Indicates if the staking auction is currently enabled - pub view fun stakingEnabled(): Bool { + access(all) view fun stakingEnabled(): Bool { return self.account.copy(from: /storage/stakingEnabled) ?? false } @@ -1770,7 +1770,7 @@ pub contract FlowIDTableStaking { /// After the staking auction ends, specifically after unapproved nodes have been /// removed and slots have been filled and for the rest of the epoch, /// This list will accurately represent the nodes that will be in the next epoch - pub fun getProposedNodeIDs(): [String] { + access(all) fun getProposedNodeIDs(): [String] { let nodeIDs = FlowIDTableStaking.getNodeIDs() let approvedNodeIDs: {String: Bool} = FlowIDTableStaking.getApprovedList() @@ -1813,28 +1813,31 @@ pub contract FlowIDTableStaking { } /// Gets an array of all the node IDs that have ever registered - pub view fun getNodeIDs(): [String] { + access(all) view fun getNodeIDs(): [String] { return FlowIDTableStaking.nodes.keys } - /// Checks if the amount of tokens is greater - /// than the minimum staking requirement for the specified role - pub view fun isGreaterThanMinimumForRole(numTokens: UFix64, role: UInt8): Bool { - return numTokens >= self.minimumStakeRequired[role]! + /// Checks if the amount of tokens is greater than the minimum staking requirement + /// for the specified node role + access(all) view fun isGreaterThanMinimumForRole(numTokens: UFix64, role: UInt8): Bool { + let minimumStake = self.minimumStakeRequired[role] + ?? panic("Incorrect role provided for minimum stake. Must be 1, 2, 3, 4, or 5") + + return numTokens >= minimumStake } /// Indicates if the specified networking address is claimed by a node - pub view fun getNetworkingAddressClaimed(address: String): Bool { + access(all) view fun getNetworkingAddressClaimed(address: String): Bool { return self.getClaimed(path: /storage/networkingAddressesClaimed, key: address) } /// Indicates if the specified networking key is claimed by a node - pub view fun getNetworkingKeyClaimed(key: String): Bool { + access(all) view fun getNetworkingKeyClaimed(key: String): Bool { return self.getClaimed(path: /storage/networkingKeysClaimed, key: key) } /// Indicates if the specified staking key is claimed by a node - pub view fun getStakingKeyClaimed(key: String): Bool { + access(all) view fun getStakingKeyClaimed(key: String): Bool { return self.getClaimed(path: /storage/stakingKeysClaimed, key: key) } @@ -1846,37 +1849,36 @@ pub contract FlowIDTableStaking { } /// Returns the list of approved node IDs that the admin has set - pub view fun getApprovedList(): [String] { - return self.account.copy<[String]>(from: /storage/idTableApproveList) - ?? panic("could not get approved list") + access(all) view un getApprovedList(): {String: Bool}? { + return self.account.copy<{String: Bool}>(from: /storage/idTableApproveList) } /// Returns the list of node IDs whose rewards will be reduced in the next payment - pub view fun getNonOperationalNodesList(): {String: UFix64} { + access(all) view fun getNonOperationalNodesList(): {String: UFix64} { return self.account.copy<{String: UFix64}>(from: /storage/idTableNonOperationalNodesList) ?? panic("could not get non-operational node list") } /// Gets the minimum stake requirements for all the node types - pub view fun getMinimumStakeRequirements(): {UInt8: UFix64} { + access(all) view fun getMinimumStakeRequirements(): {UInt8: UFix64} { return self.minimumStakeRequired } /// Gets the minimum stake requirement for delegators - pub view fun getDelegatorMinimumStakeRequirement(): UFix64 { + access(all) fun getDelegatorMinimumStakeRequirement(): UFix64 { return self.account.copy(from: /storage/delegatorStakingMinimum) ?? 0.0 } /// Gets a dictionary that indicates the current number of tokens staked /// by all the nodes of each type - pub view fun getTotalTokensStakedByNodeType(): {UInt8: UFix64} { + access(all) view fun getTotalTokensStakedByNodeType(): {UInt8: UFix64} { return self.totalTokensStakedByNodeType } /// Gets the total number of FLOW that is currently staked /// by all of the staked nodes in the current epoch - pub view fun getTotalStaked(): UFix64 { + access(all) view fun getTotalStaked(): UFix64 { var totalStaked: UFix64 = 0.0 for nodeType in FlowIDTableStaking.totalTokensStakedByNodeType.keys { // Do not count access nodes @@ -1888,18 +1890,18 @@ pub contract FlowIDTableStaking { } /// Gets the token payout value for the current epoch - pub view fun getEpochTokenPayout(): UFix64 { + access(all) view fun getEpochTokenPayout(): UFix64 { return self.epochTokenPayout } /// Gets the cut percentage for delegator rewards paid to node operators - pub view fun getRewardCutPercentage(): UFix64 { + access(all) view fun getRewardCutPercentage(): UFix64 { return self.nodeDelegatingRewardCut } /// Gets the ratios of rewards that different node roles recieve /// NOTE: Currently is not used - pub view fun getRewardRatios(): {UInt8: UFix64} { + access(all) view fun getRewardRatios(): {UInt8: UFix64} { return self.rewardRatios } diff --git a/contracts/FlowServiceAccount.cdc b/contracts/FlowServiceAccount.cdc index 21efd9dd4..acc8ded6f 100644 --- a/contracts/FlowServiceAccount.cdc +++ b/contracts/FlowServiceAccount.cdc @@ -3,29 +3,29 @@ import FlowToken from 0xFLOWTOKENADDRESS import FlowFees from 0xFLOWFEESADDRESS import FlowStorageFees from 0xFLOWSTORAGEFEESADDRESS -pub contract FlowServiceAccount { +access(all) contract FlowServiceAccount { - pub event TransactionFeeUpdated(newFee: UFix64) + access(all) event TransactionFeeUpdated(newFee: UFix64) - pub event AccountCreationFeeUpdated(newFee: UFix64) + access(all) event AccountCreationFeeUpdated(newFee: UFix64) - pub event AccountCreatorAdded(accountCreator: Address) + access(all) event AccountCreatorAdded(accountCreator: Address) - pub event AccountCreatorRemoved(accountCreator: Address) + access(all) event AccountCreatorRemoved(accountCreator: Address) - pub event IsAccountCreationRestrictedUpdated(isRestricted: Bool) + access(all) event IsAccountCreationRestrictedUpdated(isRestricted: Bool) /// A fixed-rate fee charged to execute a transaction - pub var transactionFee: UFix64 + access(all) var transactionFee: UFix64 /// A fixed-rate fee charged to create a new account - pub var accountCreationFee: UFix64 + access(all) var accountCreationFee: UFix64 /// The list of account addresses that have permission to create accounts access(contract) var accountCreators: {Address: Bool} /// Initialize an account with a FlowToken Vault and publish capabilities. - pub fun initDefaultToken(_ acct: AuthAccount) { + access(all) fun initDefaultToken(_ acct: AuthAccount) { // Create a new FlowToken Vault and save it in storage acct.save(<-FlowToken.createEmptyVault(), to: /storage/flowTokenVault) @@ -47,7 +47,7 @@ pub contract FlowServiceAccount { /// Get the default token balance on an account /// /// Returns 0 if the account has no default balance - pub fun defaultTokenBalance(_ acct: PublicAccount): UFix64 { + access(all) fun defaultTokenBalance(_ acct: PublicAccount): UFix64 { var balance = 0.0 if let balanceRef = acct .getCapability(/public/flowTokenBalance) @@ -59,8 +59,8 @@ pub contract FlowServiceAccount { } /// Return a reference to the default token vault on an account - pub fun defaultTokenVault(_ acct: AuthAccount): &FlowToken.Vault { - return acct.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) + access(all) fun defaultTokenVault(_ acct: AuthAccount): auth(FungibleToken.Withdrawable) &FlowToken.Vault { + return acct.borrow(from: /storage/flowTokenVault) ?? panic("Unable to borrow reference to the default token vault") } @@ -68,7 +68,7 @@ pub contract FlowServiceAccount { /// /// Called when a transaction is submitted to deduct the fee /// from the AuthAccount that submitted it - pub fun deductTransactionFee(_ acct: AuthAccount) { + access(all) fun deductTransactionFee(_ acct: AuthAccount) { if self.transactionFee == UFix64(0) { return } @@ -86,7 +86,7 @@ pub contract FlowServiceAccount { /// - Deducts the account creation fee from a payer account. /// - Inits the default token. /// - Inits account storage capacity. - pub fun setupNewAccount(newAccount: AuthAccount, payer: AuthAccount) { + access(all) fun setupNewAccount(newAccount: AuthAccount, payer: AuthAccount) { if !FlowServiceAccount.isAccountCreator(payer.address) { panic("Account not authorized to create accounts") } @@ -109,7 +109,7 @@ pub contract FlowServiceAccount { } /// Returns true if the given address is permitted to create accounts, false otherwise - pub fun isAccountCreator(_ address: Address): Bool { + access(all) fun isAccountCreator(_ address: Address): Bool { // If account creation is not restricted, then anyone can create an account if !self.isAccountCreationRestricted() { return true @@ -118,39 +118,39 @@ pub contract FlowServiceAccount { } /// Is true if new acconts can only be created by approved accounts `self.accountCreators` - pub fun isAccountCreationRestricted(): Bool { + access(all) fun isAccountCreationRestricted(): Bool { return self.account.copy(from: /storage/isAccountCreationRestricted) ?? false } // Authorization resource to change the fields of the contract /// Returns all addresses permitted to create accounts - pub fun getAccountCreators(): [Address] { + access(all) fun getAccountCreators(): [Address] { return self.accountCreators.keys } // Gets Execution Effort Weights from the service account's storage - pub fun getExecutionEffortWeights(): {UInt64: UInt64} { + access(all) fun getExecutionEffortWeights(): {UInt64: UInt64} { return self.account.copy<{UInt64: UInt64}>(from: /storage/executionEffortWeights) ?? panic("execution effort weights not set yet") } // Gets Execution Memory Weights from the service account's storage - pub fun getExecutionMemoryWeights(): {UInt64: UInt64} { + access(all) fun getExecutionMemoryWeights(): {UInt64: UInt64} { return self.account.copy<{UInt64: UInt64}>(from: /storage/executionMemoryWeights) ?? panic("execution memory weights not set yet") } // Gets Execution Memory Limit from the service account's storage - pub fun getExecutionMemoryLimit(): UInt64 { + access(all) fun getExecutionMemoryLimit(): UInt64 { return self.account.copy(from: /storage/executionMemoryLimit) ?? panic("execution memory limit not set yet") } /// Authorization resource to change the fields of the contract - pub resource Administrator { + access(all) resource Administrator { /// Sets the transaction fee - pub fun setTransactionFee(_ newFee: UFix64) { + access(all) fun setTransactionFee(_ newFee: UFix64) { if newFee != FlowServiceAccount.transactionFee { emit TransactionFeeUpdated(newFee: newFee) } @@ -158,7 +158,7 @@ pub contract FlowServiceAccount { } /// Sets the account creation fee - pub fun setAccountCreationFee(_ newFee: UFix64) { + access(all) fun setAccountCreationFee(_ newFee: UFix64) { if newFee != FlowServiceAccount.accountCreationFee { emit AccountCreationFeeUpdated(newFee: newFee) } @@ -166,7 +166,7 @@ pub contract FlowServiceAccount { } /// Adds an account address as an authorized account creator - pub fun addAccountCreator(_ accountCreator: Address) { + access(all) fun addAccountCreator(_ accountCreator: Address) { if FlowServiceAccount.accountCreators[accountCreator] == nil { emit AccountCreatorAdded(accountCreator: accountCreator) } @@ -174,14 +174,14 @@ pub contract FlowServiceAccount { } /// Removes an account address as an authorized account creator - pub fun removeAccountCreator(_ accountCreator: Address) { + access(all) fun removeAccountCreator(_ accountCreator: Address) { if FlowServiceAccount.accountCreators[accountCreator] != nil { emit AccountCreatorRemoved(accountCreator: accountCreator) } FlowServiceAccount.accountCreators.remove(key: accountCreator) } - pub fun setIsAccountCreationRestricted(_ enabled: Bool) { + access(all) fun setIsAccountCreationRestricted(_ enabled: Bool) { let path = /storage/isAccountCreationRestricted let oldValue = FlowServiceAccount.account.load(from: path) FlowServiceAccount.account.save(enabled, to: path) diff --git a/contracts/FlowStakingCollection.cdc b/contracts/FlowStakingCollection.cdc index 01c5a5a29..cce75682a 100644 --- a/contracts/FlowStakingCollection.cdc +++ b/contracts/FlowStakingCollection.cdc @@ -19,26 +19,26 @@ import FlowClusterQC from 0xQCADDRESS import FlowDKG from 0xDKGADDRESS import FlowEpoch from 0xEPOCHADDRESS -pub contract FlowStakingCollection { +access(all) contract FlowStakingCollection { /// Account paths - pub let StakingCollectionStoragePath: StoragePath - pub let StakingCollectionPrivatePath: PrivatePath - pub let StakingCollectionPublicPath: PublicPath + access(all) let StakingCollectionStoragePath: StoragePath + access(all) let StakingCollectionPrivatePath: PrivatePath + access(all) let StakingCollectionPublicPath: PublicPath /// Events - pub event NodeAddedToStakingCollection(nodeID: String, role: UInt8, amountCommitted: UFix64, address: Address?) - pub event DelegatorAddedToStakingCollection(nodeID: String, delegatorID: UInt32, amountCommitted: UFix64, address: Address?) + access(all) event NodeAddedToStakingCollection(nodeID: String, role: UInt8, amountCommitted: UFix64, address: Address?) + access(all) event DelegatorAddedToStakingCollection(nodeID: String, delegatorID: UInt32, amountCommitted: UFix64, address: Address?) - pub event NodeRemovedFromStakingCollection(nodeID: String, role: UInt8, address: Address?) - pub event DelegatorRemovedFromStakingCollection(nodeID: String, delegatorID: UInt32, address: Address?) + access(all) event NodeRemovedFromStakingCollection(nodeID: String, role: UInt8, address: Address?) + access(all) event DelegatorRemovedFromStakingCollection(nodeID: String, delegatorID: UInt32, address: Address?) - pub event MachineAccountCreated(nodeID: String, role: UInt8, address: Address) + access(all) event MachineAccountCreated(nodeID: String, role: UInt8, address: Address) /// Struct that stores delegator ID info - pub struct DelegatorIDs { - pub let delegatorNodeID: String - pub let delegatorID: UInt32 + access(all) struct DelegatorIDs { + access(all) let delegatorNodeID: String + access(all) let delegatorID: UInt32 init(nodeID: String, delegatorID: UInt32) { self.delegatorNodeID = nodeID @@ -50,9 +50,9 @@ pub contract FlowStakingCollection { /// which is a secondary account that is only meant to hold /// the QC or DKG object and FLOW to automatically pay for transaction fees /// related to QC or DKG operations. - pub struct MachineAccountInfo { - pub let nodeID: String - pub let role: UInt8 + access(all) struct MachineAccountInfo { + access(all) let nodeID: String + access(all) let role: UInt8 // Capability to the FLOW Vault to allow the owner // to withdraw or deposit to their machine account if needed access(contract) let machineAccountVaultProvider: Capability<&FlowToken.Vault> @@ -67,25 +67,25 @@ pub contract FlowStakingCollection { } // Gets the address of the machine account - pub fun getAddress(): Address { + access(all) fun getAddress(): Address { return self.machineAccountVaultProvider.borrow()!.owner!.address } } /// Public interface that users can publish for their staking collection /// so that others can query their staking info - pub resource interface StakingCollectionPublic { - pub var lockedTokensUsed: UFix64 - pub var unlockedTokensUsed: UFix64 - pub fun addNodeObject(_ node: @FlowIDTableStaking.NodeStaker, machineAccountInfo: MachineAccountInfo?) - pub fun addDelegatorObject(_ delegator: @FlowIDTableStaking.NodeDelegator) - //pub fun depositToMachineAccount(nodeID: String, from: @FlowToken.Vault) - pub view fun doesStakeExist(nodeID: String, delegatorID: UInt32?): Bool - pub fun getNodeIDs(): [String] - pub fun getDelegatorIDs(): [DelegatorIDs] - pub fun getAllNodeInfo(): [FlowIDTableStaking.NodeInfo] - pub fun getAllDelegatorInfo(): [FlowIDTableStaking.DelegatorInfo] - pub fun getMachineAccounts(): {String: MachineAccountInfo} + access(all) resource interface StakingCollectionPublic { + access(all) var lockedTokensUsed: UFix64 + access(all) var unlockedTokensUsed: UFix64 + access(all) fun addNodeObject(_ node: @FlowIDTableStaking.NodeStaker, machineAccountInfo: MachineAccountInfo?) + access(all) fun addDelegatorObject(_ delegator: @FlowIDTableStaking.NodeDelegator) + //access(all) fun depositToMachineAccount(nodeID: String, from: @FlowToken.Vault) + access(all) view fun doesStakeExist(nodeID: String, delegatorID: UInt32?): Bool + access(all) fun getNodeIDs(): [String] + access(all) fun getDelegatorIDs(): [DelegatorIDs] + access(all) fun getAllNodeInfo(): [FlowIDTableStaking.NodeInfo] + access(all) fun getAllDelegatorInfo(): [FlowIDTableStaking.DelegatorInfo] + access(all) fun getMachineAccounts(): {String: MachineAccountInfo} } /// The resource that stakers store in their accounts to store @@ -93,7 +93,7 @@ pub contract FlowStakingCollection { /// Keeps track of how many locked and unlocked tokens are staked /// so it knows which tokens to give to the user when they deposit and withdraw /// different types of tokens - pub resource StakingCollection: StakingCollectionPublic { + access(all) resource StakingCollection: StakingCollectionPublic { /// unlocked vault access(self) var unlockedVault: Capability<&FlowToken.Vault> @@ -115,8 +115,8 @@ pub contract FlowStakingCollection { /// Tracks how many locked and unlocked tokens the staker is using for all their nodes and/or delegators /// When committing new tokens, locked tokens are used first, followed by unlocked tokens /// When withdrawing tokens, unlocked tokens are withdrawn first, followed by locked tokens - pub var lockedTokensUsed: UFix64 - pub var unlockedTokensUsed: UFix64 + access(all) var lockedTokensUsed: UFix64 + access(all) var unlockedTokensUsed: UFix64 /// Tracks the machine accounts associated with nodes access(self) var machineAccounts: {String: MachineAccountInfo} @@ -266,7 +266,7 @@ pub contract FlowStakingCollection { } /// Returns true if a Stake or Delegation record exists in the StakingCollection for a given nodeID and optional delegatorID, otherwise false. - pub view fun doesStakeExist(nodeID: String, delegatorID: UInt32?): Bool { + access(all) view fun doesStakeExist(nodeID: String, delegatorID: UInt32?): Bool { var tokenHolderNodeID: String? = nil var tokenHolderDelegatorNodeID: String? = nil var tokenHolderDelegatorID: UInt32? = nil @@ -302,7 +302,7 @@ pub contract FlowStakingCollection { } /// Function to add an existing NodeStaker object - pub fun addNodeObject(_ node: @FlowIDTableStaking.NodeStaker, machineAccountInfo: MachineAccountInfo?) { + access(all) fun addNodeObject(_ node: @FlowIDTableStaking.NodeStaker, machineAccountInfo: MachineAccountInfo?) { let id = node.id let stakingInfo = FlowIDTableStaking.NodeInfo(nodeID: id) let totalStaked = stakingInfo.totalTokensInRecord() - stakingInfo.tokensRewarded @@ -315,7 +315,7 @@ pub contract FlowStakingCollection { } /// Function to add an existing NodeDelegator object - pub fun addDelegatorObject(_ delegator: @FlowIDTableStaking.NodeDelegator) { + access(all) fun addDelegatorObject(_ delegator: @FlowIDTableStaking.NodeDelegator) { let stakingInfo = FlowIDTableStaking.DelegatorInfo(nodeID: delegator.nodeID, delegatorID: delegator.id) let totalStaked = stakingInfo.totalTokensInRecord() - stakingInfo.tokensRewarded self.unlockedTokensUsed = self.unlockedTokensUsed + totalStaked @@ -327,7 +327,7 @@ pub contract FlowStakingCollection { /// If the user has used any locked tokens, removing NodeStaker objects is not allowed. /// We do not clear the machine account field for this node here /// because the operator may want to keep it the same - pub fun removeNode(nodeID: String): @FlowIDTableStaking.NodeStaker? { + access(all) fun removeNode(nodeID: String): @FlowIDTableStaking.NodeStaker? { pre { self.doesStakeExist(nodeID: nodeID, delegatorID: nil): "Specified node does not exist in this collection" self.lockedTokensUsed == UFix64(0.0): "Cannot remove node if locked tokens are used" @@ -353,13 +353,11 @@ pub contract FlowStakingCollection { // The function does not allow for removing a NodeStaker stored in the locked account, if one exists. panic("Cannot remove node stored in locked account.") } - - return nil } /// Function to remove an existing NodeDelegator object. /// If the user has used any locked tokens, removing NodeDelegator objects is not allowed. - pub fun removeDelegator(nodeID: String, delegatorID: UInt32): @FlowIDTableStaking.NodeDelegator? { + access(all) fun removeDelegator(nodeID: String, delegatorID: UInt32): @FlowIDTableStaking.NodeDelegator? { pre { self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): "Specified delegator does not exist in this collection" self.lockedTokensUsed == UFix64(0.0): "Cannot remove delegator if locked tokens are used" @@ -387,14 +385,12 @@ pub contract FlowStakingCollection { // The function does not allow for removing a NodeDelegator stored in the locked account, if one exists. panic("Cannot remove delegator stored in locked account.") } - - return nil } /// Operations to register new staking objects /// Function to register a new Staking Record to the Staking Collection - pub fun registerNode(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64, payer: AuthAccount): AuthAccount? { + access(all) fun registerNode(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64, payer: AuthAccount): AuthAccount? { let tokens <- self.getTokens(amount: amount) @@ -472,7 +468,7 @@ pub contract FlowStakingCollection { /// or if they decide they want to use a different machine account for one of their nodes /// If they want to use a different machine account, it is their responsibility to /// transfer the qc or dkg object to the new account - pub fun addMachineAccountRecord(nodeID: String, machineAccount: AuthAccount) { + access(all) fun addMachineAccountRecord(nodeID: String, machineAccount: AuthAccount) { pre { self.doesStakeExist(nodeID: nodeID, delegatorID: nil): "Cannot add a machine account record for a node that you do not own" } @@ -512,7 +508,7 @@ pub contract FlowStakingCollection { /// If a user has created a node before epochs were enabled, they'll need to use this function /// to create their machine account with their node - pub fun createMachineAccountForExistingNode(nodeID: String, payer: AuthAccount): AuthAccount? { + access(all) fun createMachineAccountForExistingNode(nodeID: String, payer: AuthAccount): AuthAccount? { pre { self.doesStakeExist(nodeID: nodeID, delegatorID: nil) } @@ -539,7 +535,7 @@ pub contract FlowStakingCollection { } /// Allows the owner to withdraw any available FLOW from their machine account - pub fun withdrawFromMachineAccount(nodeID: String, amount: UFix64) { + access(all) fun withdrawFromMachineAccount(nodeID: String, amount: UFix64) { pre { self.doesStakeExist(nodeID: nodeID, delegatorID: nil): "Specified stake does not exist in this collection" } @@ -558,7 +554,7 @@ pub contract FlowStakingCollection { } /// Function to register a new Delegator Record to the Staking Collection - pub fun registerDelegator(nodeID: String, amount: UFix64) { + access(all) fun registerDelegator(nodeID: String, amount: UFix64) { let delegatorIDs = self.getDelegatorIDs() for idInfo in delegatorIDs { if idInfo.delegatorNodeID == nodeID { @@ -602,7 +598,7 @@ pub contract FlowStakingCollection { // and their delegator ID to specify that it is for their delegator object /// Updates the stored networking address for the specified node - pub fun updateNetworkingAddress(nodeID: String, newAddress: String) { + access(all) fun updateNetworkingAddress(nodeID: String, newAddress: String) { pre { self.doesStakeExist(nodeID: nodeID, delegatorID: nil): "Specified stake does not exist in this collection" } @@ -618,7 +614,7 @@ pub contract FlowStakingCollection { } /// Function to stake new tokens for an existing Stake or Delegation record in the StakingCollection - pub fun stakeNewTokens(nodeID: String, delegatorID: UInt32?, amount: UFix64) { + access(all) fun stakeNewTokens(nodeID: String, delegatorID: UInt32?, amount: UFix64) { pre { self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): "Specified stake does not exist in this collection" } @@ -661,7 +657,7 @@ pub contract FlowStakingCollection { } /// Function to stake unstaked tokens for an existing Stake or Delegation record in the StakingCollection - pub fun stakeUnstakedTokens(nodeID: String, delegatorID: UInt32?, amount: UFix64) { + access(all) fun stakeUnstakedTokens(nodeID: String, delegatorID: UInt32?, amount: UFix64) { pre { self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): "Specified stake does not exist in this collection" } @@ -683,7 +679,7 @@ pub contract FlowStakingCollection { } /// Function to stake rewarded tokens for an existing Stake or Delegation record in the StakingCollection - pub fun stakeRewardedTokens(nodeID: String, delegatorID: UInt32?, amount: UFix64) { + access(all) fun stakeRewardedTokens(nodeID: String, delegatorID: UInt32?, amount: UFix64) { pre { self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): "Specified stake does not exist in this collection" } @@ -710,7 +706,7 @@ pub contract FlowStakingCollection { } /// Function to request tokens to be unstaked for an existing Stake or Delegation record in the StakingCollection - pub fun requestUnstaking(nodeID: String, delegatorID: UInt32?, amount: UFix64) { + access(all) fun requestUnstaking(nodeID: String, delegatorID: UInt32?, amount: UFix64) { pre { self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): "Specified stake does not exist in this collection" } @@ -733,7 +729,7 @@ pub contract FlowStakingCollection { /// Function to unstake all tokens for an existing node staking record in the StakingCollection /// Only available for node operators - pub fun unstakeAll(nodeID: String) { + access(all) fun unstakeAll(nodeID: String) { pre { self.doesStakeExist(nodeID: nodeID, delegatorID: nil): "Specified stake does not exist in this collection" } @@ -747,7 +743,7 @@ pub contract FlowStakingCollection { } /// Function to withdraw unstaked tokens for an existing Stake or Delegation record in the StakingCollection - pub fun withdrawUnstakedTokens(nodeID: String, delegatorID: UInt32?, amount: UFix64) { + access(all) fun withdrawUnstakedTokens(nodeID: String, delegatorID: UInt32?, amount: UFix64) { pre { self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): "Specified stake does not exist in this collection" } @@ -770,7 +766,7 @@ pub contract FlowStakingCollection { } /// Function to withdraw rewarded tokens for an existing Stake or Delegation record in the StakingCollection - pub fun withdrawRewardedTokens(nodeID: String, delegatorID: UInt32?, amount: UFix64) { + access(all) fun withdrawRewardedTokens(nodeID: String, delegatorID: UInt32?, amount: UFix64) { pre { self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): "Specified stake does not exist in this collection" } @@ -814,7 +810,7 @@ pub contract FlowStakingCollection { /// Closes an existing stake or delegation, moving all withdrawable tokens back to the users account and removing the stake /// or delegator object from the StakingCollection. - pub fun closeStake(nodeID: String, delegatorID: UInt32?) { + access(all) fun closeStake(nodeID: String, delegatorID: UInt32?) { pre { self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): "Specified stake does not exist in this collection" } @@ -899,7 +895,7 @@ pub contract FlowStakingCollection { /// Getters /// Function to get all node ids for all Staking records in the StakingCollection - pub fun getNodeIDs(): [String] { + access(all) fun getNodeIDs(): [String] { let nodeIDs: [String] = self.nodeStakers.keys if let tokenHolderCapability = self.tokenHolder { @@ -915,7 +911,7 @@ pub contract FlowStakingCollection { } /// Function to get all delegator ids for all Delegation records in the StakingCollection - pub fun getDelegatorIDs(): [DelegatorIDs] { + access(all) fun getDelegatorIDs(): [DelegatorIDs] { let nodeIDs: [String] = self.nodeDelegators.keys let delegatorIDs: [DelegatorIDs] = [] @@ -942,7 +938,7 @@ pub contract FlowStakingCollection { } /// Function to get all Node Info records for all Staking records in the StakingCollection - pub fun getAllNodeInfo(): [FlowIDTableStaking.NodeInfo] { + access(all) fun getAllNodeInfo(): [FlowIDTableStaking.NodeInfo] { let nodeInfo: [FlowIDTableStaking.NodeInfo] = [] let nodeIDs: [String] = self.nodeStakers.keys @@ -963,7 +959,7 @@ pub contract FlowStakingCollection { } /// Function to get all Delegator Info records for all Delegation records in the StakingCollection - pub fun getAllDelegatorInfo(): [FlowIDTableStaking.DelegatorInfo] { + access(all) fun getAllDelegatorInfo(): [FlowIDTableStaking.DelegatorInfo] { let delegatorInfo: [FlowIDTableStaking.DelegatorInfo] = [] let nodeIDs: [String] = self.nodeDelegators.keys @@ -996,7 +992,7 @@ pub contract FlowStakingCollection { } /// Gets a users list of machine account information - pub fun getMachineAccounts(): {String: MachineAccountInfo} { + access(all) fun getMachineAccounts(): {String: MachineAccountInfo} { return self.machineAccounts } @@ -1005,7 +1001,7 @@ pub contract FlowStakingCollection { // Getter functions for accounts StakingCollection information /// Function to get see if a node or delegator exists in an accounts staking collection - pub fun doesStakeExist(address: Address, nodeID: String, delegatorID: UInt32?): Bool { + access(all) fun doesStakeExist(address: Address, nodeID: String, delegatorID: UInt32?): Bool { let account = getAccount(address) let stakingCollectionRef = account.getCapability<&StakingCollection{StakingCollectionPublic}>(self.StakingCollectionPublicPath).borrow() @@ -1015,7 +1011,7 @@ pub contract FlowStakingCollection { } /// Function to get the unlocked tokens used amount for an account - pub fun getUnlockedTokensUsed(address: Address): UFix64 { + access(all) fun getUnlockedTokensUsed(address: Address): UFix64 { let account = getAccount(address) let stakingCollectionRef = account.getCapability<&StakingCollection{StakingCollectionPublic}>(self.StakingCollectionPublicPath).borrow() @@ -1025,7 +1021,7 @@ pub contract FlowStakingCollection { } /// Function to get the locked tokens used amount for an account - pub fun getLockedTokensUsed(address: Address): UFix64 { + access(all) fun getLockedTokensUsed(address: Address): UFix64 { let account = getAccount(address) let stakingCollectionRef = account.getCapability<&StakingCollection{StakingCollectionPublic}>(self.StakingCollectionPublicPath).borrow() @@ -1035,7 +1031,7 @@ pub contract FlowStakingCollection { } /// Function to get all node ids for all Staking records in a users StakingCollection, if one exists. - pub fun getNodeIDs(address: Address): [String] { + access(all) fun getNodeIDs(address: Address): [String] { let account = getAccount(address) let stakingCollectionRef = account.getCapability<&StakingCollection{StakingCollectionPublic}>(self.StakingCollectionPublicPath).borrow() @@ -1045,7 +1041,7 @@ pub contract FlowStakingCollection { } /// Function to get all delegator ids for all Delegation records in a users StakingCollection, if one exists. - pub fun getDelegatorIDs(address: Address): [DelegatorIDs] { + access(all) fun getDelegatorIDs(address: Address): [DelegatorIDs] { let account = getAccount(address) let stakingCollectionRef = account.getCapability<&StakingCollection{StakingCollectionPublic}>(self.StakingCollectionPublicPath).borrow() @@ -1055,7 +1051,7 @@ pub contract FlowStakingCollection { } /// Function to get all Node Info records for all Staking records in a users StakingCollection, if one exists. - pub fun getAllNodeInfo(address: Address): [FlowIDTableStaking.NodeInfo] { + access(all) fun getAllNodeInfo(address: Address): [FlowIDTableStaking.NodeInfo] { let account = getAccount(address) let stakingCollectionRef = account.getCapability<&StakingCollection{StakingCollectionPublic}>(self.StakingCollectionPublicPath).borrow() @@ -1065,7 +1061,7 @@ pub contract FlowStakingCollection { } /// Function to get all Delegator Info records for all Delegation records in a users StakingCollection, if one exists. - pub fun getAllDelegatorInfo(address: Address): [FlowIDTableStaking.DelegatorInfo] { + access(all) fun getAllDelegatorInfo(address: Address): [FlowIDTableStaking.DelegatorInfo] { let account = getAccount(address) let stakingCollectionRef = account.getCapability<&StakingCollection{StakingCollectionPublic}>(self.StakingCollectionPublicPath).borrow() @@ -1075,7 +1071,7 @@ pub contract FlowStakingCollection { } /// Global function to get all the machine account info for all the nodes managed by an address' staking collection - pub fun getMachineAccounts(address: Address): {String: MachineAccountInfo} { + access(all) fun getMachineAccounts(address: Address): {String: MachineAccountInfo} { let account = getAccount(address) let stakingCollectionRef = account.getCapability<&StakingCollection{StakingCollectionPublic}>(self.StakingCollectionPublicPath).borrow() @@ -1085,14 +1081,14 @@ pub contract FlowStakingCollection { } /// Determines if an account is set up with a Staking Collection - pub fun doesAccountHaveStakingCollection(address: Address): Bool { + access(all) fun doesAccountHaveStakingCollection(address: Address): Bool { let account = getAccount(address) return account.getCapability<&StakingCollection{StakingCollectionPublic}>(self.StakingCollectionPublicPath).check() } /// Creates a brand new empty staking collection resource and returns it to the caller - pub fun createStakingCollection(unlockedVault: Capability<&FlowToken.Vault>, tokenHolder: Capability<&LockedTokens.TokenHolder>?): @StakingCollection { + access(all) fun createStakingCollection(unlockedVault: Capability<&FlowToken.Vault>, tokenHolder: Capability<&LockedTokens.TokenHolder>?): @StakingCollection { return <- create StakingCollection(unlockedVault: unlockedVault, tokenHolder: tokenHolder) } @@ -1101,4 +1097,5 @@ pub contract FlowStakingCollection { self.StakingCollectionPrivatePath = /private/stakingCollection self.StakingCollectionPublicPath = /public/stakingCollection } -} \ No newline at end of file +} + \ No newline at end of file diff --git a/contracts/FlowStorageFees.cdc b/contracts/FlowStorageFees.cdc index 1f8aca716..405cb3c94 100644 --- a/contracts/FlowStorageFees.cdc +++ b/contracts/FlowStorageFees.cdc @@ -17,29 +17,29 @@ import FungibleToken from 0xFUNGIBLETOKENADDRESS import FlowToken from 0xFLOWTOKENADDRESS -pub contract FlowStorageFees { +access(all) contract FlowStorageFees { // Emitted when the amount of storage capacity an account has per reserved Flow token changes - pub event StorageMegaBytesPerReservedFLOWChanged(_ storageMegaBytesPerReservedFLOW: UFix64) + access(all) event StorageMegaBytesPerReservedFLOWChanged(_ storageMegaBytesPerReservedFLOW: UFix64) // Emitted when the minimum amount of Flow tokens that an account needs to have reserved for storage capacity changes. - pub event MinimumStorageReservationChanged(_ minimumStorageReservation: UFix64) + access(all) event MinimumStorageReservationChanged(_ minimumStorageReservation: UFix64) // Defines how much storage capacity every account has per reserved Flow token. // definition is written per unit of flow instead of the inverse, // so there is no loss of precision calculating storage from flow, // but there is loss of precision when calculating flow per storage. - pub var storageMegaBytesPerReservedFLOW: UFix64 + access(all) var storageMegaBytesPerReservedFLOW: UFix64 // Defines the minimum amount of Flow tokens that every account needs to have reserved for storage capacity. // If an account has less then this amount reserved by the end of any transaction it participated in, the transaction will fail. - pub var minimumStorageReservation: UFix64 + access(all) var minimumStorageReservation: UFix64 // An administrator resource that can change the parameters of the FlowStorageFees smart contract. - pub resource Administrator { + access(all) resource Administrator { // Changes the amount of storage capacity an account has per accounts' reserved storage FLOW. - pub fun setStorageMegaBytesPerReservedFLOW(_ storageMegaBytesPerReservedFLOW: UFix64) { + access(all) fun setStorageMegaBytesPerReservedFLOW(_ storageMegaBytesPerReservedFLOW: UFix64) { if FlowStorageFees.storageMegaBytesPerReservedFLOW == storageMegaBytesPerReservedFLOW { return } @@ -48,7 +48,7 @@ pub contract FlowStorageFees { } // Changes the minimum amount of FLOW an account has to have reserved. - pub fun setMinimumStorageReservation(_ minimumStorageReservation: UFix64) { + access(all) fun setMinimumStorageReservation(_ minimumStorageReservation: UFix64) { if FlowStorageFees.minimumStorageReservation == minimumStorageReservation { return } @@ -63,7 +63,7 @@ pub contract FlowStorageFees { /// /// Returns megabytes /// If the account has no default balance it is counted as a balance of 0.0 FLOW - pub fun calculateAccountCapacity(_ accountAddress: Address): UFix64 { + access(all) fun calculateAccountCapacity(_ accountAddress: Address): UFix64 { var balance = 0.0 if let balanceRef = getAccount(accountAddress) .getCapability<&FlowToken.Vault{FungibleToken.Balance}>(/public/flowTokenBalance)! @@ -75,7 +75,7 @@ pub contract FlowStorageFees { } /// calculateAccountsCapacity returns the storage capacity of a batch of accounts - pub fun calculateAccountsCapacity(_ accountAddresses: [Address]): [UFix64] { + access(all) fun calculateAccountsCapacity(_ accountAddresses: [Address]): [UFix64] { let capacities: [UFix64] = [] for accountAddress in accountAddresses { let capacity = self.calculateAccountCapacity(accountAddress) @@ -88,7 +88,7 @@ pub contract FlowStorageFees { // This is used to check if a transaction will fail because of any account being over the storage capacity // The payer is an exception as its storage capacity is derived from its balance minus the maximum possible transaction fees // (transaction fees if the execution effort is at the execution efort limit, a.k.a.: computation limit, a.k.a.: gas limit) - pub fun getAccountsCapacityForTransactionStorageCheck(accountAddresses: [Address], payer: Address, maxTxFees: UFix64): [UFix64] { + access(all) fun getAccountsCapacityForTransactionStorageCheck(accountAddresses: [Address], payer: Address, maxTxFees: UFix64): [UFix64] { let capacities: [UFix64] = [] for accountAddress in accountAddresses { var balance = 0.0 @@ -110,7 +110,7 @@ pub contract FlowStorageFees { // accountBalanceToAccountStorageCapacity returns the storage capacity // an account would have with given the flow balance of the account. - pub fun accountBalanceToAccountStorageCapacity(_ balance: UFix64): UFix64 { + access(all) fun accountBalanceToAccountStorageCapacity(_ balance: UFix64): UFix64 { // get address token balance if balance < self.minimumStorageReservation { // if < then minimum return 0 @@ -123,13 +123,13 @@ pub contract FlowStorageFees { // Amount in Flow tokens // Returns megabytes - pub fun flowToStorageCapacity(_ amount: UFix64): UFix64 { + access(all) fun flowToStorageCapacity(_ amount: UFix64): UFix64 { return amount.saturatingMultiply(FlowStorageFees.storageMegaBytesPerReservedFLOW) } // Amount in megabytes // Returns Flow tokens - pub fun storageCapacityToFlow(_ amount: UFix64): UFix64 { + access(all) fun storageCapacityToFlow(_ amount: UFix64): UFix64 { if FlowStorageFees.storageMegaBytesPerReservedFLOW == 0.0 as UFix64 { return 0.0 as UFix64 } @@ -139,7 +139,7 @@ pub contract FlowStorageFees { } // converts storage used from UInt64 Bytes to UFix64 Megabytes. - pub fun convertUInt64StorageBytesToUFix64Megabytes(_ storage: UInt64): UFix64 { + access(all) fun convertUInt64StorageBytesToUFix64Megabytes(_ storage: UInt64): UFix64 { // safe convert UInt64 to UFix64 (without overflow) let f = UFix64(storage % 100000000 as UInt64) * 0.00000001 as UFix64 + UFix64(storage / 100000000 as UInt64) // decimal point correction. Megabytes to bytes have a conversion of 10^-6 while UFix64 minimum value is 10^-8 @@ -151,7 +151,7 @@ pub contract FlowStorageFees { /// /// The available balance of an account is its default token balance minus what is reserved for storage. /// If the account has no default balance it is counted as a balance of 0.0 FLOW - pub fun defaultTokenAvailableBalance(_ accountAddress: Address): UFix64 { + access(all) fun defaultTokenAvailableBalance(_ accountAddress: Address): UFix64 { //get balance of account let acct = getAccount(accountAddress) var balance = 0.0 @@ -171,7 +171,7 @@ pub contract FlowStorageFees { /// /// The reserved balance of an account is its storage used multiplied by the storage cost per flow token. /// The reserved balance is at least the minimum storage reservation. - pub fun defaultTokenReservedBalance(_ accountAddress: Address): UFix64 { + access(all) fun defaultTokenReservedBalance(_ accountAddress: Address): UFix64 { let acct = getAccount(accountAddress) var reserved = self.storageCapacityToFlow(self.convertUInt64StorageBytesToUFix64Megabytes(acct.storageUsed)) // at least self.minimumStorageReservation should be reserved diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index ccba72feb..03b1446a8 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -1,30 +1,30 @@ import FungibleToken from 0xFUNGIBLETOKENADDRESS -pub contract FlowToken: FungibleToken { +access(all) contract FlowToken: FungibleToken { // Total supply of Flow tokens in existence - pub var totalSupply: UFix64 + access(all) var totalSupply: UFix64 // Event that is emitted when the contract is created - pub event TokensInitialized(initialSupply: UFix64) + access(all) event TokensInitialized(initialSupply: UFix64) // Event that is emitted when tokens are withdrawn from a Vault - pub event TokensWithdrawn(amount: UFix64, from: Address?) + access(all) event TokensWithdrawn(amount: UFix64, from: Address?) // Event that is emitted when tokens are deposited to a Vault - pub event TokensDeposited(amount: UFix64, to: Address?) + access(all) event TokensDeposited(amount: UFix64, to: Address?) // Event that is emitted when new tokens are minted - pub event TokensMinted(amount: UFix64) + access(all) event TokensMinted(amount: UFix64) // Event that is emitted when tokens are destroyed - pub event TokensBurned(amount: UFix64) + access(all) event TokensBurned(amount: UFix64) // Event that is emitted when a new minter resource is created - pub event MinterCreated(allowedAmount: UFix64) + access(all) event MinterCreated(allowedAmount: UFix64) // Event that is emitted when a new burner resource is created - pub event BurnerCreated() + access(all) event BurnerCreated() // Vault // @@ -38,10 +38,10 @@ pub contract FlowToken: FungibleToken { // out of thin air. A special Minter resource needs to be defined to mint // new tokens. // - pub resource Vault: FungibleToken.Provider, FungibleToken.Receiver, FungibleToken.Balance { + access(all) resource Vault: FungibleToken.Provider, FungibleToken.Receiver, FungibleToken.Balance { // holds the balance of a users tokens - pub var balance: UFix64 + access(all) var balance: UFix64 // initialize the balance at resource creation time init(balance: UFix64) { @@ -57,7 +57,7 @@ pub contract FlowToken: FungibleToken { // created Vault to the context that called so it can be deposited // elsewhere. // - pub fun withdraw(amount: UFix64): @FungibleToken.Vault { + access(FungibleToken.Withdrawable) fun withdraw(amount: UFix64): @FungibleToken.Vault { self.balance = self.balance - amount emit TokensWithdrawn(amount: amount, from: self.owner?.address) return <-create Vault(balance: amount) @@ -70,7 +70,7 @@ pub contract FlowToken: FungibleToken { // It is allowed to destroy the sent Vault because the Vault // was a temporary holder of the tokens. The Vault's balance has // been consumed and therefore can be destroyed. - pub fun deposit(from: @FungibleToken.Vault) { + access(all) fun deposit(from: @FungibleToken.Vault) { let vault <- from as! @FlowToken.Vault self.balance = self.balance + vault.balance emit TokensDeposited(amount: vault.balance, to: self.owner?.address) @@ -92,16 +92,16 @@ pub contract FlowToken: FungibleToken { // and store the returned Vault in their storage in order to allow their // account to be able to receive deposits of this token type. // - pub fun createEmptyVault(): @FungibleToken.Vault { + access(all) fun createEmptyVault(): @FungibleToken.Vault { return <-create Vault(balance: 0.0) } - pub resource Administrator { + access(all) resource Administrator { // createNewMinter // // Function that creates and returns a new minter resource // - pub fun createNewMinter(allowedAmount: UFix64): @Minter { + access(all) fun createNewMinter(allowedAmount: UFix64): @Minter { emit MinterCreated(allowedAmount: allowedAmount) return <-create Minter(allowedAmount: allowedAmount) } @@ -110,7 +110,7 @@ pub contract FlowToken: FungibleToken { // // Function that creates and returns a new burner resource // - pub fun createNewBurner(): @Burner { + access(all) fun createNewBurner(): @Burner { emit BurnerCreated() return <-create Burner() } @@ -120,17 +120,17 @@ pub contract FlowToken: FungibleToken { // // Resource object that token admin accounts can hold to mint new tokens. // - pub resource Minter { + access(all) resource Minter { // the amount of tokens that the minter is allowed to mint - pub var allowedAmount: UFix64 + access(all) var allowedAmount: UFix64 // mintTokens // // Function that mints new tokens, adds them to the total supply, // and returns them to the calling context. // - pub fun mintTokens(amount: UFix64): @FlowToken.Vault { + access(all) fun mintTokens(amount: UFix64): @FlowToken.Vault { pre { amount > UFix64(0): "Amount minted must be greater than zero" amount <= self.allowedAmount: "Amount minted must be less than the allowed amount" @@ -150,7 +150,7 @@ pub contract FlowToken: FungibleToken { // // Resource object that token admin accounts can hold to burn tokens. // - pub resource Burner { + access(all) resource Burner { // burnTokens // @@ -159,7 +159,7 @@ pub contract FlowToken: FungibleToken { // Note: the burned tokens are automatically subtracted from the // total supply in the Vault destructor. // - pub fun burnTokens(from: @FungibleToken.Vault) { + access(all) fun burnTokens(from: @FungibleToken.Vault) { let vault <- from as! @FlowToken.Vault let amount = vault.balance destroy vault diff --git a/contracts/LockedTokens.cdc b/contracts/LockedTokens.cdc index 20b3ceacd..d9fbdaa18 100644 --- a/contracts/LockedTokens.cdc +++ b/contracts/LockedTokens.cdc @@ -31,79 +31,79 @@ import FlowIDTableStaking from 0xFLOWIDTABLESTAKINGADDRESS import FlowStorageFees from 0xFLOWSTORAGEFEESADDRESS import StakingProxy from 0xSTAKINGPROXYADDRESS -pub contract LockedTokens { +access(all) contract LockedTokens { - pub event SharedAccountRegistered(address: Address) - pub event UnlockedAccountRegistered(address: Address) + access(all) event SharedAccountRegistered(address: Address) + access(all) event UnlockedAccountRegistered(address: Address) - pub event UnlockLimitIncreased(address: Address, increaseAmount: UFix64, newLimit: UFix64) + access(all) event UnlockLimitIncreased(address: Address, increaseAmount: UFix64, newLimit: UFix64) - pub event LockedAccountRegisteredAsNode(address: Address, nodeID: String) - pub event LockedAccountRegisteredAsDelegator(address: Address, nodeID: String) + access(all) event LockedAccountRegisteredAsNode(address: Address, nodeID: String) + access(all) event LockedAccountRegisteredAsDelegator(address: Address, nodeID: String) - pub event LockedTokensDeposited(address: Address, amount: UFix64) + access(all) event LockedTokensDeposited(address: Address, amount: UFix64) /// Path to store the locked token manager resource /// in the shared account - pub let LockedTokenManagerStoragePath: StoragePath + access(all) let LockedTokenManagerStoragePath: StoragePath /// Path to store the private capability for the token /// manager - pub let LockedTokenManagerPrivatePath: PrivatePath + access(all) let LockedTokenManagerPrivatePath: PrivatePath /// Path to store the private locked token admin link /// in the shared account - pub let LockedTokenAdminPrivatePath: PrivatePath + access(all) let LockedTokenAdminPrivatePath: PrivatePath /// Path to store the admin collection /// in the admin account - pub let LockedTokenAdminCollectionStoragePath: StoragePath + access(all) let LockedTokenAdminCollectionStoragePath: StoragePath /// Path to store the token holder resource /// in the unlocked account - pub let TokenHolderStoragePath: StoragePath + access(all) let TokenHolderStoragePath: StoragePath /// Public path to store the capability that allows /// reading information about a locked account - pub let LockedAccountInfoPublicPath: PublicPath + access(all) let LockedAccountInfoPublicPath: PublicPath /// Path that an account creator would store /// the resource that they use to create locked accounts - pub let LockedAccountCreatorStoragePath: StoragePath + access(all) let LockedAccountCreatorStoragePath: StoragePath /// Path that an account creator would publish /// their capability for the token admin to /// deposit the account creation capability - pub let LockedAccountCreatorPublicPath: PublicPath + access(all) let LockedAccountCreatorPublicPath: PublicPath /// The TokenAdmin capability allows the token administrator to unlock tokens at each /// milestone in the vesting period. - pub resource interface TokenAdmin { - pub fun increaseUnlockLimit(delta: UFix64) + access(all) resource interface TokenAdmin { + access(all) fun increaseUnlockLimit(delta: UFix64) } /// This token manager resource is stored in the shared account to manage access /// to the locked token vault and to the staking/delegating resources. - pub resource LockedTokenManager: FungibleToken.Receiver, FungibleToken.Provider, TokenAdmin { + access(all) resource LockedTokenManager: FungibleToken.Receiver, FungibleToken.Provider, TokenAdmin { /// This is a reference to the default FLOW vault stored in the shared account. /// /// All locked FLOW tokens are stored in this vault, which can be accessed in two ways: /// 1) Directly, in a transaction co-signed by both the token holder and token administrator /// 2) Indirectly via the LockedTokenManager, in a transaction signed by the token holder - pub var vault: Capability<&FlowToken.Vault> + access(all) var vault: Capability<&FlowToken.Vault> /// The amount of tokens that the user can withdraw. /// It is decreased when the user withdraws - pub var unlockLimit: UFix64 + access(all) var unlockLimit: UFix64 /// Optional NodeStaker resource. Will only be filled if the user /// signs up to be a node operator - pub var nodeStaker: @FlowIDTableStaking.NodeStaker? + access(all) var nodeStaker: @FlowIDTableStaking.NodeStaker? /// Optional NodeDelegator resource. Will only be filled if the user /// signs up to be a delegator - pub var nodeDelegator: @FlowIDTableStaking.NodeDelegator? + access(all) var nodeDelegator: @FlowIDTableStaking.NodeDelegator? init(vault: Capability<&FlowToken.Vault>) { self.vault = vault @@ -120,7 +120,7 @@ pub contract LockedTokens { // FungibleToken.Receiver actions /// Deposits unlocked tokens to the vault - pub fun deposit(from: @FungibleToken.Vault) { + access(all) fun deposit(from: @FungibleToken.Vault) { self.depositUnlockedTokens(from: <-from) } @@ -137,7 +137,7 @@ pub contract LockedTokens { // FungibleToken.Provider actions /// Withdraws unlocked tokens from the vault - pub fun withdraw(amount: UFix64): @FungibleToken.Vault { + access(all) fun withdraw(amount: UFix64): @FungibleToken.Vault { return <-self.withdrawUnlockedTokens(amount: amount) } @@ -159,7 +159,7 @@ pub contract LockedTokens { return <-vault } - pub fun getBalance(): UFix64 { + access(all) fun getBalance(): UFix64 { let vaultRef = self.vault.borrow()! return vaultRef.balance } @@ -171,7 +171,7 @@ pub contract LockedTokens { // LockedTokens.TokenAdmin actions /// Called by the admin every time a vesting release happens - pub fun increaseUnlockLimit(delta: UFix64) { + access(all) fun increaseUnlockLimit(delta: UFix64) { self.unlockLimit = self.unlockLimit + delta emit UnlockLimitIncreased(address: self.owner!.address, increaseAmount: delta, newLimit: self.unlockLimit) } @@ -180,7 +180,7 @@ pub contract LockedTokens { /// Registers a new node operator with the Flow Staking contract /// and commits an initial amount of locked tokens to stake - pub fun registerNode(nodeInfo: StakingProxy.NodeInfo, amount: UFix64) { + access(all) fun registerNode(nodeInfo: StakingProxy.NodeInfo, amount: UFix64) { if let nodeStaker <- self.nodeStaker <- nil { let stakingInfo = FlowIDTableStaking.NodeInfo(nodeID: nodeStaker.id) @@ -206,7 +206,7 @@ pub contract LockedTokens { /// Registers a new Delegator with the Flow Staking contract /// the caller has to specify the ID of the node operator /// they are delegating to - pub fun registerDelegator(nodeID: String, amount: UFix64) { + access(all) fun registerDelegator(nodeID: String, amount: UFix64) { if let delegator <- self.nodeDelegator <- nil { let delegatorInfo = FlowIDTableStaking.DelegatorInfo(nodeID: delegator.nodeID, delegatorID: delegator.id) @@ -234,18 +234,18 @@ pub contract LockedTokens { emit LockedAccountRegisteredAsDelegator(address: self.owner!.address, nodeID: nodeID) } - pub fun borrowNode(): &FlowIDTableStaking.NodeStaker? { + access(all) fun borrowNode(): &FlowIDTableStaking.NodeStaker? { let nodeRef: &FlowIDTableStaking.NodeStaker? = &self.nodeStaker as &FlowIDTableStaking.NodeStaker? return nodeRef } - pub fun removeNode(): @FlowIDTableStaking.NodeStaker? { + access(all) fun removeNode(): @FlowIDTableStaking.NodeStaker? { let node <- self.nodeStaker <- nil return <-node } - pub fun removeDelegator(): @FlowIDTableStaking.NodeDelegator? { + access(all) fun removeDelegator(): @FlowIDTableStaking.NodeDelegator? { let del <- self.nodeDelegator <- nil return <-del @@ -253,20 +253,20 @@ pub contract LockedTokens { } /// This interfaces allows anybody to read information about the locked account. - pub resource interface LockedAccountInfo { - pub fun getLockedAccountAddress(): Address - pub fun getLockedAccountBalance(): UFix64 - pub fun getUnlockLimit(): UFix64 - pub view fun getNodeID(): String? - pub view fun getDelegatorID(): UInt32? - pub view fun getDelegatorNodeID(): String? + access(all) resource interface LockedAccountInfo { + access(all) fun getLockedAccountAddress(): Address + access(all) fun getLockedAccountBalance(): UFix64 + access(all) fun getUnlockLimit(): UFix64 + access(all) view fun getNodeID(): String? + access(all) view fun getDelegatorID(): UInt32? + access(all) view fun getDelegatorNodeID(): String? } /// Stored in Holder unlocked account - pub resource TokenHolder: FungibleToken.Receiver, FungibleToken.Provider, LockedAccountInfo { + access(all) resource TokenHolder: FungibleToken.Receiver, FungibleToken.Provider, LockedAccountInfo { /// The address of the shared (locked) account. - pub var address: Address + access(all) var address: Address /// Capability that is used to access the LockedTokenManager /// in the shared account @@ -303,25 +303,25 @@ pub contract LockedTokens { // LockedAccountInfo actions /// Returns the locked account address for this token holder. - pub fun getLockedAccountAddress(): Address { + access(all) fun getLockedAccountAddress(): Address { return self.address } /// Returns the locked account balance for this token holder. /// Subtracts the minimum storage reservation from the value because that portion /// of the locked balance is not available to use - pub fun getLockedAccountBalance(): UFix64 { + access(all) fun getLockedAccountBalance(): UFix64 { return self.borrowTokenManager().getBalance() - FlowStorageFees.minimumStorageReservation } // Returns the unlocked limit for this token holder. - pub fun getUnlockLimit(): UFix64 { + access(all) fun getUnlockLimit(): UFix64 { return self.borrowTokenManager().unlockLimit } /// Deposits tokens in the locked vault, which marks them as /// unlocked and available to withdraw - pub fun deposit(from: @FungibleToken.Vault) { + access(all) fun deposit(from: @FungibleToken.Vault) { self.borrowTokenManager().deposit(from: <-from) } @@ -329,13 +329,13 @@ pub contract LockedTokens { /// Withdraws tokens from the locked vault. This will only succeed /// if the withdraw amount is less than or equal to the limit - pub fun withdraw(amount: UFix64): @FungibleToken.Vault { + access(all) fun withdraw(amount: UFix64): @FungibleToken.Vault { return <- self.borrowTokenManager().withdraw(amount: amount) } /// The user calls this function if they want to register as a node operator /// They have to provide all the info for their node - pub fun createNodeStaker(nodeInfo: StakingProxy.NodeInfo, amount: UFix64) { + access(all) fun createNodeStaker(nodeInfo: StakingProxy.NodeInfo, amount: UFix64) { self.borrowTokenManager().registerNode(nodeInfo: nodeInfo, amount: amount) @@ -345,7 +345,7 @@ pub contract LockedTokens { /// The user calls this function if they want to register as a node operator /// They have to provide the node ID for the node they want to delegate to - pub fun createNodeDelegator(nodeID: String) { + access(all) fun createNodeDelegator(nodeID: String) { self.borrowTokenManager().registerDelegator(nodeID: nodeID, amount: FlowIDTableStaking.getDelegatorMinimumStakeRequirement()) @@ -355,7 +355,7 @@ pub contract LockedTokens { /// Borrow a "reference" to the staking object which allows the caller /// to perform all staking actions with locked tokens. - pub fun borrowStaker(): LockedNodeStakerProxy { + access(all) fun borrowStaker(): LockedNodeStakerProxy { pre { self.nodeStakerProxy != nil: "The NodeStakerProxy doesn't exist!" @@ -363,7 +363,7 @@ pub contract LockedTokens { return self.nodeStakerProxy! } - pub view fun getNodeID(): String? { + access(all) view fun getNodeID(): String? { let tokenManager = self.tokenManager.borrow()! return tokenManager.nodeStaker?.id @@ -371,7 +371,7 @@ pub contract LockedTokens { /// Borrow a "reference" to the delegating object which allows the caller /// to perform all delegating actions with locked tokens. - pub fun borrowDelegator(): LockedNodeDelegatorProxy { + access(all) fun borrowDelegator(): LockedNodeDelegatorProxy { pre { self.nodeDelegatorProxy != nil: "The NodeDelegatorProxy doesn't exist!" @@ -379,13 +379,13 @@ pub contract LockedTokens { return self.nodeDelegatorProxy! } - pub view fun getDelegatorID(): UInt32? { + access(all) view fun getDelegatorID(): UInt32? { let tokenManager = self.tokenManager.borrow()! return tokenManager.nodeDelegator?.id } - pub view fun getDelegatorNodeID(): String? { + access(all) view fun getDelegatorNodeID(): String? { let tokenManager = self.tokenManager.borrow()! return tokenManager.nodeDelegator?.nodeID @@ -394,7 +394,7 @@ pub contract LockedTokens { } /// Used to perform staking actions - pub struct LockedNodeStakerProxy: StakingProxy.NodeStakerProxy { + access(all) struct LockedNodeStakerProxy: StakingProxy.NodeStakerProxy { access(self) var tokenManager: Capability<&LockedTokenManager> @@ -410,7 +410,7 @@ pub contract LockedTokens { } /// Change node networking address - pub fun updateNetworkingAddress(_ newAddress: String) { + access(all) fun updateNetworkingAddress(_ newAddress: String) { let tokenManagerRef = self.tokenManager.borrow()! assert( @@ -422,7 +422,7 @@ pub contract LockedTokens { } /// Stakes new locked tokens - pub fun stakeNewTokens(amount: UFix64) { + access(all) fun stakeNewTokens(amount: UFix64) { let tokenManagerRef = self.tokenManager.borrow()! assert( @@ -436,7 +436,7 @@ pub contract LockedTokens { } /// Stakes unstaked tokens from the staking contract - pub fun stakeUnstakedTokens(amount: UFix64) { + access(all) fun stakeUnstakedTokens(amount: UFix64) { let tokenManagerRef = self.tokenManager.borrow()! assert( @@ -450,7 +450,7 @@ pub contract LockedTokens { /// Stakes rewarded tokens. Rewarded tokens are freely withdrawable /// so if they are staked, the withdraw limit should be increased /// because staked tokens are effectively treated as locked tokens - pub fun stakeRewardedTokens(amount: UFix64) { + access(all) fun stakeRewardedTokens(amount: UFix64) { let tokenManagerRef = self.tokenManager.borrow()! assert( @@ -464,7 +464,7 @@ pub contract LockedTokens { } /// Requests unstaking for the node - pub fun requestUnstaking(amount: UFix64) { + access(all) fun requestUnstaking(amount: UFix64) { let tokenManagerRef = self.tokenManager.borrow()! assert( @@ -477,7 +477,7 @@ pub contract LockedTokens { /// Requests to unstake all of the node's tokens and all of /// the tokens that have been delegated to the node - pub fun unstakeAll() { + access(all) fun unstakeAll() { let tokenManagerRef = self.tokenManager.borrow()! assert( @@ -492,7 +492,7 @@ pub contract LockedTokens { /// the locked token vault. This does not increase the withdraw /// limit because staked/unstaked tokens are considered to still /// be locked in terms of the vesting schedule - pub fun withdrawUnstakedTokens(amount: UFix64) { + access(all) fun withdrawUnstakedTokens(amount: UFix64) { let tokenManagerRef = self.tokenManager.borrow()! assert( @@ -509,7 +509,7 @@ pub contract LockedTokens { /// Withdraw reward tokens to the locked vault, /// which increases the withdraw limit - pub fun withdrawRewardedTokens(amount: UFix64) { + access(all) fun withdrawRewardedTokens(amount: UFix64) { let tokenManagerRef = self.tokenManager.borrow()! assert( @@ -522,7 +522,7 @@ pub contract LockedTokens { } /// Used to perform delegating actions in transactions - pub struct LockedNodeDelegatorProxy: StakingProxy.NodeDelegatorProxy { + access(all) struct LockedNodeDelegatorProxy: StakingProxy.NodeDelegatorProxy { access(self) var tokenManager: Capability<&LockedTokenManager> @@ -538,7 +538,7 @@ pub contract LockedTokens { } /// delegates tokens from the locked token vault - pub fun delegateNewTokens(amount: UFix64) { + access(all) fun delegateNewTokens(amount: UFix64) { let tokenManagerRef = self.tokenManager.borrow()! assert( @@ -552,7 +552,7 @@ pub contract LockedTokens { } /// Delegate tokens from the unstaked staking bucket - pub fun delegateUnstakedTokens(amount: UFix64) { + access(all) fun delegateUnstakedTokens(amount: UFix64) { let tokenManagerRef = self.tokenManager.borrow()! assert( @@ -565,7 +565,7 @@ pub contract LockedTokens { /// Delegate rewarded tokens. Increases the unlock limit /// because these are freely withdrawable - pub fun delegateRewardedTokens(amount: UFix64) { + access(all) fun delegateRewardedTokens(amount: UFix64) { let tokenManagerRef = self.tokenManager.borrow()! assert( @@ -579,7 +579,7 @@ pub contract LockedTokens { } /// Request to unstake tokens - pub fun requestUnstaking(amount: UFix64) { + access(all) fun requestUnstaking(amount: UFix64) { let tokenManagerRef = self.tokenManager.borrow()! assert( @@ -592,7 +592,7 @@ pub contract LockedTokens { /// withdraw unstaked tokens back to the locked vault /// This does not increase the withdraw limit - pub fun withdrawUnstakedTokens(amount: UFix64) { + access(all) fun withdrawUnstakedTokens(amount: UFix64) { let tokenManagerRef = self.tokenManager.borrow()! assert( @@ -608,7 +608,7 @@ pub contract LockedTokens { /// Withdraw rewarded tokens back to the locked vault, /// which increases the withdraw limit because these /// are considered unstaked in terms of the vesting schedule - pub fun withdrawRewardedTokens(amount: UFix64) { + access(all) fun withdrawRewardedTokens(amount: UFix64) { let tokenManagerRef = self.tokenManager.borrow()! assert( @@ -620,8 +620,8 @@ pub contract LockedTokens { } } - pub resource interface AddAccount { - pub fun addAccount( + access(all) resource interface AddAccount { + access(all) fun addAccount( sharedAccountAddress: Address, unlockedAccountAddress: Address, tokenAdmin: Capability<&LockedTokenManager>) @@ -630,7 +630,7 @@ pub contract LockedTokens { /// Resource that the Dapper Labs token admin /// stores in their account to manage the vesting schedule /// for all the token holders - pub resource TokenAdminCollection: AddAccount { + access(all) resource TokenAdminCollection: AddAccount { /// Mapping of account addresses to LockedTokenManager capabilities access(self) var accounts: {Address: Capability<&LockedTokenManager>} @@ -641,7 +641,7 @@ pub contract LockedTokens { /// Add a new account's locked token manager capability /// to the record - pub fun addAccount( + access(all) fun addAccount( sharedAccountAddress: Address, unlockedAccountAddress: Address, tokenAdmin: Capability<&LockedTokenManager>) @@ -652,22 +652,22 @@ pub contract LockedTokens { } /// Get an accounts capability - pub fun getAccount(address: Address): Capability<&LockedTokenManager{TokenAdmin}>? { + access(all) fun getAccount(address: Address): Capability<&LockedTokenManager{TokenAdmin}>? { return self.accounts[address] } - pub fun createAdminCollection(): @TokenAdminCollection { + access(all) fun createAdminCollection(): @TokenAdminCollection { return <-create TokenAdminCollection() } } - pub resource interface LockedAccountCreatorPublic { - pub fun addCapability(cap: Capability<&TokenAdminCollection>) + access(all) resource interface LockedAccountCreatorPublic { + access(all) fun addCapability(cap: Capability<&TokenAdminCollection>) } // account creators store this resource in their account // in order to be able to register accounts who have locked tokens - pub resource LockedAccountCreator: LockedAccountCreatorPublic, AddAccount { + access(all) resource LockedAccountCreator: LockedAccountCreatorPublic, AddAccount { access(self) var addAccountCapability: Capability<&TokenAdminCollection>? @@ -675,14 +675,14 @@ pub contract LockedTokens { self.addAccountCapability = nil } - pub fun addCapability(cap: Capability<&TokenAdminCollection>) { + access(all) fun addCapability(cap: Capability<&TokenAdminCollection>) { pre { cap.borrow() != nil: "Invalid token admin collection capability" } self.addAccountCapability = cap } - pub fun addAccount(sharedAccountAddress: Address, + access(all) fun addAccount(sharedAccountAddress: Address, unlockedAccountAddress: Address, tokenAdmin: Capability<&LockedTokenManager>) { @@ -703,17 +703,17 @@ pub contract LockedTokens { /// Public function to create a new Locked Token Manager /// every time a new user account is created - pub fun createLockedTokenManager(vault: Capability<&FlowToken.Vault>): @LockedTokenManager { + access(all) fun createLockedTokenManager(vault: Capability<&FlowToken.Vault>): @LockedTokenManager { return <- create LockedTokenManager(vault: vault) } // Creates a new TokenHolder resource for this LockedTokenManager /// that the user can store in their unlocked account. - pub fun createTokenHolder(lockedAddress: Address, tokenManager: Capability<&LockedTokenManager>): @TokenHolder { + access(all) fun createTokenHolder(lockedAddress: Address, tokenManager: Capability<&LockedTokenManager>): @TokenHolder { return <- create TokenHolder(lockedAddress: lockedAddress, tokenManager: tokenManager) } - pub fun createLockedAccountCreator(): @LockedAccountCreator { + access(all) fun createLockedAccountCreator(): @LockedAccountCreator { return <-create LockedAccountCreator() } diff --git a/contracts/NodeVersionBeacon.cdc b/contracts/NodeVersionBeacon.cdc index 895a61eda..cc0686f01 100644 --- a/contracts/NodeVersionBeacon.cdc +++ b/contracts/NodeVersionBeacon.cdc @@ -16,17 +16,17 @@ /// the new versionUpdateFreezePeriod. /// /// The contract itself can be used to query the current version and the next upcoming version. -pub contract NodeVersionBeacon { +access(all) contract NodeVersionBeacon { /// Struct representing software version as Semantic Version /// along with helper functions /// For reference, see https://semver.org/ - pub struct Semver { + access(all) struct Semver { /// Components defining a semantic version - pub let major: UInt8 - pub let minor: UInt8 - pub let patch: UInt8 - pub let preRelease: String? + access(all) let major: UInt8 + access(all) let minor: UInt8 + access(all) let patch: UInt8 + access(all) let preRelease: String? init(major: UInt8, minor: UInt8, patch: UInt8, preRelease: String?) { self.major = major @@ -37,7 +37,7 @@ pub contract NodeVersionBeacon { /// Returns version in Semver format (e.g. v..-) /// as a String - pub fun toString(): String { + access(all) fun toString(): String { let semverCoreString = self.major.toString() .concat(".") .concat( @@ -58,7 +58,7 @@ pub contract NodeVersionBeacon { /// Returns true if Semver core is greater than /// passed Semver core and false otherwise - pub fun coreGreaterThan(_ other: Semver): Bool { + access(all) fun coreGreaterThan(_ other: Semver): Bool { if (self.major != other.major) { return self.major > other.major } @@ -76,44 +76,44 @@ pub contract NodeVersionBeacon { /// Returns true if Semver core is greater than or /// equal to passed Semver core and false otherwise - pub fun coreGreaterThanOrEqualTo(_ other: Semver): Bool { + access(all) fun coreGreaterThanOrEqualTo(_ other: Semver): Bool { return self.coreGreaterThan(other) || self.coreEqualTo(other) } /// Returns true if Semver core is less than /// passed Semver core and false otherwise - pub fun coreLessThan(_ other: Semver): Bool { + access(all) fun coreLessThan(_ other: Semver): Bool { return !self.coreGreaterThanOrEqualTo(other) } /// Returns true if Semver core is less than or /// equal to passed Semver core and false otherwise - pub fun coreLessThanOrEqualTo(_ other: Semver): Bool { + access(all) fun coreLessThanOrEqualTo(_ other: Semver): Bool { return !self.coreGreaterThan(other) } /// Returns true if Semver is equal to passed /// Semver core and false otherwise - pub fun coreEqualTo(_ other: Semver): Bool { + access(all) fun coreEqualTo(_ other: Semver): Bool { return self.major == other.major && self.minor == other.minor && self.patch == other.patch } /// Returns true if Semver is *exactly* equal to passed /// Semver and false otherwise - pub fun strictEqualTo(_ other: Semver): Bool { + access(all) fun strictEqualTo(_ other: Semver): Bool { return self.coreEqualTo(other) && self.preRelease == other.preRelease } } /// Returns the v0.0.0 version. - pub fun zeroSemver(): Semver { + access(all) fun zeroSemver(): Semver { return Semver(major: 0, minor: 0, patch: 0, preRelease: nil) } /// Struct for emitting the current and incoming versions along with their block - pub struct VersionBoundary { - pub let blockHeight: UInt64 - pub let version: Semver + access(all) struct VersionBoundary { + access(all) let blockHeight: UInt64 + access(all) let version: Semver init(blockHeight: UInt64, version: Semver){ self.blockHeight = blockHeight @@ -126,7 +126,7 @@ pub contract NodeVersionBeacon { /// Simplifies edge case code. /// The zero boundary is at block height 0 and has version v0.0.0. /// It is always the first element in the versionBoundaryBlockList. - pub fun zeroVersionBoundary(): VersionBoundary { + access(all) fun zeroVersionBoundary(): VersionBoundary { let zeroVersion = self.zeroSemver() return VersionBoundary( blockHeight: 0, @@ -139,20 +139,20 @@ pub contract NodeVersionBeacon { /// sorted by block height. /// The sequence increases by one each time an event is emitted. /// It can be used to verify no events were missed. - pub event VersionBeacon( + access(all) event VersionBeacon( versionBoundaries: [VersionBoundary], sequence: UInt64 ) /// Event emitted any time the version boundary freeze period is updated. /// freeze period is measured in blocks (from the current block). - pub event NodeVersionBoundaryFreezePeriodChanged(freezePeriod: UInt64) + access(all) event NodeVersionBoundaryFreezePeriodChanged(freezePeriod: UInt64) /// Canonical storage path for the NodeVersionBeacon.Admin resource. - pub let AdminStoragePath: StoragePath + access(all) let AdminStoragePath: StoragePath /// Canonical storage path for the NodeVersionBeacon.Heartbeat resource. - pub let HeartbeatStoragePath: StoragePath + access(all) let HeartbeatStoragePath: StoragePath /// Block height indexed version boundaries. access(contract) let versionBoundary: {UInt64: VersionBoundary} @@ -177,9 +177,9 @@ pub contract NodeVersionBeacon { /// Admin resource that manages version boundaries /// maintained in this contract. - pub resource Admin { + access(all) resource Admin { /// Adds or updates a version boundary. - pub fun setVersionBoundary(versionBoundary: VersionBoundary) { + access(all) fun setVersionBoundary(versionBoundary: VersionBoundary) { pre { versionBoundary.blockHeight > getCurrentBlock().height + NodeVersionBeacon.versionBoundaryFreezePeriod : "Cannot set/update a version boundary for past blocks or blocks in the near future." @@ -217,7 +217,7 @@ pub contract NodeVersionBeacon { } /// Deletes an upcoming version boundary. - pub fun deleteVersionBoundary(blockHeight: UInt64) { + access(all) fun deleteVersionBoundary(blockHeight: UInt64) { pre { blockHeight > getCurrentBlock().height + NodeVersionBeacon.versionBoundaryFreezePeriod : "Cannot delete a version for past blocks or blocks in the near future." @@ -252,7 +252,7 @@ pub contract NodeVersionBeacon { } /// Updates the number of blocks in which version boundaries are frozen. - pub fun setVersionBoundaryFreezePeriod(newFreezePeriod: UInt64) { + access(all) fun setVersionBoundaryFreezePeriod(newFreezePeriod: UInt64) { post { NodeVersionBeacon.versionBoundaryFreezePeriod == newFreezePeriod: "Update buffer was not properly set!" } @@ -286,9 +286,9 @@ pub contract NodeVersionBeacon { /// This resource should always be held only by the service account, /// because the service account should be the only one emitting the event, /// and only during the system transaction - pub resource Heartbeat { + access(all) resource Heartbeat { // heartbeat is called during the system transaction every block. - pub fun heartbeat() { + access(all) fun heartbeat() { self.checkFirstUpcomingBoundary() if (!NodeVersionBeacon.emitEventOnNextHeartbeat) { @@ -340,7 +340,7 @@ pub contract NodeVersionBeacon { /// getCurrentVersionBoundaries returns the current version boundaries. /// this is the same list as the one emitted by the VersionBeacon event. - pub fun getCurrentVersionBoundaries(): [VersionBoundary] { + access(all) fun getCurrentVersionBoundaries(): [VersionBoundary] { let tableUpdates: [VersionBoundary] = [] if NodeVersionBeacon.firstUpcomingBoundary == nil { @@ -373,19 +373,19 @@ pub contract NodeVersionBeacon { } /// Returns the versionBoundaryFreezePeriod - pub fun getVersionBoundaryFreezePeriod(): UInt64 { + access(all) fun getVersionBoundaryFreezePeriod(): UInt64 { return NodeVersionBeacon.versionBoundaryFreezePeriod } /// Returns the sequence number of the next version beacon event /// This can be used to verify that no version beacon events were missed. - pub fun getNextVersionBeaconSequence(): UInt64 { + access(all) fun getNextVersionBeaconSequence(): UInt64 { return self.nextVersionBeaconEventSequence } /// Function that returns the version that was defined at the most /// recent block height boundary. May return zero boundary. - pub fun getCurrentVersionBoundary(): VersionBoundary { + access(all) fun getCurrentVersionBoundary(): VersionBoundary { var current = 0 as UInt64 // index is never 0 since version 0 is always in the past @@ -402,7 +402,7 @@ pub contract NodeVersionBeacon { return self.versionBoundary[block]! } - pub fun getNextVersionBoundary() : VersionBoundary? { + access(all) fun getNextVersionBoundary() : VersionBoundary? { if let index = NodeVersionBeacon.firstUpcomingBoundary { let block = self.versionBoundaryBlockList[index] return self.versionBoundary[block] @@ -412,17 +412,17 @@ pub contract NodeVersionBeacon { } /// Checks whether given version was compatible at the given historical block height - pub fun getVersionBoundary(effectiveAtBlockHeight: UInt64): VersionBoundary { + access(all) fun getVersionBoundary(effectiveAtBlockHeight: UInt64): VersionBoundary { let block = self.searchForClosestHistoricalBlockBoundary(blockHeight: effectiveAtBlockHeight) return self.versionBoundary[block]! } - pub struct VersionBoundaryPage { - pub let page: Int - pub let perPage: Int - pub let totalLength: Int - pub let values : [VersionBoundary] + access(all) struct VersionBoundaryPage { + access(all) let page: Int + access(all) let perPage: Int + access(all) let totalLength: Int + access(all) let values : [VersionBoundary] init(page: Int, perPage: Int, totalLength: Int, values: [VersionBoundary]) { self.page = page @@ -436,7 +436,7 @@ pub contract NodeVersionBeacon { /// Returns a page of version boundaries /// page is zero based /// results are sorted by block height - pub fun getVersionBoundariesPage(page: Int, perPage: Int) : VersionBoundaryPage { + access(all) fun getVersionBoundariesPage(page: Int, perPage: Int) : VersionBoundaryPage { pre { page >= 0: "page must be greater than or equal to 0" perPage > 0: "perPage must be greater than 0" diff --git a/contracts/StakingProxy.cdc b/contracts/StakingProxy.cdc index a38fe1285..41b42c07d 100644 --- a/contracts/StakingProxy.cdc +++ b/contracts/StakingProxy.cdc @@ -5,22 +5,22 @@ // use to store staking proxies for all of their node operation // relationships -pub contract StakingProxy { +access(all) contract StakingProxy { /// path to store the node operator resource /// in the node operators account for staking helper - pub let NodeOperatorCapabilityStoragePath: StoragePath + access(all) let NodeOperatorCapabilityStoragePath: StoragePath - pub let NodeOperatorCapabilityPublicPath: PublicPath + access(all) let NodeOperatorCapabilityPublicPath: PublicPath /// Contains the node info associated with a node operator - pub struct NodeInfo { + access(all) struct NodeInfo { - pub let id: String - pub let role: UInt8 - pub let networkingAddress: String - pub let networkingKey: String - pub let stakingKey: String + access(all) let id: String + access(all) let role: UInt8 + access(all) let networkingAddress: String + access(all) let networkingKey: String + access(all) let stakingKey: String init(nodeID: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String) { pre { @@ -38,52 +38,52 @@ pub contract StakingProxy { /// The interface that limits what a node operator can access /// from the staker who they operate for - pub struct interface NodeStakerProxy { + access(all) struct interface NodeStakerProxy { - pub fun stakeNewTokens(amount: UFix64) + access(all) fun stakeNewTokens(amount: UFix64) - pub fun stakeUnstakedTokens(amount: UFix64) + access(all) fun stakeUnstakedTokens(amount: UFix64) - pub fun requestUnstaking(amount: UFix64) + access(all) fun requestUnstaking(amount: UFix64) - pub fun unstakeAll() + access(all) fun unstakeAll() - pub fun withdrawUnstakedTokens(amount: UFix64) + access(all) fun withdrawUnstakedTokens(amount: UFix64) - pub fun withdrawRewardedTokens(amount: UFix64) + access(all) fun withdrawRewardedTokens(amount: UFix64) } /// The interface the describes what a delegator can do - pub struct interface NodeDelegatorProxy { + access(all) struct interface NodeDelegatorProxy { - pub fun delegateNewTokens(amount: UFix64) + access(all) fun delegateNewTokens(amount: UFix64) - pub fun delegateUnstakedTokens(amount: UFix64) + access(all) fun delegateUnstakedTokens(amount: UFix64) - pub fun delegateRewardedTokens(amount: UFix64) + access(all) fun delegateRewardedTokens(amount: UFix64) - pub fun requestUnstaking(amount: UFix64) + access(all) fun requestUnstaking(amount: UFix64) - pub fun withdrawUnstakedTokens(amount: UFix64) + access(all) fun withdrawUnstakedTokens(amount: UFix64) - pub fun withdrawRewardedTokens(amount: UFix64) + access(all) fun withdrawRewardedTokens(amount: UFix64) } /// The interface that a node operator publishes their NodeStakerProxyHolder /// as in order to allow other token holders to initialize /// staking helper relationships with them - pub resource interface NodeStakerProxyHolderPublic { + access(all) resource interface NodeStakerProxyHolderPublic { - pub fun addStakingProxy(nodeID: String, proxy: AnyStruct{NodeStakerProxy}) + access(all) fun addStakingProxy(nodeID: String, proxy: AnyStruct{NodeStakerProxy}) - pub fun getNodeInfo(nodeID: String): NodeInfo? + access(all) fun getNodeInfo(nodeID: String): NodeInfo? } /// The resource that node operators store in their accounts /// to manage relationships with token holders who pay them off-chain /// instead of with tokens - pub resource NodeStakerProxyHolder: NodeStakerProxyHolderPublic { + access(all) resource NodeStakerProxyHolder: NodeStakerProxyHolderPublic { /// Maps node IDs to any struct that implements the NodeStakerProxy interface /// allows node operators to work with users with locked tokens @@ -100,7 +100,7 @@ pub contract StakingProxy { /// Node operator calls this to add info about a node they /// want to accept tokens for - pub fun addNodeInfo(nodeInfo: NodeInfo) { + access(all) fun addNodeInfo(nodeInfo: NodeInfo) { pre { self.nodeInfo[nodeInfo.id] == nil } @@ -108,12 +108,12 @@ pub contract StakingProxy { } /// Remove node info if it isn't in use any more - pub fun removeNodeInfo(nodeID: String): NodeInfo { + access(all) fun removeNodeInfo(nodeID: String): NodeInfo { return self.nodeInfo.remove(key: nodeID)! } /// Published function to get all the info for a specific node ID - pub fun getNodeInfo(nodeID: String): NodeInfo? { + access(all) fun getNodeInfo(nodeID: String): NodeInfo? { return self.nodeInfo[nodeID] } @@ -121,7 +121,7 @@ pub contract StakingProxy { /// the node operator's NodeInfo to operate a node /// They store their `NodeStakerProxy` here to allow the node /// operator to perform some staking actions also - pub fun addStakingProxy(nodeID: String, proxy: AnyStruct{NodeStakerProxy}) { + access(all) fun addStakingProxy(nodeID: String, proxy: AnyStruct{NodeStakerProxy}) { pre { self.stakingProxies[nodeID] == nil } @@ -130,7 +130,7 @@ pub contract StakingProxy { /// The node operator can call the removeStakingProxy function /// to remove a staking proxy if it is no longer needed - pub fun removeStakingProxy(nodeID: String): AnyStruct{NodeStakerProxy} { + access(all) fun removeStakingProxy(nodeID: String): AnyStruct{NodeStakerProxy} { pre { self.stakingProxies[nodeID] != nil } @@ -140,13 +140,13 @@ pub contract StakingProxy { /// Borrow a "reference" to the staking proxy so staking operations /// can be performed with it - pub fun borrowStakingProxy(nodeID: String): AnyStruct{NodeStakerProxy}? { + access(all) fun borrowStakingProxy(nodeID: String): AnyStruct{NodeStakerProxy}? { return self.stakingProxies[nodeID] } } /// Create a new proxy holder for a node operator - pub fun createProxyHolder(): @NodeStakerProxyHolder { + access(all) fun createProxyHolder(): @NodeStakerProxyHolder { return <- create NodeStakerProxyHolder() } diff --git a/contracts/epochs/FlowClusterQC.cdc b/contracts/epochs/FlowClusterQC.cdc index d5bc14e60..63a274f80 100644 --- a/contracts/epochs/FlowClusterQC.cdc +++ b/contracts/epochs/FlowClusterQC.cdc @@ -22,7 +22,7 @@ import Crypto -pub contract FlowClusterQC { +access(all) contract FlowClusterQC { // ================================================================================ // CONTRACT VARIABLES @@ -30,7 +30,7 @@ pub contract FlowClusterQC { /// Indicates whether votes are currently being collected. /// If false, no node operator will be able to submit votes - pub var inProgress: Bool + access(all) var inProgress: Bool /// The collection node clusters for the current epoch access(account) var clusters: [Cluster] @@ -53,21 +53,21 @@ pub contract FlowClusterQC { // ================================================================================ /// Canonical paths for admin and voter resources - pub let AdminStoragePath: StoragePath - pub let VoterStoragePath: StoragePath + access(all) let AdminStoragePath: StoragePath + access(all) let VoterStoragePath: StoragePath /// Represents a collection node cluster for a given epoch. - pub struct Cluster { + access(all) struct Cluster { /// The index of the cluster within the cluster array. This uniquely identifies /// a cluster for a given epoch - pub let index: UInt16 + access(all) let index: UInt16 /// Weights for each nodeID in the cluster - pub let nodeWeights: {String: UInt64} + access(all) let nodeWeights: {String: UInt64} /// The total node weight of all the nodes in the cluster - pub let totalWeight: UInt64 + access(all) let totalWeight: UInt64 /// Votes that nodes claim at the beginning of each EpochSetup phase /// Key is node ID from the identity table contract @@ -77,10 +77,10 @@ pub contract FlowClusterQC { /// adds their signature and message, then adds it back to this vote list. /// If a node has voted, their `signature` and `message` field will be non-`nil` /// If a node hasn't voted, their `signature` and `message` field will be `nil` - pub var generatedVotes: {String: Vote} + access(all) var generatedVotes: {String: Vote} /// Tracks each unique vote and how much combined weight has been sent for the vote - pub var uniqueVoteMessageTotalWeights: {String: UInt64} + access(all) var uniqueVoteMessageTotalWeights: {String: UInt64} init(index: UInt16, nodeWeights: {String: UInt64}) { self.index = index @@ -96,13 +96,13 @@ pub contract FlowClusterQC { } /// Returns the number of nodes in the cluster - pub fun size(): UInt16 { + access(all) fun size(): UInt16 { return UInt16(self.nodeWeights.length) } /// Returns the minimum sum of vote weight required in order to be able to generate a /// valid quorum certificate for this cluster. - pub view fun voteThreshold(): UInt64 { + access(all) view fun voteThreshold(): UInt64 { if self.totalWeight == 0 as UInt64 { return 0 as UInt64 } @@ -127,7 +127,7 @@ pub contract FlowClusterQC { /// Then this cluster's QC generation is considered complete and this method returns /// the vote message that reached quorum /// If no vote is found to reach quorum, then `nil` is returned - pub view fun isComplete(): String? { + access(all) view fun isComplete(): String? { for message in self.uniqueVoteMessageTotalWeights.keys { if self.uniqueVoteMessageTotalWeights[message]! >= self.voteThreshold() { return message @@ -138,7 +138,7 @@ pub contract FlowClusterQC { /// Generates the Quorum Certificate for this cluster /// If the cluster is not complete, this returns `nil` - pub fun generateQuorumCertificate(): ClusterQC? { + access(all) fun generateQuorumCertificate(): ClusterQC? { // Only generate the QC if the voting is complete for this cluster if let quorumMessage = self.isComplete() { @@ -189,22 +189,22 @@ pub contract FlowClusterQC { /// `Vote` represents a vote from one collection node. /// It simply contains strings with the signed message /// the hex encoded message itself. Votes are aggregated to build quorum certificates - pub struct Vote { + access(all) struct Vote { /// The node ID from the staking contract - pub var nodeID: String + access(all) var nodeID: String /// The signed message from the node (using the nodes `stakingKey`) - pub(set) var signature: String? + access(all)var signature: String? /// The hex-encoded message for the vote - pub(set) var message: String? + access(all)var message: String? /// The index of the cluster that this vote (and node) is in - pub let clusterIndex: UInt16 + access(all) let clusterIndex: UInt16 /// The weight of the vote (and node) - pub let weight: UInt64 + access(all) let weight: UInt64 init(nodeID: String, clusterIndex: UInt16, voteWeight: UInt64) { pre { @@ -220,19 +220,19 @@ pub contract FlowClusterQC { /// Represents the quorum certificate for a specific cluster /// and all the nodes/votes in the cluster - pub struct ClusterQC { + access(all) struct ClusterQC { /// The index of the qc in the cluster record - pub let index: UInt16 + access(all) let index: UInt16 /// The vote signatures from all the nodes in the cluster - pub var voteSignatures: [String] + access(all) var voteSignatures: [String] /// The vote message from all the valid voters in the cluster - pub var voteMessage: String + access(all) var voteMessage: String /// The node IDs that correspond to each vote - pub var voterIDs: [String] + access(all) var voterIDs: [String] init(index: UInt16, signatures: [String], message: String, voterIDs: [String]) { self.index = index @@ -241,11 +241,11 @@ pub contract FlowClusterQC { self.voterIDs = voterIDs } - pub fun addSignature(_ signature: String) { + access(all) fun addSignature(_ signature: String) { self.voteSignatures.append(signature) } - pub fun addVoterID(_ voterID: String) { + access(all) fun addVoterID(_ voterID: String) { self.voterIDs.append(voterID) } } @@ -253,13 +253,13 @@ pub contract FlowClusterQC { /// The Voter resource is generated for each collection node after they register. /// Each resource instance is good for all future potential epochs, but will /// only be valid if the node operator has been confirmed as a collector node for the next epoch. - pub resource Voter { + access(all) resource Voter { /// The nodeID of the voter (from the staking contract) - pub let nodeID: String + access(all) let nodeID: String /// The staking key of the node (from the staking contract) - pub var stakingKey: String + access(all) var stakingKey: String init(nodeID: String, stakingKey: String) { pre { @@ -281,7 +281,7 @@ pub contract FlowClusterQC { /// Params: voteSignature: Signed `voteMessage` with the nodes `stakingKey` /// voteMessage: Hex-encoded message /// - pub fun vote(voteSignature: String, voteMessage: String) { + access(all) fun vote(voteSignature: String, voteMessage: String) { pre { FlowClusterQC.inProgress: "Voting phase is not in progress" voteSignature.length > 0: "Vote signature must not be empty" @@ -336,21 +336,21 @@ pub contract FlowClusterQC { /// Interface that only contains operations that are part /// of the regular automated functioning of the epoch process /// These are accessed by the `FlowEpoch` contract through a capability - pub resource interface EpochOperations { - pub fun createVoter(nodeID: String, stakingKey: String): @Voter - pub fun startVoting(clusters: [Cluster]) - pub fun stopVoting() - pub fun forceStopVoting() + access(all) resource interface EpochOperations { + access(all) fun createVoter(nodeID: String, stakingKey: String): @Voter + access(all) fun startVoting(clusters: [Cluster]) + access(all) fun stopVoting() + access(all) fun forceStopVoting() } /// The Admin resource provides the ability to create to Voter resource objects, /// begin voting, and end voting for an epoch - pub resource Admin: EpochOperations { + access(all) resource Admin: EpochOperations { /// Creates a new Voter resource for a collection node /// This function will be publicly accessible in the FlowEpoch /// contract, which will restrict the creation to only collector nodes - pub fun createVoter(nodeID: String, stakingKey: String): @Voter { + access(all) fun createVoter(nodeID: String, stakingKey: String): @Voter { return <-create Voter(nodeID: nodeID, stakingKey: stakingKey) } @@ -360,7 +360,7 @@ pub contract FlowClusterQC { /// transitioning to the Epoch Setup Phase. /// /// CAUTION: calling this erases the votes for the current/previous epoch. - pub fun startVoting(clusters: [Cluster]) { + access(all) fun startVoting(clusters: [Cluster]) { FlowClusterQC.inProgress = true FlowClusterQC.clusters = clusters @@ -380,7 +380,7 @@ pub contract FlowClusterQC { /// Stops voting for the current epoch. Can only be called once a 2/3 /// majority of each cluster has submitted a vote. - pub fun stopVoting() { + access(all) fun stopVoting() { pre { FlowClusterQC.votingCompleted(): "Voting must be complete before it can be stopped" } @@ -389,25 +389,25 @@ pub contract FlowClusterQC { /// Force a stop of the voting period /// Should only be used if the protocol halts and needs to be reset - pub fun forceStopVoting() { + access(all) fun forceStopVoting() { FlowClusterQC.inProgress = false } } /// Returns a boolean telling if the voter is registered for the current voting phase - pub view fun voterIsRegistered(_ nodeID: String): Bool { + access(all) view fun voterIsRegistered(_ nodeID: String): Bool { return FlowClusterQC.nodeCluster[nodeID] != nil } /// Returns a boolean telling if the node has claimed their `Voter` resource object /// The object can only be claimed once, but if the node destroys their `Voter` object, /// It could be claimed again - pub view fun voterIsClaimed(_ nodeID: String): Bool { + access(all) view fun voterIsClaimed(_ nodeID: String): Bool { return FlowClusterQC.voterClaimed[nodeID] != nil } /// Returns whether this voter has successfully submitted a vote for this epoch. - pub view fun nodeHasVoted(_ nodeID: String): Bool { + access(all) view fun nodeHasVoted(_ nodeID: String): Bool { // Get the cluster that this node belongs to if let clusterIndex = FlowClusterQC.nodeCluster[nodeID] { @@ -424,12 +424,12 @@ pub contract FlowClusterQC { } /// Gets all of the collector clusters for the current epoch - pub view fun getClusters(): [Cluster] { + access(all) view fun getClusters(): [Cluster] { return self.clusters } /// Returns true if we have collected enough votes for all clusters. - pub view fun votingCompleted(): Bool { + access(all) view fun votingCompleted(): Bool { for cluster in FlowClusterQC.clusters { if cluster.isComplete() == nil { return false diff --git a/contracts/epochs/FlowDKG.cdc b/contracts/epochs/FlowDKG.cdc index 904ad8023..df012fe87 100644 --- a/contracts/epochs/FlowDKG.cdc +++ b/contracts/epochs/FlowDKG.cdc @@ -21,30 +21,30 @@ * process of transitioning between epochs in Flow. */ -pub contract FlowDKG { +access(all) contract FlowDKG { // =================================================================== // DKG EVENTS // =================================================================== /// Emitted when the admin enables the DKG - pub event StartDKG() + access(all) event StartDKG() /// Emitted when the admin ends the DKG after enough submissions have been recorded - pub event EndDKG(finalSubmission: [String?]?) + access(all) event EndDKG(finalSubmission: [String?]?) /// Emitted when a consensus node has posted a message to the DKG whiteboard - pub event BroadcastMessage(nodeID: String, content: String) + access(all) event BroadcastMessage(nodeID: String, content: String) // ================================================================================ // CONTRACT VARIABLES // ================================================================================ /// The length of keys that have to be submitted as a final submission - pub let submissionKeyLength: Int + access(all) let submissionKeyLength: Int /// Indicates if the DKG is enabled or not - pub var dkgEnabled: Bool + access(all) var dkgEnabled: Bool /// Indicates if a Participant resource has already been claimed by a node ID /// from the identity table contract @@ -80,19 +80,19 @@ pub contract FlowDKG { // ================================================================================ // Canonical paths for admin and participant resources - pub let AdminStoragePath: StoragePath - pub let ParticipantStoragePath: StoragePath - pub let ParticipantPublicPath: PublicPath + access(all) let AdminStoragePath: StoragePath + access(all) let ParticipantStoragePath: StoragePath + access(all) let ParticipantPublicPath: PublicPath /// Struct to represent a single whiteboard message - pub struct Message { + access(all) struct Message { /// The ID of the node who submitted the message - pub let nodeID: String + access(all) let nodeID: String /// The content of the message /// We make no assumptions or assertions about the content of the message - pub let content: String + access(all) let content: String init(nodeID: String, content: String) { self.nodeID = nodeID @@ -103,10 +103,10 @@ pub contract FlowDKG { /// The Participant resource is generated for each consensus node when they register. /// Each resource instance is good for all future potential epochs, but will /// only be valid if the node operator has been confirmed as a consensus node for the next epoch. - pub resource Participant { + access(all) resource Participant { /// The node ID of the participant - pub let nodeID: String + access(all) let nodeID: String init(nodeID: String) { pre { @@ -124,7 +124,7 @@ pub contract FlowDKG { } /// Posts a whiteboard message to the contract - pub fun postMessage(_ content: String) { + access(all) fun postMessage(_ content: String) { pre { FlowDKG.participantIsRegistered(self.nodeID): "Cannot send whiteboard message if not registered for the current epoch" @@ -145,7 +145,7 @@ pub contract FlowDKG { /// Sends the final key vector submission. /// Can only be called by consensus nodes that are registered /// and can only be called once per consensus node per epoch - pub fun sendFinalSubmission(_ submission: [String?]) { + access(all) fun sendFinalSubmission(_ submission: [String?]) { pre { FlowDKG.participantIsRegistered(self.nodeID): "Cannot send final submission if not registered for the current epoch" @@ -202,19 +202,19 @@ pub contract FlowDKG { /// Interface that only contains operations that are part /// of the regular automated functioning of the epoch process /// These are accessed by the `FlowEpoch` contract through a capability - pub resource interface EpochOperations { - pub fun createParticipant(nodeID: String): @Participant - pub fun startDKG(nodeIDs: [String]) - pub fun endDKG() - pub fun forceEndDKG() + access(all) resource interface EpochOperations { + access(all) fun createParticipant(nodeID: String): @Participant + access(all) fun startDKG(nodeIDs: [String]) + access(all) fun endDKG() + access(all) fun forceEndDKG() } /// The Admin resource provides the ability to begin and end voting for an epoch - pub resource Admin: EpochOperations { + access(all) resource Admin: EpochOperations { /// Sets the optional safe DKG success threshold /// Set the threshold to nil if it isn't needed - pub fun setSafeSuccessThreshold(newThresholdPercentage: UFix64?) { + access(all) fun setSafeSuccessThreshold(newThresholdPercentage: UFix64?) { pre { !FlowDKG.dkgEnabled: "Cannot set the dkg success threshold while the DKG is enabled" newThresholdPercentage == nil || newThresholdPercentage! < 1.0: "The threshold percentage must be in [0,1)" @@ -230,7 +230,7 @@ pub contract FlowDKG { } /// Creates a new Participant resource for a consensus node - pub fun createParticipant(nodeID: String): @Participant { + access(all) fun createParticipant(nodeID: String): @Participant { let participant <-create Participant(nodeID: nodeID) FlowDKG.nodeClaimed[nodeID] = true return <-participant @@ -238,7 +238,7 @@ pub contract FlowDKG { /// Resets all the fields for tracking the current DKG process /// and sets the given node IDs as registered - pub fun startDKG(nodeIDs: [String]) { + access(all) fun startDKG(nodeIDs: [String]) { pre { FlowDKG.dkgEnabled == false: "Cannot start the DKG when it is already running" } @@ -260,7 +260,7 @@ pub contract FlowDKG { /// Disables the DKG and closes the opportunity for messages and submissions /// until the next time the DKG is enabled - pub fun endDKG() { + access(all) fun endDKG() { pre { FlowDKG.dkgEnabled == true: "Cannot end the DKG when it is already disabled" FlowDKG.dkgCompleted() != nil: "Cannot end the DKG until enough final arrays have been submitted" @@ -274,7 +274,7 @@ pub contract FlowDKG { /// Ends the DKG without checking if it is completed /// Should only be used if something goes wrong with the DKG, /// the protocol halts, or needs to be reset for some reason - pub fun forceEndDKG() { + access(all) fun forceEndDKG() { FlowDKG.dkgEnabled = false emit EndDKG(finalSubmission: FlowDKG.dkgCompleted()) @@ -309,24 +309,24 @@ pub contract FlowDKG { } /// Returns true if a node is registered as a consensus node for the proposed epoch - pub view fun participantIsRegistered(_ nodeID: String): Bool { + access(all) view fun participantIsRegistered(_ nodeID: String): Bool { return FlowDKG.finalSubmissionByNodeID[nodeID] != nil } /// Returns true if a consensus node has claimed their Participant resource /// which is valid for all future epochs where the node is registered - pub view fun participantIsClaimed(_ nodeID: String): Bool? { + access(all) view fun participantIsClaimed(_ nodeID: String): Bool? { return FlowDKG.nodeClaimed[nodeID] } /// Gets an array of all the whiteboard messages /// that have been submitted by all nodes in the DKG - pub view fun getWhiteBoardMessages(): [Message] { + access(all) view fun getWhiteBoardMessages(): [Message] { return self.whiteboardMessages } /// Returns whether this node has successfully submitted a final submission for this epoch. - pub view fun nodeHasSubmitted(_ nodeID: String): Bool { + access(all) view fun nodeHasSubmitted(_ nodeID: String): Bool { if let submission = self.finalSubmissionByNodeID[nodeID] { return submission.length > 0 } else { @@ -336,7 +336,7 @@ pub contract FlowDKG { /// Gets the specific final submission for a node ID /// If the node hasn't submitted or registered, this returns `nil` - pub view fun getNodeFinalSubmission(_ nodeID: String): [String?]? { + access(all) view fun getNodeFinalSubmission(_ nodeID: String): [String?]? { if let submission = self.finalSubmissionByNodeID[nodeID] { if submission.length > 0 { return submission @@ -349,12 +349,12 @@ pub contract FlowDKG { } /// Get the list of all the consensus node IDs participating - pub view fun getConsensusNodeIDs(): [String] { + access(all) view fun getConsensusNodeIDs(): [String] { return self.finalSubmissionByNodeID.keys } /// Get the array of all the unique final submissions - pub view fun getFinalSubmissions(): [[String?]] { + access(all) view fun getFinalSubmissions(): [[String?]] { return self.uniqueFinalSubmissions } @@ -366,7 +366,7 @@ pub contract FlowDKG { /// We have 10 DKG nodes (n=10) /// The threshold value is t=floor(10-1)/2) (t=4) /// There must be AT LEAST 5 honest nodes for the DKG to succeed - pub view fun getNativeSuccessThreshold(): UInt64 { + access(all) view fun getNativeSuccessThreshold(): UInt64 { return UInt64((self.getConsensusNodeIDs().length-1)/2) } @@ -375,7 +375,7 @@ pub contract FlowDKG { /// /// This function returns the NON-INCLUSIVE lower bound of honest participants. If this function /// returns threshold t, there must be AT LEAST t+1 honest nodes for the DKG to succeed. - pub view fun getSafeSuccessThreshold(): UInt64 { + access(all) view fun getSafeSuccessThreshold(): UInt64 { var threshold = self.getNativeSuccessThreshold() // Get the safety rate percentage @@ -395,14 +395,14 @@ pub contract FlowDKG { /// This safe threshold is used to artificially increase the DKG participation requirements to /// ensure a lower-bound number of Random Beacon Committee members (beyond the bare minimum required /// by the DKG protocol). - pub view fun getSafeThresholdPercentage(): UFix64? { + access(all) view fun getSafeThresholdPercentage(): UFix64? { let safetyRate = self.account.copy(from: /storage/flowDKGSafeThreshold) return safetyRate } /// Returns the final set of keys if any one set of keys has strictly more than (nodes-1)/2 submissions /// Returns nil if not found (incomplete) - pub view fun dkgCompleted(): [String?]? { + access(all) view fun dkgCompleted(): [String?]? { if !self.dkgEnabled { return nil } var index = 0 diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index c3772ae17..e839e38b0 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -40,26 +40,26 @@ import FlowFees from 0xFLOWFEESADDRESS // indicates that the participants in the next epoch failed to complete the set up // procedure, which is a critical failure and will cause the chain to halt. -pub contract FlowEpoch { +access(all) contract FlowEpoch { - pub enum EpochPhase: UInt8 { - pub case STAKINGAUCTION - pub case EPOCHSETUP - pub case EPOCHCOMMIT + access(all) enum EpochPhase: UInt8 { + access(all) case STAKINGAUCTION + access(all) case EPOCHSETUP + access(all) case EPOCHCOMMIT } - pub enum NodeRole: UInt8 { - pub case NONE - pub case Collector - pub case Consensus - pub case Execution - pub case Verification - pub case Access + access(all) enum NodeRole: UInt8 { + access(all) case NONE + access(all) case Collector + access(all) case Consensus + access(all) case Execution + access(all) case Verification + access(all) case Access } /// The Epoch Setup service event is emitted when we transition to the Epoch Setup /// phase. It contains the finalized identity table for the upcoming epoch. - pub event EpochSetup( + access(all) event EpochSetup( /// The counter for the upcoming epoch. Must be one greater than the /// counter for the current epoch. @@ -98,7 +98,7 @@ pub contract FlowEpoch { /// The EpochCommit service event is emitted when we transition from the Epoch /// Committed phase. It is emitted only when all preparation for the upcoming epoch /// has been completed - pub event EpochCommit( + access(all) event EpochCommit( /// The counter for the upcoming epoch. Must be equal to the counter in the /// previous EpochSetup event. @@ -117,43 +117,43 @@ pub contract FlowEpoch { /// Contains specific metadata about a particular epoch /// All historical epoch metadata is stored permanently - pub struct EpochMetadata { + access(all) struct EpochMetadata { /// The identifier for the epoch - pub let counter: UInt64 + access(all) let counter: UInt64 /// The seed used for generating the epoch setup - pub let seed: String + access(all) let seed: String /// The first view of this epoch - pub let startView: UInt64 + access(all) let startView: UInt64 /// The last view of this epoch - pub let endView: UInt64 + access(all) let endView: UInt64 /// The last view of the staking auction - pub let stakingEndView: UInt64 + access(all) let stakingEndView: UInt64 /// The total rewards that are paid out for the epoch - pub var totalRewards: UFix64 + access(all) var totalRewards: UFix64 /// The reward amounts that are paid to each individual node and its delegators - pub var rewardAmounts: [FlowIDTableStaking.RewardsBreakdown] + access(all) var rewardAmounts: [FlowIDTableStaking.RewardsBreakdown] /// Tracks if rewards have been paid for this epoch - pub var rewardsPaid: Bool + access(all) var rewardsPaid: Bool /// The organization of collector node IDs into clusters /// determined by a round robin sorting algorithm - pub let collectorClusters: [FlowClusterQC.Cluster] + access(all) let collectorClusters: [FlowClusterQC.Cluster] /// The Quorum Certificates from the ClusterQC contract - pub var clusterQCs: [FlowClusterQC.ClusterQC] + access(all) var clusterQCs: [FlowClusterQC.ClusterQC] /// The public keys associated with the Distributed Key Generation /// process that consensus nodes participate in /// Group key is the last element at index: length - 1 - pub var dkgKeys: [String] + access(all) var dkgKeys: [String] init(counter: UInt64, seed: String, @@ -200,22 +200,22 @@ pub contract FlowEpoch { } /// Metadata that is managed and can be changed by the Admin/// - pub struct Config { + access(all) struct Config { /// The number of views in an entire epoch - pub(set) var numViewsInEpoch: UInt64 + access(all)var numViewsInEpoch: UInt64 /// The number of views in the staking auction - pub(set) var numViewsInStakingAuction: UInt64 + access(all)var numViewsInStakingAuction: UInt64 /// The number of views in each dkg phase - pub(set) var numViewsInDKGPhase: UInt64 + access(all)var numViewsInDKGPhase: UInt64 /// The number of collector clusters in each epoch - pub(set) var numCollectorClusters: UInt16 + access(all)var numCollectorClusters: UInt16 /// Tracks the rate at which the rewards payout increases every epoch /// This value is multiplied by the FLOW total supply to get the next payout - pub(set) var FLOWsupplyIncreasePercentage: UFix64 + access(all)var FLOWsupplyIncreasePercentage: UFix64 init(numViewsInEpoch: UInt64, numViewsInStakingAuction: UInt64, numViewsInDKGPhase: UInt64, numCollectorClusters: UInt16, FLOWsupplyIncreasePercentage: UFix64) { self.numViewsInEpoch = numViewsInEpoch @@ -239,7 +239,7 @@ pub contract FlowEpoch { /// or nil if it isn't found /// Epoch Metadata is stored in account storage so the growing dictionary /// does not have to be loaded every time the contract is loaded - pub fun getEpochMetadata(_ epochCounter: UInt64): EpochMetadata? { + access(all) fun getEpochMetadata(_ epochCounter: UInt64): EpochMetadata? { if let metadataDictionary = self.account.borrow<&{UInt64: EpochMetadata}>(from: self.metadataStoragePath) { return metadataDictionary[epochCounter] } @@ -267,23 +267,23 @@ pub contract FlowEpoch { } /// The counter, or ID, of the current epoch - pub var currentEpochCounter: UInt64 + access(all) var currentEpochCounter: UInt64 /// The current phase that the epoch is in - pub var currentEpochPhase: EpochPhase + access(all) var currentEpochPhase: EpochPhase /// Path where the `FlowEpoch.Admin` resource is stored - pub let adminStoragePath: StoragePath + access(all) let adminStoragePath: StoragePath /// Path where the `FlowEpoch.Heartbeat` resource is stored - pub let heartbeatStoragePath: StoragePath + access(all) let heartbeatStoragePath: StoragePath /// Path where the `{UInt64: EpochMetadata}` dictionary is stored - pub let metadataStoragePath: StoragePath + access(all) let metadataStoragePath: StoragePath /// Resource that can update some of the contract fields - pub resource Admin { - pub fun updateEpochViews(_ newEpochViews: UInt64) { + access(all) resource Admin { + access(all) fun updateEpochViews(_ newEpochViews: UInt64) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" FlowEpoch.isValidPhaseConfiguration(FlowEpoch.configurableMetadata.numViewsInStakingAuction, @@ -294,7 +294,7 @@ pub contract FlowEpoch { FlowEpoch.configurableMetadata.numViewsInEpoch = newEpochViews } - pub fun updateAuctionViews(_ newAuctionViews: UInt64) { + access(all) fun updateAuctionViews(_ newAuctionViews: UInt64) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" FlowEpoch.isValidPhaseConfiguration(newAuctionViews, @@ -305,7 +305,7 @@ pub contract FlowEpoch { FlowEpoch.configurableMetadata.numViewsInStakingAuction = newAuctionViews } - pub fun updateDKGPhaseViews(_ newPhaseViews: UInt64) { + access(all) fun updateDKGPhaseViews(_ newPhaseViews: UInt64) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" FlowEpoch.isValidPhaseConfiguration(FlowEpoch.configurableMetadata.numViewsInStakingAuction, @@ -316,7 +316,7 @@ pub contract FlowEpoch { FlowEpoch.configurableMetadata.numViewsInDKGPhase = newPhaseViews } - pub fun updateNumCollectorClusters(_ newNumClusters: UInt16) { + access(all) fun updateNumCollectorClusters(_ newNumClusters: UInt16) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" } @@ -324,7 +324,7 @@ pub contract FlowEpoch { FlowEpoch.configurableMetadata.numCollectorClusters = newNumClusters } - pub fun updateFLOWSupplyIncreasePercentage(_ newPercentage: UFix64) { + access(all) fun updateFLOWSupplyIncreasePercentage(_ newPercentage: UFix64) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" newPercentage <= 1.0 as UFix64: "New value must be between zero and one" @@ -334,7 +334,7 @@ pub contract FlowEpoch { } // Enable or disable automatic rewards calculations and payments - pub fun updateAutomaticRewardsEnabled(_ enabled: Bool) { + access(all) fun updateAutomaticRewardsEnabled(_ enabled: Bool) { FlowEpoch.account.load(from: /storage/flowAutomaticRewardsEnabled) FlowEpoch.account.save(enabled, to: /storage/flowAutomaticRewardsEnabled) } @@ -344,7 +344,7 @@ pub contract FlowEpoch { /// This function is used during sporks - since the consensus view is reset, and the protocol is /// bootstrapped with a new initial state snapshot, this initializes FlowEpoch with the first epoch /// of the new spork, as defined in that snapshot. - pub fun resetEpoch( + access(all) fun resetEpoch( currentEpochCounter: UInt64, randomSource: String, startView: UInt64, @@ -399,11 +399,11 @@ pub contract FlowEpoch { /// Resource that is controlled by the protocol and is used /// to change the current phase of the epoch or reset the epoch if needed /// - pub resource Heartbeat { + access(all) resource Heartbeat { /// Function that is called every block to advance the epoch /// and change phase if the required conditions have been met - pub fun advanceBlock() { + access(all) fun advanceBlock() { switch FlowEpoch.currentEpochPhase { case EpochPhase.STAKINGAUCTION: @@ -436,7 +436,7 @@ pub contract FlowEpoch { /// Calls `FlowEpoch` functions to end the staking auction phase /// and start the Epoch Setup phase - pub fun endStakingAuction() { + access(all) fun endStakingAuction() { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only end staking auction during the staking auction" } @@ -448,7 +448,7 @@ pub contract FlowEpoch { /// Calls `FlowEpoch` functions to end the Epoch Setup phase /// and start the Epoch Setup Phase - pub fun startEpochCommit() { + access(all) fun startEpochCommit() { pre { FlowEpoch.currentEpochPhase == EpochPhase.EPOCHSETUP: "Can only end Epoch Setup during Epoch Setup" } @@ -458,7 +458,7 @@ pub contract FlowEpoch { /// Calls `FlowEpoch` functions to end the Epoch Commit phase /// and start the Staking Auction phase of a new epoch - pub fun endEpoch() { + access(all) fun endEpoch() { pre { FlowEpoch.currentEpochPhase == EpochPhase.EPOCHCOMMIT: "Can only end epoch during Epoch Commit" } @@ -468,11 +468,11 @@ pub contract FlowEpoch { /// Needs to be called before the epoch is over /// Calculates rewards for the current epoch and stores them in epoch metadata - pub fun calculateAndSetRewards() { + access(all) fun calculateAndSetRewards() { FlowEpoch.calculateAndSetRewards() } - pub fun payRewardsForPreviousEpoch() { + access(all) fun payRewardsForPreviousEpoch() { FlowEpoch.payRewardsForPreviousEpoch() } } @@ -712,13 +712,17 @@ pub contract FlowEpoch { /// Makes sure the set of phase lengths (in views) are valid. /// Sub-phases cannot be greater than the full epoch length. +<<<<<<< HEAD pub view fun isValidPhaseConfiguration(_ auctionLen: UInt64, _ dkgPhaseLen: UInt64, _ epochLen: UInt64): Bool { +======= + access(all) view fun isValidPhaseConfiguration(_ auctionLen: UInt64, _ dkgPhaseLen: UInt64, _ epochLen: UInt64): Bool { +>>>>>>> origin/merge-stable-cadence return (auctionLen + ((3 as UInt64)*dkgPhaseLen)) < epochLen } /// Randomizes the list of collector node ID and uses a round robin algorithm /// to assign all collector nodes to equal sized clusters - pub fun createCollectorClusters(nodeIDs: [String]): [FlowClusterQC.Cluster] { + access(all) fun createCollectorClusters(nodeIDs: [String]): [FlowClusterQC.Cluster] { pre { UInt16(nodeIDs.length) >= self.configurableMetadata.numCollectorClusters: "Cannot have less collector nodes than clusters" } @@ -760,7 +764,7 @@ pub contract FlowEpoch { /// A function to generate a random permutation of arr[] /// using the fisher yates shuffling algorithm - pub fun randomize(_ array: [String]): [String] { + access(all) fun randomize(_ array: [String]): [String] { var i = array.length - 1 @@ -785,7 +789,7 @@ pub contract FlowEpoch { /// Collector nodes call this function to get their QC Voter resource /// in order to participate the the QC generation for their cluster - pub fun getClusterQCVoter(nodeStaker: &FlowIDTableStaking.NodeStaker): @FlowClusterQC.Voter { + access(all) fun getClusterQCVoter(nodeStaker: &FlowIDTableStaking.NodeStaker): @FlowClusterQC.Voter { let nodeInfo = FlowIDTableStaking.NodeInfo(nodeID: nodeStaker.id) assert ( @@ -799,7 +803,7 @@ pub contract FlowEpoch { /// Consensus nodes call this function to get their DKG Participant resource /// in order to participate in the DKG for the next epoch - pub fun getDKGParticipant(nodeStaker: &FlowIDTableStaking.NodeStaker): @FlowDKG.Participant { + access(all) fun getDKGParticipant(nodeStaker: &FlowIDTableStaking.NodeStaker): @FlowDKG.Participant { let nodeInfo = FlowIDTableStaking.NodeInfo(nodeID: nodeStaker.id) assert ( @@ -812,16 +816,28 @@ pub contract FlowEpoch { } /// Returns the metadata that is able to be configured by the admin +<<<<<<< HEAD pub view fun getConfigMetadata(): Config { +======= + access(all) view fun getConfigMetadata(): Config { +>>>>>>> origin/merge-stable-cadence return self.configurableMetadata } /// The proposed Epoch counter is always the current counter plus 1 +<<<<<<< HEAD pub view fun proposedEpochCounter(): UInt64 { return self.currentEpochCounter + 1 as UInt64 } pub view fun automaticRewardsEnabled(): Bool { +======= + access(all) view fun proposedEpochCounter(): UInt64 { + return self.currentEpochCounter + 1 as UInt64 + } + + access(all) view fun automaticRewardsEnabled(): Bool { +>>>>>>> origin/merge-stable-cadence return self.account.copy(from: /storage/flowAutomaticRewardsEnabled) ?? false } @@ -832,7 +848,7 @@ pub contract FlowEpoch { /// so they are not included in that calculation /// Eventually, all the bonus tokens will be destroyed and /// this will not be needed anymore - pub fun getBonusTokens(): UFix64 { + access(all) fun getBonusTokens(): UFix64 { return self.account.copy(from: /storage/FlowBonusTokenAmount) ?? 0.0 } diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 6ba9bea1d..64a7e2c81 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -15,3 +15,5 @@ require ( gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) + +replace github.com/onflow/flow-ft/lib/go/contracts => ../../../../../flow-ft/lib/go/contracts diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 6739deeac..1619a2189 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -12,8 +12,6 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/onflow/flow-ft/lib/go/contracts v0.7.0 h1:XEKE6qJUw3luhsYmIOteXP53gtxNxrwTohgxJXCYqBE= -github.com/onflow/flow-ft/lib/go/contracts v0.7.0/go.mod h1:kTMFIySzEJJeupk+7EmXs0EJ6CBWY/MV9fv9iYQk+RU= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/rogpeppe/go-internal v1.6.1 h1:/FiVV8dS/e+YqF2JvO3yXRFbBLTIuSDkuC7aBOAvL+k= diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 79759a123..8b218cdcd 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,18 +1,18 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// FlowContractAudits.cdc (9.042kB) -// FlowFees.cdc (9.388kB) -// FlowIDTableStaking.cdc (95.925kB) -// FlowServiceAccount.cdc (7.987kB) -// FlowStakingCollection.cdc (54.47kB) -// FlowStorageFees.cdc (9.163kB) -// FlowToken.cdc (7.141kB) -// LockedTokens.cdc (28.975kB) -// NodeVersionBeacon.cdc (22.585kB) -// StakingProxy.cdc (5.483kB) -// epochs/FlowClusterQC.cdc (17.983kB) -// epochs/FlowDKG.cdc (18.278kB) -// epochs/FlowEpoch.cdc (41.369kB) +// FlowContractAudits.cdc (9.298kB) +// FlowFees.cdc (9.605kB) +// FlowIDTableStaking.cdc (97.335kB) +// FlowServiceAccount.cdc (8.253kB) +// FlowStakingCollection.cdc (54.944kB) +// FlowStorageFees.cdc (9.299kB) +// FlowToken.cdc (7.34kB) +// LockedTokens.cdc (29.631kB) +// NodeVersionBeacon.cdc (22.905kB) +// StakingProxy.cdc (5.755kB) +// epochs/FlowClusterQC.cdc (18.339kB) +// epochs/FlowDKG.cdc (18.582kB) +// epochs/FlowEpoch.cdc (42.331kB) // testContracts/TestFlowIDTableStaking.cdc (8.525kB) package assets @@ -83,7 +83,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _flowcontractauditsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x59\x6d\x6f\xe3\xb8\x11\xfe\x9e\x5f\x31\xde\x02\x3d\x1b\x75\xac\x62\xdb\x1e\x0a\x63\x7d\xd7\x5c\xee\xb6\xbb\x2d\xda\x2e\x2e\x77\xf7\xa5\x28\x16\xb4\x34\xb2\x08\xcb\xa4\x41\x52\xf6\x1a\x41\xfe\x7b\xc1\x37\x89\x94\x28\xc7\x9b\x64\x37\x1f\x02\x5b\x26\x67\x1e\xce\xcb\xc3\x99\x51\x96\x65\xf0\x4b\x45\x25\xe4\x9c\x29\x41\x72\x05\x47\x22\xa1\x91\x58\x80\xe2\xb0\x23\x8c\x6c\x10\x48\x53\x50\x25\x81\xb0\x02\xc8\x7e\x2f\xf8\x81\xd4\xf2\x4a\xef\x2c\xb9\x80\x02\xf7\x35\x3f\xed\x90\x29\xbd\xe3\x6d\xcd\x8f\xb0\x23\x94\x31\x54\xb0\xc6\x92\x0b\x84\x3d\x8a\x1d\x95\x92\x72\x56\xa3\x94\xc1\x06\x23\x43\xeb\x43\x46\xd6\x35\x16\x40\x19\xfc\xa3\x61\x08\xaf\xff\xf8\xfa\xf5\x02\xde\x2b\xa0\x12\x18\x87\x9a\xb3\x0d\x0a\x83\x6a\x0e\xeb\xc6\x3c\x96\x8a\xd6\xb5\x11\x60\xe5\x59\xc0\xaa\x42\xb8\x43\x71\xa0\x39\xc2\x4d\x9e\xf3\x86\xa9\x39\x48\x0e\xd4\xec\x29\x78\xde\x68\xbd\x58\x40\x85\x02\xdb\x23\x08\x2c\x51\x20\xcb\xf1\xea\x6a\xdf\xac\x3b\x53\xe8\xc3\xdc\xba\x2f\x37\xd6\x06\xf7\x57\x00\x00\xe6\x5f\x96\xc1\x4f\x07\x73\xec\x8a\x18\xf1\xb8\xa3\x4a\xcb\x3e\x56\xc8\x80\x00\xc3\x23\x98\x5d\x46\x83\xe4\x8d\xc8\x51\x2f\xcb\x05\x12\x85\x85\x91\xa1\xd5\xa1\x11\xe2\x56\xde\xda\x1f\xa7\xb3\xab\x8b\x75\xb4\x70\x8d\x9b\xe0\xc0\x9b\xbc\x42\x31\xae\xe9\x37\xbb\xc0\x6b\x22\x45\x21\x50\xca\x25\xdc\xd8\x0f\xdf\xcf\x41\x60\xde\x08\x81\x4c\x2d\xe1\x07\xce\xeb\x39\xe0\xa7\x3d\x15\xa7\x1f\x6a\x9e\x6f\xdf\x21\xdd\x54\x6a\x09\xbf\xbe\x67\xea\xdb\x3f\x7f\x3f\x87\x9c\x17\xf8\x8e\xc8\x6a\x09\x77\x4a\x50\xb6\xb9\x10\xf9\x38\x6a\xed\xe6\x34\xe4\x5f\x65\x02\xef\x1c\xb6\x78\xf2\xca\x3f\x0b\xfb\xb3\x91\x0a\xdc\xf1\xc3\x18\xd8\x9f\xed\x8f\xd3\xe7\xa3\xfb\x91\xe6\x8a\x72\x46\xc4\x09\x78\x09\xa4\xae\x3d\x06\x69\x56\x90\x3c\x47\x29\xa7\x1e\xe6\x0c\x0e\x44\xb4\x2b\x96\x70\x6f\x75\x2f\x6d\x84\x39\x70\x0f\xad\xf0\x5f\x2a\x04\xa9\xb8\xd0\x79\xbe\x27\xaa\x32\x09\xa1\xd3\x88\x14\x3b\xca\xda\xc0\x6d\xcf\x58\xa3\x82\x1b\xfd\xd3\x9d\xdd\xf4\x81\x28\xe3\xfa\xf6\x4b\x52\xf2\x07\x2f\x99\xd8\x30\x97\xdf\xf8\x80\xff\x20\xf8\xa7\x53\x2c\x3d\xf8\xe1\x22\x25\xfb\x66\x5d\xd3\xbc\x43\x9f\xd6\x01\x39\xd9\x93\x35\xad\xa9\x1a\x57\xf7\xc1\x48\xb2\xda\xba\xcf\xad\xb2\x3b\xca\x36\x35\xf6\xe2\xc0\x47\x8d\xe1\x4c\xad\xbe\x8d\x97\x80\xe8\xbc\x42\xa9\x44\x93\xab\xc8\x15\x8e\x52\x5a\x5a\x71\xba\x5c\x74\x6b\x8f\x1b\x6f\x58\x32\x33\x9f\x83\x08\xa4\x4c\x21\x2b\xac\xe2\x70\xf7\xfb\x12\x18\xad\xe7\x66\x79\x8b\x27\x27\x0c\xd6\x18\xf1\x25\x61\x27\x2f\xba\xdd\xee\x0d\x33\x20\x86\xab\x9e\x86\x92\xd4\x12\xe7\x11\xa4\x23\xad\x6b\xad\xc3\x65\x06\x90\x52\xa1\x80\x92\x0a\xa9\xb4\x81\x06\x3a\x7a\xf9\xd0\xd7\xc0\x38\xbb\x6e\xcf\xd1\xea\xe0\xec\x1b\x7d\xb7\xc0\x81\xd4\xd4\xab\xd0\x0b\x6c\x2e\xc1\x5a\x27\x13\x54\x26\x9b\x06\x0a\xc7\xf3\x2d\xe9\x05\x4d\x6c\xda\x05\x9d\x0d\x79\x31\x3c\x45\x9f\x02\x87\xa2\x28\xa3\xea\xe5\x99\x36\x08\x1d\xfd\x27\xb1\x2e\x17\x4e\x09\xac\xbc\xff\x86\x4b\x5a\xa5\xb0\xea\x00\x0c\x97\x0d\xa0\xc0\x6a\x08\x6f\xb8\xcd\xa3\x84\x55\x0b\xb8\x5d\xf4\x70\x65\xff\xfb\x84\xfa\x19\x55\x23\x98\x34\x9c\xe6\x31\x45\xdc\xa6\x2d\x5c\x36\x0c\x36\xa8\x6e\xea\xda\x65\x8c\x9c\xce\xc6\x68\x2d\xb0\x88\x30\xb2\x2d\xa6\x48\x66\xa7\xfe\xef\x68\x13\x8a\x48\xc9\x73\xaa\x6f\x43\x28\x3a\xae\xdd\xe2\xc9\xe4\xf3\x86\x1e\xf4\x3d\xe0\xec\xaa\x8b\xa0\xe8\x5c\x1d\x44\x86\x82\x28\x74\x50\xfe\x89\xa7\x94\xc3\x07\x3e\xf4\x1f\x02\xe4\xb4\x6c\xb5\x4d\x56\x3a\x8f\x7b\x7e\x76\x27\x73\x6b\x26\x0b\xc5\xad\x88\xe9\x6c\x91\x73\x96\x13\x35\x7d\x75\xfd\xaa\xfd\xec\x35\xce\x7a\x5e\x08\x24\xbd\x22\xec\x74\xfd\x2a\xbd\xe1\xa1\x2b\x78\xfc\x49\x2b\x22\x2b\x5f\x16\xdd\xf2\x02\xa7\x1f\xcd\xb1\xce\x1d\xc9\x29\xb2\xcf\x17\xc8\x8c\x0e\xfc\x34\xd5\x7a\x6e\xea\x0d\x17\x54\x55\xbb\xc5\xdd\xbb\x9b\x3f\x7d\x7c\xfd\x97\x6f\x17\x5a\x83\xc1\xb1\x68\x54\xf9\xd7\xd9\xac\xe7\x37\x47\xd9\xd2\x30\x9a\x2d\x72\x4c\x25\xe4\xdd\x6c\x9c\x64\x29\x48\xfb\x77\xd7\xa2\x6f\xcb\x30\x5f\x97\xdd\x47\x8c\x73\x3b\x10\x05\x47\xaa\xaa\x33\xd9\xaf\xcd\x41\x8a\xc2\xf9\xfc\x33\x32\xfc\x3f\x65\x29\xb1\x9f\xdc\x63\x89\x1d\x72\x0c\xac\x12\x65\xe9\x62\xe0\x12\xbd\x7c\x96\x64\x07\x87\x55\xcb\x0a\xab\x29\xe2\xab\xa9\x00\x70\xfb\xb1\x8f\x3a\xfc\x16\xc6\x74\x2a\xd6\x2e\x31\x70\x65\xc0\x5c\x6c\xe7\x3e\xf6\xa7\x59\xbb\x4f\xa5\x91\xb5\xb2\x0c\x72\x52\xe7\x4d\xad\xf1\x26\x2e\x16\x58\x13\x7d\xdf\x73\x16\x69\x88\x44\xe8\x32\x6c\x9c\xce\xc1\x64\x76\xb4\x81\x96\x91\xb0\x74\xf2\xeb\xbf\x14\x33\x6f\x50\xdd\xda\xa3\x9b\xe7\xd3\xd9\xc2\x01\xfd\x43\x24\x74\x12\x09\x7b\x88\xbe\x0d\x62\x4e\x33\x60\x32\xdc\xce\x71\x5d\x1b\x48\xa9\xb0\xe8\xdb\x58\x53\x5d\x1c\x0a\x9a\x8f\x25\xd9\xa1\x51\x8e\x9f\xa8\x54\x26\x26\x4d\x2e\x53\x65\x4b\x89\x48\x4a\x02\x5e\x81\x35\xb6\xe0\x74\x01\xde\x53\xac\xcf\xe6\x95\xae\xa2\x0b\xe4\x33\xf3\x21\x72\xec\xe0\x51\xd2\x04\x91\xc1\x1f\x3b\x88\x27\xb4\x05\x65\x12\x85\xb2\xbd\xc4\x16\x4f\x73\x0f\xff\x8c\x38\xdd\xc5\x8c\xf6\x7a\x5f\xea\x74\x23\x79\x6f\x7b\xa1\xbe\xab\xed\xc5\xba\xc5\xd3\x20\xd5\x07\x0e\x1c\x63\xc6\x8b\x9c\x9f\x8c\xf1\x7e\x29\xa2\x7b\x4b\x58\x9f\x5c\xdb\xa3\x38\x48\x57\x1c\xf8\xab\x22\xd1\x3e\x74\x5d\x3d\x53\x28\x4a\xd2\x5d\x2c\x41\x37\x11\x20\xf6\xc7\x93\xa8\x7c\xbb\xdf\x0a\xd5\x97\x28\xd9\x2f\xa1\x7b\xf2\xe6\xf7\x6e\xd1\x77\xfd\xfb\x4f\x37\x3d\xae\xc9\x69\x1b\x03\x53\x79\x57\xe4\xe0\xdb\x13\xdb\x15\x82\xaa\x04\x6f\x36\xd5\xb0\xdb\xf2\x73\x1f\x3b\x7a\x91\x41\xcb\xd7\xb6\x1a\x1c\x04\x1e\xf8\x16\x9d\xac\xb6\x0b\x42\x84\x4a\xa9\xbd\x5c\x66\x59\xc1\x73\xb9\xe0\xac\xac\xf9\x71\xc1\xc5\x26\xcb\x49\x81\x2c\xc7\xac\x40\x49\x37\xec\x7a\x4f\x94\x42\xc1\x64\xf6\xbb\xce\x7a\xd7\x5a\x68\x4e\x74\x95\x35\x7a\x2f\x1b\x98\xcb\xf3\xc6\x74\x6d\xaf\xbe\xd6\x6c\xcb\x4b\xfa\x26\x4d\x1b\x33\x68\x63\x9e\xec\x8f\x64\xe1\xdd\x97\xa0\x0b\x60\xb2\x4f\x65\xc4\xd7\xab\x1c\xd2\xc8\x26\x8b\x35\x17\x82\x1f\xa7\xb3\xc9\x22\x85\xe1\x99\xb5\x80\xe5\x83\x24\x17\x7c\xad\xbb\xfc\xa9\x36\xf8\xfa\x55\xd1\x67\x53\xde\xe3\xc7\x49\x88\x32\x77\x60\x42\xbb\xe9\x4b\x2f\x0e\xe7\xb0\x60\x71\x42\x3a\x52\xba\xb5\xd3\x85\x9c\xd4\xb5\x63\x52\x76\xe2\x0c\xcd\xbc\x96\x21\x16\x12\x48\xc0\xa1\x9a\x5d\xca\x86\xe5\x11\x0d\x68\x3b\xd8\x72\x3e\xcc\x7c\xdd\xed\xfd\x2d\x9a\xe4\x0c\xfa\x8a\x37\xd7\xbe\x0d\x88\x37\x86\x10\x63\x9e\xd1\x4c\x47\xa5\x12\xc4\x76\x01\x5e\xde\xb0\x58\x95\xe1\x1c\x77\xe0\x35\xab\xf5\xdf\x78\x74\x0b\x42\xac\x3d\xab\x9a\xfb\x78\x30\xe5\x0d\x57\xb4\x87\x89\xcf\x32\x1d\xad\xa6\x2b\xcc\xb7\x32\x1a\x08\x06\x9d\x8f\xb4\xf1\x68\x8a\x54\x94\x43\xe4\x35\x12\xd6\xec\x7f\xb2\x6b\xba\xce\xba\x87\x5a\x37\xc0\xba\x12\xa3\xec\x6c\x7d\xb2\xc5\x93\x84\x7b\xe8\xfd\x0d\x0a\x57\x53\x78\xa5\x4b\x4a\x2f\xea\xbf\x5b\x3c\xfd\x6f\x32\xd8\x49\x4b\x38\x24\x26\x12\xa3\x25\xb2\xdb\x33\x5a\x15\x7f\x97\x12\x37\x19\x11\x04\x4f\xa9\x34\xce\x1a\x02\x06\xc5\xf7\xf0\xc9\xc3\x88\xdb\xdf\x72\x01\x0a\xa5\x0a\x07\x4d\xde\xab\x8d\xf4\x78\xde\x72\xf1\xa3\x19\xf4\x25\x06\xe6\xbd\x6e\x5d\xb3\x6b\x7a\xc4\x90\x38\xf4\x59\x0d\x24\xd6\xd0\xbf\x06\xa0\x57\xc5\x50\xd9\x72\x40\x3b\x39\xec\xf8\x43\x57\x24\x6f\x7f\xfb\x97\xee\xb1\x7a\x23\xd5\xac\xd9\x17\x44\x61\x7a\xfa\xfd\x52\x66\x78\x76\xd3\xad\x6b\x92\x2f\xd8\x41\x65\x99\x9b\xab\xe6\x9a\x06\x4c\xa2\xfa\xea\xba\xed\x4d\x15\x11\x1b\x54\x83\x09\xaf\x6d\xbc\x18\x57\x50\xf2\x86\x15\x81\x84\xd4\x3c\x98\x96\x30\x39\x97\xfb\xda\xf4\x84\x32\xa9\xcf\x60\x92\x20\x0e\xa5\x27\x99\xc0\x0c\x7d\xcf\xdd\xa0\x2f\x00\x2c\x88\x73\x33\xc9\x7e\x3c\xf9\x2e\xa7\xaf\xd0\xd4\xc8\x64\x23\x30\x1e\x6e\xc0\x8e\xa8\xbc\x72\x65\xb7\xdb\x1b\x1a\xfc\xd0\x8d\x51\x27\xdd\x1c\x15\xd2\x59\x1a\xa3\x8f\xc9\xa2\x9d\x29\x84\xac\x49\x25\xd8\x12\xc5\xf8\xdd\xbc\x23\x70\xc3\xd7\xe4\xec\x3c\xcb\x82\x6b\x25\xb3\xb7\x4a\xfc\x22\xc2\x06\x93\x6e\xea\x74\xef\x64\x5f\x57\xe0\x5e\xe9\xce\x02\x04\x61\x1b\x8c\xcf\x76\x21\x8f\xbf\x08\x7f\x3f\x89\xb7\x9f\x19\x27\x59\x16\x4c\x1f\xfb\x56\x1a\x4e\xdc\x75\x1c\x1f\x82\xa9\xfc\x13\x5a\xdc\xc4\x6c\x77\x70\x96\x70\x20\x10\xbf\x49\x25\xd1\x9b\x54\x33\x5f\x08\xea\xdd\x00\x5a\x72\x32\x90\x70\xc4\xb8\x41\x9d\x21\x95\x68\xb0\x77\x1d\xbc\xc3\x7a\x8f\xa2\xbb\x10\x4c\xfb\xf9\xf8\xd8\x20\xc9\xff\xb1\x81\x3e\xc2\x48\x39\x7d\x41\x3e\x2f\x2c\x86\x44\x15\xad\x23\x39\x1d\xb7\xa1\xa1\xa3\xb7\xc0\x03\xcb\x4e\x1e\x33\xed\x24\x61\xdb\xf4\x85\x3a\xa8\xe4\xa3\x17\x1f\xb0\x82\xfb\x20\x40\xcd\x6f\xfd\xb7\xb8\xb0\x82\xcc\xbd\xaf\xcd\xca\xbe\x45\x7c\x81\x68\x36\xf5\xe4\xa4\xdf\xd7\x5e\x26\xae\x3f\x96\x48\x4a\xed\x5e\xc5\x6a\xa1\xf6\x75\xef\x85\x32\x23\x5f\xdb\xf9\x46\xd0\x2c\x84\x5d\x40\x50\x66\xdb\x06\xc8\x5e\x83\x0b\x49\x0e\x38\x7d\x73\x6d\xf6\xce\x41\xf1\x65\xda\x7a\xbe\xd7\x78\xf8\x7f\x00\x00\x00\xff\xff\xf7\xe7\x87\x1b\x52\x23\x00\x00" +var _flowcontractauditsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x59\x5f\x8f\x1b\xb7\x11\x7f\xbf\x4f\x31\x72\x81\x46\x42\x75\xda\xc2\x6d\x83\x42\x88\x92\x5e\x2e\x71\xed\x16\x6d\x8d\x5c\x92\x97\xa2\x30\xa8\xdd\x59\x2d\x21\x8a\x14\x48\xae\x64\xe1\x70\xdf\xbd\x20\xb9\x7f\x48\x2e\x57\x92\xef\x1c\xdf\x83\x21\xc9\xe4\xcc\x6f\x86\x33\x3f\xce\x0c\xb3\x2c\x83\x9f\x2b\xaa\x20\x17\x5c\x4b\x92\x6b\x38\x12\x05\xb5\xc2\x02\xb4\x80\x1d\xe1\x64\x83\x40\xea\x82\x6a\x05\x84\x17\x40\xf6\x7b\x29\x0e\x84\xa9\x1b\xb3\xb3\x14\x12\x0a\xdc\x33\x71\xda\x21\xd7\x66\xc7\x1b\x26\x8e\xb0\x23\x94\x73\xd4\xb0\xc6\x52\x48\x84\x3d\xca\x1d\x55\x8a\x0a\xce\x50\x29\x6f\x83\x95\x61\xf4\x21\x27\x6b\x86\x05\x50\x0e\xff\xa8\x39\xc2\xeb\x3f\xbe\x7e\xbd\x80\x77\x1a\xa8\x02\x2e\x80\x09\xbe\x41\x69\x51\xcd\x61\x5d\xdb\x9f\x95\xa6\x8c\x59\x01\x4e\x9e\x03\xac\x2b\x84\x07\x94\x07\x9a\x23\xdc\xe5\xb9\xa8\xb9\x9e\x83\x12\x40\xed\x9e\x42\xe4\xb5\xd1\x8b\x05\x54\x28\xb1\x33\x41\x62\x89\x12\x79\x8e\x37\x37\x24\xcf\x51\xa9\x29\x61\x6c\xd6\xbb\xc4\x18\x75\xdf\x7c\xb9\x73\xbe\x78\xbc\x01\x00\xb0\xff\x64\x19\xfc\x78\xb0\xe6\x57\xc4\xaa\xc1\x1d\xd5\x46\xc7\xb1\x42\x0e\x04\x38\x1e\xc1\xee\xb2\x9a\x94\xa8\x65\x8e\x66\x59\x2e\x91\x68\x2c\xac\x0c\x5f\x2d\x5a\x61\xcd\x8e\x7b\xb7\x68\x3a\xbb\xb9\x5a\x57\x07\xdb\x1e\x1b\x1c\x44\x9d\x57\x28\x2f\x6b\xfc\xd5\x2d\x6c\x35\x92\xa2\x90\xa8\xd4\x12\xee\xdc\x87\xef\xe6\x20\x31\xaf\xa5\x44\xae\x97\xf0\xbd\x10\x6c\x0e\xf8\x71\x4f\xe5\xe9\x7b\x26\xf2\xed\x5b\xa4\x9b\x4a\x2f\xe1\x97\x77\x5c\x7f\xfd\xe7\xef\xe6\x90\x8b\x02\xdf\x12\x55\x2d\xe1\x41\x4b\xca\x37\x57\x5a\x30\x8e\xde\x1c\xff\x79\xe8\xbf\xa8\x04\xee\x39\x6c\xf1\xd4\x82\xf8\x24\x1b\x5e\x8c\x58\xe2\x4e\x1c\x2e\x81\xfe\xc9\x2d\x9a\xbe\x1c\xe5\x0f\x34\xd7\x54\x70\x22\x4f\x20\x4a\x20\x8c\xb5\x58\x94\x8f\xa0\x85\x3b\x83\x03\x91\xdd\x8a\x25\x3c\x3a\xdd\x4b\x17\x79\x0d\xb8\xa7\x4e\xf8\xcf\x15\x82\xd2\x42\x1a\x3e\xd8\x13\x5d\xd9\xc4\x31\xe9\x46\x8a\x1d\xe5\x5d\x60\x0f\x6c\x65\xa8\xe1\xce\x2c\x79\x70\x9b\xdf\x13\x6d\x43\xa2\xfb\x92\xd4\xf0\xbe\xd5\x40\x5c\x1a\xa8\xaf\xda\x84\x78\x2f\xc5\xc7\x53\x5a\x8b\xb7\xe0\x2a\x65\xfb\x7a\xcd\x68\xde\x5b\x93\xd6\x05\x39\xd9\x93\x35\x65\x54\x5f\x56\xfb\xde\x4a\x74\x5a\xfb\xcf\x9d\xd2\x07\xca\x37\x0c\xa3\x38\x69\xa3\xca\x72\xae\x81\xd1\xc5\x93\x47\x94\xb1\x62\xa5\x65\x9d\xeb\xe0\xa8\x1a\x4a\xea\x68\xa9\xd1\xd9\x64\x81\x89\x08\x7b\x5a\x8e\x14\xed\x67\x2f\x52\x29\xd7\xc8\x0b\x07\xc0\xdf\xfd\xae\x04\x4e\xd9\xdc\x2e\xef\x70\xe5\x84\xc3\x1a\x03\xde\x25\xfc\xd4\x8a\xee\xb6\xc7\x8e\x1a\x10\xca\x4d\xa4\xa9\x24\x4c\xe1\x3c\x80\x76\xa4\x8c\x19\x5d\x4d\x26\x01\x29\x35\x4a\x28\xa9\x54\xda\x38\x6c\x54\x57\x94\x3f\xb1\x26\x2e\xf8\x6d\x67\x57\xa7\x4b\xf0\xaf\xcc\x9d\x05\x07\xc2\x68\xab\xca\x2c\x70\xb9\x07\x6b\x93\x7c\x50\xd9\xec\x1b\x55\x3c\x9e\xa7\xc9\xd3\x31\x04\x69\x8e\xa6\xf7\xad\x28\xc6\xad\x8a\x29\x75\x28\x92\x72\xaa\x3f\x3f\x73\x7b\xa1\x65\xfe\x14\xb2\x72\xd1\x28\x81\x55\x7b\xae\xc3\x25\x9d\x52\x58\xf5\x00\x86\xcb\x06\x50\x60\x35\x84\x37\xdc\xd6\xa2\x84\x55\x07\xb8\x5b\xf4\x74\xe3\xfe\x6d\x13\xef\x27\xd4\xb5\xe4\xca\x72\x62\x8b\x29\xc5\x8d\xd6\xd3\x65\xcd\x61\x83\xfa\x8e\xb1\x26\xb3\xd4\x74\x36\x46\x8f\x9e\x67\xa4\xd5\xe1\xb0\x05\xb2\x7b\x18\x7f\x47\x97\x78\x44\x29\x91\x53\x73\xcb\x42\xd1\x73\xf6\x16\x4f\x36\xff\x37\xf4\x60\xee\x95\xc6\xbf\xa6\xe8\x0a\xec\x1b\x42\xe5\x28\x89\xc6\x06\xd2\x3f\xf1\x94\x0a\x80\xc1\x99\xb6\x1f\x3c\x0b\x68\xd9\x69\x9d\xac\x4c\xde\x47\xe7\xde\x58\xd8\xac\x99\x2c\xb4\x70\x22\xa6\xb3\x45\x2e\x78\x4e\xf4\xf4\xd5\xed\xab\xee\x73\xab\x71\x16\x9d\x8a\x27\xe9\x15\xe1\xa7\xdb\x57\xe9\x0d\x4f\x7d\x81\x15\x5b\x5c\x11\x55\xb5\xe5\xd8\xbd\x28\x70\xfa\xc1\x9a\x77\xce\xb4\x46\xa1\xfb\x7d\x81\xdc\xea\xc2\x8f\x53\xa3\xef\x8e\x6d\x84\xa4\xba\xda\x2d\x1e\xde\xde\xfd\xe9\xc3\xeb\xbf\x7c\xbd\x30\x1a\x2c\x9e\x45\xad\xcb\xbf\xce\x66\xd1\x39\x36\x94\xaf\x2c\x13\xba\xa2\xca\x56\x5e\xed\xb1\xdb\x43\x73\x94\x65\xce\x7b\x37\xb0\xa2\x2b\x03\xdb\xba\xf0\x31\x60\xa8\xfb\x81\x48\x38\x52\x5d\x5d\xc1\x12\xc6\x3d\xa4\x28\x9a\x58\xf8\x04\x26\xf8\x4f\x59\x2a\x8c\x49\x60\x8c\x00\x7c\x2e\x82\x55\xa2\x3c\x5e\x0c\x8e\xc8\x2c\x9f\x25\x59\xa4\xc1\x6a\x64\xf9\xd5\x1b\x69\xab\x37\x0f\x70\xf7\x31\x46\xed\x7f\xf3\x63\x3d\x15\x83\xd7\x38\xba\xb2\x60\x3e\xd9\xdf\xb1\x0d\xcf\xf3\x7a\x4c\xbd\x81\xd7\xb2\x0c\x72\xc2\xf2\x9a\x19\xdc\x89\x8b\x09\xd6\xc4\xd4\x11\x82\x07\x1a\x02\x11\xa6\xec\x1b\xa7\x7f\xb0\x99\x1f\x6c\xa0\x65\x20\x2c\x4d\x0e\xe6\x2f\xc5\xe4\x1b\xd4\xf7\xce\x74\xfb\xfb\x74\xb6\x68\x80\xfe\x21\x10\x3a\x09\x84\x3d\x05\xdf\x06\xb1\x67\x98\x32\x19\x76\xe7\xb8\xb0\x0b\xa8\x54\x78\xc4\x3e\x36\x54\x18\x86\x84\xe1\x6d\x45\x76\x68\x95\xe3\x47\xaa\xb4\x8d\x4d\x9b\xe3\x54\xbb\x92\x24\x90\x92\x80\x57\x20\xc3\x0e\x9c\x29\xf8\x23\xc5\xc6\xb6\x56\xe9\x2a\xb8\x68\x3e\x31\x2f\x82\x83\x1d\xfc\x94\x74\x41\xe0\xf0\x4b\x86\xb4\x44\xb7\xa0\x5c\xa1\xd4\xae\x77\xd9\xe2\x69\xde\xc2\x3f\x23\xce\x74\x4f\xa3\xbd\xe6\x6f\x65\xdd\x48\xfe\xbb\xde\x2b\x3e\x6a\x77\x01\x6f\xf1\x34\x9a\xf2\x83\x83\x1c\x63\xca\xab\x82\x20\x19\xeb\x71\x09\x63\x7a\x5b\x58\x9f\x9a\x76\x4b\x0b\x50\x4d\x31\xd1\x5e\x21\x67\xda\x94\x7e\xea\xc0\x35\xca\x92\xf4\x17\x8f\xd7\xb5\x78\xc8\x63\x73\x15\xea\x76\x1c\xd1\x29\x31\x97\x2e\xd9\x2f\xa1\xff\xe5\x9b\xdf\x37\x8b\xbe\x8d\xef\x4b\xd3\x6c\x35\xcd\x55\xd7\x80\xd8\xca\xbe\x22\x87\xb6\x1d\x72\x3a\x41\x57\x52\xd4\x9b\x6a\xd8\xed\xb5\x73\x2a\x37\x2a\x52\x5e\xeb\xd9\xb5\x34\x02\x24\x1e\xc4\x16\x1b\x59\x5d\xd7\x85\x08\x95\xd6\x7b\xb5\xcc\xb2\x42\xe4\x6a\x21\x78\xc9\xc4\x71\x21\xe4\x26\xcb\x49\x81\x3c\xc7\xac\x40\x45\x37\xfc\x76\x4f\xb4\x46\xc9\x55\xf6\xbb\xde\x9b\xb7\x46\x68\x4e\x4c\x95\x76\xf1\x1e\xb7\x70\x97\x57\x39\xd7\x5c\x7f\xae\x05\x27\xb1\x6b\xd3\x4e\xf5\xda\xa5\x17\x9f\x4f\xb2\xa0\x8f\x25\x98\xc2\x9a\xec\x53\x99\xf3\xe5\x2b\x8e\x34\xc2\xc9\x62\x2d\xa4\x14\xc7\xe9\x6c\xb2\x48\x61\x78\x61\x0d\xe1\xf8\x23\xc9\x1d\x5f\xba\x06\x78\xae\x2f\xbe\x7c\x55\xf5\x6c\xaa\xbc\x6c\x56\x42\x94\xbd\x43\x13\x28\x6c\x1f\x7c\x75\x98\xfb\x05\x4f\x23\xa4\x27\xaf\x7b\x37\xed\xc8\x09\x63\x0d\x03\xf3\x93\xe0\x68\xe7\xd0\x1c\xb1\x50\x40\x3c\xee\x35\x2c\x54\xd6\x3c\x4f\xd2\x85\xf1\x87\x6b\x17\x7c\x86\x30\xdd\xe5\xdf\x82\x89\xd3\xa0\x6f\xf9\xe6\xb6\x6d\x33\xc2\x8d\x3e\xd4\x34\x2f\x19\x86\xa4\x4a\x4b\xe2\xba\x8c\x56\xee\xb0\x08\x56\xfe\x9c\x7a\xf4\x34\x1d\x8a\x7f\xe3\xb1\x59\xe8\x63\x8f\xbc\x6d\xef\xf9\xc1\x14\xdb\x5f\xd1\x19\x17\xda\x36\x1d\xad\xd6\x2b\xcc\xb7\x2a\x18\x6c\x7a\x9d\x96\x72\xf1\x6a\x8b\x5f\x54\xe3\x16\x30\x24\xbc\xde\xff\xe8\xd6\xf6\x1d\x7e\x84\xde\x34\xe2\xa6\xd2\xa3\xfc\x6c\xfd\xb3\xc5\x93\x82\x47\x88\xfe\x06\x85\xb1\x2d\xec\xd2\x25\x6b\x2b\xea\xbf\x5b\x3c\xfd\x6f\x32\xd8\x49\x4b\x38\x24\x26\x24\xa3\x25\x78\xb3\x67\xb4\xea\xfe\x36\x25\x6e\x32\x22\x08\x9e\x53\xc1\x9c\x75\x04\x0c\x8a\xfb\xe1\x2f\x4f\x23\xc7\xff\x46\x48\xd0\xa8\xb4\x3f\xf8\x8a\x4f\xb7\x56\x2d\xae\x37\x42\xfe\x60\x07\x94\x89\x07\x81\x68\x5a\x60\xd8\x38\x3d\xea\x48\x18\x7f\x56\x03\x09\x35\xc4\xd7\x07\x44\x55\x11\x55\x1d\x57\x74\x93\xce\x9e\x67\x4c\x85\xf3\xe6\xd7\x7f\x99\x5e\x2e\x1a\x09\x67\xf5\xbe\x20\x1a\xd3\x53\xfd\xcf\xe5\x86\x17\x37\xf9\xa6\xb6\xf9\x0d\x3b\xb5\x2c\x6b\xe6\xc0\xb9\xa1\x05\x9b\xb0\x6d\x15\xdf\xf5\xc0\x9a\xc8\x0d\xea\xc1\x64\xda\x35\x78\x5c\x68\x28\x45\xcd\x0b\x4f\x42\x6a\x8e\x4d\x4b\x98\x9c\xe3\x00\xe3\x7a\x42\xb9\x32\x36\xd8\x64\x08\x43\xe9\x59\x2e\xb0\xc3\xe9\x73\x37\xee\x67\x00\xe6\xc5\xb9\x9d\xbc\x5f\x4e\xc2\xeb\x69\xcc\x77\x35\x72\x55\x4b\x0c\x87\x29\xb0\x23\x3a\xaf\x9a\x32\xbe\xd9\xeb\x3b\xfc\xd0\x8f\x77\x27\xfd\x7c\x17\xd2\x59\x1a\xa2\x0f\x49\xa3\x9b\x5d\xf8\xec\x49\x15\xb8\x92\xc6\x9e\xbb\x7d\xdb\x68\x86\xc2\xc9\x19\x7f\x96\x79\xd7\x4c\xe6\x6e\x99\xf0\x01\xc5\x05\x93\x69\x1e\x4d\x6f\xe6\x9e\x59\x70\xaf\x4d\xa7\x02\x92\xf0\x0d\x86\xb6\x5d\xc9\xe7\x9f\x85\xc7\x9f\xc5\xdf\x2f\x8c\x93\x2c\xf3\xa6\x9f\xb1\x97\x86\x2f\x01\x26\x8e\x0f\xde\x6b\xc1\x33\x5a\xe8\xc4\x8c\x79\x60\x8b\x3f\x78\x08\x5f\x8a\x49\xf0\x52\x6c\xe7\x18\x5e\x7d\xec\x41\x4b\x4e\x20\x12\x07\x31\xee\xd0\xc6\x91\x5a\xd6\x18\x5d\x07\x6f\x91\xed\x51\xf6\x17\x82\x6d\x67\x2f\x8f\x27\x92\xfc\x1f\x3a\xe8\x03\x8c\x94\xdd\x57\xe4\xf3\xc2\x61\x48\x54\xdb\x26\x92\xd3\x71\xeb\x3b\x3a\x78\xdd\x1e\x78\x76\x72\xc9\xb5\x93\x84\x6f\xd3\x17\xea\xa0\xe2\x0f\x1e\x62\x60\x05\x8f\x5e\x80\xda\xff\x8b\x5f\xa5\x61\x05\x59\xf3\xfe\x9c\x95\xb1\x47\xda\x42\xd1\x6e\x8a\xe4\xa4\xdf\x9d\xaf\x13\x17\x8f\x39\x92\x52\xfb\xa7\x64\x23\xd4\x3d\x5b\x5f\x29\x33\x38\x6b\x37\x2f\xf1\x9a\x09\xbf\x3b\xf0\xca\x6e\xd7\x28\xb9\x6b\x70\xa1\xc8\x01\xa7\xdf\xdc\xda\xbd\x73\xd0\x62\x99\xf6\x5e\xdb\x8b\x3c\xfd\x3f\x00\x00\xff\xff\x46\x0e\x32\xc4\x52\x24\x00\x00" func flowcontractauditsCdcBytes() ([]byte, error) { return bindataRead( @@ -99,11 +99,11 @@ func flowcontractauditsCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowContractAudits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x79, 0xf4, 0x66, 0x3a, 0xfa, 0xba, 0xac, 0x31, 0xf5, 0x96, 0x71, 0xe2, 0x86, 0x5e, 0x56, 0x9c, 0xa9, 0x8e, 0xfe, 0x50, 0x7c, 0x7b, 0x23, 0xd9, 0x84, 0x8, 0x56, 0x58, 0x32, 0xd7, 0x7, 0xd5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0x27, 0xe9, 0xe, 0x6a, 0xc3, 0x23, 0xd3, 0x2c, 0x94, 0xf3, 0xc8, 0xfe, 0xa7, 0x5a, 0x95, 0x33, 0xd0, 0xcb, 0xac, 0xbf, 0x1d, 0x17, 0xee, 0x53, 0x33, 0xe1, 0x91, 0x37, 0x85, 0x1d, 0xa7}} return a, nil } -var _flowfeesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x5a\x4b\x73\xdb\x38\xf2\xbf\xfb\x53\xf4\xe4\xf0\xff\x4b\x13\x59\xf2\x61\x6b\x0f\x2e\x2b\xb3\x8e\x23\xa5\x52\x3b\x3b\x49\xd9\x4e\xe6\x98\x82\xc9\xa6\x84\x0a\x05\x68\x01\x50\x8f\x99\xca\x77\xdf\xc2\x8b\x04\x08\xd0\x96\x3d\x19\x5d\x64\x91\x40\xe3\xd7\xef\x46\xb7\xe9\x66\xcb\x85\x82\x65\xc3\x56\xf4\xa1\xc6\x7b\xfe\x0d\x19\x54\x82\x6f\xe0\xe2\xb0\xfc\xfc\xdb\xfb\x0f\x6f\x7f\x5d\xdc\x7f\xfc\xf7\xe2\xb7\xeb\x77\xef\x6e\x17\x77\x77\x67\x7e\x43\xcd\xf7\xf1\xe2\x5f\x3f\xfe\x3e\xb4\xf0\x4e\x71\x41\x56\xb8\x44\x94\xe1\xf2\xbb\xfb\x8f\xb7\xd7\xef\x17\xcb\xc5\xe2\xce\x6f\x3a\xdb\x36\x0f\x50\x70\xa6\x04\x29\xec\x5e\xb3\xe9\xcf\xb3\x33\x00\x80\xd9\x0c\x16\x3b\x64\x0a\xd4\x9a\x28\xa0\x12\x70\x43\x95\xc2\x12\xf6\x6b\x64\xa0\x34\x1c\x09\x44\x20\x94\xb8\xe5\x92\xea\x37\x8a\x83\x5a\x23\x54\x88\xb0\x23\x4d\xad\x0c\x1d\x7d\x08\x1a\x42\x86\x05\xf9\xce\x2f\x1f\x91\x0d\x6f\x98\xba\x84\xcf\x4b\x7a\xf8\xe7\x3f\xc6\xcf\x3c\x76\x4f\xd5\xba\x14\x64\xef\x84\xf2\xf4\xc1\xbf\xfb\x0d\x2f\x39\xb8\xd2\x92\xb1\xdc\x96\x4d\xa1\xb0\xec\x1d\xa1\x25\xf7\xce\xbd\xea\xd1\x9f\x00\x65\x45\xdd\x48\xca\xd9\xa2\xaa\xb8\x08\x5e\xe0\x01\x8b\x46\x25\x2f\x4e\x45\x04\x5b\x22\xc8\x06\x15\x0a\x09\xc5\x9a\xb0\x15\xa6\xa8\x3e\xb5\x4b\x6e\xcc\x8a\x72\x24\x1b\xb1\xc2\x25\x29\x14\x17\x83\x10\x6f\xb8\x1c\x86\x19\xbe\xec\xa0\x7e\x12\x74\x47\x94\x53\x80\xd1\x8e\x06\x52\xd3\xc2\x1b\x08\x54\x0d\x2b\x34\x15\xb3\x83\x14\x05\x4a\x39\x92\x58\x57\x63\xd8\x11\x61\xf7\x5d\xc2\xbf\x5a\x63\x9f\x7e\x31\xaa\x6c\x59\xaa\x1a\xe6\x49\x8d\xb4\xca\xf5\xda\xd0\x93\xec\xfa\x31\xfc\x69\x76\xe8\x4f\x8d\xca\x1a\xc7\xd5\xb9\xfd\x26\xf2\xa7\xf4\x80\x70\xf5\x03\xa9\x09\x2b\x10\xe6\x66\xfd\xd4\xfd\x6c\x97\x68\xb4\x53\x03\x74\x1a\x23\xb9\x3a\xd7\xdf\xe3\x76\xa1\xd6\xd4\xa0\xbd\x3b\xaa\x76\xf5\x77\x2f\xc0\x19\xbc\x47\x65\xcc\xd8\x83\xe0\x95\xf9\x69\x9c\xf2\x4b\x64\xd6\x5a\x14\x2b\x54\x4b\xc4\xb7\x76\xed\x68\xec\x15\x12\xb0\x2f\x50\x35\x82\x85\xa0\x43\x7e\xbe\x77\x92\x15\x28\x79\x23\x0a\x84\xeb\x72\x43\x19\x95\x4a\x10\xc5\x45\x40\x69\x36\x6b\xdd\x2d\x78\x16\xbe\xbe\xae\x6b\xbe\x97\x06\x2f\x89\x88\x28\xde\x6e\xf5\xde\x3b\xe0\xaf\x21\x73\x7e\x8b\x15\xe1\x52\xf0\xcd\x12\xd1\xc8\xa0\xef\xbc\x79\x2b\x08\xb0\x7b\xd5\x5a\xbb\xbc\x3a\x6f\x03\x9d\x93\x89\x3f\xaa\x25\x6c\xbf\xc7\x11\x81\x40\x9f\x69\x18\xc9\x6d\x70\xb2\xbf\x3a\x8f\xf9\x73\x42\xf7\x1a\x7f\x4c\x6a\xd6\xa1\x81\xd4\x75\x2b\xab\xc0\xdd\x89\x02\x1e\x5a\xa6\x17\x9c\x34\x56\xd1\x39\xfd\x0f\xf6\xf6\x8c\x5c\x19\xee\xbb\xe3\x60\x0e\x8f\x1c\x1f\xfc\x18\xc0\x90\x79\x38\x00\x28\xf3\x30\xd6\x40\xab\xe6\x44\x24\x11\xe2\xf1\x5f\xd0\x8d\xd7\x8b\xe1\x0b\x2a\xc3\xd8\x80\x46\xee\x3a\xd6\x47\x5f\x21\xa3\x94\x9c\x68\x79\x5d\xc6\xa2\xf5\x2c\xad\xfa\x2c\x8d\xff\x5e\xb5\x44\x40\xa6\xa7\x2b\x29\xde\xf7\x77\xa8\x0c\xe2\x10\x7a\x0d\x52\x89\xa6\x50\xb0\xe6\x75\x49\xd9\x2a\xe7\x3a\x0c\xb1\xb4\xc5\x4a\x41\xea\xa2\xa9\x75\xd2\x72\xcb\x64\x1b\x12\x1d\x99\x08\x45\x14\x10\x67\x70\xbf\x8e\x35\xaf\x33\x74\x23\x2d\xe5\x0d\xf9\x86\xa0\x04\x61\x92\x98\x94\x67\xeb\x07\x81\x72\xcb\x99\x59\xb0\xa6\xab\x35\xd4\x9c\x94\x12\x38\x33\xc7\x33\x54\x7b\x2e\xbe\x45\xf6\xa3\xf3\x62\xc6\x56\x12\x18\xba\xc0\x83\x82\x4b\xa5\x73\x06\x67\x08\x0d\xa3\xe6\xef\x56\x55\x80\x46\xe6\x53\xbb\xfc\xcb\x7f\x34\x58\x0b\x47\xea\xd0\x09\x15\x17\x60\xb8\xd4\x42\x4b\x76\x25\xa0\x1e\x09\x20\xa7\x83\x6b\xed\xe1\x59\xe0\x92\x5d\x09\xb8\x47\x02\x58\xe7\xe2\x94\x51\xf5\x83\x83\x63\xec\xc0\x26\xed\x06\x07\xc0\x3c\x54\x65\xba\x34\x73\x2c\xcc\x73\x60\xd2\xad\x19\x50\x30\xcf\x41\x1d\x72\x1c\xf8\x82\x82\x56\xc7\x4f\xe4\x88\xc2\x55\x14\xb7\x28\x75\xbe\x34\x9a\xd0\xa9\x0c\x4b\x78\x38\x1a\x43\xdd\x75\x6b\xa5\x5b\xbc\xe4\xe2\xbe\x33\xf6\x45\xab\xa1\xa8\xe2\x0b\xdc\x6a\xf0\xb8\xa8\xe4\xb8\x17\x0d\x02\xb5\x45\xd0\x56\xaf\x85\x35\x91\x20\x9b\xaa\xa2\x05\xd5\xe5\xad\x2f\x94\xb4\x7d\xe8\x45\xa1\xc3\x75\x66\xa2\x1d\x9d\x33\x45\x59\x13\xa7\x4b\x1d\x25\x0b\xe2\xd0\x62\x80\xff\x12\xde\x72\x5e\x47\x48\xd6\x08\x3a\x05\x6c\x9a\x8d\x43\xe2\x8f\x16\xf8\xdf\x86\x0a\x2c\x4f\xc7\x30\x85\x98\x32\x95\xb0\x23\xb5\xe6\x54\x42\x89\x15\x75\x92\x3e\x5d\xca\xd3\x84\x2b\x0f\xca\xed\xcb\x78\xa6\xe5\x88\x1c\x0c\x47\x49\x9c\x1a\x75\x01\xc0\xfc\x7e\x1d\x70\xa2\x1f\x8c\x13\x4e\x0b\xc2\xb4\xa9\x36\x22\x62\x6e\x44\x2b\x53\xbf\x90\x1d\xa1\x35\xd1\x9e\xdc\x77\x5e\x1f\x33\xc7\x09\x0f\x0e\x5c\xc0\xb0\xce\x0c\x03\x7e\xfc\x88\x1a\x27\x43\xd2\x98\xc0\x13\x67\xe4\xfc\x39\x7b\x10\xcc\xf3\x76\x94\x6e\xef\x41\x81\x79\x1f\x5c\xba\x25\x8f\x11\xe6\x03\xe0\xfb\xd5\x4c\xe7\xe2\xcf\x70\x5b\x2a\x75\x6a\xac\x3b\x97\xd7\x31\xf9\x01\x2b\x2e\x5a\x0d\xb2\x15\x90\xd0\x02\xa6\xfe\x98\x0f\xca\x9e\x44\x51\xda\x7b\x6b\xdf\x54\x8c\xff\xfc\xbf\x6c\x3d\x88\x4a\x9b\x0c\x91\xf1\x66\xb5\x0e\x3d\x25\xef\x4b\x13\x7f\x12\x61\xa5\x8b\x4d\xb6\x4a\xf3\xe6\xbc\xe5\xd2\xa6\x8d\xbe\x5d\xb7\x18\x47\xa4\x28\xb8\xb0\xf5\x81\x6d\x59\xf4\x33\x9e\x21\xee\x09\x26\x46\xeb\x2e\x66\x01\xfd\xb1\xa7\x7d\x16\xf8\x57\x5f\xdb\x01\xc7\xde\xd1\x89\x83\xee\x62\x8b\xc6\xd5\x04\x81\xed\x35\x78\x7a\x2f\x77\x56\x7d\x55\xd8\x90\x43\xc2\x85\x83\xec\xcb\xd4\xd3\xcd\x63\xd4\xda\xd8\x57\xab\xcc\xeb\xa2\x50\x97\x70\xdd\xa8\xf5\xb5\xc5\x3f\x81\xc0\x3d\x07\x5a\x1f\xed\x8a\x0d\x39\x2c\xf2\x6d\x10\xab\xe9\xf1\xe5\x89\xe9\xc2\x5f\x9f\xbd\xa4\x5c\xc9\x35\x1c\x9f\xbb\xc0\xa9\xab\x86\x0d\x39\xc4\xbe\xa4\x13\xb6\xf1\x79\xbe\xd9\x36\xca\x34\xd4\x46\x09\x3b\xbd\x07\x99\x96\x4e\xca\xdf\xf8\x2c\x0b\xdb\xd9\x40\x8b\xb8\xef\x28\x8f\x72\x60\x42\xa6\xa5\x70\x9b\x04\x99\x5e\x5b\x70\x5a\x62\xa5\x6f\xa5\xe6\x3e\x7b\x8b\x12\xc5\xae\x5d\x3d\x6a\x35\x3a\x25\x65\x29\x50\xca\x00\x2d\xad\x06\xcf\x98\x3b\x9d\x8d\x2e\xfa\x17\x19\x1d\x13\xac\xbf\xb4\x9c\x05\x8e\xf0\x07\x0a\x0e\x78\xa0\x0a\x90\x88\xfa\x38\xcd\x5d\xa2\x87\xd4\x3f\x8a\x16\xeb\xcf\x40\x1e\x50\xa2\xc1\xc0\xe2\x3a\xf2\xbd\xc4\x90\x67\x6e\x92\x6c\x1c\xca\x1b\x89\x09\xc5\x5b\xfb\xf7\x16\xfd\xc9\x59\x42\xaf\xff\x63\x34\x62\x42\x86\xe9\x60\xd8\xae\x45\xb8\xef\x83\xbd\x40\x60\xb9\x42\x28\x88\x44\xd8\xaf\x51\x60\x50\x36\x95\x1c\x25\x53\xb0\x26\x3b\x04\x62\x09\x4c\x40\x09\x24\xf1\x79\x44\xc2\x45\xec\x13\x5d\x3b\xec\x62\x7a\x11\x9a\x81\x36\x37\xd3\xcd\xb1\xdd\x96\x79\x17\x08\xa6\x0f\x5c\x08\xbe\xbf\xfa\xbf\x5e\x9b\xed\x8d\xeb\x94\xcd\xa4\x35\xc4\x59\xe5\xdf\x27\x6d\x3b\xfd\xe9\x4e\xee\x8e\x49\xda\x71\xc1\x8d\xfd\x59\xa6\xe2\xe2\x73\xbf\x80\x79\xf0\xd9\x0d\x4b\xa0\x2a\x94\x7d\x60\xb0\x2b\x2d\x36\xd4\x9e\x48\x58\xde\x6f\xdd\xe2\x69\x6c\x70\x03\xa6\xe9\x29\xbf\x99\x9f\x64\x7d\x2f\x32\xd9\x93\xcd\x35\xe9\x48\xde\xd8\x2a\xc0\xf4\x9b\xa3\x74\xaf\x25\x21\x9b\x07\xd7\x8f\x56\xdc\xb5\xc5\xfd\x3d\xba\x25\xd0\xb6\xfa\x82\xec\x60\xcb\x82\x6e\x37\x55\xbd\x16\xaf\xa6\x14\x03\x1b\x7d\xd5\xa9\xb1\x9f\x64\x9e\xdd\x56\x0f\x6c\x4c\x5b\x77\x85\x78\x6d\x5a\x77\x3f\x28\xd2\xe3\x60\x98\xa7\x55\x78\xd8\x09\xb1\x52\xa0\x19\x36\x30\x6e\xb3\x58\x2b\xe0\x09\x94\x1c\x18\x57\x6d\x8d\xd4\x0b\x6b\xb3\x19\x48\xde\xd6\x5d\x1d\x95\x86\x31\x2c\x50\x4a\x22\x68\x7d\x6c\xe7\x08\x66\x48\x20\x33\x21\x37\xe7\x61\x89\xcb\x93\xbf\xe0\xed\xd1\x99\xbf\xfc\x02\x5b\xc2\x68\x31\x7a\xf5\x99\x99\x5b\x82\xe2\x60\xe9\x82\xc0\x0a\x05\x6a\x07\x71\x85\x9a\x8f\x82\x06\x89\x0d\x65\xaf\x02\x41\xe7\x25\xfe\x26\x13\x44\x32\x92\xb7\xfe\x5c\x35\xaa\x31\xd1\x53\x57\xc1\xbc\xd4\x31\x40\xad\x61\x4f\xeb\x1a\x18\xee\xf4\xd5\x4f\x67\x32\x52\xac\xb1\x4c\x85\x4f\xa4\x0f\x19\x46\x07\x5a\xfa\x0d\x2b\x51\xb4\x95\x9d\x8f\x16\x1e\x85\xa5\xcb\x5d\x70\x56\x6b\xa4\x22\xf4\x33\x69\xcd\xae\xd4\x6e\xa2\x5d\xb0\xe0\x75\x8d\xe9\xe5\x22\xe8\xc5\x3b\x20\x37\x8d\x10\xc8\x54\x7d\xb4\x8c\x50\x69\x0e\xf1\xed\xa9\x8a\xd0\x3a\x29\xcc\x47\x44\xb6\x93\x26\x9b\xae\x5d\x07\x86\xd6\x54\x1d\x7d\x36\x1a\x2a\x55\x6b\xbe\xa2\xc5\x78\xd2\xc7\xf1\xb6\x51\x61\x5f\x4c\x68\x2b\xc6\x5c\x96\xdb\x39\xb5\xea\x4c\x33\xf1\xb7\x7e\xfb\x50\xdf\xfa\x6b\x94\x32\xb8\x47\xfa\xcd\x6d\x14\x4e\x6a\xfd\x58\x35\xa1\xab\x3f\x9a\x50\x12\x43\x32\x33\x24\x37\x7b\x80\xab\xf3\x70\x77\x32\x39\x68\x4f\x19\x9f\x34\x31\x72\x54\xe3\x72\xf0\xde\x35\x2c\x7d\x6f\x32\x48\x4e\x02\x0b\xce\x6c\x07\x05\x4b\x68\xa4\xef\x6f\x96\x44\x11\x1f\x69\xa9\x74\xa3\x3f\x7d\x81\x71\xd3\xa3\x4f\xd1\xd8\xc0\xc8\xbe\xe6\xc5\x37\x37\x51\xd5\x95\x83\xd9\xb1\x26\xdb\x2d\x32\x37\xd9\x04\x3f\xf4\xc8\x0e\x36\x5b\x46\x33\x41\xf8\x05\x71\x12\xe2\x71\x54\x37\xdd\x0a\x3b\xdc\x97\x83\xcd\xd8\x70\xce\xe5\xcc\x72\x5a\xf0\xed\xf1\x2a\xda\x90\x84\x24\x13\xb2\x0e\xd1\x9a\x71\x10\x8b\x16\x42\x70\xa1\x71\x98\xcb\xae\x3a\xf4\xda\xc8\xa6\x59\x79\x34\xcd\x64\x13\xaf\xd0\x74\x22\x28\xa9\xe9\x1f\xfa\xb6\x41\x85\x54\x3f\xbd\x8a\x58\x8b\x26\x9e\xd9\x59\xcd\x57\x7d\x46\xf7\xbb\xc7\xf1\x38\xbe\xee\xe0\x66\xab\x8e\xe0\x98\xf1\xb7\xf3\xbd\xa0\x06\x2e\xc3\x7d\x4f\x5c\x8a\xfb\x44\xdb\x9a\xa5\x97\x55\xcd\x49\xf9\x02\x59\xe5\x89\x49\xb2\xc3\x51\xc4\xc6\x44\xf1\x53\x29\x79\x8b\x7b\x62\x68\x1d\x91\x9f\x3e\x3d\xbe\x88\xd7\x9f\x3e\xbe\x88\xf7\x0d\x8e\x2f\x9c\x7e\xfd\x55\xdd\x55\x11\xd9\xb0\x64\xe7\xe2\xfa\x4d\x61\x03\x74\x32\xd7\x73\x6e\xbb\xa2\x3b\x64\x7d\x6e\xcc\xdb\x1e\x8c\xc8\x6b\x1e\x2d\x60\x9e\xaa\x8e\x32\x13\x64\x1d\xfc\x0c\x38\xe9\x4b\xa4\x47\x26\x4f\xbd\x4a\x41\x91\xda\x75\xaa\x2c\x85\xa8\x17\xfe\x33\x8c\x12\xe6\x7e\xf6\x0b\x73\x9d\xf0\xd7\x7d\xd8\xdd\xf2\x5c\xf7\x7b\xdc\x0f\x0e\x2d\x9e\x50\x63\xa6\x77\x68\x86\x7b\xae\xa6\x8c\x0a\xcc\x9e\xbf\xdd\x98\xc2\x1f\x88\xf5\xad\xf6\x3f\x72\x6c\x62\xd0\x8a\xd1\x96\xaf\xef\x0d\x94\x79\xaf\xcc\x64\x01\x3f\x80\xb6\xb5\x52\x61\x68\x2e\xb4\x27\xdb\xe1\xf6\x38\xff\x2f\x0a\x91\x68\x0d\x60\x4d\xc7\xee\x8e\x87\xf6\x81\x3e\x42\xc6\xac\x5b\x5e\x9d\x9b\x67\x13\x88\x3c\xb2\x72\x53\x37\x43\xc7\x5b\xf4\xf7\xff\x05\x00\x00\xff\xff\xf7\x06\x7f\xd5\xac\x24\x00\x00" +var _flowfeesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x5a\x4b\x73\xdb\x38\x12\xbe\xfb\x57\xf4\xe4\xb0\x4b\x4e\x64\x29\x87\xad\x3d\xb8\xac\xcc\x3a\x89\x94\x4a\xed\xec\x24\x15\x3b\x99\x63\x0a\x26\x9b\x22\x2a\x14\xa0\x05\x40\x3d\x66\x2a\xff\x7d\x0b\x2f\x12\x20\x41\x47\xf6\x66\x74\xb1\x45\x02\x8d\xaf\xdf\x8d\x6e\xd1\xed\x8e\x0b\x05\xeb\x96\x6d\xe8\x7d\x83\x77\xfc\x2b\x32\xa8\x04\xdf\xc2\x8b\xe3\xfa\xd3\x6f\x6f\xdf\xbd\xfa\x75\x75\xf7\xfe\xdf\xab\xdf\x6e\xde\xbc\xf9\xb8\xba\xbd\xbd\xf0\x1b\x1a\x7e\x88\x17\xff\xfa\xfe\xf7\xa9\x85\xb7\x8a\x0b\xb2\xc1\x35\xa2\x0c\x97\xdf\xde\xbd\xff\x78\xf3\x76\xb5\x5e\xad\x6e\xfd\xa6\x0b\x52\x14\x28\x65\x46\x9a\x26\x87\x82\x33\x25\x48\x61\x69\x98\xcd\x7f\x5e\x5c\x00\x00\x2c\x16\xb0\xda\x23\x53\xa0\x6a\xa2\x80\x4a\xc0\x2d\x55\x0a\x4b\x38\xd4\xc8\x40\x69\x58\x12\x88\x40\x28\x71\xc7\x25\xd5\x6f\x14\x07\x55\x23\x54\x88\xb0\x27\x6d\xa3\x0c\x9d\xf0\x30\x34\x04\x0d\x4b\xf2\x8d\xdf\x96\x91\x2d\x6f\x99\xba\x82\x4f\x6b\x7a\xfc\xe7\x3f\xf2\x47\x1e\x7f\xa0\xaa\x2e\x05\x39\x38\x21\x9d\x0f\xe0\x77\xbf\xf1\x29\x00\x2a\x2d\x29\xcb\x7d\xd9\x16\x0a\xcb\x89\xa3\xb4\x44\xdf\xb8\x25\x83\x73\x66\x40\x59\xd1\xb4\x92\x72\xb6\xaa\x2a\x2e\x82\x17\x78\xc4\xa2\x55\xa3\x17\xe7\x22\x83\x1d\x11\x64\x8b\x0a\x85\x84\xa2\x26\x6c\x83\xd3\xe8\x3e\x74\x4b\x5f\x9b\x95\x65\x26\x5b\xb1\xc1\x35\x29\x14\x17\x93\x50\x5f\x73\x39\x0d\x37\x7c\xd9\x43\xfe\x20\xe8\x9e\x28\xa7\x18\xa3\x35\xd8\xb5\xf7\x0d\x2d\xbc\x01\x41\xd5\xb2\x42\x53\x09\xc1\x4a\x6c\xaa\x1c\xf6\x44\xd8\x7d\x57\xf0\xaf\xce\x29\xe6\x9f\x8d\x8a\x47\xac\x55\x2d\xf3\x24\x33\x6d\x12\x7a\x4f\xe8\x79\x76\x5f\x0e\x7f\x9a\x9d\xfa\xd3\xa0\xb2\xc6\x73\x7d\x69\xff\x12\xf9\xd3\xf8\xa0\x70\xf5\x3d\x69\x08\x2b\x10\x96\x66\xfd\xdc\x7d\xed\x96\x68\xd4\x73\x03\x78\x1e\x23\xb9\xbe\xd4\x7f\xf3\x6e\xa1\xd6\xdc\xa4\x3f\x38\xaa\x76\xf5\x37\x2f\xc8\x05\xbc\x45\x65\xcc\xdc\x83\xe0\x95\xf9\x6a\x9c\xf7\x73\xd2\xec\xb5\x48\x36\xa8\xd6\x88\xaf\xec\x9e\x2c\xf7\x0a\x0a\xc4\x20\x50\xb5\x82\x85\xe0\x43\xbe\xbe\x8d\x25\x2d\x50\xf2\x56\x14\x08\x37\xe5\x96\x32\x2a\x95\x20\x8a\x8b\x80\xe2\x62\xd1\xb9\x67\xf0\x2c\x7c\x7d\xd3\x34\xfc\x20\x0d\x7e\x12\x11\x51\xbc\xdb\xea\xbd\x7d\xc2\xbf\x53\xcc\xfa\xad\x56\xb4\x6b\xc1\xb7\x6b\x44\x23\x9b\xa1\xb3\xa7\xad\x23\xe0\xc1\xab\xdc\xda\xed\xf5\x65\x17\x28\x9d\x8c\xfc\x51\x1d\x61\xfb\x37\x8f\x08\x04\x7a\x1e\x87\x9d\xd4\x06\xa7\x8b\xeb\xcb\x98\x4f\xa7\x04\x6f\x09\x0f\x49\xcf\x3a\x3e\x90\xa6\xe9\x64\x16\x84\x05\xa2\x80\x87\x16\x3b\x14\xa0\x34\xd6\xd2\x07\x87\x1f\x1c\x15\x12\xf2\x65\x78\xe8\x8f\x83\x25\x3c\x70\x7c\xf0\x65\x02\x43\xe2\xe1\x04\xa0\xc4\xc3\x58\x13\x9d\xba\x47\x22\x89\x10\xe7\xff\x87\x8e\xbc\x7e\x0c\x5f\x50\x19\xc6\xbe\xa3\x99\xdb\x5e\x04\xd9\x17\x48\x28\x27\x25\x62\xde\x94\xb1\x88\x3d\x6b\x9b\x21\x6b\xf9\x5f\xab\x9e\x08\xc8\xfc\x7c\x65\xc5\xfb\xfe\x0a\xd5\x41\x1c\x6a\x6f\x40\x2a\xd1\x16\x0a\x6a\xde\x94\x94\x6d\x52\xae\xc4\x10\x4b\x5b\xfc\x14\xa4\x29\xda\x46\x27\x39\xb7\x4c\x8e\x42\xa6\x23\x17\xa1\x89\x02\xe6\x02\xee\xea\xd8\x12\x74\x86\x6f\xa5\x3d\x61\x4b\xbe\x22\x28\x41\x98\x24\x26\x55\xda\x3a\x44\xa0\xdc\x71\x66\x16\xd4\x74\x53\x43\xc3\x49\x29\x81\x33\x03\x83\xa1\x3a\x70\xf1\x35\x69\x4f\x3a\xaf\x26\x6c\x67\x04\x47\x17\x92\x50\x70\xa9\x74\xae\xe1\x0c\xa1\x65\xd4\xfc\xdf\xa9\x0e\xd0\xe8\x60\x6e\x97\x7f\xfe\x8f\x06\x6d\x61\x49\x1d\x5a\xa1\xe2\x02\x0c\xb7\x5a\x88\xa3\x5d\x93\xe0\x1e\x08\x30\xe7\x83\xec\xec\xe4\x51\x20\x47\xbb\x26\x41\x3e\x10\xe8\xfa\x50\x40\x19\x55\x3f\x38\x88\xc6\x0e\x6e\xd2\x76\x70\x00\x2c\x43\xd5\x8e\x97\x26\x8e\x85\x65\x0a\xcc\x78\x6b\x02\x14\x2c\x53\x50\xa7\x1c\x0b\x3e\xa3\xa0\xd5\xe9\x03\x39\xa1\x70\x15\xc9\x47\x94\x3a\xbf\x1a\x8d\xe8\xd4\x87\x25\xdc\x9f\x8c\x01\xef\xfb\xb5\xd2\x2d\x5e\x73\x71\xd7\x3b\xc1\xaa\xd3\x54\xaa\x82\x0c\xdd\x6e\xf2\xd8\xa8\x64\xb9\x13\x2d\x02\xb5\x45\xd5\x4e\xaf\x85\x9a\x48\x90\x6d\x55\xd1\x82\xea\xb2\xd9\x17\x5e\xda\x5e\xf4\xa2\xd0\x21\x7b\xb3\xd1\x01\x81\x33\x45\x59\x9b\x4e\xb3\x3a\xaa\x16\xc4\xa1\xc7\x80\x9f\x2b\x78\xc5\x79\x13\x21\xaa\x11\x74\xea\xd8\xb6\x5b\x87\xc8\x43\x10\xf8\xdf\x96\x0a\x2c\xcf\xc7\x32\x87\x98\x32\x95\xb0\x27\x8d\xe6\x58\x42\x89\x15\x75\x92\x3f\x5f\xea\x69\xc7\xd0\xdc\x79\x70\x6e\x7f\xc2\x73\x2d\x67\xe4\x68\x38\x1b\xc5\xb5\xac\x0f\x14\xe6\xfb\xf3\x80\x23\xfd\x20\x1f\x71\x5c\x10\xa6\x4d\xb8\x15\x11\x93\x19\xad\x4c\x1d\x44\xf6\x84\x36\x44\x7b\xfa\xd0\xb9\x7d\x8c\xcd\x27\x79\x71\x20\x03\x01\xe8\xcc\x32\xe1\xe7\x0f\xa8\x75\x36\x25\x95\x19\x7c\xe7\x8c\x94\xbf\x27\x0f\x82\x65\xda\xae\xc6\xdb\x07\x50\x60\x39\x04\x37\xde\x92\xc6\x08\xcb\x09\xf0\xc3\xaa\xa8\x0f\x01\x8f\x70\x6b\x2a\x75\x6a\x6d\xfa\x90\xa0\x63\xf7\x3d\x56\x5c\x74\x9a\x64\x1b\x20\xa1\x25\xcc\xfd\x31\xef\x94\x3d\x89\xa2\xb4\xf7\xe5\xa1\xc9\x18\x7f\xfa\xbb\xec\x3c\x8a\x4a\x9b\x44\x91\xf1\x76\x53\x87\x9e\x93\xf6\xad\x99\x3f\x89\xb0\xd2\xc5\x2e\x5b\xed\x79\xb3\xde\x71\x69\xd3\xcb\xd0\xbe\x3b\x8c\x19\x29\x0a\x2e\x6c\x7d\x61\x5b\x28\xc3\x0c\x69\x88\x7b\x82\x23\xe3\x75\x17\xc0\x80\x7e\xee\x69\x5f\x04\x7e\x36\xd4\x76\xc0\xb1\x77\x7c\xe2\xa0\xbb\x58\xa3\x71\xb5\x41\xc0\x7b\x0e\x9e\xde\xd3\x9d\x56\x5f\x3d\xb6\xe4\x38\xe2\xc2\x41\x1e\x96\xbb\xe7\x9b\x49\xd6\xd9\xda\x17\xab\xd4\x9b\xa2\x50\x57\x70\xd3\xaa\xfa\xc6\xf2\x31\x83\xc0\x4d\x27\x5a\x2f\xdd\x8a\x2d\x39\xae\xd2\x6d\x18\xab\xf1\xfc\xea\xcc\x74\xe2\xaf\xeb\x5e\x62\xae\x64\x9b\x8e\xdb\x7d\x40\xd5\xd5\xc5\x96\x1c\x63\x9f\xd2\x89\xdd\xf8\x3e\xdf\xee\x5a\x65\x1a\x7e\xd9\x88\x9d\xc1\x83\x44\x4b\x69\xcc\x5f\x7e\x91\x84\xed\x6c\xa1\x43\x3c\x74\x98\x07\x39\x30\xa1\xd3\x52\xf8\x38\x0a\x36\x83\xb6\xe5\xbc\xc4\x4a\xdf\x76\xcd\x3d\xf9\x23\x4a\x14\xfb\x6e\x75\xd6\x69\x74\x4e\xca\x52\xa0\x94\x01\x5a\x5a\x4d\x9e\xb1\x74\x3a\xcb\x5e\x0c\x2f\x44\x3a\x36\x58\xbf\xe9\x38\x0b\x1c\xe2\x0f\x14\x1c\xf0\x48\x15\x20\x11\xcd\x69\x9e\xba\x9c\x4f\xa9\x3f\x8b\x16\xeb\xcf\x44\x3e\x50\xa2\xc5\xc0\xe2\x7a\xf2\x83\x04\x91\x66\x6e\x36\xda\x38\x95\x3f\x46\x26\x14\x6f\x1d\xde\x7f\xf4\x27\x65\x09\x83\x7e\x93\xd1\x88\x09\x1d\xa6\x33\x62\xbb\x21\xe1\xbe\x77\xf6\x02\x82\xe5\x06\xa1\x20\x12\xe1\x50\xa3\xc0\xa0\xac\x2a\x39\x4a\xa6\xa0\x26\x7b\x04\x62\x09\xcc\x40\x09\x24\xf1\x79\x44\xc2\x8b\xd8\x27\xfa\xf6\xdb\x8b\xf9\x8b\xd0\x0c\xb4\xb9\x99\x6e\x91\xed\xe2\x2c\xfb\x40\x30\xbf\xe7\x42\xf0\xc3\xf5\xdf\x06\x6d\xbd\x97\xae\x33\xb7\x90\xd6\x10\x17\x95\x7f\x3f\x6a\x13\xea\x4f\x7f\x72\x7f\xcc\xa8\xfd\x17\x74\x00\x1e\x65\x2a\x2e\x4e\x0f\x0b\x9a\x7b\x9f\xe5\xb0\x04\xaa\x42\xd9\x07\x06\xbb\xd1\x62\x43\xed\x89\x84\xa5\xfd\xd6\x2d\x9e\xc7\x06\x37\x61\x9a\x9e\xf2\xcb\xe5\x59\xd6\xf7\x24\x93\x3d\xdb\x5c\x47\x1d\xd0\xd7\xb6\x1a\x30\xfd\xee\x28\xed\x6b\x49\xc8\xf6\xde\xf5\xc3\x15\x77\xed\x79\x7f\x1f\xef\x08\x74\xad\xc4\x20\x3b\xd8\xf2\xa0\xdf\x4d\xd3\x7d\x54\x4b\x31\x06\x98\x7d\xd1\xcb\x86\xc9\xe6\xd1\xed\xfd\xc0\xd6\xb4\x95\x57\x88\x37\xa6\x35\xf8\x83\x22\x3e\x4e\x86\x7b\x5a\x85\x87\x9d\x11\x33\x05\x9a\xe1\x07\xe3\x36\x9b\x75\x82\x9e\x41\xc9\x81\x71\xd5\xd5\x4c\x83\xf0\xb6\x58\x80\xe4\x5d\x1d\xd6\x53\x69\x19\x43\x2d\x66\x22\x68\x73\xea\xe6\x19\x66\x48\x21\x13\xa1\x37\xe5\x69\x23\xd7\x27\x81\xd7\x93\x56\xd5\x59\xdc\xe7\xf5\x7d\x58\x7d\x1f\xc8\xe1\xb1\x61\x21\x02\xf5\xcb\x2f\xb0\x23\x8c\x16\xd9\xb3\x4f\xcc\x5c\x2f\x14\x07\x7b\x30\x08\xac\x50\xa0\xf6\x24\x57\xd9\xf9\x70\x69\xa0\xda\x98\xf7\x2c\xd0\x44\x5a\x25\x2f\x13\xd1\x26\xa1\x1a\xeb\xf8\x55\xab\x5a\x13\x66\x75\xd9\xcc\x4b\x1d\x2c\x54\x0d\x07\xda\x34\xc0\x70\xaf\xef\x8e\x3a\xe5\x91\xa2\xc6\x72\xac\x1d\x22\x7d\x6c\x31\x4a\xd2\xea\x69\x59\x89\xa2\x2b\x05\x7d\x58\xf1\x28\x2c\x5d\xee\xa2\xb8\xaa\x91\x8a\xd0\x21\xa5\xb5\xcb\x52\xfb\x93\xf6\xd5\x82\x37\x0d\x8e\x6f\x23\xc1\x50\xc0\x01\x79\xdd\x0a\x81\x4c\x35\x27\xcb\x08\x95\xe6\x10\xdf\x07\xab\x08\x6d\x46\x95\x7c\x46\x64\x37\x12\xb3\x79\xdd\xb5\x76\x68\x43\xd5\xc9\xa7\xad\xa9\xda\xb6\xe1\x1b\x5a\xe4\xb3\x21\x8e\x57\xad\x0a\x1b\x70\x42\x9b\x39\xa6\xd2\xe1\xde\xa9\x55\xa7\xa4\x99\x6f\x1f\xd8\x87\x35\x91\xd0\xa0\x94\xc1\x05\xd4\x6f\xee\xc2\xf5\xe8\x72\x10\xab\x26\x8c\x05\x0f\x66\x9e\x91\x21\x99\xe1\x96\x1b\x7e\xc0\xf5\x65\xb8\x7b\x34\xba\xe8\x4e\xc9\xcf\x1a\x65\x39\xaa\x71\xdd\x78\xe7\x3a\xa4\xbe\x19\x1a\x64\x31\x81\x05\x67\xb6\x15\x83\x25\xb4\xd2\x37\x54\x4b\xa2\x88\x0f\xc9\x54\xba\xd9\xa4\xbe\xf1\xb8\xb1\xd6\x87\x68\x6e\x61\x64\xdf\xf0\xe2\xab\x1b\x05\xeb\x12\xc3\xec\xa8\xc9\x6e\x87\xcc\x8d\x62\xc1\x4f\x5d\x92\x13\xd8\x8e\xd1\x44\x94\x7e\x42\x20\x85\xf4\x7c\xac\x1f\xbb\x85\xad\xf5\xab\xc9\xee\x6f\x38\x80\x73\xe6\x39\x2f\xf8\xee\x74\x1d\x6d\x18\x85\x26\x13\xba\x8e\xd1\x9a\x3c\x88\x49\x2b\x21\xb8\xd0\x38\xcc\x2d\x59\x1d\x07\xfd\x6b\xd3\x0d\x3d\x99\x2e\xb6\x89\x5b\x68\x5a\x18\x94\x34\xf4\x0f\x7d\x3d\xa1\x42\xaa\x9f\x9e\xa5\x58\xb4\xa3\xd9\xe4\xb0\xe8\x8b\x3e\xa3\xff\x3e\xe0\x38\x8f\xef\x47\xb8\xdd\xa9\x13\x38\x66\xfc\xb5\xfe\x20\xa8\x81\xcb\xf0\x30\x10\x97\xe2\x3e\x33\x77\xe6\xe9\x65\xd5\x70\x52\x3e\x41\x56\x69\x62\x92\xec\x31\x8b\xd8\x98\x29\x7e\x2e\x25\x6f\x79\xdf\x99\xae\x47\xe4\xe7\xdf\x9f\x9b\xc4\xeb\xcf\x9f\x9b\xc4\xfb\x26\xe7\x26\x4e\xbf\xfe\x8e\xef\xca\x8d\x64\x78\xb2\x03\x7c\xfd\xa6\xb0\x81\x7a\x34\x60\x74\xee\xbb\xa1\x7b\x64\x43\x6e\xcc\xdb\x01\x8c\xa4\xf7\x3c\x58\xf1\x7c\xaf\x9c\x4a\x8c\xb8\x75\x30\x34\x20\xa5\xaf\xa9\x1e\x18\x7d\x0d\x4a\x0b\x45\x1a\xd7\xea\xb2\x14\xa2\x66\xfb\xcf\x90\x8d\x98\xfc\xd9\x2f\x4c\xb5\xda\x9f\x0f\x61\xf7\xcb\x53\xed\xf5\x7c\x18\x24\x3a\x3c\xa1\xe6\x4c\xf3\xd1\x4c\x19\x5d\x11\x1a\x55\xa4\x03\xbf\x7b\x6d\x6e\x0c\x40\xac\x8f\x75\x3f\x35\xb2\x89\x42\x2b\x48\x7b\x80\xbe\x70\x50\xe6\xbd\x33\x91\x15\xfc\x44\xdc\xd6\x4e\x85\xa1\xb9\xd2\x1e\x6d\xa7\xed\x79\xfa\xb7\x14\x91\x68\x0d\x60\x4d\xc7\xee\x8e\x7f\x4d\x10\xe8\x23\x64\xcc\xba\xe7\xf5\xa5\x79\x36\x83\xc8\x33\x2b\x37\xf6\x33\x74\xbc\x65\x7f\xfb\x5f\x00\x00\x00\xff\xff\x52\x13\xde\x4b\x85\x25\x00\x00" func flowfeesCdcBytes() ([]byte, error) { return bindataRead( @@ -119,11 +119,11 @@ func flowfeesCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowFees.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0xa7, 0xc1, 0x2, 0x49, 0x58, 0xc1, 0xe8, 0x5, 0xdd, 0x46, 0x3d, 0xdf, 0x1e, 0xd4, 0xb1, 0x5e, 0x48, 0x54, 0xe0, 0xa0, 0xcc, 0x3b, 0xf8, 0x90, 0xd5, 0x34, 0x59, 0x4c, 0x37, 0x53, 0xbe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0x32, 0x9, 0x60, 0xfc, 0x88, 0xf, 0x17, 0x40, 0xd8, 0x83, 0x10, 0x2f, 0x8b, 0xf6, 0x6f, 0x5f, 0x1d, 0x7d, 0xeb, 0x32, 0x2e, 0x90, 0xb4, 0x5e, 0x98, 0xde, 0xc8, 0x58, 0xce, 0x20, 0x38}} return a, nil } -var _flowidtablestakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xeb\x72\xdc\x36\xb2\xf0\xef\xe3\xa7\x80\x5d\xf5\xd9\xa3\x44\x57\x5f\x72\xb2\x2a\xcb\x59\x59\xb2\xf7\xa8\x9c\x95\x5d\x96\xb3\xf9\xe1\x4a\x65\x21\x12\xa3\xc1\x9a\x43\x4c\x08\x52\xe3\x39\x89\xdf\xfd\x2b\x34\xee\x37\x92\x23\x8d\x9d\x6c\xf6\xa8\x92\xb2\x34\x43\x36\x80\x46\xa3\xd1\xf7\xde\xfb\xea\xce\x1d\x84\x10\x7a\x59\xb1\xe5\xd9\xe9\x3b\x7c\x59\x91\x8b\x16\x7f\xa0\xf5\x95\xfc\xfc\xdd\x8c\xc0\x77\xe8\xec\x14\xc1\xb7\x08\xd7\x25\x52\x8f\xa0\x82\xd5\x6d\x83\x8b\x16\xcd\x71\x8d\xaf\x08\x87\x57\x6a\x56\x12\xc4\x16\xa4\xc1\x2d\x6b\xf8\x03\x78\xa1\x24\x15\xb9\x52\x7f\xd3\x7a\xca\x9a\x39\x6e\x29\xab\xe1\x79\xf1\x3d\x0c\xd1\xb2\x0f\xa4\xe6\xa8\x9d\xe1\x16\xe1\x86\x20\xde\xe2\x0f\xa4\x44\x98\xa3\x05\x6e\x5a\xc4\xa6\xa8\xd5\xb3\x79\xd3\xb0\x96\x15\xac\xda\x95\xb3\x3c\x67\x25\xe1\x88\x77\x97\x73\xda\x8a\x87\x68\x23\x5f\x46\x2d\x83\x77\x16\xdd\x65\x45\x0b\x84\xcb\x52\x3c\x79\x56\x4f\x19\x9a\x76\x75\x61\xa6\x50\x76\x8d\x58\x8e\x78\x94\xab\xa5\xe1\x0e\xbe\x46\x8b\x19\xe6\x64\x57\x23\x83\x72\xd4\x90\x82\x35\x25\x57\xc3\x88\xc5\xc0\x0a\x0a\x36\x9f\xd3\xb6\x25\xa5\x5a\xc6\xae\x40\xdd\x0a\xe1\x8a\x33\xb4\xa4\x55\x85\xae\x48\x8b\x30\xcc\x14\x60\xbd\xbe\xfc\x17\x29\x5a\xb9\xd8\x56\x3c\x59\xe0\x1a\x75\x1c\xa6\x0c\x73\xdf\x46\x5d\xad\x7e\x11\xf0\x97\xb4\x9d\x95\x0d\x5e\xa2\x86\x2c\x71\x53\x72\x35\xa5\x17\xb8\x98\x49\x8c\xcf\x30\x47\xf3\xae\x6a\xe9\xa2\x22\x72\x0e\xe8\xb2\x2b\x3e\x90\x56\x61\x74\xc6\xaa\x52\x4d\x5a\xce\x10\xde\xbf\xc4\x9c\x94\x88\xd5\x16\x6b\x6d\xc7\x0f\xed\x6a\xb6\xd5\x2e\xe8\xd9\xd0\xfa\xca\x4c\xac\x94\x33\x93\x13\x22\xa5\x9a\xd1\xa9\xd9\x6a\x58\x12\x20\xa0\x21\x57\x94\xb7\x44\x8c\xac\x49\x81\xa0\x97\xdf\xbf\xfe\x51\x7c\x80\x7d\x8a\x19\xb5\x21\xe8\x72\x85\x3a\xae\x1f\xd1\xe0\xcf\xc9\xd2\x8c\x3e\xd9\x32\x5b\xbc\xab\x29\x79\x85\x66\xf8\x9a\x48\xa8\x78\x9e\xc4\x92\x4f\xbc\xa8\x64\xbb\xf6\x1c\x1c\x97\x73\x5a\x03\x9e\x05\x04\xdc\xb5\x33\xd6\xd0\x76\x25\xd6\xd0\x90\x39\xbb\x26\xf2\x6d\x45\x20\xdb\xf0\x5e\x43\xa6\x5d\x5d\x22\x5a\xf3\x6e\x3a\xa5\x05\x25\x75\x5b\xad\x34\x65\x8b\xc7\xf9\x36\x5a\xe0\x95\xde\xd5\x6d\x73\x22\x00\x9e\x3a\x11\x97\xa4\x5d\x12\x3b\x53\x20\x2d\x4e\x24\x59\xcd\xf0\x62\x41\x6a\xc4\xea\x82\x20\x72\x4d\x9a\x15\x22\x0b\x56\xcc\xd4\xb4\x2f\x08\x11\x54\x4f\x05\x1a\x70\x65\x70\x59\xb2\xa2\x9b\x93\xba\x85\x43\x88\x66\xa4\x21\x87\x68\xd6\xb6\x0b\x7e\xb8\xb7\x57\xb2\x82\xef\xb2\x7a\x5a\xb1\xe5\x2e\x6b\xae\xf6\xd4\x3b\x7b\x77\xee\xa0\xaf\xf6\xee\xdc\xa1\xf3\x05\x6b\x5a\xf4\xb2\xab\xaf\xe8\x65\x45\xde\x01\x0a\xa7\x0d\x9b\xa3\xfd\x8f\x2f\x7f\x38\xff\xdb\xd9\xf3\xef\x5f\xbc\x7b\xfd\xea\xc5\xf9\xf1\xe9\xe9\xdb\x17\x17\x17\xe6\x85\x8a\x2d\xfd\x87\xbf\x7f\xfd\x63\xee\xc1\x97\x84\x70\xf7\xb9\x97\x2f\x5e\x5c\x04\x8f\x9d\x34\xab\x45\xcb\xee\xdc\x59\x74\x97\x96\x0d\xc5\x5c\x0c\xfd\x2a\x11\xb1\xf7\x15\xfc\xa4\xd9\xd8\x8b\x6b\x52\xb7\x1c\xc9\x47\xf6\xe4\x0b\x02\x2e\x11\x9f\xa3\x73\xb2\x7c\x21\x50\x3a\x69\x59\x8b\xab\x0b\xd8\xba\x43\xf4\xc3\x4b\xfa\xf1\x9b\xc7\xdb\x08\x3e\x7c\x0b\xbb\xf7\x06\xaf\x58\xd7\xea\xaf\xb6\x02\x30\x00\xe3\x9d\x7d\x9a\xbf\xc1\xb4\x94\x30\x2d\x34\xb1\x66\xb1\x78\xfb\xc9\x9c\xd6\xad\x3b\xde\x94\x10\xfe\xbc\x6b\x6a\xfb\xd9\x96\x5a\xe1\xde\x1e\x70\x17\xb5\x9a\x78\x11\xe2\xcb\x93\x86\xe0\x96\x94\x13\x41\x79\x67\xa7\x87\xe8\xa2\x6d\xe0\x44\x37\xac\x22\x87\xe8\x87\xb3\xba\xfd\x76\x1b\xe1\x39\xeb\xea\xf6\x44\xb3\x80\xdc\x82\x60\x37\xb9\x79\x2c\x82\x29\xc1\xf4\xbf\x2d\xb1\xb9\xe6\xab\x62\x21\xf2\xf5\xb7\xe4\x97\x8e\xf0\x96\x94\xef\xd8\x0f\x92\x27\xdd\x68\x16\x3f\x68\xd6\x76\x8b\xb7\x6f\xb4\x8a\xb7\xc0\x36\xca\xe3\xba\x7c\x0b\x7c\x62\x6d\x20\x2e\x29\xad\xf7\xa6\x9e\xb5\x5c\xc3\x8f\xea\x76\xa9\x6f\x34\xfe\xed\x60\x9c\x93\x76\xc9\x1a\x81\xfe\xe3\xb2\x6c\x08\xe7\x3f\x2c\xca\x24\x91\xd6\x64\xa9\x9e\xd0\x9f\xa5\x70\xfa\x23\xa1\x57\xb3\xf6\x64\x86\xeb\xab\x34\x0c\xf9\x80\xa4\x76\xef\xf4\x98\xbb\x23\x7b\x84\xcc\x13\xb9\x73\x64\xe4\x1c\xf1\xa1\x18\xe0\xd1\xc3\x70\x8e\x06\xc6\xd0\xf9\x49\xc0\x1a\x42\x65\x00\x3b\x73\xba\x6e\x0f\x78\xc4\xb9\xbb\xfd\x20\xf9\x53\xb9\x29\xd8\x1b\xc6\x4d\xdf\x61\xbc\x0d\xdc\xb1\x47\xf5\xf6\x73\xdf\xc8\x08\xe6\x3c\x9d\x98\x6b\x99\x92\xaa\x44\xf2\x48\x8e\x38\x5b\x5d\xfb\x86\x34\x85\x10\x4f\xae\xc8\xa4\x26\x4b\xef\x83\x3c\x17\x59\xfe\x48\xc8\x87\x6a\x25\x6f\x61\xf1\x5e\xff\x7d\x7c\x4e\x96\xea\xfe\xff\x3b\xad\xe9\xbc\x9b\x73\xf1\x8e\xfe\xfd\x10\xfd\x0a\xb7\xa1\x7e\xfb\x53\xe2\x75\x33\x63\x1f\x8e\x03\x26\x81\x94\xff\x61\x95\x54\x1e\x10\x2d\x49\xdd\x82\xfc\x08\x02\xc9\x94\x35\x08\x57\x15\x7c\x05\x82\x21\xa2\xb5\xfc\x43\xf2\xc7\x5d\x03\xe2\xac\x2e\xaa\x4e\x3c\x20\x1f\xd3\xfa\x52\xfd\xa0\x45\xb8\x68\xe9\x35\xa9\x56\xa0\x31\xd1\x82\x2e\x70\x2b\x54\x39\xfd\xe6\x07\xb2\x42\x47\x52\x4a\x3d\x3b\x35\x9f\x5e\xe3\xaa\x23\xe8\x48\x89\xd2\x42\x78\x95\xba\x96\x12\x87\x1f\x70\xd0\x72\xb6\x95\x34\xba\x1d\x28\x74\x52\x62\x2d\x0a\xc2\xf9\x44\x0b\x62\x5b\xe8\x1a\x37\x72\x7a\x87\xe8\xaf\xbf\x4a\xf2\x39\x54\x57\x9e\x18\xe0\x93\x45\x88\x90\xac\xe7\x12\x5d\x8a\x94\x60\x74\x47\x17\x24\x42\xc7\x81\x23\xd0\xa0\x76\xb5\x90\xaa\x8e\x56\x93\x0c\x1c\x5a\x23\xd6\x94\x52\xc7\xb8\x24\x42\x26\xe4\xb4\x24\x0d\x29\xc5\xfa\x68\x69\x9e\x7b\x45\x56\xfc\xd0\xfc\x75\x80\x76\xd0\x09\xab\x2a\x52\x08\xbe\x0f\x7a\xa4\xf9\xee\x21\x7c\x57\x73\x52\xf3\x8e\x07\xdf\x3d\x42\x3b\xe8\xc5\x47\x52\x74\x20\x41\xfb\xdf\x3d\x46\x3b\xe8\x1f\xa4\xa1\x53\x5a\xe0\xc4\xd7\x4f\xd0\x0e\x3a\x06\x7c\x39\x5f\x28\x04\xe2\xa2\x10\x18\x90\xf8\x53\x58\x01\x2e\x2e\x38\x2e\x6d\x84\x30\x16\xd0\xa5\x8f\x48\x10\x27\x33\x68\x74\x54\xea\x88\xd6\x0c\x10\x36\x95\xe8\x06\x1a\x01\x64\x3b\xaa\x58\xd1\x35\x8d\xa0\x7d\xd0\x30\xb2\xd3\x86\x39\xb8\x17\xd0\xf3\x15\x48\x6c\xab\x05\xb9\xe5\xec\x17\x98\x82\x39\x40\x29\x4b\xae\xbe\x63\xe0\x14\xac\xab\x4a\x41\x00\x73\x5c\x77\xb8\xaa\x56\xa8\x90\xa2\x80\x50\x19\x41\x6f\x03\x2d\xae\x21\x9c\x75\x4d\x41\xb2\xab\x20\x52\x5c\xff\x40\x6a\x9f\x8d\xf8\x33\x6e\xc4\x06\x6b\xcb\xc4\x12\xf8\x0f\xc2\x72\x72\x96\x74\x2d\x2e\xaf\x48\xcb\x53\x87\x51\x88\xdf\xd1\x71\x2c\x49\x41\xe7\xb8\x42\x75\x37\xbf\x24\x8d\x51\x02\xf7\xe1\xfc\x1d\x20\x5a\x97\x40\x5f\x42\x35\x46\x0b\xc3\x1f\xad\x2e\xf0\xfa\xdd\x8b\x43\x74\x22\xb7\xac\x5a\x21\x2a\xf8\x45\x8b\x3a\x4e\xca\xfc\x91\x95\x98\x7d\x2b\x56\x15\xb3\x40\x7f\xe9\x76\x48\xb1\x7e\xbd\x25\x72\xd5\xb0\x2f\x9e\x2a\x8d\x04\x25\x48\x9d\xce\x40\x11\x38\xeb\x38\x69\x9c\x1d\x56\x6c\x05\x08\x8e\x21\xda\x66\xb7\x47\x00\x3f\x35\x0f\xcb\xdb\xeb\x24\xb5\x4b\x6f\x70\x3b\xe3\x40\xf0\xbc\x65\x40\xc9\x5a\x09\xd6\x24\x60\xef\xa2\x8a\x48\x11\x12\xc8\xb6\xb9\x68\x59\x83\xaf\x88\x00\x20\x6e\x40\xf3\x47\xe6\xf1\x37\x60\x63\x92\x4f\xdb\xdf\xbd\x87\xd5\x3d\x01\x76\x84\x51\xd0\x9d\x1b\x26\xf3\xb4\xab\xdc\xf6\x68\xb8\x27\x6c\xbe\x60\x9c\xb6\x04\x89\x63\x88\x4e\xc9\x94\xd6\x60\x14\xd0\x5a\xef\x57\x9e\xf2\xab\x6f\x6f\x4c\x6b\xee\xda\xeb\xe4\x46\x51\x8e\xf8\x82\x14\x82\xbf\x39\xf6\x1b\x5a\x83\xfa\x6d\xe6\xaf\xd1\xeb\x70\x7d\xad\x8c\xbb\x64\xd4\xd5\xf4\x97\x4e\x5c\x47\xfa\x14\xd5\xda\x42\xa6\x9f\xba\x20\x2d\x5a\xce\x48\x6d\xbe\x15\x13\x28\xa4\x00\x6e\x1e\xd4\x18\xa3\xa5\x96\x56\xe2\xa1\xe0\x08\xb2\x29\xc0\x38\xf4\xbe\x3d\x40\x47\xa8\x90\xb7\x80\x36\x09\xda\x4b\xe0\x08\xee\x12\xb8\x04\xbc\x6f\x1e\xa1\x23\x44\xf4\x15\xe0\x7d\xf3\x18\x1d\xa1\x6b\xe7\x02\xf0\xbe\x7c\x82\x8e\x14\x45\x7b\x93\x87\xd3\x67\xb5\xf0\x3b\xee\x97\x13\x4e\x34\xd9\x87\xba\x92\x59\xed\xc0\xe3\xaf\xc8\xaa\xff\x51\x75\x2a\xdc\xe7\x7c\x04\xbe\x3e\x7d\x7d\x88\xde\x34\x8c\x4d\x05\x0e\xdf\x30\xce\x09\xe7\x82\x26\x26\x6f\xd8\x9b\x2d\xbd\x7b\xfa\x70\x2d\x1a\x7a\x8d\x5b\x22\x98\x5c\x62\x23\x80\xcf\xbb\xdc\x9d\xd5\x95\xe0\xce\x54\xca\x34\xfa\xa2\xa9\x56\x70\xd5\x6b\x63\xa3\x60\x5f\x14\x64\x1f\xb0\x61\xf9\x12\x88\x85\x4f\xb9\x62\xa1\xf3\x8e\xb7\x08\x57\x4b\xbc\xe2\xe2\x42\xc0\x97\x4c\x19\xff\xb4\xb8\xd1\xc8\x4b\x75\x2e\xee\x34\x29\x4f\x18\xd3\x9c\xb8\x20\x8b\x82\x2c\xda\xd4\x38\x7a\xbf\x5a\xe7\x92\x3b\x44\x7f\x35\x26\xae\xdd\x7f\xe0\xae\x6a\x53\xeb\xb6\x2b\xb6\x8b\x15\x4b\x74\xad\xc7\xca\x74\x2d\x58\x96\x14\xff\x3e\xb6\xda\xa6\xe7\x02\xfc\x3b\xbb\x26\x5c\x1b\xb8\xdd\x99\x28\x33\x21\x92\x86\x65\x44\x6a\x10\xe7\x70\xed\x5c\x94\xf1\x22\x1c\x6b\xcf\x6d\xd6\xa1\x2d\xc3\xd2\x78\x07\xa6\xf7\x86\x5c\x53\xd6\xf1\x60\xf4\xcc\x0a\xb4\xaa\xd3\xbf\x86\xdd\xcc\x22\x8c\xc6\x38\xb8\x88\xe1\x05\x08\xee\x29\x6e\x24\x60\xa5\x2d\xb3\xf6\x77\xc1\x8a\xc4\x05\x27\xad\xf6\x4b\x5c\xb7\xbd\xb3\x19\xc6\xe8\x85\xb9\x8f\xe4\x15\x6a\x24\x1d\xc0\x0c\xe5\x0a\x17\x99\x51\xde\x2a\xeb\xfb\xd0\x28\x15\xe5\x20\x53\x59\x72\x56\x14\xa6\x57\xef\xd9\xdf\x91\xc3\x52\xed\x1b\x42\x96\x97\x5a\xdf\xa1\xab\x39\x3a\x02\xbd\x4b\x25\xb4\x2e\xe4\xd9\x12\x8b\x3b\x3b\x05\xc9\x43\xda\xca\x95\x33\xa0\x26\xcb\xcc\xe9\xb2\x6c\xc9\xd1\x38\x4f\xc4\xed\x4f\x1a\xad\x78\xc6\x03\xa6\x05\x47\x7f\x7f\x1b\x6d\xb9\x10\x33\x51\x9b\x9d\x38\x6a\xe9\xc9\xb4\x19\xe3\x87\x2f\x75\xe8\x29\x2d\xc1\xce\x24\xe4\xd5\x92\xb4\xa4\x99\xd3\xda\x11\x42\xe5\x54\x35\xad\x4d\x5b\x49\x4f\xa1\xb3\x23\x3d\x0d\xb8\xba\x71\xe5\xdb\xb1\xec\xd8\xe2\xeb\x89\xf9\x0b\x3e\x31\x97\xe2\xb6\xf7\xb9\x6b\xf5\xf5\xbe\xc8\x5e\x33\xb9\xc7\x9c\x6b\xc3\x7f\x24\xbe\x56\xfc\xef\x13\xdc\xc7\xf5\x2c\x28\x4a\xd6\x4f\x6f\xa1\x5f\xbd\xb7\x17\x0d\x09\x3e\x91\xcb\xdd\xad\x48\x7d\xd5\xce\xd0\xd1\x11\xfa\xe6\xf1\x21\xba\x77\x2e\x35\x5e\xa4\x3e\x86\x8b\xe1\x92\xa0\x47\x0f\xd1\xe5\xaa\x25\x1c\x4d\xbe\x79\x8c\x66\xe4\xa3\x50\x15\x84\x2c\x4c\x1a\xbe\x75\x2f\x02\x1b\x3b\x17\x76\x29\xff\x87\xd0\x2d\xc1\xa9\x78\x3a\xa1\xe5\xd6\x21\xba\xf7\x4e\x4b\x29\x67\xa7\x72\x20\xf0\x39\xc1\x05\x27\x25\x79\x0e\xbc\xa5\x62\x4b\xd2\x14\x98\x93\x60\xe0\x51\xe3\x82\xce\xf6\x9e\x96\x3f\x89\x15\xd6\xb4\x52\xc3\x9e\x9d\xa2\x02\xd7\xe2\x9a\xc4\x55\x43\x70\xb9\x42\xe4\xa3\x38\xf6\xca\x90\x20\x75\xfb\x78\x00\x41\x06\xe8\xd9\x91\x24\x84\xc9\xc1\x16\xba\x7f\x5f\x7e\xf6\x54\x7f\xf6\x44\x2f\x0c\x3e\xd6\xe8\x3b\xd8\x46\x0f\xb7\xd1\xa3\x6d\xf4\x78\x5b\xdc\x97\x4f\x62\xc8\x11\x1d\xe9\x8d\x79\x86\xf6\xc5\x28\xd9\xef\x9f\x1e\xa1\x27\x07\xfb\x1a\x9b\xe1\x53\x66\x06\x95\xf8\xa3\x9d\xe1\x5a\x3c\xdd\x8b\x44\x8f\x54\x1d\xf2\x38\x78\xf8\x6d\x34\xca\x2b\xb2\x0a\x29\x85\x7c\xc4\x85\x10\x47\xbe\x79\xac\x29\xe6\xe0\xe1\xb7\xc3\x24\x63\xa9\xdf\x1d\xf2\x2f\x0f\xd5\x90\xf6\xeb\xdc\x78\x7f\xf9\xc6\x8c\xf7\x97\x87\xc3\xe3\xdd\x4d\xd0\xca\x15\x69\x23\x0b\xfb\x49\x85\xe9\x9c\x94\x13\xac\x4f\x77\x84\xe2\xad\x2c\xee\x15\x85\x01\x55\x6b\x32\xbb\x14\x8a\x69\x21\x81\xde\x60\x56\xaf\xc8\x4a\xcf\xe8\x83\x60\x14\xde\x56\xc4\x33\x79\x25\xbd\xe5\x9b\x99\xc5\x85\xd9\x03\x6f\x0a\x76\x6b\xb6\xe2\xcd\x5a\x6f\x70\xe7\x6a\x14\x3f\xe2\x4a\x05\xbe\xff\x0a\xf4\x7f\xa9\x2a\xbe\x22\xab\x49\x34\xe3\x85\xfe\xca\x9d\xce\x6e\x49\x0a\x56\x92\xff\x21\x1f\x27\x5b\xdb\x31\xc1\xd1\xab\x1a\xb7\x5d\x43\x8e\xab\x2b\xd6\xd0\x76\x36\x3f\x44\x17\xd1\x67\xbb\xcf\xbf\xbf\xf8\xf9\xf9\xf7\x17\x07\x0f\x7f\x7e\xf4\xed\x81\x07\x64\x2b\x9e\x6c\x4d\xda\x75\xa6\xea\x9f\xb4\x4d\xcc\xf6\xc5\xc9\xe9\xc5\xf1\xcf\x6f\x1e\x3e\xf9\xa6\x6f\xaa\x46\x47\x01\xd3\xdb\x4a\x09\x9f\xec\x9a\x96\xa4\x4c\xea\x2d\x63\x34\x16\x98\x25\xa9\xa6\xbb\xb4\x44\x47\x88\x96\xf1\x17\xc0\x11\x8f\xac\x05\xc7\xfb\x32\x3e\x3d\x47\xf1\x89\xea\x7b\x4d\x22\xde\xfb\x3b\x7e\xdc\xa1\xcc\x23\x87\x52\x12\x8b\x70\x05\x07\x74\x84\xf6\xe3\x47\x1c\xf1\xf0\xe9\x0e\xfa\xf5\x53\xcf\x13\x46\x22\x03\x48\xde\x83\x89\xa3\xd6\x81\x53\x4f\x9f\xb1\x05\x18\x32\xf6\xb8\xb4\x64\xec\x45\x38\x21\x9a\x45\x6d\xc7\xf8\xda\xd6\xc7\xec\x10\xb5\x4d\x47\xb6\x36\x34\xf2\x2b\xb2\x4a\x0d\xfa\x8a\xac\x36\x3a\xa0\xdd\x1f\x3b\x9a\xfd\x2c\x1a\x2a\xc6\x7f\x20\x31\x89\x6d\x0a\x3f\xc2\xfc\x6e\xac\x0d\x64\x00\x29\x9d\xf1\xe9\x8e\x8d\xd0\xd8\x95\xc6\x95\x17\xf3\x45\xbb\x82\x77\x27\x5b\x6b\x81\x34\x6a\xd8\x67\x80\xba\xe1\xa9\x6a\xed\x69\xc3\x40\x43\x05\x41\x9c\x90\xdd\xe0\x8c\x90\x39\xcd\x86\x65\x28\x96\xa3\xe3\x32\x0c\xa3\x49\xc4\x66\xa4\x68\x62\xf7\x12\x57\xb8\x2e\x1c\x4a\x75\xee\xa0\x92\xf0\xb6\x61\xab\x49\x28\x4b\x0b\x56\x3f\xd5\x0b\x7c\x4b\xa6\xe8\x28\x45\xdb\xca\x08\xbb\x7b\xc9\x9a\x86\x2d\x9f\xde\x0f\x50\xf2\x6c\x22\x14\x7f\x87\xdc\x0d\x44\xf8\x7a\xeb\xee\xd0\xd9\xe9\x71\x1e\xbc\x37\x68\xf8\x29\x3d\xb7\x71\xef\xde\x45\x3b\x31\xfd\x6b\x8c\x79\xd3\x73\xb1\xb1\x5b\x12\x30\xa0\xaa\xf5\x3d\xdd\x89\x40\x6c\xdd\xe8\x5d\xb3\x67\x37\x7b\xdd\x1c\xb5\xdb\xbc\x7e\xd3\xc1\xf5\xe1\x89\x2f\xe2\xb7\xa4\xed\x9a\x1a\x5c\x4c\xea\x96\x75\x03\x40\xa7\x5d\x5d\xfa\xb7\x9e\x50\xc0\xcd\x13\x42\x5d\x09\xee\xa2\xdd\x0f\x64\xc5\x13\x9a\x9e\x32\x4f\x28\xeb\xf2\x91\x7c\x4d\x92\x66\x60\x9f\x98\x18\x60\x5b\x11\x94\xde\xf5\x1a\xf0\xd1\x21\xd3\x16\xa1\x89\x76\x80\xe7\x1f\xd5\xe7\xf1\x96\x63\x2b\x5a\x1d\x1c\xd8\xa7\xe9\xdb\x8e\xaa\x89\x64\x78\x5c\xf3\xe4\x86\x46\xd6\x04\x36\x3c\xb2\x79\x72\xa3\x6b\x16\x4c\x65\xe4\xa2\xc5\xa3\xe9\xb1\x03\xf1\x5f\xb1\xdf\x90\xc2\x53\x9c\x7a\x6f\x6f\x0f\xfd\xd0\xd2\x8a\xb6\x2b\xf4\x52\xc5\xb2\x4a\x9b\x56\x31\x23\xc5\x07\xae\x3c\x2f\x0f\x38\x62\xd7\xa4\x11\x87\xcd\x9a\x91\xd5\x5c\xa4\x1d\x96\xb6\x1c\xc9\x53\x41\x4a\x65\x05\x30\x83\x84\xce\xb5\x69\x57\x03\xd4\x97\x5d\x55\x19\x02\x7e\x2e\xa1\x4d\xb6\xb4\xa5\x2b\x38\x8b\x74\x8a\x26\x7d\x17\x11\xfa\x3a\xcf\x72\xb7\xd0\xd3\x81\xcb\x33\x3e\xf7\x8d\xe4\x2f\xe2\x4e\xf5\x50\x8d\x48\xc5\x7b\x9e\xbf\xe9\x14\xfd\x1b\x23\x9e\x61\xb0\xdf\x99\xad\x94\x3b\x80\x30\x6a\xc8\x94\x34\x44\xc0\x6d\x99\xf8\x8f\xd5\x24\x66\x93\xd2\x47\x6f\x5c\x6b\xd6\x7e\xd3\xbb\x73\x69\xde\xf7\x73\x32\x2e\xed\x10\xdd\x0f\x1e\x1c\x65\x5d\x0b\x08\xf7\xbd\x03\xfa\x27\x74\x57\x9a\xa3\xa2\x97\xc4\xcf\xbd\x0b\xe9\x34\x24\x4e\xf4\x08\x3a\x3b\x45\x25\x23\xd2\x35\x3d\x68\xac\xf2\xb5\x11\xb5\xa9\x93\xfb\xbd\x33\xc2\x3c\x5a\xe6\x77\x8e\x18\x12\xec\xd1\x71\x59\x22\xec\x4c\x4f\x39\x27\x9c\xb8\xee\x5e\xf4\x73\xd2\xda\x00\xf4\x64\xb0\x94\xf9\xf0\x10\xfd\x35\x98\x56\x28\x90\xf5\x2e\xeb\xe9\xce\x5d\x0b\xeb\x8e\x8f\x20\xc7\x51\x7f\xd1\x36\x5d\x01\xce\x2d\x29\xd3\x8a\xdf\xae\x48\x8b\x1a\x82\xcb\x1d\xb0\x49\xca\x04\x86\x4b\xd6\xb5\x8a\xda\x8c\x03\x97\xcb\x77\x4d\xc6\xc4\xaf\x7d\xce\xd6\xf0\x2b\xd7\x95\x19\x7e\x37\xca\x89\x19\x3c\x99\xf1\x5f\x1a\x6b\xca\xc0\x23\xbe\xa7\x4e\x59\xeb\xd3\x0f\x45\x71\xcf\x99\xe7\x1c\x67\xd3\x88\xe7\x06\xc1\x59\x3f\x4e\xca\x97\x10\x79\x6f\xd0\xd9\xe9\x8d\x1c\x38\xef\x25\x21\xfe\x94\x7f\x28\x76\xb4\xe4\x26\x9c\x75\x83\x44\x74\x32\xc2\x61\xe1\x87\x1a\xa6\x94\x93\xda\xc6\x11\x24\xc5\x7f\xc9\xfb\x6c\xb4\x81\x02\x99\xd2\xa1\xc1\x9a\x63\xe1\xed\xf6\x18\x76\x9c\xa7\xd6\xb0\xf1\xd8\x97\x6e\x62\xee\x49\xbd\x3d\x6c\xf9\x71\x5e\xeb\x33\x02\x79\x6a\xbf\xf7\xd6\xa0\x42\x94\xb4\x3f\x24\x40\x44\x97\xeb\xb0\xa5\x20\x01\x25\x12\xac\x06\x2d\x03\x59\x20\xc3\x33\x31\x86\x80\x04\x8c\x50\xb8\xec\xb5\x9a\x79\xef\x07\x1a\xcc\x48\x63\x5a\x0a\x80\xf9\x7e\x2d\xa3\x43\x62\x29\xbd\xb2\x4b\xd2\x4a\xe8\x9e\x13\xf7\xab\xdc\x1d\x7a\x4a\x1a\x7a\x4d\x4a\x19\xf5\xeb\x07\x4d\x88\x3b\x12\xb4\x74\x43\x21\x3f\xd2\x76\x66\x33\xc6\xb2\x02\xe6\x8d\xce\xbf\x3a\xea\xbe\x38\x7e\x8d\x1b\x2b\x26\x5f\x74\x73\xad\x35\xc6\xd3\x62\x5d\xeb\xce\x6c\x2d\x85\x75\x84\xae\xea\xa0\x75\x6d\x8d\x35\x58\x80\xf7\xe7\xd7\x8e\x86\x62\x40\xa4\xa5\xf9\x61\xe1\xca\x85\x9c\xda\xef\xfc\xa6\x06\xd8\xfb\xec\xfb\xaa\x26\xec\xf2\xce\xac\x16\x33\xb8\x12\xc9\x03\x7f\x17\xda\x94\xec\xca\x23\x4c\xcb\x95\xff\x48\x34\xe8\x4d\xd4\xfc\xfe\xf5\x80\x31\x62\x98\xe4\x0c\xac\xc1\x5d\x92\xa6\xbe\xb3\x5a\xcd\x35\xb7\x3f\xb1\xf2\xa7\x2e\xbf\xaf\xd3\x17\xda\xd7\xe9\x1b\x2a\xf1\x71\xf8\xb0\xbe\x28\xf2\xf2\xf8\x5b\x9b\x3c\x6c\x1c\x4f\x52\x02\xe7\x9c\x15\x14\x8b\xf1\x97\xb4\x9d\xb9\x4a\x88\x79\x59\xa5\x1f\xab\xb0\x4a\xca\x21\xa2\x95\x94\x5a\x63\x72\xe2\x2c\x99\x93\x5c\x4c\x39\xba\x24\x4e\xc0\x1c\x84\xbe\x18\x21\xdf\x80\xcb\xab\x82\x5e\xc0\x14\xe5\x0e\xcd\xf9\x91\x6b\xfd\x51\x34\x37\x8a\x35\xcb\x8e\xea\xc4\xb1\xa7\x03\xd3\xe3\x51\x47\x86\xe9\x65\x87\x4c\x46\x0e\xe1\xba\x14\x08\xae\x58\xb1\xee\x74\xd6\x8f\x55\x8b\x66\x04\x2e\x67\x9d\x7d\x2d\x93\xd0\x71\x6d\x02\xd5\x06\xf5\x8c\x35\x43\xe4\xec\xd8\x5e\x8c\xdc\x88\x21\xc7\x06\xc2\x1d\x67\xe2\xb7\xc8\x88\x9d\x70\x87\xbe\x49\xc0\x16\xe8\x20\x49\x0d\x3c\xe1\x6f\xdb\x98\xa7\xe8\xdf\xc6\xf9\xf6\x59\xfc\x64\x9f\xc9\xa3\x97\x71\xbe\x59\x9e\x1c\xba\xc2\x50\xb4\xf1\x9e\x91\x36\x20\x80\xa1\x07\x13\x37\x75\xe2\x29\xb3\x4d\x43\x0f\x46\x77\x4a\x2f\x40\xef\xee\x59\xc7\x90\x6c\x4e\xd8\x46\xac\xc9\x36\xa9\x44\x5c\xd6\x03\x52\xe8\xff\xd9\x94\xd7\xb2\x29\xa3\xb4\x85\x0f\x76\x13\xd7\xe8\x92\xa8\x99\xa9\x58\xf2\x19\x5b\x9a\x54\x2f\xcf\xd6\xe7\xcb\x17\x8e\xc1\xcf\x48\x02\x3d\x56\xbf\x8c\x65\xc8\x37\xe2\xdc\xd2\xc0\x36\xca\x5a\x37\xd6\x0a\x17\x99\xd7\xfa\xc0\x8d\x30\xd6\x8d\xbc\x51\xc6\xe4\x87\x6f\xd2\xd4\x15\x02\x2a\x03\xa9\x6e\x1d\x91\x3f\x84\x67\x2d\x67\xce\x23\x09\x6b\x16\x4c\x45\x8d\x94\x7a\x20\x36\x20\x05\xb3\x5c\xd7\x8a\x64\x6c\x59\x69\x38\xe3\x0c\x5a\xae\x29\x2a\x0d\xe7\x26\xf6\xa8\x3e\x48\x6b\x19\xa5\xd2\x80\x86\x2d\x53\x3d\x97\x62\x0e\x64\x96\x13\xfd\x49\xf4\x30\x4f\xed\xa1\x75\x4b\x9a\x29\x56\x69\x6a\x6e\x26\xdf\xb0\xbf\xc3\xd3\xeb\x14\x3c\x23\xb2\xfa\xd9\x8f\x70\x21\xb2\x4a\x27\x22\xda\x9b\x3f\xca\x94\x93\x53\x38\x4c\x4d\xc7\xbf\xcf\x4d\xde\x9c\xd1\xbb\x7a\x9d\x00\xa9\xc4\x38\x60\x51\xf6\x8b\xa4\xf8\x1b\x06\x3e\x86\x89\x1e\xa4\xaa\x38\x5a\xce\x48\x3b\x23\x8d\x9f\xa1\x67\x72\xb8\x48\x45\x21\xa2\x1f\x66\x7a\x82\xeb\x92\x96\xb8\x25\x6a\x81\x6d\x90\x55\xb7\x9c\xd1\x62\x86\xe6\x04\x6b\xf9\x9f\x82\x0a\x8b\x21\x5b\x04\x60\x2f\x67\xcc\x01\xae\xd2\x5a\xbd\x7c\x77\xa9\x42\x2b\x25\x22\x10\x8b\xc4\x18\x42\x6f\x11\x8a\x04\xa9\x59\x77\x35\xeb\x55\x61\xe1\x23\x21\xf1\x78\xc6\x7f\x25\xe6\x08\x04\x49\x11\x87\xf2\x17\x6a\x91\x2f\x59\x93\x58\xe2\xe4\x67\x87\xf1\x1e\xa2\xfb\x09\x9e\x6e\xb9\xf9\xd6\x21\x7a\xce\x58\x95\xb8\x17\xcc\x2a\xeb\xf6\x7b\xca\xdb\xf4\xe5\x70\x45\xda\x37\xf6\x39\x01\x56\x3c\x3b\x09\x62\xaf\xe8\x34\x84\xf6\xde\x73\x88\x40\x6a\x41\xdb\x74\x3d\xa2\xcf\x14\x57\x7c\x84\x41\x67\xc0\xc3\x20\xc6\xd9\xdf\xdd\x47\xf7\xef\x47\xe3\x24\x33\x2e\xfe\x06\xfa\x41\xf3\x6e\x86\x6b\x55\x65\xe1\x25\x6b\xde\xb2\x8a\x4c\xea\x6e\x2e\x59\xd1\xe1\x08\x97\x84\x8e\xad\x0b\xfc\x3b\x49\xdb\x20\xa4\xc3\xca\xea\x15\x9a\xc2\x1f\x70\xc7\x39\x89\x54\x1c\xbd\xca\x86\x25\x4b\xc4\x6a\x12\xf1\x4a\x19\x16\x1a\xc5\xe2\x0b\xd2\x88\x0b\xdb\x8c\x72\xc5\x27\xf0\xa3\x78\xcb\x8b\x5a\x7c\x08\xbc\xf8\xde\x89\x8c\x56\x97\xc3\xa7\x66\x4d\xa7\xc9\x42\x6b\x94\xd7\x0f\xc0\x1d\xbf\x68\xd8\x95\x78\x30\x95\x55\xb1\xcc\x25\x76\x84\x5f\x6c\x3c\xa3\xe3\x16\xb9\x0e\xcb\x0d\x27\x39\x7c\x8a\x02\xe0\x9e\xcb\x58\x0f\x87\x5a\x54\x61\x0d\x93\x17\xc9\x83\x12\x8a\x1b\x34\x29\xdf\x19\xa0\x91\x9b\x87\x62\xf7\xb8\x35\x9d\xc8\x65\xe0\x0b\xc1\x34\xfa\x5e\x85\x08\x77\xbd\x27\x9f\x33\x90\x7c\x99\x8b\x20\xf7\xc6\x54\x81\xb9\x03\x45\xa9\x4c\x88\xae\x7b\x78\x1d\xd2\xca\xf1\x91\xe3\xb2\x04\x0e\xa1\x4d\x5c\x32\xc0\x84\xaf\x78\x4b\xe6\x36\xf9\xd7\x29\xba\x91\x31\xa7\x42\xb8\x89\x78\xf6\x9c\x48\xb3\x88\x60\x24\xad\x62\x7f\xa9\x24\xba\xcf\xc0\x52\xe4\x5c\x6f\xc6\x3e\xfe\xc8\x67\x06\x28\x20\x57\x9e\xcb\xbb\x25\x6d\xf5\x23\x89\x7a\x1b\x79\x1d\xae\x4e\xec\xbb\xdc\x4e\x6f\xef\xe5\x6f\x45\xd2\xb8\xd4\x73\x89\x85\xf1\x8b\xf2\xfb\x78\xd4\xd7\x75\xb5\x12\x7c\x5e\x0c\x3d\x47\x58\xc8\x51\x85\x96\x4e\x94\xa4\x36\x95\x89\xcc\x25\x83\xfa\x41\x92\xd7\x85\x60\x64\xd9\x4c\x57\x9e\x72\xf2\xa3\x83\xac\xfa\x50\xca\x90\x28\x1e\x92\x8f\xec\x5a\x43\x3a\xcd\x50\x25\x2e\xcb\x77\xcc\x83\x04\x52\x4e\x66\x97\xc4\xd5\xfe\x8e\x1d\x97\x65\xcf\x85\x9f\xa0\xca\xd4\x69\x10\x57\xcc\x12\x52\xd7\xdf\x90\xba\x74\xcb\x93\x19\x96\xe0\x69\xf9\x35\xad\xb2\xcc\xe0\x42\x15\xa9\xfd\xe0\x95\xb9\x51\xfe\x9c\x64\x46\x7c\x9a\x07\xf8\x15\xc2\x26\x41\x45\xae\x3f\xf4\xc1\xdf\xe0\xb1\x95\x05\x6c\xe6\x98\xd6\x82\x6d\x4b\x67\xc2\x91\x3a\xa0\xd1\xc9\x38\x83\xc9\x0b\x02\x16\xff\xd7\x2b\x6f\x17\x80\xde\x95\x7b\xa5\x27\x5f\xdc\xf3\xf3\x6c\x87\x23\x14\x82\x11\x54\xa8\x9d\x31\x4e\xd0\x94\x36\x20\xe0\x4c\x59\x63\x31\x26\x78\x81\x71\xa6\xc8\xf1\xc3\xd3\x13\xae\xe7\xe9\xa8\xa0\x8e\xc4\xfe\x8e\x79\x6b\x1c\xec\x9d\x70\x52\x09\xfd\x20\xdc\x84\x8c\x55\x35\xb1\xc0\x67\x37\x5c\x5f\x3c\x66\xf8\xc9\xce\xda\xe1\x30\xe3\xf1\x16\xad\x2f\xa2\x37\xc9\xbb\x55\x68\xab\x9a\x98\x2e\x03\x60\x2e\x38\x45\x83\x5d\xe6\xcc\x27\xe7\x93\xbf\x14\xf2\xc1\x50\x51\x50\x7b\x80\xab\xad\x0d\x5c\x88\x21\xc8\xff\xbb\x9b\xfe\x74\x77\x93\xb1\x4f\xf6\xdd\x4d\xfa\xa1\xff\xec\xbb\xe9\x36\xc7\x36\x9f\x06\x83\x37\x76\x5a\xf1\xff\x1d\xd2\x7f\xc7\x43\xaa\x2e\x23\x7d\x91\x58\xc5\x02\xdc\x80\x50\x5c\x5a\xde\x2e\xe6\x20\x78\x05\x95\x06\xf4\x4b\x25\xfc\xd8\x42\xbc\x9f\xfd\xf0\x6a\x09\xeb\x8f\x76\x7c\x8d\xc0\xa8\x71\x82\x28\x47\x57\xd2\x12\x29\xcd\x55\xad\xa9\x6b\xa6\xea\x35\x9a\x30\x96\x10\x90\xeb\xaa\xb5\x9d\x14\x1a\x72\x4d\x1a\xff\xaa\xc7\x9c\x93\xa6\x45\x71\xb5\x85\x21\x8b\xea\xd7\xc3\x6f\xf4\x3b\xd7\xc4\xcf\x33\x2d\x3a\xa3\xaf\xc7\x08\x41\x71\x75\x87\x39\xe1\x1c\x0a\xf6\xde\x3b\x67\xad\xb6\xb5\x5b\x0a\x55\x4b\xbf\xeb\x6f\x61\x8c\xf7\x73\xbf\x23\xc3\x72\xc6\x24\x37\x71\x02\x1d\x15\x77\x91\xff\xaa\x81\x24\x75\xd3\x06\xb1\x65\x9d\x71\x05\xe8\xfd\x60\x68\x4e\x48\xeb\xb2\xa0\x6d\xf0\x20\x80\x9f\xbc\x5e\x49\x73\x03\xbd\xec\x64\xbd\x44\x38\x4e\x89\xc4\xbd\xb1\x3b\xe6\xc4\x84\xdb\x9a\x30\xfb\xe8\xb7\xdf\x36\x68\xfe\xce\xb8\x17\xce\xea\x29\x4b\x33\xb8\xad\xe1\xf8\x67\xb4\xa3\xe8\x21\x67\x39\xef\xa3\x80\xe0\x78\x5f\x92\x4a\x59\x7a\x74\x29\x3e\xea\xaa\x63\x16\x45\x43\xc4\xf1\x37\xb5\x6f\x9a\xf2\x15\x4f\x0b\xa5\x16\xeb\x2e\x4a\x5b\x5a\x04\xa7\x08\x32\xeb\xc7\xe5\x35\x0c\x30\x09\x71\xca\x0b\x36\x57\x81\x33\x4e\x53\x15\x53\x4d\xce\xff\xc2\x39\x17\x65\x78\x0d\x86\xf3\xb3\xe7\xf3\xd7\x3b\x11\xe6\xf7\xf6\xec\x10\xce\x84\x8c\x9a\x19\x8e\xcb\x29\xa4\x23\x9a\x16\x29\x62\xb3\x40\xff\x55\x97\xf5\x8a\xc4\x5a\x5e\x5e\xbd\x18\x94\x68\x7a\x92\xa8\xd3\x22\x0d\xf2\xc5\x9a\xa8\x7c\xbb\xb9\x39\x7b\xe5\x99\x6c\x2c\xcf\x66\xf6\xff\xcf\x80\x78\x5b\x8f\x20\xb1\x03\x7b\x7b\xda\x8b\xa4\x09\x5c\x47\x18\xc1\x49\xab\xc8\xb4\x65\xd7\xa4\xd1\x74\x49\x83\x50\x4d\xe7\xbe\xfb\x8c\xe6\x89\xaf\x91\x5a\x92\x61\x58\x4e\x8d\x85\x51\xd2\xc9\x8d\x04\xb4\x4d\x90\x6b\xa6\x18\x84\x81\x36\xaa\xf1\x49\x04\x7b\x04\xd2\x7a\x65\x58\x10\x33\xe7\x5a\x48\x07\x99\xbf\x4f\x0f\x58\x0a\x2e\xce\x6a\xa2\x8d\x5d\x97\x9d\xa9\x4e\x5f\xb3\x65\xc8\xd5\xee\x7e\x26\xe9\x5e\x0a\xbf\x2f\x1b\x36\xcf\x8b\xf8\x41\x95\x95\x7e\xb9\x1e\x21\x34\x20\x84\x73\x2f\x30\xdc\x96\xbe\xa8\x7d\x01\xc6\x8d\x9d\x0e\x7a\x86\xf9\x41\x0a\x1c\x2d\x49\x55\x01\xae\x55\xfc\x5e\xcf\xab\x50\x1e\xd5\x8c\x49\x9b\x5c\xd9\x5a\x70\x44\xcb\x39\x1e\x57\x55\x14\xf8\xfa\x27\x16\xe1\xe9\x74\x04\x43\x47\xcf\x20\x16\x21\x71\xa3\xae\x75\x9c\x87\x07\x4a\x72\xd7\x3d\x8d\xb4\x8d\xcb\x0f\x1a\xfe\xbf\xe9\xdd\x34\x02\x9f\xbd\x2c\x2c\xb5\xf7\x81\xce\x94\xdd\xf8\xbd\x3f\xde\xad\x17\x44\x34\x7e\xe9\x4b\xed\xf7\xb9\x86\x3e\x33\x93\x0f\x78\xfa\x8f\xe6\xa0\x38\x47\x03\x1a\x16\x0c\xf8\xe3\x34\xed\xf6\xbb\xe4\xd2\x2e\xfa\x8d\x26\x16\xc6\x26\xc1\xa1\x3e\x42\xeb\x98\x06\x55\x6c\xd7\xd3\x84\x53\x25\xef\x65\xd0\x90\xd6\xc5\x79\x33\x60\x67\xd6\x03\xf5\x9b\x9a\x7f\x17\x9c\xf7\xf7\x55\xda\x10\xc6\x07\x0d\xc4\x0e\xc6\x91\x1f\xb8\xaa\x82\x4b\x6d\x18\x6c\xcb\xd0\x2f\x1d\x69\x56\x5e\xdb\x87\x74\xce\x80\x78\xdf\xec\x91\xaa\x83\xa2\xc2\x35\x6d\x66\xe2\x1d\xd4\x1f\x72\x6b\x4c\x0c\xbd\x51\xb7\xe3\xf3\x0d\x52\x41\xb9\xcc\xef\xb5\xea\xa4\x93\xc1\x3c\x75\xa7\x25\xda\x98\x55\xb4\x0c\x2d\x48\x23\x10\x60\x05\x18\x90\x5f\x78\xbc\x1e\x6f\x15\x87\x99\x45\xdd\x62\x55\xe6\x7b\x13\xae\xab\x8b\xc9\xd4\xbd\x35\x33\xfa\xeb\x96\xe6\xc2\xf4\xa3\x64\x7e\xd5\xad\x35\x8e\x59\xca\xc7\x1b\x3b\x49\x3f\x4e\x78\x92\xbc\xf8\xbf\x50\x68\x92\xe9\x32\xbb\xa9\xe8\xa4\x4b\x3f\x3a\xc9\x6b\x94\x45\x4c\x99\x26\xd3\x81\xea\x8a\x84\xa4\x16\x64\x4a\xa1\x5b\x31\x9b\x9e\x7c\x8f\xf1\x99\x1e\x3d\x6c\x6b\xb0\x49\xa1\x33\x8b\x40\x70\x88\x2e\x7e\xb1\xef\xf9\xb8\x28\xc7\x2f\x1e\x93\x58\x2f\xf6\xf2\xe5\xf6\x42\x51\x53\xfc\x3b\x1c\x16\x39\x24\x22\xf5\xad\x36\x7b\xa7\x99\xf3\x33\x20\x47\xac\x77\xa8\xbe\x74\xbc\xcf\x66\x4f\xd3\x1f\x92\xec\xff\x43\x82\x87\xe2\xc2\x89\x23\x62\x6b\x46\xbc\x34\x0a\xf2\xe7\x8e\x1c\xba\xd1\xe2\xc6\x04\x0e\x0d\x03\xbe\x19\xce\x6e\x18\x36\xd4\xb7\xed\xe3\xb9\xe2\xf8\x3a\x9f\x63\xa2\x83\x36\x79\x63\x24\xe5\xdf\xdf\x9d\x63\xeb\xfe\x3c\x37\x61\xd8\x5f\x3a\x08\xe6\x3f\x80\x61\xdf\x9c\xd0\x6f\x14\x4f\xf3\xa7\xa1\xef\xb7\xd6\x88\xa5\xaf\x24\xb7\x32\x0c\xd0\xfc\xb8\xf4\x83\x2f\x1f\x1e\xa2\x0d\x70\x9d\xc9\x06\xfd\xf3\xd2\xb7\x6a\x6a\x65\x45\x60\xdb\x4c\x28\x17\x4b\xe1\xbd\x9f\x8d\x45\xe8\x2f\xd0\x94\x08\x1e\x19\xac\x6b\x1d\xbd\xe1\xc6\x8e\x0c\x5f\x84\x9f\x2d\x74\xe4\x73\x59\xd3\xe9\x74\x18\x27\xbf\xbf\x7f\x3e\x7b\xbf\xdf\xa2\xc4\xb9\x61\x90\xe1\x60\x29\x1e\x99\xf6\x93\xdc\x82\x45\x66\xfd\xf7\x7b\x9b\x0b\x05\x41\xd9\x70\x80\xe1\x63\x10\x01\x4a\x85\x6d\x28\x3f\x43\xf8\xe8\xe7\xdd\x31\xd7\xad\x1f\x8e\xfa\xe9\xcb\xfa\x3c\x36\xa5\x4c\x7c\x76\x3f\x7f\xff\xed\xfa\x85\x4e\xc0\x50\x48\x40\x30\xe0\x90\x43\x66\xdc\xd0\xc3\xd8\xcf\x95\x8e\xfc\x53\x79\x51\xbe\x98\x91\x6d\x4d\xc7\xcc\x0d\x38\xa7\x75\x1e\x8c\xd7\xfa\xfe\xd4\xde\x9a\x2f\xb6\xb7\x6b\x39\x80\x36\xba\xb3\xb7\xf0\x0a\x9d\x41\x97\x65\x62\x23\x4f\x8c\xee\xdb\x10\xfc\xa1\x64\xcb\x5a\xf5\x27\x50\x5f\x8b\x65\xc8\xb6\x96\x51\x03\x03\xd3\x29\xdc\x6f\xd3\xef\x44\xb7\xb4\x3d\x9d\xff\xe1\x2a\x99\xd3\x5a\x17\xe7\x50\xf3\x30\x4e\x18\x55\xb2\xea\x85\x80\x2d\xd7\xcb\x2f\xba\xf9\x1c\x37\xab\x84\x23\x09\x06\x51\x4f\x65\x0b\x3c\x99\x15\x1e\xa2\xf7\xea\xd9\xe7\xfa\xa3\x9f\x02\x5f\x4c\x0a\xe0\x76\x3f\x84\x4c\x89\x41\x0b\x07\x1d\x79\xf3\x8c\x1f\x36\xe0\xd1\x91\x1d\x2a\xbf\x95\xa7\xa4\xc5\xb4\xe2\xe9\x5d\x94\x7b\x54\x23\x5a\x97\xf4\x9a\x96\x1d\xae\x54\x7c\x57\x5d\x42\xd1\x93\x20\x88\xc8\xc1\x78\xb8\xb0\x04\xba\x13\xce\x39\x14\x35\x28\x07\xfa\xef\xdf\x91\xd2\x3f\x4a\xfc\x10\x99\x26\xc4\xf2\x8d\x4f\x6b\x95\x92\x1f\x57\xa4\xca\x99\x58\xc2\x4e\xe7\x57\xda\xb5\xcf\xfd\x9a\xbd\x09\x2f\x0a\x5c\x11\x6f\x13\xd8\x54\x9c\x0e\x5a\x5f\x55\xae\x92\x77\xb9\x12\x9f\x16\xb8\x12\xda\xec\x14\x17\x29\xa3\x92\xf8\x9a\x04\x0c\x86\xa7\xdb\x4d\x28\x48\x2f\x01\x50\x4e\x31\xa7\x53\xd9\xb2\x01\x00\xe9\xb2\xc3\xe1\xea\xfc\xf6\x13\x69\xf9\x75\xc4\x8b\x47\x7a\x98\xaf\xfc\xb9\x65\xe5\x09\xfd\x5b\x1a\x0b\xaf\x95\xe1\x4d\x23\x61\xd4\x7a\x13\x1b\x1c\x7d\x94\x9b\xde\xa8\x6d\x75\xc3\xf5\x1a\x9e\x69\xdf\xe2\xad\xe3\xb8\xaa\xd6\x5f\xc2\x18\x0c\x78\x7f\xc6\x35\xcc\x69\x19\x17\x8e\x56\x90\x72\x3d\xb7\xec\xd0\xfd\x24\x28\x6e\xae\xf1\x93\xc9\x1f\x1c\xd2\xba\xcc\xcb\xa4\xcc\xfa\x97\x8b\x3d\x40\xa0\xf6\xa9\x96\x18\x31\xae\x9d\xfe\x2c\x72\xd2\xe9\x63\xd3\xf8\x2c\xa9\xbf\x33\x4b\x2f\x9d\xf3\xbe\x4b\xd6\xc4\x5c\x08\x9d\x0a\xba\xb1\x14\xac\x6e\x31\xad\xb9\xb2\x28\x43\xc2\x89\x51\x5d\x17\x58\x25\x08\x89\xb7\x99\xb6\x6d\x5c\x75\x15\x6e\x10\xee\x5a\x36\x07\x13\xde\x54\x15\xf8\x14\x0c\x44\x3d\x24\x2b\x59\x2d\x1a\x56\xe8\xfe\x13\xaa\x65\x3a\x57\x1e\x2c\x28\x67\x65\xbb\x93\xff\x53\x88\x51\x70\xa7\xfe\xd3\xd4\xda\x40\xed\xac\x01\x33\x0c\x46\x05\x5e\xe0\x4b\xa8\x26\x6a\x6e\x85\x44\x70\x07\xbc\xff\xda\x2e\xe3\xd7\xd4\x6e\xc0\x43\x20\x1c\xbd\xc1\x2b\xd6\xb5\xb2\x18\x92\xfc\xdd\x60\x3f\xf5\xe2\x45\xc5\xda\xef\xe9\x9c\xb6\x7c\xc2\xcd\xaf\xea\x66\xf8\x56\x6e\xe4\xc1\x37\x9f\x92\xaf\x0a\x51\x50\x76\x30\x88\xca\x33\x2e\xbd\x0e\x25\x89\xb7\x5b\xdc\xe8\x8e\xc1\xc7\xd2\xd4\x38\x89\x9f\x22\x75\x39\xf8\xcc\x02\xaf\xf4\xa9\xf9\x59\x93\x8a\x92\x5c\x0e\x53\xe2\x4c\x0c\xa1\xc0\x55\xd1\x55\xc6\xb7\x00\xf5\xe9\x13\x2f\x46\xef\xcd\xd9\xb5\x8a\xde\x53\xd3\x92\x84\x69\xc8\xe2\xb8\x9c\xd3\xda\x6e\xa8\x72\x69\xca\x33\xa8\xb6\xdd\xe9\x27\x54\x93\xa5\xe2\x73\x2a\xca\x86\x6f\xab\xc4\x43\x44\x6b\xde\x4d\xa7\xb4\xa0\xd2\xdc\xa2\x14\x3e\x10\x15\xad\x18\x18\xa5\x23\x06\x96\xdc\x6d\x90\x45\x16\x78\x65\x18\x6c\xcb\xb4\xb8\xe9\xbd\x8b\x6b\x47\xc2\xf4\x48\x12\x16\x74\x98\xa0\xc7\x98\xcf\xc8\xe2\x5d\x9c\x80\x0c\xaa\x53\x93\xf4\x8c\x1a\xf2\x4b\x47\x1b\x32\x27\x75\x9b\x90\x7e\x3d\x60\x82\xc4\xf8\x03\x21\x56\x91\x8f\x62\xa6\x0d\x51\xf1\x45\xd0\x54\x46\xb5\x81\x4f\xd1\xa6\x4a\xe9\xba\x90\x89\xd3\x76\x3c\x79\x2e\xdc\x4f\x1c\x5a\x97\x42\xd0\x38\x73\x7b\x00\x05\x98\xbc\x93\x87\xf6\x24\xd3\xba\xeb\x1d\x78\xbb\x75\x91\x2e\x4e\x3f\x22\x52\xb7\x0d\x25\x12\x11\x20\x33\xba\xe8\x22\x1e\xb2\xfa\x9a\x78\x25\x14\xb6\x79\x8c\x83\x52\x96\x88\x72\x67\x1e\xab\x5c\xe7\x64\xa9\x40\x28\x2c\xf2\x49\x4d\x96\xfa\xf7\xc3\x10\x40\x3e\xf1\xfd\xe6\x94\xd0\x13\x74\xef\x5e\x3d\x99\x5d\x8e\x36\x39\x77\xff\xf4\xf4\x65\xad\x18\x2e\x9f\xca\xb7\xa2\x5e\xac\x66\x76\x3e\x9a\x06\xfb\x19\x6b\xd8\x1c\x5f\x93\x89\x3f\xc3\x6d\xd4\xb2\x31\x23\x24\x77\xeb\x34\xfd\xb4\xb3\x6b\xe1\xa6\x0d\x54\xe7\x73\x75\xc9\x25\x21\x1f\xaa\x95\xe0\x1c\xac\x6b\x6d\x61\xbe\x6b\x5c\x75\x49\xb9\x60\xd4\x4d\x14\x0b\xce\xe6\x19\x74\x37\x69\x7d\x20\x01\xd8\xc4\x91\xd4\xe8\xf8\x11\x66\xac\x46\x77\xc6\x36\xbf\xf6\xf5\x6b\x19\x33\xf4\x91\x05\x35\x82\xf6\xad\x48\x55\x74\x2d\x5a\x90\xa6\x20\x75\x8b\xaf\xd4\x8d\x20\x59\xb0\x0c\x68\xf1\x12\x62\x23\xb9\xc7\xc1\xf1\x49\xd7\xbe\x31\x70\x24\x82\xbd\x8f\xd6\xf3\x1c\x86\x6f\x2b\xd3\xba\xac\x3e\xe8\x7f\xf3\x14\x1d\xec\xee\x67\x58\xdb\x89\xbf\x3a\xcd\xe3\x2e\x49\xbb\x24\xa4\x46\xfb\x70\x01\x1d\xdc\xed\x63\x62\x92\x0e\xfc\x21\xd3\xe4\x50\xdb\xe0\x50\x5a\x5f\xc9\x9b\xfa\xa4\x97\x2a\xcc\x21\xf1\x91\x17\xa3\x2e\xfc\x64\x4d\x6a\xc9\xcd\xec\x28\x02\xdc\x4b\x3b\x82\x72\x2a\x10\xc6\x4c\x80\x84\x49\x87\xf7\x13\xc6\xb8\x36\x3e\x64\x6a\xdb\x91\x36\x08\xea\x9f\xd3\x76\xe2\xb4\x15\x84\xca\x7b\xf0\xa9\x91\xd7\x46\x91\x0d\x5c\xc1\xcf\x8e\x24\x90\xc9\xc1\x96\x20\x18\xf8\xec\xa9\xfe\xec\x89\xae\x0b\x09\x1f\x6b\x82\x38\xd8\x46\x0f\xb7\xd1\xa3\x6d\xf4\x78\x1b\xb1\x06\x3d\x19\xf4\x28\x17\xd1\xf4\x79\x7f\x4f\x6d\xe0\xdd\xae\x04\xfb\xcd\xe3\x4f\x11\x13\xa7\x25\xbc\x1b\xe3\x86\x07\x05\x5e\x13\xc3\xbf\xd7\xcd\xb3\x35\xe6\xd6\xe1\xfc\xf1\xcc\x12\x23\x04\xf7\x41\xcf\x64\x7b\xa8\x08\x09\x89\x1e\x4d\x54\x5f\x4d\x45\x4d\x82\x58\x08\x2e\x66\x2a\xfa\xd6\xad\xc6\xab\x94\x19\xf9\x1a\x3c\x6e\x48\xd0\xa3\x3f\xa7\xde\xad\xa2\x40\x59\x27\x78\x46\xd0\x15\xbd\x26\xb5\xdc\x6f\x55\x80\x18\xaf\xc4\xa6\xe3\xb2\x94\x1e\xad\xd6\x96\x09\xdd\xf5\x06\x3e\x53\x9a\xdb\xa2\x21\xd7\x20\x0f\x44\x54\x2e\xd8\xe3\xbf\x18\xc4\x4f\xed\x8a\xc7\x4d\xbf\xd3\x02\x77\x9c\xc8\xae\xa7\x42\xaa\x88\xa7\x67\xfd\xcf\xdb\xde\x98\x62\x24\xed\xdc\xee\x5b\x1e\xf9\x58\x10\xa2\xbb\x0d\x19\xe4\xec\xde\x42\x9f\x1a\xd7\x21\xd6\x00\x88\xc5\x4b\x74\x4f\x8c\x84\xd4\x71\x38\xa5\x20\xe4\xe3\x66\x05\xce\x79\x40\x24\xf8\xb7\x9f\x68\xf9\x32\xae\xfb\x6a\xa1\xbf\xd7\x47\xd8\xf4\x9d\x45\xf7\xce\x89\xdc\x2f\x59\xb9\x55\x51\x83\x10\xe3\xa6\x50\x85\xbb\xaa\x48\xd1\x2a\x89\x75\x0c\xec\x87\x6b\xc0\xae\x39\xa9\x79\xc7\x47\xc3\x7e\x34\x1a\x36\xf9\x48\x0a\xa8\x3e\x31\x1a\xf6\xe3\xd1\xb0\xaf\x49\x43\xa7\xb4\xc0\x6b\x81\x7f\x32\x1a\xbc\x34\x2d\xa4\x00\x0f\xa7\x77\x65\xf9\xe2\xc1\x37\x31\x5f\x9c\x56\x4c\x8b\xff\x96\x96\xd7\x13\x6d\xed\x32\x03\x36\x36\x00\xfb\xd3\x9d\xa4\x10\xa5\x7b\xb6\x02\xc3\x3a\x3b\x95\xa5\x4b\x96\xb4\xaa\x90\x0c\x65\x2a\x08\xbd\xb6\x76\xc3\xfe\xde\x51\xa6\xfd\x17\xe5\xa8\xe3\xa4\xd4\x11\x5a\xf0\x14\x30\x8a\x45\x57\x53\x3e\xd3\x7c\x4d\x17\x49\x59\x30\xd6\xa0\x6e\xd1\xd2\x39\x41\x1e\x30\xd6\xc0\x43\x25\x43\x4e\x6d\xe8\x96\xa1\x0a\xb7\x84\x4b\xfe\x81\x38\x9b\xb6\x4b\xa1\xbb\xfe\xd2\xd1\x42\x08\xd3\x32\x10\x27\xe2\xbb\x0b\xdc\xe0\x39\x69\x49\x23\x0b\xb5\x97\xf6\x50\xcf\xf1\x62\x01\xb1\xca\x0a\x05\xde\xab\x20\x93\x5b\xc9\x6b\x5b\x71\x5e\x2a\xf9\x95\x23\x92\x99\x9c\x66\xf2\x71\x41\x8a\x16\xba\xce\x28\x5b\xc0\x0c\xb7\x3e\x4c\xc8\x40\x17\x38\xd6\xf8\xa5\x35\x6f\x09\x36\xe6\x85\x69\x57\x69\x3f\x53\xda\x36\x54\x1b\x13\x01\xae\x40\x8d\x87\x6c\xc2\x9f\x95\xa3\x40\xb0\x44\x69\x2c\xca\xea\xdd\x62\x23\x9d\xc9\xd3\x5a\xbf\xba\x0b\xba\x47\xca\xa4\x2a\x43\xb5\xe2\x48\x2d\x98\x9c\x23\xdf\xea\x42\xe9\xee\x87\x20\xda\xc6\x11\x54\xc8\x8b\xa2\x72\xe4\x52\x98\x84\xc0\x7d\x49\x8a\x86\x60\x6e\x29\x50\xa9\x4a\x7c\xc6\xba\xaa\x4c\x88\xc0\x31\x5f\xe8\xcd\xd7\x14\x22\x50\x95\x2d\x52\xef\x9f\xed\x00\xa5\x39\xa1\x27\xb3\x3b\xc3\x81\x94\xbe\x1c\x13\x8d\xa6\x36\x28\x2d\xbc\x64\x07\x4d\xac\x1b\xec\x67\x55\xc5\x96\x8a\x86\x1b\xd6\xb2\x82\x55\x10\x3c\x43\x5a\xd7\x60\x2d\x2d\x8d\x4e\x93\x77\x0f\x06\xd5\x14\xaf\x33\xfe\xa5\xd1\xbb\x50\x5a\x2e\x6b\x4c\xb5\x05\x71\x3c\x55\xa1\xaf\xdb\xd9\x3a\x63\xd5\x56\x4d\xf1\x19\x3a\xd8\x4f\x05\x2c\x2d\x70\x4d\x8b\x89\xd3\xd4\x1d\x0e\xb9\x7a\x49\x10\x12\x9b\xa2\x46\xcc\x77\xf7\xde\x20\x9d\xac\xed\xc3\x4f\xb9\xef\xeb\x4c\x9f\x5a\x74\xa4\x66\x95\xb2\x42\x18\xfc\x48\x0b\x82\x5f\x27\xef\xec\x14\x94\x0c\xdd\xb7\x5a\x42\x19\xb2\x1b\x69\xb6\x8f\x17\x8b\x06\xea\xaf\x19\xfe\xdf\xd3\x20\xd1\x18\x0d\x81\x1d\x43\x77\x2e\xca\x25\x28\xe0\x66\x4e\x40\xd5\xb0\xcd\xd4\x83\x2a\x8e\x2e\x08\x9b\xac\xe6\xb4\x24\x8d\x09\xd0\xc2\x82\x3c\x17\x8c\x93\x72\xcf\x31\xcd\xa6\x88\xe8\x58\xad\x44\x73\x42\xb2\x54\x9f\x88\x0f\x1c\x86\xf8\x9c\xb1\x2a\x62\x87\xa0\x09\xc9\x3b\xcd\x79\x2b\xdb\xb9\xc2\x1b\x2b\x8e\x79\xfa\xee\x3b\x4d\x77\x27\xc0\xa5\xc4\xca\x04\x0b\xd1\xd8\x96\x28\x53\x15\xef\xe0\x18\xdf\x0b\xb8\x83\xf5\x7a\xf9\xeb\xc8\xb9\xbb\xe8\x34\xa7\x2d\xf3\xf7\xaa\x4b\x46\x4d\xc3\x5e\x1d\xc1\x19\x39\xf6\x48\xe1\xde\x6e\xc1\xea\x02\xb7\x13\x5a\x6e\xe9\x5f\xef\x59\xad\x40\xb7\x1b\x00\xbd\x40\xfb\x0e\x69\x49\xea\x16\x2c\xef\x62\x16\xf7\x92\x51\x7c\xfe\x5f\xde\x9f\x32\x65\x89\xd5\xc4\xcd\x57\xe4\x6e\x13\x49\xa7\x54\x20\x18\xfa\x1d\x74\x86\x90\x68\x8b\x6a\x62\xc8\x08\xf8\x1a\x07\xaf\x82\x0e\xa3\x43\x9c\x21\x1a\xbd\xa6\xe9\xb8\xc0\x9d\x38\x94\x6a\x61\xff\x94\x43\x9f\xd5\xd7\xb8\xa2\x25\x1c\x81\x7f\xa2\x39\x69\x67\x2c\xaa\xd3\x76\xa6\x3c\x7b\x33\xbc\x58\x90\x5a\x22\xcb\x09\x54\x8f\x1c\x07\x26\x3b\xc3\xde\x68\x21\xa7\x54\x90\xc5\x19\x99\xe3\xe6\x83\x9f\xa8\x45\xe7\x73\x52\x52\xdc\x92\x6a\x95\xa1\xa0\x98\xae\x7b\xa8\xc8\x27\xb7\x61\xda\x49\x13\x5e\x18\x1b\x9f\x79\x19\xad\x1d\xf2\xd8\x5f\x76\xd2\xa3\xad\x5c\x14\xae\xfe\x01\xf7\x68\x57\x73\x3c\x25\xb2\x70\xd0\x71\x5d\xbe\x25\xd3\xae\x2e\x1d\x0e\x1e\xf6\x3e\x36\xd0\xd7\xa3\x6c\x67\xac\x8b\x80\x7b\xf8\x08\xcf\xb2\x6d\xae\x1d\xcc\x86\x61\x2b\xb6\x2b\x0b\x00\x02\x5d\xca\xae\x42\xb4\x45\x13\x65\xfa\x17\x6a\x7e\x55\xc9\x54\x5f\xf5\x84\x63\x70\x8b\xda\x03\xa5\x27\xf8\x39\x59\x69\x5a\xbe\x02\xb0\x39\xe9\x2a\x89\x2c\xfd\x93\x65\xbc\xae\xce\xd2\xc7\x84\x5d\x60\xa3\x25\x34\x35\x5f\x1f\x4d\x69\x31\x6d\xcc\x56\xcb\xe3\x2f\x03\xd5\x1a\x20\x48\x1e\x25\x74\x9b\xc2\x8f\x15\x67\xf2\x05\xc5\x60\xe6\x11\x77\x2c\x77\x3c\xf6\x98\xd9\xf5\xfc\x11\xf8\x79\x20\x81\xff\x56\x92\x51\x5a\xd6\x91\x93\x29\xcd\x6c\x86\x0b\x03\x0f\x97\xde\x49\xd5\x07\x0d\xda\x71\x46\xb7\x91\x2e\x27\x46\x9b\xb8\x92\xd5\x25\x2e\x3e\x28\x93\x1b\x6d\x7a\x73\x1d\xf3\xa5\x47\x3e\x7b\xb1\xa1\xe4\xe5\x94\x6a\x7e\xa6\xeb\xbb\x9a\x5b\xa5\x05\xf2\xe3\xdd\xa5\x0c\xab\x10\x97\xb2\x21\xac\x22\x4a\x8a\x95\xca\x80\xc9\x76\x72\x21\x97\x94\xc3\x25\x00\x37\x9d\xea\xe7\xea\xf4\x4d\xd3\xd3\x09\xc1\xcd\xa0\xa0\x98\xd3\xd2\xc8\xb7\x71\x8a\x05\xc0\x34\xe4\x31\xa9\xa5\x01\x51\x5e\xf5\x6a\xce\x42\x06\xad\x38\x8b\x5c\x20\xa3\x2a\x2c\xfd\xf6\x5b\xb2\x73\xd3\x88\x7b\x4d\x19\x87\x95\x23\x3d\xce\x62\x23\xbf\x74\x18\x54\x2d\xe5\x8d\xb5\xea\x53\x82\x74\x14\x40\x27\xaf\x46\x68\x52\x53\xd6\x14\xe9\xb6\xd2\x59\x92\xdb\x4c\xc5\x26\xb1\xb6\xee\x12\x08\xe2\x20\x20\x07\xad\x37\xa8\x98\xa6\x07\x41\x2b\x3a\x17\x82\x5d\x8c\x31\x33\x4d\xc5\x2f\xb8\x46\x6c\x41\x6a\x69\x03\xc6\xf5\x0a\xcd\x59\x13\x43\xb8\xc6\x8d\xa6\xae\xb7\xac\x02\x5b\xfd\x09\x4c\x20\x32\x03\x67\xa5\xf7\x93\xd4\xeb\x09\x31\x3e\x18\xea\x44\x25\x5e\x27\x47\x77\xdb\xd2\x81\xff\xe2\x6e\x4a\xba\x8a\xa0\x3d\x43\xb9\x2c\x9b\x71\xa3\xf8\xd3\x39\x51\x89\x26\x07\x03\xd2\x09\xda\xac\x25\xd3\x9f\x63\x8c\xc7\x21\x8b\x66\x72\xa9\x79\xe3\x66\xdf\x70\x09\x8d\xa2\x25\x0d\x58\x0d\x75\x60\x58\x55\xb9\xe1\xdf\x82\x7b\xe8\xa3\x29\x4f\x63\xba\x1c\xb6\x39\x82\x54\x05\x92\x08\x06\x95\xcc\x1e\x12\xe7\xc0\xfa\x99\x69\x9d\xa9\xaa\x9c\x11\xc1\xd7\x8e\xee\x37\x20\x13\xc9\x3e\xe3\x32\x00\x7b\x52\xbd\x46\x65\x0b\xf5\x65\x07\x98\x3f\xf2\x69\x3b\x63\x8a\x0e\xa2\x4d\xde\xc7\xfa\xe7\x73\xe4\xb1\x0d\x2f\x6e\x64\x66\x5b\x2a\x01\x1a\x6e\x8c\xf4\x7a\x12\x3b\x9d\xa9\x1c\x38\x06\x13\xa3\x92\xdd\x7a\x1a\x16\xeb\x9f\xf5\x74\xbb\x51\x74\xb4\xa6\x49\x61\x73\x33\x88\x2b\x0d\xde\xb0\xd4\x5f\x1d\xb7\x6c\x48\x14\xfc\x0b\xf9\xcf\x49\x45\x70\x83\x94\xc5\x50\xdb\x2f\x2f\x89\x74\xce\xba\x32\x9d\x69\x2e\x52\xa6\xef\xd0\x1e\xfb\xe3\x7e\x4e\x23\x79\xab\x34\x12\x69\x8f\xb9\x5c\x09\x6d\xb4\x55\x0a\x07\x6d\xf4\x6c\x5a\x86\xfe\x97\x34\xcc\xd1\x5b\xdc\x84\x0a\x50\x62\x6d\x65\xd8\x30\x99\x3f\x76\xf7\x36\x37\xd6\x48\x8c\x0e\xa5\x62\x8f\xa5\x0a\x21\x31\x34\x6c\x3b\x82\xb4\xda\xdf\xc9\x06\xe8\x02\x70\xe6\xf0\x5e\xae\x17\x62\x22\x68\x35\xd6\xb2\x80\x5d\x5d\x33\x46\x90\xc0\x4a\x68\x00\x1b\x65\x13\x09\xad\xda\x71\x47\x9e\x46\xd9\x2a\x92\xc6\xae\x05\x69\x28\x2b\xd1\x52\x68\x03\xa9\x8c\x2c\xdf\x2e\xdc\x00\xdb\x63\x4b\x29\xef\x86\xd5\xee\x1a\x52\x01\x0d\xd9\x38\xf4\xd8\x32\x9c\x0a\x86\x5e\x33\x52\x51\x28\xf8\x91\x00\xe4\xeb\x02\xeb\xf9\x70\xdb\xa6\x23\x81\x80\x93\x03\x17\x60\xf7\x85\xb6\x06\x68\x14\xa8\x35\x89\x53\x69\xec\x00\xe2\xe0\x77\xb5\x67\xda\xe7\x91\xb9\x5d\x9f\x61\x7f\x60\x81\x65\xbf\x63\x72\x4f\xbc\x78\xc2\x12\xa0\x07\x3d\x97\xce\xaa\x4d\x9e\x1e\xa1\x0c\x46\x47\xb7\xd7\x8a\x0e\xe4\x1c\x9b\x6e\x27\xc1\x24\x0f\xc3\x59\xa7\xc0\x08\x15\x05\x0e\x01\xab\xc8\x45\xc5\x40\x61\xf8\x7d\x89\x08\xb6\xe9\x66\x54\xa4\x84\x62\xee\x49\xc5\x2a\x51\x83\xf2\x16\xfc\x2f\xf6\x6c\xd2\x29\xa2\x42\x47\xab\xcb\x80\x8a\x24\x4b\x35\xb1\xf7\x6e\x28\x7d\xd4\x33\x34\xd5\xb5\x5c\xc8\xc7\xba\x04\x4a\x64\xdb\xf4\x5d\x8d\xad\xb4\xdd\xe7\xa4\xbf\x58\xf0\x0b\xd2\x7a\xf7\xf6\xf6\x3c\x80\x6f\x74\x34\x40\xb4\xf9\x87\xe8\xd8\x0b\x8a\x10\x54\x1c\x54\x4c\xd3\x6f\x78\x10\x55\x56\x8a\xeb\x4d\x05\xff\x95\xca\x3b\x88\x97\xbf\x0b\x61\x09\x5e\x0c\x83\x07\xb0\x98\x91\xe2\x83\xe9\x7b\x6d\x51\x5d\xb0\xa6\x21\x7c\xc1\x6a\x69\xf2\x80\x70\x33\xed\x24\x43\x67\xa7\x50\xe6\xa0\xab\x21\xb3\x46\x7c\x4c\x1a\xc7\x33\xa0\x0f\xbf\xea\x59\xcf\x75\x49\xc8\x29\x03\xab\x8d\x80\x5c\xc4\x21\x07\x63\x8e\xd0\xb0\x51\xd8\x75\xbe\xf4\xde\xac\x7f\x0f\x1e\x1c\xc9\x1f\x0a\xb6\x58\x29\x2a\x59\x28\x17\xcf\x20\x87\xd8\xdb\x43\x3f\x12\x19\xd1\x45\x03\x45\x31\x9a\x2e\x24\x17\x68\x91\x4b\xb0\xd8\x94\xdd\x2a\x7d\x18\xa4\x0c\x6d\xa9\x56\x7b\x99\x34\x34\x2a\xdf\xe1\xdd\x65\xa2\xd6\x07\x9c\x34\xcd\xee\xcd\x4d\x27\x47\x5a\xc2\xea\x81\x32\xaf\x58\xdb\x92\x1a\x2a\xdb\xd6\x70\x1c\x30\x8c\x2b\x03\x66\xfa\xbd\x4a\x61\x30\x20\x4c\x0f\x4c\xcb\x97\x44\xba\x79\x49\x84\x8e\x68\xe1\xa6\x9a\x28\x35\x72\xaa\x92\x2c\xb9\xac\x43\x76\xb0\xbf\x1f\xbe\x24\x9d\xc9\xbd\x7e\x3d\x25\x02\x48\x4b\xa0\x91\xe5\x94\xe5\xb0\xa5\xf3\x68\x07\xd8\x54\x02\xc4\x95\x66\x2b\x81\x73\x38\xe5\xb8\xd3\xf9\x21\xe2\xf8\xd4\xd1\x5a\xfb\x94\xf5\xcd\x98\xbe\x35\x34\xc8\x0a\x08\x6a\x77\xf9\x56\x00\xf1\xeb\xcb\xae\xb2\x4d\x90\x9e\x4b\x05\x2c\xbc\x8e\x34\xc4\x2b\xaf\x13\x53\x7a\x8e\x23\xfb\x35\xa5\x26\x37\xaa\x2d\x85\x8b\xab\x33\xae\xf7\x42\xb2\x0a\x74\x84\x42\x0e\x6c\xc4\xdd\xef\xbe\x53\xb2\x48\x4a\x41\xc6\xe5\x9c\xd6\x3b\x7e\xfc\x82\x18\x9a\xa3\x89\x89\x44\xdc\x53\xb1\x94\xf2\x57\x15\xfa\xb8\xe7\x06\x13\xc6\x13\xdd\xdb\x33\xc1\xd4\x06\xf8\xf1\xf9\xa9\x3c\x64\xe1\x99\x4e\xba\x50\x7d\x54\xa0\xbb\x36\x62\x1b\xdd\xbf\x8f\x26\x77\x83\x2d\xf9\xed\x37\x74\xd7\xc7\x4c\xce\x5f\xea\xc8\x33\x63\x04\x73\xf7\xe7\xb3\x2a\xab\xa9\x01\x0b\x56\xb7\xb4\xee\x62\x0c\xa5\xcd\x1d\x0b\xd2\xcc\x29\xe7\x94\xd5\x95\x8e\xc4\xd4\xbb\x29\x3d\x56\xc9\x8d\x3a\x7f\xfd\xee\xc5\x21\x3a\x76\xa2\x37\x55\x78\x9e\x23\xc7\x2c\x1a\xca\x1a\xed\x38\x38\xd8\xdf\xdf\x79\xf9\xfd\xeb\x1f\xe3\xfc\xaf\x14\xf8\x89\x8a\xb2\x0e\xc8\x61\x0b\x78\x92\x14\x49\x25\xe7\x52\x0e\x7e\x8c\x5a\x32\x5f\xb0\x06\x37\x2b\x74\xd5\xe0\xc2\x28\x3b\xea\xfb\xd4\x18\x72\x88\x16\xb2\x5c\xaf\x1a\x5c\x97\x53\x0c\x45\x5b\xcb\xb0\x23\xcb\x1c\xaf\xd4\x05\xa1\xe4\x08\xb1\x68\x31\x52\xb4\x94\xdd\xd4\x38\x90\x1b\x07\xa5\x59\x3d\x74\xc1\xda\x08\x15\x43\x7a\x14\xff\xfa\x6d\x9a\xe0\xe3\xf4\x94\xbd\x3d\x84\x76\xd0\xeb\x4a\x9c\x12\x1e\xe1\x6a\x5b\x77\xd6\x71\xd5\x38\x80\x0c\xb6\x82\xf4\x21\x92\x20\xcf\xc9\x52\x82\x94\x41\xee\x56\xa1\x91\x30\x6d\xa1\x39\x73\x6d\xde\xe8\x78\x1e\xf9\xc7\x33\x3c\x9d\xe2\x23\xff\x74\x6e\xfe\x70\xae\x73\x56\x7a\xec\x37\xe1\x05\x9b\xcd\x56\x7f\xe1\x65\x28\xe8\x80\x76\xe8\x96\x44\x9a\x16\xd3\xda\x89\xd7\xe7\x42\xd7\x41\xf8\x1a\xd3\x4a\x30\x0f\x41\xd1\x89\xa8\x30\xce\xfc\xde\x78\x73\x41\x68\xa9\x4c\x1a\x10\x4b\x60\x54\xdd\x8f\x52\xbd\x01\xe3\x78\x30\x95\x02\xd2\x10\x24\x8e\x05\x9b\x57\x2b\x81\x63\x19\x5a\x6b\x44\x05\x10\x11\xa4\x80\x43\x65\x39\x98\xd2\xcf\x7c\x38\x77\xb8\x82\x3e\xb6\x16\x0c\x58\xe8\x8b\xaa\xe3\xd0\x3f\xc0\x46\x29\x3a\x46\x2c\xd9\x20\x00\x3c\x5b\x3a\x69\xdd\x1f\xe1\xb8\xaa\xa2\xa5\x56\x64\x6a\xcd\x70\x53\xd9\x7e\xd3\x01\x80\xc8\x47\x21\x7c\x43\xab\xe2\xf9\xa2\xa2\x05\x6d\xdd\xd5\x09\x1d\x9c\x2a\x8d\xcc\x17\xdd\xcd\x36\x00\xba\x64\xda\xb1\x12\x26\xa1\x66\xa0\x93\x5d\x61\x52\x8f\x1d\x85\xab\x6d\x70\xcd\x69\xbc\x84\x48\xe2\x4f\x68\xbb\x61\x81\x40\xc7\x3b\x66\xbc\x31\xb7\xf7\xc1\x45\x5a\x43\x4f\x9e\x47\x16\xb8\x9e\xb5\x4a\x15\x89\x65\xfe\xef\xc1\x10\x07\x5b\xcc\x55\x41\xbe\xa0\x4f\x58\xd2\x2c\xe8\xa5\x12\xad\x93\x26\xe5\x2b\x47\xe3\xd2\xa5\xf8\x96\x90\x7f\x7e\xfd\x14\xcd\x82\xcc\x17\xed\xca\x7f\xd4\xa2\x26\x18\x09\x1d\xa1\x5f\x0f\x0e\xd1\xaf\x9f\xb6\xd1\x43\xf9\xcf\x23\xf9\xcf\x63\xf9\xcf\x13\xf1\xcf\x60\xd6\x9d\x67\x76\x48\x0c\x3f\x22\x9f\x2a\xb4\xa9\x40\x99\x24\xc1\x06\x6c\x80\x9a\xa1\x03\x2d\x6e\x27\x65\x48\x7f\x0f\x94\x94\x8a\x8e\x82\xcf\xdf\x2b\x1f\x6c\x8f\x13\xd6\x0c\xa7\x9e\x45\xcf\x8e\xdc\x14\x12\xf5\x61\x9a\xd7\xcb\x78\x07\x5c\x55\x9a\x3d\x36\x32\x66\xdf\x54\x15\xb0\xec\x03\x9e\xd2\xfa\xa8\x6f\x89\x0b\xf1\x61\x15\x90\xe4\x22\x73\x5a\x88\xfe\xb9\xc5\x05\x94\x08\x67\x33\x05\xcc\x73\xe8\xfa\x5a\x1d\xc3\x49\x7e\xb2\x2a\xa7\x6a\x0b\x3d\x1b\x8d\xd9\x1c\xba\xcf\x21\xe6\x34\xc6\x37\x48\x17\x65\x09\x3c\xcd\xad\x6a\x13\x32\xe4\x74\x92\x59\x6e\xb4\x13\x5d\xb5\x02\xcd\xd8\x12\xcd\xb5\xb2\x0f\xf6\x16\xb5\xc3\x36\xfc\xc1\x8c\x24\xad\x0d\x3a\x0c\x22\x19\xff\x80\x14\xe3\xac\xbb\x39\x60\xeb\x1d\x93\x76\x76\xcd\xd3\xac\x3f\xff\x56\xf8\xde\x89\xf1\x3d\x1e\xdb\xa0\xa9\x99\xf9\x1d\x97\x42\x01\x5d\x67\xe8\x70\x6d\x59\x77\xee\x59\x5d\x0a\x2d\xcc\x5c\xcf\x54\xfc\x4d\x4d\xa3\x9b\x68\x0f\x71\xd3\xe0\x95\xb1\x9d\xa4\xec\x19\x2e\x8a\x4b\x52\x11\x41\x15\x2a\x66\x51\xae\x40\xf1\x45\xbf\x08\xd6\x20\x46\xf6\xf6\xd0\x5b\x5f\x04\x09\x67\x3c\x66\x52\xcb\x19\x95\x65\x35\x3c\xec\xf4\x84\x80\xe8\xcd\x90\x43\x0a\x02\x37\x1b\xa1\x7c\x34\x30\xa9\xc9\x16\xfa\x7f\x2a\x3f\x62\xc4\x06\xa5\x19\x00\xf2\xe2\xc3\xa0\x22\x88\x1b\x82\xb5\xad\xca\xf8\x2a\x01\x65\x1b\xb5\xcd\x0a\xe1\x2b\x4c\xeb\x3e\x68\xd2\x6e\x2c\xc0\xd4\xac\xdd\x86\xd8\x65\xf1\x41\xde\x1c\xe5\xfe\x48\x8f\xb6\xd9\xc1\xf7\x06\x09\x03\x01\xc9\xfa\x27\xfb\x32\x6a\x9b\x84\xa4\xed\xfe\x44\x5b\x74\x14\x7f\x94\x0a\xb2\xd1\x3f\x69\xca\x4a\xc8\xf2\xc8\xeb\x5b\x2a\xee\x0c\xc9\xb5\x95\xd5\x4a\x49\x83\x23\x2e\x0d\xd8\x2f\x5a\x7b\x8b\x1e\xba\x2e\x6c\xf1\xbb\xe8\xf6\x74\xe9\xe6\xbd\x19\xe0\xa7\xcf\x73\xf3\xe4\xb0\x72\xa1\x05\x33\x15\xb6\x6b\x63\xfe\x8c\x2d\x5d\xea\x11\x4c\x29\x02\x42\x33\x76\xbf\xd9\x76\xe3\xe6\xa0\xdf\xab\xb8\x1c\x84\x64\x9b\x21\xbb\x34\xe7\xed\x65\xc9\x1e\x9f\x8c\x97\xd2\x1b\x84\xee\xdc\x6a\xfa\x56\x72\x6f\x36\xac\xe8\x60\xc4\xed\x96\x03\x6f\xb2\x35\xe4\xed\x37\xf2\xf2\x3b\x67\xaa\x8b\x18\x84\x13\x10\xa2\xe2\x2e\xe1\xf8\x3a\x65\x34\xb9\x0a\xc9\x74\x82\x10\x56\x9e\xb1\x56\xeb\x63\x9b\xc2\xf5\xe8\x3b\x28\xa1\x46\xfb\x7f\xad\xe5\xb7\xdb\x50\x20\xdc\xc8\x20\x38\xf3\xfa\xfa\xf1\x6f\x61\xb1\x19\x2c\x08\x3d\x91\x87\xa5\x54\x41\x96\xaa\x57\x65\xed\x4d\xbe\x6f\x0b\x73\x52\x6a\x4f\x80\x5b\xab\xdc\xd6\x7a\x0f\x22\xe1\x6e\x5c\x41\x2c\x94\xfb\x6d\xcd\x47\x5b\xc6\xf3\x18\x04\x81\xa3\x00\xde\x6e\x5c\x67\x14\xb9\x66\x75\x5b\x47\x31\x78\x2f\x5b\xc9\x34\x54\x1b\xbd\x86\x4a\x75\x88\xb1\x18\xa5\xdb\x3a\x73\x79\x4e\x05\x03\x33\x8d\xc3\x3c\xb8\xd0\x23\x28\xb1\x3e\xa7\x20\x41\x4a\x40\x80\xd0\x3c\x55\x0e\xc8\x4e\xff\x0d\xa6\xa5\x2c\xf8\x7a\xe8\x2d\x7a\x1b\xe4\xd5\x97\x44\xa8\x8a\xfb\xbb\xfb\xdb\xaa\x5a\xad\xfa\x63\x4a\x08\x7f\xde\x35\xb5\xfa\x20\xdd\x53\x5d\x46\x20\x49\x06\x50\xef\x30\x9b\x6c\x6a\x15\x66\x99\x52\x05\x6c\xa7\x7e\x00\xf5\x6a\xb8\x32\xcf\x18\x3b\x84\x93\xc6\x9b\xb4\xba\x1a\x05\x57\x9b\xa2\xe3\x54\xe6\xb4\xf0\x26\x0b\x3e\xe6\x73\xa3\x3d\xa0\x89\x15\xca\x0a\xc5\x3e\xa3\x40\x31\x29\x4e\x09\x51\x0e\x17\xa5\xfe\x0b\x9c\xee\x5e\x91\xf6\xa5\xf9\x22\x70\x57\x0a\x59\x54\x62\x3b\x28\x21\x9b\xa8\xd8\x4a\xa7\xee\x00\x4f\x7d\xba\x8d\x69\xc0\x03\x1b\x94\xe4\x45\x3b\x0e\xa8\x3e\xfe\xb7\xb7\x87\x9e\xdb\xae\x81\x53\x42\xa4\x67\x45\x99\x96\x54\xf5\x6c\x7d\xf1\x08\x4a\x09\xbd\xe1\xca\xc7\xe2\xf6\x7f\x40\x15\xe6\xfd\x7b\xad\x70\x29\xcb\xf8\xf5\x38\xce\x04\x7a\xe1\xa1\x49\x5c\x05\x5b\xc1\x97\x25\xb7\x9f\xee\x18\x78\x26\x2c\x53\xfa\xaa\x5e\x4a\xca\x87\xc7\x4c\xa0\xa6\xc5\x4d\x6c\x1d\xfa\xbb\x38\xad\x7e\x2f\x2b\xf0\x19\x84\xa5\x9d\x9d\x5d\xf3\x77\x22\x17\x6b\x09\x8b\xae\x98\x9c\xd7\xdf\xa1\x08\x65\xbf\x11\x49\xe2\xe0\xe9\xfd\x97\xfa\xa5\x5d\xf9\x56\xf2\x12\x72\xa0\xa6\x65\xad\x94\xd3\x5c\x35\x8c\x9c\xcb\xc9\x34\x64\x4a\x1a\x52\x17\x61\x2c\x1a\x82\x03\x62\xb1\x1d\xf7\x2e\xf4\xc7\xdf\x15\xf0\x82\x8a\xe9\x1e\x8a\xfa\x1b\x61\x5b\x44\xdb\xca\xcd\x50\xed\x31\x75\x0d\x6c\xc8\x2d\x1b\x8c\x97\x2c\xbd\xee\x03\x57\x75\x88\x53\x2f\xa6\x2e\x13\x94\xd2\x2e\x13\x89\x1a\xaa\x1c\x7a\x88\x61\x0f\xfd\x99\x6c\x20\xf1\x44\x98\xf5\x83\x52\x21\xe9\xe1\x9c\xc7\x56\xd5\x45\xb7\x8c\x50\xef\x81\xe7\x8e\x9f\xc0\x6a\xbe\x8e\x6d\xc6\xb4\x91\x44\x37\x4a\x06\x3b\xdf\x08\xe3\xc1\x84\x32\x7a\x75\xaa\xca\xbe\xbc\xa4\xb5\x87\x35\x4d\x77\xa3\xc2\xe8\xbd\xf1\xc7\xf8\x8e\x9c\x5e\xcf\xe3\x26\x91\x20\xaf\xbe\x73\x2b\xae\x3a\x2d\x67\xa0\xa3\xdc\xfd\xe3\x5f\x72\xcf\x8e\x86\x6e\x39\x07\x62\x56\x52\xf3\xe5\x81\x9b\xcb\x46\xfa\x37\x2b\x20\x79\x6c\xcb\x17\x95\x3c\x02\xc9\xb7\x8e\xfd\xec\x72\xd3\x8d\x64\xa6\xdb\xc8\x4b\x50\xb0\x9f\xb7\x0d\x5b\x05\xd7\xe4\x14\x50\xe7\x14\xfe\xd2\xce\x3d\x36\x27\xe0\x13\xf3\xc0\x94\x0a\x86\x8b\xc7\x1e\x6d\x46\x5a\x64\xb9\x57\x8b\xc8\x2b\x62\x1e\xb9\xcc\x33\x81\xc5\x6b\xd6\x26\x4e\x84\xb2\xc9\xe1\x32\xb1\x6f\x59\xb7\xd4\x1b\xeb\x9c\x33\x81\x16\x5b\x77\x23\xd4\xea\x16\x51\xbc\x9b\x1b\x9d\x5f\xaa\x5c\x89\x6c\x23\x71\xe4\x80\x98\x65\x3a\x46\x76\xec\x77\xf6\x99\x40\x92\x12\x1b\xe5\x02\x38\xca\x08\x2f\xaa\x85\x47\x02\x41\x41\x87\x09\x50\x29\xdc\xf6\x12\x3f\xf5\x15\x79\xf4\xac\xed\xb0\x6c\x59\xac\x5e\xf6\xd4\xe8\xaa\x96\x2e\x2a\x2a\x8b\x7e\x5b\xa7\xb4\x87\x0f\x70\x49\x47\xb1\x78\x06\x31\x72\x5e\xb2\x04\xfe\xb8\xe2\xa7\x7b\x2e\x42\x52\xfd\x77\x13\x62\xc8\x21\x7a\x9f\x00\x1d\x35\xd6\x40\x47\xe8\xfd\x4f\xc9\x0e\x7a\xb2\x1e\xac\x5b\x32\x0a\x4e\x8e\xb8\x77\x66\xa4\x72\x3c\xde\x29\x2e\xc2\xa3\x49\xf2\x6e\xae\x06\xff\x51\x43\x90\xea\x46\x7e\x6c\xdb\xd7\x84\xdb\x8a\xa9\xc9\xd1\x72\x07\xcb\x19\x1c\x90\x27\x24\x6f\x9f\xbf\x5c\xa8\x66\x03\xe9\xb9\xa4\x72\xf5\xb2\x4b\x56\x91\x8b\x8a\x74\x42\x50\x3a\xff\xd6\x41\xa7\xb6\xd1\x6b\x94\x46\xa7\xba\x8e\x59\x61\xf6\x3c\xe5\xd8\x66\xdc\xbc\xc0\x7a\xf5\x12\xf0\xbf\x4c\x64\xa1\x1b\xf2\xf1\xc0\x32\xd0\x02\xd7\x02\x1f\xba\xc4\x56\x29\x6b\x9d\x95\x74\x0a\x4a\x80\x5b\x6f\x36\x05\xf1\xcc\xed\xbc\xe2\x40\x95\x26\x40\xce\x7c\xb8\x70\xb2\xf1\x9c\xf4\x01\xb5\x3a\xdd\xa9\x7a\xf5\x1d\x73\x6a\x82\x1d\xa5\x10\xa8\x63\x05\x13\xae\xde\x31\x54\x38\xfc\xcc\x60\xd9\x80\xb4\xb1\xc4\x63\x69\x35\x6b\xe6\xe6\x70\xab\x73\x66\xf2\xe1\x6d\x69\x33\x08\x1a\xd1\xd1\x22\x76\x5f\x22\xf8\x7e\x4b\x1a\xd3\x10\x7a\x28\xb3\xfd\xab\x88\x1f\x0e\x40\xe6\xc7\x62\x2e\xc0\x3f\x58\x05\xfe\xeb\xa3\x78\xdc\xaf\x7a\xb6\x2c\x89\x9a\xe3\xb2\x0c\xa4\x06\x45\x1e\x92\x0b\x59\x26\xaf\xd1\x92\x3c\xaf\x6a\x83\x63\x1e\x97\xf8\xf0\x6b\x34\x89\xa6\xbd\xd3\xb7\xce\x4c\x28\x6d\xc8\xf8\xd3\xc7\x32\xe4\xf9\x41\xad\xae\xf4\xf1\xcc\x71\x3e\xc3\xfe\xd5\xd1\xcd\x30\x5d\xe4\xc6\x72\x3b\x94\x47\x1b\xe7\x14\x9a\x03\x2a\x9b\x5a\x0d\x6b\x89\x6b\x25\x2e\xa3\x4d\x27\x2f\xa3\x0d\x1e\xe1\x81\xdc\xd5\xe1\x30\x00\x70\xc4\x44\x7d\xbf\xa4\x05\x9c\x72\xaf\xae\x38\x14\x74\xcc\xbb\x64\x42\xa6\xe8\x14\x49\xec\xbd\xe2\x7b\xfd\xdc\x8e\x22\x68\xd8\xc1\x40\x3e\xf0\x08\x6e\x90\x19\x21\xc5\x16\xd2\x93\x58\x8f\x37\x20\x9f\x3f\x18\xd2\x77\x5c\x14\x96\x4d\xf0\x6e\x9e\xa3\x98\xb1\x3c\x21\x3d\xe7\x9d\xc1\xe5\x66\x68\x55\x39\xac\xfb\x11\xa5\x84\x6b\x13\xf1\xd9\xe3\xff\xd4\x25\x09\x7c\xa5\xe6\x01\x47\x45\x97\x76\xdd\xd1\x69\xb4\xa6\x78\x06\x5f\xad\x51\x55\x7d\xcb\x18\x32\x07\x9d\xc8\x27\x5d\xeb\x12\xde\xe6\xe6\x90\x1f\x7a\xec\x3d\x15\x7f\xfb\xb5\x3f\xe5\xfc\x10\xeb\x13\x7e\xfc\xc8\x4e\x30\x58\x6a\x9c\x74\xc0\x40\x78\xdd\xec\x0e\xf5\x85\x72\xac\x44\xa6\x35\xd4\x30\x31\xc7\x93\xc9\x99\x7e\x93\x36\xce\x7e\x5c\x0f\x82\x92\xae\x2e\xa8\x95\xa7\x6d\xb0\xf6\xcb\x41\x63\x93\xe6\x11\x5a\x1f\x55\x4a\x5e\xe2\xbc\xef\xa1\x89\xab\xe5\xee\x0c\x5f\x1b\xb1\xbf\xc1\x55\x73\xdf\x54\x9d\xcb\x61\x22\x4d\xf3\xeb\xe4\xdc\x42\x8d\x67\x2f\xca\x3a\xf3\x7b\x55\x4a\x8f\x62\x8f\x4a\xe1\x19\x22\xfa\xca\xfa\xe5\x25\x67\x55\x22\x7b\x80\x29\x6d\x56\x21\xd9\x84\x04\xeb\x6d\x41\x32\xd0\x33\x1e\xe1\x48\x17\x77\xea\x4b\x02\x18\x81\x89\x2f\x2c\x09\x06\xf5\x6a\x94\x1e\x01\xd5\xde\x54\x05\xa9\x19\x4e\x94\x4a\x72\xfb\xaf\xf9\xe5\xbb\x8d\x00\xe3\x7b\xef\xfd\x1a\x4e\xff\x0e\x02\xe2\xde\x67\x90\xd2\x36\x25\x54\x0d\x10\x28\x4a\xca\x0c\x3e\xa5\x7e\x31\x41\xc1\x08\x6c\x5f\x5a\x3a\xb8\xc1\xc0\x63\x44\x82\x80\xa5\x38\x1f\xdd\xf4\xf2\x1f\x58\xc0\x1f\xeb\x9a\x3f\x0e\x5a\x27\xe7\x67\x70\xf3\xbb\x3e\xb3\xd0\xcd\x5d\xf0\x60\x68\x57\x26\xf8\xa3\x11\x76\xe7\x11\xa6\x5d\xcf\x2e\x9d\x9c\x69\xba\x6f\x35\x0f\xba\x14\xae\x1d\x6a\x25\xab\xd1\xa8\x4a\x55\xaa\x60\xbd\xac\x50\xe0\x07\x5a\x09\x16\xab\x1a\xb2\x7a\x9f\xbf\x73\x78\x99\x1b\x79\xa1\x53\x84\x65\xce\xd5\xb5\x63\x6b\xcb\x55\x41\xf0\x40\x41\x54\xa4\x2c\x99\x20\x64\x55\xa7\x4e\x31\x04\x70\xc8\xe9\xeb\x90\xc4\x55\x5c\xef\x4c\xc0\xfb\xa1\x76\x1b\xce\x11\xae\x83\x18\x21\xce\x12\x5d\x42\x4a\xbe\x84\xca\x38\xf1\xda\xb0\x9b\x12\x5d\x76\x0a\x91\x8f\xc6\xed\x03\x39\xaa\xad\xcb\x98\xb2\x8d\x87\xe8\xde\x09\xae\x21\x30\xcb\xd9\x17\x9a\x2c\x53\x8e\x28\x47\xbc\xa5\x15\x64\x93\x2f\x1a\x76\xd5\x10\xde\xdf\x23\xe4\x0f\x57\x06\x25\x2c\xbe\xd0\x3b\xa9\x74\x49\x5e\xd3\xcb\xba\x3f\x81\x29\xac\xdc\xd0\xb7\xa2\x73\x96\x2a\xd6\x40\x6b\xa4\x66\xd0\x53\xb2\xe1\xad\xc9\xda\xea\xad\x4a\x90\x2a\x3a\xe1\x38\xeb\x82\x35\xc5\x2e\xd2\xd1\x05\x80\x23\xec\x84\xa3\xa6\x13\xa4\x62\x6c\x7d\x41\x47\x63\xbe\xe2\xc1\x80\x36\xb1\xf9\xa2\x07\x26\xe9\xf8\xe8\x66\x95\x00\x4c\x64\x72\x54\x16\x06\x27\x7d\xa6\x28\x53\x09\x36\x57\x1b\xf1\xb7\xdf\xec\x14\xd3\x72\x6d\x02\x05\x4e\xb1\x04\x29\x24\x3e\x07\x6f\xfa\xbb\xd5\x82\xa4\xaa\x78\xde\x12\xc2\xdd\x94\x9f\x22\x5a\x4f\x3e\x44\xc5\x1d\xe6\xf6\xb5\x96\xd3\xb1\x30\x39\xed\xee\xb3\x57\x41\x4e\x4d\xc6\x3b\x58\xef\xbd\x95\x66\x73\x44\xd2\x95\x0b\x74\x49\xfe\x99\x7b\x93\x5a\xfa\x4b\xd6\x08\xcd\x51\xa0\xb9\x4b\xc7\x57\xe7\x1c\x57\x94\x33\x8b\xaf\x68\xc4\x91\x7b\x37\xbe\x86\xb5\x1d\x61\x78\xf7\xe2\xd9\x8c\x2d\x97\xe9\xd4\x70\xd5\x72\x88\xc3\x06\xea\xd2\xd4\x0e\x9d\x83\x84\xe4\x8f\x36\x6a\x6f\x12\x45\x31\xd7\xda\x9c\x9e\x42\x93\x59\x7c\xc4\x63\xae\xb5\x3d\x02\x91\x83\xfb\xa3\x4e\xe1\xf0\xe6\x24\x26\x93\x9e\x4d\x50\x68\xbc\x66\xa8\x62\xf5\x15\x69\x64\x46\xd9\xa5\x2e\xcc\xa8\xfa\x15\x6f\x3b\xc5\x1a\xe7\x41\x62\x3f\x9b\x42\x2a\xca\x75\x5f\x9e\x0b\x9d\x26\x65\xbe\x91\x35\x6d\x06\x4c\x4e\xb9\x92\x27\x7d\x69\xb8\xfd\x9c\x25\x2c\xe0\xa8\x7f\xd2\xca\xa1\xa5\x6c\x4b\xcc\xb2\x87\x3e\x2d\xb0\x10\xc9\xbd\xac\x1c\xc1\x6f\x94\x34\x95\x83\xe6\x65\xeb\x40\x44\x84\xea\x82\x8e\x32\x3d\x7f\xdc\x9f\xf5\xab\xa9\x46\x91\x8c\xc9\x7e\x1d\x19\x2b\x9b\x5a\x8a\x51\x86\xb9\xaa\x1a\x96\x10\x56\x7a\xc2\x00\x74\xdd\xe0\xb8\xfb\xf5\x83\x21\x8d\x4c\xff\x44\x86\xaf\xe4\xcc\xbe\xb0\xe1\x4b\x9f\x31\x37\x06\x23\x12\x80\x7a\x9a\x39\x05\xd0\x28\x47\x50\x79\x47\x97\xe5\x70\x16\x6c\x0e\xaa\x57\x88\x38\x57\x2c\xdb\x5d\x32\x2e\xda\x0e\xdb\x52\x55\x2f\x59\x73\x4e\x3e\xca\x26\xd6\x09\x63\x5a\xaa\x67\xc3\x80\xc1\x6d\x67\x44\xed\xe2\x1c\xd7\xe8\x9b\xdc\xd3\x8c\x64\x3d\xd8\x1c\xbd\x8f\x33\xfc\x51\x0a\x4e\xe7\xe6\xb3\xa9\xb2\xcf\x19\x53\xe5\x1f\x42\x48\x1e\xc4\x57\xbe\xf8\xb8\xe2\xb4\xa9\xf2\x93\x79\x3d\x03\x6d\xa2\x0c\x3b\xca\x94\x62\xef\x97\xd7\x37\x50\x88\x7d\x2c\xe5\x64\x24\xf9\x2f\x40\xc7\x79\xb3\xf8\x4d\xe5\xf2\xcc\x8e\xad\x27\x9a\xe7\x76\x6c\xd3\xc5\xf3\x47\x8a\xef\xa9\x3d\x1b\xcd\x7d\x7a\x04\xf8\xe1\xe9\xac\xbb\x6b\x9b\x95\xe3\x33\x7b\xb9\xa6\x28\xdf\xbf\x99\x6b\x97\xb0\xcf\xef\xe6\x58\x71\x3f\xbf\x9d\x29\x89\x3f\x73\x58\x07\x37\x73\xb4\xbc\x8f\xd6\x12\x54\xad\x5c\x31\x20\xad\xa2\x0d\x48\xac\x68\x33\x52\xeb\x40\x0a\x53\x9e\x9c\x4d\x03\x25\xaf\x1f\x90\x23\x9f\x69\x75\x47\x45\x35\xb9\x6e\x58\xd3\x6a\xa4\x5d\x2d\x46\xf7\x57\xf8\xd2\x37\xea\x28\x01\x2c\x39\xf9\x51\xd2\x47\x98\x20\x9b\xc1\xf6\x67\xc5\xf4\x1f\x02\xcb\x23\xb4\xf1\x4c\x1b\x11\x6d\x2a\x57\x78\xb0\x88\x99\x52\x52\x95\x2a\xf5\x48\x85\x82\x43\xd3\xee\x11\x3a\xc3\x18\xe3\x48\xbc\x79\x71\xe2\x31\xf4\x0a\x50\x83\x2d\xe5\x58\x0f\x78\xb6\x51\x2c\x32\x69\x4b\xa9\x9a\xfe\x31\xf0\xa0\x80\x88\x94\xec\x9d\x0a\x79\x99\x4a\x6f\x69\x7e\x91\xb2\xa9\x7b\xaa\x7e\xa2\xdb\x9a\xa9\x6f\x64\x5a\x9d\xa9\x4d\x00\x17\x9e\x2d\x34\x68\x5d\x85\x33\xcc\x11\xa9\xc3\xa2\x19\x7b\x7b\xe8\x1d\xa9\x2a\x8e\x96\xa6\x65\x1a\x59\xea\x30\x10\xd5\x10\x5b\x65\x37\xa8\xa2\xe2\x64\xa9\x3f\xa7\xdc\x86\x04\xcb\xd1\x64\x7f\xe6\x68\x84\x4b\x59\x1d\x14\x22\x25\x64\x85\x64\xf1\xae\x2c\xa5\xab\xde\x34\xfd\xba\x2e\x89\x86\x62\x2b\xae\x10\x69\xaf\x31\x6b\xf1\xe0\xcb\xd6\x7e\x64\x09\x7b\xe0\x46\x62\x25\xdd\xb6\x61\xbe\xd2\xb6\x1b\x56\x21\x3d\xb9\xa3\xdc\xbd\x6e\x6d\x0c\x87\x00\xa1\x68\x63\xbd\x12\xd4\xde\x00\xe5\x17\x52\xa1\x75\x0b\x34\x42\xa1\x2f\x59\x43\x16\x61\xc0\xe7\xb9\x0e\x89\x91\x05\xf4\x95\x6b\x98\xeb\xc5\xb3\xae\x29\x88\xf1\xaa\xb8\xe5\x31\xc4\x08\xbc\x15\xb8\x95\x77\x16\x6d\x42\x17\x17\x80\xd5\x1e\x4f\x5c\xfa\x0d\x48\x4d\x2f\xec\xec\x05\x87\x94\x91\x0a\x22\x98\xfa\x1e\xab\x49\xbb\x64\x0d\x9c\x9a\xb2\x6c\x08\xe7\x63\x60\xdb\x97\x5e\x91\xd5\x98\x17\xd4\xf1\x1d\xf9\x74\x20\xee\x1f\xa2\xbf\xbe\xec\xea\x2b\x7a\x59\x49\xb7\xef\x2e\x64\x05\x6e\x1d\xa2\xbf\x0a\xa4\xc8\xd0\x3c\x80\x66\x45\xb5\xd8\x0f\xbc\x96\x0b\xd8\xdd\x66\x37\x80\x26\xef\x0f\x56\x1d\x0b\x62\x67\xb0\xc3\xe0\xc0\x4b\x46\xc0\x05\x86\x9e\xee\xa0\x02\x6c\x91\x28\xd8\x58\x5a\xf6\x61\x26\xf8\x91\x7b\x0c\x85\x8d\xc6\xbf\x94\xd8\xf1\xe8\xa3\x1b\x81\x83\xdd\xf5\xfe\x5c\x03\x8c\x4b\x21\xf6\xf7\x35\x00\x44\x44\xf3\x74\xc7\x96\x48\x90\xb8\x7e\x31\x5f\xb4\x2b\x59\xf3\xc1\x4d\x89\x07\x9f\xb0\xb4\xdd\xa0\x23\x79\x9b\xcc\x63\x53\x4e\x19\xd5\x8f\xc4\x9c\x93\xa6\x9d\xc4\x77\xd1\xe8\xda\xe9\x49\xad\x76\xdb\xd9\xd6\x2d\x1f\x01\x73\xc2\x39\xbe\x22\x87\xe8\xde\xbb\x54\x2b\x0d\x49\xb6\xaa\x17\x80\xea\xfb\x14\xd9\xd6\xd1\xc4\xb4\xf1\x56\x9f\xec\xb6\x4c\x9e\xc9\xc9\x96\x6d\xeb\xbd\x65\xb8\x78\x31\x63\x5c\xf5\xe5\x91\xd5\xb5\x2c\x00\xf1\x67\xfa\x6d\xb7\xd1\xb7\x83\xea\xde\x86\xe4\x4f\x77\xee\xea\xf3\xe1\xc6\xd2\xe8\x80\x1b\xcb\x72\xe5\x91\x47\xec\xf2\x5f\x04\x84\x3b\xa7\x67\xa8\x3d\xaa\xc0\x5e\x79\xc4\x5f\xfd\xd3\x68\x81\x3d\xdd\x71\xce\xa3\xfc\x4c\x9d\x47\x67\xfa\xf6\x79\x60\x1e\xe4\x9c\xa8\x7a\x22\x93\xa7\x3b\xc1\x6e\x3a\x6f\xa9\xf9\x4b\x3f\x8b\xc3\xae\x9c\xab\xe7\xad\x62\x38\x5c\xad\xd2\x2a\x44\x42\x25\x43\x18\x75\x35\xfd\xa5\x23\xe8\xec\xd4\x6c\x0b\x5f\x90\x82\x4e\x69\x98\xe1\x6c\x40\xca\xa8\x50\x79\x1f\x61\x07\xa0\xc6\x1a\x53\x55\xc3\xaa\x4a\x4d\xc7\x76\xf6\x90\x73\x39\x27\xd6\x02\x6d\x54\x21\xc5\xbc\xd7\x63\xd1\x06\xcc\xbf\x05\x87\xbe\x75\x1c\x83\xe4\x0b\xc8\x67\x0c\x61\x74\xb1\xd3\x01\x20\x77\xc6\xe3\xa5\xda\x5d\x84\x44\xf7\x5a\x75\x6e\x06\xe0\xf7\x52\xe7\x2d\xc1\xda\x46\x59\xac\x7b\x79\x5c\xd6\x5c\x79\x64\xdc\x02\xeb\x70\x2d\x37\x04\x77\x83\xfc\xeb\x5e\x92\x01\x25\xf7\x66\x23\xae\xc2\x3a\xdb\x84\x23\xe7\x30\xbc\xc9\xbe\xbb\x9d\x7f\x2c\xcd\x73\x74\x49\x2a\x55\xad\x49\xa3\x09\x18\x54\x92\x28\xf6\xf6\x10\xad\x0b\xb9\xd5\x81\xf9\xe5\xec\x54\x96\x53\x34\xcd\x89\xc2\xb8\xef\x54\x78\xf7\xd9\xe9\x89\x7a\xe7\x68\xe0\x7b\x59\xb0\xef\xd1\xc3\xc9\x81\x3f\x9d\x13\xc9\x7a\x43\xde\xa7\x1a\x9b\x43\x67\x32\x29\x2c\x9b\xb6\x50\x05\xab\x41\xb5\x4f\x4d\xcc\x0d\x96\xf5\xc3\x64\x7b\x67\xe7\xd8\x77\x0e\x1d\xf9\x2c\xf4\xc2\xb9\x92\x83\x56\x61\xcc\x33\x72\x21\xe3\x4c\xb9\xbd\x93\xe9\xc1\x8f\xcf\x51\xc3\x4b\x90\x2d\x6b\x32\xf2\xf2\x73\xe6\xed\x5f\x7f\x16\x7b\xe2\x06\x1c\x40\x5a\x72\xa9\xee\x9d\xe9\x0c\xa3\x01\x38\x17\xa7\xb6\x48\x8e\xb9\x3e\x1d\x48\xe1\x05\xaa\x6a\x56\x61\x5b\xae\x4a\xda\x82\xa1\x4b\x39\x9b\x3a\xf9\x33\x54\x27\x58\x8b\xa9\xc2\xfb\xaa\xfd\xbd\xc2\xd1\x16\xba\xa6\x64\x09\x37\x61\xc4\xea\xa3\x2e\x93\x87\xe8\xbe\xfd\x7a\xdd\xdb\xad\x4e\xa4\xdc\xc4\xbd\x34\xee\x5d\xf8\x17\xfd\xd9\xa9\x5b\xc3\x53\xc5\x47\xda\x15\xdd\x0b\xf4\x5b\x07\x83\x93\xfb\x83\x93\xc0\xdc\x5d\xd0\x77\x5b\x77\x47\xe2\x79\x46\xd0\x3f\x75\xe5\xbb\x7f\xaa\x62\x71\x9e\x02\xbc\xc0\x2b\x19\x0e\x6c\xeb\xf4\x84\x68\xb7\x18\x77\x0a\xbc\x1d\xa2\xfb\xa6\xa2\x1e\x7c\x24\x2f\x08\x4f\x94\x50\x75\xe3\xb8\x2e\x1c\x07\xd7\x5c\xaa\x5c\x5a\x0c\x25\x59\x34\xcd\x0c\xef\x5b\x76\x7b\x4a\xa5\x25\xd0\xa1\xc7\x43\x72\x56\xf2\x98\xde\x8b\xc9\xda\x4c\x3c\xc4\xf4\x0f\x8b\x12\xec\x44\x18\x15\x15\xa6\x73\x52\xa2\x4b\xc6\x2a\x82\x6b\x79\xf7\x6b\xf9\xaf\x40\x0b\xdc\x42\x3c\x39\x55\xa6\x25\xe0\x05\x56\x0c\x44\x0b\x4a\x0a\xa2\x3b\xd7\xa1\x39\x69\x71\x89\x5b\x0c\x66\x25\x19\x31\xae\xc1\xaf\x94\x30\x95\xdd\x9d\x0e\xa6\x74\x22\x9f\x9f\x88\x71\xc5\x41\x00\xc4\xbd\xc1\xed\x6c\x1b\xfd\x8c\x3e\x38\x1a\xbe\x86\x2c\x43\x53\xb7\x82\x1d\x53\x5f\x9e\x52\x10\xd0\x64\x40\xbf\xb7\x73\x7e\xb4\x31\x44\xb7\xea\xed\x12\x43\xe7\x36\x47\xb5\xa4\x93\x68\x01\xf9\xc2\x8c\xe0\xa2\x9f\x4e\xcd\xc2\xfd\x83\x1a\xcd\xeb\xfd\x07\xb2\x8a\xe2\xff\x92\x55\x7c\xa3\x57\x55\x01\xe4\x09\x60\xe5\x03\x59\x25\x0b\xb3\x7a\x8b\x96\x75\x5f\x43\x38\x32\x56\xd8\xae\xda\x21\x93\x0b\xd2\x0a\x1a\x31\xa1\x51\x5e\xef\xab\xb3\x53\x1b\xee\xa1\x4d\x9e\xd6\x10\xa7\xb6\x58\x5f\xa5\x72\x8f\x33\x66\x4d\xcd\xf9\x7a\xbb\xfa\x89\x6d\xad\x64\x3c\xce\xd8\x9d\x8c\x1a\x44\xc8\x59\x06\xa1\xcf\x11\x8a\x22\x68\x6a\x76\x99\xae\x13\x2e\xd0\x00\x7f\x7f\x23\xaa\x31\xad\xc6\x8f\xc6\xa4\x6b\x14\x56\x56\x5d\x23\x7c\xb8\xa8\xdc\x72\x8a\x1f\x3b\xb4\xb6\x6b\x74\x2a\x73\x9d\xe4\xa2\xb0\x43\x94\x7e\xe7\xa0\x54\x27\x9b\xb8\x08\x28\xd8\x62\x75\x13\x74\xde\x64\xe5\x72\x6d\x93\x8a\x7e\x20\xc8\xb6\x68\x31\x35\xc0\x64\xaf\x05\x4d\x80\x06\xf4\x2b\xb2\x90\x75\xb7\x2f\x71\xf1\x41\x15\x96\x61\xf3\x05\x6e\xe9\x25\xad\x68\xbb\x4a\xe2\xe6\xc2\xb5\x9c\x0b\xac\xbc\x97\x4b\xfc\x29\xa0\xb0\xda\xa4\x2a\x68\x7d\x26\x13\xdb\x1e\xe0\xb0\x76\x62\xd8\x23\xd3\x6f\x59\x72\xad\x4a\xe2\xba\xdc\x63\xbe\xd4\x6d\xea\x89\xdb\x16\xa0\x70\xb6\x96\x33\xd5\xb8\x4a\xe7\x2b\x80\x14\x03\x56\x7c\x21\x5c\x73\x03\x5f\x28\xf2\x90\xeb\xe2\xa4\x6d\x7a\x2f\xfa\xaf\xe4\x4e\x66\xce\x41\xa9\x19\xae\x27\x5f\x4a\x51\xfb\x3b\xf7\x80\xd2\xa9\xc4\x99\x7f\xe9\x27\x6b\xe7\x07\xb5\x6f\x3f\xf9\x2a\x65\xdc\xb6\xb3\xe7\xc0\x6f\x24\x51\xe4\x76\x49\x22\x8e\x0c\x5d\xcb\xba\x78\x66\x33\x9d\x1d\x01\x5b\x8b\xbb\x23\x4e\xb0\x9c\xdc\x72\x03\xd0\x4b\x08\x75\xda\x49\x98\x65\xca\xd4\x11\x77\x02\xa6\x52\x34\x35\x3d\x14\x34\xe3\xd6\xa3\x5c\xd1\x6b\x6d\x69\x3b\x3b\xdd\x46\xec\x9a\x34\xcb\x86\xaa\x2c\x56\x29\xa0\x97\x42\xa2\x75\x37\x14\x2a\xfd\x09\x39\xd0\x0d\x3e\x4c\x44\x45\x7a\x4d\xc3\xfd\xbd\x2e\x83\xd7\x92\xe0\x52\x57\x97\x5e\x95\xeb\x25\x01\xc7\x09\x55\x6d\x51\xa4\xfe\xe6\xc5\x23\x6a\x4a\xdf\xf6\x4d\x7c\xf0\xa4\x58\xa6\x83\x64\xb5\xba\xae\x5e\x36\x78\xb1\x20\xe5\xa9\x25\x6f\x37\xe9\xf2\xec\xb4\x6f\x3d\xef\x53\xaf\xc7\xf7\xb9\xb7\xa8\x0b\xac\x6d\x0e\xac\x94\xa2\x77\xe5\x16\x5f\x94\x75\x77\x48\xdd\x36\xab\x00\x15\xb4\x45\x4b\xcc\xd1\xbf\x3a\xde\x2a\x76\xb2\x0d\x9f\xd1\xaa\x42\xe2\xde\x32\xe4\xb7\xd7\xd5\x06\xb6\xe5\x33\x9e\xdf\x31\xbb\x79\x47\xfe\x02\x47\x5d\x93\x1b\x4b\x47\x42\x89\x4b\x04\xdf\x9a\x33\x7a\x65\x8c\xfa\x38\x63\x78\x69\xc4\x7d\x81\xf3\xd9\x5c\xeb\xdd\xab\xb7\xe2\x5a\x0e\x86\x4c\xcb\x2b\xd5\x76\xee\xef\xe0\x47\x35\x08\xc8\x3e\x07\xf5\xe4\xc9\xb2\x5a\x39\xe6\xb2\x5a\x35\xae\x63\xe2\xdb\xfa\x41\x6b\xf8\x88\x13\xb7\xb6\xa7\x1b\x3b\x02\x9f\x51\x3d\x30\x34\xe5\x9a\x42\x5a\x61\x1f\x1d\x5d\x2f\x51\x5a\xf8\xfd\x86\x7e\x0a\x62\xaa\x1d\x9a\x1c\xc3\x4a\x3d\xd2\x0e\x31\xc7\x0b\xb7\x5d\xa7\x01\x02\xb5\xe4\x22\x52\x01\xed\x5c\x75\x00\x4c\x08\x27\x89\x41\x39\xfd\x5f\xd5\xdc\x43\x32\x68\x68\x77\x6d\x5e\x0f\x49\x24\xe8\x64\x2a\xdb\xbf\xf9\x8d\xe3\xbe\x79\x3c\x92\x38\xfc\x77\x46\xf5\x6c\x93\x23\x46\x64\x01\x12\x47\x2b\x9b\x83\x5f\xd3\xd2\xd1\xee\x8d\x65\x3e\xdd\x7c\x2e\x29\x1b\xe0\xb2\x7c\xc7\xf2\x2d\x5b\xb5\x7c\x20\x70\x04\x6d\x49\x94\x63\x78\xab\xd7\x64\x61\x9e\x46\xcf\xb4\xb1\xfa\x00\xfa\x61\xda\x2f\x9e\x5a\x2b\xf6\x21\xba\xf7\x4e\xf7\x5f\xd1\x1d\x3f\x0f\xb6\xd1\xc3\x6d\xf4\x68\x1b\x3d\xde\x16\x07\xfd\x49\xd2\xe8\x0e\x4d\x03\x7f\xd7\x2e\x7a\xf1\x0c\x7a\x7b\xc8\xc1\xd2\x5d\x47\x20\x9d\x8e\xef\xb5\x04\x2d\xe5\x94\xdc\x9a\xa4\xcc\xbb\xee\x18\x61\x7a\xb3\xb2\x3f\x84\xa4\x21\x8e\xb8\xec\xe7\xa2\x6c\xea\xf6\x28\x7b\xbe\x3a\x80\xea\x9a\xcb\x93\x0a\x69\x72\x11\xce\xed\xe3\x5d\x9c\x59\xfc\xe4\x3a\x08\xf5\x3a\x03\x7d\x35\xf8\x06\x0d\x05\x51\xe8\x57\x93\x62\x5c\xf2\xa0\x25\xda\xb5\x8d\x38\x6a\x63\x5a\x24\xbb\xe7\x6d\xf4\x51\x4b\x9d\xb2\xff\xcc\x03\xe6\x94\x6f\xef\x27\x4a\xcf\xbe\x52\x07\xd5\xf9\x53\x80\xff\x20\x44\x69\xa3\x84\xb4\xee\x9d\x23\xc1\x81\xcb\x4c\x09\x3c\x99\x46\x9f\xd1\x8d\xd6\xb3\x38\xef\x7e\xbb\xd9\xa6\x87\xfa\xda\xd8\x2e\xa3\xbe\x38\x29\xbb\x51\x4d\x94\xd9\x31\xbc\xe5\x0d\x63\x4b\x62\x27\x6c\xf2\x1a\xb7\x87\xbd\x31\x4a\x46\xb4\x7a\xb2\x23\x27\x51\xb1\x0f\x98\xd8\x07\x44\xec\x03\x1e\xf6\x01\x0d\xfb\x11\x16\xde\x5a\xb7\x7d\x20\x59\x51\x13\x3e\x68\x9a\x50\xc6\xd6\x1a\x5b\x63\x7d\x84\x70\x94\xee\xb9\xdb\x87\x38\xa5\x95\x29\xca\x95\x6f\xf4\x33\x94\x75\x11\x19\x74\xb3\x4a\x5a\x26\xfc\xf1\xfb\xed\xb2\x36\x31\x4e\xb3\x72\x71\xde\x1e\x38\x75\x33\xae\x71\xd5\x11\xaf\x60\xc6\xb6\x78\x96\xb7\x4d\x57\xb4\x88\xc6\x35\x24\x16\xbe\xc9\xa9\xaf\x9e\xc7\x98\xca\x0b\x50\x40\x8c\x55\x6a\xc5\xa9\xae\xc6\x03\x14\xe4\x41\xf3\xeb\x38\xc4\x53\x1d\x2a\xe3\x70\x56\x4f\x59\x7a\x39\xe7\xea\x5b\xe3\x18\x4c\xb5\x43\xb1\x0b\x79\xaf\xa1\x99\xb0\xe7\xec\x77\x77\xd1\xd7\x41\xfb\xc4\x4f\xa9\x5d\xb7\xef\x07\xa6\x29\x57\xe3\x9a\x91\xe2\x83\xa9\xdd\x22\x6d\x2a\x1c\x18\x9a\xea\x5f\xa9\x2b\x0a\x73\x71\x67\x56\x6c\x49\x9a\x02\x73\x82\x66\xe4\x23\x2a\x66\x58\xd0\x87\xae\xb5\x03\x8e\x18\x55\x99\x95\xd4\xbc\x6b\x88\xf1\xb4\xda\x96\x5f\x65\xb7\xa8\xa4\xe7\x45\xeb\x34\xf1\x51\xa3\xfc\x1f\xb8\xa2\xca\xba\x39\xf9\x19\xd1\x7a\xd1\xb5\x8e\x1b\x51\x30\xda\xc0\xce\x79\xb9\x6a\xc9\x3f\x48\xc3\x65\x93\x4f\x78\x61\xb7\x6b\xa7\xdf\xda\xbd\x16\xfb\x6c\x26\x2c\xb6\xda\x7d\xc5\xdf\x5e\x3a\x45\x93\x89\x7d\xf6\x29\x7a\xfc\xed\x16\xfa\xed\x37\xe4\x7c\xf6\x0c\x3d\xf9\x6f\x21\x77\xb8\x4f\xfd\xe5\xbf\xe3\xa7\x0e\xf6\x1f\x6e\xa5\x52\x1a\xb5\x43\x0b\x6a\x72\xa4\x37\xf2\x53\xe4\xfe\x32\xb2\xa4\xb3\x7f\x36\x46\x3a\x5f\x7e\x47\x9d\xfe\x6a\x85\x88\x0c\x0e\x8a\x51\x1e\x07\x0f\x05\x48\xce\xaa\x79\xe2\xb9\x88\x3f\xf9\xe0\xb6\x6c\xf9\x11\x94\xb2\x88\xd4\xaa\x33\xad\xe3\x7a\x06\x65\xd7\x14\xf1\x5f\x34\x6c\xc1\x7a\x42\xeb\x05\xa8\x53\x5b\x7b\x29\x40\xc1\xb6\x34\xba\x99\xe0\x6b\xd5\x57\xd1\x8d\x07\x02\x3b\x81\x01\x35\xc3\xd7\x60\x30\xf0\x7a\xb6\xa2\x4b\xd9\xac\x03\x6e\x5c\xdb\x51\x16\x57\x57\xac\xa1\xed\x6c\x8e\x56\xc4\xda\xf4\x8f\x4d\x11\xf2\x70\x3b\x48\x5d\xf2\x6d\xe3\x8f\x84\xcc\x1e\x59\xb1\xbc\xab\x3d\x77\x14\xb7\x65\xaa\x0c\x54\xb7\xb7\xbe\xec\x76\x69\x4b\x59\xa9\x72\x51\xe2\xab\x6c\x44\xf9\xb6\x63\xa1\xa0\x5c\x9a\x07\x00\x2b\xb8\x28\xba\x06\xb7\xa4\x5a\xa1\x86\x2c\x1a\xc2\x75\xb0\x8b\x13\x8a\xad\xab\xff\xa7\xf3\x86\x74\x3c\x9c\x60\xe1\x6a\xb3\xd2\xce\x89\x8c\x77\x22\xd7\x24\x40\x81\xf0\xde\x0a\x6a\xdc\x8c\xae\xea\xd3\x53\x2b\xea\xc6\x75\xa2\xdc\x79\x2d\xfc\x85\x27\xe6\xe5\x1a\xb9\xc3\xd6\x06\x12\x13\x89\xe6\x8d\xb7\x8f\xb1\x43\x6e\xfd\xd5\x77\x7e\xec\x88\x1f\x86\x94\x8f\xcb\x8a\xa1\x5d\x79\x31\x5f\xe9\xb9\x8d\x0e\xee\x8d\x27\x96\x0b\x04\x4b\xe2\xe7\x8c\xeb\xcd\x55\x8c\xeb\x08\x0d\x97\x42\x4a\x01\xfa\x91\xd0\xab\x59\x50\x4a\x95\xd6\xb4\xa5\xb8\x92\x5f\x45\x49\x2a\x10\xbf\xb1\xe3\xbb\x92\xc1\x92\x87\x26\x32\xf7\x83\xb2\x7a\x4f\xb5\xf8\x93\xbf\xd6\x5c\xdc\x8e\x7c\xef\x9a\x34\xc0\x03\xc4\xc7\x5b\x21\x58\xad\xb4\x1a\xc0\xc7\xe7\xa7\xaa\xd4\x68\x37\x9d\xd2\x82\x92\x5a\x55\xb7\x0a\xaf\xae\x9e\xe0\x49\x71\x63\x05\xdb\x76\xff\x7e\x80\xc0\xc4\x65\x15\x10\x76\xce\xba\xa1\x7f\x74\xc9\xcd\xe0\x5e\x0b\x57\xb8\x20\xcd\x9c\x72\x71\xfd\x56\x9a\x0d\x6b\xc4\x49\xce\x1c\xe1\xe4\xfc\xf5\xbb\x17\x87\xe8\xd8\x67\xdb\x54\x48\xec\x2a\xfa\x8f\x94\x68\xd1\x50\xeb\x83\x3c\xd8\xdf\xdf\x81\xce\x83\x32\xa3\xaa\xb1\x51\x9b\x21\xe8\x89\x04\x14\x62\x7d\x4b\x89\x2d\xad\xe1\xbd\xaa\xc4\x1f\x46\x2d\x99\x2f\x58\x23\x94\x8d\xab\x06\x17\x60\x06\xa6\xcc\x7c\x1f\xc2\x97\xe0\xdb\x19\xe1\x44\x3c\x5f\x97\x53\x0c\x62\x51\xd4\x72\x69\x8e\x57\x88\x77\x97\x60\x87\x06\x36\x2b\x16\x2b\x46\x89\x96\xb0\x1b\x8e\x01\x86\x6c\xc8\x41\xf2\x50\x04\x6b\x22\x54\x0c\xe7\x11\xd4\xeb\xb7\x69\x7a\x3a\x0c\xe1\xa2\x1d\xf4\xba\x12\x04\xc8\x23\xfc\x6c\x4b\x9f\xb6\x6c\x0d\xcd\x96\x52\xf6\x03\xa8\xff\x4b\x1a\x96\xa0\x4f\x09\xee\x9c\x2c\x25\x38\xbc\x82\xac\xb9\xda\x87\x07\xa3\xa8\xb9\x5d\x2a\x36\xb5\x2e\xd5\x1f\x79\x54\x1f\xd2\xe8\x24\x38\x05\xaa\xa2\xb1\x3d\x05\xa9\x97\x1c\xfe\xf0\x0c\xf9\x99\x79\x9f\xeb\xcc\xc4\xbf\x29\x39\x2c\x00\x9f\xf4\xd3\x47\xc2\x95\x5b\x1b\xdb\x0a\x58\x80\x68\x72\x4d\x1a\xe7\x18\x25\xd5\xdf\xfe\x68\x83\xbc\x89\xa0\x36\x8d\x7a\xfa\x95\x8f\xa8\xf2\x30\xe5\x9a\x5b\x59\xaf\x88\xae\xae\xe2\x46\xee\xea\xda\x99\xea\x60\x24\xa2\xfe\xd3\x2a\xfd\xc8\xdb\x49\xb6\x80\xf3\x0d\x94\x39\xf9\xd8\xbc\x66\x4c\xd7\x7d\xd9\x31\x68\x48\x96\xb7\xd1\x8c\x26\x53\x08\x61\x99\x75\x04\x82\x7d\x32\x1a\x2d\xda\xb7\x30\x61\x49\x07\xa5\x61\x3f\x89\xad\x5f\xe8\xbf\x22\xad\x1f\xcc\x66\x84\xfd\x28\x21\x8a\xe8\x11\xb6\x65\x88\x9b\x1a\x27\xb2\xed\x8d\x5b\xef\x07\xb2\xba\xc9\x5a\x5f\x91\x95\x9e\xaf\x13\x67\x77\xfb\x35\xbe\x22\xab\x60\x79\x26\x56\x6d\xdc\xd2\x34\xc5\xae\xb5\xae\x0b\x93\xe5\xb5\xc1\x45\xd9\xd4\xb1\x11\x2b\xb2\x4e\x46\x35\x61\xde\xe2\xb6\x03\x8f\x24\x56\x66\x93\xae\xc2\x4d\x26\x82\xd2\x75\x11\xc4\xb1\xc3\xd1\x14\xbd\x40\xc9\xe4\x4a\xff\xeb\xbf\x46\xc5\x45\xea\x88\xd6\x4d\x87\x46\x06\x88\xce\xc4\x41\xe6\xd4\x5e\xd7\xa8\x9d\x0f\x46\x34\x61\xea\x32\x44\x78\x86\x39\xe2\x24\x6d\xe9\xf6\x55\x9b\x3e\xfe\x1c\x2b\xf0\xfa\xd9\x9c\xe1\x5a\xc1\xee\x8b\x32\x2a\x8c\xd2\x74\xe5\x96\x23\x15\x4b\xbb\xd7\x6b\xd1\x4f\x85\x42\x70\xe2\x74\xae\x92\x3a\x67\x43\xca\xae\xb0\x21\x85\xa0\x7b\xba\x8d\x3c\xe3\x9b\x2a\xd3\x5c\x2e\xd1\xd8\x73\x9d\x30\x07\xf5\x4e\x0e\x53\x99\x61\xc7\x61\x2d\xdb\xdc\x34\xc6\xa0\x39\x8a\x5e\xfa\x8a\x7b\x05\xfa\xcd\x3d\x4d\x69\x86\x4c\x58\x48\x3a\xb1\xc9\xb7\x6c\xf7\x62\x2b\x75\xc7\xad\x3f\x69\x3f\xc1\x29\x3d\xd7\xe1\x6c\x2c\xd3\x1d\x7e\xc4\xc6\xca\x27\xa3\xed\x34\x73\x50\x5c\x57\x8d\x15\xed\xa3\xae\xcf\x10\x87\xf8\xe4\x5d\x11\xae\x1f\x2b\xd3\x8f\xd3\x00\x13\x57\x82\xd7\xce\x84\x4d\xa5\x87\xc2\x94\xd9\x08\xd1\xf3\x2e\x5f\x15\x63\xfc\x6e\xf6\x94\xd6\xc8\x6e\x6a\xd8\x7b\x0e\xb4\x2e\xb9\x74\xd7\xfe\x98\x5e\x20\x9b\xa2\xa0\x07\x2d\x4f\x46\x0f\xe7\x97\xac\x0b\x1d\x24\x36\x3f\x68\xf0\x6a\x9e\xf0\xcb\x6b\x68\x6b\x8c\x58\xa4\x18\x7b\xbd\x8a\x23\x29\x1f\xc1\xde\x1e\x3a\x65\x70\xba\x65\xa0\xa5\x6b\x6d\x4c\x29\x2f\x30\xb2\xab\xab\xc7\x3a\x85\xdf\xa7\xd6\xfd\xeb\xeb\x9b\x94\x48\x11\xbf\x04\xcd\xbf\x7b\x34\x0e\xb7\xa5\x6b\x9e\x0a\x3e\x90\x5a\x17\xce\x50\x6e\xa2\x6c\x44\x7d\xb8\x91\x2f\x82\xe2\x13\x83\x47\x39\xac\x56\x91\x97\x58\xba\xd6\x6b\x13\x17\xe4\x51\xea\xc6\xd0\x14\xb4\x57\x5f\x1f\x4f\xce\xd4\x74\xd2\xb0\xdd\xd8\x06\x27\x5b\x67\x7a\x71\xe4\xe6\x0c\xf7\x00\x77\xdb\x38\xc2\x69\xb2\xcd\x45\x1d\x7b\x49\x43\x0a\x4a\xae\x6d\x3c\x98\xb4\x93\x9c\x98\x53\xa7\xb2\x43\x3b\x9e\x51\xec\xe4\x6c\xde\xc2\x88\xe3\xd9\x44\xe3\xbc\xe5\x2e\x83\xd6\xb4\x9d\xfc\x8c\xc2\xdd\xb1\x7a\xd4\xcf\x6a\x49\x27\xfe\x87\x45\x1c\xe0\x13\x05\x9e\xb9\xa7\x22\x4e\x05\x11\x9a\x75\x10\x64\x10\x38\x22\x82\xf0\x4f\xc9\x6a\x9e\xee\x78\x86\xd9\xa4\x5c\x99\x36\xe6\xe6\xa7\x92\xc9\x4a\xe9\x11\xbd\xb7\x6e\x01\x2d\xa9\x9d\x6c\x06\x60\xa8\xd2\x85\x28\xb4\x15\x00\x1c\x99\x1d\x1d\xc5\xae\x6a\xa5\xc4\x27\x5e\x7c\xd3\x5d\x56\xb4\xd0\xef\x2d\xe0\xaf\xec\x6b\xba\x6a\x91\x10\x89\x07\x46\xd4\x8f\xf9\x00\x4e\xed\xe5\x3e\xf4\xb6\x4d\xa0\xf4\x41\xa4\xc4\x1d\x41\x10\x3a\x20\xe9\x10\x3d\x7c\xb2\xbf\xbf\x0f\x7d\xbc\xe5\x67\x0f\xb7\x0e\x11\x7c\xe4\x7c\xf6\x68\xeb\x10\x1d\x84\x0f\x3e\x16\x1f\x3e\x7a\xe2\x7d\xf6\x44\x7c\x26\x3e\xe8\x23\xb8\x27\xfb\xbb\xfb\x08\x73\x73\x9e\xbc\xed\x1c\x14\x68\x86\xee\x7d\x7f\x75\xc1\xc2\x82\x35\x05\xab\x09\x16\x12\x2f\x23\x6a\x1f\x7e\x14\xf1\x8e\xf8\xd4\x26\x58\x29\x3a\xb2\x7c\xc5\x7f\xc1\xe5\x54\xe1\x4a\x0e\xbe\xf9\xd6\x5f\xcb\x93\x83\x6f\x83\xd5\xfc\xf7\xb7\xfe\x7a\x1e\x3e\xfa\x26\x5a\x51\xca\x41\x15\xb4\xcb\xc8\xf1\x8d\x4c\x12\x19\x4e\xa9\x5d\xc3\xb9\x5d\xce\x6b\xe9\x78\x2b\x4f\x9d\x0b\xbc\x71\xae\xfa\x12\xcc\x5e\xdf\x05\xfd\x7c\x2f\xa1\x2a\xc5\x50\xd3\xf3\xca\x2a\x4f\xde\x1c\x6f\xda\x8e\xe4\x4b\x44\xfb\x7b\x13\x85\xc4\x05\x3f\xe6\x2b\x1f\x7b\x76\x34\x3a\xfc\x0b\x8d\x88\xba\x4b\x0c\x3d\x2e\xf4\xce\x8c\xe0\x66\x75\x84\xc1\xef\x10\x64\x36\x76\x2e\x71\x10\x78\xe2\x96\x1f\x31\x39\x1d\x29\xe6\xa1\x98\x9b\x10\xb2\x5c\x0c\xd0\x81\x60\xae\x80\x54\xf5\xdb\x23\xf3\xdb\x63\xf3\xdb\x13\xf5\xdb\xa7\x68\xf9\xe0\xea\x97\x41\x75\xa3\x91\x6f\x27\x15\x2c\x2b\x13\xfb\x16\xad\xe8\xc6\x51\x4d\xc9\xd9\x17\x7e\xf8\xcf\x98\xd9\xcb\x09\xe4\x67\x1f\x04\x9c\xf5\xe5\xe6\x9a\x42\x09\x2a\x41\x5d\x02\xed\xbb\xc7\xb5\xad\xe3\xd3\x1d\x74\xe7\xff\x07\x00\x00\xff\xff\x87\x39\xf4\xbe\xb5\x76\x01\x00" +var _flowidtablestakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xeb\x72\xdc\x36\xb2\xf0\xef\xe3\xa7\x80\x5d\xf5\xd9\xa3\x58\x57\x5f\x72\xb2\x2a\xcb\x59\x59\xb2\xf7\xa8\x9c\x95\x5d\x96\xb3\xf9\xe1\x4a\x65\x21\x12\xa3\xc1\x9a\x43\xcc\x12\xa4\xc6\x73\x12\xbf\xfb\x57\x68\xdc\x6f\x24\x47\x1a\x3b\xd9\xdd\xa3\x4a\xca\xd2\x0c\xd9\x00\x1a\x8d\x46\xdf\x7b\xef\x9b\x3b\x77\x10\x42\xe8\x55\xc5\x96\x67\xa7\xef\xf1\x65\x45\x2e\x5a\xfc\x91\xd6\x57\xf2\xf3\xf7\x33\x02\xdf\xa1\xb3\x53\x04\xdf\x22\x5c\x97\x48\x3d\x82\x0a\x56\xb7\x0d\x2e\x5a\x34\xc7\x35\xbe\x22\x1c\x5e\xa9\x59\x49\x10\x5b\x90\x06\xb7\xac\xe1\x0f\xe0\x85\x92\x54\xe4\x4a\xfd\x4d\xeb\x29\x6b\xe6\xb8\xa5\xac\x86\xe7\xc5\xf7\x30\x44\xcb\x3e\x92\x9a\xa3\x76\x86\x5b\x84\x1b\x82\x78\x8b\x3f\x92\x12\x61\x8e\x16\xb8\x69\x11\x9b\xa2\x56\xcf\xe6\x6d\xc3\x5a\x56\xb0\x6a\x57\xce\xf2\x9c\x95\x84\x23\xde\x5d\xce\x69\x2b\x1e\xa2\x8d\x7c\x19\xb5\x0c\xde\x59\x74\x97\x15\x2d\x10\x2e\x4b\xf1\xe4\x59\x3d\x65\x68\xda\xd5\x85\x99\x42\xd9\x35\x62\x39\xe2\x51\xae\x96\x86\x3b\xf8\x1a\x2d\x66\x98\x93\x5d\x8d\x0c\xca\x51\x43\x0a\xd6\x94\x5c\x0d\x23\x16\x03\x2b\x28\xd8\x7c\x4e\xdb\x96\x94\x6a\x19\xbb\x02\x75\x2b\x84\x2b\xce\xd0\x92\x56\x15\xba\x22\x2d\xc2\x30\x53\x80\xf5\xe6\xf2\x1f\xa4\x68\xe5\x62\x5b\xf1\x64\x81\x6b\xd4\x71\x98\x32\xcc\x7d\x1b\x75\xb5\xfa\x45\xc0\x5f\xd2\x76\x56\x36\x78\x89\x1a\xb2\xc4\x4d\xc9\xd5\x94\x5e\xe2\x62\x26\x31\x3e\xc3\x1c\xcd\xbb\xaa\xa5\x8b\x8a\xc8\x39\xa0\xcb\xae\xf8\x48\x5a\x85\xd1\x19\xab\x4a\x35\x69\x39\x43\x78\xff\x12\x73\x52\x22\x56\x5b\xac\xb5\x1d\x3f\xb4\xab\xd9\x56\xbb\xa0\x67\x43\xeb\x2b\x33\xb1\x52\xce\x4c\x4e\x88\x94\x6a\x46\xa7\x66\xab\x61\x49\x80\x80\x86\x5c\x51\xde\x12\x31\xb2\x26\x05\x82\x5e\xfd\xf0\xe6\x27\xf1\x01\xf6\x29\x66\xd4\x86\xa0\xcb\x15\xea\xb8\x7e\x44\x83\x3f\x27\x4b\x33\xfa\x64\xcb\x6c\xf1\xae\xa6\xe4\x15\x9a\xe1\x6b\x22\xa1\xe2\x79\x12\x4b\x3e\xf1\xa2\x92\xed\xda\x73\x70\x5c\xce\x69\x0d\x78\x16\x10\x70\xd7\xce\x58\x43\xdb\x95\x58\x43\x43\xe6\xec\x9a\xc8\xb7\x15\x81\x6c\xc3\x7b\x0d\x99\x76\x75\x89\x68\xcd\xbb\xe9\x94\x16\x94\xd4\x6d\xb5\xd2\x94\x2d\x1e\xe7\xdb\x68\x81\x57\x7a\x57\xb7\xcd\x89\x00\x78\xea\x44\x5c\x92\x76\x49\xec\x4c\x81\xb4\x38\x91\x64\x35\xc3\x8b\x05\xa9\x11\xab\x0b\x82\xc8\x35\x69\x56\x88\x2c\x58\x31\x53\xd3\xbe\x20\x44\x50\x3d\x15\x68\xc0\x95\xc1\x65\xc9\x8a\x6e\x4e\xea\x16\x0e\x21\x9a\x91\x86\x1c\xa2\x59\xdb\x2e\xf8\xe1\xde\x5e\xc9\x0a\xbe\xcb\xea\x69\xc5\x96\xbb\xac\xb9\xda\x53\xef\xec\xdd\xb9\x83\xbe\xd9\xbb\x73\x87\xce\x17\xac\x69\xd1\xab\xae\xbe\xa2\x97\x15\x79\x0f\x28\x9c\x36\x6c\x8e\xf6\x3f\xbd\xfa\xf1\xfc\x2f\x67\x2f\x7e\x78\xf9\xfe\xcd\xeb\x97\xe7\xc7\xa7\xa7\xef\x5e\x5e\x5c\x98\x17\x2a\xb6\xf4\x1f\xfe\xe1\xcd\x4f\xb9\x07\x5f\x11\xc2\xdd\xe7\x5e\xbd\x7c\x79\x11\x3c\x76\xd2\xac\x16\x2d\xbb\x73\x07\x17\x05\xe1\x7c\x82\xab\x6a\xcb\xb2\xa3\x98\x9b\xa1\x5f\x25\x42\xf6\xbe\x81\x9f\x34\x3b\x7b\x79\x4d\xea\x96\x23\xf9\xc8\x9e\x7c\xc1\x85\x4f\xc4\xf7\xe8\x9c\x2c\x5f\x0a\x14\x4f\x5a\xd6\xe2\xea\x02\xb6\xf2\x10\xfd\xf8\x8a\x7e\xfa\xf6\xc9\x36\x82\x0f\xdf\xc1\x6e\xbe\xc5\x2b\xd6\xb5\xfa\xab\xad\x0c\x38\x80\xf5\xde\xbe\xc5\xdf\x62\x5a\x4a\xd8\x16\xaa\xc0\x85\x40\x8a\xfd\x64\x4e\xeb\xd6\x1d\x77\x4a\x08\x7f\xd1\x35\xb5\xfd\x6c\x4b\xad\x78\x6f\x0f\xb8\x8e\x5a\x5d\x7e\x51\xe2\xa1\x93\x86\xe0\x96\x94\x13\x41\x99\x67\xa7\x87\xe8\xa2\x6d\xe0\xc4\x37\xac\x22\x87\xe8\xc7\xb3\xba\xfd\x6e\x1b\xe1\x39\xeb\xea\xf6\x44\xb3\x88\xa1\x05\xc2\xae\x73\xf3\x78\x04\x5b\x82\x1b\x07\x45\x62\xfb\x86\x20\xc4\x02\x25\x98\x77\xe4\x9f\x1d\xe1\x2d\x29\xdf\xb3\x1f\x25\x2f\xbb\xd5\xac\x7e\xd4\xac\x71\x03\x50\x6e\xb5\xba\x77\xc0\x86\xca\xe3\xba\x7c\x07\x7c\xe7\xc6\xc0\x5c\x52\xbc\x19\x04\xbd\x1a\xb9\xb6\x9f\xd4\xed\x55\xdf\x6a\x3e\x9b\x81\x75\x4e\xda\x25\x6b\xc4\x76\x1d\x97\x65\x43\x38\xff\x71\x51\x26\x89\xbe\x26\x4b\xf5\x84\xfe\xac\x0f\xf7\x3f\x11\x7a\x35\x6b\x4f\x66\xb8\xbe\x4a\xc3\x92\x0f\xc8\x53\xe4\x9d\x4e\x73\x67\x0d\x1e\x51\xf3\x64\xee\x9c\x1a\x39\x4b\x7c\x28\x06\x7a\xfc\x28\x37\x67\x03\x6b\xe8\x7c\x26\x60\x8e\x45\x75\x30\x46\xe6\xf4\x6e\x6e\x80\x11\xe7\x7a\x73\x83\xe5\x4f\xfd\xa6\xc7\xf8\x42\x38\xeb\x3b\xe4\x9b\x80\x3f\x96\x05\x6c\x6e\x2d\x1b\x19\xc9\x9c\xcb\x13\x23\x4e\x50\x52\x95\x48\x1e\xed\x35\xce\x68\xd7\xbe\x25\x4d\x21\xc4\xac\x2b\x32\xa9\xc9\xd2\xfb\x60\x98\x4b\x2d\x7f\x22\xe4\x63\xb5\x92\x52\x84\x78\x7f\x9c\x3c\x71\x4e\x96\x4a\x9e\xf9\x2b\xad\xe9\xbc\x9b\x73\xf1\xae\xfe\xfd\x10\xfd\x0a\xb7\xb8\x86\xf2\xb9\x07\x8c\x59\x89\x0f\xcf\x01\x97\x40\xda\xff\xb0\x4a\x2a\x47\x88\x96\xa4\x6e\x41\x3e\x06\x41\x6b\xca\x1a\x84\xab\x0a\xbe\x02\xc1\x17\xd1\x5a\xfe\x21\xf9\xf1\xae\x01\x71\x56\x17\x55\x27\x1e\x90\x8f\x69\x7d\xb0\x7e\xd0\x22\x5c\xb4\xf4\x9a\x54\x2b\xd0\x08\x69\x41\x17\xb8\x15\xaa\xaa\x7e\xf3\x23\x59\xa1\x23\x29\x85\x9f\x9d\x9a\x4f\xaf\x71\xd5\x11\x74\xa4\x54\x05\x21\x9c\x4b\x5d\x52\x89\xfb\x0f\x38\x68\x71\xdb\x4a\xda\xde\x0e\x14\x56\x17\x3f\x5a\xc0\xdc\x42\xd7\xb8\x91\xd3\x3b\x44\x7f\xfe\x55\x92\xd7\xa1\xba\x82\xc5\x00\x9f\x2d\x42\x84\xe6\x30\x97\xe8\x52\xa4\x06\xa3\x3b\xba\x2e\x11\x3a\x1c\x1c\x95\x06\xb5\xab\x85\x54\xe5\xb4\x1a\x68\xe0\xd0\x1a\xb1\xa6\x94\x3a\xd4\x25\x11\xb2\x2e\xa7\x25\x69\x48\x29\xd6\x47\x4b\xf3\xdc\x6b\xb2\xe2\x87\xe6\xaf\x03\xb4\x83\x4e\x58\x55\x91\x42\xdc\x2f\xa0\x27\x9b\xef\x1e\xc1\x77\x35\x27\x35\xef\x78\xf0\xdd\x63\xb4\x83\x5e\x7e\x22\x45\x07\x1a\x82\xff\xdd\x13\xb4\x83\xfe\x46\x1a\x3a\xa5\x05\x4e\x7c\xfd\x14\xed\xa0\x63\xc0\x97\xf3\x85\x26\xb0\xa2\x10\x18\x90\xf8\x53\x58\x81\x5b\x41\x70\x6e\xda\x08\x61\x32\xa0\x4f\x1f\x91\x20\x16\x67\xd0\xe8\x98\x0c\x22\x5a\x33\x40\xd8\x54\xa2\x1b\x68\x04\x90\xed\xa8\x9a\x45\xd7\x34\x82\xf6\x41\x83\xca\x4e\x1b\xe6\xe0\x5e\x68\x2f\x56\x20\x59\xae\x16\xe4\x96\xb3\x5f\x60\x0a\xe6\x0e\xa5\x0c\xba\xfa\x9c\x81\x53\xb0\xae\x2a\x05\x01\xcc\x71\xdd\xe1\xaa\x5a\xa1\x42\x8a\x1c\x42\x25\x06\xbd\x14\xb4\xd4\x86\x70\xd6\x35\x05\xc9\xae\x82\x48\xb5\xe3\x23\xa9\x7d\xb6\xe2\xcf\xb8\x11\x1b\xac\x2d\x2f\x4b\xe0\x47\x08\xcb\xc9\x59\xd2\xb5\xb8\xbc\x22\x2d\x4f\x1d\x46\xa1\x3e\x44\xc7\xb1\x24\x05\x9d\xe3\x0a\xd5\xdd\xfc\x92\x34\x46\xc9\xdd\x87\xf3\x77\x80\x68\x5d\x02\x7d\x09\xd5\x1f\x2d\x0c\xdf\xb4\x3a\xcd\x9b\xf7\x2f\x0f\xd1\x89\xdc\xb2\x6a\x85\xa8\xe0\x17\x2d\xea\x38\x29\xf3\x47\x56\x62\xf6\x9d\x58\x55\xcc\x0a\xfd\xa5\xdb\x21\xc5\xfa\xf5\x96\xc8\x55\xc3\xbe\x78\xa6\x02\x24\x28\x41\xea\xac\x06\x8a\xc0\x59\xc7\x49\xe3\xec\xb0\x62\x2b\x40\x70\x0c\xd1\x36\xbb\x3d\x02\xf8\xa9\x79\x58\xde\x6e\x27\xa9\x5d\x7a\x8b\xdb\x19\x07\x82\xe7\x2d\x03\x4a\xd6\x4a\xbe\x26\x81\xf8\xae\xaa\x88\x14\x59\x81\x7c\x9b\x8b\x96\x35\xf8\x8a\x08\x40\xe2\xa6\x34\x7f\x0c\xbc\xf6\x16\x6c\x6a\xf2\x2d\xfb\x7b\xf2\x25\x75\x7f\x80\xfd\x64\xad\xd1\x9c\x1b\x28\xf3\x96\xab\xd4\xf7\x68\xf6\x27\x6c\xbe\x60\x9c\xb6\x04\x89\x63\x8a\x4e\xc9\x94\xd6\x60\x14\xd1\xda\xfe\x37\x9e\xd2\xaf\x6f\x7f\x4c\x6b\xee\xda\x2b\xe5\x46\x52\x8e\xf8\x82\x14\x82\xff\x39\xf6\x2b\x5a\x83\xd9\x21\x5a\x87\xde\x06\xe7\x76\xd0\xc6\x08\x97\xdc\xba\x9a\xfe\xb3\x13\xd7\x96\x3e\x6d\xb5\xb6\x14\xea\xa7\x2e\x48\x8b\x96\x33\x52\x9b\x6f\xc5\x44\x0a\xa9\x08\x98\x07\x43\x0c\xd2\x52\x4b\x3f\xf1\x90\x70\x64\xd9\x14\x60\x1d\x7a\xdf\x1e\xa0\x23\x54\xc8\x5b\x43\x9b\x48\xed\xa5\x71\x04\x77\x0f\x5c\x1a\xde\x37\x8f\xd1\x11\x22\xfa\xca\xf0\xbe\x79\x82\x8e\xd0\xb5\x73\x61\x78\x5f\x3e\x45\x47\x6a\xd6\xc9\x45\xc0\xa9\xb5\xd6\x87\x3b\xd9\x87\xea\x50\xad\x33\x0b\x1f\x7e\xe3\x35\x59\x0d\x3e\xad\x8e\x95\xfb\xa8\x8f\xd1\x37\xa7\x6f\x0e\xd1\xdb\x86\xb1\xa9\x40\xea\x5b\xc6\x39\xe1\x5c\x10\xcd\xe4\x2d\x7b\xbb\xa5\xb7\x55\x9f\xce\x45\x43\xaf\x71\x4b\x04\x97\x4c\xec\x0c\x5c\x14\xee\xf5\xc0\xea\x4a\xb0\x77\x2a\x85\x22\x7d\x53\x55\x2b\x90\x15\xb4\x35\x56\xf0\x3f\x0a\xc2\x13\x18\xf9\x7c\x11\xc6\xc2\xa7\x5c\xf1\xe0\x79\xc7\x5b\x84\xab\x25\x5e\x71\x71\xa3\xe0\x4b\xa6\xac\xa3\x5a\x5e\x69\xe4\xad\x3c\x17\x97\xa2\x14\x48\x8c\xed\x52\xdc\xb0\x45\x41\x16\x6d\x6a\x9c\x10\x77\xad\x73\x5b\x1e\xa2\x3f\x1b\x5b\xe0\xee\xdf\x70\x57\xb5\xa9\xf5\xdb\x95\xdb\x45\x8b\xa5\xba\x66\x76\x65\xe3\x17\xbc\x4f\xca\x91\x9f\x5a\x6d\xfc\x74\x01\xfe\x95\x5d\x13\xae\x3d\x01\xee\x4c\x94\x3d\x15\x49\x0b\x3c\x22\x35\xc8\x85\xb8\x76\x6e\xdc\xfc\x62\x1c\xf3\xd7\x6d\xd6\xa3\x4d\xe9\xd2\xda\x09\xbe\x8a\x86\x5c\x53\xd6\xf1\x60\x16\x99\x95\x68\x1d\xab\x7f\x2d\xbb\x03\x8b\x31\xaa\xec\xe0\x62\x86\x17\x22\xd8\xae\xb8\xea\x80\x07\xb7\xcc\x3a\x2e\x04\xef\x12\x37\xa7\x74\x77\x2c\x71\xdd\x8e\x9a\xd5\x30\x86\x2f\xcc\x85\x27\xef\x68\x23\x4a\x01\xa6\x28\x57\xb8\x19\x18\xed\x9d\x72\x63\x0c\x8d\x56\x51\x0e\xc2\x9b\x25\x7b\x45\x81\x1a\x1b\x9e\x23\x23\x1c\x4f\xf0\x64\xfb\xa6\x50\x1e\xa4\x1a\x7a\xe8\xaa\xb2\x8e\x06\xe1\x52\x11\xad\x0b\x79\x16\xc5\x62\xcf\x4e\x41\xd4\x91\xce\x07\xe5\x5d\xa9\xc9\x72\xcc\x69\x74\xb4\xe0\x13\x21\x71\x90\x46\x2b\xc3\xf1\x98\x69\x61\xd5\xdf\xfa\x46\x5b\x5d\xc4\x64\x14\x1d\x24\x4e\xe5\x20\xfe\x43\xdb\x8d\x2f\xec\xe8\x59\x2d\xc1\x8c\x26\xc4\xe4\x92\xb4\xa4\x99\xd3\xda\x91\x7d\xe5\x6c\x35\x25\x4e\x5b\x49\x6d\xa1\x0f\x29\x3b\x13\x10\x0a\x70\xe5\x5b\xea\xec\xf0\xe2\xeb\x89\xf9\x0b\x3e\x31\xd7\xeb\xb6\xf7\xb9\x6b\x2f\xf7\xbe\xc8\xde\x52\xb9\xc7\x9c\xfb\xc6\x7f\x24\xbe\x8f\xfc\xef\x13\x6c\xca\xf5\xd9\x28\xd2\xd6\x4f\x6f\xa1\x5f\xbd\xb7\x17\x0d\x09\x3e\x91\xcb\xdd\xad\x48\x7d\xd5\xce\xd0\xd1\x11\xfa\xf6\xc9\x21\xba\x77\x2e\x75\x6d\xa4\x3e\x86\x1b\xe5\x92\xa0\xc7\x8f\xd0\xe5\xaa\x25\x1c\x4d\xbe\x7d\x82\x66\xe4\x93\x50\x52\x84\x14\x4e\x1a\xbe\x75\x2f\x02\x1b\xbb\x6b\x76\x29\xff\x9b\xd0\x6a\xc1\x5d\x7b\x3a\xa1\xe5\xd6\x21\xba\xf7\x5e\xcb\x3d\x67\xa7\x72\x20\xf0\xe6\xc1\xcd\x28\x75\x08\x0e\xcc\xa7\x62\x4b\xd2\x14\x98\x93\x60\xe0\x51\xe3\x82\xb6\xf8\x81\x96\x3f\x8b\x15\xd6\xb4\x52\xc3\x9e\x9d\xa2\x02\xd7\xe2\x7e\xc5\x55\x43\x70\xb9\x42\xe4\x93\xe0\x03\xca\x84\x21\xad\x0a\xf1\x00\x82\x0c\xd0\xf3\x23\x49\x08\x93\x83\x2d\x74\xff\xbe\xfc\xec\x99\xfe\xec\xa9\x5e\x18\x7c\xac\xd1\x77\xb0\x8d\x1e\x6d\xa3\xc7\xdb\xe8\xc9\xb6\xb8\x68\x9f\xc6\x90\x23\x3a\xd2\x1b\xf3\x1c\xed\x8b\x51\xb2\xdf\x3f\x3b\x42\x4f\x0f\xf6\x35\x36\xc3\xa7\xcc\x0c\x2a\xf1\x47\x3b\xc3\xb5\x78\xba\x17\x89\x1e\xa9\x3a\xe4\x71\xf0\xe8\xbb\x68\x94\xd7\x64\x15\x52\x0a\xf9\x84\x0b\x21\xc7\x7c\xfb\x44\x53\xcc\xc1\xa3\xef\x86\x49\xc6\x52\xbf\x3b\xe4\x9f\x1e\xa9\x21\xed\xd7\xb9\xf1\xfe\xf4\xad\x19\xef\x4f\x8f\x86\xc7\xbb\x9b\xa0\x95\x2b\xd2\x46\xbe\x84\x93\x0a\xd3\x39\x29\x27\x58\x9f\xee\x08\xc5\x5b\x59\xdc\x2b\x0a\x03\xaa\xd6\x64\x76\x29\x54\xe2\x42\x02\xbd\xc1\xac\x5e\x93\x95\x9e\xd1\x47\xc1\x28\xbc\xad\x88\x67\xf2\x5a\xc6\x21\x6c\x66\x16\x17\x66\x0f\xbc\x29\xd8\xad\xd9\x8a\x37\x6b\xbd\xc1\x9d\x3b\x52\xfc\x88\xbb\x15\x58\xff\x6b\xb0\x3c\x48\xa5\xf4\x35\x59\x4d\xa2\x19\x2f\xf4\x57\xee\x74\x76\x4b\x52\xb0\x92\xfc\x0f\xf9\x34\xd9\xda\x8e\x09\x8e\x5e\xd5\xb8\xed\x1a\x72\x5c\x5d\xb1\x86\xb6\xb3\xf9\x21\xba\x88\x3e\xdb\x7d\xf1\xc3\xc5\x2f\x2f\x7e\xb8\x38\x78\xf4\xcb\xe3\xef\x0e\x3c\x20\x5b\xf1\x64\x6b\xd2\xae\x33\x55\xff\xa4\x6d\x62\xb6\x2f\x4f\x4e\x2f\x8e\x7f\x79\xfb\xe8\xe9\xb7\x7d\x53\x35\xca\x0d\x18\xfd\x56\x4a\x4a\x65\xd7\xb4\x24\x65\x52\xe1\x19\xa3\xea\xc0\x2c\x49\x35\xdd\xa5\x25\x3a\x42\xb4\x8c\xbf\x00\x8e\x78\x64\x6d\x47\xde\x97\xf1\xe9\x39\x8a\x4f\x54\xdf\x6b\x12\xf1\xde\xdf\xf1\xe3\x0e\x65\x1e\x39\x94\x92\x58\x84\x2b\x38\xa0\x23\xb4\x1f\x3f\xe2\xc8\x8b\xcf\x76\xd0\xaf\x9f\x7b\x9e\x30\x72\x19\x40\xf2\x1e\x4c\x1c\xb5\x0e\xdc\x97\xfa\x8c\x2d\xc0\x44\xb2\xc7\xa5\x8d\x64\x2f\xc2\x09\xd1\x2c\x6a\x3b\xc6\xd7\xb6\x3e\x66\x87\xa8\x6d\x3a\xb2\xb5\xa1\x91\x5f\x93\x55\x6a\xd0\xd7\x64\xb5\xd1\x01\xed\xfe\xd8\xd1\xec\x67\xd1\x50\x31\xfe\x03\x89\x49\x6c\x53\xf8\x11\xe6\x77\x63\xf5\x20\x03\x48\x29\x99\xcf\x76\x6c\xec\xcb\xae\x34\xd7\xbc\x9c\x2f\xda\x15\xbc\x3b\xd9\x5a\x0b\xa4\xd1\xd3\xbe\x00\xd4\x0d\x4f\x55\xab\x53\x1b\x06\x1a\xea\x08\xe2\x84\xec\x06\x67\x84\xcc\x69\x36\xa0\x45\xb1\x1c\x1d\xd1\x62\x18\x4d\x22\xaa\x25\x45\x13\xbb\x97\xb8\xc2\x75\xe1\x50\xaa\x73\x07\x95\x84\xb7\x0d\x5b\x4d\x42\x59\x5a\xb0\xfa\xa9\x5e\xe0\x3b\x32\x45\x47\x29\xda\x56\xe6\xdf\xdd\x4b\xd6\x34\x6c\xf9\xec\x7e\x80\x92\xe7\x93\x69\xc3\xe6\x0e\xb9\x1b\x88\xf0\xf5\xd6\xdd\xa1\xb3\xd3\xe3\xb6\xf8\x60\xd0\xf0\x73\x7a\x6e\xe3\xde\xbd\x8b\x76\x62\xfa\xd7\x18\xf3\xa6\xe7\x62\x63\xb7\x24\x60\x9a\x55\xeb\x7b\xb6\x13\x81\xd8\xba\xd1\xbb\x66\xcf\x6e\xf6\xba\x39\x6a\xb7\x79\xfd\xa6\x83\xeb\xc3\x13\x5f\xc4\xef\x48\xdb\x35\x35\x38\xb7\xd4\x2d\xeb\x86\xd6\x4e\xbb\xba\xf4\x6f\x3d\xa1\x86\x9b\x27\x84\xba\x12\xdc\x45\xbb\x1f\xc9\x8a\x27\x34\x3d\x65\xa7\x50\xf6\xea\x23\xf9\x9a\x24\xcd\xc0\x50\x31\x31\xc0\xb6\x22\x28\xbd\xeb\x35\xe0\xa3\x43\xa6\x4d\x46\x13\xed\x9a\xcf\x3f\xaa\xcf\xe3\x2d\xc7\x56\xb4\x3a\x38\xb0\x4f\xd3\xb7\x1d\x55\x13\xc9\xf0\xb8\xe6\xc9\x0d\x8d\xac\x09\x6c\x78\x64\xf3\xe4\x46\xd7\x2c\x98\xca\xc8\x45\x8b\x47\xd3\x63\x07\xe2\xbf\x62\xbf\x21\x85\xa7\x38\xf5\xde\xde\x1e\xfa\xb1\xa5\x15\x6d\x57\xe8\x95\x8a\x12\x96\x96\xad\x62\x46\x8a\x8f\x5c\xf9\x74\x1e\x70\xc4\xae\x49\x23\x0e\x9b\xb5\x3b\xab\xb9\x48\x83\x2d\x6d\x39\x92\xa7\x82\x94\xca\x0a\x10\x19\x97\xb4\x5b\x6f\xda\xd5\x00\xf5\x55\x57\x55\x86\x80\x5f\x48\x68\x93\x2d\x6d\xec\x0a\xce\x22\x9d\xa2\x49\xdf\x45\x84\x1e\xe6\x59\xee\x16\x7a\x36\x70\x79\xc6\xe7\xbe\x91\xfc\x45\xdc\xa9\x1e\xaa\x11\xa9\x78\xcf\xf3\x37\x9d\xa2\x7f\x63\xc4\x33\x0c\xf6\x3b\xb3\x95\x72\x07\x10\x46\x0d\x99\x92\x86\x08\xb8\x2d\x13\xff\xb1\x9a\xc4\x6c\x52\x46\x07\x18\xa7\x9d\xb5\xdf\xf4\xee\x5c\x9a\xf7\xfd\x92\x8c\xb8\x3b\x44\xf7\x83\x07\x47\x59\xd7\x02\xc2\xfd\xe0\x80\xfe\x19\xdd\x95\xe6\xa8\xe8\x25\xf1\x73\xef\x42\xba\x23\x89\x13\xb7\x82\xce\x4e\x51\xc9\x88\x74\x8a\x0f\x1a\xab\x7c\x6d\x44\x6d\xea\xe4\x7e\xef\x8c\x30\x8f\x96\xf9\xbd\x23\x86\x04\x7b\x74\x5c\x96\x08\x3b\xd3\x53\x5e\x0c\x27\x62\xbe\x17\xfd\x9c\xb4\x36\xb4\x3f\x19\xc6\x65\x3e\x3c\x44\x7f\x0e\xa6\x15\x0a\x64\xbd\xcb\x7a\xb6\x73\xd7\xc2\xba\xe3\x23\xc8\x09\x11\xb8\x68\x9b\xae\x00\xaf\x98\x94\x69\xc5\x6f\x57\xa4\x45\x0d\xc1\xe5\x0e\xd8\x24\x65\x6a\xc8\x25\xeb\x5a\x45\x6d\x91\x6b\x98\x4b\x18\x26\x27\xe5\xd7\x31\x6e\xdc\xdc\x23\xae\x93\x34\xf7\xcc\x7a\x3e\x52\xff\x8d\x21\x1f\xa9\xb6\xbe\x8c\x7c\xd4\x77\x09\x2a\x43\x7f\xff\xc3\x51\xc4\xf9\xc0\xf3\x8e\x57\x6b\x8d\xe7\x47\x83\xb7\x0e\xa3\x94\x9b\x22\x72\x13\xa1\xb3\xd3\x5b\x79\x8a\x3e\x48\x42\xff\x79\xf8\xe1\xd8\xad\x33\xb4\x90\xac\xe7\x25\x4b\x8f\x23\x1c\x25\x7e\xf0\x65\x4a\x29\xaa\x6d\x44\x44\x52\xed\x90\x3c\xd7\xc6\x4d\x28\x90\x29\xdd\x1d\xac\x48\x16\xde\x6e\x8f\x41\xc9\x79\x6a\x0d\xdb\x92\x7d\xe9\x26\x66\xa6\xd4\xdb\xc3\x16\x27\xe7\xb5\x3e\xe3\x93\x67\x6e\xf0\xde\x1a\x54\xc4\x92\x76\x8f\x04\x88\xe8\x52\x1f\xb6\x50\x24\xa0\x44\x02\xdd\xa0\x45\x22\x0b\x64\x78\x26\xc6\x00\x91\x80\x11\x0a\xb5\xbd\xd6\x3a\xef\xfd\x40\x73\x1a\x69\xc4\x4b\x01\x30\xdf\xaf\x65\xec\x48\x2c\xa5\x57\x66\x4a\x5a\x27\xdd\x73\xe2\x7e\x95\xbb\xbb\x4f\x49\x43\xaf\x49\x29\xe3\xa0\xd3\x7e\x65\x71\x47\x83\x95\xc0\x50\xca\x4f\xb4\x9d\xd9\x5c\xc0\xac\x80\x7b\x23\x3e\xa0\x8e\xbc\xaf\x0e\x5c\xe3\xc6\x8a\xe9\x17\xdd\x5c\x6b\xad\xf1\xb4\x58\xd7\xba\x33\x5b\x4b\x61\x1e\xa1\x2b\x3b\xe8\x5d\x5b\x63\x0e\x16\xe0\xfd\xf9\xd0\xd1\x90\x0c\x88\xb4\x36\x31\x2c\xdc\xb9\x90\x53\xfb\x3e\xbc\xb9\x01\x16\xbf\xf8\xfe\xaa\x89\xbb\xbc\x34\xab\x4d\x8d\x5e\x91\xe4\x8d\xbf\x0b\xad\x4a\x36\xe6\x11\xaa\xe5\xd6\x7f\x24\x9a\xf4\x26\x6a\x7e\x7f\x38\x60\x1c\x19\x26\x41\x03\x6b\xf4\x6e\x49\x13\xe4\x59\xad\xe6\x9c\xdb\xa7\x58\x29\x55\x97\xe3\xc3\xf4\x85\xf7\x30\x7d\x83\x25\x3e\x0e\x1f\xd6\x17\x49\x5e\x4f\x78\x67\xd3\xc5\x8d\x43\x4c\x6a\x06\x9c\xb3\x82\x62\x31\xfe\x92\xb6\x33\x57\x39\x32\x2f\xab\x84\x73\x15\x40\x4a\x39\xc4\xf8\x92\x52\x6b\x72\x4e\x44\x29\x73\xd2\xc9\x29\x47\x97\xc4\x89\x00\x84\xc0\x9c\x48\xf9\x30\x60\xf3\xaa\xaa\x17\xf1\x45\xb9\x43\x83\x7e\x28\xde\xda\xb1\x3e\xe3\x83\xe7\xb2\xa3\x3b\x91\xfe\xe9\xd0\xfd\xfc\xe8\x23\xe3\x10\xb3\x43\x27\xe3\x9d\x70\x5d\x0a\xc4\x57\xac\xb8\xe9\xb4\xd6\x0f\xc2\x8b\x66\x06\xae\x72\x9d\x8f\x2f\xcb\x12\xe0\xda\x44\xe0\x8d\xd6\x67\xd6\x8c\x01\xb4\x73\xf0\x82\x00\xd7\x18\x7a\x6c\xa4\xdf\x71\x26\x1a\x8d\x8c\xd8\xa1\x01\xec\x8f\x09\x3f\x03\xb5\x26\x69\x4c\x48\xb8\x0e\x37\xe6\xf4\xfa\x97\xf1\x23\x7e\x11\x97\xdf\x17\x72\x4e\x66\xfc\x88\x96\x8d\x87\x5e\x3d\x14\x6d\xbc\x67\x6f\x0e\x08\x60\xe8\xc1\xc4\x25\x9f\x78\xca\x6c\xd3\xd0\x83\xd1\x35\xd4\x0b\xd0\xbb\xae\xd6\xb1\x89\x9b\x43\xb6\x11\xc3\xb8\xcd\xcc\x11\xf7\xfb\x80\x40\xfb\x7f\xe6\xf1\xb5\xcc\xe3\x28\x6d\xac\x84\xdd\xc4\x35\xba\x24\x6a\x66\x2a\x8e\x7e\xc6\x96\x26\x5f\xce\x33\x5b\xfa\x22\x49\xc2\x76\x69\x84\x87\x11\x06\xcc\x01\x63\x94\x6f\x2f\xda\xb0\x2d\x70\x2d\x43\xe3\xba\x86\xc3\xc8\x12\x38\x06\xfc\x1a\x76\xc6\x91\x37\xd3\x98\x62\x00\x9b\xb4\xc2\x85\x80\xca\x40\x90\x5c\x47\xeb\x08\xe1\x59\xa3\x9e\xf3\x48\xc2\xd0\x06\x53\x51\x23\xa5\x1e\x88\x6d\x5b\xc1\x2c\xd7\x35\x70\x19\x33\x5b\x1a\xce\x38\x5b\x9b\x6b\x25\x4b\xc3\xb9\x89\xa9\xac\x0f\xd2\x5a\xf6\xb2\x34\xa0\x61\xa3\x59\xcf\xe5\x9a\x03\x99\xe5\x68\xff\x66\xaa\x60\x52\xf3\xa2\x75\x4b\x9a\x29\x56\xb9\x81\x6e\x5a\xe5\x78\x57\x90\xa7\x6a\x2a\xb8\x46\x2a\xf6\x53\x54\xe1\xc2\x65\x95\xce\x16\xb5\x92\x45\x36\x5d\x51\x4e\xe9\x30\x35\x3d\x5f\x6e\x30\xc9\x8b\x46\x15\x1c\xe5\xdf\x48\x65\x27\x02\x2b\xb3\x5f\x24\xc5\xed\x30\x66\x34\x4c\x96\x21\x55\xc5\xd1\x72\x46\xda\x19\x69\xfc\x74\x49\x93\x37\x47\x2a\x0a\xc9\x10\x30\xe3\x13\x5c\x97\xb4\xc4\x2d\x51\x0b\x6d\x83\xd4\xc6\xe5\x8c\x16\x33\x34\x27\x58\xab\x1c\x14\xb4\x6c\x0c\x19\x37\x00\x7b\x39\x63\x0e\x70\x95\x8b\xec\x15\x29\x90\x5a\xbe\xd2\x5b\x02\x31\x4c\x8c\x21\x54\x26\xa1\xbb\x90\x9a\x75\x57\xb3\x5e\xed\x1a\x3e\x12\x12\x96\xe7\xbf\x50\xc8\x15\x08\x92\xe7\x84\xf2\x97\x6a\x91\xaf\x58\x93\x58\xe2\xe4\x17\x87\x41\x1f\xa2\xfb\x09\xde\x6f\xb9\xfe\xd6\x21\x7a\xc1\x58\x95\xb8\x3f\xcc\x2a\xeb\xf6\x07\xca\xdb\xf4\x25\x72\x45\xda\xb7\xf6\x39\x01\x56\x3c\x3b\x09\xc2\xd6\xe8\x34\x84\xf6\xc1\xf3\xe9\x40\x56\x46\xdb\x74\x3d\xa2\xd6\x14\x57\x7c\x84\xed\x69\xc0\x49\x22\xc6\xd9\xdf\xdd\x47\xf7\xef\x47\xe3\x24\x93\x55\xfe\x02\xfa\x48\xf3\x7e\x86\x6b\x55\x1a\xe3\x15\x6b\xde\xb1\x8a\x4c\xea\x6e\x2e\x59\xd5\xe1\x08\xaf\x8a\x0e\x4b\x0c\x5c\x54\x49\x73\x26\xe4\x28\xcb\x92\x24\x9a\xc2\x1f\x70\xc7\x5f\x8b\x54\x0a\x82\x4a\x51\x26\x4b\xc4\xea\xb4\x12\x2c\x68\x45\x46\xd6\x46\xe9\x0c\x82\x44\xe2\x2a\x48\xa3\xa2\x19\x12\x78\x52\x3c\xe7\x65\x2d\x3e\x04\x9e\x7d\xef\x44\x06\xfc\xcb\xe1\x53\xb3\xa7\xd3\x64\x15\x40\xca\xeb\x07\x10\xd1\xb0\x68\xd8\x95\x78\x30\x95\x98\xb2\xcc\xe5\xc6\x84\x5f\x6c\x3c\x29\xe6\x16\xe9\x22\xcb\x0d\xe7\x89\x7c\x8e\x62\x08\x5f\xc8\x70\x19\x87\x6a\x54\x55\x14\x93\x83\xca\x83\xfa\x9e\x1b\xb4\x82\xdf\x19\xa0\x91\x9b\x47\xb3\xf7\x78\x68\x9d\xe0\x6f\xe0\x0f\xc1\x34\xfa\x5e\x85\x24\x01\xbd\x27\x5f\x32\x16\x7f\x99\x0b\xc2\xf7\xc6\x54\xb1\xcd\x03\x15\xcc\x4c\x94\xb3\x7b\x78\x1d\xd2\xca\xf1\x93\xe3\xb2\x04\x4e\xa1\xad\x6b\x32\x46\x87\xaf\x78\x4b\xe6\x36\xe1\xda\xa9\x98\x32\x60\xf1\x85\xc8\x1d\xf1\xce\x39\x91\x66\x19\xc1\x50\x5a\xc5\x0e\x53\xf9\x88\x5f\x80\xb5\xc8\x39\xdf\x8c\x8d\xfc\x91\xcf\x0e\x50\x42\xae\x76\x9b\x77\x6b\xda\x12\x57\x12\xf5\x36\x88\x3d\x5c\x9d\xd8\x7f\xb9\xad\x1e\x0d\xc8\xdf\x8a\xa4\x71\xab\xe7\x52\x0b\x43\x41\xe5\xf7\xf1\xa8\x6f\xea\x6a\x25\xf8\xbd\x18\x7a\x8e\xb0\x90\xab\x0a\x2d\xad\x28\xc9\x6d\x2a\x93\xc6\x4b\x06\x45\xa0\x24\xcf\x0b\xc1\xc8\xda\xae\xae\x7c\xe5\xe4\xa2\x07\x95\x0d\x42\xa9\x43\xa2\x78\x48\x5e\xb2\x6b\x0d\xe9\x34\x43\x95\xb8\x2c\xdf\x33\x0f\x12\x48\x3d\x99\x5d\x12\x57\xfd\x7b\x76\x5c\x96\x3d\x02\x40\x82\x2a\x53\xa7\x41\x5c\x35\x4b\x28\x17\xf0\x96\xd4\xa5\x5b\xa3\xce\xb0\x06\xcf\x3a\x50\xd3\x2a\xcb\x14\x2e\x54\x25\xe5\x8f\x5e\xad\x22\xe5\x82\x4a\x56\x21\xe8\xe7\x05\x7e\x59\xb8\x49\x50\x7e\xed\x0f\xcd\x00\x36\x78\x7c\x65\x35\xa2\x39\xa6\xb5\x60\xe3\xd2\xaf\x71\xa4\x0e\x6a\x74\x42\xce\x60\xf2\x82\x90\xc5\xff\xf5\xca\xdb\x0d\xa0\x7b\xe5\xf9\xe9\x49\xc4\xf7\x5c\x51\xdb\xe1\x08\x85\x60\x08\x15\x6a\x67\x8c\x13\x34\xa5\x0d\x08\x3c\x53\xd6\x58\x8c\x09\x9e\x60\xfc\x3b\x72\xfc\xf0\x14\x85\xeb\x79\x36\x2a\x5e\x25\xb1\xbf\x63\xde\x1a\x07\x7b\x27\x9c\x54\x42\x6f\x08\x37\x21\x63\xdd\x4d\x2c\xf0\xf9\x0d\xd7\x17\x8f\x19\x7e\xb2\xb3\x76\xa4\xcf\x78\xbc\x45\xeb\x8b\xe8\x4d\xf2\x70\x15\x2d\xac\x26\xa6\x8b\x2b\x98\x8b\x4e\xd1\x60\x97\x39\xfb\xc9\xf9\xe4\x2f\x87\x7c\x9c\x57\x94\x27\x10\xe0\x6a\x6b\x03\x17\x63\x08\xf2\xff\xee\xa8\x7f\xbb\x3b\xca\xd8\x37\xc7\xdc\x51\xfa\xe1\xff\xec\x3b\xea\x36\xc7\x37\x9f\x61\x84\x37\x76\x6a\xf1\xff\x1d\xd6\x7f\xc5\xc3\xaa\x2e\x25\x7d\xa1\x58\x45\x03\xdc\x92\x50\xc1\x5c\xde\x32\xe6\x20\x78\x45\xad\x46\xea\x9d\x4a\x18\xb2\x55\x9a\xbf\xf8\x21\xd6\x12\xd7\x1f\xed\x18\x1b\x01\x52\xe3\x04\x51\x8e\xae\xa4\xc5\x52\x9a\xb3\x5a\x53\x73\x4e\x15\xe3\x34\x11\x36\x21\x20\xd7\x85\x6c\xdb\x80\x34\xe4\x9a\x34\xfe\xd5\x8f\x39\x27\x4d\x8b\xe2\x82\x16\x43\x96\xd7\x87\xc3\x6f\xf4\x3b\xeb\xc4\xcf\x73\x2d\x4a\xa3\x87\x63\x84\xa2\xb8\x80\xc6\x9c\x70\x0e\x55\x9a\xef\x9d\xb3\x56\xdb\xe4\x2d\xa5\xaa\xa5\xdf\xf5\xb7\x30\xc6\xfb\xb9\xdf\x4e\x64\x39\x63\x92\xab\x38\xb1\x9b\x8a\xcb\xc8\x7f\xd5\x40\x92\xca\x69\x83\xd8\xb2\xce\xb8\x0c\xf4\x7e\x30\x34\x27\xa4\x75\x59\xd1\x36\x78\x1a\xc0\x7f\x5f\xaf\xa4\x19\x82\x5e\x76\xb2\xd8\x25\x1c\xab\x44\x6e\xe4\xd8\x1d\x73\xc2\xdf\x6d\xd9\x9d\x7d\xf4\xdb\x6f\x1b\x34\x93\x67\xdc\x10\x67\xf5\x94\xa5\x19\xdd\xd6\x70\x88\x37\xda\x51\xf4\x90\xb3\xb0\xf7\x51\x40\x70\xbc\x2f\x49\xa5\x2c\x40\xba\x4c\x22\x75\xd5\x33\x8b\xa2\x21\xe2\xf8\x8b\xda\x37\x4d\xf9\x8a\xb7\x85\x52\x8c\x75\x2b\xa5\x2d\x30\x82\x53\x04\xc5\x0b\xc6\xa5\x70\x0c\x30\x09\x71\xca\x0b\x36\x57\x01\x3d\x4e\x47\x20\x53\xd1\xcf\xff\xc2\x39\x17\x65\x78\x1d\x86\xf3\xb3\xe7\xf3\xd7\x3b\x11\xe6\xf7\xf6\xec\x10\xce\x84\x8c\xda\x19\x8e\xcb\x29\x64\x7c\x9a\xfe\x3e\x62\xb3\x40\x1f\x56\x97\xf6\x8a\xc4\x5a\x5f\x5e\xdd\x18\x94\x6c\x7a\xf2\xd4\xd3\xa2\x0d\xf2\xc5\x9b\xa8\xa6\xbf\xb9\x41\x7b\xe5\x9a\x6c\x8c\xd1\x66\xf6\xff\xdf\x01\xf1\xb6\xe4\x43\x62\x07\xf6\xf6\xb4\x97\x49\x13\xb8\x8e\x7c\x82\x93\x56\x91\x69\xcb\xae\x49\xa3\xe9\x92\x06\x51\xa4\xce\x7d\xf7\x05\xcd\x15\x0f\x91\x5a\x92\x61\x58\x4e\x19\x8b\x51\xd2\xc9\x8d\x04\xb5\x4d\x90\x6b\xa6\xde\x86\x81\x36\xaa\xfb\x4e\x04\x7b\x04\xd2\x7a\x65\x59\x10\x37\xe7\x5a\x58\x07\xd9\xbf\x4f\x1f\x58\x0a\x2e\xce\x6a\xa2\x8d\x5f\x97\x9d\x69\x3d\x50\xb3\x65\xc8\xd5\xee\x7e\x21\x29\x5f\x0a\xc1\xaf\x1a\x36\xcf\x8b\xfa\x41\x21\x9b\x7e\xf9\x1e\x21\x34\x20\x8c\x73\x2f\x96\xdd\x56\x17\xa9\x7d\x01\xc6\x0d\xef\x0e\x1a\xde\xf9\xc1\x0c\x1c\x2d\x49\x55\x01\xae\x55\x5c\x61\xcf\xab\x50\xaa\xd6\x8c\x49\x9b\xa1\x22\xa6\xe0\xb0\x96\x73\x3d\xae\xaa\x28\x30\xf7\xdf\x58\x94\xa7\xd3\x11\x8c\x1d\x3d\x87\xd8\x85\xc4\xcd\xba\xd6\xb1\x1e\x1e\x28\xc9\x65\xf7\x34\xd2\x36\x2e\x47\x68\xf8\xff\xa2\x77\xd4\x08\x7c\xf6\xb2\xb2\xd4\xde\x07\xba\x53\x76\xe3\xf7\xfe\x78\xb7\x5f\x10\x29\xf9\xb5\x2f\xb7\xdf\xe7\x3a\xfa\xc2\xcc\x3e\xe0\xed\x3f\x99\x83\xe2\x1c\x0d\xe8\x4a\x31\xd2\x5f\xa7\x69\xb8\xdf\x65\x97\x76\xe5\x6f\x34\x77\x32\x36\x15\x0e\x35\x97\x5a\xc7\x64\xa8\x62\xc2\x9e\x25\x9c\x2e\x79\x2f\x84\x86\xb4\x2e\xee\x9b\x91\x76\x68\x3d\x60\xbf\x29\xfa\x77\xc1\x7d\x7f\xb3\xad\x0d\x61\x7e\xd0\x80\xec\x60\x1e\xf9\x81\xb0\x2a\x48\xd5\x86\xd7\xb6\x0c\xfd\xb3\x23\xcd\xca\xeb\xe5\x91\xce\x71\x10\xef\x9b\xbd\x52\x25\x68\x54\xb8\xa7\x4d\xbe\xbc\x13\x6e\x58\x26\xa4\xd7\x98\x20\x46\x45\xf5\xae\x9f\x1f\x91\x0a\xfe\x65\x7e\x63\x61\x27\x33\x0e\xe6\xaf\xdb\x6e\xd1\xc6\xac\xae\x65\x68\x41\x1a\x81\x18\x2b\xe8\x80\x9c\x13\x77\x8e\xf1\xa2\x83\x4f\x6d\xc5\x9d\xf4\x62\x37\xb8\x5a\xf3\x9c\x09\x0f\xd6\x75\x7f\xea\xde\x32\x23\xfd\x25\x66\x73\xe9\x03\x51\xfd\x03\xd5\xb2\x38\x8e\x8d\x1a\x8e\x73\x76\x92\x9b\x9c\x30\x28\x29\x40\x7c\xa5\x10\x28\xd3\x72\x79\x53\x51\x50\x97\x7e\x14\x94\xd7\x55\x8d\x98\xca\x5a\xa6\x5d\xd9\x15\x09\x49\x31\xc8\x08\x43\xb7\x62\x52\x3d\xf9\x28\xe3\x33\x51\x7a\xd8\xdd\x60\xa7\x4c\x67\x16\x81\x00\x12\x09\x10\x62\xdf\xf3\xf1\x57\x8e\xdf\x3d\x26\xb5\x5e\xec\xe5\x2b\x24\x86\x22\xab\xf8\x77\x38\x0c\x73\x48\xd4\xea\x5b\x6d\xf6\x4e\x34\xe7\x68\x40\x1e\xb9\xd9\xe1\xfa\xda\x71\x45\x9b\x3d\x55\x7f\x48\xf2\xff\x0f\x09\x52\x8a\x6b\x5e\x8e\x88\xe1\x19\xf1\xd2\x28\xc8\x5f\x3a\x42\xe9\x46\x8b\x1b\x13\xa0\x34\x0c\xf8\x66\x38\xbb\x61\x78\x52\xdf\xb6\x8f\xe7\x8e\xe3\x4b\xb4\x8e\x89\x42\xda\xe4\xcd\x91\x94\x9f\x7f\x77\xce\xad\x7b\x2e\xdd\x86\x71\x7f\xed\x60\x9b\xff\x00\xc6\x7d\x73\x82\xbf\x51\xdc\xce\xbf\x0d\x9d\xbf\xb3\xc6\x31\x7d\x35\xb9\x45\x74\x80\xf6\xd7\x4b\x7f\xf8\xfa\x61\x28\xda\xc0\xd7\x99\xec\xd5\x7f\x5f\x3a\x57\x5d\xca\xac\x68\x6c\xfb\x42\xe5\x62\x36\xbc\xf7\xb3\x31\x0f\xfd\xb5\xad\x12\x41\x2a\x83\x25\xca\xa3\x37\xdc\x18\x95\xe1\x8b\xf1\x8b\x85\xa8\x7c\x29\x6b\x3d\x9d\x0e\xe3\xe4\xf7\x8f\x03\xc8\xde\xf7\xb7\xa8\x56\x6f\x18\x65\x38\x58\x8a\x57\xa6\xfd\x30\xb7\x60\x95\xd9\x38\x81\xbd\xcd\x85\x9c\xa0\x6c\xd8\xc1\xf0\x31\x88\x00\xa5\xc2\x43\x94\x1f\x23\x7c\xf4\xcb\xee\x98\x1b\x3e\x10\x8e\xfa\xf9\xeb\xfa\x54\x36\xa5\x5c\x7c\xf1\x78\x82\xfe\x5b\xf6\x2b\x9d\x80\xa1\xd0\x83\x60\xc0\x21\x87\xcf\xb8\xa1\x87\xb1\x9f\xab\xc2\xf9\x6f\xe9\xa5\xf9\x6a\x46\xb8\x35\x1d\x3f\x37\xe0\xa0\xd6\x29\x31\x5e\x1b\xfc\x8f\xf0\x06\x7d\xb5\x3d\x5e\xcb\xc1\xb4\xd1\x1d\xbe\x85\xd7\xe9\x0c\x3a\x6f\x13\x1b\xf1\x62\x74\xe3\x86\xe0\x8f\x25\x5b\xd6\xaa\xf5\x84\xfa\x5a\x2c\x43\x76\x2c\x8d\x7a\x53\x98\xf6\xf2\x56\xb7\x08\xa2\x6a\x6c\xc4\x76\xdc\xa1\x17\xae\x96\x39\xad\x75\xf1\x10\x35\x8f\xc8\x99\xa3\x4a\x78\xbd\x14\x63\xc8\x75\xf3\x8b\x6e\x3e\xc7\xcd\xaa\xc7\x51\x05\x83\xaa\xa7\x07\x0b\x58\x99\x95\x1f\xa2\x0f\xea\x9d\x17\xfa\xa3\x9f\x03\x9f\x4e\x0a\xf0\x76\x3f\x84\x4c\x29\x46\x0b\x07\x1d\x79\xf3\x8d\x1f\x36\xe0\xd1\x91\x1d\x2a\xbf\xc5\xa7\xa4\xc5\xb4\xe2\xe9\xdd\x95\x7b\x57\x23\x5a\x97\xf4\x9a\x96\x1d\xae\x54\xbc\x59\x5d\x42\xb1\x96\x20\xa8\x29\xb1\x13\xe1\x02\x7b\xb6\x21\xe1\x0c\x0c\x1f\x83\x16\xf7\x70\x54\xc6\x6d\x56\xe9\x9f\x3e\x7e\x88\x4c\x6f\x6a\xf9\xe6\xe7\xb5\x0a\xfc\x8f\xab\xcf\xe5\x4c\x30\x61\xfa\xf3\xeb\x1c\xdb\xe7\x7e\xcd\x5e\xa6\x17\x05\xae\x88\xb7\x3f\x6c\x2a\x0e\x14\xad\xaf\x2a\x57\x4f\xbc\x5c\x89\x4f\x0b\x5c\x09\x85\x78\x8a\x8b\x3e\x3b\x95\x78\x8c\x04\xbc\x89\xa7\x9b\x90\x28\x88\xaf\x00\x60\x4e\xc7\xa7\x53\xd9\xb0\x03\x00\xe9\xe2\xcf\xe1\x2a\xfd\xa6\x24\x69\x51\x78\xc4\x8b\x47\x7a\x98\x6f\xfc\xb9\x65\x45\x13\xfd\x5b\x3f\x36\xde\x28\xdb\x9e\x46\xc6\xa8\x75\x27\x36\x3c\xfa\x28\x37\xcd\x51\xdb\xec\x46\x1a\x36\x7c\xa0\xb9\x8f\xb7\x9e\xe3\xaa\x5a\x7f\x29\x63\x30\xe1\xfd\x19\x57\x9a\xa7\x65\x5c\xce\x5b\x41\xca\x75\x66\xb3\x43\xf7\x93\xa4\xb8\x04\xc7\x4f\x26\x7f\xa0\x48\xeb\xf2\x3b\x93\x05\xec\xdf\x53\xf6\x60\x81\x46\xa9\x1a\x9c\xe4\x71\xee\x74\xf3\x91\x93\x4f\x1f\xa7\xc6\x67\x5d\xfd\x7d\x7c\x7a\xe9\x9f\xf7\xdd\xdb\x26\x4c\x44\xa8\x6d\xd0\xbb\xa7\x60\x75\x8b\x69\xcd\x95\x11\x1b\x72\x67\x8c\x76\xbc\xc0\x2a\xd7\x49\xbc\xcd\xb4\xf9\xe4\xaa\xab\x70\x83\x70\xd7\xb2\x39\x58\x0b\xa7\xaa\x86\xaa\x60\x30\xea\x21\x59\xbc\x6b\xd1\xb0\x42\x77\x0d\x51\x6d\xf6\xb9\x72\x9a\x01\x9a\x6c\x3b\xfb\xbf\x0b\xc9\x0c\xae\xe7\xbf\x9b\x72\x22\xa8\x9d\x35\x60\xe9\xc1\xa8\xc0\x0b\x7c\x09\x05\x5b\xa3\x0b\x25\x11\x8f\x02\x70\xde\xd8\xe5\xa4\xef\x16\xb5\x3b\xf0\x30\xc8\x5f\x6f\xf1\x8a\x75\xad\xac\x03\x25\x7f\x37\xbb\xd1\x07\xe0\xa2\x62\xed\x0f\x74\x4e\x5b\x3e\xe1\xe6\x57\x75\xa3\x7c\x27\x37\xf8\xe0\xdb\xcf\xbd\x20\x84\xf4\x29\xfb\x52\x44\x95\x2d\x97\x5e\xdf\x99\x1e\x28\x2d\x6e\x74\x1f\xea\x63\x69\xf5\x9c\xe4\x9f\x26\x75\x39\xfa\xd9\x05\x5e\xe9\x53\xf7\x8b\x26\x31\x25\x3c\x1d\xa6\x24\xaa\x3c\xa4\x02\x57\x45\x57\x19\x37\x08\x74\x1f\x48\x00\xc8\xbe\x3f\x67\xd7\x2a\x90\x51\x4d\x57\x12\xb8\x21\xaf\xe3\x72\x4e\x6b\x4b\x10\xca\x1b\x2b\xcf\xb4\x22\x1f\xa7\x8b\x55\x4d\x96\x8a\x7f\xaa\x40\x22\xbe\xad\x72\x32\x11\xad\x79\x37\x9d\xd2\x82\x4a\xcb\x90\xd2\x4d\x41\x8a\xb5\x12\x6a\x94\xa9\x19\x18\x9d\xb7\x41\x1c\x5a\xe0\x95\x61\xdc\x2d\xd3\x92\xb0\xf7\x2e\xae\x1d\xe1\x37\x49\xda\xb0\xb0\xc3\x04\x5d\xc7\xfc\x4b\xd6\x3f\xe3\x04\xc4\x64\x9d\xb5\xa5\x67\xd6\x90\x7f\x76\xb4\x21\x73\x52\xb7\x09\x01\xdd\x03\x26\x48\x92\x3f\x10\x12\x1e\xf9\x24\x66\xdc\x10\x15\x4a\x05\xad\x85\x64\xee\x64\x3e\x64\x9d\x93\x56\x65\xbd\x5d\xc8\x1c\x73\x3b\xae\x3c\x5f\xee\x27\xce\x59\x91\xc2\xd7\x38\x4f\x41\x00\x05\x2e\x11\x27\x55\xef\x69\xa6\x81\xdc\x7b\x70\xdc\xeb\x3a\x67\x9c\x7e\x42\xa4\x6e\x1b\x4a\x24\x42\x40\x8c\x75\xd1\x46\x3c\xa4\xf5\xb5\x92\x4b\xe8\x96\xf3\x18\x07\xa5\xac\xb2\xe5\xce\x3c\xd6\x0e\xcf\xc9\x52\x81\x50\x58\xe4\x93\x9a\x2c\xf5\xef\x87\x21\x80\x7c\xad\x80\x9b\x53\xc4\x88\xbc\x04\xf7\x6a\xcb\xec\x76\xb4\xd9\xb9\xfb\xad\xa7\x4b\x70\xc5\x70\xf9\x4c\xbe\x15\x75\x06\x36\xb3\xf4\xd1\x35\xd8\x5d\x5b\xc3\xe6\xf8\x9a\x4c\xfc\x19\x6e\xa3\x96\x8d\x19\x21\xb9\x6b\xa7\xe9\xa7\x9d\xdd\x0b\x37\x6f\xa0\xe0\xa1\xab\xfe\x2e\x09\xf9\x58\xad\x04\x47\x61\x5d\x6b\x6b\x1d\x5e\xe3\xaa\xeb\x95\x3f\x46\xdd\x70\xb1\xe0\x6e\x9e\x41\x77\x93\x86\x13\x12\x80\x4d\x1c\x51\x8d\x96\x9f\x60\xe6\x6a\x74\x67\x6c\xf3\x6b\x5f\x17\x9f\x31\x43\x1f\x59\x50\x23\xce\x82\x15\xe1\x8a\xae\x45\x0b\xd2\x14\xa4\x6e\xf1\x95\xba\x31\x24\x8b\x96\xb1\x3a\x5e\x0e\x71\x24\x5f\x25\x70\x7d\xd2\xb5\x6f\x0d\x3c\x89\x68\xef\xa3\xf5\x9c\xa1\xe1\xdb\xca\x5b\x20\x0b\x3b\xfa\xdf\x3c\x43\x07\xbb\xfb\x19\x96\x77\xe2\xaf\x52\xf3\xbe\x4b\xd2\x2e\x09\xa9\xd1\x3e\x5c\x54\x07\x77\xfb\x98\x9b\xa4\x07\x7f\xc8\x34\x59\xd4\x36\x3e\x96\xd6\x57\xf2\x66\x3f\xe9\xa5\x0e\x73\x68\x7c\xe4\xc5\xa8\x0b\x3f\x59\x93\x6a\x72\x33\x3b\x8a\x00\xf7\xd2\x90\xa0\xa0\x0a\x84\x3c\x13\x03\x62\x2a\x09\xf8\xb9\x76\x5c\xdb\x49\x06\xca\x06\x92\x36\xc8\x87\x98\xd3\x76\xe2\x34\xb9\x84\xe2\x86\xf0\xa9\x91\x03\x47\x91\x0f\x5c\xd5\xcf\x8f\x24\x90\xc9\xc1\x96\x20\x1c\xf8\xec\x99\xfe\xec\xa9\x2e\xbd\x09\x1f\x6b\xc2\x38\xd8\x46\x8f\xb6\xd1\xe3\x6d\xf4\x64\x1b\xb1\x06\x3d\x1d\x74\x96\x17\xd1\xf4\x79\x7f\xe7\x77\xe0\xe9\xae\x84\xfc\xed\x93\xcf\x11\x73\xa7\x25\xbc\x1b\xe3\x86\x07\xb5\x74\x13\xc3\x7f\xd0\x2d\xde\x35\xe6\xd6\xb9\x11\xe2\x99\x25\x46\x08\xee\x89\x9e\xc9\xf6\x50\x13\x12\x1a\x03\x9a\xa8\xee\xaf\x8a\xaa\x04\xd1\x10\x5c\xcc\x54\xc0\xb1\x5b\xf8\x58\x29\x51\xf2\x35\x78\xdc\x90\xa2\x47\x87\x4e\x69\x61\x45\x89\xb2\x24\xf3\x8c\xa0\x2b\x7a\x4d\x6a\xb9\xdf\xaa\xd6\x33\x5e\x89\x4d\xc7\x65\x29\x9d\x75\xad\xad\xc4\xba\xeb\x0d\x7c\xa6\x34\xc6\x45\x43\xae\x41\x5e\x88\xa8\x5d\xb0\xcb\x7f\x30\x08\x15\xdb\x15\x8f\x9b\xae\xbc\x05\xee\x38\x91\xbd\x79\x85\xd4\x11\x4f\xcf\xba\xd6\xb7\xbd\x31\xc5\x48\xda\x6f\xdf\xb7\x3c\xf2\xa9\x20\x44\xf7\x9e\x32\xc8\xd9\xdd\x80\xde\x36\xae\x9f\xb1\x01\x10\x8b\xa1\xe8\x9e\x18\x09\xa9\x63\x71\x4a\x41\x39\xc0\xcd\x0a\xe2\x0f\x00\xa1\xe0\xc2\x7f\xaa\xe5\xd0\xb8\xc4\xae\x85\xfe\x41\x1f\x65\xd3\x25\x19\xdd\x3b\x27\x72\xdf\x64\x91\x5c\x45\x15\x42\xdc\x9b\x42\x21\xf4\xaa\x22\x45\xab\x24\xdb\x31\xb0\x1f\xad\x01\xbb\xe6\xa4\xe6\x1d\x1f\x0d\xfb\xf1\x68\xd8\xe4\x13\x29\xa0\x90\xc7\x68\xd8\x4f\x46\xc3\xbe\x26\x0d\x9d\xd2\x02\xaf\x05\xfe\xe9\x68\xf0\x92\xd4\x52\x80\x87\x33\xe4\xb2\xfc\xf1\xe0\xdb\x98\x3f\x4e\x2b\xa6\xd5\x04\x4b\xcb\xeb\x89\xbe\x76\x99\x01\x3b\x1b\x80\xfd\xf9\x4e\x52\xb8\xd2\x9d\x80\x81\x71\x9d\x9d\xca\x2a\x30\x4b\x5a\x55\x48\x46\x6b\x15\x84\x5e\x5b\x3b\x66\x7f\xe7\x30\xd3\x14\x8e\x72\xd4\x71\x52\xea\x60\x34\x78\x0a\x18\xc6\xa2\xab\x29\x9f\x69\xfe\xa6\xeb\xcd\x2c\x18\x6b\x50\xb7\x68\xe9\x9c\x20\x0f\x18\x6b\xe0\xa1\x92\x21\xa7\x0c\x77\xcb\x50\x85\x5b\xc2\x25\x1f\x41\x9c\x4d\xdb\xa5\xd0\x75\xff\xd9\xd1\x42\x08\xdb\x32\xd6\x28\xe2\xbf\x0b\xdc\xe0\x39\x69\x49\x23\x6b\xe3\x97\xf6\x50\xcf\xf1\x62\x01\xe1\xd9\x0a\x05\xde\xab\x20\xb3\x5b\x49\x6c\x5b\x71\x60\x2a\xf9\x96\x23\xa2\x99\xf4\x70\xf2\x69\x41\x8a\x16\x1a\x0b\x29\x1b\xc2\x0c\xb7\x3e\x4c\x48\xe6\x17\x38\xd6\xf8\xa5\x35\x6f\x09\x36\x66\x89\x69\x57\x69\xd7\x59\xbf\x0d\xaa\x36\xa6\x05\x5c\x81\xfa\x0f\x89\x99\xbf\x28\x87\x86\x60\x8d\xd2\x28\x95\xd5\xd3\xc5\x86\x3a\x8b\xa0\xb5\x7e\x75\x17\x74\x94\x94\x89\x57\x46\xa5\xc5\x41\x69\xe2\xc7\x01\xf5\x5c\xd7\xa8\x77\x3f\x04\x91\x37\x0e\x16\x43\x5e\xc0\x98\x23\xaf\xc2\x24\xc4\x1e\x94\xa4\x68\x08\xe6\x96\x12\x95\x4a\xc5\x67\xac\xab\xca\x84\x68\x1c\xf3\x87\xde\xd4\x57\x21\x12\x55\xd9\xfe\x00\xfe\x19\x0f\x50\x9a\x13\x82\x32\xbb\x33\x1c\x3b\xea\xcb\x35\xd1\x68\x6a\x83\xd2\xc2\x4c\x76\xd0\xc4\xba\xc1\xfe\x56\x55\x6c\xa9\x68\xb9\x61\x2d\x2b\x58\x05\x71\x42\xa4\x75\x0d\xe8\xd2\xa2\xa9\xcc\xea\x9e\xed\xdc\x66\xd4\xd3\xc6\x14\x51\x90\x46\xf8\x42\x69\xc3\xac\x31\x05\x2c\xc4\x31\x55\x35\xd4\x36\x63\x5b\x8d\x55\x60\x35\xd5\xe7\xe8\x60\x3f\x15\xa3\xb5\xc0\x35\x2d\x26\xf7\x2e\xe4\xca\x94\x85\x50\xbf\x24\x08\x8a\x4d\x51\x23\xe6\xbd\x7b\x6f\x90\x5e\xd6\x0e\x53\x48\x45\x28\xd4\x99\x6e\xc7\xe8\x48\xcd\x2a\x65\xb5\x30\xf8\x91\x16\x07\xbf\x14\xe1\xd9\x29\x28\x1f\xba\xfb\xb9\x84\x32\x64\x6f\xd2\xd7\x00\x5e\x2c\x1a\x28\x71\x67\xee\x83\x9e\xf6\x99\xc6\xe8\x08\xec\x19\x1a\xb2\x51\x2e\x41\x01\x77\x73\x62\xc8\x86\x6d\xaf\x1e\x54\x71\x84\x41\x08\x65\x35\xa7\x25\x69\x4c\x4c\x1a\x16\x64\xba\x60\x9c\x94\x7b\x8e\x89\xb7\x8f\x98\x8e\xd5\x8a\x34\x67\x24\x4b\xf5\x89\xf8\xc0\x61\x90\x2f\x18\xab\x22\xf6\x08\x9a\x92\xbc\xeb\x9c\xb7\xb2\x4d\x44\xbc\xb1\xe2\x70\xaf\xef\xbf\xd7\xf4\x77\x02\x5c\x4b\xac\x50\xb0\x14\x8d\x75\x89\x3a\x55\x5c\x10\x8e\xf5\xbd\x80\x5b\x58\xaf\x9c\xbf\x8e\x9c\x3b\x8e\x4e\x73\x5a\x35\xff\xa0\x1a\x96\xd4\x34\x6c\x9b\x12\x9c\x95\x63\x8f\x24\xee\xed\x16\xac\x2e\x70\x3b\xa1\xe5\x96\xfe\xf5\x9e\xd5\x1a\x74\xc7\x07\xd0\x1b\xb4\x8f\x93\x96\xa4\x6e\xc1\x92\x2f\x66\x71\x2f\x19\xc0\xe8\xff\xe5\xfd\x29\xb3\xb7\x58\x4d\xdc\x14\x4e\xee\xb6\x14\x75\xaa\x32\x82\xe3\xc0\x41\x67\x08\x89\xb6\xa8\x26\x86\x9c\x80\xcf\x71\xf0\x52\xe8\x08\x42\xc4\x19\xa2\xd1\x6b\x9a\x9e\x0b\xdc\x89\xc3\xa9\x16\xf6\x77\x39\xf4\x59\x7d\x8d\x2b\x5a\xc2\x51\xf8\x3b\x9a\x93\x76\xc6\xa2\x52\x78\x67\xca\xf3\x38\xc3\x8b\x05\xa9\x25\xb2\x9c\x58\xfd\xc8\x11\x61\x12\x55\xec\x0d\x17\x72\x4e\x05\x59\x9c\x95\x39\x6e\x3e\xfa\x39\x6b\x74\x3e\x27\x25\xc5\x2d\xa9\x56\x19\x0a\x8a\xe9\xba\x87\x8a\x7c\x72\x1b\xa6\x9d\x34\xe1\x85\x69\x01\x99\x97\xd1\xda\xd1\x9e\xfd\x15\x3e\x3d\xda\xca\x05\x20\xeb\x1f\x70\xdb\x76\x35\xc7\x53\x22\x6b\x33\x1d\xd7\xe5\x3b\x32\xed\xea\xd2\xe1\xe4\x61\xc7\x6c\x03\x7d\x3d\xca\x76\xc6\xba\x08\xb8\x87\x8f\xf0\x2c\xfb\xe6\xda\x01\x6e\x18\xb7\x62\xbf\xb2\xc6\x22\xd0\xa5\x6c\xf0\x44\x5b\x34\x51\xae\x03\x8e\x0a\x5c\x55\x32\xfb\x59\x3d\x41\x22\x17\xa0\xed\xd4\x94\x9e\xe0\x97\x64\xa5\x69\x79\x0b\xc0\xe6\xa4\xad\x24\xb2\xf4\x4f\x96\xf1\xba\xba\x4c\x1f\x13\x76\x81\x8d\x96\xd8\xd4\x7c\x7d\x34\xa5\xc5\xb6\x31\x5b\x2d\x8f\xbf\x8c\xc9\x6b\x80\x20\x79\x94\xe3\x6e\x6a\x6b\x56\x9c\xc9\x17\x14\x83\x99\x47\xdc\xb1\xdc\xf1\xd8\x63\x66\xd7\xf3\x47\xe0\x97\x81\xda\x06\xb7\x92\x90\xd2\x32\x8f\x9c\x4c\x69\x66\x33\x5c\x83\x79\xb8\xaa\x51\xaa\x04\x6b\xd0\x89\x35\xba\x8d\x74\xc5\x36\xda\xc4\xc5\xc2\x2e\x71\xf1\x51\x99\xe4\x68\xd3\x9b\xf6\x99\xaf\xe6\xf2\xc5\xeb\x38\x25\x2f\xa7\x54\x1f\x3a\x5d\x42\xd7\xdc\x2a\x2d\x90\x1f\xef\x2e\x65\xb8\x87\xb8\x94\x0d\x61\x15\x51\x7e\xb0\x54\x0e\x4c\xa2\x97\x0b\xb9\xa4\x1c\x2e\x01\xb8\xe9\x54\x2b\x5f\xa7\x85\x9d\x9e\x4e\x08\x6e\x06\x35\xdb\x9c\xae\x52\xbe\x0d\x54\x2c\x00\xa6\x21\x8f\x49\x2d\x0d\x8c\xf2\xaa\x57\x73\x16\xb2\x68\xc5\x59\xe4\x2a\x19\x55\xbc\xea\xb7\xdf\x92\xcd\xb3\x46\xdc\x6b\xca\x78\xac\x1c\xf2\x71\x22\x1f\xf9\x67\x87\x41\xf5\x52\xde\x5c\xab\x4e\x25\x48\x47\x01\x74\x52\x8a\x84\x66\x35\x65\x4d\x91\x6e\x2a\x9e\x25\xb9\xcd\x14\xc3\x12\x6b\xeb\x2e\x81\x20\x0e\x02\x72\xd0\xfa\x83\x8a\xb9\x7a\x10\x74\x05\x74\x21\xd8\xc5\x18\xf3\xd3\x54\xfc\x82\x6b\xc4\x16\xa4\x96\x36\x62\x5c\xaf\xd0\x9c\x35\x31\x84\x6b\xdc\x68\xea\x7a\xc7\x2a\xb0\xe5\x9f\xc0\x04\x22\xf3\x70\x56\x7a\x3f\x49\xbd\x9e\x10\xe3\x83\xa1\x4e\x54\x0e\x7a\x72\x74\xb7\x43\x20\xf8\x37\xee\xa6\xa4\xab\x08\xda\x73\x94\x4b\x30\x1a\x37\x8a\x3f\x9d\x13\x95\x63\x73\x30\x20\x9d\xa0\xcd\x5a\x38\xfd\x39\xc6\x78\x1c\xb2\x74\x26\x97\x9a\x37\x7a\xf6\x0d\x97\xd0\x28\x5a\xd2\x80\x35\x51\x07\xac\x55\x95\x1b\xe9\x2e\xb8\x87\x3e\x9a\xf2\x34\xa6\x2b\x8e\x9b\x23\x48\x55\x20\x8a\x60\x50\xc9\xc4\x29\x71\x0e\xac\x5f\x9a\xd6\x99\xc2\xd5\x19\x11\x7c\xed\x44\x06\x03\x32\x91\xe7\x34\x2e\xf9\xb1\x27\xcb\x6d\x54\xa2\x54\x5f\x22\x84\xf9\x23\x9f\xb1\x34\xa6\x9e\x23\xda\xe4\x7d\xac\x7f\xbe\x44\x0a\xdf\xf0\xe2\x46\x26\xf5\xa5\x72\xc0\xe1\xc6\x48\xaf\x27\xb1\xd3\x99\xa2\x8c\x63\x30\x31\x2a\xcf\xaf\xa7\xc7\xb4\xfe\x59\x4f\xb7\x1b\x45\x47\x6b\x9a\x14\x36\x37\x83\xb8\x88\xe3\x0d\xab\x28\xd6\x71\x77\x8c\x44\x2d\xc5\x90\xff\x9c\x54\x04\x37\x48\x59\x0e\xb5\x1d\xf3\x92\x48\xe7\xad\x2b\xd3\x99\x3e\x2e\x65\xfa\x0e\xed\xb1\x43\xee\xe7\x34\x92\x77\x4a\x23\x91\xf6\x98\xcb\x95\xd0\x46\x5b\xa5\x70\xd0\x46\xcf\xa6\x65\xe8\x7f\x49\xc3\x1c\xbd\xc5\xcd\x09\x01\x25\xd6\x16\xdf\x0d\xeb\x19\xe4\xdd\xc1\xcd\x8d\x35\x13\xa3\x4b\xa9\xd8\x68\xa9\x4a\x48\x4c\x0d\xdb\x90\x20\xb3\xf8\x77\xb2\x05\xba\x00\x9c\x39\x7c\x90\xeb\x85\xd8\x09\x5a\x8d\xb5\x30\x60\x57\xe7\x8c\x11\x24\xb0\x12\x1a\xc2\x46\xd9\x46\x42\x2b\x77\xdc\x0c\xa9\x51\x36\x8b\xa4\xd1\x6b\x41\x1a\xca\x4a\xb4\x14\x5a\x41\x2a\x09\xcd\xb7\x13\x37\xc0\xfe\xd8\x52\xca\xbd\x61\xa1\xc0\x86\x54\x40\x4b\x36\x4e\x3e\x6f\x29\x4e\x05\x63\xaf\x19\xf1\x28\x14\xfe\x48\x20\xf2\x75\x83\xf5\x7c\xbd\x6d\xd3\x91\x40\xe0\xc9\x81\x0b\xb0\xfc\x52\x5b\x07\x34\x2a\xd4\x9a\xc4\x29\x35\x76\x01\xc1\x08\xba\xda\x33\xf9\xf3\xc8\x0c\xaf\xcf\xb4\x3f\xb0\xc0\xb6\xdf\xcc\x7a\x44\xbc\x7a\xc2\x42\xa0\x07\x3f\x97\x4e\xad\x4d\x9e\x26\xa1\x24\x46\x47\xb9\xd7\xba\x0e\xe4\x1d\x9b\x74\x27\xc1\x24\x0f\xc3\x59\xa7\xc0\x08\xd5\x05\x0e\x05\xab\xc8\x45\xc5\x40\x91\xf8\x7d\x89\x09\xb6\xeb\x66\xd4\xa4\x84\x65\xee\x49\xcb\x2a\xb1\x84\xf2\x16\xfc\x33\xf6\xac\xd2\x29\xa2\x42\x77\xab\xcb\x80\x9a\x24\x8b\x35\x31\xfe\x6e\xc8\x7e\xd4\xc6\x35\xd5\x58\x5e\xc8\xcd\xba\x2a\x4c\x64\xf3\xf4\x5d\x92\xad\xb4\xe9\xe7\xa4\xc2\x58\x20\x0c\x32\x9c\xf7\xf6\xf6\x3c\x80\x6f\x75\xf4\x40\xb4\xf9\x87\xe8\xd8\x0b\xa2\x10\x54\x1c\x14\x95\xd3\x6f\x78\x10\x55\x16\x8d\xeb\x75\x05\xff\x96\xca\x6f\x88\x97\xbf\x0b\x61\x0c\x5e\xcc\x83\x07\xb0\x98\x91\xe2\xa3\x69\x49\x6e\x51\x5d\xb0\xa6\x21\x7c\xc1\x6a\x69\x0a\x81\x30\x35\xed\x44\x43\x67\xa7\x50\xf9\xa1\xab\x21\x13\x48\x7c\x4c\x1a\xc7\x63\xa0\x99\x00\x00\xa2\x2d\xd7\xd5\x33\xa7\x0c\xac\x39\x02\x72\x91\x0f\x51\x18\x73\x94\x86\x8d\xc6\xae\x73\xa6\xf7\xc6\xfd\x6b\xf0\xe0\x48\x3e\x51\xb0\xc5\x4a\x51\xcb\x42\xb9\x80\x06\x39\xc5\xde\x1e\xfa\x89\xc8\x48\x30\x1a\x28\x92\xd1\x74\x21\x79\x41\x8b\x64\x82\xe5\xa6\xec\x5a\xe9\x43\x21\x65\x6c\x4b\xbd\xda\x0b\xa5\xa1\x51\xf9\x0e\xef\x2e\x13\x65\x50\xe0\xc4\x69\xf6\x6f\x6e\x40\x39\xd2\x12\x56\x0f\x14\x7a\xc5\xda\x96\xd4\x50\x44\xb8\x86\x63\x81\x61\x5c\x19\x68\xd3\xef\x75\x0a\x83\x09\x61\x7a\x60\x7a\xbe\x24\xd2\x1d\x4c\x22\x74\x44\x0b\x37\x05\x58\xa9\x91\x63\x95\xe4\xc9\x65\xc9\xb6\x83\xfd\xfd\xf0\x25\xe9\x74\xee\xf5\xfb\x29\xd1\x40\x5a\x0a\x8d\x8c\xa7\x2c\x8b\x2d\x9d\x47\x3b\xc0\xa6\x12\x20\xae\x34\x7b\x09\x9c\xc7\x29\xc7\x9e\xce\x3f\x11\xc7\xa8\x8e\xd6\xda\xa7\xcc\x6f\xc6\x34\xae\xa1\x41\xb6\x41\x50\xde\xcc\xb7\x12\x88\x5f\x5f\x75\x95\xed\x43\xf5\x42\x2a\x68\xe1\xb5\xa4\x21\x5e\x79\xcd\xb0\xd2\x73\x1c\xd9\x32\x2b\x35\xb9\x51\x9d\x41\x5c\x5c\x9d\x71\xbd\x17\x92\x55\xa0\x23\x14\x72\x62\x23\x06\x7f\xff\xbd\x92\x4d\x52\x0a\x34\x2e\xe7\xb4\xde\xf1\xe3\x1c\xc4\xd0\x1c\x4d\x4c\x04\xe3\x9e\x8a\xc1\x94\xbf\xaa\x90\xc9\x3d\x37\x08\x31\x9e\xe8\xde\x9e\x09\xc6\x36\xc0\x8f\xcf\x4f\xe5\x21\x0b\xcf\x74\xd2\xc5\xea\xa3\x02\xdd\xb5\x11\xdf\xe8\xfe\x7d\x34\xb9\x1b\x6c\xc9\x6f\xbf\xa1\xbb\x3e\x66\x72\xfe\x54\x47\xae\x19\x23\xb0\xbb\x3f\x5f\x54\x99\x4d\x0d\x58\xb0\xba\xa5\x75\x17\x63\x28\x6d\x0e\x59\x90\x66\x4e\x39\xa7\xac\xae\x74\x04\xa7\xde\x4d\x79\x1b\x25\x37\xea\xfc\xcd\xfb\x97\x87\xe8\xd8\x89\xfa\x54\x61\x7d\x8e\x3c\xb3\x68\x28\x6b\xb4\x63\xe1\x60\x7f\x7f\xe7\xd5\x0f\x6f\x7e\x8a\xf3\xcb\x52\xe0\x27\x2a\x4a\x3b\x20\x87\x2d\xe0\x49\x52\x34\x95\x9c\x4b\x05\x00\x60\xd4\x92\xf9\x82\x35\xb8\x59\xa1\xab\x06\x17\x46\x09\x52\xdf\xa7\xc6\x90\x43\xb4\x90\x9d\x7b\xd5\xe0\xba\x9c\x62\xa8\x6f\x5b\x86\x4d\x71\xe6\x78\xa5\x2e\x08\x25\x4f\x88\x45\x8b\x91\xa2\xa5\xec\xa6\xc6\x81\xdc\x3b\xa8\x62\xeb\xa1\x0b\xd6\x46\xa8\x18\xd2\xa3\xf8\x37\xef\xd2\x04\x1f\xa7\xb9\xec\xed\x21\xb4\x83\xde\x54\xe2\x94\xf0\x08\x57\xdb\xba\xb9\x91\xab\xde\x01\x64\xb0\x25\xa4\x0f\x91\x04\x79\x4e\x96\x12\xa4\x0c\x92\xb7\x0a\x8e\x84\x69\x6b\xf0\x99\x6b\xf3\x46\xc7\xf3\xc8\x3f\x9e\xe1\xe9\x14\x1f\xf9\xa7\x73\xf3\x87\x73\x9d\xb3\xd2\x63\xdf\x09\x2f\xd8\x6c\xb6\xfd\x4b\x2f\xc3\x41\x07\xc2\x43\xc3\x2a\xd2\xb4\x98\xd6\x4e\xbc\x3f\x17\x3a\x0f\xc2\xd7\x98\x56\x82\x79\x08\x8a\x4e\x44\x8f\x71\xe6\xb7\x27\x9c\x0b\x42\x4b\x65\xe4\x80\x58\x02\xa3\xea\x96\xa0\xea\x0d\x18\xc7\x83\xa9\x14\x91\x86\x20\x71\x2c\xd8\xbc\x5a\x09\x1c\xcb\x90\x5c\x23\x2a\x80\x88\x20\x05\x1c\x2a\x2b\xe3\x94\x7e\xe6\xc4\xb9\xc3\x15\xf4\xb1\xb5\x60\xc0\x82\x5f\x54\x1d\x87\x56\x0d\x36\xaa\xd1\x31\x72\xc9\x5e\x0c\xe0\xf9\xd2\xc9\xf6\xfe\x08\xc7\x55\x15\x2d\xb5\x22\x53\x6b\xa6\x9b\xca\x0e\xa8\x0e\x00\x44\x3e\x09\x21\x1c\xba\x47\xcf\x17\x15\x2d\x68\xeb\xae\x4e\xe8\xe4\x54\x69\x66\xbe\x08\x6f\xb6\x01\xd0\x25\xd3\x9c\x95\x30\x09\xe5\x14\x9d\xec\x0c\x93\xea\xec\x28\x5e\x6d\x83\x6b\x4e\xe3\x25\x64\x25\xff\x84\xf6\x1b\xd6\x50\x74\xbc\x68\xc6\x6b\x73\x7b\x5f\x5d\xa4\x3d\xf4\xe4\x89\x64\x81\xeb\x59\xab\x54\x93\x58\xf6\xff\x01\x0c\x75\xb0\xd5\x5c\xd5\x2c\x0c\x5a\xb6\x25\xcd\x86\x5e\x4a\xd2\x3a\xe9\x56\xbe\x92\x34\x2e\xed\x8a\x6f\x09\x39\xe8\xd7\xcf\xd1\x2c\xc8\x7c\xd1\xae\xfc\x47\x2d\x6a\x82\x91\xd0\x11\xfa\xf5\xe0\x10\xfd\xfa\x79\x1b\x3d\x92\xff\x3c\x96\xff\x3c\x91\xff\x3c\x15\xff\x0c\x66\xf1\x79\x66\x88\xc4\xf0\x23\xf2\xb2\x42\x1b\x0b\x54\x8e\x12\xec\xc0\x06\xb2\x19\x3a\xd0\x62\x77\x52\x96\xf4\xf7\x40\x49\xab\xe8\x28\xf8\xfc\x83\xf2\xd5\xf6\x38\x6b\xcd\x70\xea\x59\xf4\xfc\xc8\x4d\x41\x51\x1f\xa6\x79\xbe\x8c\x8b\xc0\x55\xa5\xd9\x64\x23\x63\xfe\x4d\x35\x03\xcb\x46\xe0\x29\xad\x97\xfa\x16\xba\x10\x1f\x56\x11\x49\x2e\x32\xa7\x8d\xe8\x9f\x5b\x5c\x44\x89\xb0\x37\x53\xf3\x3d\x87\xae\x87\xea\x18\x4e\xf2\x93\x55\x39\x59\x5b\xe8\xf9\x68\xcc\xe6\xd0\x7d\x0e\xb1\xa9\x31\xbe\x41\xca\x28\x4b\xe0\x6d\x6e\x95\x9e\x90\x31\xa7\x93\xd5\x72\xa3\x9d\xe8\xaa\x19\x68\xc6\x96\x68\xae\x95\x7e\xb0\xbf\xa8\x1d\xb6\x61\x12\x66\x24\x69\x75\xd0\xe1\x12\xc9\x38\x09\xa4\x18\x67\xdd\xcd\x01\x5b\xef\x99\xb4\xc3\x6b\x9e\x66\xfd\xfe\xb7\xc2\xf7\x4e\x8c\xef\xf1\xd8\x06\x8d\xcd\xcc\xef\xb8\x14\x8a\xe8\x3a\x43\x87\x6b\xcb\xba\x7d\xcf\xea\x52\x68\x63\xe6\x9a\xa6\xe2\x6f\x6a\x7a\x08\x45\x7b\x88\x9b\x06\xaf\x8c\x0d\x25\x65\xd7\x70\x51\x5c\x92\x8a\x08\xaa\x50\xb1\x8d\x72\x05\x8a\x2f\xfa\x45\xbe\x06\x31\xb2\xb7\x87\xde\xf9\xa2\x48\x38\xe3\x31\x93\x5a\xce\xa8\x2c\xe3\xe1\x61\xa7\x27\x54\x44\x6f\x86\x1c\x52\x10\xb8\xd9\x08\xe5\xc3\x81\x49\x4d\xb6\xd0\xff\x53\xf9\x14\x23\x36\x28\xcd\x00\x90\x17\x47\x06\x15\x48\xdc\x50\xad\x6d\x55\xe9\x58\x09\x2a\xdb\xa8\x6d\x56\x08\x5f\x61\x5a\xf7\x41\x93\x76\x64\x01\xa6\x66\xed\x36\xc4\x38\x8b\x0f\xf2\x66\x29\xf7\x47\x7a\xbe\xcd\x0e\x7e\x30\x48\x18\x08\x5c\xd6\x3f\xd9\x97\x51\xdb\x24\x24\x6e\xf7\x27\xda\xa2\xa3\xf8\xa3\x54\x30\x8e\xfe\x49\x53\x56\x42\xa6\x47\x5e\x0b\x59\x71\x67\x48\xae\xad\xac\x57\x4a\x2a\x1c\x71\x69\xc0\x7e\xd1\xda\x5b\xf4\xd0\x75\x61\xeb\xfc\x45\xb7\xa7\x4b\x37\x1f\xcc\x00\x3f\x7f\x99\x9b\x27\x87\x95\x0b\x2d\x98\xa9\xf0\x5e\x1b\x1b\x68\x6c\xeb\x52\x9f\x60\x4a\x21\x10\x1a\xb2\xfb\xcd\xb6\x1b\x5f\x07\xad\x77\xc5\xe5\x20\x24\xdb\x0c\xd9\xa5\x39\x6f\x2f\x4b\xf6\xf8\x64\xbc\x94\xde\x60\x75\xe7\x56\xd3\xb7\x92\x7b\xb3\x61\x45\x07\x23\x6e\xb7\x1c\x78\x93\xd5\x21\x6f\xbf\x91\x97\xdf\x39\x53\x0d\xda\x20\xec\x80\x10\x15\x9f\x09\xc7\xd7\xa9\x2c\xca\x55\xe8\xa6\x13\xac\xb0\xf2\x8c\xb6\x5a\x2f\xdb\x14\xae\x47\xdf\x41\x09\x75\xda\xff\x6b\x2d\x3f\xde\x86\x02\xe6\x46\x06\xcb\x99\xd7\xd7\x8f\x93\x0b\x8b\xd9\x60\x41\xe8\x89\xbc\x2d\xa5\x12\xb2\x54\x9d\x2c\x6b\x77\xf2\x7d\x5d\x98\x93\x52\x7b\x04\xdc\x72\xee\xb6\x1c\x7e\x10\x31\x77\xeb\x8a\x66\xa1\xfc\x6f\x6b\x5a\xda\x0a\xa6\xc7\x20\x10\x1c\x05\xf0\x76\xe3\x52\xab\xc8\x35\xb3\xdb\xfa\x90\xc1\x7b\xd9\x62\xae\xa1\xfa\xe8\xf5\xa2\xaa\x43\xcc\xc5\xa8\xdd\xd6\x19\xd0\x73\x2a\x18\x99\xe9\xbd\xe6\xc1\x85\xf6\x4a\x89\xf5\x39\x85\x0d\x52\x82\x02\x84\xf2\xa9\x72\x43\x76\xfa\x6f\x31\x2d\x65\xcd\xdb\x43\x6f\xd1\xdb\x20\xb7\xbe\x22\x42\x65\xdc\xdf\xdd\xdf\x56\x85\x7c\xd5\x1f\x53\x42\xf8\x8b\xae\xa9\xd5\x07\xe9\x36\xf7\x32\x62\x49\x32\x82\x7a\x87\xd9\x64\x55\xab\x38\xcb\x14\x2c\x60\x3f\xf5\x03\xa8\x83\xc3\x95\xb9\xc6\xd8\x25\x9c\x34\xe0\xa4\x15\xd6\x28\xba\xda\x34\x1d\xa7\x42\xa7\x85\x38\x59\xc0\x32\x9f\x5b\xed\x01\x4d\xac\x50\x16\x6f\xf6\x19\x06\x8a\x49\x71\x4a\x88\x72\xc0\x28\x33\x80\xc0\xe9\xee\x15\x69\x5f\x99\x2f\x02\xf7\xa5\x90\x49\x25\xb6\x83\x92\xb9\x89\xca\xb4\x74\xea\x0e\xf0\xcc\xa7\xdb\x98\x06\x3c\xb0\x41\x55\x62\xb4\xe3\x80\xea\xe3\x83\x7b\x7b\xe8\x85\x6d\xbc\x38\x25\x44\x7a\x5a\x94\xa9\x49\x15\x18\xd7\x17\x90\xa0\x94\xd0\x4b\xae\x7c\x2e\x6e\xab\x0c\x54\x61\xde\xbf\xd7\x0a\x97\xb2\x8c\x60\x8f\x23\x4d\xa0\x17\x1e\x9a\xc4\x05\xc2\x15\x7c\x59\x8d\xfc\xd9\x8e\x81\x67\xc2\x38\xa5\xef\xea\x95\xa4\x7c\x78\xcc\x04\x76\x5a\xdc\xc4\x56\xa2\xbf\x8a\xd3\xea\xb7\x01\x03\x1f\x42\x58\xf5\xda\xd9\x35\x7f\x27\x72\xb1\x99\xb0\xe8\x8a\xc9\x79\xfd\x15\x8a\x68\xf6\x1b\x93\x24\x0e\x9e\xdd\x7f\xa5\x5f\xda\x95\x6f\x25\x2f\x23\x07\x6a\x5a\xe6\x4a\x39\xd1\x55\xcf\xcd\xb9\x9c\x4c\x43\xa6\xa4\x21\x75\x11\xc6\xac\x21\x38\x20\x16\xdb\x71\xfb\x47\x7f\xfc\x5d\x01\x2f\x28\x26\xef\xa1\xa8\xbf\x27\xb9\x45\xb4\x2d\x5a\x0d\xd5\x26\x53\xd7\xc0\x86\xdc\xb4\xc1\x78\xc9\xaa\xf4\x3e\x70\x55\x67\x39\xf5\x62\xea\x32\x41\x29\x2d\x33\x91\xd8\xa1\x2a\xc5\x87\x18\xf6\xd0\x9f\xc9\x1e\x12\x4f\x84\x59\x42\x28\x15\xc2\x1e\xce\x79\x6c\x95\x60\x74\xcb\x88\xf6\x1e\x78\xee\xf8\x09\xac\xe6\xeb\xf1\x66\x4c\x1c\x49\x74\xa3\x64\x70\xf4\x8d\x30\x1e\x4c\x28\xa3\x5f\xa7\x1a\x10\xc8\x4b\x5a\x7b\x5c\xd3\x74\x37\x2a\xec\xde\x1b\x7f\x8c\x2f\xc9\x69\xb3\x3d\x6e\x12\x09\xf2\xea\x3b\xb7\xe2\xaa\xd3\x72\x06\x3a\xca\xdd\x3f\xfe\x25\xf7\xfc\x68\xe8\x96\x73\x20\x66\x25\x35\x5f\x1e\xb8\xb9\x6c\xa4\x7f\xb3\x02\x92\xc7\xb6\x7c\x51\xc9\x23\x90\x7c\xf7\xdd\x2f\x2e\x37\xdd\x48\x66\xba\x8d\xbc\x04\x3d\x0b\x78\xdb\xb0\x55\x70\x4d\x4e\x01\x75\x4e\x21\x31\xed\xec\x63\x73\x02\x3e\x32\x0f\x4c\xa9\x60\xb8\x78\xec\xd1\x6a\xa4\x65\x96\x7b\x35\x8d\xbc\xe2\xec\x91\x0b\x3d\x13\x80\x7c\xc3\x5a\xc9\x89\x10\x37\x39\x6c\x26\x26\x2e\xeb\xa6\x7a\x6b\x9d\x76\x26\x00\x63\xeb\x6e\x84\x62\xdd\x55\x8b\x77\x73\x63\x03\x90\x2a\x58\x22\x4b\x49\x1c\x3d\x20\x6a\x99\xc6\x91\x1d\xfb\xbd\x7d\x26\x90\xa8\xc4\x86\xb9\x00\x8e\x32\x42\x8c\xea\x72\x92\x40\x50\xd0\x6c\x03\x54\x0b\xb7\xd3\xc6\xcf\x7d\x45\x24\x3d\xeb\x3b\x2c\x5b\x16\xe3\x97\x6d\x47\xba\xaa\xa5\x8b\x8a\xca\x22\xe6\xd6\x59\xed\xe1\x03\x5c\xd5\x51\x8c\x9e\x41\x8c\x9c\x97\x2c\xf1\x3f\xae\xc8\xea\x9e\x8b\x90\x54\x0b\xe3\x84\x38\x72\x88\x3e\x24\x40\x47\x3d\x46\xd0\x11\xfa\xf0\x73\xb2\xe9\xa0\xac\x3f\xeb\x96\xa0\x82\x13\x24\xee\x9f\x19\xa9\x1c\x4f\x78\x8a\x9b\xf0\x68\x92\xbc\x9b\xab\xc1\x7f\xd2\x10\xa4\xda\x91\x1f\xdb\xb6\x7e\xe1\xb6\x32\x6b\x72\xb4\xdc\x01\x73\x06\x07\xe4\x09\x09\xdc\xe7\x33\x17\xaa\x99\x42\x7a\x2e\xa9\x1c\xbf\xec\x92\x55\x44\xa3\x22\x9d\x10\x94\xce\xdb\x75\xd0\xa9\x6d\xf6\x1a\xa5\xd1\xa9\xae\x63\x96\x98\x3d\x4f\x39\xf6\x19\x37\x65\xb0\x5e\xbe\x04\xfc\xaf\x13\x71\xe8\x86\x82\x3c\xb0\x8c\xb4\xc0\xb5\xc0\x87\x2e\xd5\x55\xca\xda\x69\x25\x9d\x82\x32\xe0\xd6\xb3\x4d\x41\x3c\x73\x9b\xd0\x38\x50\xa5\x49\x90\x33\x1f\x2e\x9c\x6c\x3c\x27\x7d\x40\xad\x6e\x77\xaa\x5e\x7d\xcf\x9c\xda\x62\x47\x29\x04\xea\x18\xc2\x84\xeb\x77\x0c\x15\x0e\x3f\x33\x58\x6e\x20\x6d\x34\xf1\x58\x5a\xcd\x9a\xb9\x39\xdc\xea\x9c\x99\x3c\x7a\x5b\x22\x0d\x82\x49\x74\x14\x89\xdd\x97\x08\xbe\xdf\x8a\xc7\xf4\xd4\x1e\xca\x88\xff\x26\xe2\x87\x03\x90\xf9\xb1\x98\x0b\xf0\x0f\x56\x81\x3f\xfb\x28\x1e\xf7\x9b\x9e\x2d\x4b\xa2\xe6\xb8\x2c\x03\xe9\x41\x91\x87\xe4\x42\x96\xc9\x6b\xb4\x24\xcf\xab\xda\xe0\x98\xc7\x25\x3e\x7c\x88\x26\xd1\xb4\x77\xfa\xd6\x99\x09\xb1\x0d\x19\x7f\xfa\x58\x86\x3c\x3f\xa8\xf5\x95\x3e\x9e\x39\xce\x67\xd8\xbf\x3a\xba\x19\xa6\x8b\xdc\x18\x6f\x87\xf2\x68\xe3\x9c\x42\x73\x40\x65\xdf\xaf\x61\x6d\x71\xad\x84\x67\xb4\xe9\xa4\x67\xb4\xc1\x23\x3c\x90\xf3\x3a\x1c\x16\x00\x8e\x99\xa8\x35\x9a\xb4\x88\x53\xee\xd5\x2f\x87\x02\x91\x79\x17\x4d\xc8\x14\x9d\x62\x8b\xbd\x57\x7c\xaf\xdf\xdb\x51\x08\x0d\x3b\x18\xc8\x23\x1e\xc1\x0d\x32\x23\xa4\xd8\x42\x7a\x12\xeb\xf1\x06\xe4\xf3\x07\x43\xfa\x8e\xcb\xc2\xb2\x09\xde\xcd\x73\x14\x33\x96\x27\xa4\xe7\xbc\x33\xb8\xdc\x0c\xad\x2a\x07\x76\x3f\xa2\x94\x70\x6d\x22\x41\x7b\xfc\xa1\xba\x94\x81\xaf\xdc\x3c\xe0\xa8\xe8\xd2\xae\x3c\x3a\x8d\xd6\x14\xcf\xe0\x9b\x35\xaa\xb6\x6f\x19\x83\xe6\xa0\x53\xf9\xa4\x6b\x5d\xc2\xdb\xdc\x1c\xf2\x43\x8f\xbd\xa7\xe2\x6f\x1f\xfa\x53\xce\x0f\xb1\x3e\xe1\xc7\x8f\xec\x04\x83\xa5\xc6\x49\x07\x10\x84\xd7\xcd\xee\x50\x9f\x2b\xc7\x5a\x64\x5a\x5d\x0d\x13\x73\x3c\x99\x9c\x09\x38\x69\xeb\xec\xc7\xf5\x20\x28\xe9\xf2\x82\x1a\x7b\xda\x16\x6b\xbf\x1c\x34\x3a\x69\x1e\xa1\xf5\x51\xa5\xe4\x25\xce\xfb\x1e\x9a\xb8\x5a\xee\xce\xf0\xb5\x11\xfb\x1d\x5c\x35\xf7\x6d\xd5\xb9\x1c\x26\xd2\x34\x1f\x26\xe7\x16\x6a\x3c\x7b\x51\x36\x9a\xdf\xce\x53\x7a\x16\x7b\x54\x0a\xcf\x10\xd1\x57\x0e\x30\x2f\x39\xab\x92\xdb\x03\x4c\x69\xb3\x0a\xc9\x26\x24\x58\x6f\x0b\x92\x81\x9f\xf1\x08\x47\xba\x28\x54\x5f\x72\xc0\x08\x4c\x7c\x65\x49\x30\xa8\x73\xa3\xf4\x08\xa8\x12\xa7\x2a\x4f\xcd\x70\xa2\xc4\x92\xdb\x4f\xce\x2f\x07\x6e\x04\x18\xdf\x9b\xef\xd7\x7e\xfa\x57\x10\x10\xf7\xbe\x80\x94\xb6\x29\xa1\x6a\x80\x40\x51\x52\x66\xf0\x29\xf5\xab\x09\x0a\x46\x60\xfb\xda\xd2\xc1\x0d\x06\x1e\x23\x12\x04\x2c\xc5\xf9\xe8\xa6\x97\xff\xc0\x02\xfe\x58\xd7\xfc\x71\xd0\x5d\x3a\x3f\x83\x9b\xdf\xf5\x99\x85\x6e\xee\x82\x07\x43\xbb\x32\xc1\x1f\x8d\xb0\x3b\x8f\x30\xed\x7a\x76\xe9\xe4\x4c\xd3\xad\xbd\x79\xd0\x35\x71\xed\xd0\x2b\x59\xbd\x46\x55\xb8\x52\x85\xef\x65\x05\x03\x3f\xf0\x4a\xb0\x58\xd5\x70\xd6\xfb\xfc\xbd\xc3\xcb\xdc\x08\x0c\x9d\x3a\x2c\x73\xb1\xae\x1d\x5b\x5b\xae\x4a\x82\x07\x0a\xa2\x24\x65\x49\x05\x21\xab\x3a\xf5\x8d\x21\x90\x43\x4e\x5f\x87\x28\xae\xe2\x3a\x69\x02\xde\x8f\xb5\xdb\xe8\x8e\x70\x1d\xd4\x08\x71\x97\xe8\x12\x52\xf5\x25\x54\xc6\x89\xd7\xb1\xde\x94\xf6\xb2\x53\xc8\xfa\x6a\xdc\xbe\x94\xa3\xda\xc5\x8c\x29\xfb\x78\x88\xee\x9d\xe0\x1a\x02\xb5\x9c\xfd\xa1\xc9\x72\xe7\x88\x72\xc4\x5b\x5a\x41\xb6\xf9\xa2\x61\x57\x0d\xe1\xfd\xbd\x47\xfe\x70\xe5\x52\xc2\xe2\x0c\xbd\x93\x4a\x97\xf4\x35\x3d\xbc\xfb\x13\x9b\xc2\xca\x0e\x7d\x2b\x3a\x67\xa9\x62\x0e\xb4\x46\x6a\x06\x3d\x25\x1d\xde\x99\x6c\xae\xde\xaa\x05\xa9\xa2\x14\x8e\xd3\x2e\x58\x53\xec\x32\x1d\x5d\x40\x38\xc2\x4e\x38\x6a\x3a\x71\x2a\xc6\xd6\x57\x74\x38\xe6\x2b\x22\x0c\x68\x15\x9b\x2f\x8a\x60\x92\x92\x8f\x6e\x56\x29\xc0\x44\x2c\x47\xe5\x63\x70\xd2\x77\x8a\x32\x95\x64\x73\xb5\x15\x7f\xfb\xcd\x4e\x31\x2d\xdf\x26\x50\xe0\x14\x53\x90\xc2\xe2\x0b\xf0\xae\xbf\x5f\x2d\x48\xaa\x0a\xe8\x2d\x21\xdc\x4d\xf9\x2b\xa2\xf5\xe4\x43\x56\xdc\x61\x6e\x5f\xab\x39\x1d\x1b\x93\xd3\xf2\xbe\x78\x15\xe5\xd4\x64\xbc\x83\xf5\xc1\x5b\x69\x36\x77\x24\x5d\xd9\x40\x97\xf4\x9f\xb9\x37\xaa\xa5\xbf\x64\x8d\xd1\x1c\x05\x9a\x3b\x75\x7c\x75\xcf\x71\x45\x3d\xb3\xf8\x8a\x46\x1c\xb9\x77\xe3\x6b\x60\xdb\x11\x86\x77\x2f\x9e\xcd\xd8\x72\x9b\x4e\x0d\x58\x2d\x8f\x38\x6c\xa0\x2e\x4d\xed\xd1\x39\x48\x4a\xfe\x68\xa3\xf6\x26\x51\x54\x73\xad\xcd\xe9\x29\x54\x99\xc5\x47\x3c\xe6\x5a\xdb\x23\x10\x39\xb8\x3f\xea\x14\x0e\x6f\x4e\x62\x32\xe9\xd9\x04\x85\xca\x6b\x86\x2a\x56\x5f\x91\x46\x66\x9a\x5d\xea\x82\x8e\xaa\x5f\xf2\xb6\x53\xe4\x71\x1e\x24\xfe\xb3\x29\xa4\xa8\x5c\xf7\xe5\xbf\xd0\x69\x52\xe6\x1b\x59\xf3\x66\xc0\xf4\x94\x2b\x89\xd2\x97\x9e\xdb\xcf\x59\xc2\xc2\x8f\xfa\x27\xad\x24\x5a\xca\xb6\xc4\xdc\xb5\x6c\x8e\x5b\x5a\x60\x21\x9a\x7b\xd9\x3a\x82\xdf\x28\x69\x2a\x07\xcd\xcb\xe2\x81\xc8\x08\xd5\x95\x1d\x65\x7a\x07\xb9\x3f\xeb\x57\x63\x8d\x22\x1b\x93\xfd\x3e\x32\xd6\x36\xb5\x14\xa3\x14\x73\x55\x55\x2c\x21\xac\xf4\x84\x03\xe8\xba\xc3\x71\xf7\xed\x07\x43\x9a\x99\xfe\x89\x0c\x60\xc9\x99\x7d\x65\x03\x98\x3e\x63\x6e\x2c\x46\x24\x00\xf5\x34\x85\x0a\xa0\x51\x8e\xa0\x32\x8f\x2e\xdb\xe1\x2c\xd8\x1c\x54\xaf\x90\x71\xae\xd8\xb6\xbb\x64\x5c\xb4\x1d\xb6\xa5\xac\x5e\xb1\xe6\x9c\x7c\x92\x4d\xb3\x13\x46\xb5\x54\xcf\x87\x01\xc3\xdb\xce\x88\xda\xc7\x39\xae\xd1\x37\xb9\x67\x19\xc9\x7a\xb0\x29\x7b\x1f\x67\xf8\xa3\x14\xac\xce\xcd\x67\x53\x65\xa3\x33\x26\xcb\x3f\x84\x90\x3c\x88\xaf\x7c\xf1\x72\xc5\x69\x53\x65\x2a\xf3\x7a\x06\xda\x44\x19\x77\x94\x29\xe5\xde\x2f\xaf\x6f\xa0\x90\xfb\x58\xca\xc9\x48\xf2\x5f\x81\x8e\xf3\xe6\xf1\x9b\xca\xe5\x99\x1d\x5b\x4f\x34\xcf\xed\xd8\xa6\x8b\xef\x8f\x14\xdf\x53\x7b\x36\x9a\xfb\xf4\x08\xf0\xc3\xd3\x59\x77\xd7\x36\x2b\xc7\x67\xf6\x72\x4d\x51\xbe\x7f\x33\xd7\x2e\x81\x9f\xdf\xcd\xb1\xe2\x7e\x7e\x3b\x53\x12\x7f\xe6\xb0\x0e\x6e\xe6\x68\x79\x1f\xad\x25\xa8\x5a\xb9\x62\x40\x5a\x45\x1b\x90\x58\xd1\x66\xa4\xd6\x81\x94\xa6\x3c\x39\x9b\x06\x4c\x5e\x3f\x21\x47\x3e\xd3\xea\x8e\x8a\x6e\x72\xdd\xb1\xa6\x55\x49\xbb\x5a\x8c\xee\xcf\xf0\xb5\x6f\xd4\x51\x02\x58\x72\xf2\xa3\xa4\x8f\x30\x61\x36\x83\xed\x2f\x8a\xe9\x3f\x04\x96\x47\x68\xe3\x99\x36\x24\xda\x54\xae\xf0\x60\x11\x33\xa5\xa4\x2a\x55\x2a\x92\x0a\x09\x87\x66\xe0\x23\x74\x86\x31\xc6\x91\x78\xf3\xe2\x44\x64\xe8\x31\xa0\x06\x5b\xca\xb1\x1e\xf0\x6c\xc3\x59\x64\xd2\x98\x52\x3d\x00\x62\xe0\x41\x61\x11\x29\xd9\x3b\x15\xf4\x32\x15\xe0\xd2\xfc\x22\x65\x53\xf7\x54\xfd\x44\xb7\x36\x53\xf7\xc8\xb4\x4a\x53\x9b\x00\xae\x3c\x5b\x88\xd0\xba\x0c\x67\x98\x23\x52\x87\xc5\x34\xf6\xf6\xd0\x7b\x52\x55\x1c\x2d\x4d\xcb\x35\xb2\xd4\xe1\x20\xaa\xc1\xb6\xca\x72\x50\xc5\xc7\xc9\x52\x7f\x4e\xb9\x0d\x0d\x96\xa3\xc9\x7e\xcf\xd1\x08\x97\xb2\x7a\x28\x44\x4c\xc8\x0a\xca\xe2\x5d\x59\x6a\x57\xbd\x69\xfa\x7d\x5d\x12\x0d\xc5\x56\x62\x21\xd2\x5e\x63\xd6\xe2\xc1\x97\xad\x01\xc9\x12\xf6\xc0\x8d\xc8\x4a\xba\x6f\xc3\xbc\xa5\x6d\x37\xbc\x42\x7a\x74\x47\xb9\x7d\xdd\x9a\x19\x0e\x01\x42\x51\xc7\x7a\x25\xa8\xbd\x01\xca\x2f\xa4\x42\xeb\x16\x70\x84\x02\x60\xb2\xc6\x2c\xc2\x80\xcf\x73\x1d\x1a\x23\x0b\xed\x2b\x17\x31\xd7\x8b\x67\x5d\x53\x10\xe3\x55\x71\xcb\x66\x88\x11\x78\x2b\x70\x2b\xef\x2c\xda\x84\x2e\x2e\x00\x1b\x7a\x3e\x71\xe9\x37\x32\x35\xbd\xb5\xb3\x17\x1d\x52\xc6\x2a\x88\x68\xea\x7b\xac\x26\xed\x92\x35\x70\x7a\xca\xb2\x21\x9c\x8f\x81\x6d\x5f\x7a\x4d\x56\x63\x5e\x50\xc7\x78\xe4\xd3\x81\xd8\x7f\x88\xfe\xfc\xaa\xab\xaf\xe8\x65\x25\xdd\xbf\xbb\x90\x2d\xb8\x75\x88\xfe\x2c\x90\x22\x43\xf5\x00\x9a\x15\xd9\x62\x7f\xf0\x5a\xae\x60\x77\xbb\xdd\x80\x9a\xbc\x5f\x58\x75\x38\x88\x9d\xc2\x0e\xa3\x03\x6f\x19\x01\x57\x18\x7a\xb6\x83\x0a\xb0\x49\xa2\x60\x63\x69\xd9\x87\x99\xe0\x47\xee\x31\x14\x3e\x1a\xff\x52\x62\xc7\xa3\x8f\x6e\x04\x0e\x76\xd7\xfb\x73\x0d\x30\x2e\x85\xd8\xdf\xd7\x00\x10\x11\xcd\xb3\x1d\x5b\x3a\x41\xe2\xfa\xe5\x7c\xd1\xae\x64\x2d\x08\x37\x55\x1e\x7c\xc3\xd2\x86\x83\x8e\xe4\xad\x32\x8f\x4d\x3a\x65\x54\x5f\x12\x73\x4e\x9a\x76\x12\xdf\x49\xa3\x6b\xac\x27\xb5\xdb\x6d\x67\x5b\xb7\x7c\x04\xcc\x09\xe7\xf8\x8a\x1c\xa2\x7b\xef\x53\xad\x37\x24\xd9\xaa\x9e\x01\xaa\x7f\x54\x64\x63\x47\x13\xd3\x0e\x5c\x7d\xb2\xdb\x32\x79\x26\x27\x5b\xb6\x3d\xf8\x96\xe1\xe6\xc5\x8c\x71\xd5\xd7\x47\x56\xdf\xb2\x00\xc4\x9f\xe9\xb7\xdd\x86\xe1\x0e\xaa\x7b\x1b\x9b\x3f\xdb\xb9\xab\xcf\x87\x1b\x5b\xa3\x03\x70\x2c\xeb\x95\x47\x1e\xb1\xcb\x7f\x10\x10\xf2\x9c\xde\xa3\xf6\xa8\x02\x9b\xe5\x11\x9f\xf5\x4f\xa3\x05\xf6\x6c\xc7\x39\x8f\xf2\x33\x75\x1e\x9d\xe9\xdb\xe7\x81\x79\x90\x73\xa2\xea\x8c\x4c\x9e\xed\x04\xbb\xe9\xbc\xa5\xe6\x2f\xfd\x2d\x0e\xbb\x72\xae\xa0\x77\x8a\xe1\x70\xb5\x4a\xab\x18\x09\xd5\x0c\x61\xd4\xd5\xf4\x9f\x1d\x41\x67\xa7\x66\x5b\xf8\x82\x14\x74\x4a\xc3\xcc\x67\x03\x52\x46\x89\xca\x7b\x09\x3b\x00\x35\xd6\x98\xaa\x2a\x56\x55\x6a\x3a\x71\x27\x10\x39\xa7\x73\x62\x2d\xd2\x46\x35\x52\x4c\x7c\x3d\x56\x6d\xc0\xfc\x4b\x70\xea\x5b\xc7\x35\x48\xfe\x80\x7c\x06\x11\x46\x1d\x3b\x1d\x03\x72\x67\x3d\x5e\xaa\xdd\x4d\x48\x84\xaf\xd5\xde\x01\xf0\x7b\xa9\x73\x97\x60\x71\xa3\x2c\xd8\xbd\xbc\x2e\x6b\xbe\x3c\x32\x6e\x82\x75\xb8\x97\x1b\x9a\xbb\x41\x3e\x76\x2f\xc9\x88\x92\x7b\xb3\x11\xd7\x61\x9d\x6d\xda\x91\x73\x20\xde\x64\xdf\xdd\x8e\x41\x96\xe6\x39\xba\x24\x95\xaa\xe6\xa4\xd1\x04\x8c\x2a\x49\x14\x7b\x7b\x88\xd6\x85\xdc\xea\xc0\x1c\x73\x76\x2a\xcb\x2e\x9a\xa6\x46\x61\x3c\x78\x2a\xec\xfb\xec\xf4\x44\xbd\x73\x34\xf0\xbd\x2c\xec\xf7\xf8\xd1\xe4\xc0\x9f\xce\x89\x64\xc1\x21\x0f\x54\x8d\xd2\xa1\xb3\x99\x14\x9e\x4d\x3b\xa9\x82\xd5\xa0\xea\xa7\x26\xe6\x06\xd1\xfa\xe1\xb3\xbd\xb3\x73\xec\x3d\x87\x8e\x9c\x16\x7a\xe5\x5c\x09\x42\xab\x34\xe6\x19\xb9\x90\x71\xa6\xdd\xde\xc9\xf4\xe0\xc7\xe7\xa8\xe1\x65\xc8\x96\x35\x19\x79\x09\x3a\xf3\xf6\xaf\x41\x8b\x3d\x71\x13\x0e\x20\x2d\xb9\x54\xf7\xee\x74\x86\xd1\x00\x9c\x0b\x54\x5b\x28\xc7\x5c\xa3\x0e\xa4\xf0\x22\x55\x35\xad\xb0\x2d\x67\x25\x6d\xc3\xd0\xf5\x9c\x4d\x9d\xbc\x1a\xaa\x13\xaf\xc5\x54\xbd\x0b\x50\xe2\x68\x0b\x5d\x53\xb2\x84\x9b\x30\x62\xf5\x51\xb7\xca\x43\x74\xdf\x7e\xbd\xee\xed\x56\x27\x52\x71\xe2\xde\x1b\xf7\x2e\xfc\x0b\xff\xec\xd4\xad\xf5\xa9\xe2\x25\xed\x8a\xee\x05\xfa\xae\x83\xc1\xc9\xfd\xc1\x49\x60\xee\x2e\xe8\xfb\xad\xbb\x23\xf1\x3c\x23\xe8\xef\xba\x32\xde\xdf\x55\x31\x39\x4f\x21\x5e\xe0\x95\x0c\x13\xb6\x75\x7c\x42\xb4\x5b\x8c\x3b\x05\xe0\x0e\xd1\x7d\x53\x71\x0f\x3e\x92\x17\x84\x27\x4a\xa8\xba\x72\x5c\x17\x96\x83\x6b\x2e\x55\x4e\x2d\x86\x92\x2c\xaa\x66\x86\xf7\x2d\xbd\x3d\xa5\xd4\x12\xe8\xd0\xe3\x21\x39\x2b\x79\x4c\xef\xc5\x64\x6d\x26\x1e\x62\xfa\xc7\x45\x09\x76\x23\x8c\x8a\x0a\xd3\x39\x29\xd1\x25\x63\x15\xc1\xb5\xbc\xfb\xb5\x1c\x58\xa0\x05\x6e\x21\xce\x9c\x2a\x53\x13\xf0\x02\x2b\x0e\xa2\x05\x25\x05\xd1\x1d\xef\xd0\x9c\xb4\xb8\xc4\x2d\x06\x33\x93\x8c\x24\xd7\xe0\x57\x4a\x98\xca\xee\x4e\x07\x53\x3a\x91\xcf\x4f\xc4\xb8\xe2\x20\x00\xe2\xde\xe2\x76\xb6\x8d\x7e\x41\x1f\x1d\x4d\x5f\x43\x96\xa1\xaa\x5b\xc1\x8e\xa9\x2f\x4f\x29\x08\x68\x32\xd0\xdf\xdb\x39\x3f\xfa\x18\xa2\x5d\xf5\x76\x89\xa1\x73\x9b\xa3\x5a\xd8\x49\xb4\x80\x7c\x61\x46\x70\xd1\x4f\xa7\x66\xe1\xfe\x41\x8d\xe6\xf5\xe1\x23\x59\x45\xf1\x80\xc9\x6a\xbf\xd1\xab\xaa\x50\xf2\x04\xb0\xf2\x91\xac\x92\x05\x5c\xbd\x45\xcb\xfa\xb0\x21\x1c\x19\x3b\x6c\x57\xed\x90\xc9\x05\x69\x05\x8d\x98\x50\x29\xaf\x57\xd6\xd9\xa9\x0d\xff\xd0\x26\x50\x6b\x98\x53\x5b\xac\xaf\x52\xd5\x5b\x35\x6d\xe6\xd4\x9c\xaf\xb7\x0b\xa0\xd8\xd6\x4a\xc6\xe7\x8c\xdd\xc9\xa8\x91\x84\x9c\x65\x10\x0a\x1d\xa1\x28\x82\xa6\x66\x97\xe9\x4e\xe1\x02\x0d\xf0\xf7\x17\xa2\x1a\xdc\x6a\xfc\x68\x4c\xba\x46\x62\x65\xe5\x35\xc2\x87\x8b\xca\x2d\xa7\x48\xb2\x43\x6b\xbb\x91\x6e\x65\xae\x95\x5c\x74\x76\x88\xda\xef\x1d\xd4\xea\x64\x14\x17\x11\x05\x5b\xac\x6e\x82\xd6\x9b\x60\x40\xae\x71\x52\xd1\x8f\x04\xd9\x96\x2e\xa6\x56\x98\xec\xcd\xa0\x09\xd1\x80\x7e\x4d\x16\xb2\x4e\xf7\x25\x2e\x3e\xaa\xc2\x33\x6c\xbe\xc0\x2d\xbd\xa4\x15\x6d\x57\xbd\x38\xba\x70\x2d\xeb\x02\x3b\x1f\xe4\x52\x7f\x0e\x28\xae\x36\xa9\x0c\x5a\xbf\xc9\xc4\xbe\x07\xb8\xac\x9d\x18\xf7\xc8\x34\x5c\x96\x5c\xab\x96\xb8\x2e\xf7\x98\x2f\x85\x9b\x3a\xe4\xb6\x95\x28\x9c\xb5\xe5\x4c\x35\xbe\xd2\xf9\x0c\x20\xd5\x80\x95\x5f\x08\xdb\xdc\xc0\x17\x0a\x3e\xe4\xc4\x38\xe9\x9d\xde\x8b\xfe\x2b\xb9\x93\x9a\x73\x60\x6a\x06\xec\xc9\x9b\x52\xf4\xfe\xde\x3d\xb0\x74\x2a\x71\xe6\x0b\x01\xc9\x9a\xfb\x41\xad\xdc\xcf\xbe\x8a\x19\xb7\xfd\xec\x61\x00\x1b\x49\x24\xb9\x5d\x12\x89\x23\x53\xd7\xb2\x8e\x9e\xd9\x4c\x67\x47\xc0\x06\xe3\xee\x88\x13\x4c\x27\xb7\xdc\x00\xf4\x12\x47\x9d\x36\x14\x66\x99\x32\xb5\xc4\x9d\x80\xa9\x2c\x4d\x4d\xef\x05\xcd\xc8\xf5\x28\x57\xf4\x5a\x5b\xe0\xce\x4e\xb7\x11\xbb\x26\xcd\xb2\xa1\x2a\xdb\x55\x0a\xec\xa5\x90\x70\xdd\x0d\x85\xca\x80\x42\x2e\x74\x83\x13\x13\x51\x93\x5e\x33\x72\x7f\xaf\xcb\xe0\xb5\x24\xb8\xd4\x55\xa6\x57\xe5\x7a\x51\xc0\xb1\x42\x55\x3b\x15\xa9\xcf\x79\xf1\x8a\x9a\xd2\xb7\x7d\xd3\x1f\x3c\x29\x96\xe9\x20\x59\xad\xae\xab\x97\x0d\x5e\x2c\x48\x79\x6a\xc9\xdb\x4d\xce\x3c\x3b\xed\x5b\xcf\x87\xd4\xeb\xf1\xfd\xee\x2d\xea\x02\x6b\x1b\x04\x2b\xa5\x28\x5e\xb9\xc5\x1a\x65\x7d\x1e\x52\xb7\xcd\x2a\x40\x05\x6d\xd1\x12\x73\xf4\x8f\x8e\xb7\x8a\x9d\x6c\xc3\x67\xb4\xaa\x90\xb8\xc7\x0c\xf9\xed\x75\xb5\x81\x6d\xf9\x8c\xe7\x97\xcc\x6e\xde\x91\xbf\xc0\x51\xd7\xe6\xc6\xd2\x95\x50\xe2\x32\xc1\xb7\xe6\x8c\x5e\xb9\xa3\x11\x9c\x31\xba\x3c\xe2\xfe\xc2\xf9\xac\xaf\xf5\xee\xd9\x5b\x71\x2f\x07\x53\xa6\x65\x96\x6a\x5f\xf7\x57\xf0\xb7\x1a\x44\x64\x9f\x83\x3a\xf4\x64\x59\xad\x1c\x33\x5a\xad\x1a\xe0\x31\xf1\x6d\xfd\xa0\x35\xfc\xc4\x89\x6f\xdb\xd3\x0d\x22\x81\xdf\xa8\x1e\x1a\x9a\x82\x4d\xe1\xad\xb0\x0f\x8f\xae\xaf\x28\x3d\x00\x7e\x63\x40\x05\x31\xd5\x4e\x4d\x8e\x61\xa5\x21\x69\x9f\x98\xe3\x85\xdb\xf6\xd3\x00\x81\xda\x73\x11\xc9\x80\xd6\xae\x3a\x09\x26\x84\x95\xc4\xa0\x9c\xfe\xaf\x6a\x0e\x22\x19\x35\xb4\xcf\x36\xaf\xe7\x48\x25\xe8\x8c\x2a\xdb\xc8\xf9\x0d\xe8\xbe\x7d\x32\x92\x48\xfc\x77\x46\xf5\x7e\x93\x23\x46\xe4\x01\x12\x48\x2b\x9b\x8e\x5f\xd3\xd2\xd1\xfe\x8d\x05\x3f\xdd\xc4\x2e\x29\x2b\xe0\xb2\x7c\xcf\xf2\x2d\x60\xb5\xbc\x20\x70\x05\xed\x4d\x94\x03\x79\xab\xd7\xa4\x61\x9e\x46\xcf\xb5\x31\xfb\x00\xfa\x6b\xda\x2f\x9e\x59\x2b\xf7\x21\xba\xf7\x5e\xf7\x71\xd1\x1d\x44\x0f\xb6\xd1\xa3\x6d\xf4\x78\x1b\x3d\xd9\x16\x07\xff\x69\xd2\x28\x0f\xcd\x07\x7f\xd7\x6e\x7c\xf1\x0c\x7a\x7b\xd1\xc1\xd2\x5d\x87\x21\x9d\x8e\xef\xd9\x04\xad\xe9\x94\x1c\x9b\xa4\xcc\xbb\xee\x18\x61\x3a\xb4\xb2\x4f\x84\xa4\x21\x8e\xba\xec\x0b\xa3\x6c\xee\xf6\x48\x7b\x3e\x3d\x80\xea\x9a\xd3\x93\x0a\x6b\x72\x11\xce\x6d\xe4\x5d\xa4\x59\xfc\xe4\x3a\x11\xf5\x3a\x0d\x7d\x35\xf9\x06\x8d\x09\x51\xe8\x7f\x93\x62\x5d\xf2\xa0\x25\xda\xbe\x8d\x38\x6a\x63\x5a\x2e\xbb\xe7\x6d\xf4\x51\x4b\x9d\xb2\xff\xcc\x03\xe6\x94\x7f\xef\x27\x4a\xcf\xfe\x52\x07\xd5\xfd\x53\x80\xff\x20\x44\x69\xa3\x8a\xb4\x4e\x3e\x40\x82\x43\x97\x9a\x12\x80\x32\x8d\x43\xa3\x9b\xad\x67\x91\xde\x3d\x77\xb3\xcd\x0f\xf5\xb8\xb1\x5d\x4b\x7d\x31\x53\x76\xb7\x9a\x28\xf3\x64\x78\xeb\x1b\x06\x17\x61\x49\x21\x28\xec\x1b\x1b\x77\x9c\xbd\x31\x56\x46\x74\x8f\xb2\x23\x27\xb1\xb1\x0f\xc8\xd8\x07\x5c\xec\x03\x2a\xf6\x01\x13\xfb\x11\x22\xde\x59\x4f\x7f\x20\x6c\x51\x13\x79\x68\xfa\x5a\xc6\x06\x1d\x5b\xae\xbd\x5f\x5e\xd2\x54\x95\xee\xe4\xdb\x87\x3b\xa5\xb3\x29\x3a\x96\x6f\xf4\xb3\x97\x75\x71\x19\xf4\xc8\x4a\xda\x2d\xfc\xf1\xfb\xad\xb8\x36\xad\x4e\x33\x76\x71\xfa\x1e\x38\x55\x37\xae\x71\xd5\x11\xaf\xdc\xc6\xb6\x78\x96\xb7\x4d\x57\xb4\x88\xc6\x15\x28\x16\xbe\x41\xaa\xaf\x1a\xc8\x98\xba\x0d\x50\x86\x8c\x55\x6a\xc5\xa9\x5e\xc9\x03\x44\xe4\x41\xf3\xab\x40\xc4\x53\x1d\x2a\x02\x71\x56\x4f\x59\x7a\x39\xe7\xea\x5b\xe3\x46\x4c\x35\x57\xb1\x0b\xf9\xa0\xa1\x99\xa0\xe9\xec\x77\x77\xd1\xc3\xa0\x29\xe3\xe7\xd4\xae\xdb\xf7\x03\xc3\x95\xab\x87\xcd\x48\xf1\xd1\x54\x7e\x91\x16\x17\x0e\x6c\x4d\x75\xc5\xd4\x75\x89\xb9\xb8\x41\x2b\xb6\x24\x4d\x81\x39\x41\x33\xf2\x09\x15\x33\x2c\xe8\x43\x57\xec\x01\xb7\x8d\xaa\xef\x4a\x6a\xde\x35\xc4\xf8\x65\x6d\x03\xb1\xb2\x5b\x54\xd2\x4f\xa3\x35\x9d\x3c\x23\xa7\xfc\x6f\xb8\xa2\xca\x06\x3a\xf9\x05\xd1\x7a\xd1\xb5\x8e\xf3\x51\xb0\xdd\xc0\x1a\x7a\xb9\x6a\xc9\xdf\x48\xc3\x65\x0b\x51\x78\x61\xb7\x6b\xa7\xdf\xd9\x3d\x17\xfb\x6d\x26\x2e\xb6\xdc\x7d\xc5\xdf\x66\x3a\x45\x93\x89\x7d\xf6\x19\x7a\xf2\xdd\x16\xfa\xed\x37\xe4\x7c\xf6\x1c\x3d\xfd\x6f\x21\x8d\xb8\x4f\xfd\xe9\xbf\xe3\xa7\x0e\xf6\x1f\x6d\xa5\x12\x23\xb5\x1b\x0c\x2a\x7b\xa4\x37\xf4\x73\xe4\x34\x33\x12\xa6\xb3\x8f\x36\xd2\x3a\x5f\xc4\x47\x71\x81\x6a\x85\x88\x0c\x29\xca\xa3\x3e\x0e\x3d\x0a\x90\x9d\x55\x02\xc5\x73\x11\xbf\xf2\xc1\x6d\xd9\x62\x26\x28\x65\x3f\xa9\x55\xff\x5b\xc7\x71\x0d\x2a\xb1\x69\x0d\xb0\x68\xd8\x82\xf5\x04\xea\x0b\x50\xa7\xb6\xa2\x53\x80\x8a\x6d\x69\xa2\x33\xa1\xdc\xaa\x7b\xa3\x1b\x4d\x04\xd6\x04\x03\x6a\x86\xaf\xc1\xac\xe0\x75\x86\x45\x97\xb2\x15\x08\xdc\xc3\xb6\x6f\x2d\xae\xae\x58\x43\xdb\xd9\x1c\xad\x88\xf5\x04\x1c\x9b\xd2\xe6\xe1\xb6\x90\xba\xe4\xdb\xc6\x9b\x09\x79\x42\xb2\x0e\x7a\x57\x7b\xce\x2c\x6e\x8b\x5f\x19\xa8\x6e\x27\x7f\xd9\x53\xd3\x16\xc8\x52\x45\xa8\xc4\x57\xd9\xf8\xf4\x6d\xc7\x8e\x41\xb9\x34\x22\x00\x56\x70\x51\x74\x0d\x6e\x49\xb5\x42\x0d\x59\x34\x84\xeb\x50\x19\x27\xb0\x5b\xf7\x14\x48\x67\x21\x25\x6e\xcf\xb7\x6a\xd3\xd2\x2e\x8d\x8c\x4f\x23\xd7\x82\x40\x81\xf0\xde\x0a\x2a\xe7\x8c\xae\x15\xd4\x53\x81\xea\xc6\xd5\xa7\xdc\x79\x2d\xfc\x85\x27\xe6\xe5\x9a\xc6\xc3\xc6\x09\x12\x13\x89\x16\x91\xb7\x8f\xd4\x43\x6e\x75\xd7\xf7\x7e\x04\x8a\x1f\xcc\x94\x8f\xee\x8a\xa1\x5d\x79\x91\x63\xe9\xb9\x8d\x0e\x15\x8e\x27\x96\x0b\x27\x4b\xe2\xe7\x8c\xeb\xcd\x55\x0c\xec\x08\x0d\x17\x58\x4a\x01\xfa\x89\xd0\xab\x59\x50\xa8\x95\xd6\xb4\xa5\xb8\x92\x5f\x45\xa9\x2f\x10\x05\xb2\xe3\x3b\xa4\xc1\xee\x87\x26\x32\xa3\x84\xb2\x7a\x4f\x35\x12\x94\xbf\xd6\x5c\xdc\x9a\x7c\xef\x9a\x34\xc0\x0b\xc4\xc7\x5b\x21\x58\xad\xda\x1a\xc0\xc7\xe7\xa7\xaa\x90\x69\x37\x9d\xd2\x82\x92\x5a\xd5\xcc\x0a\xaf\xb2\x9e\x10\x4c\x71\x83\x05\xdb\x76\xff\x7e\x80\xc0\xc4\xe5\x15\x10\x76\xce\x06\xa2\x7f\x74\x41\xcf\xe0\x9e\x0b\x57\xb8\x20\xcd\x9c\x72\x71\x1d\x57\x9a\x1d\x6b\xc4\x49\xae\x12\xe1\xe4\xfc\xcd\xfb\x97\x87\xe8\xd8\x67\xdf\x54\x08\xf3\x2a\x86\x90\x94\x68\xd1\x50\xeb\xb9\x3c\xd8\xdf\xdf\x81\xfe\x86\x32\x4f\xab\xb1\xb1\x9f\x21\xe8\x89\x04\x14\x62\x7d\x4b\x89\x33\xad\xe1\xc1\xaa\x80\x20\x46\x2d\x99\x2f\x58\x23\xf4\x90\xab\x06\x17\x60\x34\xa6\xcc\x7c\x1f\xc2\x97\xe0\xdb\x19\xe1\x44\x3c\x5f\x97\x53\x0c\xe2\x52\xd4\xd8\x69\x8e\x57\x88\x77\x97\x60\xb5\x06\x76\x2b\x16\x2b\x46\x89\x96\xb0\x1b\x8e\x01\x66\x6f\xc8\x6c\xf2\x50\x04\x6b\x22\x54\x0c\xe7\x11\xd4\x9b\x77\x69\x7a\x3a\x0c\xe1\xa2\x1d\xf4\xa6\x12\x04\xc8\x23\xfc\x6c\x4b\x8f\xb8\x6c\x44\xcd\x96\x52\x26\x04\xa8\xff\x4b\x1a\x96\xa0\x4f\x09\xee\x9c\x2c\x25\x38\xbc\x82\x5c\xbc\xda\x87\x07\xa3\xa8\xb9\x5d\x2a\x36\xb5\x2e\xd5\x1f\x79\x54\x1f\xd2\xe8\x24\x38\x05\xaa\x5e\xb2\x3d\x05\xa9\x97\x1c\xfe\xf0\x1c\xf9\xf9\x7e\x5f\xea\xcc\xc4\xbf\x29\x79\x2c\x00\x9f\xf4\xee\x47\x42\x96\x5b\x79\xdb\x0a\x5a\x80\x68\x72\x4d\x1a\xe7\x18\xf5\x1a\x5d\xfa\x63\x15\xf2\x56\x84\xda\xb4\x03\xea\x57\x4e\xa2\xfa\xc6\x94\x6b\xae\x65\x6b\xb6\xb8\xf1\xbf\xba\x32\xa7\x7b\xb6\x75\xa9\xd1\x44\x2e\x41\xbf\xab\x64\xe4\x95\x25\xbb\xcf\xf9\xb6\xcd\xa4\xa6\xe2\xe6\xda\x0c\xe7\xdf\x64\xa4\x92\xb3\xba\x60\x4d\x43\x8a\x56\x39\xa8\xb4\x0d\x77\x6a\x6b\xd6\xc8\x63\xb1\x8b\xfe\x9a\xb3\x89\xc6\x41\x79\x66\x39\x4e\x4c\xfb\x85\x39\x5c\xbd\x4a\x87\xc5\xa8\x49\x88\x42\x58\x26\x57\x81\x06\xd2\x1b\x6c\x17\x11\x54\x98\x9f\xa5\x63\xef\xb0\x9f\xb3\xd7\xaf\x9d\x5c\x91\xd6\x8f\xd9\x33\x5a\x49\x94\xff\x45\xf4\x08\xdb\x32\x92\x4f\x8d\x13\x99\x28\xc7\xad\xfb\x23\x59\xdd\x66\xcd\xaf\xc9\x4a\xcf\xdb\x09\x2b\xbc\xfd\x5a\x5f\x93\x55\xb0\x4c\x13\x9a\x37\x6e\x89\xfa\x68\xdd\x68\x7d\x17\x26\xc9\x6d\x83\x8b\xb3\x99\x73\x23\x56\x66\x7d\xa8\x6a\xe2\xbc\xc5\x6d\x07\x0e\x57\xac\xec\x3f\x5d\x85\x9b\x4c\xe0\xa8\xb7\xb8\x28\x64\x3a\x9a\xa2\x17\x1f\x9a\x5c\xe9\x7f\xfd\xd7\xa8\x70\x50\x1d\xc8\xbb\xe9\x88\xd0\x00\xd1\x99\xf0\xcf\x9c\xbe\xee\xda\xea\xf3\x31\x98\x26\x3a\x5f\x46\x46\xcf\x30\x47\x9c\x64\x0c\xf8\x12\x89\xbe\x4a\xf6\x05\x23\x03\xd5\x40\xc9\x10\x85\xd4\xe2\xdc\x88\x0e\x4e\x9c\x46\x5d\x52\x19\x6e\x48\xd9\x15\x36\x52\x12\x94\x62\xb7\x7f\x69\xfe\xea\xcc\xf4\xd4\x4b\xf4\x35\x5d\x67\xed\xea\x9d\xdc\xea\x33\xc3\xe6\x28\xa9\x30\x3a\xf0\x95\xec\x19\x98\xee\xed\x7a\x2f\x7f\xe4\xbc\x3b\xc9\xbd\x9b\xfd\xde\xa6\xa6\x12\xc5\x40\x94\x4b\x3a\x7f\xcb\x37\xc9\xf7\x62\x2d\x75\xe1\xae\x3f\x79\x3f\x8f\x2b\x9e\xb3\x9a\xee\x70\xde\x99\xe9\x93\x3f\x62\x8f\xe5\x93\xd1\xce\x9a\x69\x28\x46\xab\xc6\x8a\xb6\x54\x57\xa6\x88\x83\x97\xf2\x9e\x14\xd7\x23\x97\xe9\x48\x6a\x80\x89\xdb\xc0\x6b\xe8\xc2\xa6\xd2\xc1\x62\x0a\x8c\xe4\x76\xf5\x7d\xbe\x2e\xc8\xf8\x8d\xed\x29\x2e\x92\xdd\xdf\xb0\x0b\x1f\x68\x88\x12\x05\xae\xed\x34\xbd\x50\x36\x45\x41\x57\x5e\x9e\x8c\x97\x1e\x5e\xba\x2e\xf9\x90\x20\x86\xa0\xe5\xad\x79\xc2\x2f\x34\xa2\x2d\x48\x62\xb1\x62\x0e\xeb\xd5\x5e\x49\xf9\x3b\xf6\xf6\xd0\x29\x83\x83\x2f\x43\x4a\x5d\x4b\x69\x4a\xe1\x82\x91\x5d\xfb\x42\xac\x07\xf9\x9d\x7b\xdd\xbf\x1e\xde\xa4\x58\x8c\xf8\x25\x68\x8b\xde\xa3\x25\xb9\x4d\x6e\xf3\xd4\xf0\x91\xd4\xba\x84\x88\x72\x79\x0d\xe5\x12\x44\x1b\xfa\x32\x28\xc7\x31\x78\xc4\xc3\xfa\x1d\x79\xe1\xa5\x6b\xbd\x06\x7a\x41\x26\xa9\x6e\x9d\x4d\x41\xf3\xf6\x6d\x09\xbd\x33\x36\xbd\x46\x6c\xbf\xba\xc1\x49\xd7\x99\x6e\x25\xb9\xb9\xc3\x95\xc1\xdd\x46\x97\x70\xca\x6c\xfb\x55\xc7\xe6\xd3\x90\x82\x92\x6b\x1b\x01\x27\x6d\x3d\x27\xe6\x34\xaa\x3c\xd9\x8e\x0f\x28\xa7\x72\x56\xef\x60\xe4\xf1\x6c\xa4\x71\xde\x72\x97\x43\x6b\xda\x4e\x7e\x41\xe1\x6e\x59\xf5\xef\x17\xb5\xb4\x13\xff\xc3\x22\x0e\x69\x8a\x42\xed\xdc\xd3\x12\x27\xc7\xb4\x4d\x47\x82\xb0\x8a\xc0\xb9\x12\x04\xc0\x4a\x56\xf4\x6c\xc7\x33\x32\x27\x45\xce\xb4\x61\x3a\x3f\x95\x4c\x9e\x4e\x8f\x54\xbe\x75\x0b\x68\x49\x05\x66\x33\x00\x43\xed\x2f\x44\xa1\xad\x8d\xe0\x88\xf3\xe8\x28\x76\xc7\xab\x92\x02\x89\x17\xdf\x76\x97\x15\x2d\xf4\x7b\x0b\xf8\x2b\xfb\x9a\xae\xeb\x24\xa4\xe5\x81\x11\xf5\x63\x3e\x80\x53\x2b\x04\x0c\xbd\x6d\x53\x4a\x7d\x10\x29\xc9\x48\x10\x84\x0e\xc1\x3a\x44\x8f\x9e\xee\xef\xef\x43\xc7\x73\xf9\xd9\xa3\xad\x43\x04\x1f\x39\x9f\x3d\xde\x3a\x44\x07\xe1\x83\x4f\xc4\x87\x8f\x9f\x7a\x9f\x3d\x15\x9f\x89\x0f\xfa\x08\xee\xe9\xfe\xee\x3e\xc2\xdc\x9c\x27\x6f\x3b\x07\x05\x9f\x21\xb9\xc0\x5f\x5d\xb0\xb0\x60\x4d\xc1\x6a\x82\x85\xc4\xcb\x88\x1a\xad\x1f\x45\xbc\x23\x3e\xb5\x09\x96\x8a\x8e\x2c\x5f\xf1\x5f\x70\x39\x55\xb8\x92\x83\x6f\xbf\xf3\xd7\xf2\xf4\xe0\xbb\x60\x35\xff\xfd\x9d\xbf\x9e\x47\x8f\xbf\x8d\x56\x94\x72\xb6\x05\x0d\x45\x72\x7c\x23\x93\x56\x87\x43\xed\x2b\xb9\xef\x91\x2a\xe7\xbc\x96\x8e\x30\xf3\xb4\x3a\x6f\xda\x7e\x37\xc0\x60\xf6\xfa\x2e\xe8\xe7\x7b\x09\xed\x2a\x86\x9a\x9e\x57\x56\xdf\xf2\x2d\x83\x37\x6c\xd8\xf2\x35\xf2\x1d\xbc\x89\x42\xea\x86\x1f\xdd\x96\x8f\xb2\x3b\x1a\x1d\xe8\x86\x46\xc4\x19\x26\x86\x1e\x17\x6c\x68\x46\x70\xf3\x5a\xc2\xb0\x7f\x08\xa7\x1b\x3b\x97\x38\xec\x3d\x71\xcb\x8f\x98\x9c\x0e\x88\xf3\x50\xcc\x4d\xa4\x5c\x2e\xce\xe9\x40\x30\x57\x40\xaa\xfa\xed\xb1\xf9\xed\x89\xf9\xed\xa9\xfa\xed\x73\xb4\x7c\x08\x5f\x90\xe1\x83\xa3\x91\x6f\x27\x15\x2c\x2b\x13\xe2\x17\xad\xe8\xc6\x91\x5b\xc9\xd9\x17\x7e\x88\xd3\x98\xd9\xcb\x09\xe4\x67\x1f\x04\xd5\xf5\x65\x2b\x9b\xd2\x11\x2a\x65\x5f\x02\xed\xbb\xc7\xb5\x79\xe4\xf3\x1d\x74\xe7\xff\x07\x00\x00\xff\xff\x68\x7a\xae\x83\x37\x7c\x01\x00" func flowidtablestakingCdcBytes() ([]byte, error) { return bindataRead( @@ -139,11 +139,11 @@ func flowidtablestakingCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowIDTableStaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6d, 0x7a, 0xb1, 0x58, 0x77, 0x74, 0x18, 0x1b, 0xf0, 0xb8, 0xce, 0x82, 0xc8, 0x9e, 0x56, 0x16, 0x21, 0xc8, 0xfc, 0x32, 0x43, 0xc0, 0x47, 0x90, 0x5b, 0xe3, 0x7f, 0x63, 0xc3, 0xa2, 0x1a, 0xce}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0xce, 0x52, 0x74, 0xbf, 0xdd, 0xfc, 0xf0, 0x5c, 0x5d, 0x6a, 0x66, 0x72, 0x49, 0x3f, 0x2e, 0x53, 0x5e, 0x8e, 0x17, 0x59, 0x57, 0x68, 0x60, 0xef, 0x6e, 0x47, 0x85, 0x29, 0x56, 0xf, 0x4e}} return a, nil } -var _flowserviceaccountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x59\x4b\x6f\x1b\x39\x12\xbe\xfb\x57\x54\x72\xd8\x6d\x01\xb6\xec\xc3\x60\x0e\x82\x95\x59\x25\x91\x03\x63\xb3\xc9\xc2\x8f\xc9\x61\x30\xc8\x50\xdd\xd5\x6a\x22\x2d\x52\x20\x29\xc9\x1a\xc3\xff\x7d\xc1\x57\x37\xd9\x6c\x3d\xec\x64\xe3\x83\x25\x75\xb3\x8a\x55\x5f\x55\x91\x5f\x91\x74\xb1\xe4\x42\xc1\xd5\x8a\xcd\xe9\xac\xc6\x3b\xfe\x0d\x19\x94\x82\x2f\xe0\xe2\xe1\xea\xfe\xd3\x87\xeb\xb7\x1f\xa7\x77\x9f\xff\x3d\xfd\x34\x79\xff\xfe\x66\x7a\x7b\x7b\xe2\x05\x6a\xbe\x89\x07\x7f\xfc\xfc\x65\xd7\xc0\x2b\x44\x19\x8e\xbb\x9a\x4e\x6f\x7b\x86\xdd\x2a\x2e\xc8\x1c\xbb\xa3\x6f\xef\x3e\xdf\x4c\x3e\x4c\x43\xa1\x93\xe5\x6a\x06\x39\x67\x4a\x90\xdc\xc9\xa2\x58\xd3\x1c\x27\x79\xce\x57\x4c\xc1\xe3\xc9\x09\x00\x80\x1e\x86\x6b\x64\x0a\xee\x04\x61\x92\xe4\x8a\x72\x76\x85\x78\xbf\x2c\x88\xc2\x22\x63\xa8\x6d\x1b\xc1\xfd\x15\x7d\xf8\xf5\x97\x41\x57\xc8\x69\x7b\x27\x90\xbc\x5c\x90\x8b\x49\x51\x60\x91\x91\xe8\xd9\x08\x26\x45\x21\x50\xca\x03\xb2\x37\xb8\xe0\xeb\x67\x48\x5f\xcb\x8e\xd1\x37\x28\x95\xa0\xb9\xc2\xc2\xdb\x4e\x65\xfb\x6c\x04\x6f\x39\xaf\x9d\x96\xf3\xf3\x73\x98\x40\x49\x1f\xb0\x38\x13\x44\x21\x94\x88\x90\x57\x44\xcc\xb1\x00\xc5\x01\x1f\x30\x5f\x29\x04\x02\xaa\x45\xb3\x99\x7f\x4d\x44\xf8\x3c\x80\xe7\x38\xed\xb9\x36\x58\x2b\x67\xb8\x01\xe7\x6e\xa4\x9c\x24\xd1\x48\x27\xb8\xab\x10\x6a\x2a\x15\xf0\xd2\x8f\x07\x62\xa1\x42\x09\xaa\x22\x0a\x2a\xb2\x46\x58\xa2\x58\x50\x29\x29\x67\xe1\xd4\x56\x40\x1a\x6d\x24\xcf\x51\xca\xcc\x27\xd9\x20\x31\x81\x0b\x39\x82\x47\x17\x07\x8b\xe3\x53\x6b\xc8\x35\xa3\x8a\x92\x9a\xfe\x8d\x40\x58\x63\xca\x86\xaa\x0a\x48\x50\x3c\xbf\x93\x55\xad\x80\xb0\x42\x7b\x59\x53\x59\x41\x4e\x96\x64\x46\x6b\xaa\x28\xca\x61\xe3\x7f\xb9\x62\x40\x19\x55\xef\xb1\xd4\x12\x46\x38\xfb\xaa\xf5\xaa\x11\x4c\x56\xaa\x72\x51\x1f\xc0\xa3\x91\xb1\x66\xc0\xbb\x10\xd3\xbe\x59\xa5\x06\x83\x2a\xa0\x0c\xa4\xad\xbe\x46\x5c\xeb\x1e\xea\xf7\xd9\xe5\x59\x23\x3a\xb4\x50\x4d\x17\x4b\xb5\x35\x5a\xb2\xc1\x29\x28\x3e\x82\x73\x27\x7e\x5e\xfa\xa1\xe6\xb5\xcb\xac\xae\x39\xc6\xd9\xbc\xf5\x75\xab\xa3\xa0\x2a\x74\x96\x99\x38\x71\x56\x6f\x01\x1f\x96\x5c\xa2\x0c\x95\xe8\x61\x05\x2e\xb9\xa4\x4a\xc3\x62\x92\x0d\x54\x25\xf8\x6a\x5e\x99\x97\x37\x98\x23\x5d\xa3\x00\xca\x14\x8a\x92\xe4\x1d\x9f\x6a\xca\xbe\x5d\xfe\xa3\x75\xc9\xcc\xf9\x18\xad\x80\x43\xaf\xe3\xe9\x4d\xd6\x08\x9b\xf9\xad\xe5\xad\x97\x7e\xe0\x69\x34\x4c\xe9\xac\x56\x3b\x51\x69\xc6\xfe\x9f\xe0\x99\x91\x9a\xb0\x1c\xa1\xa4\x58\x17\x11\x36\x6f\xdd\x9b\xef\x80\xc6\xa9\x38\x88\x8c\x1b\xf7\x52\x60\xf4\xff\xa0\x9e\x3e\xa0\x72\x91\x2f\x2d\x06\x26\x91\xbd\xa3\x9c\x05\x55\xe6\x65\x1a\xd9\x1b\x54\x2b\xc1\x24\x5c\x00\x2d\x8d\x12\x5f\x8e\x15\x91\xc0\x78\xa3\xd3\x69\x8b\x8a\xae\x08\x0a\xce\x79\xd4\xd4\xdd\x7f\x8d\xc7\xbe\xf2\xfc\x62\x14\x54\xa0\x5e\x32\xbc\x89\x63\xb8\x18\x5e\x34\x6f\x68\x09\x35\x36\x33\xde\x60\x09\x63\xa3\x34\x02\x6b\x38\x47\xf5\xae\xc9\x81\x6c\x17\xc2\x83\x58\x68\xc6\x85\xe0\x9b\xe3\xa3\x38\x78\x8c\xe4\xf5\x5f\x6b\x73\x6b\xe0\x30\x44\xc7\xff\x3d\xb5\xf9\x2b\x0c\xc8\x11\x86\x41\xf8\x6c\x08\x80\x80\xc0\x12\x05\x6a\xe5\x2e\xa5\xe3\x80\xae\xcd\xf7\x34\x9c\x7d\xe1\xb0\xeb\x4f\xdf\x22\x38\x82\xae\xf7\x41\x50\x9c\xa1\x26\xdf\x77\x60\xf5\x26\xd3\xf4\x63\xcf\xa2\x16\x62\xf0\xdb\x6f\xb0\x24\x8c\xe6\xd9\xeb\x7b\x46\x66\xb5\x71\xcc\xea\x3d\xca\xd9\xd7\x49\xaa\x7f\xa1\x75\x0d\x33\xb3\xc8\x09\xcc\xf5\x96\x6d\x96\xea\x9c\x30\xfb\xb4\x46\xf3\xa8\x54\x28\x8c\x52\xb9\xa1\x2a\xaf\xb8\x5e\xf1\x14\x6f\xf8\xd6\xb0\xc0\x62\x95\xab\x98\xf7\x24\xa5\xf1\x8e\xd4\x35\x16\xb0\xa9\x90\xc5\xdb\x3a\x50\x09\x72\x35\x5b\x50\xa5\xec\xf6\x6c\xd5\x99\x09\xcb\x56\x91\xe5\x69\xfa\x61\x80\xbf\x5d\xa0\x5a\x69\xda\x8d\x61\x6a\xd8\xa1\xbd\x8c\x96\x20\xb1\x2e\x87\x31\xc1\x80\xf1\xd8\x15\x5d\x76\x11\x8e\x6e\xc3\x7c\xd2\x93\xa9\xba\xf0\x54\x13\x4c\x18\x5b\xcd\x69\x66\x69\x83\x06\x51\x2d\x97\x88\x93\x85\xf1\x70\xdc\x67\xce\x21\x6b\xdf\x04\xd3\xfa\x72\xea\x58\x1d\xce\x90\x0e\x0e\xbc\xf1\xdf\x22\xaf\x4a\x44\xeb\xd3\xe5\x59\x28\xad\x59\x47\x21\xc8\x26\x23\x46\xf5\xa8\x9d\xa5\x75\x2f\x48\x1b\xb3\xb5\xba\x0a\xb8\x3c\xf3\x3a\x93\x34\x3d\x83\xf7\x26\x90\x32\x5a\x52\x73\xc7\xce\x0c\xbb\x33\xc9\x41\x60\x49\xb6\xd8\x70\xa7\x61\xa0\x40\x93\x24\x99\x16\x46\x3a\xc4\x6b\x77\xf5\x68\x76\xc6\x9c\xaa\x6d\x4c\x90\x24\xaa\xd5\xf2\x13\x6e\x5c\xfe\x68\x92\xee\xbe\x46\x79\x75\x6a\x0d\xda\x97\x6b\xaf\xd2\x96\x62\x48\x65\xcc\xcc\x33\xa3\x65\xe8\xd8\x65\x37\xfd\xdc\x92\xe0\x2b\x82\x71\x05\x64\xa5\x2a\x2e\xe8\xdf\x31\xdd\x75\x9c\xf3\xf5\x20\x4c\xd5\x24\x93\x52\xee\x0b\x97\xdd\x9e\x69\xb8\xa0\x8c\x2e\x56\x0b\xf7\xe8\x06\x25\x8a\xb5\x0d\xc6\x5e\xdb\xc2\x90\x49\x0b\x22\x50\x96\x73\x21\x30\x57\xf5\x36\xb6\xec\xb9\x45\x64\x40\x1a\xbc\x28\x4b\x77\x38\x1e\x2b\x93\x8d\xff\x8d\xce\xcc\x4f\x90\xaa\x3c\x1a\xb1\x01\x10\xf9\x0a\xfe\xd5\xd9\x17\x9e\x55\x2e\xd1\xd8\x6e\x2e\x75\xa9\x7c\x9b\xaa\x83\x18\x63\xb3\x47\x58\x7e\xd0\xa3\x27\xc5\xbb\x57\x91\x57\x92\x58\xdb\x41\x2f\xa9\x71\xcf\x9c\x94\x58\xa1\x27\x4f\x73\xba\xd6\x9b\x85\x4d\x7b\xbd\x4d\x98\x5e\xca\x6f\x13\x9d\xb4\x3e\x85\x92\xd4\x12\x81\xab\x0a\xc5\x86\xca\x98\x5c\x25\x25\xf5\xd5\xeb\x6d\x1b\x5c\xdb\x59\xc5\x6d\xcd\x75\x99\xae\x37\x54\x9a\x22\x13\x4d\x6b\x7b\xaa\xad\xd5\x44\x62\xcb\x19\x9a\xdd\xd3\xdb\x16\x53\x0b\x5f\xf2\x26\xdd\xe8\xee\xf6\x39\xeb\xdf\x61\x0c\x36\x3d\x0b\xb3\x7b\x9b\x24\x31\x17\xf2\x0f\xe7\xe4\x9f\x9a\x3b\x18\x7c\xba\xb8\x5f\xb7\x90\xfb\x6e\x98\x29\x69\x9c\x30\xbc\x7f\x86\xce\x99\x02\x66\x5b\x20\xcb\xa5\xe0\x6b\xcd\x09\x1c\xea\xf0\x57\xdf\xb4\x7f\xed\xc1\xbe\xe3\x69\x02\x7a\x8f\x37\xc3\x9c\x2f\xb7\x97\x7a\x5c\x42\x97\xf6\xe8\x1e\xec\xf0\xd9\x2c\xc6\x7a\x75\xb4\xd1\x14\x28\xf9\x4a\x58\xe2\x94\x57\x84\xcd\xd1\x32\x0f\xdd\xd0\x48\xdd\xdc\xeb\x5f\xbe\x37\x4f\xd2\x95\xd4\x75\xd0\xf5\xef\xcb\xcf\x08\x92\x39\xaa\x38\x1f\xa5\x46\xe2\x8f\x89\x8f\xd6\x5e\x38\xbc\xc8\xf0\x1b\x6e\x65\xc7\xb7\x0f\xa8\x24\x4c\xcd\xe9\x89\x76\x6e\x5a\x96\x5c\x28\xf8\x82\x74\x5e\x29\xd9\x52\x28\x69\x8b\xdb\x1b\xf7\x4f\xd9\xec\x77\x5d\x33\x1b\x5d\x56\x95\xd3\xa4\xad\x7d\xbc\xbf\x66\xea\xd7\x5f\x46\x60\x3f\x9f\x8e\x89\x61\x57\x26\x89\x27\xf6\x4e\x37\x80\x1d\x3c\xb8\x19\x0e\x68\x3d\xdd\x38\x4f\x75\x81\x4a\x54\xb0\xc5\x84\xf6\x76\x31\xfa\x0f\x2e\xb8\xd8\xfe\x10\x8c\xac\xaa\x9f\x86\x51\x34\xdd\x11\x18\x2d\xac\xa7\x2f\xc7\xe8\x23\x5d\x50\x75\x04\x42\x07\x00\x32\x6a\x34\x3c\xd6\xc3\x63\x40\xb1\x23\x0f\x41\x61\x14\x1f\x0f\x44\x6d\xdc\xd9\x03\xc3\xf7\xaf\x15\x1a\x84\x46\x6a\x52\x68\x16\x20\x95\xd0\xe5\xeb\x0f\x8e\xfd\x4c\xb7\xe8\x08\x6a\xd8\x1a\x95\x01\xd5\x0f\xb8\x67\xd2\xd1\x74\x0e\x89\x3b\xdb\x87\x5d\xdb\x35\x93\x7b\xd5\xbb\xb7\x77\x9a\x87\xb4\x4b\x47\x8d\xd3\xfe\x73\x6d\xfb\x39\xe8\xf4\xec\xe1\xaf\xc3\x13\x8f\x9d\x96\x3e\x16\x18\x41\xd4\xd7\x02\xf4\xe1\x94\x9e\xaa\x7f\x37\x56\x3d\xf4\x78\x07\x5e\x87\x8f\xf4\x5f\x84\x59\x8f\x01\x87\x70\x9b\x14\x85\x0c\xcf\x86\x3d\xa3\x22\xf6\x69\xdb\x2c\x44\xb8\x72\x91\x40\x4a\x8a\x22\xa5\x51\x3b\xae\x0b\x52\x5c\x0f\x38\x63\xe8\x4a\xf4\xfb\x4f\xdd\x75\x33\x5a\x1f\x83\xf0\xae\xbb\x8f\xf8\xf7\x77\x60\xdd\x6b\x5e\x97\x92\x45\xb0\xdb\x0b\x95\x1f\x83\xbc\x30\xba\x7e\x2e\xf8\xaf\x9e\x01\xfe\xae\xcb\xa3\x1f\x09\xff\xd0\x82\x90\x7d\xc3\xed\x6e\xc5\x41\x0c\xc2\x95\x60\xcf\x65\x55\xf6\x15\xd0\x1c\xa7\xf9\x2b\xaa\x8e\xc7\xba\x37\x5a\x12\x55\xc1\xf8\x28\xda\x99\xc8\xf2\xba\xf8\x9d\xd4\x2b\xec\xef\xab\xfc\x2e\x57\x73\x52\x44\x14\x57\x4f\x39\x38\x12\x21\x73\x79\xe2\xa4\x9d\x2f\xf6\xae\x24\x55\x42\x4b\xef\xad\x8e\x6f\x63\xdb\x8e\x20\x3f\xfb\x8e\xcf\xe9\xde\x15\xe8\xa7\x70\x7f\xd5\xad\x69\xd4\xea\xf4\x9e\xbb\x45\x87\xd9\xbb\x4e\x28\xec\xa8\xdd\xc3\xb8\x90\x30\x86\xc7\xce\xa9\x02\xd1\xfb\xb1\xee\xe3\x1d\x55\x8f\xf6\xe7\xac\xf5\xc1\x8c\x1b\xa6\x8b\x5f\x44\x53\x48\x74\x4d\xda\xb5\xc2\x5f\x6f\x19\x55\x3d\xf7\x58\x3e\xae\xfa\xb5\x27\x21\x4f\x27\xff\x0b\x00\x00\xff\xff\x90\x50\xb6\x78\x33\x1f\x00\x00" +var _flowserviceaccountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x59\x5f\x6f\xdb\x38\x12\x7f\xcf\xa7\x98\xee\xc3\x9d\x0c\x24\x4e\x1e\x16\xfb\x10\xc4\xdd\x73\x5b\xa7\x08\xae\xd7\x1e\xf2\x67\xfb\xb0\x58\x74\x69\x69\x64\x11\x95\x49\x83\xa4\xed\x78\x83\x7c\xf7\x03\xff\x49\xa4\x28\x39\x4e\xd2\xdb\x3c\xc4\xb6\x34\xfc\x71\xe6\x37\x33\xe4\x0c\x49\x97\x2b\x2e\x14\x5c\xae\xd9\x82\xce\x6b\xbc\xe5\xdf\x91\x41\x29\xf8\x12\xce\xee\x2f\xef\x3e\x7f\xbc\x7a\xf7\x69\x76\xfb\xe5\xdf\xb3\xcf\xd3\x0f\x1f\xae\x67\x37\x37\x47\x7e\x40\xcd\xb7\xb1\xf0\xa7\x2f\x5f\x87\x04\x2f\x11\x65\x28\x77\x39\x9b\xdd\xf4\x88\xdd\x28\x2e\xc8\x02\xbb\xd2\x37\xb7\x5f\xae\xa7\x1f\x67\xe1\xa0\x23\x92\xe7\x28\x65\x46\xea\x7a\x04\x39\x67\x4a\x90\xdc\x61\xa0\xd8\xd0\x1c\xa7\x79\xce\xd7\x4c\xc1\xc3\xd1\x11\x00\x40\x28\x8e\x1b\x64\x0a\x6e\x05\x61\x92\xe4\x8a\x72\x76\x89\x78\xb7\x2a\x88\xc2\x22\x63\xa8\x75\x3d\x87\xbb\x4b\x7a\xff\xcb\xcf\xa3\xa1\xc1\x0e\xfd\xbd\x40\xf2\x7a\x00\x2e\xa6\x45\x81\x45\x46\xa2\x67\xe7\x30\x2d\x0a\x81\x52\x1e\x88\x71\x8d\x4b\xbe\x79\x01\xca\x95\xec\x18\x73\x8d\x52\x09\x9a\x2b\x2c\xbc\x4d\x54\xb6\xcf\xce\xe1\x1d\xe7\xb5\x43\x3b\x3d\x3d\x85\x29\x94\xf4\x1e\x8b\x13\x41\x14\x42\x89\x08\x79\x45\xc4\x02\x0b\x50\x1c\xf0\x1e\xf3\xb5\x42\x20\xa0\x5a\xb6\x13\x3d\x36\x44\x84\xef\x03\xfa\x0e\x9b\x25\xd7\x8a\xeb\x49\x18\x6e\xc1\x99\xdf\x3b\x09\x49\xbc\x96\x4e\x74\x5b\x21\xd4\x54\x2a\xe0\xa5\x97\x07\x62\x29\x44\x09\xaa\x22\x0a\x2a\xb2\x41\x58\xa1\x58\x52\x29\x29\x67\xa1\x0a\x76\x80\x0c\x67\xf7\xc1\x99\xaa\xc0\x85\x3c\x87\x07\xe7\x1f\xcb\xeb\x63\xab\xc8\x15\xa3\x8a\x92\x9a\xfe\x85\x40\x58\xa3\xca\x96\xaa\x0a\x48\x90\x7c\xbf\x91\x75\xad\x80\xb0\x02\x56\xeb\x79\x4d\x65\x05\x39\x59\x91\x39\xad\xa9\xa2\x28\xc7\x09\x0f\xe5\x9a\x01\x65\x54\x7d\xc0\x52\x8f\x34\x20\xd9\x37\x2d\xa2\xce\x61\xba\x56\x95\x8b\x86\x11\x3c\x98\xb1\x56\x1d\x78\x1f\x72\xdc\x37\xbb\xd4\xa4\x50\x05\x94\x81\xb4\x59\xdc\x0c\xd7\xd8\x63\xfd\x3e\xbb\x38\x69\x86\x8e\x2d\x65\xb3\xe5\x4a\xed\x0c\x4a\x36\x3a\x06\xc5\xcf\xe1\xd4\x0d\x3f\x2d\xbd\xa8\x79\xed\x22\xae\xab\x8e\x31\x3a\x6f\x6d\xde\x69\x6f\xa8\x0a\x9d\x66\xc6\x5f\x9c\xd5\x3b\xc0\xfb\x15\x97\x28\x43\x10\x2d\x56\xe0\x8a\x4b\xaa\x34\x2d\x26\xf8\x40\x55\x82\xaf\x17\x95\x79\x79\x8d\x39\xd2\x0d\x0a\xa0\x4c\xa1\x28\x49\xde\xb1\xa9\xa6\xec\xfb\xc5\x3f\x5a\x93\xcc\x9c\x0f\xd1\x4a\x3a\xf6\x18\x8f\x6f\xb3\x66\xb0\x99\xdf\x6a\xde\x5a\xe9\x05\x8f\x23\x31\xa5\xa3\x5c\x0d\xb2\xd2\xc8\xfe\x9f\xe8\x99\x93\x9a\xb0\x1c\xa1\xa4\x58\x17\x11\x37\xef\xdc\x9b\x57\x50\xe3\x20\x9e\x64\xc6\xc9\xbd\x94\x18\xfd\x3f\xc8\xab\x8f\xa8\x9c\xe7\x4b\xcb\x81\x09\x64\x6f\x28\x67\x41\xb6\xf9\x31\xcd\xd8\x6b\x54\x6b\xc1\x24\x9c\x01\x2d\x0d\x88\x4f\xcb\x8a\x48\x60\xbc\xc1\x74\x68\xbd\xc9\x57\x04\x89\xe7\x2c\x6b\xf2\xef\xbf\xc6\x72\x9f\x81\x7e\x71\x0a\x32\x51\x2f\x21\x5e\xd5\x09\x9c\x8d\xcf\x9a\x37\xb4\x84\x1a\x9b\x99\xaf\xb1\x84\x89\x01\x8d\x48\x1b\x2f\x50\xbd\x6f\x62\x21\x1b\x62\x7a\x14\x0f\x9a\x73\x21\xf8\xf6\x70\x6f\x8e\x1e\xa2\xf1\xfa\xaf\xd5\xb9\x55\x70\x1c\xb2\xe4\xff\x1e\xdb\x38\x16\x86\xec\x88\xcb\xc0\x8d\xd6\x15\x40\x40\x60\x89\x02\x35\xb8\x0b\xed\xd8\xb1\x1b\xf3\x3d\x75\xeb\x3e\xb7\xd8\xf5\xa8\x6f\x51\x3c\x07\xb2\x56\x55\x16\x5b\xfe\x95\xaa\xaa\x10\x64\x4b\xe6\x35\x8e\xa0\x4b\x53\xe0\x3d\x67\x91\x49\x10\x47\xea\xb3\xe1\xde\x66\xba\x30\xda\xb3\x4c\x86\x6c\xfe\xfa\x2b\xac\x08\xa3\x79\xf6\xd3\x1d\xd3\x70\x9a\x22\x3b\xf1\x41\xb4\xfd\x94\x24\xcf\x57\x5a\xd7\x30\x37\xcb\xa6\xc0\x5c\x17\x07\x66\xf1\xcf\x09\xb3\x4f\x6b\x34\x8f\x4a\x85\xc2\x80\xca\x2d\x55\x79\xc5\xf5\x1a\xaa\x78\x53\x09\x8e\x0b\x2c\xd6\xb9\x8a\x2b\xb0\x24\xd9\xde\x93\xba\xc6\x02\xb6\x15\xb2\xb8\x80\x00\x2a\x41\xae\xe7\x4b\xaa\x94\x2d\x00\x2c\x9c\x99\xb0\x6c\x81\x6c\x05\xa9\x1f\x06\x1e\xb4\x4b\x5e\x3b\x9a\x0e\x45\x43\xaa\xe0\x53\xbb\x24\x2d\x41\x62\x5d\x8e\xe3\x52\x06\x26\x13\x97\xc6\xd9\x59\x28\xdd\xc6\xc3\x51\x4f\xec\xeb\x54\x56\x8d\x53\x61\x62\x91\xd3\x18\xd5\x0a\x8d\xa2\xd5\xa1\x44\x9c\x2e\x8d\xa5\x93\x3e\x75\x9e\xd2\xf6\x6d\x30\xad\x4f\xd0\x8e\xd6\xe1\x0c\xa9\x70\x60\x8d\xff\x16\x59\x55\x22\x5a\x9b\x2e\x4e\xc2\xd1\x5b\x17\xf4\x19\x31\xd0\xe7\xed\x2c\xad\x79\x41\xf8\x98\x4d\xdb\x65\xc2\xc5\x89\xc7\x4c\xc2\xf5\x04\x3e\x18\x47\xca\x68\xb1\xce\x5d\xfd\x67\xea\x48\x13\x24\x04\x56\x64\x87\x4d\x75\x36\x0e\x00\x74\x19\x26\xd3\x04\x49\x45\x3c\xba\xcb\x4b\xb3\xe7\xe6\x54\xed\xfa\x4b\x30\x89\x6a\xbd\xfa\x8c\x5b\x17\x47\xba\x6d\x70\x5f\xa3\xf8\x3a\xb6\x8a\xed\x8b\xb9\x37\x69\xd3\x33\xa6\x32\xee\x0d\x32\x83\x32\x76\x75\x6c\x37\x0c\xdd\x12\xe1\x33\x84\x71\x65\x56\x39\x2e\xe8\x5f\x71\x81\xed\xaa\xdb\x9f\x46\x61\xc8\x26\x11\x95\x56\xd9\x70\xd1\xed\xee\xc6\x4b\xca\xe8\x72\xbd\x74\x8f\xae\x51\xa2\xd8\x58\xa7\xec\xd5\x2d\x74\x9d\xb4\x24\x02\x65\x39\x17\x02\x73\x55\xef\x62\xcd\x9e\x9b\x4c\x86\xa4\xd1\x8b\xa2\x75\xc0\xf0\x18\x4c\x36\xf6\x37\x98\x99\x9f\x20\x85\x3c\x98\xb1\x11\x10\xf9\x06\xfe\xd5\xd9\x27\x9e\x95\x36\x91\x6c\x37\x96\xba\xcd\x42\x1b\xaa\xa3\x98\x63\xb3\x67\xd8\xca\xa3\x07\x27\xe5\xbb\x17\xc8\x83\x24\xda\x76\xd8\x4b\x72\xdd\xd7\x66\x4a\xac\xd1\x97\x67\x0b\xba\xd1\x9b\x87\x0d\x7b\xbd\x6d\x98\xae\xcd\x6f\x1b\x9d\xb0\x3e\x86\x92\xd4\x12\x81\xab\x0a\xc5\x96\xca\xfe\xf2\x2d\x49\xad\x6f\x1e\xbf\x6d\xb5\x6d\x2f\x17\x37\x50\x57\x65\xba\xfe\x50\x69\x92\x4d\x34\xcd\xf5\xb1\xd6\x5a\x97\x2a\x3b\xce\xd0\xec\xaa\x5e\xc7\xb8\x78\xf1\xa9\x6f\xc2\x8e\x0e\x37\xf0\x59\xff\x8e\x63\x38\xea\x59\xa8\xdd\xdb\x24\x98\xb9\x90\xbf\x3b\x23\xff\xd0\x35\x85\xe1\xa9\xcb\xff\x55\x4b\xbd\xef\xc3\x99\x92\xc6\x08\xd3\x61\xcc\xd1\x19\x53\xc0\x7c\x07\x64\xb5\x12\x7c\xa3\x6b\x05\xc7\x3e\xfc\xd9\x37\xed\x9f\x07\xf8\xa0\x63\x71\x42\x7e\x8f\x55\xe3\x9c\xaf\x76\x17\x5a\x2e\x29\xa7\xf6\x60\x8f\x06\x6c\x37\x8b\xb3\x5e\x2d\xad\x57\x05\x4a\xbe\x16\xb6\xb0\xca\x2b\xc2\x16\x68\x2b\x13\xdd\x42\x49\xe0\x36\x32\xfd\xa9\x40\x12\xbe\xa4\xae\x83\xf3\x86\x7d\xf1\xda\x4b\xcd\x02\x55\x1c\x9f\x52\x33\xf2\xfb\xd4\x7b\x6f\x2f\x2d\x7e\xc8\xf8\x3b\xee\x64\xc7\xc6\x8f\xa8\x24\xcc\xcc\x79\x8e\x36\x72\x56\x96\x5c\x28\xf8\x8a\x74\x51\x29\xd9\x96\x5a\xd2\x26\xbd\x57\xf2\x9f\xb2\xd9\x0f\x87\xd4\x6d\x30\x2d\xa4\x43\xd4\x5a\x3f\xdc\x5d\x31\xf5\xcb\xcf\xe7\x60\x3f\x1f\x0f\xf1\x69\x77\x4c\xe2\x5f\xec\x9d\x6e\x04\x03\x75\x73\x23\x0e\x68\x2d\xde\x3a\x8b\x75\xe2\x4a\x54\xb0\xc3\xa4\x4c\xee\x72\xf5\x1f\x5c\x72\xb1\xfb\xa1\x5c\x59\xc8\xbf\x8d\xab\x68\xba\x03\xb8\x5a\x5a\x8b\x5f\xce\xd5\x27\xba\xa4\xea\x00\xa6\x0e\x24\xca\xc0\x69\x9a\xac\xa5\x87\x90\x63\x25\x9f\xa2\xc4\x00\x1f\x4e\x48\x6d\xcc\xda\x43\xc7\xeb\xd7\x92\x90\x8c\x66\xf4\xb4\xd0\xd5\x83\x54\x42\xa7\xb7\x3f\x12\xf7\x33\xde\xa0\x2b\x70\xc3\x16\xab\xc4\xe8\x40\xa7\x5b\xbb\x26\x9d\x51\xe7\xd8\xbb\xb3\xed\xd8\x3d\x41\x57\x82\x6f\x7a\x6b\x83\x4e\x13\x92\x9e\x1f\xa0\xe6\x6d\xff\x89\xbd\xfd\x1c\x75\x4e\x13\xc2\x5f\x4f\x4f\x3c\x71\x28\x7d\x55\x64\x44\x55\x5f\x2b\xb1\x8f\xaf\xf4\xbe\xe0\xd5\x9c\xf5\x94\xd9\x03\xbc\x3d\x7d\x59\xf1\x22\xee\x7a\x14\x78\x8a\xbf\x69\x51\xc8\xf0\x34\xdb\x57\x66\xc4\x3e\x6d\x9b\x8e\x88\x5f\x2e\x06\xa9\x25\x45\x91\x96\x63\x03\x17\x20\x29\xbf\x4f\x18\x65\xca\x9e\xe8\xf7\x1f\xba\x9b\x67\xb4\x3e\x84\xe9\xa1\x5b\x9d\xf8\xf7\x2b\x38\xef\x55\xaf\x5b\xda\x45\xf4\xdb\x2b\xa2\x1f\xeb\x01\x61\x30\xff\x5e\x27\xbc\x79\x86\x13\x86\xae\xc5\x7e\xa4\x1b\xc6\x96\x84\xec\x3b\xee\x86\x81\x03\x5f\xf4\xad\x10\x7b\xae\xe1\xb2\x6f\x80\xe6\xf8\xce\x5f\xbe\x75\x2c\xd7\xbd\xd7\x8a\xa8\x0a\x26\x07\x95\xb1\xc9\x58\x5e\x17\xbf\x91\x7a\x8d\xfd\x7d\x9b\xdf\x15\x6b\x4e\x8a\xa8\x64\xd6\x53\x8e\x0e\x64\xca\x5c\xff\xb8\xd1\xce\x16\x7b\xdb\x93\x82\xd0\xd2\x5b\xab\xfd\xdc\xe8\x36\xe0\xec\x67\xdf\x5e\x3a\xec\x21\x87\x3f\x86\xfb\xb1\x6e\x7d\xa3\x16\xaa\xf7\x7c\x2f\x3a\x86\x1f\x3a\x01\xb1\x52\xc3\x62\x5c\x48\x98\xc0\x43\xe7\xd4\x82\xe8\x7d\x1b\x2e\x4e\x7c\xe9\x1f\xed\xe3\x59\x6b\x83\x91\x1b\xa7\x8b\x61\x54\xd6\x90\xe8\x22\xb8\xab\x85\xbf\xa0\x33\x50\x3d\x37\x71\xde\xaf\xfa\xb5\x2f\x5a\x1e\x8f\xfe\x17\x00\x00\xff\xff\xff\x94\x72\x87\x3d\x20\x00\x00" func flowserviceaccountCdcBytes() ([]byte, error) { return bindataRead( @@ -159,11 +159,11 @@ func flowserviceaccountCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0xb0, 0x82, 0x77, 0x56, 0x86, 0xad, 0xc7, 0xb4, 0x2d, 0x93, 0x57, 0xdd, 0xf1, 0x4, 0x58, 0xad, 0x7e, 0xc4, 0x6d, 0xb2, 0x45, 0xdf, 0xec, 0x33, 0xe0, 0x87, 0x2f, 0xe2, 0x97, 0x7a, 0x9d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x89, 0x67, 0xf9, 0x96, 0x25, 0x8, 0x36, 0x86, 0x2c, 0x10, 0xb1, 0x39, 0xf5, 0xa7, 0x94, 0x9e, 0xdd, 0xc6, 0x41, 0x41, 0xa, 0x82, 0xf, 0xf5, 0x57, 0xd8, 0x75, 0x3, 0x28, 0x67, 0x5e, 0x25}} return a, nil } -var _flowstakingcollectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5b\x53\x1c\x47\xd6\xe0\x3b\xbf\xe2\xc8\x0f\x36\x8c\xa1\x71\xec\x6e\x6c\x6c\x10\xc2\x32\x06\xa4\x21\x24\x4b\xb2\x40\xe3\x07\xc7\x84\x27\xa9\xca\xa6\x6b\xa8\xae\x6c\x57\x66\xd3\xee\xd5\xf0\xdf\xbf\xc8\xfb\xbd\x2e\x4d\x83\xec\x18\xf1\x20\x41\x77\x5e\x4e\x9e\x7b\x9e\x3c\x79\xf2\xf0\x6f\x3b\x3b\x00\x00\x2f\x6b\xb2\xba\x64\xe8\xb6\x6a\x6e\x4e\x49\x5d\xe3\x82\x55\xa4\x91\x5f\x5d\xcd\x2a\x0a\x05\x69\x58\x8b\x0a\x06\x25\x9e\x56\x0d\xa6\x80\xa0\x30\xed\x60\x4a\x5a\xa0\xb2\x37\xa0\xa6\x84\x12\xd7\xf8\x06\x31\xfe\x27\xb9\xfe\x37\x2e\x18\x15\x23\xad\x66\x55\x31\x03\x54\xd7\x64\x45\x61\x49\x71\x4b\x81\x11\xd1\x11\xbb\xdd\xb0\x18\x0f\x51\x98\xa3\x66\x0d\x0d\x29\xf9\x74\x14\xd8\x0c\xaf\x61\x85\x1a\x06\x55\x03\x08\x68\xd5\xdc\xd4\x18\x50\x51\x90\x65\xc3\x26\x62\x82\x0b\x06\x02\xd6\xf9\x02\xb1\xea\xba\xc6\xb0\xaa\xd8\x8c\x77\x84\x9a\x14\xb7\xb8\x04\x46\x6e\x71\xa3\xfb\x00\xc5\x6c\xb9\x98\xc8\x55\x5e\x62\x2c\x1a\x92\x66\x5a\x93\xd5\x21\xff\xe7\xa0\x20\x2d\x3e\xd0\x2b\xa7\xf0\xe1\xfc\xe4\xec\xa7\x73\x01\xdc\x9c\xb4\x18\x66\xd5\xcd\x0c\x6a\x7c\x87\x6b\xa8\x9a\x29\x69\xe7\x48\x20\x03\x5d\x93\x25\x13\x63\x69\x94\x58\x4c\xf1\xc9\xfe\x76\xb8\xb3\x53\xcd\x17\xa4\x65\xf0\x72\xd9\xdc\x70\x38\xaf\x04\x58\xd3\x96\xcc\xe1\xbb\x3f\x5e\x7e\x7c\xfb\xea\xe2\xc7\x37\xe7\x57\xef\x5e\x9f\xbf\x3d\x39\x3b\xfb\x70\x7e\x79\x69\x3a\xd4\x64\xe5\x37\x7e\xf3\xee\x97\x5c\xc3\x8b\xb3\x2b\x74\x5d\x63\x45\x56\xb7\xc7\xc5\xd9\xd5\xc9\x8f\x6f\xce\x2f\xaf\x4e\x5e\x5f\xbc\x7d\x15\x74\x7d\x23\x50\x25\x66\xa1\xba\xd3\x9b\x77\xa7\xaf\xcf\xcf\xc4\x44\x97\x89\x99\x2e\x19\x69\xd1\x0d\x7e\x89\x31\x75\xa7\xb9\xbc\x7a\xf7\xe1\xe4\xd5\xf9\xcb\xf3\xf3\x54\xa7\xd3\x7a\x49\x19\x6e\x7f\x3e\xd5\x5d\x7e\x3e\x4d\xb4\x3a\x7b\xfd\x4a\x7f\x7f\xf6\x3a\x04\x95\x37\x38\x5f\x90\x62\xa6\x9b\x9c\xbf\x7f\x77\xfa\x77\xdd\x68\x67\xb1\xbc\xb6\x8c\x9b\xe4\x70\xf8\x24\xa9\x7f\x78\x78\x08\x27\x8a\x2b\x16\x88\xcd\x24\xbf\xf2\xfe\x35\x66\x10\x75\x53\xeb\x7d\x8f\xd8\xec\x08\x9c\x3f\xba\x7b\xbd\x6f\xab\x3b\xc4\x54\x2f\xe7\x8f\x9e\x5e\xcb\xeb\xba\x2a\x54\x27\xf3\xbb\x05\xfb\xfc\x0e\x37\xcc\xc2\x8b\xf9\x9f\xf0\x96\x94\xf8\xa4\x2c\x39\x19\xa3\x01\x77\xb9\x44\x5d\x9c\x71\xc0\xdb\xaa\xb9\xd9\x87\x96\xd4\xf8\x08\x3e\x5e\x34\xec\xff\xed\x03\x9a\x73\x24\x9c\x92\xf9\xbc\x62\x0c\x97\x47\xf0\xf1\x65\xf5\xc7\xff\xfd\x3f\xfb\x80\xca\xb2\xc5\x94\x1e\xc1\x89\xfc\xe5\xc5\x5e\x30\xe7\x99\x94\x5e\xd2\x0e\x9e\xb8\xd4\x3d\xf8\x87\x7c\xfe\xff\xfd\xbf\xc6\x01\x90\x58\xf5\x07\x3c\x27\x77\xb8\x7c\xd9\x92\xf9\xd8\x95\x0f\x5e\xe0\xa8\x39\xd2\x8b\xec\x5d\xcb\x4f\xa8\x98\x55\x0d\x56\x4c\x79\xda\x62\xc4\x70\x39\x6e\x01\x7b\x96\x49\x2e\x59\xbb\x2c\xb8\x52\x42\x0c\x28\x23\x2d\xa6\x16\x2e\xb8\x38\x13\xfa\xcb\x00\x40\x65\xe3\x33\x0b\x38\x85\x4f\xe2\x5b\x97\x51\x4d\xff\xb7\x1e\x4c\xf9\x76\x76\xfd\x3b\xa6\x51\xd5\x54\x6c\x08\xc6\xf6\x1c\x00\xf8\x0f\xc5\xf5\x74\x12\x40\x00\xc7\x20\x47\xea\x68\x29\x5a\x39\x7f\x99\xa6\xf7\x3b\xf2\x5f\x83\xb1\x53\xd2\x30\x54\x35\x34\xa1\xda\x91\x98\xe7\x1b\x6e\x9f\x04\x8d\xb4\xe6\x30\x7d\xa5\x9d\xab\xb8\x91\xa4\xb8\x20\x4d\x89\xda\xb5\x31\x3a\x82\x06\x15\x05\xd2\xd4\x6b\x98\x63\x6e\xcf\x18\x81\x19\xa9\x4b\xd3\x9f\xdb\x8e\x9f\x4f\x81\xb4\xc0\xb5\x9f\xb4\xa0\xc2\x40\x72\xa5\xca\x5b\xa3\x25\x23\x1c\xa4\x02\xd5\xf5\x1a\x16\x68\x2d\x8c\x12\x6b\x51\x43\x91\xb2\xc8\x18\x53\x33\x5e\x8b\x6b\xce\x3d\xbc\xa7\x33\xec\x02\xb7\x62\x55\x74\x12\x52\xde\xe7\xbd\x8b\x66\x4a\x12\xf4\x6f\xba\xc9\xee\x70\xa6\xf9\x8e\xa3\x15\x2d\xd0\x75\x55\x57\x6c\xcd\xa1\xe1\x0b\x15\x6b\xfa\x07\x5a\xd6\x02\x0f\xc2\x39\x90\x86\x78\xd5\xe0\xd6\xed\xca\x88\x30\xe7\x65\x8b\x56\x7c\x0d\x25\x5e\x10\x5a\x31\x35\x4c\xd5\x1a\x6a\x68\x44\x57\x53\x68\x30\x2e\x71\x69\x06\x41\x45\x81\x29\xdd\xd5\x26\x61\x4f\x00\x3a\xf7\x16\x2b\x00\x79\xdf\x92\xbb\xaa\xc4\xed\x91\x03\xee\xf3\xaf\x8d\xed\x9d\x88\x46\xdf\xf7\x70\xb1\x27\x9a\x1b\x4f\x12\x32\xfe\xa2\xc5\xc1\x27\xfc\xa7\x63\xf8\x49\x31\xc3\xc5\xed\xee\xde\x11\x7c\x75\xd1\xdc\xa1\xba\x2a\x85\x25\x04\xe9\x45\x48\xbc\xeb\xb6\x5f\x79\x03\xdf\xc7\x72\xd4\xf4\x09\x1a\x5f\x34\x1c\x8b\xb5\xc7\x5f\x76\x40\x09\xc7\x5d\x6b\x70\xa4\xd4\x65\x88\x57\x98\x09\xaf\x50\x2b\x3e\x20\x53\xf1\x67\xc0\x08\x1e\x6b\x4e\x97\x0d\xdc\x60\xa6\x34\x24\x47\x8b\xfa\x35\xc0\x6a\x8b\xd9\xb2\x6d\x7a\xe1\x9e\x5c\x93\xb6\x25\xab\xdd\xbd\x67\x13\xc1\xaf\xcf\x26\x0a\x96\xbc\x62\x91\x36\x1c\xaa\x86\xe1\x76\x8a\x0a\x2c\x15\x82\xf4\x86\x0b\xd4\x70\x28\xeb\x8a\xce\xa4\x44\x0b\xc6\x8e\xdd\x48\x33\x18\x25\xb2\x3b\x61\x33\xdd\xff\xf7\x25\x6e\xd7\x41\x4f\x4f\xbd\xb7\x98\x92\x65\x5b\x60\x07\x84\x8c\xd3\x11\x48\xfd\x1d\x6a\x95\x1f\x2d\x9d\xc3\x8f\xd4\x9a\xe7\xa8\xe1\xb2\x19\xd4\x94\xd3\x03\x95\x25\xd7\xe0\xef\x84\x9e\xdb\xfd\x4d\x30\xd7\x11\xfc\x10\xbb\xb0\x13\xde\x8c\xff\x8e\xdb\x50\xa4\xb8\x92\x3a\x4a\x28\x2e\x65\xc4\x83\xe9\x8c\x69\x33\x73\x1a\x9b\x90\x9f\xd8\x74\xda\x73\x98\x50\x0f\xaa\xb4\xd1\x15\xf1\x41\x88\xb4\x02\xf7\x53\xd5\x14\x8e\x98\xfb\x40\xde\x55\x78\x25\x07\x25\x98\x8a\xe5\x9e\xff\x51\xd1\x41\x76\xf2\xc5\xde\x11\xfc\x48\x48\x9d\xe2\x79\x69\x25\x05\xcf\xff\x2a\x87\xf8\x67\xaa\x99\x6b\xf6\x45\x5b\xf7\x83\x64\x8f\x93\xba\x16\x63\x37\x53\x22\x3a\x64\xf0\xc7\xbf\xcf\xf5\xb7\x73\x74\x0c\xe2\x35\x4a\x8e\xe4\x23\x5f\x80\xff\x49\x2e\x35\xc5\x1b\x91\x68\x5e\xcd\xb0\x95\x0e\xe5\x2b\x71\x66\xa3\xd2\x67\xe2\xfb\x4e\x29\x57\x4a\xb3\xa8\xed\x2b\x69\xb1\x19\x02\xd5\x75\x20\x7b\x6a\x03\x2c\xec\x77\x11\x59\x3f\xb5\x2f\xd5\x36\x4b\x36\x36\xa3\xbd\xc6\x78\x41\xb9\x5d\x2f\x6e\xb9\x72\x9b\x91\x95\xdc\x13\xeb\x5e\x4d\x69\xe4\x4c\x6e\x6d\x29\xa0\x56\xee\x3b\x71\xe9\x2a\x89\x8a\xc1\x6d\xc3\x77\xdd\xd2\x35\x51\x6d\x19\x81\x9b\xea\x0e\x6b\x58\xb8\x0e\x82\xd5\x0c\x37\x72\xab\xad\x0d\x2c\x9f\x45\x1b\x5e\x33\x66\x59\x4d\xa7\xb8\xe5\x8e\x2a\x5b\x2f\xb0\x54\xbd\x62\xd0\x58\xcd\x44\xca\xe5\xa8\x43\xdf\x38\xa2\x75\x68\xd7\x76\xc7\x85\x24\x34\xe3\x5c\x37\xef\x79\xba\x46\xc8\xd2\x50\xa3\xcd\x27\x48\x0e\x2f\x3c\xb8\xaa\xae\xe1\x1a\x43\x53\xd5\xdc\x8f\x10\x46\x46\x91\x68\x86\x28\x34\x04\x0a\xd2\xb6\x98\x2e\x48\x53\x72\x22\xfb\x64\xcc\x43\x3a\x18\xce\x17\x3e\xa0\x97\xd2\x67\x0f\x79\x8a\xdb\x08\x15\x1f\xb1\xe1\x13\xd2\x52\xaf\xef\x29\x6a\xa4\xb3\xb9\xa4\x18\x48\x83\x1d\xcf\x7f\x81\x65\x7f\x70\x6c\x39\xef\xc2\xfd\x26\xce\x15\xd7\x18\x16\x72\x9f\xaa\xa6\x5a\xc1\x35\x2e\x10\x1f\x48\xb0\x48\x41\x96\x75\xc9\x5b\x2d\xa9\x83\x05\x87\x11\x92\x48\x68\x8c\x16\xa7\x47\xf0\x83\x11\xd0\x4e\x7d\x7f\xdf\x3d\x9c\x51\x0d\x43\x46\x34\x8d\xef\x77\x02\x44\x09\x7a\x58\xe1\x14\x04\xf9\x3b\xa9\xb9\x83\xa2\xbc\x70\xa9\x02\x2c\x67\x86\x14\x77\x02\x09\x54\x48\x8d\xdc\x30\x04\x62\x2e\xd8\xab\x21\x6a\x2f\x06\x6c\x56\xd1\x7d\x2e\xa3\x0e\xdb\xe5\xd7\xcb\x2c\x54\x3e\x0f\xb9\x81\x9b\x89\x03\x7b\xc8\x4c\x57\x5c\x9f\xd0\x41\xda\x44\x47\xb1\x70\xcb\xb7\x2c\x92\xca\x22\x38\x67\xd4\x9c\x61\xbf\x43\xe1\x93\x27\x39\xf0\x17\xae\x53\x0a\xb9\xa3\xe7\x23\x34\x78\xa5\x26\xd8\x87\x58\x7b\x2d\x29\x2e\x61\x5a\xb5\x94\xed\xc3\x94\xf0\xfd\x00\x2e\xe1\x7a\x1d\xc2\x16\xcf\xa0\x95\x14\x9f\x42\x0f\x9f\x52\x8f\xba\x5d\x93\x9a\x25\x3d\xc7\x36\xdd\x9f\x14\x2d\x12\x6e\x2b\x05\x44\x29\x29\x2a\xb1\x73\x13\x71\x4c\x81\xea\x3c\x5f\xf8\x0e\x11\xed\x31\x7d\xfe\xe6\x65\x84\x06\xdd\xdf\x84\x01\x87\x6d\x63\x3c\x28\x32\x1b\x17\x07\x14\xc7\x9c\xf6\xee\x5c\xbc\xa1\xe1\xd8\x9f\x6a\x27\xbd\xd3\x51\x3a\x0a\x9e\x1f\xc0\xa7\xcc\x66\xc8\xea\x1d\xd5\x2a\x6e\x16\xf2\x01\x1c\xc3\x77\x93\xef\xf2\x10\x46\x2d\xbd\xa6\x87\x87\x70\x11\xdb\xa3\x50\xc1\xec\x0b\xaa\x56\xa8\xae\xfe\x3f\x86\x4a\xf8\x29\x7c\xb7\x37\x13\xd4\x08\xc7\xe3\x72\xef\x1a\x42\x07\xad\x5e\xd3\x6a\x2a\xf6\xcb\x0e\xf5\xdf\x5d\xff\x1b\x8e\xdd\x0f\x12\x34\x15\x6b\x73\x9b\x78\x1d\x76\xa2\xf6\x87\x87\x20\xf7\x54\x4a\x26\xb8\xc2\x15\xc0\xcf\x51\x83\x6e\xac\x22\x16\x01\xdf\x84\x07\x95\x1a\x90\xfb\x39\x98\x29\x89\x09\x3c\xaf\xce\x25\xf3\x1f\xbe\x66\x87\x32\x3f\x29\x30\x8e\x03\x44\x38\x3b\x41\xf9\x9b\xdb\x7a\x77\x2f\x8d\x17\x9f\x27\xe3\x59\x26\xbe\x67\xc2\x7f\xee\x01\xd7\x34\x25\x3c\x09\x44\xbb\x66\xa4\x63\xde\xb0\x59\x8a\x8b\x03\xe5\x02\xc7\xae\x48\x84\x76\xb4\x26\x14\x6b\x13\x21\xcd\x07\x85\x6b\x3c\xe5\xa6\xae\xc4\x94\xb5\x64\xcd\x55\x34\xbe\xc3\xed\x9a\xcd\xdc\xe0\x91\x74\xc2\x85\xa5\xc1\x52\x29\x16\x7c\x2c\x21\x88\x30\xc7\x6c\x46\xca\x7d\xe5\xce\x0a\x53\xb9\x40\x0d\xdf\x4a\x0b\x81\x68\xb1\xf2\x7d\xf9\x17\x4a\xdb\x4b\x47\x58\x9c\x17\x35\x6b\x1d\x1e\x70\x4f\xa4\xf8\x8f\x02\x69\x37\xd4\x51\x36\xc8\xc5\x97\x2b\xb0\xe0\xee\xa2\xa2\xb6\xa5\x1b\x2f\xb5\x1d\xfc\xfd\x94\x8f\x5a\xed\xbf\x89\x08\xac\x99\x2c\x43\x5b\x8b\x0a\xb3\x13\x94\xff\x07\x3b\xc1\xa6\xaa\xf7\xba\xe8\x39\x75\x0d\xb5\x9c\xb9\x4c\x87\x7a\xfb\xa6\x77\xba\x85\xc1\xd8\x00\xa6\x64\xcb\x8b\xb3\x4e\x38\x15\x5d\x22\x7d\xdc\xdd\xe8\x2c\x76\x41\x22\x37\xaf\xae\xb9\x49\x0d\x9c\x12\xc5\x32\xce\x51\xe6\x44\x45\x98\x9c\x93\x30\x5c\x71\x4e\x03\xd2\xc2\x35\x61\x33\xa9\x3c\x7c\x4f\xe4\x23\xe7\x5c\xdf\xe7\x50\x5e\x06\xe3\x13\x1a\x7f\xa4\x9a\x0a\x9e\x14\x07\x89\x96\x6f\xd3\x01\x4b\x69\xe3\xd5\x1e\x57\xda\x87\x5d\x79\x4c\xa2\x9d\x8a\xbd\x23\xf8\xc1\x3b\x4c\x54\x16\xf2\xd3\x4e\xc4\xa6\xa1\x25\x8c\xcd\xa3\x55\x65\xd9\xce\x3f\xa2\x1a\x35\x05\x0e\x0d\xe9\xe4\x5a\x7d\x7e\x10\x1e\x0b\x4e\xe6\x55\x53\xcd\x97\x73\xf5\xd1\x07\x4c\x71\x7b\x87\xec\x21\xb3\x45\xa1\xb2\x6f\x7c\xbb\x9d\x32\x6c\x6a\xef\xe1\xab\x6f\x81\xe1\xd0\x58\x45\x9a\xee\x99\x50\x75\x21\x4e\xc0\xd3\xf1\x1e\x56\x9c\x8f\x9e\x65\x90\xe2\xf7\xb6\x68\xd9\x2a\x52\x04\x2b\x50\x8a\x5b\xb6\x1b\x7d\x2e\xbe\x13\xbc\x00\xcf\x8f\x03\x30\xbe\x0d\xe9\xb5\x9f\xec\x3e\xc7\x94\xa2\x1b\x2c\x1c\x2d\xba\x9c\x4e\xab\xa2\x12\x1b\x7b\xc2\x50\x0d\xe8\x0e\x55\x35\xdf\x41\xc9\xb0\xb1\x5a\xcb\x57\xd1\x40\x7b\x49\x53\x7e\x31\x35\x76\x40\x09\x43\x81\x1a\xbe\xc3\x69\xe5\x11\x9a\x94\x2a\x09\xe3\xbe\x0d\xef\x73\x97\x44\x45\x60\xd9\x0c\xcf\xa3\x91\xab\x29\xec\x66\x16\x1d\x6a\x71\xfd\x93\xf3\xc5\xd2\x9f\x7f\xab\x70\x1a\x2f\x0a\x6c\x70\xf8\xf9\x81\x4b\x65\x0d\xbc\x91\x4c\xf9\x7f\x6c\xf9\x33\x78\xe2\xdb\x41\x8e\xab\x2e\x04\xc9\x0f\x61\x35\x43\x4c\xb5\x53\x6a\x45\x7d\xc1\x64\x00\x4b\x79\x47\x9a\xf8\xd1\x84\xc6\x87\x48\xae\xee\xf0\x10\x96\x8b\x92\xef\xf9\x7d\x35\x26\xf6\x65\x2d\x2e\x48\x2b\x36\x4a\xa8\x14\x91\x0f\x33\xa5\xb2\xae\xaa\x8f\xe2\x93\xad\x90\xc2\xa3\x6f\x1a\x66\x61\xab\x97\xf3\x8f\x9e\x0f\x7d\x45\x3e\x52\x2e\x8b\x8a\x53\x0e\x86\x0c\xc4\x35\xb8\x5c\xbc\xb7\xcd\xef\x45\x81\x9a\xa3\xc5\xbf\x2f\x31\x65\x09\x9c\xab\xc1\xe7\x55\xb3\xa4\x82\x80\xdc\xfd\x81\x15\x52\x83\x86\xee\x6c\xb0\xff\x8c\xd0\x97\xdc\x2d\xe4\xbe\xf9\x36\x83\x9b\x3c\x2e\xd5\x7a\x9f\x1f\x38\x7b\xae\x42\x9c\x41\x9f\xcf\x17\x6c\x2d\x38\x3e\x74\x66\x9c\x55\xbe\xc2\x4c\xed\x51\xd8\x12\xd5\xbe\x05\x45\xc5\x0c\x62\xb7\xd6\x9d\x5c\xc2\xf9\x9e\xb4\xe2\x24\xf3\xf9\x01\x74\x8a\x99\x2f\xfd\xd9\x41\x35\x5a\x9c\x61\x7d\xd3\x15\x0d\x9c\xc6\x59\x7e\xd1\x67\xfa\x40\x72\x86\xe7\x50\x35\x6a\x9b\x41\xd1\x1c\x77\xac\x57\xa2\x66\xa2\x62\xad\xbb\xf2\x78\x40\x2b\x16\x05\x6b\x7a\x51\x99\x9e\xc1\x3a\x33\xe0\x1a\x0d\x96\xe1\xb3\xfb\x61\x7b\x8e\xc3\x43\xb8\xac\x1a\x11\x2c\x57\x06\xbb\x21\x91\xc5\x46\xd6\x1f\x9f\x21\x19\x6d\x2e\xc8\x1c\x5b\x96\x6f\x48\x3b\x47\xb5\x15\xb6\xeb\x9c\x80\x0e\xb3\x81\x0f\xb7\x79\xa3\x2d\xdd\x26\x22\x99\x33\x30\x86\x34\x3d\xec\x99\x32\x2f\xd9\x2d\x99\xe2\x4d\xe3\xcc\x5e\xa3\xe2\x56\x1c\xb7\x2b\x07\x0a\x4d\x19\x6e\xe1\x1a\x73\x75\xe6\x84\xc7\x38\x85\x10\xc8\xed\x17\x69\x75\x46\x88\xc8\x63\xcb\x8c\x1e\xa9\x4c\xe5\xfc\x56\x53\x58\x10\x4a\xb9\x7f\x3a\x24\xde\x16\x39\xbe\xe6\x7c\x4d\x38\xbf\xfa\x14\x2d\xf6\x78\x87\x05\x9a\xf4\x36\x13\xb7\x2d\x77\xf7\x67\x22\x8c\xdd\x08\x8d\x7c\x8d\x81\xb5\xd5\xcd\x0d\x6e\xe5\xc6\x71\xd1\x92\x72\x29\x73\x2a\xae\x71\x81\xe8\x12\xbb\xde\x8c\x8a\x55\xe2\xba\x8c\x65\xe8\xf0\x50\x8f\x2c\xc2\xe8\x64\x81\xdb\x7a\xad\xc2\x18\xd2\x7c\x28\xcf\x48\x1c\xde\xf2\x55\x8a\x69\xe2\x81\xf8\x6a\x8d\x13\xf9\xbc\x8b\xa7\x92\x16\xf4\x08\xbe\x3a\x45\x0d\x77\x2f\xf4\x89\xce\x5c\x06\x9d\x51\x23\x5c\xec\xba\xc5\xa8\x14\xa7\x03\x65\x18\x46\x7b\xd8\xe6\x21\x70\xec\xfb\x3c\xfb\x1b\x65\x34\x3c\xcf\x5e\x86\xac\xd4\x9e\x55\x40\xef\xc6\x0b\xa0\xcf\xd3\x4f\x78\x5b\xdc\x77\x1c\x88\xd1\x4e\x5f\x72\x94\xb8\x1f\x78\x44\x4c\xeb\x64\x1f\x8d\xa1\x5e\xe7\xff\xc7\x86\x20\xab\x99\x15\x03\x7e\x90\xca\x24\x29\x94\x1b\x02\x11\x6b\xa2\x1c\xf6\xd2\x76\x6b\x44\xb0\xd3\xeb\x32\xd8\x61\x0c\x70\x9d\xc1\x8c\xab\x83\xa4\xca\xd5\xae\x9c\x3e\xda\x2c\x30\x20\x3a\xd4\x1f\x4b\x6f\x15\x87\x52\x71\x44\x84\xef\x21\x6c\x17\x0e\x98\xd9\x89\x74\x19\x73\x2d\xa4\x32\x5f\x25\x0c\x9e\xaa\x63\x48\x9d\x98\xa5\x0f\x99\x2b\x36\xe9\x89\xf5\xf7\xe3\x29\x6b\xda\x24\x8b\x53\x60\xed\x12\x8b\xa8\x4a\xca\x5e\x69\xa7\x1d\xff\x51\x51\x46\xf5\x29\x5e\x9c\x0e\x2c\xce\xb6\xc4\xa1\xb8\x0e\xc7\x89\x25\x91\x05\xff\x16\xd5\x6e\x1c\x6b\x5f\xea\xed\x55\x45\x31\x4c\x51\x4d\xf1\xc4\x3f\x04\x7a\x78\x12\x47\xc0\x02\xc1\xd9\x9f\x9f\x76\xf9\x22\x11\xc7\x0d\x3a\x9c\xa5\x13\x36\xc7\xf4\x74\x60\x04\xd5\x6d\x5c\xf4\x46\xb3\x8f\x9b\x98\xa4\x1d\x41\xc4\xa2\xd3\x54\x70\xf4\xbb\x1b\xda\x76\xf4\xbb\xff\xa3\xce\x28\x7e\xf3\xe3\xe0\x61\x7f\x2b\xa1\x19\xcd\x19\xa1\x19\x8e\xbd\x31\x6d\x20\x38\x11\xd9\x0f\x06\x38\x8b\xb2\x54\xc3\x91\x82\x16\x23\x86\xec\x1e\x2e\x39\xd4\x7d\x97\x89\xb7\xa7\x4b\x6a\x23\xcb\xa9\x28\x65\xc2\xf0\xe9\x3e\x88\x83\x39\xe1\xbd\x68\x97\xce\x39\xf8\x15\xcd\xcd\xe7\x73\xc4\x8a\x19\xa6\xa9\x73\xa4\x6c\x4e\x6e\x9a\xac\xbb\x1d\x28\x7d\x96\x3e\xea\xe0\x3f\x5f\x7f\x9d\x43\xdc\xf8\x4e\x72\xb6\x67\x70\x9c\xcc\x7f\xec\x9d\x51\x74\xcc\x06\xbf\xf9\x4f\x9a\x19\x75\x20\xac\x5d\xc6\x1a\xfc\x3e\x19\x75\x7b\x43\xc8\x6d\x48\x36\x7b\x15\x86\x2e\x70\x51\x4d\x2b\x5c\xea\xd4\x0f\x3f\x79\x04\x12\xeb\x72\xb3\x21\xa5\xe8\x98\x75\x75\x9f\x45\xb8\xcb\xd5\x52\x3b\xcc\xd8\x05\x24\xf7\x28\x1d\xe0\x38\xa2\x4b\x4e\xac\x47\x62\x32\x5e\x35\x9f\x69\x57\xcf\x91\x60\xa0\xac\x91\x7a\xa9\x9c\x7b\xb1\xe7\x2a\x4b\x40\x8d\x34\x45\x5c\x07\xda\x24\x17\x37\xfd\x0b\x9e\x2c\x41\x32\x71\xec\x55\x95\x2a\xc7\x77\x52\x95\xd1\x97\x4a\x77\x8b\xb4\xf0\xe3\x5c\x8e\x8d\xc8\xe3\xd3\xac\x51\x95\xf1\x69\x99\xd8\x69\x5f\xca\xf3\xb9\x63\x77\xcc\x89\xf8\x46\x3a\x31\x17\xcd\x07\x61\xb7\x77\xf7\xe0\x20\x68\xc3\xbf\xfe\x80\x57\xa8\x2d\x83\x60\xdb\x26\x7b\x71\x07\x18\x6f\x2c\x3c\xaf\x06\xde\xa5\x71\x81\xab\x4a\x9d\xfd\xed\x7e\xca\x3f\x49\xdc\x6e\x89\x56\x6e\xbe\xfb\x45\x66\x0f\xd9\x03\xad\xdd\x3d\xe7\x8e\x87\x58\x8c\xc8\x39\x7e\xa1\x73\x8e\xf7\x62\x3c\x38\xc7\x66\xbf\x56\xe5\x3f\xe1\xf9\xc1\x33\x41\xd7\x50\xeb\x5f\x2a\xbb\x1c\xe6\xd0\xab\x24\x64\xcb\xac\xa9\xce\x2a\x62\x6d\xa2\x5d\xf2\xae\x1e\x90\xba\xec\xc8\xc5\x87\xcc\xc9\xb2\x00\x33\xcc\x06\xbf\xd0\xf9\xcb\x1b\x88\x96\xc1\x5f\x87\x74\x3d\x30\x1f\x38\x21\x41\xbd\x42\xe2\x67\xbc\x46\x27\xaa\x93\x6e\x75\x3a\xf9\x6b\x8b\xd4\xf0\xab\x62\x2e\x84\x49\x94\x84\x82\xd7\x23\x60\x1c\x42\x85\xa2\x6f\x13\x5f\x99\x7e\x19\xe4\xa8\xe8\xfe\x15\xf9\xd8\x88\xdc\x82\x8d\x04\xd2\x4a\xf4\xaf\x21\xbd\xa5\x84\x9a\x4f\x87\xf0\xbc\x3a\xfa\xe9\xb4\x28\x7e\xb8\x4e\xb9\x78\x22\xdd\x77\xa6\x0f\x20\x9c\x44\x40\x9d\x3b\x27\x46\x4e\x8e\x47\xe5\xee\x90\xc9\xeb\x3a\xb8\xf4\xc7\xff\x05\x43\x49\xc4\xd7\x45\x8d\x51\x9b\x56\x2c\x15\xae\x4b\xa5\x5e\xc4\x58\x25\x06\xbe\x6d\xf0\x06\x72\x72\x4d\xd5\x75\x25\xd2\xc2\x1c\xa9\x5b\xc0\x8c\xc0\x2d\xc6\x0b\xa8\x98\x51\x3d\x91\x6c\x4b\xe4\x38\x66\x5b\xef\x7a\xf6\xfa\xec\xe7\x8b\x41\x81\x44\x79\xbb\x2c\xbd\xc3\xcb\x26\x67\x1c\xc1\x57\x97\xbe\x0f\xc6\x47\x10\x08\x13\x24\x94\xdb\x53\x71\x91\x59\xcb\x43\x1c\x85\xce\xc4\x44\x8e\x55\x42\xc0\xee\x77\x93\xef\xf6\x6c\xe4\x4f\x31\x89\x98\x8c\xfb\xdf\xc9\xa4\xcb\xae\x24\xba\xe4\x96\xcc\xb5\x2e\x9a\x7f\xb3\x5b\xb3\xcd\x5c\x07\xe5\x6c\x25\x47\xdb\xaa\xbe\xeb\x3c\xdb\x88\x25\x80\x0b\x80\x0c\x97\xab\x83\xda\x7d\x15\x16\x66\xa8\x86\x66\x39\xbf\xe6\x2d\xa7\x51\xe0\x4d\x25\x24\x89\x98\x08\x1f\xa2\xc4\xe5\xb2\x60\xee\xf9\x9f\x10\x0f\xdc\xc6\x01\x93\x4d\xa2\x3f\xae\x12\x4e\x2d\x50\x5e\x64\xa5\x99\x25\x1a\x98\xf4\x0d\x72\xab\x9f\xa9\xbc\x3c\xd4\xf0\xc5\x3a\x99\x92\x73\xb4\x88\x01\xd7\x79\x54\x6a\xf0\xe7\x07\x79\xe6\x79\x7e\x10\xc7\x14\x14\xa8\xa7\x59\x55\xe2\xc6\x10\xb0\x0a\xf4\xa4\xb1\x17\xba\x1a\x7a\xda\x44\x24\x03\x5c\xef\x6f\xd0\x7d\x5f\x2d\xee\x59\xcf\x6f\xb0\xa1\x80\x54\x68\xce\x1c\x0b\x39\xb8\x1c\x7c\x48\x77\x35\xc3\xe6\x7c\xc1\x2a\x1b\x79\xd7\x92\xeb\x60\xa3\xe9\x91\xcb\x06\x22\x39\xbd\xd4\xc1\xb2\x28\xc3\x74\x2a\x2e\x13\xc8\x88\x5a\x4c\x75\x91\x9a\xb7\x9b\xd2\x3f\x76\x58\x7f\xc8\xc9\x57\x9d\xe9\x60\x0a\x01\xee\x96\x6b\xbc\x55\x0c\x9d\xc1\x2d\x18\xc6\x70\xc8\xbc\x6d\xf4\x8d\x52\xbc\x83\xee\xba\xff\x3c\xc0\x0d\x7d\x24\x8b\xe5\x6e\xe1\x3d\xcb\x65\x23\x06\x4f\x65\xbe\xec\x8c\xdb\xb5\x61\x8e\x43\x36\xc8\x8c\x95\xb6\x10\xc0\x14\x8e\x61\xf7\xeb\xae\x91\x10\x85\xaf\x7b\x49\x97\xc8\x2a\xab\xa6\xde\x3c\x93\xaa\x0c\xe2\x47\xf0\x29\xd6\x12\xf0\xb0\xed\x47\x2f\x03\x64\x27\x7c\x5c\x5b\x0c\x29\x7b\x1c\x0a\xde\x86\x26\x59\x17\x9d\xd9\xcc\x2a\xc3\x63\x58\x66\x48\x5b\xe7\x68\xc1\xc3\x0d\xb4\x73\x4f\x21\x69\xa3\xc1\xb1\xd3\x76\x1a\xd7\x54\x27\x38\x3b\x67\xad\x21\xda\xe6\x8d\x32\xa0\x39\xe6\xeb\x33\xa1\x5d\x21\x3f\x65\x36\xcf\xa2\x8d\x95\xfe\xd1\xd6\x33\x2d\x52\xca\x98\x9d\xff\xb1\xc0\x82\x2f\x5c\x29\x34\xca\xcf\xde\x08\xd4\x57\x0c\x1c\x7d\xd5\x64\xe8\x14\x1a\x3d\x18\x95\x7c\x33\xd2\xae\x5b\xca\x6e\xdf\xb4\x97\x89\xb1\xb7\x6c\xdf\xdf\x99\x8a\x15\xd2\xc2\xdf\x54\x94\xe1\x56\xdc\x26\x0b\x2e\x46\x76\xf9\x05\xaa\x17\x12\xfd\x34\x41\xa4\x5e\xd2\x74\x8b\xc9\x94\xb0\xe1\x72\x1c\xb1\xb5\xac\xca\x4c\xd9\x87\x06\xb3\x15\x69\xf9\x58\x27\x9a\x75\x75\x3b\xfb\xd5\x6b\xbc\xb6\x1f\xab\x85\x78\x9f\xf9\xa9\xde\xfb\xb0\x40\x6b\xdc\x1e\xc1\xc9\x92\xcd\x94\x2b\xbb\xe7\xfd\xf5\x22\x95\xf6\x6d\x33\xfa\xf4\xc5\x84\x20\x91\x5c\xe7\x13\x45\x3d\x7d\xdf\x3d\x61\x4b\x54\x78\x5a\xe9\x76\x8e\x0c\x1b\x01\x95\xbe\x6f\x02\x0f\xd1\x47\x11\x4a\xbc\x3f\x7d\xcc\xd8\xdf\xd5\x6d\x34\xea\x04\x7c\x74\x52\x5b\xb0\x94\xe1\xb1\x5c\xbb\xe0\x49\xb8\x90\x28\xba\x24\x3f\x18\xa5\x9a\x3a\x03\xb3\xca\xb1\x4f\x12\xe1\x03\xd6\x79\x09\xc7\xd1\xa1\x44\x18\x0f\xe4\x3f\x2f\x5e\x18\x51\x95\x09\x4e\x84\xe9\xbb\x55\xc2\x11\x6f\xf5\x78\x5f\x65\xa8\x3e\x72\x9f\x6e\xe0\x13\xd1\xc9\x30\x4a\xfc\x41\x4b\x5e\x57\x9c\x39\x19\x5e\x16\x79\xa7\x94\xfb\xf2\x68\xc9\x66\xc1\x5d\x79\x27\x57\x9c\x82\x29\x07\x03\x05\xaa\xeb\x60\x83\x54\x4d\xcd\xa2\x54\x9d\x92\x63\x5b\x40\x4c\xac\xe8\x03\xa9\xf1\x44\x31\x04\x69\x27\x2d\x5a\xfd\x03\xd5\x4b\x0c\xff\xf9\xcf\xc0\x9e\x0d\xc5\x0d\x5d\x52\xdb\x33\xd6\xda\xee\xa1\x92\x56\x22\x89\x9a\x11\x06\x97\x01\x6a\x8d\xf4\x8b\xff\xf6\x86\x59\x8a\x84\x6a\x85\xee\x94\x0a\x09\x97\xba\xff\x6b\x4a\x18\xa5\xa8\x86\x7c\x9a\x1d\xca\xeb\x76\xfa\x5e\x33\xae\x5a\xc0\x1c\x4b\x07\xba\x06\x51\x78\xfb\x4a\x28\xf6\xa6\x5e\x1b\x1a\xa2\xc6\xd5\x65\xc6\xb7\x9b\x1a\xfe\x00\xbb\xb5\x20\xe2\x2a\x4e\xa1\xf1\xee\xa6\x64\xe8\xe1\xdc\x45\xeb\x1a\x0f\x92\x39\xbe\xa1\xf0\x7b\x21\x2a\x09\xdd\xde\x38\x2e\xa4\x6f\x1a\xb9\x91\x48\xdd\xf1\xbe\x5e\x32\xe5\x2c\x32\x77\x40\xe9\x00\xd0\xca\x16\x79\x40\x65\x29\x4b\xba\x14\x70\x8b\xd7\x2a\x1d\xc6\x0c\x15\xe5\x39\x0e\x63\x89\xdc\x86\x42\x1f\xfd\x6d\x64\x21\xb6\x2e\xf1\xb2\x68\x59\x16\x8d\x7a\x5e\x1b\x95\x61\x70\xec\x42\xb9\xeb\xb3\x7a\x38\xbc\x4e\x32\x4f\x26\x21\x15\x76\xee\xf8\x28\x49\xd5\xb9\xea\x80\xa4\xbb\x40\x11\x9b\xd4\x55\x73\x1b\x5f\x8d\xde\x3d\x54\xd5\x12\x0e\xfd\x91\x54\xad\x3f\xd1\x68\x1f\x18\x6a\x6f\x30\x3b\x82\x43\x2a\xaf\xfd\x88\x5a\x93\x62\x18\x99\xc1\x1a\xdf\xba\x4a\xac\xe0\x38\x71\x94\xeb\x7b\xd2\xfe\x49\xa4\xa7\xbf\x7a\xea\x51\x75\x7c\xb9\x97\xdf\x50\x9b\xf8\xc9\x5a\x6c\xc6\x91\x23\xa3\x7c\xf2\x7d\x4d\x12\x04\x3f\x9f\xc2\x3f\x08\xb3\x71\x46\x4e\x2f\x55\x60\xc5\x14\x58\xc8\x64\x02\x6d\xa8\xc0\x13\x37\x5d\x5c\x06\xca\x01\x93\xdc\xfc\xff\x5e\x48\xe0\x95\x2f\x24\x27\xbf\xc1\xcc\x94\xb3\x14\x5f\xef\x5a\x63\x1e\x88\x4a\x6c\xa7\x5d\xc6\xa2\xe8\x0e\xef\x3e\x3f\x50\x93\x70\xef\xe6\xc8\x2f\x96\x39\x11\x5f\x38\x35\x27\xd3\x17\xaf\xa8\x58\x9b\x3a\x59\x71\x4a\xd5\xa5\xf0\x0a\x9d\xf1\x51\xc9\x47\x99\x33\xd9\x74\xcc\xb4\xbb\x76\x61\x82\x3b\x07\x51\xd1\x71\xb2\x36\xa9\xc8\x95\xc0\x93\xb2\x8b\x0e\xfe\x33\xe9\x50\x96\xa5\x95\xa5\x09\x59\xfa\xec\xf5\x2b\x78\x8f\x5a\x56\x15\xd5\x02\xf9\xbe\xc9\x10\xce\x56\x96\x7b\x30\x83\x27\xfc\x8c\x14\x13\xe8\x6c\xbb\x45\x37\x64\xe9\x18\xd7\xed\x8d\xbb\xa0\x90\xdb\xcf\x5e\xbf\x72\xbe\x7e\x20\xb7\xfb\x73\x59\xa6\x3f\x7b\xfd\x6a\xe2\x7c\xf1\xdf\xc0\xf4\x21\x65\x9f\x84\xe9\x3d\x56\x1c\xbb\x2b\x3f\x91\xe5\x9c\x4d\xc9\x46\xe1\xfe\x75\xa4\x93\x90\x06\xab\xbb\x82\xba\x7a\x4c\xe0\x9f\x55\x54\xd6\x9a\x91\x97\xa4\xed\xb8\x25\x2e\xaa\x12\xcb\xfa\x0d\x2d\x6a\xe8\x34\xb3\x97\xb0\x15\xbc\x08\xa0\x46\x5e\xae\x48\xb9\x70\xa6\x3a\x4f\x4d\xed\x88\xad\xce\x02\x27\x75\x99\x18\x99\xef\x70\xf7\xbd\x51\x64\x30\x5a\x15\xcc\xe2\x00\x3a\x75\xaa\x19\x11\xd7\x95\x91\x53\x2d\x6b\x03\x8c\x68\x15\x34\x70\xc8\x7d\xeb\x97\x56\x6d\xec\x90\xfa\x9e\xba\x8b\xc7\xc8\x19\x56\x5b\xa9\x94\xef\xe6\xe4\xce\xf8\x7c\xaf\x82\x00\xe1\x91\x86\xcf\xbb\xbe\x67\xfa\xa8\x07\xed\x2a\x48\x25\x12\x83\x32\xf4\x74\xb6\x31\x32\x0b\x79\x4d\x96\x3a\x81\x81\xac\x9a\xde\x3b\x31\x1b\xf8\xcd\x17\x67\xb1\x3b\xfb\x13\xba\xc5\x40\x97\xad\x02\x22\x59\x03\x56\x99\x90\xe8\x04\x94\xca\xe0\x63\xc1\x82\x8c\x8a\x8b\xb3\x9d\xad\x79\x50\x21\x45\x1c\x5f\x48\x1e\x83\xf8\x34\x56\x2a\x49\x3a\xc9\x81\xf7\xf2\xbd\xca\xf3\xef\x73\x6c\xc2\x29\x21\x13\xd4\x50\x85\x5d\x42\xbf\xd2\x84\xc7\x17\x52\x4d\x46\x02\x1d\xc6\x3d\xa0\xe7\x8e\xa1\x2e\x7f\x7a\xec\x2c\x5c\x67\x25\x25\x3b\xd8\x5b\x86\x06\xb6\x77\x86\x92\x21\x15\x4d\xfc\x56\x24\x4d\x9b\xaf\x15\x21\x53\xf7\x10\x3d\xc6\x7c\xb8\x0b\x91\xa2\xb0\x6f\x9a\x7b\x09\x1d\x58\x6c\x97\xd0\x5d\xc6\x7c\x24\xa1\x33\xde\xd6\x23\xd2\x3b\x42\xc3\x40\xb2\x87\x90\x3e\x1a\xf5\x87\xa8\x93\x68\xa3\xcc\xf5\x86\xf4\x53\xbc\xde\x71\x31\xb1\xee\x5a\xbd\x62\xf7\xd3\x51\x31\x6c\xc8\xb6\x78\x2f\xd4\x53\xcf\x06\xd4\x34\x1e\x57\x09\x39\x86\xfb\xe9\x76\xf1\x1d\x07\xd1\x71\xa0\xe4\xa7\x54\x82\x4b\x9f\xdf\xbe\x71\x9c\xe0\xec\x51\x43\x04\x3d\x79\x37\xc3\xd3\x7c\x2f\xa6\x80\x6c\x66\x86\x62\x5b\x6d\xb6\x55\x71\x29\x11\x69\xa4\xb0\xc2\xfc\xf7\x86\x5b\x61\x79\x06\xbc\xfe\x46\x95\xd6\xd1\xee\x93\xb0\x90\xfa\xe0\x2c\x8c\x5d\xda\xd0\x51\xa2\xa8\xb8\xbe\x45\xa1\x3c\x35\x88\x3c\x22\xd9\xdb\x47\xfa\x4b\xd2\x9e\xab\x2c\x94\x44\x2a\xe2\xb0\x70\x9d\x8b\xd4\x2d\xba\x48\x4f\xe1\xdc\xa8\x0b\x3f\x7d\x47\x18\xf9\xbb\x1b\x9f\x23\x66\x9e\xab\x76\x17\xdd\x45\xcb\x57\x51\xd9\x6e\x1d\x3b\xd8\x42\x2d\x3b\x78\xbc\x7a\x76\x3d\x73\xbd\x0d\x88\x9f\xa8\x75\xe7\xb0\x42\xda\x23\x80\xee\x33\x2d\x14\x9c\x6a\xe5\x50\x9b\xf2\x02\x60\x23\x2e\x4b\x2c\xad\x8b\xd7\xa0\xef\xfa\xdd\x66\x9b\x6d\xa7\x6a\xd2\xda\x2d\xd7\xf4\xe6\xdd\x2f\x06\x05\xb1\x26\x8b\x14\x97\x1e\xe6\x65\x4b\xe6\x3d\x45\xcc\x83\xda\x63\x4f\x94\x29\x2d\xdf\x89\x1a\x99\x6b\x76\x9f\xd2\x44\x49\x3b\xd9\x69\xa9\xd2\xce\xb1\x90\xb7\x94\x4f\x2c\xcc\xe8\x90\x78\xcd\x60\xcf\x57\xf1\xb8\x65\x6e\x46\x22\xdb\x24\xc0\x49\x71\xb7\x7f\xfe\xaf\xa1\xce\x97\x14\x49\x0e\xb0\x71\xdd\x38\xe8\xbd\xed\x9d\x3c\xaf\xcf\x6a\xe6\x08\x37\xd3\xaa\x49\xed\xee\xf5\x99\x72\x74\xdf\x31\xca\x43\xb1\xbf\x0d\xcd\x1b\xb1\x99\x34\x1b\x67\x8e\xe4\xf3\x3f\xbb\xc5\x6b\x78\xa9\x49\xb7\x17\x47\x46\x55\x0a\x56\xef\xaf\xf7\x58\x4d\x55\xdb\xf8\x89\x1d\x7d\xc5\xb2\x27\x53\xca\xe4\x06\x19\xac\xd9\xfc\xa0\x30\xdc\xe2\xd4\x20\x91\xe9\x7b\x6e\x46\x5e\x7f\x7a\x54\xde\xb3\x7e\x78\xda\x8b\x97\x0a\x97\xf0\x7f\x4c\x16\x10\xee\xb8\x10\x3b\x2a\x41\x65\xf8\xcd\x28\x0f\xbe\xf4\xdd\x28\xbf\x49\xf2\x76\xd4\x43\xf2\x57\x82\x94\xc0\x10\x18\x9b\xd4\x12\xa7\xdd\x05\x92\xf6\xa3\x50\x1c\x14\x90\xaf\xe0\x14\x97\xa8\xa8\x57\x11\xcb\x94\x5f\x03\x5b\x57\x5c\x70\x1c\x89\xdf\x82\x67\x8a\xf6\xfa\xce\xce\x43\x57\x7b\xa3\xab\x2e\xca\x8e\x7f\x9d\xed\xd9\x91\x13\xac\xc0\x18\xa6\x0a\xc7\x26\x76\x64\xf1\x1c\x65\x2a\x8e\x44\xf6\xd8\x64\xf6\xfe\x8c\xe8\x0e\x3a\xfc\x65\xd3\xb5\x15\xb9\x3c\x78\x4c\xe2\xa9\xa5\xe5\xd0\x04\xd0\x71\xd4\x37\xb6\xc9\xa6\x51\x7a\x5f\x5f\x19\x9f\xb2\x40\x75\x4d\xed\x75\x5e\x93\x60\xba\x9a\x61\x5d\xfd\x96\x2b\x77\x73\x2e\xaa\x93\x2f\x1d\xc5\x6e\x4b\x0c\x73\xe4\xb9\xd3\xb8\x07\xaa\x71\x47\xb9\x5d\xd7\x01\x3c\x77\xa3\xad\xca\x14\xfc\xab\xa9\xea\x7f\xe9\x1b\xc6\xc9\x9a\x05\x9d\x73\x38\x55\x2c\xc2\x89\xcc\x34\x6e\x2e\x9a\x1d\xc7\x79\xd2\xd4\x3b\x44\x11\x50\x49\x38\xbd\x17\xf5\x18\x51\x8e\xc7\x5a\x59\x39\x53\x4b\x23\x6c\xac\xae\x25\x7b\x82\x2a\x6b\x50\xea\xf7\x17\x44\x42\x92\x4d\x87\x34\xef\x5d\xa5\x3d\x9c\xc8\xe3\x90\xd5\x3c\xdf\x86\x09\x97\x91\xa8\x36\x78\x15\xa4\xa9\xfe\xc9\x5d\xfb\xf4\x61\xbd\x49\x12\xf3\x33\xb9\xec\x30\xfb\xda\x9b\xae\x58\x74\x27\x44\x5b\xfe\x51\xf1\x09\xfe\xcd\x24\x8b\x65\x83\xd5\x81\x91\x07\x59\x44\xda\xae\xa4\x2b\x57\x3b\xa9\xef\x5c\xf8\x93\x55\x6f\xf4\x6f\xd2\xd6\x24\x76\x21\x9b\x2d\x68\x88\x1f\x2d\x29\x6d\x1f\x00\x91\x72\xe9\xdc\xd2\xea\x28\xde\x94\xab\xda\x14\x31\xbc\x98\xe4\x2d\x5e\x29\x57\x6f\x80\x49\x7a\xf1\x44\x9b\xda\xec\x65\xaa\xed\x49\x80\x79\x87\x99\xfa\xfa\x4e\x5f\xa4\xb6\x8f\x2c\x2b\xb2\xa0\xdc\x4b\x0f\x1d\x15\x7a\x54\xc3\x14\xef\x2a\x21\x74\x3c\x8a\x61\x92\x08\xb9\x31\x43\x68\x7c\xd1\xdc\xa4\x10\x4d\xba\x3a\x8c\xbd\x8b\xaf\x51\x64\x59\x48\xef\x54\x7b\x76\x11\x23\x0b\xf4\x05\x01\xc6\x6e\x99\xed\x2c\xb6\x2b\x1e\xca\x16\x05\x36\xc2\xfb\x4d\xfb\x7e\x4d\xb6\x19\x9e\xa7\x82\x86\xf9\x1b\x41\x61\x61\xf3\xae\x6a\x77\x9b\x14\x3a\x4f\xcd\xeb\x94\xf7\xfe\x7e\x58\x75\x6f\xd8\xb0\x06\x74\x6e\x2c\xb7\xa4\x56\x18\xad\xe8\x8c\x7c\x0c\x2e\x23\x9c\x0e\xfd\xdc\x73\x01\xc8\x11\xfa\xa3\x2f\xc1\x3d\xd7\x78\xb2\x14\x75\x05\xc9\x5d\x67\x28\x4f\x69\x08\xbb\xa4\xa4\xaf\xf2\xf9\xf6\x2d\xb6\x3d\xf5\xde\xdc\x70\x07\xd6\xe2\xf9\xc1\x18\x19\xef\xb2\xe2\x8f\x23\x98\x9f\x43\x28\xc7\x0b\xe4\xb6\x84\xb1\xcb\x89\x79\x2a\xc1\xbc\x4f\x88\xa4\x23\x8e\xb4\xff\xb6\x7c\x92\x88\xaa\xdf\x83\x1c\x35\x39\x46\xc8\xc2\x1b\x95\x88\x8e\xbd\xb4\x65\x63\xca\x55\x3c\xae\xab\xa6\x8a\xe9\x94\xff\x65\xfe\xda\x66\x85\x10\x3f\x93\x2f\x14\xd0\xa8\xf7\xc8\xa0\xd7\xf1\x89\xd6\xd0\x29\x01\xe3\xcd\x52\x0f\xc0\x11\xbc\x8f\x63\x57\x46\x40\x91\xc5\xd8\x63\x28\x8b\x31\x70\x0d\xd7\x18\xad\xba\xc1\xff\xe8\x1a\x43\x97\x0a\xf8\xa2\x31\xfe\x2c\x1a\x43\xd6\xfd\x42\x65\x09\xce\x73\x28\xfa\x61\xe1\xd4\x33\x2a\xba\xb8\x97\xe4\x19\x59\xc1\xa3\xc1\xab\x7a\x0d\xf3\xaa\x61\xdd\x25\xb7\x55\xd8\x0d\xb5\xb8\xf9\x86\x41\x35\x9f\xe3\xb2\x42\x0c\x8b\x5b\x84\xd3\x5a\xde\xd1\x57\x0c\x35\xa0\x50\x3f\x3c\xec\x05\x87\xd4\x70\xb1\x3a\x0a\x38\xb6\x57\x1d\xf5\x14\x76\xd7\xc1\x5c\xb5\xbc\xa4\xd7\x11\x3f\x41\xcd\x51\x2c\x8e\xe5\x7a\x91\x94\x4e\x6c\xd4\x2f\xce\xab\x98\x28\x1f\x4b\x46\x89\x4a\xbf\x78\x9b\xfb\xf3\x14\xba\x7e\x2c\x72\xb7\xa9\xeb\xb7\xc8\x39\xd6\x6c\x8c\x58\xd0\x93\x9a\x8d\x31\x70\x0d\x31\x1b\xba\xcc\xb4\xad\x15\x7f\xed\xf8\x9d\x8f\x61\x3e\xd4\x8c\xd2\xfe\x55\xcd\xcd\xa6\xb6\x03\xbe\x18\x8f\xc7\x70\x37\x23\xf2\xfc\x79\x1d\xcd\x5e\x50\x23\x48\xb7\xee\x62\x8e\x02\xe1\xa9\x14\xc5\x38\xa0\x86\x68\x09\xa5\x10\xdc\x97\xa4\x42\xd5\xa0\x4e\x4a\xa4\xbd\x1b\xaa\x13\x4c\xed\x01\x9b\x35\xa7\x5f\x64\x35\xf5\x46\x69\x7c\x9c\x26\xa1\x39\xa9\xeb\xb0\xa6\xe8\x9f\xfb\xb4\x0c\x12\x25\xd0\x1e\x70\xdc\x65\xb1\xf0\x79\xd8\x2c\x0f\xc0\x10\x96\x32\x49\x93\x4f\x11\xe4\xd0\x93\x6d\x27\xce\xf1\xc5\xf2\x6c\xd1\xf2\xf8\x39\x62\x56\xb9\x67\x48\xd6\xa7\xe2\x2d\xee\x13\xef\x95\xd9\xbc\xaf\xb0\xcb\x67\xb3\x61\x1b\x2e\x73\xab\x96\xcc\x27\x81\x50\x2e\x1b\x82\x35\x12\xf3\x4f\xa5\xa9\x36\x58\xcd\x38\x1d\xf6\x14\x61\x17\x3d\xd9\x97\xc8\xcb\x9f\x4d\x85\xc9\xc8\xcb\xb2\xe7\xd5\x5a\x59\x70\x5d\x5d\x94\xd2\xc4\xe4\xcc\xa1\xe3\x30\xb9\xb1\xb3\xf1\x19\xd4\xc8\xf4\xeb\xcf\x1c\x7e\xd9\x48\xad\xf7\xec\x63\xff\xa2\x7a\x7d\xa0\xb2\xdf\x64\xf1\x87\x87\x60\x5e\x98\x36\xfc\xa5\x59\x23\x77\x87\x29\x0c\xff\xf5\x9d\x4c\xeb\x86\x1f\xd4\xb8\xfa\x48\x2f\x83\x94\xc1\x2f\x6e\x43\xc8\x61\xe1\xd9\x60\xee\x11\x5d\x05\xc8\x9f\x37\x82\x34\xc6\x98\x8e\x25\xfb\x9f\xcd\x9a\xf6\x99\xd7\xb1\xeb\x7b\x54\x96\x7e\x4c\x76\xde\x1e\x2b\xe7\x52\x85\x4f\x6b\x42\x71\x1b\x94\x51\x15\x1f\x52\xcf\xb1\xa0\xda\xb1\x28\x8d\x63\xb1\x0f\xba\xe4\x6c\x5d\x1b\x3b\x23\xb6\xd6\xc1\xd3\xc3\xf6\x15\x49\x8d\x5b\x59\xc9\x51\x75\x37\x27\xeb\x1e\x0c\x24\x4e\x9c\x8d\xaa\x20\x3b\xc5\x75\x23\x2f\xa6\xe0\x6b\x10\x1c\x36\xec\x21\xc6\xff\x0e\x4f\xc5\x6f\xbf\xf5\x9a\xe1\xd1\x7c\x5d\x35\x17\x3c\x38\xc2\x07\x7b\x52\x5f\xda\x27\x7b\xd2\xdf\x9b\x38\x14\x1c\x8b\x27\x66\xfb\x4a\x36\xa8\xab\x4b\x82\x53\x6c\x06\x25\x77\x99\x97\x0d\xab\xea\xe8\x39\xf3\x6b\x8c\xad\x77\xdc\xec\x73\x16\x15\xc5\xae\xe5\xc5\x0a\x4f\x02\x28\x43\x0c\x4f\x06\xbd\x28\xee\x5e\x27\x88\x16\x83\x4b\xf8\x9e\x2f\xa5\xeb\x79\xe2\x9e\x98\x43\x1f\xd5\xac\xcf\xde\x05\x46\x6f\x8a\x57\xc7\x52\xb4\xba\x1e\xbe\x94\xcc\xd6\xe3\x61\x4b\xd1\x83\x0e\x5d\xca\x93\x45\x25\xec\x24\xc3\xca\xb0\xa7\xc6\x29\x31\x65\x2d\x59\xdb\xb1\x72\x1e\x6a\x7c\xdb\xdd\x16\xf4\x48\x5f\x7a\xcf\x81\xcd\xb2\x97\xca\xed\x88\x63\xef\x96\x27\x51\xe2\x4e\x34\x09\x9f\xd4\xc8\xc5\x3d\x06\xa2\x23\xbd\x3c\x75\xb7\x51\x00\x0b\x0a\x11\x4e\x35\x15\x95\xe6\xa7\xb7\x45\x53\xb2\x6c\xca\x74\x79\xf7\xe8\xa3\xcf\x5d\x2d\xbf\xdf\x77\x7b\x68\x0d\x08\x50\x06\xbc\xfb\xa1\x41\x5d\xb7\x8a\x11\x75\xd1\x47\x6f\x4e\x2b\x26\x1f\xa3\x6e\x38\x57\xc9\xba\xf4\x39\xe1\xdc\xc6\xe5\x6e\x78\xdc\x0b\xde\xd0\x7d\xc9\x5b\x96\x71\x68\xf1\x54\xba\x36\x03\x8a\x18\xc1\xe0\x3b\xda\xcf\x3a\x2e\x69\x83\xaa\xfd\x63\x4e\x43\x54\x62\xa6\x8e\xdb\xa8\x27\xda\x53\xdd\xaa\x69\x94\x5d\xaa\xea\xe2\xfc\x84\x6f\xd0\x8f\x6b\x86\xe9\x7b\xdc\xca\x14\x53\x5c\x8a\xd2\x04\xcf\x8e\x61\x97\x2b\x7e\x44\x33\x61\x21\xf7\x27\x04\x49\xb1\xa2\x3b\x5f\x89\xa7\x7c\x81\x42\x3a\x4f\x82\xe6\xbb\x1b\x52\x2f\x2e\xa7\x98\x02\xae\x53\x69\x64\xa0\x37\x97\xf0\xbb\x9e\xa9\xbf\x4f\x7e\xda\x7d\x97\xbe\xe3\x76\x7f\x00\xc5\x5e\x57\x9c\xa3\xfb\xa9\xac\x18\xd0\x51\x3e\x9e\xd1\x28\xa9\x07\x19\x71\xc6\xb7\x0b\xbf\x7b\xa0\x5f\xa7\x53\x5c\x9f\xd4\xa5\x4b\xaf\xe1\x49\xdd\xb9\x1c\x08\x43\xfd\x9f\xb0\xff\x67\x70\xe3\x72\x20\x8c\x71\xe1\x46\x07\x69\xc0\x8f\x64\x0c\x78\xc5\x2e\x35\x82\xf6\x40\x68\xfc\x7e\x1b\xfc\xd5\xbc\x31\x8b\x89\x84\x2b\xd6\x51\xc6\x67\x18\x0e\x3e\x8b\x0b\xf6\x80\xc7\xfe\xf0\x46\x4f\xfd\x65\xcf\x79\x5e\x61\xc6\xa2\x08\x8c\x7b\xf8\x23\x8a\x40\xd5\xb5\xba\x3a\x53\xaa\x43\x9f\xba\x36\x99\x81\xf2\x80\x87\x0e\x3f\xe1\xb9\xc1\x4c\x56\xf9\xa0\xbb\x7b\x47\xf0\xab\x8c\x8b\x84\xde\x91\xa9\x09\x76\x46\x9d\x36\xc7\x91\x30\x4c\x6e\xf1\x9a\x26\x03\x13\x0f\xe0\x6a\xde\xfd\x37\xff\xc2\x5c\x0f\x47\x77\x04\x48\xbd\x77\xe5\x8f\xbd\x71\x27\x06\x15\x09\x16\x56\xcb\xf8\x2d\x35\x48\xfc\x59\x9a\x8d\x15\x06\x27\x68\xb1\xc0\x4d\xb9\x1b\x8f\xb5\x61\xe1\x28\x39\xec\x90\xb3\x43\xcd\x3e\xce\x35\x4d\x87\x87\xa2\x73\xc2\x71\x6c\xe4\xd7\xa1\x39\x82\x5f\xdd\x0f\x46\x73\x94\xdd\xf2\x4a\xa6\x0a\x3b\x3b\x36\x82\x46\x73\x1d\xc3\xaf\xff\xf4\x71\xa5\x33\x7c\x2e\xce\xf8\x9a\xd4\xcc\xf9\xa0\x98\xa0\x6b\xc7\xf6\xfb\xc5\xa4\x4a\xbc\xe0\xe6\xc2\xa4\xa9\xec\x61\xa5\xcf\xea\x5d\x9c\x3d\x0b\x6f\x9a\xfd\x05\xa4\xc9\x2c\x31\x2b\x56\x41\x8b\x84\x7c\xe5\x86\xec\x1e\x4e\x0c\x35\x44\x56\x63\x10\x3b\xbe\x4c\x4b\x6f\xd7\xa8\xd9\x11\xb3\xa3\x8d\x62\x97\x8e\x95\x04\x3c\x94\x81\x2e\x77\xef\x74\x23\x7d\xe3\x82\x3d\x46\xe9\xbc\x15\x95\x36\xf8\xce\x5c\x6b\x97\x6d\x18\xaf\x93\xba\x36\xb1\x08\xae\x74\x3a\x62\x15\x59\x1d\xd4\x4c\x49\x5f\xcf\x58\xa3\x8c\xb3\x89\x6e\xcf\xa1\xba\x48\xc3\xa6\x79\x63\x44\x18\xe6\xaf\xa7\x44\x3e\xa3\x49\x1e\x89\xe2\x84\xdd\x7e\x80\xe1\xee\x28\x7e\x9b\x12\x22\x5b\x9b\x2c\x29\x49\x0f\x34\xe1\x27\x75\xed\x1f\xf7\x64\x24\xca\x6b\x94\x12\x2b\x2f\xe6\x3e\x68\x8c\x0d\x04\x2c\x74\x11\x06\x09\x59\xcf\x31\xd8\x46\x76\x9f\x0f\x51\x6d\xf9\x00\xed\x59\xc2\xb0\xf9\x27\x19\x8a\x65\xf9\xc4\x7f\x3d\x71\xff\xe2\x33\x6c\xe6\x33\x6c\xc2\x6a\x0f\x77\x1f\xd2\x21\x43\x18\xce\x92\xfa\xe7\xa1\x1e\x47\x87\xb6\x7c\x85\x19\x55\xc5\xc2\x29\xd4\x15\x65\x40\xa6\xf1\x9b\x19\xcd\x94\xb4\x73\x94\xd3\x7f\x7e\x05\x5c\xb1\x8b\xf9\x24\x15\xcf\x51\xa2\xa2\xfa\x7d\x40\x27\xb7\x94\x70\x10\x49\x0d\x81\xd6\xc5\x05\xcc\x9e\xdf\xd4\xe5\x51\xba\x5c\xf5\x8b\xd5\xb6\xb7\x84\x1d\xc8\x98\x0a\x8a\x45\x3c\x29\xaa\xcb\x46\xf4\x39\x0a\x57\x8a\xa8\xb1\xf3\xe8\xa8\x6a\x50\x01\x50\xe3\x26\xc8\x73\x30\xa1\x0e\xfb\x8a\xeb\x90\xbc\x8a\x23\xf8\x91\x10\xb7\x5e\x5f\x2d\x6b\x5a\x0b\xd2\x1c\x0b\x03\xa4\x6a\x0f\xc7\x07\x56\xce\xfb\xe6\x16\x19\xf2\x90\x06\xa5\x1f\x24\x88\x50\xf7\x29\xfa\xe4\xbd\x78\xa2\xf1\xfe\x7b\x51\xde\x70\x92\xf9\x5a\x3c\x56\x91\x3e\xda\xe9\xae\xd9\xcb\x89\x11\x8d\xe9\x1e\xe4\x68\x86\x49\x2c\x6b\xe3\xcc\x92\x1d\x87\xcb\x52\x9c\x91\x4d\x15\x55\x97\x77\x55\x16\xb1\x9b\xe1\xe4\x08\xc8\xc7\x28\x2b\x2d\xe2\x85\x3d\x73\x70\xf4\x85\xce\x03\xe8\x1c\xe7\xf9\x0d\xa1\xe0\xa6\xf4\x7b\xf3\x85\x7a\x5b\xa5\xde\x58\xda\x0d\x8d\xdd\x6a\x3b\x16\x01\x96\x7c\xa6\x3d\x11\xcb\x4d\xd0\x35\x11\xdb\xfd\x42\xd9\x2c\x65\xdd\xb8\xb8\xa2\xaa\xee\xd6\x49\xdd\x31\xa1\xd5\x8d\xa9\xec\x45\x89\x52\xa4\xce\x85\x5e\xbf\x10\xbc\x8b\xe0\x89\x4a\xea\x3d\xb2\x3c\x2a\xa6\xb5\x31\xb9\xdd\x18\x57\x8a\xda\x03\x63\x5e\x5f\x88\xdf\x45\x7c\x2f\x90\x38\x84\xf6\x1b\x85\x62\x1e\xc2\x03\xfe\xee\x6e\x20\x23\x64\x43\x35\x5f\xb8\xa1\x87\x1b\x82\x48\x58\xc8\x12\xaf\x6a\x72\x8d\x6a\x5b\x27\xdb\xe1\x8c\xe4\x6b\x8d\x9c\x47\x34\x6f\xe8\xea\x87\x54\xbd\x0b\x54\xc2\xf5\x5a\x78\x6d\x12\xf5\xdf\xf4\x6d\xc7\x12\x5b\xd5\x04\x3b\x0c\xdc\xba\x7e\x61\x84\x2e\x46\x88\x42\x02\x21\x1f\x9c\x61\x86\xdb\x79\xd5\x60\x2a\x76\xdc\x8d\xfb\x3e\x27\xc5\x0c\x96\x0b\xf9\x7c\x18\xca\x3d\x13\xe2\xee\xb1\xd5\x34\x7f\x47\x77\x38\x4e\x43\x48\x90\x78\xf3\xfd\xb4\x5a\xf6\x93\x90\x4d\x3d\xdc\x17\x62\x4e\x3e\x80\x47\x01\xc1\x75\x2b\x92\x37\xf0\x0a\xf0\x7c\xc1\xd6\x09\xf6\xb7\xef\xfb\xca\xfb\x22\x1c\x78\x0a\x95\xb9\x9a\x53\xa0\xba\x56\x69\x25\xfe\x9b\x6c\x31\x1a\xbd\x4c\xba\x23\xe8\x7a\xc3\x70\xdf\x0d\xd0\xf9\x4d\xdd\x9d\xd4\xe4\xca\xb6\xfa\xfe\xc5\xde\x11\xfc\x10\x87\x6d\x3e\x85\x98\x7f\x7e\xa0\xdf\x9c\xeb\x05\xd1\xfb\x33\x80\xc9\xf9\xc3\x43\x70\xd5\x54\xcc\x7b\x2b\x31\x4d\x26\xe7\x41\x4e\x38\xb6\xcf\x1a\x46\xd2\xd0\x33\x8c\x7a\x25\x51\x0f\xa3\x9f\x52\x1c\x3d\x8c\x61\x1a\x31\x8a\xf8\x2b\x33\xc8\xfd\xce\xfd\xff\x04\x00\x00\xff\xff\x45\x2c\x8b\x0d\xc6\xd4\x00\x00" +var _flowstakingcollectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5b\x73\x1b\x37\xd6\xe0\xbb\x7e\xc5\x71\x1e\x12\x69\x22\x51\xa9\xdd\xad\xad\x2d\x95\x15\x47\x91\x64\x8f\xca\x8e\xed\x58\xf2\xe4\x21\x35\x95\x81\xba\x41\xb1\x47\xcd\x06\xd3\x00\xc5\x70\x3d\xfa\xef\x5f\xe1\x7e\xef\x0b\x45\xc9\x49\x8d\xf9\x90\x58\x24\x2e\x07\xe7\x8e\x83\x83\x83\xc3\xbf\xed\xec\x00\x00\xbc\xac\xc9\xea\x92\xa1\xdb\xaa\xb9\x39\x25\x75\x8d\x0b\x56\x91\x46\xfe\x74\x35\xab\x28\x14\xa4\x61\x2d\x2a\x18\x94\x78\x5a\x35\x98\x02\x82\xc2\xb4\x83\x29\x69\x81\xca\xde\x80\x9a\x12\x4a\x5c\xe3\x1b\xc4\xf8\x9f\xe4\xfa\xdf\xb8\x60\x54\x8c\xb4\x9a\x55\xc5\x0c\x50\x5d\x93\x15\x85\x25\xc5\x2d\x05\x46\x44\x47\xec\x76\xc3\x62\x3c\x44\x61\x8e\x9a\x35\x34\xa4\xe4\xd3\x51\x60\x33\xbc\x86\x15\x6a\x18\x54\x0d\x20\xa0\x55\x73\x53\x63\x40\x45\x41\x96\x0d\x9b\x88\x09\x2e\x18\x08\x58\xe7\x0b\xc4\xaa\xeb\x1a\xc3\xaa\x62\x33\xde\x11\x6a\x52\xdc\xe2\x12\x18\xb9\xc5\x8d\xee\x03\x14\xb3\xe5\x62\x22\x57\x79\x89\xb1\x68\x48\x9a\x69\x4d\x56\x87\xfc\x3f\x07\x05\x69\xf1\x81\x5e\x39\x85\x0f\xe7\x27\x67\x3f\x9d\x0b\xe0\xe6\xa4\xc5\x30\xab\x6e\x66\x50\xe3\x3b\x5c\x43\xd5\x4c\x49\x3b\x47\x02\x19\xe8\x9a\x2c\x99\x18\x4b\xa3\xc4\x62\x8a\x4f\xf6\xb7\xc3\x9d\x9d\x6a\xbe\x20\x2d\x83\x97\xcb\xe6\x86\xc3\x79\x25\xc0\x9a\xb6\x64\x0e\xdf\xfd\xf1\xf2\xe3\xdb\x57\x17\x3f\xbe\x39\xbf\x7a\xf7\xfa\xfc\xed\xc9\xd9\xd9\x87\xf3\xcb\x4b\xd3\xa1\x26\x2b\xbf\xf1\x9b\x77\xbf\xe4\x1a\x5e\x9c\x5d\xa1\xeb\x1a\x2b\xb2\xba\x3d\x2e\xce\xae\x4e\x7e\x7c\x73\x7e\x79\x75\xf2\xfa\xe2\xed\xab\xa0\xeb\x1b\x81\x2a\x31\x0b\xd5\x9d\xde\xbc\x3b\x7d\x7d\x7e\x26\x26\xba\x4c\xcc\x74\xc9\x48\x8b\x6e\xf0\x4b\x8c\xa9\x3b\xcd\xe5\xd5\xbb\x0f\x27\xaf\xce\x5f\x9e\x9f\xa7\x3a\x9d\xd6\x4b\xca\x70\xfb\xf3\xa9\xee\xf2\xf3\x69\xa2\xd5\xd9\xeb\x57\xfa\xf7\xb3\xd7\x21\xa8\xbc\xc1\xf9\x82\x14\x33\xdd\xe4\xfc\xfd\xbb\xd3\xbf\xeb\x46\x3b\xa8\x28\x30\xa5\xbb\xa8\xae\xf7\x2c\x03\x27\x39\x1d\x3e\x49\x2e\x38\x3c\x3c\x84\x13\xc5\x1d\x0b\xc4\x66\x92\x6f\xdd\x71\x6a\xcc\x20\xea\xae\xd6\xff\x1e\xb1\xd9\x11\x38\x7f\x0c\xeb\xfd\xbe\xad\xee\x10\x53\xbd\x9d\x3f\x06\xf6\x5e\x5e\xd7\x55\xa1\x3a\x9b\x7f\xdb\xe5\x9c\xdf\xe1\x86\xc5\xeb\xc0\xfc\x6b\x78\x4b\x4a\x7c\x52\x96\x9c\xdc\xd1\xc0\xbb\x5c\xf2\x2e\xce\xf8\x82\xda\xaa\xb9\xd9\x87\x96\xd4\xf8\x08\x3e\x5e\x34\xec\xff\xed\x03\x9a\x73\x24\x9d\x92\xf9\xbc\x62\x0c\x97\x47\xf0\xf1\x65\xf5\xc7\xff\xfd\x3f\xfb\x80\xca\xb2\xc5\x94\x1e\xc1\x89\xfc\xc7\x8b\xbd\xcc\xdc\x67\x52\xda\x49\x3b\x18\x80\x52\xf7\xe0\x5f\x72\x38\xfe\xf7\xff\x1a\x07\x48\x07\x16\x3e\xe0\x39\xb9\xc3\xe5\xcb\x96\xcc\xc7\x62\x62\xf4\x82\x47\xcd\x95\x5e\xf4\xe0\xb5\xfd\x84\x8a\x59\xd5\x60\xc5\xd4\xa7\x2d\x46\x0c\x97\xe3\x16\xb4\x67\x99\xe9\x92\xb5\xcb\x82\x2b\x37\xc4\x80\x32\xd2\x62\x6a\xe1\x83\x8b\x33\xa1\x07\x23\x40\xa8\xec\x74\x66\x17\x42\xe1\x93\x68\x95\x62\x70\x33\xde\x5b\x0f\xc6\xfe\xf6\x16\x3f\x3b\xa6\x71\xd5\x54\x6c\x08\x46\xf7\x1c\x80\xf8\x87\xe2\x7a\x3a\x09\x20\x81\x63\x90\x23\x75\xb4\x14\xad\x9c\xbf\x4c\xd3\xfb\x1d\xf9\x5f\x83\xc9\x53\xd2\x30\x54\x35\x34\x61\x3a\x90\x98\xe7\x1b\x6e\xff\x04\xed\xb4\x46\x32\x7d\xa5\x1d\xad\xb8\x11\xa6\xb8\x20\x4d\x89\xda\xb5\x31\x6a\x82\x36\x15\x05\xd2\xd4\x6b\x98\x63\x6e\x2f\x19\x81\x19\xa9\x4b\xd3\x9f\xdb\xa6\x9f\x4f\x81\xb4\xc0\xb5\xab\xb4\xd0\xc2\x00\x73\xa5\xcd\x5b\xa3\x25\x23\x1c\xa4\x02\xd5\xf5\x1a\x16\x68\x2d\x8c\x1e\x6b\x51\x43\x91\xb2\xf8\x18\x53\x33\x5e\x8b\x6b\xce\x55\xbc\xa7\x33\xec\x02\xb7\x62\x55\x74\x92\xe3\x08\x9f\x37\x2f\x9a\x29\xe9\xe0\x8b\x66\x18\x3b\x38\x9c\x6c\xda\x70\x74\xa3\x05\xba\xae\xea\x8a\xad\x39\x94\x1c\x01\x62\xad\xff\x40\xcb\x5a\xe0\x47\x38\x25\xd2\x01\x58\x35\xb8\x75\xbb\x32\x22\xdc\x88\xb2\x45\x2b\xbe\xb6\x12\x2f\x08\xad\x98\x1a\xa6\x6a\x0d\x95\x34\x01\xaa\x29\x34\x18\x97\xb8\x0c\x61\xd4\x26\x48\x02\x3a\xf7\x16\x2f\x00\x79\xdf\x92\xbb\xaa\xc4\xed\x91\x03\xee\xf3\xaf\x8d\xcd\x9f\x88\x46\xdf\xf7\x70\xb7\x27\xca\x1b\x4f\x12\x0a\xc4\xa2\xc5\xc1\x37\xfc\xd3\x31\xfc\xa4\x98\xe1\xe2\x76\x77\xef\x08\xbe\xba\x68\xee\x50\x5d\x95\xc2\xf2\x82\xf4\x5e\x24\xde\x75\xdb\xaf\xbc\x81\xef\x63\xf9\x6a\xfa\x04\x90\x2f\x1a\x8e\xc5\xda\xe3\x1f\x3b\xa0\x84\xe3\xae\x35\x38\xd2\xeb\x32\xc4\x2b\xcc\x84\x37\xaa\x15\x25\x90\xa9\xf8\x33\x60\x84\x24\x8b\x4e\x97\x0d\xdc\x60\xa6\x34\x2b\x47\x8f\xfa\x67\x80\xdd\x16\xb3\x65\xdb\xf4\xc2\x3f\xb9\x26\x6d\x4b\x56\xbb\x7b\xcf\x26\x82\x6f\x9f\x4d\x14\x4c\x79\xc5\x23\x7d\x04\xa8\x1a\x86\xdb\x29\x2a\xb0\x54\x18\xd2\x1b\x2f\x50\x03\x0b\xfe\x3b\x9d\x49\x89\x17\x0c\x1e\xbb\xb1\x66\x30\x4a\x64\x77\xc2\x66\xba\xff\xef\x4b\xdc\xae\x83\x9e\x49\xb3\xd0\x62\x4a\x96\x6d\x81\x1d\x50\x32\xce\x4d\x46\x2b\xdc\xa1\x56\xf9\xf5\xd2\x59\xfd\x48\xad\xf9\xcf\x76\x58\x36\xa3\xba\x70\x7a\xa1\xb2\xe4\x16\xe0\x9d\xd0\x93\xbb\xbf\x09\x26\x3c\x82\x1f\x62\x17\x7b\xc2\x9b\xf1\x7f\xe3\x36\x14\x3d\xae\xdc\x8e\x12\x0a\x4f\x39\x0b\x99\x69\x8d\xc9\x34\x73\x1b\xdb\x92\x07\xc0\x74\xda\x73\x98\x36\x1c\x5c\x69\xb1\x2b\xe2\x83\x14\x69\x13\xee\x57\xab\xa9\x1c\xf5\x90\x06\xfa\xae\xc2\x2b\x39\x38\xc1\x54\xa0\xe1\xfc\x8f\x8a\x0e\xb2\xbf\x2f\xf6\x8e\xe0\x47\x42\xea\x2e\x99\x91\x56\x58\xc8\xcc\xaf\x72\xa8\x7f\x76\x35\x77\xdd\x0d\xd1\xc7\xfd\xa2\xb3\xe7\x49\x5d\x8b\xb9\x9a\x29\x11\x1d\x33\x78\xe6\xbf\xf7\x8d\x63\xe7\xec\x18\xcc\x6b\xd4\x39\xa2\x4f\x2c\xb1\xac\x4f\x12\x15\x29\xde\x8a\x44\xff\x6a\x86\xad\xd4\x29\x1f\x8e\x33\x2b\x95\xbe\x1c\xdf\x57\x4b\xb9\x55\x1a\x4c\x6d\xcf\x49\x8b\xcd\x10\xa8\xae\x03\xd9\x56\x1b\x7c\xe1\x3f\x14\x91\x95\x55\xfb\x6e\x6d\x1b\x65\x63\x33\xda\x6b\x8c\x17\x94\xfb\x15\xc5\x2d\x57\xa2\x33\xb2\x92\x7b\x7e\xdd\xab\x29\x8d\xbc\xca\xad\x3b\x05\xd4\xca\x7d\x35\x2e\x5d\x25\x54\x31\xb8\x6d\xc8\x8a\x2a\xd7\x48\xb5\x65\x04\x6e\xaa\x3b\xac\x61\xe1\x3a\x0e\x56\x33\xdc\xc8\x50\x82\x36\xe4\x7c\x16\x6d\xe0\xcd\x98\x65\x35\x9d\xe2\x96\x3b\xd0\x6c\xbd\xc0\x52\xc5\x8b\x41\xf3\x6a\x2c\x52\x5e\x47\x1d\xfa\xcc\x11\xcd\x43\xbb\xc6\x3b\x2e\x5c\x21\x03\x70\x1b\xe0\xeb\x2e\x21\x83\x43\x9d\x04\x3e\x41\x72\x78\xe1\x49\x56\x75\x0d\xd7\x18\x9a\xaa\xe6\x7e\x8b\x30\x6a\x8a\x54\x33\x44\xa1\x21\x50\x90\xb6\xc5\x74\x41\x9a\x92\x13\xdb\x27\x67\x1e\xd2\xc1\x70\xbe\xf0\x01\xbd\x94\x7b\x8a\x90\xb7\xb8\x2d\x52\x71\x20\x1b\x26\x22\x2d\xf5\xfa\x9e\xa2\x46\x3a\xbd\x4b\x8a\x81\x34\xd8\xd9\x99\x2c\xb0\xec\x0f\x8e\xef\xc0\xbb\x70\x3f\x8d\x73\xc7\x35\x86\x85\xdc\x77\xab\xa9\x56\x70\x8d\x0b\xc4\x07\x12\xac\x52\x90\x65\x5d\xf2\x56\x4b\xea\x60\xc1\x61\x88\x24\x12\x1a\x63\x0d\xe8\x11\xfc\x60\x04\xb5\xd3\x6e\xdc\x77\x0f\x67\x54\xc5\x90\x11\x4d\xe3\xfb\x9d\x00\x51\x82\x1e\x56\x48\x05\x41\xfe\x4e\x6a\xee\x10\xa9\xdd\x80\x54\x05\x96\x33\x43\x8a\x3b\x81\x12\x2a\xa4\x47\x6e\x5c\x02\x71\x17\xec\xd5\x10\xb5\x57\x04\x36\xab\xe8\x3e\x97\x55\x87\xed\xf2\xeb\x65\x16\x2a\x9f\x87\xdc\x00\xd5\xc4\x81\x3d\x64\xa6\x2b\xae\x57\xe8\x20\xad\xa2\xa3\x75\xb8\xe5\x5b\x27\x49\x65\x11\x84\x34\xea\xce\xb0\xdf\xa1\xd8\x03\x24\x39\xf0\x17\xae\x5b\x0a\x19\x89\xe0\x23\x34\x78\xa5\x26\xd8\x87\x58\x8b\x2d\x29\x2e\x61\x5a\xb5\x94\xed\xc3\x94\xf0\xfd\x07\x2e\xe1\x7a\x1d\xc2\x16\xcf\xa0\x95\x15\x9f\x42\x0f\x9f\x52\x93\xba\x5d\x93\x9a\xa5\x93\x87\x1f\xc5\xbd\x4a\xd1\x26\xe1\x36\x53\x40\x94\x92\xa2\x12\x3b\x4a\x11\xbf\x15\xa8\xcf\xf3\x89\xef\x68\xd1\x1e\x93\xe8\x6f\x9e\x46\x68\xd4\xfd\x4d\x18\x72\xd8\x36\xca\x83\x22\xb3\x71\x72\x40\x71\xcc\x6c\xef\xce\xc9\x1b\x1a\x8e\xfd\xa9\x76\xd2\x3b\x2d\xa5\xb3\xe0\xf9\x01\x7c\xca\x6c\xc6\xac\x1e\x52\xad\xe2\x66\x21\x1f\xc0\x31\x7c\x37\xf9\x2e\x0f\x61\xd4\xd2\x6b\x7a\x78\x08\x17\xb1\x7d\x0a\x15\xce\xbe\xa0\x6a\x85\xea\xea\xff\x63\xa8\x84\xff\xc2\x77\x9b\x33\x41\x8d\x70\x3c\xae\x07\x5c\xc3\xe8\xa0\xd5\x6b\x5a\x4d\xc5\x7e\xdd\xa1\xfe\xbb\xeb\x7f\xc3\xb1\xfb\x45\x82\xa6\x62\x6d\x6e\x13\xaf\xc3\x4e\xd4\xfe\xf0\x10\xe4\x5e\x4e\xc9\x04\x57\xc0\x02\xf8\x39\x6a\xd0\x8d\x55\xcc\x22\xd0\x9d\xf0\xac\x52\x03\x72\xff\x07\x33\x25\x31\x81\x47\xd6\xb9\x64\xfe\xe1\x6b\x76\x28\xf3\x93\x02\xe3\x38\x40\x84\xb3\x03\x95\xff\x72\x5b\xef\xee\xa5\xf1\xe2\xf3\x64\x3c\xcb\xc4\xf7\x54\xf8\xe7\x1e\x70\x4d\x53\xc2\x93\x40\xb4\x6b\x56\x3a\xe6\x0d\x9b\xa5\xb8\x38\x50\x2e\x70\xec\x8a\x44\x68\x57\x6b\x42\xb1\x36\x19\xd2\x9c\x50\xb8\xc6\x53\x6e\xfa\x4a\x4c\x59\x4b\xd6\x5c\x65\xe3\x3b\xdc\xae\xd9\xcc\x0d\x62\x49\xe7\x5c\x58\x1e\x2c\x95\x62\xc1\xc7\x12\x82\x08\x73\xcc\x66\xa4\xdc\x57\x6e\xae\x30\x9d\x0b\xd4\xf0\x2d\xbc\x10\x88\x16\x2b\x9f\x98\xff\xa0\xb4\xbf\x74\x90\xc5\x39\x59\xb3\xd6\xe1\x09\xf7\x24\x8e\x7f\x14\x48\xbb\xa1\x8e\xb2\xc1\x36\xbe\x5c\x81\x05\x77\xf7\x15\xb5\x2d\xdd\xb8\xae\xed\xe0\xef\xbf\x7c\xd4\x6a\x7f\x4e\x44\x8c\xcd\x64\x19\xda\x5a\x54\x98\x9d\xa4\xfc\x7f\xb0\x93\x6c\xaa\x7a\xaf\x8b\x9e\x53\xd7\x70\xcb\x99\xcb\x74\x48\xba\x6f\x7a\xa7\x5b\x18\x24\x0e\x60\x4a\xb6\xbc\x38\xeb\x84\x53\xd1\x25\xd2\xc7\xdd\x8d\xce\x62\x97\x24\x72\xfb\xea\x9a\x9b\xd4\xc0\x49\x51\x2c\xe3\x1c\xe1\x4e\x54\x84\xcb\x39\x01\xc4\x15\xe7\x34\x20\x2d\x5c\x13\x36\x93\xca\xc3\xf7\x4c\x3e\x72\xce\xf5\x7d\x10\xe5\x75\x30\x3e\xa1\xf1\x4f\xaa\xa9\xe0\x49\x71\x80\x6a\xf9\x36\x1d\x30\x95\x36\x5e\xed\x7d\xa5\x7d\xd8\x95\xc7\x3d\xda\xa9\xd8\x3b\x82\x1f\xbc\x43\x54\x65\x21\x3f\xed\x44\x6c\x1a\x5a\xc2\xd8\x3c\x5a\x55\x96\xed\xfc\x23\xaa\x51\x53\xe0\xd0\x90\x4e\xae\xd5\xf7\x07\xe1\x71\xe8\x64\x5e\x35\xd5\x7c\x39\x57\x5f\x7d\xc0\x14\xb7\x77\xc8\x1e\xae\x5b\x14\x2a\xfb\xc6\xb7\xe1\x29\xc3\xa6\xf6\x22\xbe\xfa\x16\x18\x0e\x8d\x55\xa4\xe9\x9e\x09\x55\x17\xe2\x04\x3c\x1d\xef\x61\xc5\xf9\xea\x59\x06\x29\x7e\x6f\x8b\x96\xad\x22\x45\xb0\x02\xa5\xb8\x65\xbb\xd1\xf7\xe2\x37\xc1\x0b\xf0\xfc\x38\x00\xe3\xdb\x90\x5e\xfb\xc9\xee\x73\x4c\x29\xba\xc1\xc2\xd1\xa2\xcb\xe9\xb4\x2a\x2a\xb1\xe1\x27\x0c\xd5\x80\xee\x50\x55\xf3\x1d\x95\x0c\x5b\xab\xb5\x7c\x15\x0d\xb4\x97\x34\xe5\x17\x53\x63\x07\x94\x30\x14\xa8\xe1\x3b\x9e\x56\x1e\xfd\x49\xa9\x92\x30\xee\xdb\xe3\x05\xee\x92\xa8\xc8\x2f\x9b\xe1\x79\x34\x72\x35\x85\xdd\xcc\xa2\x43\x2d\xae\x3f\x39\x5f\x2c\xfd\xfd\xb7\x0a\xa7\xf1\xa2\xc0\x06\xa5\x9f\x1f\xb8\x54\xd6\xc0\x1b\xc9\x94\xff\x8f\x2d\x7f\x06\x4f\x7c\x7b\xc8\x71\xd5\x85\x20\xf9\x25\xac\x66\x88\xa9\x76\x4a\xad\xa8\x1f\x98\x0c\x6c\x29\xef\x48\x13\x3f\x9a\xd0\xf8\x10\xc9\xd5\x1d\x1e\xc2\x72\x51\x22\x86\x03\x35\x26\xf6\x69\x2d\x2e\x48\x2b\x36\x4e\xa8\x14\x91\x10\x33\xa5\xb2\xae\xaa\x8f\xe2\x93\xad\x90\xc2\xa3\x6f\x1a\x66\x61\xab\x97\xf3\x8f\x9e\x0f\x7d\x45\x3e\x52\x2e\x8b\x8a\x53\x0e\x86\x0c\xc4\x35\xb8\x5c\xbc\xb7\xed\xef\x45\x81\x9a\xa3\xc5\xbf\x2f\x31\x65\x09\x9c\xab\xc1\xe7\x55\xb3\xa4\x82\x80\xdc\xfd\x81\x15\x52\x83\x86\xee\x6c\xb0\x1f\x8d\xd0\x97\xdc\x2d\xe4\x7e\xf9\x36\x83\x9b\x3c\x2e\xd5\x7a\x9f\x1f\x38\x7b\xae\x42\x9c\x99\x9f\xcf\x17\x6c\x2d\x38\x3e\x74\x66\x9c\x55\xbe\xc2\x4c\xed\x51\xd8\x12\xd5\xbe\x05\x45\xc5\x0c\x62\xb7\xd6\x9d\x5c\xc2\xf9\x9e\xb4\xe2\x84\xf5\xf9\x01\x74\x8a\x99\x2f\xfd\xd9\x41\x35\x5a\x9c\x61\x7d\xd3\x15\x0d\x9c\xc6\x59\x7e\xd1\x67\xfa\x40\x74\x86\xe7\x50\x35\x6a\x9b\x41\xd1\x1c\x77\xac\x57\xa2\x66\xa2\x62\xb0\xbb\xf2\x98\x41\x2b\x16\x05\x6b\x7a\x51\x99\x9e\xc1\x3a\x33\xe0\x1a\x0d\x96\xe1\xb3\xfb\x61\x7b\x8e\xc3\x43\xb8\xac\x1a\x11\x44\x57\x06\xbb\x21\x91\xc5\x46\xd6\x1f\x9f\x21\x19\x85\x2e\xc8\x1c\x5b\x96\x6f\x48\x3b\x47\xb5\x15\xb6\xeb\x9c\x80\x0e\xb3\x81\x0f\xb7\x79\xa3\x2d\xdd\x26\x22\x99\x33\x30\x86\x34\x3d\xec\x99\x32\x2f\xd9\x2d\x99\xe2\x4d\xe3\xcc\x5e\xa3\xe2\x56\x1c\xf7\x2b\x07\x0a\x4d\x19\x6e\xe1\x1a\x73\x75\xe6\x84\xcb\x38\x85\x10\xc8\xed\x17\x69\x75\xe6\x8a\xc8\xdf\xcb\x8c\x1e\xa9\x4c\xe5\xfc\x56\x53\x58\x10\x4a\xb9\x7f\x3a\x22\xfe\x66\x1d\x5f\x73\x4e\x27\x9c\x5f\x7d\x1a\x17\x7b\xbc\xc3\x02\x4d\x7a\x9b\x89\xdb\x96\xbb\xfb\x33\x11\xd6\x6e\x84\x46\xbe\xc6\xc0\xda\xea\xe6\x06\xb7\x72\xe3\xb8\x68\x49\xb9\x94\xb9\x1e\xd7\xb8\x40\x74\x89\x5d\x6f\x46\xc5\x2e\x71\x5d\xc6\x32\x74\x78\xa8\x47\x16\x61\x75\xb2\xc0\x6d\xbd\x56\x61\x0c\x69\x3e\x94\x67\x24\x0e\x8d\xf9\x2a\xc5\x34\xf1\x40\x7c\xb5\xc6\x89\x7c\xde\xc5\x53\x49\x0b\x7a\x04\x5f\x9d\xa2\x86\xbb\x17\xfa\xa4\x67\x2e\x83\xd0\xa8\x11\x2e\x76\xdd\x62\x54\x8a\xd3\x82\x32\x0c\xa3\x3d\x6c\xf3\x10\x38\xf6\x7d\x9e\xfd\x8d\x32\x1a\x9e\x67\x2f\x43\x56\x6a\xcf\x2a\xa0\x77\xe3\x05\xd0\xe7\xe9\x27\xbc\x2d\xee\x3b\x0e\xc4\x68\xa7\x2f\x39\x4a\xdc\x0f\x3c\x22\xa6\x75\xb2\x8f\xc6\x50\xaf\xf3\xff\xc7\x86\x20\xab\x99\x15\x03\x7e\x90\xca\x24\x29\x94\x1b\x02\x11\x6b\xa2\x1c\xf6\xd2\x76\x6b\x44\xb0\xd3\xeb\x32\xd8\x61\x0c\x70\x9d\xc1\x8c\xab\x83\xa4\xca\xd5\xae\x9c\x3e\xf2\x2c\x30\x20\x3a\xd4\x1f\x4b\x6f\x15\x87\x52\x71\x44\x84\xef\x21\x6c\x17\x0e\x98\xd9\x89\x74\x19\x73\x2d\xa4\x32\x4f\x26\x0c\x9e\xaa\x63\x49\x9d\x18\xa6\x0f\x9f\x2b\x36\xe9\x89\xf5\xf7\xe3\x29\x6b\xda\x24\x8b\x53\x60\xed\x12\x8b\xa8\x4a\xca\x5e\x69\xa7\x1d\xff\x51\x51\x46\xf5\xa9\x5e\x9c\xfe\x2c\xce\xba\xc4\x61\xb9\x0e\xc7\x89\x25\x91\x05\xff\x15\xd5\x6e\x1c\x6b\x5f\xea\xed\x55\x45\x31\x4c\x51\x4d\xf1\x24\x7d\x18\xf4\xf0\x64\x90\x80\x15\x82\x33\x41\x3f\x3d\xf4\x45\x22\x9e\x1b\x74\x38\x4b\x27\x96\x8e\xe9\xe9\xc0\x08\xaa\xdb\xb8\x28\x8e\x66\x23\x37\x31\x4a\x3b\x84\x88\x45\xa7\xac\xe0\xe8\x79\x37\xc4\xed\xe8\x79\xff\xa3\xce\x2a\x7e\xf3\xe3\xe1\x61\x7f\x2b\xa9\x19\x0d\x1a\xa1\x19\x8e\xbd\x31\x6d\x40\x38\x11\xe1\x0f\x06\x38\x8b\xb2\x68\xc3\x91\x82\x16\x23\x86\xec\x1e\x2e\x39\xd4\x7d\x97\xa9\xb7\xa7\x4c\x6a\x43\xcb\xa9\x28\x65\xc3\xf0\xe9\x3e\x88\x03\x3a\xe1\xc5\x68\xd7\xce\x39\x10\x16\xcd\xcd\xf7\x73\xc4\x8a\x19\xa6\xa9\xf3\xa4\x6c\xce\x70\x9a\xac\xbb\x1d\x28\x7d\x96\x3e\xf2\xe0\x9f\xaf\xbf\xce\x21\x6e\x7c\x27\x39\xdb\x33\x38\x4e\xe6\x61\xf6\xce\x28\x3a\x66\x83\xe0\xfc\x93\x66\x46\x1d\x10\x6b\x97\xb1\x26\xbf\x4f\x46\xdf\xde\x10\x72\x1b\x92\xcd\x5e\x05\xa2\x0b\x5c\x54\xd3\x0a\x97\x3a\x25\xc4\x4f\x2a\x81\xc4\xba\xdc\x6c\x4c\x29\x3a\x66\x5d\xdd\x67\x12\xee\x72\xb5\xd4\x0e\x33\x7a\x01\xc9\x3d\x4a\x07\x38\x8e\xe8\x92\x13\xeb\x91\x98\x8c\x57\xcd\x67\xda\xd5\x73\x24\x18\x28\x6b\xac\x5e\x2a\x27\x5f\xec\xbd\xca\x12\x50\x23\x4d\x12\xd7\x81\x36\xf9\xc5\x4d\x0f\x83\x27\x4f\xc4\x4c\x1c\x83\x55\xa5\xca\x39\x9e\x54\x65\xf4\xa3\xd2\xe1\x22\x6d\xfd\x38\x97\x83\x23\xf2\xfe\x34\x8b\x54\x65\x7c\x7a\x26\x76\xde\x97\xf2\xbc\xee\xd8\x1d\x73\x22\x7e\x91\x4e\xcd\x45\xf3\x41\xd8\xf1\xdd\x3d\x38\x08\xda\xf0\x9f\x3f\xe0\x15\x6a\xcb\x20\xf8\xb6\xc9\xde\xdc\x01\xc6\x1b\x0b\xcf\xab\x81\x77\x85\x5c\xe0\xaa\x52\x67\xa3\xbb\xdf\xf2\x6f\x12\xb7\x76\xa2\x95\x9b\xdf\x7e\x91\xd9\x45\xf6\x80\x6b\x77\xcf\xb9\xa3\x22\x16\x23\x72\x9f\x5f\xe8\xdc\xe7\xbd\x18\x0f\xce\x31\xda\xaf\x55\xf9\x4f\x78\x7e\xf0\x4c\xd0\x35\xd4\xfe\x97\xca\x3e\x87\x39\xfd\x2a\x19\xda\x32\x6d\xaa\xb3\x8a\x60\x9b\xe8\x97\xbc\xb3\x08\xa4\x2e\x3b\xee\x06\x40\xe6\xa4\x59\x80\x19\x66\xa7\x5f\xe8\x3c\xea\x0d\x44\xcc\xe0\x6f\x80\x94\x3d\x30\xef\x38\x21\x49\xbd\xc2\xe2\x67\xca\x46\x27\xad\x93\x6e\xf5\x3a\xf9\x6b\x8b\xd6\xf0\xab\x70\x2e\x84\x49\x94\x84\x02\xd8\x23\x68\x1c\x42\x85\xa2\x6f\x13\x3f\x99\x7e\x19\xe4\xa8\xa8\xff\x15\xf9\xd8\x88\x9c\x83\x8d\x04\xd3\x4a\xf6\xaf\x21\xbd\xa5\xa4\x9a\x6f\x87\xf0\xbe\x3a\x12\xea\xb4\x30\x7e\x18\x4f\xb9\x7c\x22\x3d\x78\xa6\x0f\x26\x9c\x84\x41\x9d\x63\x27\x46\x4e\x8e\x47\xe5\xae\x91\xc9\x6b\x44\xb8\xf4\xc7\xff\x05\x43\x49\xc4\xcf\x45\x8d\x51\x9b\x56\x30\x15\xae\x4b\xa5\x66\xc4\x58\x25\x06\xbe\x8d\xf0\x06\x72\x72\x52\xd5\xf5\x2a\xd2\xc2\x1c\xa9\x5b\xd1\x8c\xc0\x2d\xc6\x0b\xa8\x98\x51\x41\x59\x19\x97\x48\x72\xcc\xb9\xde\x0d\xed\xf5\xd9\xd3\x17\x83\x02\x8d\xf2\x56\x5c\x7a\xe7\x97\x4d\xde\x38\x82\xaf\x2e\x7d\xdf\x8c\x8f\x20\x10\x27\x48\x29\xb7\xaf\xe2\x82\xb7\x96\x8b\x38\x4a\x9d\x89\x99\x1c\xab\x84\x81\xdd\xef\x26\xdf\xed\xd9\xc8\xa0\x62\x16\x31\x19\xf7\xcb\x93\x49\x9a\x5d\x49\x76\xc9\xad\x9a\x6b\x6d\x34\x1f\x67\xb7\x6c\x9b\xb9\x12\xca\x09\x4b\x8e\xb6\x55\xbd\xd7\x79\xf6\x11\x4b\x02\x17\x04\x19\x4e\x57\x07\xb9\xfb\x2a\x6c\xcc\x50\x0d\xcd\x72\x7e\xcd\x5b\x4e\xa3\xc0\x9c\x4a\x58\x12\x31\x13\x3e\x44\x89\xcb\x65\xc1\xdc\xf3\x41\x21\x26\xb8\x8d\x03\x2a\x9b\x44\x87\x5c\x65\x9c\x5a\xa0\xbc\xa0\x4b\x33\x4b\x34\x30\xe9\x9b\xf5\x56\x4f\x53\x79\x99\xa9\xe1\x8b\x75\x32\x29\xe7\x68\x11\x03\xae\xf3\xac\xd4\xe0\xcf\x0f\xf2\xcc\xf3\xfc\x20\x8e\x35\x28\x50\x4f\xb3\x2a\xc5\x8d\x2d\x60\x15\x08\x4a\x63\x2f\x74\x3d\xf4\xb4\x89\x08\x07\xb8\xde\xe0\xa0\x7b\xcc\x5a\xdc\xb3\x9e\xe0\x60\x83\x01\xa9\xd0\x9d\x39\x36\x72\x70\x39\xf8\x10\xef\x6a\x86\xcd\xf9\x83\x55\x36\xf2\x2e\x28\xd7\xc5\x46\xe3\x23\x97\x0d\x44\x32\x7b\xa9\x83\x69\x51\x06\xea\x54\x5c\x3e\x90\x11\xb7\x98\xea\x22\x75\x6f\x37\xa5\x7f\xec\xb0\xfe\x90\x93\xaf\x06\x46\x04\x07\x58\xc1\xd0\x09\xdc\x82\x21\x0c\x87\xcc\xdb\xc2\xb4\x11\x8a\x77\xd2\x5d\xf7\xb4\x07\xb8\x9f\x8f\x64\xa1\xdc\xad\xbc\x67\xa9\x6c\xe4\xe0\xa9\xcc\x95\x9d\x71\xbb\x36\xcb\x71\xc4\x06\x99\xad\xd2\x16\x34\x98\xc2\x31\xec\x7e\xdd\x35\x12\xa2\xf0\x75\x2f\xe9\x12\x59\x66\xd5\xd4\x9b\x67\x52\x95\x41\x1c\x09\x3e\xc5\x5a\x01\x1e\xb6\xed\xe8\x65\x80\xec\x84\x8f\x6b\x7b\x21\x65\x7f\x43\x01\xdc\xd0\x04\xeb\xe2\x3b\x9b\x59\x61\x78\x0c\x4b\x0c\x69\x6b\x1c\x2d\x78\xb8\x41\x76\xee\x2d\x24\x6d\x32\x38\x76\xd9\x4e\xe3\x9a\xe6\x04\x67\xe7\xac\x33\x44\xdb\xbb\x51\x06\x33\xc7\x7c\x7d\x26\xb3\x2b\xf4\xa7\xcc\xe4\x59\xb4\xa1\xd2\x1f\x6d\x2d\xd3\x22\xa5\x8c\xd7\xf9\x1f\x0b\x2c\xf8\xc2\x95\x42\xa3\xfc\xec\x8d\x41\x7d\xe5\xc0\xd1\x57\x4d\x86\x4e\xa1\x91\x83\x51\xc9\x38\x23\xed\xb8\xa5\xec\xf6\x4d\x79\x99\x18\x7b\x43\x7b\xfe\xce\x54\xd0\x90\x16\xfd\xa6\xa2\x0c\xb7\xe2\x56\x59\x70\x41\xb2\xcb\x0f\x50\xbd\x90\xe8\xa7\x11\x2f\xf5\x8f\xa6\x4f\x4c\x8e\x0e\x9b\x2d\xc7\x13\x5b\xc7\xaa\xcc\x94\x9d\x68\x30\x5b\x91\x96\x8f\x79\xa2\x59\x55\xb7\xb3\x3f\xbd\xc6\x6b\xfb\xb5\x5a\x90\xf7\x9d\x9f\xea\xbd\x0f\x0b\xb4\xc6\xed\x11\x9c\x2c\xd9\x4c\xb9\xaa\x7b\xde\x5f\x2f\x52\x69\xdf\x36\xa3\x4f\x5f\x4c\x08\x12\xc9\x75\x3e\x51\xd4\xd3\xf7\xcd\x13\xb6\x43\x85\xa3\x95\x2e\xe7\xc8\xb0\x11\x4f\xe9\xdb\x26\xf0\x10\x7d\x15\xa1\xc4\xfb\xd3\xc7\x8c\xfd\xb7\xba\x8d\x46\x9d\xc0\x8e\x4e\x6a\x0b\x96\x32\x3c\x76\x6b\x17\x3c\x09\x17\x12\x45\x91\xe4\x17\xa3\x54\x51\x67\x20\x56\x39\xee\x49\x22\x7c\xc0\x3a\x2f\xe1\x38\x3a\x8c\x08\xe3\x7e\xfc\xf3\xe2\x85\x11\x4d\x99\xe0\x44\x98\xbe\x5b\x25\x1c\xed\x56\x8f\xf7\x55\x86\xea\x23\xf7\xe1\x06\x3e\x11\x85\x0c\xa3\xc2\x1f\xb4\x04\x76\xc5\x95\x93\xe1\x64\x91\x77\x4a\xb9\x0f\x8f\x96\x6c\x16\xdc\xa1\x77\x72\xc5\x29\x98\x72\x34\x50\xa0\xba\x0e\x36\x40\xd5\xd4\x2c\x4a\xd5\x49\x39\xb6\x85\xd3\xc4\x8a\x3e\x90\x1a\x4f\x14\x43\x90\x76\xd2\xa2\xd5\x3f\x50\xbd\xc4\xf0\x9f\xff\x0c\xec\xd9\x50\xdc\xd0\x25\xb5\x3d\x63\x2d\xed\x1e\x26\x69\x25\x92\xa8\x3d\x61\x70\x19\xa0\xd6\x48\xbf\xf8\xdf\xde\x30\xcb\xa0\xe6\x1c\x7c\x4a\xa5\x49\xa5\xee\x03\x9b\xd2\x4a\x29\xaa\x21\x9f\x66\x87\xf2\xba\x9d\xbe\xe7\x8c\xab\x16\x30\xc7\xd2\x81\xae\x8d\x14\xde\xbe\x12\x0a\xbe\xa9\xd7\x86\x86\xa8\x71\x75\x99\xf1\xe5\xa6\x86\x3f\xc0\x6e\x25\x88\xb8\x8a\x53\x68\xbc\xbb\x29\x19\x7a\x38\x77\xd1\xba\xf6\x83\x64\x8e\x6f\x28\xfc\x5e\x88\x4a\x46\xb7\x37\x8e\xcb\xe8\x9b\x42\x6e\x2c\x52\x77\xbe\xaf\x97\x4c\x39\x87\xcc\x1d\x50\x1a\x7c\x5a\xd9\xe2\x0f\xa8\x2c\x65\x29\x99\x02\x6e\xf1\x5a\xa5\xc3\x84\x66\xc5\xe6\x39\x0e\x63\x89\xdc\x06\x42\x1f\xf5\x6d\x64\x21\xb6\x2e\xf1\xb2\xc8\x5a\x16\x8d\x7a\x5e\x1b\x75\x61\x70\xec\x42\xb9\xeb\xb3\x7a\x38\xbc\x4e\x32\x4f\x26\x21\x15\x76\xee\xf8\xe8\x48\xd5\xdd\xea\x80\xa4\xbb\x40\x12\x9b\xd4\x55\x73\x1b\x5f\x8d\xde\x3d\x54\xd5\x13\x0e\xfd\x91\x54\x2d\x43\xd1\x68\x1f\x18\x6a\x6f\x30\x3b\x82\x43\x2a\xaf\xfd\x88\x1a\x9b\x62\x18\x99\xc1\x1a\xdf\xba\x4a\xac\xe0\x38\x71\x74\xeb\x7b\xce\xfe\xc9\xa3\xa7\xbf\x7a\xea\x61\x75\xfc\xb8\x97\xdf\x40\x9b\xb8\xc9\x5a\x6c\xbe\x91\x23\xa3\x7c\xf2\x7d\x4d\x12\x04\x3f\x9f\xc2\x3f\x08\xb3\x71\x44\x4e\x2f\x55\x78\xc5\x14\x5c\xc8\x64\x00\x6d\xa8\xc0\x13\x37\x5d\x5c\x06\xca\x01\x93\xdc\xec\xff\x5e\x48\xe0\x95\x2f\x24\x27\xbf\xc1\xcc\x94\xf1\x14\x3f\xef\x5a\x63\x1e\x88\x4a\x6c\xa7\x5d\xc6\xa2\xe8\x0e\xef\x3e\x3f\x50\x93\x70\xef\xe6\xc8\x2f\x12\x3a\x11\x3f\x38\xb5\x35\xd3\x17\xaf\xa8\x58\x9b\x3a\x41\x71\x4a\xe8\xa5\xf0\x0a\x9d\xf1\x4f\xc9\x47\x99\x33\xd8\x74\x4c\xb4\xbb\xd6\x62\x82\x3b\x07\x51\xd1\x71\xb2\x36\xa9\x04\x96\xc0\x93\xb2\x8b\x0e\xfe\x33\x69\x50\x96\xa5\x95\xa5\x09\x59\xfa\xec\xf5\x2b\x78\x8f\x5a\x56\x15\xd5\x02\xf9\xbe\xc9\x10\xce\x56\x96\x7b\x30\x83\x27\xfc\x8c\x14\x13\xe8\x2c\xbb\x45\x37\x64\xe9\x98\xd6\xed\x8d\xbb\xa0\x90\xdb\xcf\x5e\xbf\x72\x7e\x7e\x20\xb7\xfb\x73\x59\xa6\x3f\x7b\xfd\x6a\xe2\xfc\xf0\xdf\xc0\xf4\x21\x65\x9f\x84\xe9\x3d\x56\xf4\x7b\x24\x5c\xc7\xc0\x59\x3c\x91\x65\xac\x4d\xc9\x48\xe1\xfe\x75\xa4\x8f\x90\x06\xab\xbb\x82\xba\x9a\x4c\xe0\x9f\x55\x54\xd6\x9e\x91\x97\xa4\xed\xb8\x25\x2e\xaa\x12\xcb\xfa\x0d\x2d\x6a\xe8\x34\xb3\x97\xb0\x95\xbd\x08\xa0\x46\x5e\xae\x48\xb9\x70\xa6\x5a\x4f\x4d\xed\x88\xad\xce\x02\x27\x75\x99\x18\x99\xef\x70\xf7\xbd\x51\x64\xf0\x59\x15\xd2\xe2\x00\x3a\xf5\xb9\x19\x11\xd7\x95\x91\x53\x45\x6b\x03\x8c\x68\x15\x34\x70\xc8\x7d\xeb\x97\x56\x6d\xec\x90\xfa\x9e\xba\x8b\xc7\xc8\x19\x56\x5b\xa9\x94\xef\x96\xc8\x95\xf1\xf9\x5f\x05\x03\xc2\xa3\x0c\x9f\x87\x7d\x0f\xf5\x51\x0f\xd4\x55\x70\x4a\x24\x04\x65\xe8\xea\x6c\x67\x64\x16\xf2\x9a\x2c\x75\xc2\x02\x59\x35\xbd\x77\x63\x36\xf0\x9f\x2f\xce\x62\xb7\xf6\x27\x74\x8b\x81\x2e\x5b\x05\x44\xb2\x46\xad\x32\x25\xd1\x49\x27\x95\x41\xc7\x82\x05\x19\x14\x17\x67\x3b\x5b\xf3\xa4\x42\x8a\x38\x3e\x91\x3c\xfe\xf0\x69\xac\x54\x93\x74\x96\x03\x2f\xe6\x7b\x95\xef\xdf\xe7\xe0\x84\x53\x42\x26\xb8\xa1\x0a\xbc\x84\xfe\xa5\x09\x8b\x2f\xa4\xba\x8c\x04\x3b\x8c\x7f\x40\xcf\x5d\x43\x5d\x86\xf5\xd8\x59\xb8\xce\x42\x4a\x76\xb0\xb7\x0d\x0d\x6c\xef\x0c\x25\x43\x2a\x9a\xb8\xad\x48\x9a\x36\x3f\x2b\x42\xa6\xee\x23\x7a\x8c\xf9\x70\x57\x22\x45\x61\xdf\x44\xf7\x12\x3a\xb0\xdc\x2e\xa1\xbb\x8c\xfa\x48\x42\x67\xbc\xae\x47\xa4\x77\x84\x86\x81\x64\x0f\x21\x7d\x34\xea\x0f\x51\x27\xd1\x86\x99\xeb\x0d\xe9\xaf\x78\xbd\xe3\xa2\x62\xdd\x35\x83\xc5\x2e\xa8\xa3\x72\xd8\x90\xed\xf1\x5e\xa8\xa7\x9e\x0d\xa8\xad\x3c\xae\x22\x73\x0c\xf7\xd3\xed\xe6\x3b\x0e\xa0\xe3\x80\xc9\x4f\xa9\x44\x96\x3e\xff\x7d\xe3\x78\xc1\xd9\xa3\x86\x0a\x7a\xf2\x6b\x86\xa7\xf7\x5e\x4c\x01\xd9\xcc\x0c\xc5\xb6\xda\x6c\xab\x22\x53\x22\xe2\x48\x61\x85\xf9\xbf\x1b\x6e\x85\xe5\xd9\xef\xfa\x1b\x55\x62\x47\xbb\x51\xc2\x42\xea\x03\xb3\x30\x86\x69\x43\x48\x89\xe2\xe6\xfa\x16\x85\xf2\xd8\x20\xeb\x19\xc9\x51\x7c\xe4\xbf\x24\xed\xb9\xca\x46\x49\xa4\x1e\x0e\x0b\xdf\xb9\xc8\xdd\xa2\xab\xf4\x14\x4e\x8e\xba\xf8\xd3\x77\xa4\x91\xbf\xc3\xf1\x39\x62\xe8\xb9\xea\x77\xd1\x9d\xb4\x7c\x55\x95\xed\xd6\xb5\x83\x2d\xd4\xb6\x83\xc7\xab\x6f\xd7\x33\xd7\xdb\x80\xf8\x89\xda\x77\x0e\x2b\xa4\x3d\x03\xe8\x3e\xe3\x42\xc1\x29\x57\x0e\xb5\x29\x6f\x00\x36\xe2\xb2\xc4\xd2\xba\x78\x0d\xfa\xae\xe1\x6d\xb6\xf9\x76\xaa\x28\xad\xdd\xf2\x4d\x6f\xde\xfd\x62\x50\x10\x6b\xb4\xac\x02\xd3\xc3\xbd\x6c\xc9\xbc\xa7\x48\x7a\x50\x93\xec\x89\x32\xa4\xe5\xbb\x59\x23\x73\xce\xee\x53\x1a\x29\x69\x37\x3b\x2d\x57\xda\x59\x16\x72\x97\xf2\x91\x85\x59\x1d\x12\xc7\x19\xec\x09\x2b\x5e\xb7\x4c\xce\x48\x64\xab\x04\x38\x29\x2e\xf7\xf3\x02\x34\xd4\xf9\x52\x23\xc9\x01\x36\xae\x27\x07\xbd\xb7\xc0\x93\xe7\xf8\x59\x0d\x1d\xe1\x66\x5a\x35\xa9\xdd\xbe\x3e\x6b\x8e\xee\x3f\x6e\x96\x5f\xea\xe5\x95\xd8\x8c\x9a\x07\x67\x96\xe4\xf3\x41\xbb\xc5\x6c\x78\x29\x4a\xb7\x17\x47\x4a\x55\x0a\x96\xef\xaf\x07\x59\x4d\x55\xdb\xf8\x69\x20\x7d\xf5\xb2\x27\x73\xca\xe4\x0a\x19\xec\xd9\x7c\xa1\x30\x0c\xe3\xd4\x28\x91\xe9\x7c\x6e\x86\x5e\x7f\xba\x54\xde\xe3\x7e\x78\x5a\x8c\x97\x1a\x97\xf0\x87\x4c\x96\x10\xee\xb8\x28\x3b\x2a\x81\x65\xf8\x0d\x29\x0f\xbe\xf4\x1d\x29\xbf\x49\xf2\x96\xd4\x43\xf2\x5b\x82\x14\xc1\x10\x18\x9b\xf4\x12\xa7\xe1\x05\x12\xf7\xa3\x50\x20\x14\x90\xaf\xe8\x14\x97\xa8\x68\x58\x91\x95\x2d\x55\x23\x5b\x57\x62\x70\x1c\x8b\xdf\x82\xe7\x94\xf6\xfa\xce\xd6\x43\xd7\x7b\xa3\xab\x2e\xca\xae\x7f\x9d\xed\xd9\x91\x23\xac\xc0\x18\xa6\x12\xc7\x26\x7e\x64\xf1\x1c\x65\x2e\x8e\x44\xf6\xd8\xe4\xf6\xfe\x0c\xe9\x0e\x3a\xfc\x65\xd3\xb7\x15\xb9\x3c\x78\x4c\x22\xaa\xa5\xe5\xd0\x84\xd0\x71\xd4\x37\x36\xca\xa6\x5b\x7a\x3f\x5f\x19\x1f\xb3\x40\x75\x4d\xed\xf5\x5e\x93\x70\xba\x9a\x61\x5d\x1d\x97\x2b\x77\x73\x6e\xaa\x93\x34\x1d\xc5\x6e\x4b\x10\x73\xe4\xb9\xd3\xb8\x07\xae\x71\x47\xb9\x8d\xd7\x81\x3d\x77\x03\xae\xca\x17\xfc\xab\xa9\xea\x7f\xe9\x1b\xc7\xc9\x5a\x06\x9d\x73\x38\xd5\x2d\xc2\x89\xcc\x34\x6e\xae\x9a\x1d\xc7\x79\xea\xd5\x3b\x64\x11\x50\x49\x38\xbd\x17\x02\x19\x51\x0e\xc8\x5a\x59\x39\x53\x63\x23\x6c\xac\xae\x29\x7b\x82\x2a\x6b\x54\xea\xf7\x1a\x44\xc2\x92\x4d\x97\x34\xef\x71\xa5\x3d\x9d\xac\xe7\x21\xab\x7e\xbe\x0d\x13\x33\x23\x91\x6d\xf0\x2a\x48\x67\xfd\x93\xbb\xfa\xe9\x43\x7d\x93\x4c\xe6\x67\x7c\xd9\x61\xf6\xb5\x77\x5d\xb1\xe8\xae\x88\xf6\x00\x46\xc5\x2d\xf8\x2f\x93\x2c\x96\x0d\x56\x07\x46\x24\x64\xb1\x69\xbb\x92\xae\x1c\xee\xa4\xde\x73\xe1\x4f\x56\xc5\xd1\xff\x92\x36\x27\xb1\x2b\xd9\x6c\x41\x43\xfc\x6a\x49\x69\xfb\x70\x88\x94\x4f\xe7\x16\x57\x47\x91\xa7\x5c\x75\xa7\x2c\xe3\x8b\xc9\xde\xe2\x95\x72\xfd\x06\x98\xa8\x17\x4f\xb4\xd9\xcd\x5e\xb6\xda\x9e\x24\x98\xf7\xaa\xa9\xaf\xff\xf4\x05\x6b\xfb\x18\xb5\x22\x0f\xca\xbd\x0c\xd1\x51\xc9\x47\x35\x4c\xf1\xb0\x12\x46\xc7\xc3\x18\x26\x91\x90\x1b\x33\x84\xc6\x17\xd1\x4d\x0a\xd6\xa4\xab\xc8\xd8\x3b\xfa\x1a\x45\x96\x85\xf4\x0e\xb6\x67\x57\x31\xb2\xa0\x5f\x10\x80\xec\x96\xdd\xce\xe2\xbc\xe2\x41\x71\x51\x80\x23\xbc\xff\xb4\xef\xd7\x70\x9b\xe1\x79\x2a\xa8\x98\xbf\x31\x14\x16\x42\xef\xaa\x8e\xb7\x49\x61\xf4\xd4\xbc\x4e\x39\xf0\xef\x87\x55\x03\x87\x0d\x6b\x46\xe7\xc6\x72\x4b\x6f\x85\x51\x8c\xce\x88\xc8\xe0\xb2\xc3\xe9\x90\xd0\x3d\x17\x80\x1c\xa1\x3f\xfa\x12\xdc\x73\xcd\x27\x4b\x51\x57\x90\xdc\x75\x86\xf2\x94\x86\xb0\x4b\x4a\xfa\x2a\xa5\x6f\xdf\x72\xdb\xd3\xf1\xcd\x0d\x78\x60\x2d\x9e\x1f\x8c\x91\xf1\x2e\x6b\xfe\x38\x82\xf9\x39\x84\x72\xbc\x40\x6e\x4b\x18\xbb\x9c\x99\xa7\x12\xcc\xfb\x84\x48\x3a\xe2\x48\xfb\x6f\xcf\x27\x89\xa8\xfa\x3d\xc8\x61\x93\x63\x84\x2c\xbc\x51\x49\xe9\xd8\x5b\x5b\x36\xa6\x7c\xc5\xd3\xb8\x6c\xaa\xd8\x4e\xf9\x5f\xe6\xb7\x6d\x56\x38\xf1\x33\xf9\x44\x01\x8d\x7a\x8f\x14\x7a\x1d\xa0\x68\x0d\x9d\x92\x30\xde\x3c\xf5\x00\x1c\xc1\xfb\x38\xf6\x65\x04\x14\x59\x8c\x3d\x86\xd2\x18\x03\xd7\x70\xcd\xd1\xaa\x9b\xfe\x4f\xa6\x39\x74\x69\x81\x2f\x9a\xe3\xcf\xa2\x39\x64\x7d\x30\x54\x96\xe0\x3c\xa7\xa2\x1f\x2c\x4e\x3d\xc3\xa2\x8b\x80\x49\xde\x91\x15\x3f\x1a\xbc\xaa\xd7\x30\xaf\x1a\xd6\x5d\xb2\x5b\x85\xe5\x50\x8b\x9b\x6f\x18\x54\xf3\x39\x2e\x2b\xc4\xb0\xb8\x85\x38\xad\xe5\x9d\x7e\xc5\x58\x03\x0a\xfd\xc3\xc3\x5e\x80\x48\x0d\x17\xab\xa5\x80\x63\x7b\xd5\x52\x4f\x61\x78\x1d\xec\x55\xcb\x4b\x7a\x21\xf1\xd3\xd6\x1c\xc5\xe2\xd8\xae\x17\x49\xe9\x84\x48\xfd\x52\xbe\x8a\x99\xf2\xb1\x64\xf4\xa8\xf4\x8b\xbc\xb9\x9f\xa7\xd0\xf9\x63\x91\xbb\x4d\x9d\xbf\x45\xce\xb1\xe6\x63\xc4\x82\x9e\xd4\x7c\x8c\x81\x6b\x88\xf9\xd0\xe5\xa9\x6d\xad\xf9\x6b\xc7\x0f\x7d\x4c\x33\xa2\x66\x96\xf6\xb0\x6a\x6e\x36\xb5\x21\xf0\xc5\x88\x3c\x86\xfb\x19\x91\xe7\xcf\xeb\x78\xf6\x82\x1a\x41\xba\x75\x97\x73\x14\x08\x4f\xa5\x30\xc6\x01\x35\x44\x5b\x28\xc5\xe0\xbe\x48\x15\xaa\x08\x75\x92\x22\xed\xde\x50\xdd\x60\x6a\x18\xd8\x6c\x3b\xfd\xb2\xab\xa9\x4f\x9a\x7e\x5b\x5c\x1c\xbb\x49\xa8\x4e\xea\x3a\xac\x41\xfa\xe7\x3e\x55\x83\x44\x09\xb5\x07\x1c\x8b\x59\x2c\x7c\x1e\x76\xcb\x03\x30\x84\xb5\x4c\xd2\xe5\x53\x06\x41\xf4\xa4\xdb\x89\x83\x7c\xb1\x44\x5b\xb4\x44\x7e\x6e\x99\x55\xf6\x19\x92\xf5\xa9\x7c\x8b\xfb\xc4\x3b\x68\x36\x5f\x2c\xec\xf2\xd9\x6c\xda\x86\xcb\xdc\xaa\x65\xf3\x49\x20\x94\xcc\x86\x60\x8d\xc4\xfc\x53\x69\xac\x0d\x56\x33\x4e\x97\x3d\x65\x58\x46\x4f\xfa\x25\x32\xf3\x67\x53\x65\x32\x32\xb3\xec\x79\x15\x57\x16\x6e\x57\x17\xb0\x34\x31\x39\x93\xe8\x38\x4d\x6e\xec\x6c\xfc\x06\x35\x32\x8d\xfb\x33\x87\x67\x36\x52\xef\x3d\xfb\xdc\xbf\xa8\x7e\x1f\xa8\xf4\x37\x59\xfc\xe1\x21\x98\x17\xac\x0d\x7f\x69\xd6\xc8\xdd\x89\x0a\xc3\x83\x7d\x27\xd9\xba\xe1\x07\x35\xae\x3e\x02\xcc\x20\x65\xf0\x8b\xde\x10\x72\x58\x78\x96\x98\x7b\xa4\x57\x01\xf2\xe7\x8d\x30\x8d\x31\xaa\x63\xc9\xfe\x67\xb3\xaa\x7d\x66\x76\xec\xfa\x1e\x95\xa5\x1f\x93\x9d\xb7\xc7\xca\xb9\x54\xe3\xd3\x9a\x50\xdc\x06\xe5\x5a\xc5\x97\xd4\x73\x30\xa8\x76\x30\x4a\xe3\x60\xec\x83\x2e\x61\x5b\xd7\xc6\xce\x88\x2d\x77\xf0\xb4\xb1\x7d\xa5\x52\xe3\x56\x56\x8a\x54\xdd\xcd\x49\xbc\x07\x03\x89\x13\x6f\xa3\xaa\xca\x4e\xb1\xde\xac\x37\x53\xf0\xb5\x08\x4e\x1b\xf6\xd0\xe3\x7f\x87\xc7\xe2\xb7\xdf\x7a\x2d\xf2\x68\xbe\xae\x9a\x0e\x1e\x1c\xe1\x03\x40\xa9\x1f\xed\x13\x40\xe9\xdf\x4d\x9c\x0a\x8e\xc5\x53\xb6\x7d\x25\x21\xd4\x15\x28\xc1\x29\x36\xf3\x92\xbb\xd0\xcb\x86\x55\x75\xf4\x6c\xfa\x35\xc6\xd6\x4b\x6e\xf6\x39\xab\x8a\x22\xda\xf2\x82\x86\x27\x09\x94\x21\x86\x27\x83\x5e\x2e\x77\xaf\x25\x44\x8b\xc1\x25\x7c\xcf\x97\xd2\xf5\x0c\x72\x4f\x0c\xa2\x8f\x6a\xd6\x77\xef\x02\xa3\x37\x35\xac\x63\x29\x5a\x6d\x0f\x5f\x4a\x66\x0b\xf2\xb0\xa5\xe8\x41\x87\x2e\xe5\xc9\xa2\x14\x76\x92\x61\xe5\xdd\x53\xe3\x94\x98\xb2\x96\xac\xed\x58\x39\x4f\x35\xbe\x45\x6f\x0b\x86\xa4\x2f\xd3\xe7\xc0\x66\xd9\xcb\xea\x76\xc4\xb1\x77\xd6\x93\x28\x71\x27\x9a\x84\x4f\x75\xe4\xe2\x20\x03\xd1\x91\x5e\x9e\xba\x23\x29\x80\x05\x85\x08\xa7\x5a\x8b\x4a\x0f\xd4\xdb\xa3\x29\x59\x36\x65\xba\x6c\x7c\xf4\xd5\xe7\xae\xc2\xdf\xef\xc3\x3d\xb4\xb6\x04\x28\x43\xde\xfd\x80\xa1\xae\x8b\xc5\x88\xba\x30\xa4\x37\xa9\x15\x93\x8f\x5e\x37\x9c\xab\x64\xbd\xfb\x9c\x70\x6e\xe3\xb2\x38\x3c\xee\x85\x71\xe8\xbe\x34\x2e\xcb\x43\xb4\x78\x2a\x5d\x9c\x01\x45\x92\x60\xf0\x9d\xef\x67\x1d\x97\xbe\x41\xd5\x16\x32\xa7\x25\x2a\xa1\x53\xc7\x6f\xd4\x53\xf0\xa9\x6e\xd5\x34\xca\x4a\x55\x75\x77\x7e\xc2\x37\xe8\xc7\x35\xc3\xf4\x3d\x6e\x65\x6a\x2a\x2e\x45\xc9\x83\x67\xc7\xb0\xcb\x15\x3f\xa2\x99\xf0\x90\xfb\x09\x41\x52\xac\xe8\xce\x57\xe2\x29\x5f\xa0\x90\xce\x93\xa0\xf9\xee\x86\xd4\x8b\xcb\x36\xa6\x80\xeb\x54\x1a\x19\xe8\xcd\xa5\xfe\xae\xe7\xf0\xef\x93\xdf\x76\xdf\xcd\xef\xa8\x16\x10\x40\xb1\xd7\x15\xef\xe8\x7e\x72\x2b\x06\x74\x94\x8f\x67\x34\x4a\xea\x81\x47\x9c\xf1\xed\xc2\xdf\x1e\xe8\xd7\xe9\xd4\xd8\x27\x75\xe9\xd2\x6b\x78\x52\x77\x2e\x07\xc2\x50\xff\x27\xec\xff\x19\xdc\xb8\x1c\x08\x63\x5c\xb8\xd1\xc1\x1a\xf0\x23\x1a\x03\x5e\xc3\x4b\x8d\xa0\x3d\x10\x1a\xbf\x03\x07\x7f\x35\x6f\xcc\x62\x22\xe1\x8a\x75\x94\x07\x1a\x86\x83\xcf\xe2\x82\x3d\xe0\xd1\x40\xbc\xd1\x93\x81\xd9\x73\x9f\x57\x98\xb1\x28\x12\xe3\x1e\x06\x89\xe2\x52\x75\xad\xae\xdc\x94\xea\x10\xa8\xae\x4d\x06\xa1\x3c\xf0\xa1\xe3\x4f\x7c\x6e\x30\x93\x55\x43\xe8\xee\xde\x11\xfc\x2a\xe3\x23\xa1\x97\x64\x6a\x8e\x9d\x51\xa7\xcd\x71\x24\x14\x93\x5b\xbc\xa6\xc9\x00\xc5\x03\xb8\x9b\x77\xff\xcd\xbf\x70\xd7\xc3\xd9\x1d\x01\x53\xef\xfd\xfa\x63\x6f\xdc\x89\x41\x45\x82\x95\xd5\x32\x7e\x4b\x0d\x12\x7f\x97\x66\x67\x85\xc1\x09\x5a\x2c\x70\x53\xee\xc6\x63\x6d\x58\x98\x4a\x0e\x3b\xe4\x4c\x51\xb3\x91\x73\xcd\xd3\xe1\xa5\xe8\xfc\x70\x33\x76\xf2\xeb\xdb\x1c\xc1\xaf\xee\x17\xa3\x39\xcb\x6e\x81\x25\x73\x85\x9d\x1d\x9b\x41\xa3\xb9\x8e\xe1\xd7\x7f\xfa\x38\xd3\x19\x41\x17\x67\x7c\x6d\x6a\xe6\x7c\x90\x4c\xd0\xb7\x63\x3b\xfe\x62\x52\x25\x5e\x8a\x73\x61\xd2\xd4\xf6\xb0\xd2\x67\x05\x2f\xce\x9e\x85\x37\xd6\xfe\x02\x52\x65\x96\x98\x15\xaf\xa0\x45\x42\xce\x72\x43\x76\x0f\x27\x86\x1a\x22\xb3\x31\x88\x1d\x3f\xa6\xa5\xb8\x6b\xd4\xec\x88\xd9\xd1\x46\xb1\x4b\xc7\x4a\x02\x1e\xca\x40\x97\xbb\xbf\xba\x91\xde\x71\xc1\x1e\xa3\x7c\xde\x8a\x0a\x1e\x7c\xa7\xae\xb5\xcc\x36\x8d\xd9\x49\x5d\x9b\x18\x05\x57\x3e\x1d\x31\x8c\xac\x2e\x6a\xa6\xa4\xaf\x67\xac\x59\xc6\xd9\x48\xb7\xe7\x50\x9d\xa4\x61\xd3\x3c\x32\x22\x3c\xf3\xd7\x53\x26\x9f\xd1\x44\x8f\x44\x71\xc2\x8e\x3f\xc0\x90\x77\x14\xdd\x4d\x09\x93\xad\x7d\x96\x94\xa8\x2d\x99\xf4\x93\xba\xf6\x8f\x83\x32\x92\xe5\x35\x4a\x89\x97\x17\x93\x1f\x34\xc6\x06\x82\x16\xba\x0c\x83\x84\xad\xe7\x98\x6c\x23\x3f\x80\x0f\x51\x6d\xf9\x80\xed\x59\xc2\xd0\xf9\x27\x1d\x8a\x75\xf9\xc4\x7f\x3d\xb1\xff\xe2\x43\x6c\xe6\x43\x6c\xc2\x6a\x0f\x77\x27\xd2\x21\x45\x18\xce\x92\xfa\xf3\x50\x0f\xa4\x43\x6b\xbe\xc2\x8c\xaa\x62\xe5\x14\xea\x8a\x32\x20\xd3\xf8\xcd\x8e\x66\x4a\xda\x39\xea\xd3\x83\x7e\xe5\x5d\xb1\xbb\xf9\x24\x15\xd0\x51\xa2\xb2\xfb\x7d\x40\x2f\xb7\x94\x71\x10\x71\x0d\x81\xd7\xc5\x0b\x4c\x6c\xc0\xd4\xfd\x51\xba\x5d\xf5\x8b\xd5\xb8\xb7\x94\x1d\xc8\x98\x0e\x8a\x45\xdc\x29\xaa\x03\x47\xf4\x79\x0b\x57\x8e\xa8\xb1\xf3\xe8\xe8\x6b\x50\x71\x30\xc4\x51\x90\x17\x61\x42\x23\xf6\x75\xd9\x21\x79\x18\x47\xf0\x23\x21\x6e\x9d\xc0\x5a\xd6\xd6\x16\xa4\x3a\x16\x06\x49\xd5\x3e\x8e\x0f\xb8\x9c\x77\xd6\x2d\x52\xe4\xa1\x0e\x4a\x3f\x90\x10\xa1\xf0\x53\xf4\xcd\x7b\xf1\x74\xe4\xfd\xf7\xa2\xac\xe2\x24\xf3\xb3\x78\x3c\x23\x7d\x14\xd4\x5d\x33\x98\x13\x25\x1a\xd3\x3d\xf8\xd1\x8c\x93\x58\xd6\xc6\x99\x28\x3b\x0e\xb7\xa5\x38\x24\x9b\x62\xaa\x2e\x05\xab\x2c\x64\x37\x33\x2a\x21\x30\x1f\xa3\xac\xb6\x88\x27\xf6\xcc\x81\xd3\x17\x7a\x0f\xa0\x77\x9c\x27\x38\x84\x92\x0f\xa5\xe3\x9b\x2f\x54\xdc\x2a\x15\xc7\xd2\x70\x68\xec\x57\xdb\xb9\x08\xb0\xe4\xf3\xf1\x1d\xb1\xe0\x04\x7d\x13\xb1\xe1\x2f\x14\xce\x52\xd8\x8d\xab\x2b\xea\xea\x6e\x9d\x54\x1e\x13\x9a\x7d\x30\xb5\xbd\x28\x53\x8a\xe4\xb9\xd0\xed\x17\xc2\x77\x11\x3e\x51\xe1\xbd\x47\xb6\x47\xc5\xc4\x1e\x4c\x76\x37\x46\x96\xa2\xfa\xc0\x98\xd9\x17\x26\xe8\x62\x02\x2f\x10\x39\x84\x07\x36\x0a\xe5\x6c\x83\x17\xfc\xdd\xe1\x40\x86\xc8\x86\x7a\xbe\x70\x45\x0f\x57\x04\x91\xb4\x90\x35\x5e\xd5\xe4\x1a\xd5\xb6\x9e\xb7\xc3\x21\xc9\xd7\x26\x39\xaf\x68\x1e\xd1\x55\x19\xa9\x7a\xcf\xa8\x84\xeb\xb5\xf0\xee\x24\xea\xbf\x19\xba\x8d\x4b\x6c\x75\x13\x6c\x31\x70\xeb\xfb\x85\x21\xba\x18\x22\x0a\x29\x84\xfc\x70\x86\x19\x6e\xe7\x55\x83\xa9\xd8\xb1\x37\xee\x3b\xa3\x14\x33\x58\x2e\xe4\x33\x68\x28\xf7\xbc\x49\x6a\x8f\xae\xa6\xfb\x3b\xba\xc3\x71\xda\x43\x82\xd4\x9b\xef\xc7\xd5\xf2\x9f\x84\x7c\xea\x21\xc2\x10\x83\xf2\x41\x3f\x0a\x08\xae\x5b\x91\x2c\x82\x57\x80\xe7\x0b\xb6\x4e\x88\x83\x7d\xb7\x58\xde\x53\xe1\xc0\x53\xa8\xcc\x95\xa0\x02\xd5\xb5\x4a\x63\x49\xbf\x31\x17\xa3\xd3\xcb\xe0\x3b\x82\xae\xb7\x19\xf7\xdd\xc0\x9f\xdf\xd4\xdd\x81\x4d\xae\x6c\xab\xef\x5f\xec\x1d\xc1\x0f\x71\x18\xe8\x53\x48\x81\xe7\x07\xfa\x2d\xbd\x5e\x10\xbd\x3f\x03\x98\x9c\x3f\x3c\x44\x57\x4d\xc5\xbc\x37\x20\xd3\xe4\x72\x1e\x1a\x85\x63\xfb\x5c\x63\x24\x1d\x3d\xc3\xa8\xd7\x1f\xf5\x30\xfa\x89\xc8\xd1\xc3\x18\xe6\x11\xa3\x88\xbf\x32\x83\xdc\xef\xdc\xef\xc0\xff\x04\x00\x00\xff\xff\x49\x56\x1a\x08\xa0\xd6\x00\x00" func flowstakingcollectionCdcBytes() ([]byte, error) { return bindataRead( @@ -179,11 +179,11 @@ func flowstakingcollectionCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowStakingCollection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb9, 0x99, 0x8e, 0xaa, 0x20, 0xef, 0xa2, 0x98, 0xea, 0xb, 0xfa, 0x45, 0xcd, 0x5b, 0x6c, 0xdd, 0xd6, 0x87, 0xa5, 0x1, 0x48, 0xcf, 0x8, 0x88, 0x9, 0x21, 0xfa, 0xac, 0xc3, 0xe8, 0x14, 0xe3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x43, 0xf4, 0x81, 0x6c, 0xbd, 0x64, 0x83, 0x9c, 0x7d, 0xf2, 0x8f, 0x7, 0x41, 0xaf, 0xfa, 0x5a, 0x11, 0x97, 0xbd, 0x6a, 0x97, 0xf9, 0x36, 0x55, 0x91, 0xf4, 0x1, 0x52, 0x57, 0xd3, 0x30}} return a, nil } -var _flowstoragefeesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5a\xdd\x8f\xdb\xb8\x11\x7f\xf7\x5f\x31\x3d\xa0\x3d\xfb\xba\x91\xbd\xc0\x21\x28\x16\xd9\x02\x9b\x4b\xf6\x10\x34\xb9\x14\xc9\xa6\xf7\x10\xa4\x59\x5a\x1a\xdb\x44\x24\xd2\x20\x29\x7b\x8d\x60\xff\xf7\x62\xf8\x25\x51\x92\xbf\xf6\xd0\xd3\x4b\xbc\x22\x39\xdf\x33\xfc\xcd\x28\xd3\x9f\x46\xf0\x13\xdc\xad\x10\x6e\x4b\xb9\xfd\x68\xa4\x62\x4b\xbc\x45\xd4\xa0\x2b\xa6\x0c\xe4\x52\x18\xc5\x72\x33\x02\xbb\xf1\x46\x00\xcb\x73\x59\x0b\xf3\xa3\x06\xed\x76\x43\xce\xd6\x2c\xe7\x66\x07\x05\x1a\x54\x15\x17\xa8\xa1\x5e\x83\x91\xb0\x92\x5b\xa8\xea\x7c\x15\xb7\x4a\x01\xf9\x8a\x71\x01\xdc\x40\xce\x04\xd4\x1a\x33\xb0\x84\xfb\xd4\xb8\x86\x9c\x95\x79\x5d\x32\x83\x05\xcc\x77\x50\xd5\xa5\xe1\xeb\x72\xc7\xc5\x12\xcc\x0a\x81\x55\x24\x08\xc8\x05\x28\xd4\xa8\x36\x58\xc0\xa2\x94\x5b\xd8\x72\xb3\x82\xfb\x46\x97\xcc\x93\x7e\x87\x4b\xf6\x72\x67\x50\xff\x1b\xd5\x07\x7f\xe2\xf6\xed\xfb\xdf\xef\x83\x09\x2a\x2e\x78\x55\x57\x2d\xc2\x96\x9e\x91\xdf\x50\xe8\x16\x13\xa9\x06\xa5\xbd\xef\x98\x30\xf3\xf4\xfc\x2b\xc7\x92\x19\x2e\xc5\x3d\x98\x15\xd7\x74\x66\xcd\x78\x01\x45\xad\x48\x27\x6f\x59\xc8\x15\xda\x5d\x17\xa4\x34\x29\x6a\x5f\x48\x95\x91\x9c\xd6\x58\xc6\xbe\x46\x51\x90\x8c\xac\x2c\xc1\x28\x26\x34\xcb\xe9\x94\xbe\x00\x26\x76\x91\x98\x59\x31\x03\x2b\x56\xd8\x97\x1b\x56\xd6\x48\x1e\x10\x4b\x2c\x80\x0b\x22\xc3\x1b\x65\x88\xf6\x8a\xe9\xce\xdb\xa8\x62\xbe\xc2\xfc\x1b\x16\xc0\x96\x8c\x0b\x6d\x3a\xdb\x6a\x4d\x4b\xa2\xf0\xaf\x2b\xf2\x72\x63\x3e\xd8\xb0\xba\x34\xed\xa3\xd1\xda\xaa\xb1\x8b\xd5\xf0\xcd\x22\x51\x60\xc1\x78\xa9\x9d\xbd\xac\x00\xf6\x6c\x4b\x5f\xd8\xf2\xd2\x6e\x6a\xcc\x13\x83\x14\x2a\xb9\xe1\x62\x39\x2d\xb0\x44\x43\x26\xe6\xc6\xbb\xe9\x8e\x84\xca\xfe\x43\x42\xdd\x93\x04\xb2\x56\x39\x12\xa9\x92\xfe\x22\x51\x89\x92\xb3\x50\xc2\x8d\x38\x11\xa5\x39\xe6\xac\xd6\xe8\x02\xd1\x73\xb3\xc7\x57\x6c\x83\x20\x64\xcf\x7c\x41\xbc\xe9\x68\xc4\xab\xb5\x54\x06\x6e\x6b\xb1\xe4\xf3\x12\xad\x2c\xb0\x50\xb2\x82\xd9\xc3\xed\xa7\xdf\x7e\x7d\xf3\xf2\xed\xeb\xbb\xf7\xff\x7a\xfd\xdb\xcd\xab\x57\x1f\x5e\x7f\xfc\x18\x0f\x04\xc1\xe3\xe6\xb7\xef\x7f\x4f\x36\x8e\xd6\xf5\x3c\xe6\x6c\x2f\xa5\xbf\x8f\x46\x00\x00\xd3\x29\xbc\xae\xb8\xa1\xac\xda\xae\x50\x74\x72\xa9\xe7\x76\xd6\x98\x93\x82\x63\x8d\xaa\x49\x85\xdb\xc6\xc1\x2e\xaa\xb4\xe5\x40\x52\xe0\x06\x85\x81\x8f\x87\x53\xef\x17\x17\x8a\xe3\xaf\x70\x24\x47\xaf\xe0\xd3\x2d\x7f\x78\xfe\xf3\x64\xbf\x0a\xfd\xec\xbd\x6d\x65\xaf\xcd\x83\x96\x2a\x02\xb1\xd0\xb6\x46\x91\xbf\x0e\xe7\xb6\x57\x2d\xeb\xe8\xf6\x6e\x5f\x7a\x37\x5a\xed\xad\x00\x7d\x7d\x5e\xe1\xc2\x56\xce\x5e\xcd\x8c\x62\xe0\x06\xd5\xee\x14\x5f\x64\x81\x66\x41\x34\xb9\x8d\x5b\xae\x61\xab\xc8\x62\xc2\x9e\xaa\x05\x6f\x0a\x1c\xa5\x24\x32\x5b\x4c\xc8\x90\x5c\x6c\x50\x69\xbc\x80\x40\x46\x4b\x7a\xaf\x90\x88\x08\x09\xa5\xd4\x9a\xf6\xae\x15\xe6\x5c\x13\xf1\x50\xa7\x29\x31\x82\xd8\x36\x44\x89\x7c\x43\x67\x5e\x9b\x86\x50\x9f\x8a\xf5\x64\x9b\x94\x15\x8e\xa4\xf5\x34\x1b\x07\x6c\x98\x3a\x35\x62\x7a\x06\x3e\x31\x56\x52\x6b\x9f\x11\x2e\xd1\xfa\xb6\x90\x25\xfe\x2a\x51\x5b\xfe\xc2\xd5\x33\xcf\x3d\x52\xf3\xe5\x3e\xd4\x75\xb1\x4b\x2a\x0f\x37\xb0\x66\xca\xf0\x9c\xaf\xed\x8d\xc8\xc5\xc5\x50\x2d\x8c\xc5\xb0\x65\xaa\xa3\x61\x18\x8d\x44\xb5\xb3\xa0\xed\xda\x28\xba\x73\x9a\xda\x68\x8d\x42\x77\xb6\xcb\x06\xcb\x7a\xcd\x14\xab\xe8\xd2\xd7\x21\x76\x0e\xa3\x88\x46\xaa\x48\xf6\x26\xe1\xe6\x2b\x94\x17\xc6\xe5\x91\x7e\x42\x81\xf2\x7f\xeb\x1f\x1b\xe3\x86\x63\x14\x1b\x59\xe4\x42\xb2\x2c\x6a\x01\x1a\xcd\x91\x52\x75\x46\x8d\x82\xef\x91\x3e\x3d\x7c\xd1\x35\xcb\x31\x44\x02\xd7\xd7\xc7\x98\x75\x78\x00\x28\x34\xb5\x12\xc9\xcb\xc7\xe4\xaf\xb3\x65\x38\x26\x42\x42\x1d\x2b\x7e\x72\xb5\x3f\x42\x77\x32\x6a\x14\xd8\x17\x0e\x03\x09\x4c\x32\x77\x42\xa1\x9b\xaf\x83\x7e\xdf\x5b\xc6\x4f\xaa\xdf\xc7\x7d\xbd\x97\x06\x79\x79\xff\xe2\x1f\xf6\xef\x01\xbe\xfb\xd9\xf6\x7d\x7a\xf4\x96\xdb\x4b\x6b\xd0\x8f\x2c\xcf\x51\xeb\x71\xa8\x08\x13\xa0\x0b\x6a\x3c\xf9\xee\x74\x79\x0c\x85\x68\xda\x60\xff\x1b\xe7\xd0\x5f\x42\xba\x3b\x43\xb8\x30\xe8\xd5\x02\xd9\xae\xb9\x81\x56\xa4\xf9\xc1\x1f\xad\x70\xc9\xe6\x14\x79\x71\xe5\xcd\x22\x41\x72\x14\x3c\x42\xd2\xfd\x69\x61\xeb\x9c\x95\x4c\xe4\x48\x25\x98\x60\x28\x6d\x21\xb0\xab\x81\xc5\x25\xb9\x80\x59\x36\x83\x98\x17\x21\xc0\xf6\xa9\x31\xfe\x1a\x98\xdd\x14\x85\x42\xad\xaf\xc0\xff\x98\x84\xd8\x6a\x85\x00\x15\xf1\xc0\xe9\x9a\x18\x8d\x5a\x01\x57\x62\x94\xf0\x03\x2e\xe0\x1a\x96\x68\x3c\xb7\x71\xca\x63\x92\xb8\x37\x5b\xa2\x15\x67\xce\x4b\x6e\x76\x2f\xfe\xd6\xc1\xc5\xdf\x13\x7c\x9a\xbd\x74\x1c\x1e\xff\x39\x9e\xae\xeb\x79\xc9\xf3\xe9\x22\xec\xf7\x4b\x93\xbf\xa4\xe4\xe7\x52\x29\xb9\x1d\x77\x53\x84\x9e\x46\x97\x46\xf0\xcc\xff\x1c\x8a\x1a\xe7\x73\xd0\x58\x2e\x32\xaf\x92\x67\x7a\x27\xbd\xaa\x3e\xfe\xa2\x7d\x3d\xb5\xc9\xb1\xb8\xd2\xa7\x07\x16\xcc\x99\xc9\x57\xf6\xa7\x3f\x7b\xd0\xd5\x7a\xaf\xaf\x51\x5f\xc1\x67\xff\xfb\xcb\xe4\x0a\x3e\x3b\x87\x7f\x69\x59\x8a\x9c\xea\x99\x73\xbb\x3d\x6c\xb9\x86\xcf\x5f\xe2\x2e\xc2\x1f\x29\x69\xea\x59\xba\xcc\x3a\x0e\x68\x91\xde\x51\x95\x27\xa3\xee\x0d\xd3\x43\x01\xd4\xc8\x97\xb1\xf5\x1a\x45\x31\x0e\x64\xdb\xa9\xdf\xf1\x61\x73\x28\xf5\x4c\x2b\x6a\xa3\xe1\x6e\xa5\xba\x6b\xd0\x4d\xf0\xb0\xed\x02\x9f\xea\xac\xe9\x14\xee\x7c\xef\x6d\x3b\x56\x23\x7d\x5b\xc9\xe9\xcc\x20\x96\x8a\xbd\x9e\x4c\x3b\xd3\x39\x12\x48\x95\x1b\x54\x83\x52\x34\xec\x08\x28\xed\x50\x11\x4f\x26\x00\x1f\x72\x5c\x5b\x0e\x4c\xdb\x86\x74\x68\x96\x50\xa0\xe2\x16\x60\x12\x8a\xa6\x4d\x21\x63\x2a\x2e\x6a\x7f\x05\xb2\x07\x7b\x05\xae\xa5\xd6\x94\xa6\x69\x9b\x4a\xe0\x2b\x48\x30\xee\xad\x70\x57\xee\xf0\x01\xf3\xda\xbe\xc5\xc5\x82\x3a\x4c\x92\xd0\xf4\x96\x68\xa5\xe4\x15\x37\x17\xc0\xb2\x6f\x19\xcb\xae\x20\x97\xd5\xba\x36\xee\x3a\xe9\x2c\x2d\x09\xe8\xd2\xab\x49\x92\x1d\x67\xb9\x77\x7c\x20\x5f\x2e\x9c\x35\x63\xbd\xbc\x20\x4b\xdc\x3d\xd0\x9d\x17\x6f\xe5\x3f\x3b\xa5\xf6\xd7\xe7\x3f\x58\xa3\xff\x84\x3a\x7d\xac\x56\x7b\x0d\x3a\x36\xb9\xbe\xf6\x41\x3d\x7c\xc0\x47\x1e\x4f\xaf\x55\xae\x7d\xdb\xb0\x43\x75\x01\x05\x16\x75\x6e\x4e\x8c\x65\x9b\x08\xb4\xb5\x7b\x4b\x74\x9f\x43\x57\x4b\xa6\x99\xa9\x95\x6d\x2e\x3f\xd6\x73\x0b\x40\xc6\x31\x78\xfa\x86\xa7\xe7\x11\xb0\xd4\x78\x40\xcb\x93\xae\xb2\x84\x62\x07\xc3\x1d\x29\xa9\x4f\xb9\xf3\x26\xf0\x84\xfa\x7b\x1a\x8f\x83\x85\x37\x92\x6a\x60\xf8\x56\xd6\x65\xe1\x50\xb8\x9d\xcb\x2e\xf9\xc6\xcf\x6b\x6c\x77\xdf\x82\x4f\xad\x40\xc9\x92\xca\x71\xa2\xf2\x5f\x03\xb1\x56\x15\xe8\x01\x29\x77\xcf\x00\xf3\x51\xec\x46\x57\x5d\x6f\xf1\x45\x94\xeb\x85\xbb\x1e\x4f\x85\xe9\x2e\xe4\x5f\xb8\x1e\xbf\x19\x70\x5a\xc3\xa7\x35\x21\xbc\x6c\x95\x8a\xb4\xdb\xf1\x1b\x62\xdd\x77\xc3\x6f\x8e\x85\xb3\x63\x84\xb0\xb6\xdf\xb5\xb6\x1c\x44\x4b\x2e\xf9\x4f\x03\x47\x70\xe3\xba\x29\x2e\xda\xe3\x90\xb0\x38\x0c\x9e\x83\x93\x86\xf9\x7c\xf5\x0d\xda\x21\x97\x78\x69\xdd\xc6\x56\x86\xbe\xf3\xe3\xfe\xf1\x99\x8d\xeb\x7e\xa5\xba\xb0\x3f\xaa\xd4\xd5\x36\x76\x87\xa9\x3a\x77\x92\x36\x9e\xa4\xd4\xd3\x7a\x7e\xea\x20\x98\xee\x53\x4b\x03\xa6\xd9\x32\x90\xe5\xd3\x69\x53\x44\x7b\x23\xb6\x64\x57\x6d\x4c\xf8\x92\xe2\x47\xde\x73\x46\x38\x48\x18\x09\xf7\x83\xee\xbc\x87\x8a\x2f\x57\x06\x84\x34\xb0\xe3\x58\x16\xae\x08\xb0\x2a\x50\x18\xf6\x29\x4c\xcf\xb5\x45\xc7\x83\xb9\x14\x1b\x54\x2d\xa4\x64\x91\x9b\xbd\x11\x3e\xbd\x11\xe6\xf9\xcf\x60\x89\x10\x96\xf3\xa6\x7b\x17\x3c\x9d\x56\x12\x4f\xc8\x1d\xf2\xf2\xd8\xa3\x77\xd2\x1d\x8c\xe7\x9a\x69\xcf\x95\xe7\xb1\xa7\x9a\x68\xb6\xc0\x40\x37\x48\xd3\xc8\x31\xa6\x5c\x95\xb5\xb1\x28\x91\x6c\x3a\x49\xd0\x08\x01\x01\xb7\x33\xcc\x44\xe0\xaf\x70\x39\xf3\x8f\xf5\xb3\xe3\x0d\x3f\x91\xe3\xdd\x73\xd9\x0a\x91\xbf\x77\x8f\x4f\x07\x8f\xb7\x05\x2e\x30\xe7\x15\x2b\x61\x2d\xb9\x30\x90\x4b\xa5\xd0\x5e\xb3\x59\x63\x34\x52\xc0\xfd\xb0\x75\x9b\x79\xfd\xec\x90\x56\x2e\xe0\x72\xf6\xdf\x67\xcf\x61\xbb\xe2\x25\x06\x39\x42\xa9\x73\x1f\x98\xb8\xb6\x7b\xfe\x91\xe8\x1a\x5c\x3e\x87\x6b\x58\x0c\xa5\xf9\xe5\x6c\x96\xcd\x26\xbd\x22\x16\x8e\x75\xfb\xb8\x5f\xd1\x68\xf8\x81\x6d\x18\x2f\xd9\xbc\xc4\x1f\xda\x57\xc9\x81\x11\x00\xa1\xf1\x78\x68\xf8\x0c\xc9\x4f\x90\x3b\x74\xff\xc9\x25\xe1\x01\xf8\x76\xc5\xec\xbe\xa1\x49\x70\xf6\xff\x9f\x2a\x78\x12\x16\xd5\xdd\x04\x6d\xfc\x05\x79\xde\x64\x61\x3a\x5d\x36\xd0\xb4\xd5\x2d\x25\xbe\x63\x79\x6e\x4e\xc3\xac\xe7\x0d\x2a\x88\xee\x81\x91\xc4\x7e\x04\x3b\x34\x68\x38\x1d\x18\x77\x51\xee\xb9\xd3\x08\x0f\x22\x9a\x2f\x35\x2b\x0b\x72\xe6\xc3\x1f\x06\x12\xdb\xc4\x0d\xbe\xef\x6e\x3b\x32\x54\xc0\xe0\xc7\xae\x8d\xbb\xa9\x71\x00\xd4\x06\x36\xbd\xe9\x87\xcb\x9a\xb0\x7c\x4e\xd2\x34\x5f\x29\x0e\xe5\x4c\x52\xa1\x5b\x98\xc5\x7f\xda\x88\x80\x51\x6a\xd3\x00\x97\xe4\xa3\xd5\x1e\x6e\xae\x33\x2d\x91\x75\xbe\x1e\x07\x8a\xe9\x57\xe4\x3d\xa9\xd2\xb5\xf0\x59\x99\x72\x7e\x22\x74\x9d\x3d\x0c\x27\xdc\xfc\xe5\xf4\x9b\x89\x64\x08\xa4\x3e\x69\x2c\x26\x49\x79\x8f\x46\x3a\x82\x5b\xfb\x31\xdb\xce\xd4\x28\xf9\x99\xf8\xb7\xab\xf1\xf1\x39\x73\x7f\xc8\x97\xc8\xe3\x97\xdd\x90\xb8\xc5\xac\x6d\xcf\x03\x5f\x30\x2e\xb3\x19\x19\xe5\x12\xde\xcd\x6d\xb8\x5d\xb6\xa0\x5e\x4a\xeb\xd0\xb4\x7c\xe6\xa8\x48\x05\x33\xf8\x36\xa7\xc0\x3f\x10\x7d\xa3\x34\x60\x8a\x8a\x0b\x78\xf1\xcc\xfd\x1f\x8e\xce\xe7\xae\xf1\x24\x95\x21\x74\x3f\x9a\x6d\x70\xfc\xe2\x99\x3d\x7b\x01\x46\x5e\xc1\xd4\x33\x0a\xff\x12\x88\xb2\xa4\x42\x82\x3f\x8e\xe0\x7f\x01\x00\x00\xff\xff\x43\xd5\x73\x05\xcb\x23\x00\x00" +var _flowstoragefeesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5a\xdd\x6f\xdb\x38\x12\x7f\xf7\x5f\x31\xb7\xc0\xdd\xda\xbd\x54\x76\x80\x45\x71\x08\x9a\x03\xd2\x6d\xb3\x28\xae\xdd\x1e\xda\xf4\xf6\xa1\xe8\x35\xb4\x34\xb6\x89\x4a\xa4\x41\x52\x76\x8c\xa2\xff\xfb\x62\xf8\x25\x51\x92\xbf\xb2\x40\xf5\x52\x47\x22\xe7\x7b\x86\xbf\x19\x76\xfa\x64\x04\x4f\xe0\x6e\x85\x70\x5b\xca\xed\x07\x23\x15\x5b\xe2\x2d\xa2\x06\x5d\x31\x65\x20\x97\xc2\x28\x96\x9b\x11\xd8\x85\x37\x02\x58\x9e\xcb\x5a\x98\x9f\x35\x68\xb7\x1a\x72\xb6\x66\x39\x37\x3b\x28\xd0\xa0\xaa\xb8\x40\x0d\xf5\x1a\x8c\x84\x95\xdc\x42\x55\xe7\xab\xb8\x54\x0a\xc8\x57\x8c\x0b\xe0\x06\x72\x26\xa0\xd6\x98\x81\x25\xdc\xa7\xc6\x35\xe4\xac\xcc\xeb\x92\x19\x2c\x60\xbe\x83\xaa\x2e\x0d\x5f\x97\x3b\x2e\x96\x60\x56\x08\xac\x22\x41\x40\x2e\x40\xa1\x46\xb5\xc1\x02\x16\xa5\xdc\xc2\x96\x9b\x15\xdc\x37\xba\x64\x9e\xf4\x5b\x5c\xb2\x17\x3b\x83\xfa\xbf\xa8\xde\xfb\x1d\xb7\x6f\xde\xfd\x71\x1f\x4c\x50\x71\xc1\xab\xba\x6a\x11\xb6\xf4\x8c\xfc\x8a\x42\xb7\x98\x48\x35\x28\xed\x7d\xc7\x84\x99\xa7\xe7\x5f\x39\x96\xcc\x70\x29\xee\xc1\xac\xb8\xa6\x3d\x6b\xc6\x0b\x28\x6a\x45\x3a\x79\xcb\x42\xae\xd0\xae\xba\x20\xa5\x49\x51\xfb\x42\xaa\x8c\xe4\xb4\xc6\x32\xf6\x35\x8a\x82\x64\x64\x65\x09\x46\x31\xa1\x59\x4e\xbb\xf4\x05\x30\xb1\x8b\xc4\xcc\x8a\x19\x58\xb1\xc2\xbe\xdc\xb0\xb2\x46\xf2\x80\x58\x62\x01\x5c\x10\x19\xde\x28\x43\xb4\x57\x4c\x77\xde\x46\x15\xf3\x15\xe6\x5f\xb1\x00\xb6\x64\x5c\x68\xd3\x59\x56\x6b\xfa\x24\x0a\xff\xba\x22\x2f\x37\xe6\x83\x0d\xab\x4b\xd3\xde\x1a\xad\xad\x1a\xbb\x58\x0d\x5f\x2f\x12\x05\x16\x8c\x97\xda\xd9\xcb\x0a\x60\xf7\xb6\xf4\x85\x2d\x2f\xed\xa2\xc6\x3c\x31\x48\xa1\x92\x1b\x2e\x96\xd3\x02\x4b\x34\x64\x62\x6e\xbc\x9b\xee\x48\xa8\xec\x7f\x24\xd4\x3d\x49\x20\x6b\x95\x23\x91\x2a\xe9\x2f\x12\x95\x28\x39\x0b\x25\xdc\x88\x13\x51\x9a\x63\xce\x6a\x8d\x2e\x10\x3d\x37\xbb\x7d\xc5\x36\x08\x42\xf6\xcc\x17\xc4\x9b\x8e\x46\xbc\x5a\x4b\x65\xe0\xb6\x16\x4b\x3e\x2f\xd1\xca\x02\x0b\x25\x2b\x98\x3d\xdc\x7e\xfc\xfd\xb7\xd7\x2f\xde\xbc\xba\x7b\xf7\x9f\x57\xbf\xdf\xbc\x7c\xf9\xfe\xd5\x87\x0f\x71\x43\x10\x3c\x2e\x7e\xf3\xee\x8f\x64\xe1\x88\xe5\x39\x6a\x3d\x66\x65\x39\x89\xb9\xdb\x4b\xed\x6f\xa3\x11\x00\xc0\x74\x0a\xaf\x2a\x6e\x28\xbb\xb6\x2b\x14\x9d\x9c\xea\xb9\x9f\x35\x66\xa5\x20\x59\xa3\x6a\x52\xe2\xb6\x71\xb4\x8b\x2e\x6d\x39\xb4\xa5\xc1\x0d\x0a\x03\x1f\x0e\xa7\xe2\xaf\x2e\x34\xc7\x5f\xe0\x48\xce\x5e\xc1\xc7\x5b\xfe\xf0\xec\x97\xc9\x7e\x55\xfa\xd9\x7c\xdb\xca\x66\x9b\x17\x2d\x95\x04\x62\xa1\x6d\xcd\x22\xff\x1d\xce\x75\xaf\x62\xb6\x47\xc7\xb7\xfb\xd2\xbe\xd1\x6e\x6f\x65\xe8\xeb\xf5\x12\x17\xb6\xa2\xf6\x6a\x69\x14\x07\x37\xa8\x76\xa7\xf8\x26\x0b\x34\x0b\xa2\xc9\x6d\x3c\x73\x0d\x5b\x45\x96\x13\x76\x57\x2d\x78\x53\xf8\x28\x55\x91\xd9\x22\x43\x06\xe5\x62\x83\x4a\xe3\x05\x04\x32\x5a\xd2\x7b\x85\x44\x44\x48\x28\xa5\xd6\xb4\x76\xad\x30\xe7\x9a\x88\x87\xfa\x4d\x09\x13\xc4\xb6\xa1\x4b\xe4\x1b\x3a\xf3\xda\x34\x84\xfa\x54\xac\x47\xdb\xa4\xac\x70\x24\xad\xa7\xd9\x77\xc4\x86\xa9\x53\x23\xa8\x67\xe8\x13\x63\x27\xb5\xfa\x19\xe1\x13\xbd\x60\x0b\x5d\xe2\xb7\x12\xb5\xe5\x2f\x5c\xbd\xf3\xdc\x23\x35\x7f\x1c\x84\xba\x2f\x76\x49\x65\xe2\x06\xd6\x4c\x19\x9e\xf3\xb5\x3d\x31\xb9\xb8\x18\xaa\x95\xb1\x58\x0e\x98\xec\x68\x58\x46\x63\x51\x8d\x2d\x68\xb9\x36\x8a\xce\xa6\xa6\x86\x5a\xe3\xd0\xd9\xee\xb2\xc4\x8a\xb0\x66\x8a\x55\x04\x0e\x74\x88\xa5\xc3\x68\xa3\x2f\x5d\x24\x7f\x93\x70\xf5\x95\xcc\x0b\xe5\xf2\x4b\x3f\xa2\x90\xf9\xbf\xf5\xcf\x8d\xb1\xc3\x36\x8a\x95\x2c\x72\x69\xcb\xb4\xa8\x05\x68\x34\x47\x4a\xda\x19\xb5\x0c\xbe\x45\x3e\xf4\xf0\x45\xd7\x4c\xc7\x90\x0c\x5c\x5f\x1f\x63\xd6\xe1\x01\xa0\xd0\xd4\x4a\x24\x2f\xbf\x27\x7f\x9d\x2d\xc3\x31\x11\x12\xea\x58\xf1\x93\x4f\x85\x23\x74\x27\xa3\x46\x81\x7d\x61\x31\x90\xd8\x24\x73\x27\x24\xba\x79\x7c\xd0\xff\x7b\xcb\xfd\x49\x75\xfe\xb8\xcf\xf7\xd2\x20\x6f\xef\xff\xf8\x97\xfd\x7c\x80\xef\x7e\xb6\x7d\xdf\x1e\x3d\x0d\xf7\xd2\x1a\xf4\xa7\x77\x40\xa8\x14\x13\xa0\x83\x6c\x3c\xf9\xe6\x74\xf9\x1e\x0a\xd4\xb4\xe9\x1d\x6e\x9c\x63\x7f\x0d\xe9\xef\x0c\xe1\xc2\xa1\x57\x1b\x64\xbb\x26\x07\x5a\x91\xe6\x7b\xbf\xb5\xc2\x25\x9b\x53\x04\xc6\x2f\xaf\x17\x09\x12\xa4\x20\x12\x92\xce\x59\x0b\x7b\xe7\xac\x64\x22\x47\x2a\xd1\x04\x63\x69\x09\x81\x65\x0d\x2c\x7e\x92\x0b\x98\x65\x33\x88\xf9\xd1\x0d\xb4\x7d\xea\x8c\xbf\x04\xa6\x37\x45\xa1\x50\xeb\x2b\xf0\x3f\x26\x21\xc6\x5a\xa1\x40\x45\x3e\x70\xbc\x26\x86\xa3\x56\xe0\x95\x18\x25\x7d\x8f\x0b\xb8\x86\x25\x1a\xcf\x6d\x9c\xf2\x98\x24\x6e\xce\x96\x68\xc5\x99\xf3\x92\x9b\xdd\xf3\x7f\x74\xf0\xf5\xb7\x04\xe7\x66\x2f\x1c\x87\xef\xff\x1e\x4f\xd7\xf5\xbc\xe4\xf9\x74\x11\xd6\xfb\x4f\x93\xbf\xa5\xe4\xe7\x52\x29\xb9\x1d\x77\x53\x85\x9e\x46\x97\x46\xf0\xcc\xff\x1c\x8a\x1e\xe7\x7b\xd0\x58\x2e\x32\xaf\x92\x67\x7a\x27\xbd\xaa\x3e\x0e\xa3\x7d\x3d\xb5\xc9\xb1\xf8\xd2\xa7\x07\x18\xcc\x99\xc9\x57\xf6\xa7\xdf\x7b\x92\xcb\xf5\x5e\x9f\xa3\xbe\x82\x4f\xfe\xf7\xe7\xc9\x15\x7c\x72\x8e\xff\xdc\xb2\x18\x39\xd7\x0b\xc1\xed\xf2\xb0\xe4\x1a\x3e\x7d\x8e\xab\x08\xaf\xa4\xa4\xa9\x07\xea\x32\xeb\x38\xa2\x45\x7a\x47\xd5\x9f\x8c\xbb\x37\x5c\x0f\x05\x52\x23\x5f\xc6\xd6\x6b\x14\xc5\x38\x90\x6d\x97\x82\x8e\x2f\x9b\x4d\xa9\x87\x5a\xd1\x1b\x0d\x77\x2b\xd5\x5d\x83\x86\x82\xa7\x6d\x57\xf9\x58\xa7\x4d\xa7\x70\xe7\x7b\x79\xdb\x01\x1b\xe9\xdb\x54\x4e\x7b\x06\xb1\x57\xec\x1d\x65\xda\xe9\xce\x91\xc0\xad\xdc\xa0\x1a\x94\xa2\x61\x47\x80\x6a\x87\x8a\x78\x32\x01\xf8\x90\xe3\xda\x72\x60\xda\x36\xb8\x43\xb3\x89\x02\x15\xb7\x80\x94\xd0\x37\x2d\x0a\x99\x53\x71\x51\xfb\xa3\x91\x3d\xd8\xa3\x71\x2d\xb5\xa6\x74\x4d\xdb\x5e\x02\x69\x41\x82\x71\xef\x0b\x77\xe5\x0f\x1f\x30\xaf\xed\x5b\x5c\x2c\xa8\x63\x25\x09\x4d\xef\x13\x7d\x29\x79\xc5\xcd\x05\xb0\xec\x6b\xc6\xb2\x2b\xc8\x65\xb5\xae\x8d\x3b\x5e\x3a\x9f\x96\x04\x8c\xe9\xd5\x64\x30\x4b\xce\x72\xf3\xf8\x40\xde\x5c\x38\xab\xc6\xfa\x79\x41\x16\xb9\x7b\xa0\xb3\x30\x9e\xd6\x3f\x3a\xb5\xf6\xd7\xeb\xbf\x58\xb3\x7f\x40\xdd\x3e\x56\xbb\xbd\x06\x1d\x9b\x5c\x5f\xfb\xe0\x1e\xde\xe0\x23\x90\xa7\xc7\x2d\xd7\xbe\xcd\xd8\xa1\xba\x80\x02\x8b\x3a\x37\x27\xc6\xb4\x4d\x08\x5a\xda\x3d\x35\xba\xcf\xa1\xa3\x26\xd3\xcc\xd4\xca\x36\xa7\x1f\xea\xb9\x05\x26\xe3\x18\x3c\x7d\xc3\xd3\xf3\x1d\xb0\xd4\x78\x40\xcb\x93\x8e\xb6\x84\x62\x07\xdb\x1d\x29\xad\x8f\x39\x03\x27\xf0\x88\x3a\x7c\x1a\x8f\x83\x05\x38\x92\x6a\x60\xfa\x56\xd6\x65\xe1\x50\xba\x9d\xf7\x2e\xf9\xc6\xcf\x7d\xec\x74\xa0\x05\xab\x5a\x81\xd2\xef\x2b\xa9\x82\x9c\x68\x84\x2f\x81\x68\xab\x1a\xf4\x00\x96\x3b\x77\x80\xf9\x68\x76\x23\xb1\xae\xd7\xf8\x22\xca\xf7\xdc\x1d\x97\xa7\xc2\x78\x17\xfa\xcf\xdd\x8c\xa0\x19\xa0\x5a\x07\xa4\xb5\x21\xbc\x6c\x95\x8c\xb4\x2b\xf2\x0b\xe2\x39\xe0\x86\xeb\x1c\x0b\x67\xcf\x08\x71\x6d\x7f\x6c\x6d\x3a\x88\xa2\x5c\x11\x38\x0d\x34\xc1\x8d\xeb\xba\xb8\x68\x8f\x53\xc2\xc7\x61\x70\xdd\x75\xd6\x30\xbf\x2f\xbe\xa1\x3b\xe4\x1a\x2f\xb5\x5b\xd8\xca\xd8\xb7\xfe\x5a\x61\x7c\x66\xa3\xbb\x5f\xb9\x6e\x7b\x10\x55\xeb\x6a\xdd\xeb\x26\x53\xb5\xee\x24\x6d\x38\x49\xb9\xc7\xcd\x0a\xa8\xe3\x60\xba\x4f\x2d\x0d\xa0\x66\xc9\x40\xf6\x4f\xa7\x4d\x71\xed\x8d\xee\x92\x55\xb5\x31\xe1\xe6\xc6\x8f\xd8\xe7\x8c\x70\x92\x30\x12\xee\x07\xdd\x7a\x0f\x15\x5f\xae\x0c\x08\x69\x60\xc7\xb1\x2c\x5c\x71\x60\x55\xa0\x30\xec\x5b\x98\x9e\x6b\x8b\x8e\x27\x73\x29\x36\xa8\x5a\x48\xca\x22\x3b\x7b\x52\x7c\x7c\x2d\xcc\xb3\x5f\xc0\x12\x21\xac\xe7\x4d\xf7\x36\x78\x7c\xb8\xc2\x78\x82\x6e\xb3\x97\xcb\x92\xb8\x93\x8e\x40\xdc\xdf\x4c\x8b\xae\x3c\xaf\x3d\x55\x46\xb3\x05\x06\xba\x41\xaa\x46\x9e\x31\xe5\xb0\xac\x8d\x45\x93\x64\xdb\x49\x82\x56\x08\x28\xb8\x95\x61\xa6\x02\x7f\x87\xcb\x99\x7f\xac\xbf\x1d\x6f\x78\x42\x01\xe0\x9e\xcb\x56\xa8\xfc\xb3\xbb\x7d\x3a\xb8\xbd\x2d\x70\x81\x39\xaf\x58\x09\x6b\xc9\x85\x81\x5c\x2a\x85\xf6\x18\xce\x1a\xe3\x91\x02\xee\x87\xad\xeb\xcc\xeb\x67\x87\xc0\x72\x01\x97\xb3\xff\x3f\x7d\x06\xdb\x15\x2f\x31\xc8\x11\x4a\xa0\xbb\xd8\xe2\xda\xae\xf9\x57\xa2\x6b\x70\xfd\x1c\xae\x61\x31\x94\xf6\x97\xb3\x59\x36\x9b\xf4\x8a\x5b\xd8\xd6\xed\xfb\x7e\x43\xa3\xe1\x27\xb6\x61\xbc\x64\xf3\x12\x7f\x6a\x1f\x35\x07\x46\x07\x84\xda\xe3\xa6\xe1\x3d\x24\x3f\x41\xf3\x30\x35\x48\x0e\x0f\x0f\xd4\xb7\x2b\x66\xd7\x0d\x4d\x98\xb3\x1f\x37\x8d\xf0\xa4\x2c\xfa\xbb\x09\x5a\xf9\x03\xf4\xbc\x89\xc4\x74\xba\x6c\x20\x6c\xab\xbb\x4a\x7c\xc8\xf2\xdc\x9c\x86\x6d\xcf\x1b\x70\x10\xdd\x03\xa3\x8c\xfd\x48\x77\x68\x40\x71\x3a\x80\xee\xa2\xe1\x73\xa7\x18\x1e\x64\x34\x37\x42\x2b\x0b\x86\xe6\xc3\x17\x0f\x89\x6d\xe2\x02\xdf\xa7\xb7\x1d\x19\x2a\x62\xf0\x63\xd7\xc6\xdd\x14\x39\x00\x7e\x03\x9b\xde\xd4\xc4\x65\x4f\xf8\x7c\x4e\xf2\x34\xb7\x20\x87\x72\x27\xa9\xd8\x2d\x4c\xe3\xaf\x4e\x22\xb0\x94\xda\x34\xc0\x26\xb9\x1c\xdb\xc3\xcd\x75\xb2\x25\xb2\xce\xed\x75\xa0\x98\xde\x62\x1f\x49\x99\xae\xa5\xcf\xca\x98\xf3\x13\xa2\xeb\xf4\x61\x98\xe1\xe6\x36\xa7\x9f\x54\x24\x43\x20\xf5\x51\x63\x31\x49\xca\x7d\x34\xd6\x11\x7c\xdb\x8f\xdd\x76\xc6\x46\xc9\xcf\xc4\xc9\x5d\x8d\x8f\xcf\xab\xfb\x43\xc2\x44\x1e\xff\xd9\x0d\x9b\x5b\xcc\xda\xf6\x3c\x70\x23\x72\x99\xcd\xc8\x28\x97\xf0\x76\x6e\xc3\xee\xb2\x05\x05\x53\x5a\x87\xa6\xee\x33\x47\x45\x2a\x98\xc1\xd7\x39\x25\xc0\x81\x28\x1c\xa5\x01\x53\x54\x5c\xc0\xf3\xa7\xee\xff\x92\x74\xae\xd1\xc6\x93\x54\x86\xd0\x2d\x69\xb6\xc1\xf1\xf3\xa7\x76\xef\x05\x18\x79\x05\x53\xcf\x28\xfc\x4b\xe0\xca\x92\x0a\x89\xfe\x7d\x04\x7f\x06\x00\x00\xff\xff\x46\xde\x1f\xaf\x53\x24\x00\x00" func flowstoragefeesCdcBytes() ([]byte, error) { return bindataRead( @@ -199,11 +199,11 @@ func flowstoragefeesCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowStorageFees.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xca, 0xe5, 0x3e, 0xe9, 0xc1, 0x9f, 0x75, 0x26, 0x94, 0xf8, 0x51, 0x38, 0x80, 0xe7, 0x29, 0xef, 0xfb, 0x28, 0xf5, 0x52, 0xc5, 0xef, 0xe8, 0x56, 0xb2, 0x6a, 0xed, 0xe8, 0xd4, 0xdd, 0xc5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x54, 0xd9, 0xce, 0x50, 0x5d, 0xbe, 0x5, 0xc7, 0xca, 0x98, 0xc6, 0x18, 0xa9, 0xe4, 0x39, 0xa2, 0xf2, 0x70, 0xe5, 0x75, 0x9f, 0x6, 0x2a, 0x82, 0x61, 0xaa, 0x97, 0x9d, 0xde, 0x63, 0x6d, 0x94}} return a, nil } -var _flowtokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x59\x4f\x73\xdb\xba\x11\xbf\xfb\x53\x6c\x73\x68\xe5\x79\xb6\xec\x43\xa7\x07\x8f\x93\x17\xa7\xb1\x3b\x99\xb6\x69\x27\xc9\x6b\xaf\x86\xc8\x95\x84\x86\x04\x34\x00\x28\x59\x2f\xe3\xef\xde\xd9\xc5\x1f\x02\x14\x29\xdb\x2f\x2f\xbe\x44\x24\x81\xfd\xfb\xdb\xdd\x1f\x10\xd9\x6e\xb4\x71\x70\xd7\xa9\x95\x5c\x34\xf8\x45\x7f\x45\x05\x4b\xa3\x5b\xb8\x7c\xb8\xfb\xe5\xe3\xdf\x3e\xbc\xfb\xc7\xed\x97\x7f\xfd\xfd\xf6\xe3\xcd\xfb\xf7\x9f\x6e\x3f\x7f\x3e\x39\xd9\x74\x0b\xa8\xb4\x72\x46\x54\x0e\xee\x1a\xbd\xe3\x3d\x57\x03\x11\xdf\x4e\x4e\x00\x00\x2e\x2e\xe0\x8b\x76\xa2\x01\xdb\x6d\x36\xcd\x1e\xf4\x92\xb7\x80\xa3\x45\x16\xa4\x02\x7c\x90\xd6\xa1\xaa\x90\xd7\x93\xf0\xad\x30\xe0\x68\xd3\x67\xde\x73\x05\xbf\xdc\xc9\x87\xbf\xfc\x39\x09\xbc\xdd\xa2\x72\xe0\xd6\xc2\x81\xb4\x80\xad\x74\x0e\x6b\xd8\xad\x51\x81\x5b\x63\x6f\x9b\xb4\x50\x19\x14\x0e\xeb\x24\x1a\x79\x2b\x5b\x68\x3f\x28\xe9\xa4\x68\xe4\xaf\x58\xcf\xa4\xff\x5d\x2a\x3c\x7d\x96\x46\xef\x88\x30\x08\x3b\xe9\xd6\xb5\x11\xbb\x10\x3f\x01\xff\x11\x5d\xe3\x46\x75\xff\x37\x2e\x9d\x89\x56\x77\xca\x45\x95\x67\xbc\xf5\x0a\x6e\xea\xda\xa0\xb5\x3f\xbf\xd4\x84\x1a\x37\xda\x4a\xfa\xe2\xf4\x51\x03\xde\xc7\x85\x07\x06\x38\xfd\x42\xf5\x0a\x77\xb9\x09\xad\x54\x53\x11\xff\x27\x7f\x1a\x68\x7c\xb9\x8b\xd6\x19\xbd\x9f\x50\xf1\xae\x33\xea\xb7\xa9\x10\xec\x08\x5b\x6f\xc0\xa0\xd5\x9d\xa9\x70\x1a\x43\xec\x8b\xf9\xab\xff\x36\x13\x4d\xa3\x77\x58\xdf\xfc\x56\xb5\x0b\x32\xfb\x39\x6a\xd9\xbf\xa4\xb6\xd7\xd0\x67\xfa\xe2\x22\x69\x15\xd5\x1a\x3a\x8b\x06\xac\xd3\x06\x2d\x08\x05\x52\x59\x27\x54\x85\x54\x88\x5a\x35\x7b\xae\x18\xde\x4c\xb5\xe8\xd6\x28\xfd\x6a\xb1\xc2\x54\xbf\x6b\x84\x65\xa7\x2a\x27\xb5\xaf\xd8\x7e\x8b\x50\x35\xac\xf4\x16\x29\xe6\xb0\xf0\xc2\x36\x06\xf9\xfd\x46\x5b\x47\xb5\x58\x4b\xde\x18\xa5\x49\x35\x68\x14\xb1\x6e\xf7\x9c\xdd\x4a\x34\x0d\xd6\xf3\x5c\x77\xb5\xc6\xea\xab\x85\xb5\xd8\x6c\x28\x5e\x0e\x4c\xa7\x9c\x6c\x91\x77\xe2\x16\x0d\x88\x64\x1f\x07\xae\x10\x11\x25\x7d\x0a\xa1\xa5\xef\xca\xbb\xbe\xc0\x18\xe4\xe8\x15\xb5\x0e\x7c\x70\x14\x9c\xa2\x93\x70\xe6\xc8\xc6\x28\xcd\x03\x71\x29\x15\xef\x3d\x03\xab\xe9\xb3\xe1\xc4\x29\x0d\x3b\xb1\x87\xa5\x26\xc3\x5a\xd1\xc8\x4a\xea\xce\xfa\x44\x38\x1d\x54\xfa\x00\xa6\xa8\xe8\x2e\x28\x95\x0a\x84\x34\x73\xb8\x01\xbb\xc1\x4a\x8a\x26\x00\xad\x87\x86\x42\xac\x2d\x09\x5a\xf4\x26\x38\xcd\xc0\x8d\xd2\xfa\x8a\x2c\xa2\x40\x28\x4a\x62\x58\xff\xa0\x69\xcf\xff\x6d\xf4\x56\xd6\x68\xce\x06\xef\x3f\x61\x85\x72\x7b\xf8\xfe\x9d\x68\x18\x4c\xa1\xd9\x07\xf5\x6b\xdd\x90\x85\x6b\x84\x45\xf8\xae\x97\x20\x38\x00\x36\xd8\x95\x96\xc7\x7e\x1f\x56\x96\xbd\x3e\x41\x26\x36\xea\x42\x28\x21\x21\x7a\xc3\x41\xa5\xfc\x13\x30\xd2\x5e\xda\x38\x1b\x48\x3e\x85\x6f\xe9\x3b\xfd\x59\x6c\x96\xf3\x28\xf2\x75\x14\x9e\x96\x3c\x16\x96\xc4\x0e\x9f\xbd\xcb\x3f\xdf\x45\x14\x7a\xbc\x88\xaf\xb1\xe6\x1c\xae\x08\xa6\xdc\x1d\x40\xf0\x4b\x61\x56\x5d\x8b\x21\x67\x11\x55\xaa\x4e\x2a\xac\x17\x12\xf6\xf0\x40\x49\x75\x37\xcf\x37\x7d\x70\x01\x52\x36\xf4\x12\x87\x34\xd2\x85\xd9\x87\x22\x8d\x6d\xa7\xb3\x1e\x29\x94\x9e\x5c\x00\x89\x6d\xb5\xc2\x7d\x5a\xb9\x40\xa9\x56\xe0\x8c\x50\x76\x89\xc6\x60\x3d\x27\x2d\x06\x5d\x67\x94\x4f\xac\xc2\x5d\xb3\xcf\x85\xc4\x42\x0a\x2a\x75\x51\x4e\x2c\xd7\x97\x25\x55\x8a\x74\x5c\x83\x8b\x6c\x5c\xe5\xa2\xb0\xb1\xb8\xa3\x62\x9a\x8f\x85\x99\x00\xb3\xec\x54\x8a\xd3\xb0\xd5\x5f\xc1\xdb\x12\xa3\xde\xa2\xa3\x49\x2f\x1e\xcf\x43\xcc\x8b\x0d\xd4\xb2\x27\x47\xb7\xff\x37\x8e\x6e\x16\xa6\x77\x0a\xcd\xcf\x73\xe1\xe7\xe8\x69\x21\xcb\xc7\x11\xae\xcf\xf3\x4e\xd0\xc3\xd4\x4b\x3b\x9d\x40\x60\x88\xd8\x4b\x00\x18\x72\xa2\x17\xff\xc3\x6a\x88\x3e\x86\x9c\xa8\x6b\x5b\xd4\x9b\xb3\xa9\xc8\x42\x26\xb3\x42\xa6\x47\x76\xcf\x8e\x83\x51\x5a\x08\xd3\x90\x36\x87\x69\xcd\xbb\x2c\x29\xf4\xc6\x2c\xb0\x12\x9d\xc5\x1e\xd2\x45\x95\x91\x8d\x19\x8c\x09\xb0\x68\xa2\xee\xd0\xd8\x78\x34\xf0\xd6\x3f\xf5\xd6\xae\x45\xe1\xc8\x02\x51\x11\x08\x6d\xd7\x62\xcd\xae\x72\x93\x5e\x6a\x1e\x34\x01\x81\x81\x4d\xcc\x0f\x10\x16\x42\x3d\xf3\x69\x1d\x43\xd5\xb0\x97\x34\xe8\x60\xcb\xfe\x5d\x9f\x07\x0e\x68\xff\x00\x6f\x13\x47\x9e\x97\xae\x3e\x85\xc4\x9f\xbc\xb0\xf9\xb0\x27\x0d\x00\x79\x48\xe5\x8a\x6d\x9e\xd1\x3d\x89\xca\x62\x0f\xbc\x86\xcb\xf9\x65\xf1\x3d\x26\x72\x5b\xb8\x90\x81\x33\x2c\x98\x0d\x83\x22\x97\xa5\x57\x6f\x48\xf4\x60\x0d\xfd\xf5\x51\xca\xb8\x3f\xbc\x9e\x78\x7f\x5e\x08\x2d\x84\x3d\x9e\x94\xbf\x1e\x13\x49\xf2\x05\x77\xdb\x6e\xdc\x7e\x8c\x2f\x95\xd5\x53\x36\x55\x0f\x5b\x6a\x3a\x20\xf2\x6a\xf8\x15\x8d\x4e\xa4\x40\xd5\xa9\x49\xca\xbe\x09\x8a\xa6\xa1\x76\x1a\x9a\x21\x8d\x76\xa6\x02\x6d\x67\x7d\x53\xa4\xa9\x6f\x13\x83\xc9\x85\x31\x6d\x63\x21\x5e\x6c\xea\xaf\x43\xaa\x46\x2f\xb4\xa9\x3d\xc1\xe0\xea\xf3\xdf\x93\xb0\xaa\xe2\x31\xe2\x59\x83\x58\x34\x5c\xd8\xc6\x4f\xf5\x08\x74\x1b\x18\x48\x98\xd1\xe0\xf6\x1b\x3c\xe0\x0f\x54\x18\xc3\x30\xce\x9e\x6e\xba\x4f\xf4\xbc\xcb\xf9\xe5\x69\x9e\xab\x82\xa9\xdc\xd4\xad\x54\xd2\x3a\x23\x9c\x36\x99\xcc\x94\xd0\x8f\xb8\xf3\x24\xe9\x59\x5d\x31\xe5\x35\xcb\xd6\x28\xf7\x3f\x36\x7d\x06\x8a\x27\xf8\xff\x15\xbc\x0d\xec\xed\xdb\x61\xf1\x1e\x3d\x40\x14\x8f\xc7\xc7\xc7\xb8\x05\x13\x02\xca\x61\x92\xbc\xf0\xa7\x8a\xef\x0c\xdf\xe0\x0c\xf3\xac\xf0\x79\xc5\x0c\x20\xff\x73\x2c\x52\xc3\x33\xcf\xb1\x68\x44\x81\x93\x3d\x20\x43\xca\xe1\xe1\x20\x0e\x49\x3f\x3e\xb9\x0a\x04\xa1\x2f\x16\x90\x3f\x3c\xd0\x3c\x8a\x94\xfb\x59\x5c\x3b\x81\x60\x48\xbb\x02\xbb\xa3\xba\xf3\x07\xdc\x78\xd0\x88\x58\x2c\x87\x69\xe2\xf8\x90\x31\xe7\x51\xe8\x15\x9a\x68\xdb\x97\x92\x76\x1f\xcb\x30\x2d\xb7\x99\x5f\x67\x4c\x10\xc8\xaa\x36\xf6\x34\x97\x5d\xe9\x9c\x0d\x19\x6c\xc6\x13\xdb\xa9\x26\x78\x0c\x1c\xbd\xb9\x63\xdc\xae\x9c\xa5\x03\xb8\xd0\xd9\xf3\x70\xb2\x84\x28\xbf\x09\x62\x66\x97\xa7\x57\xf0\xca\xc7\x2b\xdc\x56\xf8\x66\xbc\x40\x58\x31\x8a\x0c\x05\x42\x71\x6f\x7f\x35\x25\xed\x3a\x0c\xeb\x41\xf8\x27\xe4\x36\x68\xad\x17\xca\x69\x0f\x29\xf5\xa2\x5e\x4d\x4c\x2f\x78\xf1\x50\xfc\x69\x8c\xba\x1e\x5a\x09\x63\xa6\x3f\xc9\x7b\x07\x97\x37\x43\x9a\x0a\xdf\xc5\x6c\xf9\xa4\x36\xde\x44\xc7\xa8\xfb\xd0\x9d\xe2\x79\xb2\xf4\xb3\x2e\xf7\xbd\xa5\x4f\xbd\xee\xc9\xb2\x4f\x1d\xad\xe0\xa4\x9d\x51\x2f\x28\xc6\xc0\xaa\x7a\x1a\x1f\x2f\x70\xce\x00\x97\x4b\xac\x9c\xdc\x62\xb3\x67\xa9\x7c\x66\xeb\x09\xf2\x84\xf8\x8f\xda\xe1\x95\xe7\xf4\x9e\x51\x64\x57\x6b\xa2\x73\xba\x15\x4e\x52\xb5\xee\xc1\x76\x0b\xbe\xfd\xc0\x3a\x1d\x3f\x8b\xfe\x95\x5f\xeb\x16\xb7\x42\x6c\x73\x57\x39\x6d\x8e\xd6\x79\x1f\x89\x1f\x4b\xb1\x69\x8b\x88\x48\x99\x66\xd4\xe3\x04\x77\x50\x04\x83\xeb\xc5\x43\x44\x67\x88\xf3\x98\x26\x0c\xdd\x78\x08\x5d\xc1\x4d\xe7\xd6\xe1\x21\x77\x8c\x31\x5d\x16\x38\xd1\xef\x3c\xda\x7e\xfa\x65\x41\x66\x2a\x3a\xec\xc5\xd9\x24\x61\xfe\x28\xb6\x48\x4c\x54\xaa\xe2\x4e\x6f\x90\x8f\x22\xa4\xe3\x95\x3b\x34\xb0\xf7\x38\xf7\x6f\x4e\xfa\x66\xd7\xe7\x2c\xcc\x1f\x3b\x2e\x82\xde\x8b\x65\x4c\x90\xcf\xea\x98\x6f\x82\x90\xd1\xc8\x0a\x2a\xb1\x11\x0b\xd9\x48\xb7\x8f\xe3\x83\x89\x70\x9d\xdf\x67\xf0\x05\x1e\x3e\x6c\xb4\x45\x3b\x9c\xaa\xf7\x81\xd0\xde\x43\x8b\x6e\xad\xe9\xd4\x67\x74\xb7\xf2\xe1\xba\x8f\x77\x59\xf7\x7c\x2f\x63\x96\x62\x9c\xaa\x14\x8e\x35\x52\x7d\xbd\xfe\xe3\x00\x64\xdf\xc6\xef\xc8\x1e\xdf\xcc\x0a\xf4\x5c\x78\xaf\xfa\x08\xa4\xcb\xb4\x62\x99\x13\x66\x85\x6e\x32\x62\x69\xed\x0f\x0e\x5d\x48\xf9\x3d\x2c\x25\x36\x83\xc8\xbd\x8b\xdf\x7e\xdf\xc0\x05\xb1\x4f\xc6\x2d\xac\xfb\xee\xb0\x71\x3f\xe0\xd6\xde\xe3\xbd\x38\x63\xcc\x8e\xc3\x9b\xdf\x4d\xc1\x9b\x05\x95\x39\xba\xa5\xf6\x21\x54\xb8\xc0\xe7\x14\xd8\xb5\xde\x65\x64\x2f\xdd\x33\xef\x84\xcd\x6e\x3b\xfb\x5b\xb1\xac\x03\x1d\xf9\x5f\xab\xf1\x2a\x7d\x3c\x79\x3c\xf9\x7f\x00\x00\x00\xff\xff\x67\xe7\x03\x15\xe5\x1b\x00\x00" +var _flowtokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x59\x4f\x73\xdb\xba\x11\xbf\xfb\x53\x6c\x73\x68\xe5\x79\xb6\xec\x43\xa7\x07\x8f\x93\x17\xa7\xb1\x3b\x99\xb6\x69\x27\xc9\x6b\xaf\x06\xc9\x95\x84\x86\x04\x34\x00\x28\x59\x2f\xe3\xef\xde\xc1\xe2\x0f\x01\x88\x94\xac\x97\x97\x5c\x22\x92\xc0\xfe\xfd\xed\xee\x0f\x30\xef\xd6\x52\x19\x78\xe8\xc5\x92\x57\x2d\x7e\x91\x5f\x51\xc0\x42\xc9\x0e\xae\x9f\x1e\x7e\xf9\xf8\xb7\x0f\xef\xfe\x71\xff\xe5\x5f\x7f\xbf\xff\x78\xf7\xfe\xfd\xa7\xfb\xcf\x9f\xcf\xce\x58\x5d\xa3\xd6\x33\xd6\xb6\xe7\x50\x4b\x61\x14\xab\x0d\x3c\xb4\x72\x4b\x7b\x6f\x0a\x51\xdf\xce\xce\x00\x00\xae\xae\xe0\x8b\x34\xac\x05\xdd\xaf\xd7\xed\x0e\xe4\x82\xb6\x80\xb1\x8b\x34\x70\x01\xf8\xc4\xb5\x41\x51\x23\xad\x4f\x95\x6c\x98\x02\x63\x37\x7f\xa6\xbd\x37\xf0\xcb\x03\x7f\xfa\xcb\x9f\xa3\xe0\xfb\x0d\x0a\x03\x66\xc5\x0c\x70\x0d\xd8\x71\x63\xb0\x81\xed\x0a\x05\x98\x15\x0e\x36\x72\x0d\xb5\x42\x66\xb0\xd9\x53\x81\x24\x82\x2c\xd6\x1f\x04\x37\x9c\xb5\xfc\x57\x6c\x66\xdc\xfd\xce\x15\x9f\xbf\x48\xb3\x73\x8c\x29\x84\x2d\x37\xab\x46\xb1\xad\x8f\x2b\x83\xff\xb0\xbe\x35\x07\x6d\xf8\x6f\xd8\x32\x63\x9d\xec\x85\x09\xaa\x2f\x48\xc4\x0d\xdc\x35\x8d\x42\xad\x7f\x3e\xd5\x94\x06\xd7\x52\x73\xfb\xc5\xc8\x17\x19\xf2\x3e\x6c\xd8\x33\xc4\xc8\x13\xcd\x10\xb8\x4d\x4d\xe9\xb8\x38\x96\x89\x7f\xd2\x92\x42\xf3\xe9\x2e\x6b\xa3\xe4\xee\x88\xaa\x77\xbd\x12\xbf\x4d\x15\x23\xc7\xc8\x1b\x05\x0a\xb5\xec\x55\x8d\xc7\xb1\x46\xbe\xa9\xbf\xba\x35\xf6\x83\xdc\x62\x73\xf7\x5b\xd5\x57\xd6\xfc\x53\xd4\x93\xbf\x51\xfd\xa0\x69\x40\xc4\xd5\x55\xd4\xce\xea\x15\xf4\x1a\x15\x68\x23\x15\x6a\x60\x02\xb8\xd0\x86\x89\x1a\x6d\x21\x4b\xd1\xee\xa8\xd2\x68\xb3\xad\x65\xb3\x42\xee\x56\xb3\x25\xc6\xfa\x5f\x21\x2c\x7a\x51\x1b\x2e\x5d\xc5\x0f\x5b\x98\x68\x60\x29\x37\x68\x73\x00\x95\x13\xb6\x56\x48\xef\xd7\x52\x1b\x5b\xc3\x0d\xa7\x8d\x41\x1a\x17\x45\xa3\x09\xf5\xbe\xa3\xac\xd7\xac\x6d\xb1\x99\xa7\xba\xeb\x15\xd6\x5f\x35\xac\xd8\x7a\x6d\xe3\x66\x40\xf5\xc2\xf0\x0e\x69\x27\x6e\x50\x01\x8b\xf6\x51\x00\x33\x11\x41\xd2\x27\x1f\x62\xfb\x5d\x38\xd7\x2b\x0c\xc1\x0e\x5e\xd9\x96\x83\x4f\xc6\x06\x27\xeb\x40\x94\x41\x6b\x63\x90\xe6\x00\xba\xe0\x82\xf6\x5e\x80\x96\xf6\xb3\xa2\x04\x0a\x09\x5b\xb6\x83\x85\xb4\x86\x75\xac\xe5\x35\x97\xbd\x76\x89\x30\xd2\xab\x74\x01\x8c\x51\x91\xbd\x57\xca\x05\x30\xae\xe6\x70\x07\x7a\x8d\x35\x67\xad\x07\xdc\x00\x11\x81\xd8\x68\x2b\xa8\x1a\x4c\x30\x92\x80\x1c\xa4\x0d\x15\x9b\x45\x21\x45\x53\x14\x47\x76\x14\xcd\x7f\xfe\x6f\x25\x37\xbc\x41\x75\x51\xbc\xff\x84\x35\xf2\xcd\xfe\xfb\x77\xac\x25\x50\xf9\xa1\xe1\xcd\x58\xc9\xd6\x5a\xba\x42\xa8\xfc\x77\xb9\x00\x46\x81\xd0\xde\xbe\xb8\xbc\x9c\x1b\x7e\x47\x3e\x33\x22\x84\x42\xa3\xcf\x84\x5b\x64\x04\xaf\x28\xc8\x16\x0f\x16\x28\x71\xaf\xdd\x38\x2b\x24\x9f\xc3\xb7\xf8\xdd\xfe\xd3\xd8\x2e\xe6\x41\xe4\xeb\x20\x3c\x2e\x79\xce\x2c\x09\x13\x22\x79\x97\x7e\x7e\x08\xa8\x74\xf8\x61\x5f\x43\x0d\x1a\x5c\x5a\xd8\x52\xd7\x00\x46\x2f\x99\x5a\xf6\x1d\xfa\x1c\x06\x94\x89\x26\xaa\xd0\x4e\x88\xdf\x43\x03\x29\xd6\xe1\x3c\xdd\xf4\xc1\x78\x88\x69\xdf\x63\x0c\x5a\xaa\xc0\xd4\xce\x17\x6d\x68\x47\xbd\x76\xc8\xb1\x69\x4a\x05\x58\xb1\x9d\x14\xb8\x8b\x2b\x2b\xe4\x62\x09\x46\x31\xa1\x17\xa8\x14\x36\x73\xab\x45\xa1\xe9\x95\x70\x09\x16\xb8\x6d\x77\xa9\x90\x50\x58\x5e\xa5\xcc\xca\x8b\xe4\xba\x32\xb5\x95\xc3\x0d\xd5\x64\x95\x8c\xb9\x54\x14\xb6\x1a\xb7\xb6\xb8\xe6\x63\x61\xf6\xc0\xc9\xf1\x18\xc6\x30\xab\x5a\x3c\xb7\xcd\x21\x86\xb1\x9c\x14\x37\xf0\x36\xdf\xea\x0c\x3e\x88\x89\xec\xf1\xd2\xa7\x24\xdb\x60\x3b\xfd\x24\x23\x70\xff\x07\x46\x40\xc2\xe4\x56\xa0\xfa\x79\xce\xdc\x58\x3e\xcf\x64\xb9\x30\xc3\xed\x65\xda\x38\x06\x14\x3b\x69\xe7\x13\x00\xf5\x01\x3d\x05\x9f\x3e\x65\xb2\xfa\x1f\xd6\x25\x38\x09\x91\xac\x69\x74\x56\x8e\x46\xc7\x1a\xf4\x89\x4e\xea\xdd\x3e\x92\x7b\x7a\x1c\xab\x5c\x83\x1f\xa2\x76\xb3\x1f\xfa\xb4\x4b\x5b\x85\xce\x98\x0a\x6b\xd6\x6b\x1c\x10\x9f\x15\xa1\xb5\x31\x41\xb9\xc5\x33\xaa\xa0\xdb\xf7\x41\x9a\x24\xb4\xf5\x4f\x83\xb5\x2b\x96\x39\x52\x21\x0a\x8b\x51\xdd\x77\xd8\x90\xab\xd4\xd3\x17\x92\xe6\x92\x07\xa8\x27\x25\xf3\xd1\xce\x65\x91\xe6\x43\x3e\x73\xe9\x1d\x43\x57\xd9\x72\x5a\x34\xb0\x21\x3f\x6f\x2f\x3d\xd5\xd4\x7f\x80\xb7\x91\x9a\xcf\x73\x97\x8f\x21\xf2\x27\x27\x6c\x5e\xb6\xae\x02\x98\xfb\x0c\x31\xdb\xe6\x88\xe2\x51\x74\x66\x7b\xe0\x35\x5c\xcf\xaf\xb3\xef\x21\xa1\x9b\xcc\x85\x04\xa4\x7e\xc1\xac\x0c\x0a\x5f\xe4\x5e\xbd\xb1\xa2\x8b\x35\xf6\xdf\x10\xa5\xe4\xa8\x01\xaf\x27\xde\x5f\x66\x42\x33\x61\xcf\x67\xf9\xaf\xe7\xc8\xad\x5c\xe1\xdd\x77\x6b\xb3\x1b\xa3\x59\x79\x15\xe5\xbd\xd7\xc1\xd7\x36\x1f\x60\x69\x55\xfc\x8a\x4a\x46\x2e\x21\x9a\xd8\x4b\xf9\xd0\x2b\x59\xdb\xda\xae\xeb\x7b\xa6\x65\x04\xc4\x20\xba\x5e\xbb\xde\x69\xc9\x82\x8e\xc4\x27\x15\x46\x6c\x8f\x84\x38\xb1\xb1\x0d\x97\x0c\xcf\xbe\x90\xaa\x71\xbc\x84\xaa\xd0\x7d\x8f\xc2\xea\x9a\xa6\x8d\x23\x1b\xb6\x99\xda\x9f\xca\x91\x80\x00\x74\xed\x89\x8b\x1f\xe9\x60\x76\x6b\x9c\xa4\x1d\xb6\x40\xca\x70\xce\x8e\x37\xe1\x23\x3d\xf0\x7a\x7e\x7d\x9e\xe6\x6c\x94\xe8\xdc\x35\x1d\x17\x5c\x1b\xc5\x8c\x54\x89\xec\x98\xe0\x8f\xb8\x75\x5c\xeb\x45\xdd\x32\xe6\x39\xc9\xde\xe8\x91\xe2\xc0\xd0\x2a\x42\x12\x0d\x98\x38\x56\xdc\xc0\x5b\x4f\x06\xbf\xed\x17\xf5\xc1\x73\x49\xf6\x78\x78\xbc\x8c\x5b\x30\x21\x20\x1f\x36\xd1\x0b\x77\x48\xf9\xce\x30\x16\x47\xa3\x93\xc2\xe8\x0c\x20\x60\xb9\x9f\x63\x11\x2b\x8f\x52\x87\xa2\x12\x04\x4e\xf6\x88\x04\x39\xfb\x67\x8e\x30\x4c\xdd\x98\xa5\x2a\x61\x16\x8d\xa1\xc0\xdc\x99\xc4\xce\xad\xc0\xe4\x4f\xa2\xf0\x11\x14\x25\x8b\xf3\x64\xd1\xd6\xa7\x3b\x57\x87\x73\x4c\xc0\x68\x3e\x7c\xe3\x11\xa2\xd4\x64\x09\xf9\x28\x24\x33\x8d\x76\xfb\x97\x9c\xd5\x1f\xca\xbc\x5d\xae\x13\x3f\x2f\x88\x58\x58\xeb\xba\xd0\x03\x4d\x72\xf3\x74\x51\x12\xe3\x84\x7e\x76\x53\x4d\xf3\x25\xa0\x19\xcc\x1e\xe3\x86\xf9\x0c\x2e\x60\x64\x8f\xba\xfb\x13\xc9\x47\xfd\x8d\x17\x33\xbb\x3e\xbf\x81\x57\x2e\x6e\xfe\xf2\xc4\x35\xf1\x0a\x61\x49\xe8\x52\x36\x20\x82\x66\xc2\xab\x29\x69\xb7\x7e\xc8\x17\x69\x98\x90\xdb\xa2\xd6\x4e\x28\xc1\xc0\xa7\xd8\x89\x7a\x35\x31\xf5\xe0\xe4\x61\xfa\xd3\x18\xf5\xdd\xb7\x12\xc6\x4c\x3f\xca\x9b\x8b\x3b\xa4\x92\xe6\xc2\x77\x31\x63\x3a\x08\x8e\x37\xd9\x31\xea\x5f\xba\x93\x3d\x4f\xb6\x84\xa4\x0b\x7e\x6f\x4b\xb0\xbd\xf0\xc5\xed\x20\x76\xbc\x8c\xdb\xf6\x4a\x9c\x50\x9c\x9e\x95\x0d\xc7\x81\x70\x6f\x74\x01\xb8\x58\x60\x6d\xf8\x06\xdb\x1d\x49\xa5\xa3\xe1\x40\xb4\x27\xc4\x7f\x94\x06\x6f\xdc\xd9\xc0\x31\x92\xe4\xa6\x8f\xf5\x46\x76\xcc\x70\x5b\xbd\x3b\xd0\x7d\x45\x97\x2e\xd8\xc4\x53\x6e\xd6\xd7\xd2\xdb\xe8\xec\x32\x8a\x6c\xee\x6b\x23\xd5\x8b\xea\x7e\x88\xc8\x8f\xa5\xea\x76\x0b\x0b\xc8\x99\x66\xe6\xe3\x44\xb9\x28\x8a\xe2\xb6\x73\x1f\xe1\x09\x02\x1d\xc6\x2d\xa6\xee\x1c\xa4\x6e\xe0\xae\x37\x2b\xff\x90\x3a\x46\x18\xcf\x0b\xde\xd2\xf8\x34\xea\x6e\x4a\x26\xc1\x26\x4a\x5b\xf6\xe8\x64\xd2\x10\x0f\x65\x1b\xb4\x8c\x96\x8b\xec\x4a\xb1\xc8\x4b\x16\xd2\xf1\x4a\x2e\x0d\x1c\x3c\x4e\xfd\x9b\x5b\x7d\xb3\xdb\x4b\x12\xe6\x8e\x2f\x57\x5e\xef\xd5\x22\x24\xc8\x65\x75\xcc\x37\x06\xeb\xbe\x6a\x79\x0d\x35\x5b\xb3\x8a\xb7\xdc\xec\xc2\x58\x21\x42\xdd\xa4\xd7\x27\x74\x7f\x88\x4f\x6b\xa9\x51\x97\x53\xf7\xd1\x13\xe3\x47\xe8\xd0\xac\xa4\x3d\x45\x2a\xd9\x2f\x5d\xb8\x1e\xc3\x15\xda\x23\x5d\x03\xa9\x05\x9b\xa0\x36\xa9\x63\x2d\x17\x5f\x6f\xff\x58\x80\xec\xdb\xf8\xd5\xdc\xf3\x9b\x59\x86\x9e\x2b\xe7\xd5\x10\x81\x78\x87\x97\x2d\x33\x4c\x2d\xd1\x4c\x46\x2c\xae\xfd\xc1\xa1\xf3\x29\x7f\x84\x05\xc7\xb6\x88\xdc\xbb\xf0\xed\xf7\x0d\x9c\x17\x7b\x34\x6e\x7e\xdd\x77\x87\x8d\xfa\x01\xb5\xfa\x01\xef\xd9\xd9\x64\x76\x18\xde\xf4\x6e\x0a\xde\x24\x28\xcf\xd1\xbd\x6d\x1f\x4c\xf8\xbf\x1f\x50\x0a\xf4\x4a\x6e\x13\x32\x18\xaf\xb9\xb7\x4c\x27\x97\xab\xc3\x25\x5c\xd2\x81\x0e\xfc\x91\x6d\xbc\x4a\x9f\xcf\x9e\xcf\xfe\x1f\x00\x00\xff\xff\x0e\x67\x59\x7f\xac\x1c\x00\x00" func flowtokenCdcBytes() ([]byte, error) { return bindataRead( @@ -219,11 +219,11 @@ func flowtokenCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowToken.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe4, 0xbc, 0xfd, 0xa0, 0x10, 0xc4, 0x66, 0xeb, 0xf, 0x93, 0xf3, 0xbf, 0xa6, 0x40, 0x35, 0x69, 0xa7, 0xae, 0x6a, 0x4a, 0x9a, 0x6e, 0xc8, 0xd1, 0xd4, 0xe6, 0xbd, 0x5a, 0xd0, 0x24, 0x9b, 0xbc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0x59, 0x88, 0x9, 0x45, 0x94, 0x4b, 0xb4, 0x8, 0xf1, 0x58, 0x7e, 0x8b, 0x4, 0xee, 0x25, 0x6f, 0x3f, 0xe6, 0x4, 0x3d, 0xb3, 0x16, 0x39, 0x0, 0xbe, 0xf7, 0xff, 0x43, 0xc7, 0x1e, 0xaa}} return a, nil } -var _lockedtokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3d\x5d\x93\xd4\x38\x92\xef\xfc\x0a\xc1\xc3\x4c\xf5\x6e\x53\xcd\xed\x5d\xdc\x43\x05\x3d\x6c\x43\xc3\x6c\xc7\x30\x40\x74\x37\xc7\x5d\x5c\x6c\x6c\xa8\xec\xac\x2e\x2d\x2e\xcb\x23\xd9\x55\xd4\x11\xfc\xf7\x0b\x7d\x5a\x9f\xb6\xab\xe0\x66\x98\x39\xfa\x05\xca\x96\x52\xa9\xcc\x54\x2a\xbf\x24\x9f\xfd\xe9\xde\x3d\x84\x10\x7a\x49\x8b\xf7\x50\xde\xd2\xf7\x50\x73\x44\x36\x4d\x05\x1b\xa8\x5b\x8e\xda\x35\xa0\x55\x57\x17\x2d\xa1\x35\xae\x48\xbb\x47\x0c\x7e\xe9\x08\x83\x12\xb5\x14\x6d\x70\x8d\xef\x00\xbd\x78\xf9\xfa\x9d\x84\xb2\xec\xf6\xc0\x38\xaa\x24\x30\xd4\x2a\x68\x2b\x46\x37\x12\x8e\xfc\x8d\x38\xae\x60\xae\x06\x7d\x8e\x8b\xb5\x7e\xba\xa6\x55\x09\x0c\xdd\x81\x18\x73\x47\x11\x2e\x0a\xda\xd5\x2d\x9f\xa3\xd7\x35\x98\x5f\x88\x48\x84\x08\xf3\x46\x90\xa0\x74\x8b\x39\xba\x6a\xd1\x8e\x54\x15\x5a\x02\xfa\x27\x25\x75\x5b\xed\x51\x41\xeb\x96\xd1\xaa\x82\x12\x2d\xf7\x12\x93\x8e\x03\x43\xb8\x2e\x1d\xb4\x70\xb9\x21\x35\xe1\x2d\xc3\x2d\x65\x73\x09\xf3\x36\xfd\x12\x6d\x3a\xde\xa2\x82\x3e\xe4\xe4\xae\x56\x10\x18\xae\xf9\x0a\x18\xa2\x2b\x84\xeb\xbd\x3f\xff\x24\x2c\x54\xe0\xba\xa6\x2d\x22\x75\x0b\x0c\x17\x02\xe7\x76\x2d\x61\xe9\x89\xc8\x4e\xe2\x21\xed\x5a\x84\x9b\x86\xd1\x2d\xae\x42\x52\x2a\xa2\x9d\xca\xb6\xf0\xa1\x80\xa6\x15\x4c\x29\xa1\xa1\x9c\xb4\x08\x97\x25\x51\x6c\x33\x08\x59\x3e\x51\x26\x1a\x76\xb5\x78\x8e\xe0\x03\xe1\x2d\xa9\xef\xe4\x6b\x84\x5b\x04\x82\x2d\x1b\x52\x01\x6f\x69\x0d\x88\xd4\xce\x90\x5b\x50\x6d\x1b\x60\x84\x96\x9a\x8f\x62\x72\x1c\x0a\x5a\x97\x01\xa7\xf4\x10\x50\x6a\x8a\x1b\x26\xdd\xae\x09\x77\x9a\x4a\x20\xa4\x46\xab\xae\xaa\x50\x43\x39\x07\x4e\x68\x2d\x19\xa4\x79\x27\x28\x1b\x32\x6e\x2f\x88\x88\x4a\x8a\x76\x6b\xdc\xc2\x16\x98\x04\x23\x5f\xec\x70\xad\x49\x4a\xc2\xd1\xa4\x70\xf0\x96\x32\x40\x18\x15\xb8\xc1\x4b\x22\xc5\xba\x5d\xe3\x16\xe1\xaa\xa2\x3b\x6e\xe0\x6c\x04\x91\x04\x94\x92\xe1\x9d\x91\xe6\xdd\x1a\x6a\x35\xc8\x12\x0a\xba\x71\xa6\x28\xd0\xc2\x15\xa7\xa8\xa5\x12\x42\x03\x6c\x45\xd9\x06\xf1\x16\xbf\x17\x24\xa3\x0d\x30\x2c\x18\xc2\x2d\xb7\x03\x49\xe6\x9a\x9e\xef\xc4\x18\xd8\xa3\x99\x20\x68\xc1\x00\xb7\x50\x9e\xa2\x25\x6d\xd7\x76\x85\x20\xcc\x04\x8f\x48\x4b\x70\x45\xfe\x07\x4a\x09\xdc\x4c\x81\x30\xc4\x80\x37\x50\xb4\x64\x0b\x88\x2e\xff\x09\x45\xcb\x17\xee\x6a\xff\x59\x2e\x61\x86\x56\x42\x26\x04\x1f\xd7\x58\x2c\x6e\x0d\x5d\xc9\x96\x98\x99\x6c\xfc\x37\xb5\x4a\x4d\xdb\x7e\xea\x3d\x63\x35\x8f\x0a\x5c\x55\xdc\x6a\x0e\x45\x52\x5a\x7b\x50\x12\xc4\xb5\xf2\xed\x63\xa1\x38\x9e\xa6\x2a\x2e\x7c\x92\xfa\x04\xbd\x77\x0f\xfd\xe9\xec\xde\x3d\xb2\x69\x28\x6b\xd1\x8b\x8a\xee\x24\x06\x6a\xa0\x47\x1f\x84\xc4\xdf\xbe\xfe\xe9\xf9\xab\x8b\xcb\xcb\xeb\xe7\x37\x37\xb6\x61\x57\xdf\x91\x65\x05\x7e\xe3\xb7\xaf\x7e\xbc\x7a\xfa\xf2\x79\xb2\x43\x45\x77\x57\x97\xb7\x78\x59\xc1\x8d\x46\xcc\x19\xe2\xea\xf2\xf6\xe2\xe9\xcb\xe7\x37\xb7\x17\x3f\x5d\xbd\xfa\x31\xd1\xf5\xa6\xa5\x0c\xdf\xc1\x0b\x00\xee\xf6\xbb\xb9\x7d\x7d\x7d\xf1\xe3\xf3\x17\xcf\x9f\xdf\x04\x9d\xf4\x20\x6f\x18\xfd\xb0\x37\x3d\x34\xf8\x37\xd7\xaf\xff\xf3\xbf\x4c\xf3\x7b\x4d\xb7\x54\x6b\x48\x28\x19\x4f\xc9\x7f\x54\xb2\x26\x1a\xc0\x16\xea\x16\xdd\x48\x9a\x5f\x28\x92\x5f\xc3\x1d\xe1\x2d\x30\x28\x67\xb8\x2c\x19\x70\xbe\x40\x17\xea\x3f\x27\x41\xbf\xb7\x5a\x0a\xa6\xf4\x4c\x76\x7d\x49\x36\xa4\xbd\xaa\x85\x78\xf3\x44\xaf\x53\x44\xf4\xbb\x8b\x8d\x18\x60\x81\xde\xbe\x20\x1f\xfe\xfd\xdf\x4e\x51\x0d\x3b\xd9\xd7\x3c\x89\xe0\xbf\x4c\x23\x76\xc1\x5f\xd1\x12\x12\x03\xd5\xb4\x84\xab\xcb\x05\xba\x69\x19\xa9\xef\xc2\x89\x66\xa1\x5d\x42\x05\x77\x62\x6b\x98\x00\x32\x09\x53\xb1\xe4\x52\x29\xee\x24\x09\xb0\x37\x75\x0d\xe6\xec\xec\x0c\xbd\xc1\x42\xee\xa9\x56\x69\xe1\x02\xd0\x3b\xb4\xd4\x02\xb4\x63\x05\xd8\x7e\x5a\xab\xfb\x0b\xcd\x22\x57\x41\x9b\x50\x12\x5a\x4c\xc5\x90\x62\x42\xf6\xc7\x10\x36\x0d\x23\x5b\xdc\x82\xab\x6a\x8d\xfa\xe8\x77\x6f\xd1\x55\x63\x3a\x82\xc2\x1b\x05\x4e\xa1\xe0\xfc\x98\x82\x82\x47\x18\xb5\x0d\x57\xa4\x7e\x7f\x1c\x49\x2e\x44\xff\x63\xb0\xd1\xfb\xbf\xb0\x47\xa4\xea\x0a\x87\x57\xef\xa7\x8c\xfe\xcc\xc2\x38\x86\x31\x9e\xdd\x95\x13\x8f\x50\xc3\x7b\xf8\x38\xca\x7c\x02\x02\xdd\xb2\x22\x05\x6a\x22\x3c\x06\xf6\x60\xd1\x8f\x01\x2e\x85\x3a\x25\xb5\x50\xfb\x72\xff\x44\x78\x29\xad\x22\x34\x80\x9b\xb7\x56\xaf\xea\x15\x55\xe3\x6b\x4e\xd9\xff\x87\x04\x92\x08\x58\xea\xab\x1d\x97\x32\xb4\xa3\x5d\x55\x2a\x9c\x6d\x07\x81\xbb\x21\x9b\xea\x28\xad\x82\x8e\x0b\xd2\xea\xbd\x3a\xc0\x90\xe7\x51\x7c\xa6\x46\x9a\xca\xc8\x41\x3c\x1b\x31\x3d\xbe\x76\x31\x25\x2c\xbb\x00\xb5\xc0\xe9\xed\x55\xb4\x37\x06\xa4\x63\x8e\xaa\x11\x04\xed\x7b\x30\xa3\x93\x19\x23\xb9\x30\x16\x7a\x69\x76\x11\x54\x32\x90\xb3\xce\x1d\xdb\x55\xdb\x0d\xda\x68\xed\x75\x49\x68\xbc\x86\x66\xab\x41\xdd\x32\x50\x1a\xe2\x2b\x5c\x78\x18\x7d\x94\xed\x4c\xdb\x55\x57\xdb\x9d\xc8\xd9\xb8\x66\x25\x54\x2d\xee\x35\xb3\x68\xfe\xc9\x9d\xa4\x30\x85\x93\xba\x58\xd8\x74\x52\xa6\xca\xb4\xea\x71\x3c\x2c\x5c\x14\xc0\xfb\x45\xd1\xd2\x58\xd3\x6f\x71\x57\x19\x4b\x49\x01\x53\x36\xc2\x59\xa9\x76\x27\x31\x7d\x33\x32\x4f\x50\x20\xd6\xb5\x0b\xdf\x0e\x9a\x5f\x43\x01\x64\x0b\xec\x34\x78\xfe\x86\xd1\x2d\x11\x8e\x88\x4f\x3b\x4b\x3c\x4b\x06\x61\x86\x23\x06\x2b\x60\x50\x17\x60\xf0\x2c\x61\x25\x51\x97\xee\x87\x9a\xc5\x10\x55\xe6\x2e\x5c\x6f\x8c\x8b\xca\xf3\x74\xac\x70\x30\xf0\x00\x12\xae\x46\x39\x45\xbb\x35\x29\xd6\xd2\x8b\x58\x1a\x12\xeb\x46\x3b\x8a\x76\x78\xcf\x17\x1e\x7c\x84\xfe\xe5\x04\x5d\x12\x06\x45\x5b\xed\x85\x55\x82\xb0\x72\xfd\x94\x0d\x6a\x5c\x42\xe5\x66\x4a\x1b\x3d\xd2\xb3\x8a\x3d\x91\x44\x07\xc3\xfc\xe5\x04\x5d\xd5\xa5\x1e\x08\x6d\x09\x96\x80\x62\x06\x25\x70\xe8\x11\x08\xc7\xf6\x64\x79\x8b\x99\x22\xc2\x02\x3d\xb3\xcb\xee\xf1\x77\xd6\x40\x9e\xff\x87\x78\xf9\x43\xc8\x43\xd0\x76\x88\x74\xc7\x14\x75\x8d\xe6\x33\x66\x7f\x6d\x8d\x7a\x8f\x51\xc2\x2f\x27\x1c\x95\xa0\xad\x3c\xeb\x47\xa9\x7e\xa6\x0f\x8f\xb0\xec\xfa\x95\x66\xd6\x98\x8f\xd5\xeb\x46\x3b\xb9\xc2\xa6\x13\x76\xb1\xb3\xc2\xe6\xe8\x9d\x70\xf7\x68\x5d\x09\x77\x0d\xad\x88\x0c\x02\x90\xde\x97\xf4\x20\x09\xda\x71\xd4\x35\x42\x30\x85\x40\x48\xdb\x4d\xbb\x6d\x34\xa6\x5f\x6d\xc7\x5b\xa0\xbf\xc6\x0e\xc0\xbc\xc7\xe7\xc9\x00\xc6\xd6\x76\xfc\x52\x48\x97\x06\x60\x12\x61\x3b\x5c\x1e\x67\xdb\xc4\x41\x5b\xf8\x97\xb3\x09\x02\x73\xe2\xe8\x4c\xf1\xc7\xa1\x5a\xcd\xd5\x9a\x3e\x57\x02\x17\xbf\xee\xe9\x88\x1e\x3f\x44\x35\xa9\xd2\x4d\x7a\x42\xe5\x5a\x39\xa2\x82\xce\xd1\xa3\xf9\x23\xdb\xe4\x53\x3f\x93\x12\x78\xcb\xe8\x1e\xcd\x42\x54\xcd\x8b\x00\xa7\xe1\x36\x97\x11\xb1\x3f\xb9\xbc\xce\x28\x50\xe3\xb4\xfa\x62\xa1\xcd\x7f\xde\x1b\x5d\x66\x89\x29\x3d\xe9\x93\xcf\xec\x48\x7a\xb3\x9e\x09\x27\x50\xf0\xd4\x1b\x50\x32\x25\xc9\x13\xdd\xcd\xf8\x6e\xca\x01\xd1\x40\x1e\x3f\x14\xff\x9e\xa4\xa6\xa4\x94\xe4\x4c\x80\x38\x71\x87\x4f\xc2\x99\x82\x8c\xb0\x1d\xe4\xc4\xae\x61\x85\xce\x1d\x79\x99\x2f\x29\x63\x74\x37\x3b\xb9\x7f\x2f\xea\xb0\xc4\x15\x16\x1b\xc8\xb9\x74\x7d\xe7\xfa\xa7\xdf\xce\x00\x9d\xfb\x04\x7a\xfc\x10\xa9\xc9\xc5\x24\x19\xd8\xdb\xf5\x08\x49\x92\x44\x5c\x36\xdb\x61\x9a\xcb\xef\x8c\xa6\x8b\xd8\x6c\x83\x1f\x69\x46\x1b\x15\x39\x0b\x5c\xc1\x34\x9d\x03\x32\x33\x68\x3b\x56\xa3\xc7\x0f\xe5\x4c\x0d\xa8\x80\x6b\x06\xb0\xfa\x77\x1a\xff\x47\x40\x1d\x82\x63\xc3\x20\x78\x82\x52\x2b\xfb\x87\x73\xeb\x0c\x3f\xb8\x86\x5f\x3a\xe0\xad\x30\x0e\xd4\xbe\x04\x1f\x0a\x80\x32\xa4\x2d\xaa\x44\xcf\x07\x1e\xec\x4f\xbe\x04\x34\x94\x87\xf8\x24\x47\x3f\x3f\x47\x4b\x58\x51\x06\xb3\xf0\xd5\x09\x7a\xd8\x23\xf6\xb6\x29\xb1\x40\x2b\x85\x87\xd8\x07\x49\x5d\x50\x26\xf6\xf7\x41\xa4\x8e\x5a\x1c\x4a\xdb\x3e\x7e\xd8\xaf\x80\x48\x72\x0c\x83\x53\x6a\x21\xbb\x06\x92\x9d\xac\x5c\xf9\x32\xeb\xcc\xc3\x88\xef\x1d\xb4\x4f\xd5\x2a\x9a\x9d\x18\xb9\x38\x42\x17\x24\x06\xb7\xf3\x34\x7a\x20\x81\x45\x42\x6f\x8d\x19\xf2\x29\xad\xe9\xef\x30\xd1\xa3\x87\x48\x82\xc8\x68\x09\x37\xd4\x33\x77\x2c\xe5\xa4\x9a\x78\x86\xdd\x7c\x85\x72\xd1\x60\x0b\x6c\x8f\x5a\xb2\x11\xdb\xbc\xf1\x68\x18\x54\x62\x1e\x68\x8d\x9b\x06\x6a\x7e\x84\xc7\x72\xc4\x44\xff\x1c\x4c\x54\xfc\x81\x78\x31\x1c\xd0\x93\x70\xe8\xae\x06\x76\x7f\x8e\x73\xc1\x3d\x09\xd9\x8d\xed\x45\x0b\x6d\x32\x7d\x75\xa0\x39\x49\x60\x13\xbf\x13\x2e\x49\x0d\x3b\xdf\xd6\xeb\xa3\xc9\xc2\xc0\x31\xd1\x56\x1b\x48\xf5\x00\xa9\x2c\xc5\x66\x23\x76\x6e\x5c\x9b\x48\xbc\x63\x28\x47\x9b\xb9\x70\xcc\x20\x62\x14\xd3\x08\xc9\xd0\xa4\x8c\x1a\xd6\x2b\xba\xf0\x22\xbd\xd2\x3c\x13\x8f\xa3\x78\x60\xc0\x43\xb2\x92\x8b\xc9\xb7\xac\xd2\xc6\x56\x42\xe9\x89\xae\xda\x79\x14\x83\xa1\xf3\x44\x78\xdb\xa2\x32\x33\x01\xce\x1e\xf2\x9c\x94\x81\x9a\x90\x4b\x90\x73\x60\xed\x2c\x7a\x2e\x65\xae\x1f\x6d\xae\xe8\x24\x21\x95\xe8\xcf\x89\x57\xcf\x24\xb1\xdb\xcc\xdb\xb7\xb5\xc9\x0c\xe4\xdf\x66\xba\x5e\xc3\x0e\xb3\x12\x4a\xa1\xe4\x1f\xcd\x1f\x9d\x26\x51\xdd\x00\xe7\xf8\x0e\x16\xe8\xc1\x33\x95\xc2\x33\x7c\x73\xe5\xa8\xab\x5b\x52\x21\x5c\x55\xd1\xde\xde\x30\xd8\x12\xda\x71\xd5\x6e\x8d\xb7\x80\x96\x00\xfd\x3e\x5a\x3f\x88\x46\x4d\xd0\xd2\xd8\xa1\x19\x33\xf5\x4b\x6c\x23\x1a\xf1\xc3\xf7\x91\x49\x82\x97\x10\x28\x5c\x96\x42\xa6\xae\xa1\xa0\xac\x9c\x91\x52\x49\x94\x64\x0f\x29\x4f\x11\xa3\x15\x38\x8f\xc4\x4f\xa1\x24\xda\x1d\x65\xa2\xfb\x85\xd1\x31\xb6\x45\xf4\xce\x6d\xfe\x13\xec\x93\x4d\x7f\x82\xfd\xa9\x91\x0c\xbf\x4d\xff\xf0\x14\x05\x72\x28\xac\x4a\xf5\x28\x20\x45\x82\x4d\xb1\xca\x9c\x98\xa3\x48\xea\x4e\x77\xed\x69\x4a\x65\xb4\x63\xac\xf0\x7a\x7f\xea\x00\x65\xa7\x02\xb6\x55\x05\x0c\xad\xb1\x52\x66\x0d\x14\x64\xa5\xb6\xa9\xab\x4b\x93\xa7\x4d\x7b\xce\x1a\xc2\x5e\x86\x64\x9c\xb0\x94\x8e\x3d\xa2\x84\x36\xec\x53\x2b\x7e\x22\x65\xa2\x06\x2c\x5d\xa7\x31\xeb\x4a\x66\x74\xa0\xed\x9c\xd7\x82\x97\x6e\x13\x8b\xa2\xed\x38\x57\x4f\x4e\x1d\x50\xde\xeb\x83\x15\xa5\x87\x52\xa8\x2a\x53\x2f\x5d\x65\x99\x7a\xef\xaa\xcb\xfc\xfb\x6c\xf7\x2f\xa2\x32\x7b\x26\xfd\x5a\x7a\x33\x8e\x91\xa0\x2f\xa0\x36\x73\x8c\x0b\x0d\x54\xe1\xc2\x24\x64\xe9\x0e\x5a\x2b\x4e\x3f\x93\x9a\x6c\xba\x8d\x64\xed\xb5\x2a\xb8\xd9\x40\xdd\xce\x4e\x62\x0a\xf7\xd4\xfd\xb9\xe3\xad\x22\x8d\x0a\xab\xaa\xf5\x45\x6b\xb4\x51\xd0\x54\x54\x94\xf5\xe0\x4c\x80\x55\x5b\x28\xca\x73\x68\xa9\xc7\x1f\x5a\x82\x4f\xda\x84\xba\xff\xac\xbd\x62\xc2\x12\x4d\x10\xcb\x5a\x4b\xb0\x8b\x55\x84\x59\x75\x87\xea\xe9\x5e\x2c\x0e\x50\xd3\x89\xe4\xef\xb8\xae\xbe\x4c\xaa\x69\xa3\xfc\x94\x7c\x49\xfd\x7f\xb2\x40\xdf\x0d\xc7\x16\x13\x4e\x54\x2d\xf7\xd1\xd5\x78\xd7\x73\xf4\x5d\xb8\x39\x63\x3e\xd6\x2b\xe5\x83\xe9\x11\x87\x26\xc5\x60\x43\xb7\x60\x26\x35\x12\x30\xcd\x4c\x2a\x6f\xc6\x66\xdc\x52\xd1\x6e\x1c\xa9\x9e\x85\x03\x98\xf5\x61\xd1\x04\x72\x25\x54\x83\x3b\x4c\x06\xbd\x12\x2a\x07\x3b\x94\xc8\x1c\xd9\xbc\x14\x37\x49\x31\x5c\xef\x97\xb4\xdc\xab\x75\x8a\xcb\x44\x62\xd4\x59\xd2\x5e\xce\x24\x93\xf0\x8a\x52\xa5\x89\xbc\xd7\x1d\xb4\x5e\x33\x6d\x52\x09\x7a\xe9\xff\x8e\x76\x89\xbc\xff\x54\x0f\xd7\x4b\x4d\x37\xdc\x12\xd8\x99\xd6\xd2\x07\xb9\x14\x0d\x95\x51\xf0\x24\xdb\xb2\xdf\xa7\x65\xf3\xb7\x57\x75\xfb\xaf\x7f\x99\xd0\x3c\x3d\x82\xc3\xa4\x1b\x9b\x58\xd2\xce\x66\x36\x63\x6e\x29\xef\xb8\xa6\x87\x67\xd8\x52\xcc\x8a\x93\x34\x8a\x25\xc6\x18\xd3\xf9\xb3\x99\x42\xec\x24\x4e\xa4\x99\x04\x41\x58\x76\x12\x86\x24\xfc\x44\x3d\xe1\xa8\xe3\xaa\x0e\x54\x85\x57\x32\x59\x2a\x0f\x48\xbe\xc6\x02\xf5\x61\x1a\xfd\xf8\x44\x22\xd5\x7a\x19\x49\x37\xf9\x10\x0f\x15\x24\xac\xde\x6a\xf4\x72\x35\x63\x4e\x4e\x45\x9a\xb3\x3a\x79\xd6\x35\xbe\x83\xcf\xb3\xa9\x20\x2f\xac\xe4\xe7\x84\xa4\xc3\x6e\x2a\xed\x5e\xf9\x8f\x9f\x0c\xa3\xe9\x58\xc6\x47\x60\x1a\xdb\x36\x49\x2c\xad\x88\x47\x88\xfa\x6f\xc2\x24\x90\xae\xf5\x8a\x0a\x94\x0e\x62\x53\x68\xad\xa7\x43\xbf\x2e\x48\x6b\x73\xa1\xfb\xe7\x42\xa1\x1a\x73\xa7\xc1\x5c\x4c\x3a\x51\xd0\xd8\x97\x13\x0c\xc6\x58\xa5\xca\x36\x0b\xe6\x1c\x79\xd3\x8b\x1b\xba\x28\xa1\x73\x0f\x43\x1f\xac\x58\x2f\xaa\x04\x44\xd9\xb8\x5c\x6d\x56\x8d\x2c\xd8\x93\xcb\x27\x95\x76\xee\x13\xb9\x89\xb1\x03\xd9\x42\xe7\x69\xe1\x9a\xf9\x9c\x88\xd0\x3e\x89\x10\x2d\x5c\x44\x7b\x73\xec\x73\x71\xf5\xe5\xc8\x43\xd7\x7f\x35\x8e\x71\x82\x77\x72\xe1\xb4\xba\x9e\x45\x97\x99\xca\x1c\xa8\x94\x93\x54\x9d\x41\x42\x46\x54\x41\x6c\x56\xfd\xf4\xb6\x98\xdb\x4b\xda\x64\x09\x60\xc9\x8c\x4b\x34\x99\x44\x2c\x3b\x15\xc6\x74\x35\x7c\x26\x7e\x29\xe0\xf3\xc4\x66\x6f\xd5\xbf\x2a\xf3\xb1\xe5\x27\xaa\x0c\x60\x7e\xc4\xde\x3e\x30\x35\x1c\xac\x94\x28\xe8\x90\xc5\xd2\x38\x43\x23\x58\xca\x4d\xb6\x5b\xca\x50\x84\x82\x63\xbc\x19\xae\xca\xa3\xc4\xc6\x0a\x6c\xab\x0c\x20\x27\x87\x56\x75\xc2\x45\x2c\xb0\x2c\xc8\x12\x42\xdc\x50\x66\xeb\xed\x0c\x64\xbd\x43\x6a\xd4\x0c\x4a\x44\xb8\x99\x2d\xc2\x5b\x4c\x2a\x61\x06\xca\x82\x23\x1e\x87\x6c\x47\x4d\x9c\x01\xc2\xa5\xe4\x6a\xee\x26\x49\xd0\xc3\xb0\x34\x78\xbe\x31\x5e\xa1\x7c\x74\xdd\xcf\x3b\x23\x4a\x2e\xf5\xad\x5d\xa2\x72\x50\xd3\x65\x23\x69\x92\x1d\x3a\x31\x27\x7c\x9f\x13\x15\x9b\xfe\xd6\xde\x64\xc2\x37\x35\x15\x3b\x1b\xcc\xde\x73\x55\xa1\x8f\xb9\x07\xc4\x2f\xc6\x77\xf9\x67\x1c\xd2\x68\x8a\x47\x26\xd0\x93\xd3\x0c\x73\xcd\xd9\x3c\xfa\xd1\x49\xe3\x30\x2e\xe2\x92\x47\x9f\x74\xd8\xd9\xea\x11\xde\x15\x05\x40\xe9\x1b\x60\x4a\xe2\x6d\xe5\xbd\xce\x53\x10\x8e\x2a\x65\xc2\xe1\x1a\x51\x86\xe0\x97\x0e\x57\xb6\xce\xcc\xe3\xdb\x97\x4d\x48\x0f\x50\x33\x1b\x43\xc8\x48\x50\x70\xf8\x40\x8a\xb7\xdd\x1a\xd4\xbc\xf5\xd1\x10\x2f\xc6\x91\x37\xef\x34\xd0\xbd\x0e\xaa\x50\xb1\x25\x0a\x2e\xa9\x08\xd5\x1a\xa4\xef\x65\xaa\x29\x89\xb2\xab\x22\x32\xa9\xdd\xb5\xdf\xa4\x8f\xc9\xed\x4c\x14\xbf\x4c\x0a\xa9\x8e\x20\x27\x83\x31\x5f\xb3\xc9\xf2\x9b\x73\xdc\x06\xb5\xaf\x2e\x6d\xf9\xac\xfc\xed\x0d\xa1\x8d\x27\x48\x45\xb4\x7b\x39\xc8\xc5\xb4\x8f\xe0\x74\x3e\xf6\x65\x58\x7d\x6c\xa0\xf1\x0f\x64\x26\x3e\x35\x26\xe1\x03\x6b\x13\x3e\x08\x8a\x64\xb5\x25\xa8\xf7\x17\xa7\xfc\x58\x25\x3b\xfc\x0c\x46\xef\xa9\x61\x79\x96\x2c\x71\x10\x29\x71\x02\x10\x45\x01\x3e\xad\x0f\x4e\x32\x5e\xe2\xf4\xf2\x98\x70\x99\x69\x17\x29\x19\x8c\x7f\x20\xd6\x4c\x38\x52\x49\x81\xd7\xdf\xb7\xea\x28\xe0\xfd\xd0\x5f\x72\x7f\xb9\x3b\x7d\x30\x6c\xd2\xa0\x1d\x0d\xd9\x24\x82\x69\x81\x93\x35\x64\x42\xa7\x70\xf3\x9a\xf6\x38\x3e\x99\x93\xf2\x18\x09\x71\xbc\xf1\xe3\x85\x24\xe1\xd2\x4f\x97\x13\x2f\x3c\x99\x5b\x1d\x87\x49\x4b\xd0\x77\x92\xc0\x04\x7d\x8e\x97\x19\x1f\xd0\x24\xb1\x49\xc7\xef\x7e\x05\xd9\xe9\xa3\xbe\x19\xf1\x99\x1e\x3a\xfc\x75\xb1\x55\xfb\x40\x88\xb1\x13\xb9\x1c\x09\x8e\xd9\xb8\x25\x6f\x59\x67\xcf\x0e\xbe\x0a\xe3\x5b\x91\x09\xe3\x2b\xb0\x7c\x0c\xea\xc8\xb0\x9e\x8c\x41\xfd\xfa\xb1\xa6\xab\x7a\x8b\x2b\x12\x1e\xaa\xcb\x87\x98\xdc\x5f\xa3\x81\xa3\x84\x54\x45\xf5\x6a\x82\x9d\xaf\xa5\xfa\x79\x2e\xd6\x1b\x9f\xfd\xc3\x60\xa1\x12\x3d\xf1\xc4\x4f\x16\xe8\x29\xa5\x61\x6e\x5b\x4b\x4e\xdf\xd7\x4d\xa5\xa8\xe9\xe6\x94\xe4\xb3\x35\xae\xef\xb4\xd5\xd3\x57\x4c\xa0\x30\x02\x60\x74\x57\x27\x4b\x20\x5f\x85\x55\x18\xb3\x7f\x08\xfb\xc1\xc6\x0f\x7b\xcb\x67\x68\x6d\x38\x19\xd8\x29\xcb\x23\x97\x88\xb5\x1a\xc8\xa3\x64\x30\xd0\x60\x8a\x55\x27\xb0\x0b\x4d\x8a\x88\x0a\xda\xe8\x64\x3a\x86\xa0\xad\x4c\x39\xda\xfd\xc1\x34\x6a\x80\x84\xb7\x6f\xe5\x28\xd9\xd3\x31\x6b\xfa\x48\x10\x5c\x5a\x6c\xfe\xb9\xe8\x90\x5b\xd2\xd8\x7f\x05\xbb\x74\xfd\xee\xef\x8c\x3d\x72\x32\x47\xb3\x22\xc8\xfb\x87\x9c\x19\x2c\x01\x18\x62\x63\x40\x62\x5d\x33\x3b\x94\x2c\x1f\x63\x6b\x67\x8a\x33\xa2\xe3\xf3\xb9\x1a\x1e\x8f\xdd\xa6\xb6\xe3\x1b\xcf\xc7\xf9\x96\xa1\xd5\x48\x44\x42\xf3\x89\x99\x2a\x19\x6d\xe7\xa1\x6b\xff\x81\xac\x87\x5a\x31\x80\x6a\x6f\xa3\x2a\xc2\x61\xf3\x60\x71\x6a\x3d\x5a\x75\xa2\x4d\xa0\x73\xea\x07\x73\x54\x6c\x8f\xaf\xe5\x31\xd0\x25\xd8\xda\x5a\x3f\x04\x64\xa2\xa2\xbe\xf0\x08\xa0\xb0\x5a\xa9\xab\x22\xaa\x3d\x6a\xd5\x6d\x13\xc2\x5b\x9e\xa0\x3a\xcc\x8c\xbe\xc9\xd2\xb8\x2c\x65\x68\x95\x0c\xca\x84\xc0\x06\xca\xb9\x47\x64\x51\x9f\x95\x30\x5a\x43\x5e\x51\xe1\x04\x32\x22\xb6\x32\xd5\xde\x16\x88\x7d\xe3\x69\x86\xa7\x59\x42\x4d\x65\x88\x3c\xce\xac\xf0\x13\xbe\xa2\x53\x42\xf9\xbd\x0d\xf8\xaa\xcb\x65\xc4\x4b\xdf\xcd\x34\x87\x3c\xf5\x41\xcc\xbe\x30\xce\x84\xa2\xec\x71\xe0\x24\x93\xf5\xb8\x17\x55\x15\x9d\x87\xfb\xff\xcb\x50\x97\x28\x39\xe6\xbd\xb3\x37\xd7\xc8\xdc\x8a\xaf\x4a\x97\x58\x1e\x4d\x8f\x38\x15\x9f\xd7\xd6\x21\x7b\xe1\x4b\x23\x75\x1f\x94\x5a\xde\x9e\x5a\xf7\xe0\x28\x15\xef\xab\xf0\xb3\x10\x01\xa1\xcb\x0b\x5a\x73\x52\x82\xbe\xa9\x8b\xb7\xa4\xaa\x82\x5d\xc0\xe0\x43\x6a\xd4\x02\xdb\xd8\x7a\x11\x73\xb4\x84\x17\x6b\x28\xbb\x2a\x96\x9a\xfe\xd0\xd7\x37\x03\xc2\x99\xdd\xb1\x46\xa3\xe8\x6b\xeb\x58\x6f\x6d\x2d\xe5\x90\x88\x8e\x70\x40\x6b\x9e\xfb\x13\x8f\x44\x06\x83\x8f\x0b\xbd\x32\x68\x82\xf3\xa9\x5e\xa6\xce\xeb\xa7\x02\x66\x46\xb6\x79\xc2\x66\xc9\x8a\xd8\x37\xbb\xc2\xfe\x85\xf2\x10\x72\x71\x8a\xbc\x0c\x9b\x1e\xf7\x5d\xce\xa3\xe1\x70\x51\xaa\x48\x29\x11\xee\x4f\x46\x90\xc2\xda\xa3\x28\x88\x14\x85\x36\xff\x68\x71\xa4\x83\xea\x95\x22\x59\xfc\xdc\x60\x92\x4d\xde\xfc\xdf\x45\x94\xfa\x02\xd8\xe1\xa0\x92\x31\x53\xb2\x99\x6d\x67\xb3\x8c\x94\x84\xe9\xfc\x35\xc4\x2d\xd2\x34\xfd\x52\x4a\xa2\x4f\xb7\xfd\x16\x11\x0c\x27\xac\x1c\x93\xdc\xa8\x9f\xe3\xa3\x19\x97\x7d\xd6\xd4\x17\x01\x6b\xd6\x18\x87\x65\xd9\x15\xef\x21\x2f\x07\x5f\x8d\x3d\xf2\x35\x09\xc3\x44\x86\x1e\x17\xe0\xb0\xac\x8b\x42\x1c\x57\xde\x6e\xaf\xaf\x6b\xf2\xf7\x7a\x37\x16\xd1\xae\x81\xc3\x68\x1c\x24\x64\xf8\x57\x63\x1d\xfc\x0e\x19\xfe\x9b\x46\x21\x5c\x9f\x37\x13\x56\xfa\x8a\xe2\x0f\xbf\x23\xee\x1e\x1b\x8c\xb0\xe6\x78\xc6\x97\x8d\x2c\x7c\xaf\xf7\x04\x27\x76\xc4\xce\xff\xa6\xba\x13\xbc\xfe\x9c\x7d\x3c\xeb\xec\x8d\x08\xd0\x44\xcf\x72\xaa\x8f\x38\x2e\x48\x87\xba\x8a\xfe\x96\xe1\x75\x0e\xc2\x1e\x56\x94\x8f\x0e\x70\x7c\xdb\x5f\x12\x52\x79\x8c\x1f\x9a\x10\xb0\xe3\x5c\xd1\xcc\x19\xb6\x8b\xd2\xd4\x60\x27\x0e\xaf\x61\xfb\xd2\xa7\x2e\x77\x2f\x3c\x8e\x4e\xb4\x78\x4d\x3b\xff\x8e\xe3\xe1\xc6\x92\x00\xf2\x6e\x97\x71\xa7\x32\x74\xb3\xaf\xc3\x1b\x45\xd1\x25\x6e\x1a\x60\xe8\x25\x5e\x72\xf7\xea\x40\xdb\x43\x5e\x6d\x68\xca\xa5\x09\x4b\x5c\x1e\x99\x15\x79\xd1\x7d\x45\x99\x2d\x67\x75\x6b\xc1\x79\x4c\xee\xd4\xcd\xb3\x0b\x9f\xf4\xde\x72\xfc\x19\x37\x8d\x2c\x9b\x5a\x85\x47\x13\xa4\xbb\x37\xe8\x04\x13\xe0\x79\x9f\xdf\x5c\xa7\xba\x40\x1f\x2d\x27\x46\x08\xfd\x29\x70\xfd\x93\x35\xdd\xf6\x4a\xf5\x73\xf4\xf1\x53\x4e\xc1\x5d\x94\xa5\xae\x81\xd4\xcd\xbf\xe7\xe9\x2b\x97\x83\x9b\x52\x91\x7f\x77\x27\x93\xf7\x5c\xfc\xfe\x64\x55\xfc\x0d\x90\xee\xbf\x53\x88\xfe\xdd\x6c\x5e\x17\x56\x72\xcd\x9f\x3c\x5b\x3d\x7a\xf3\x78\x0a\xe8\x49\x0c\x67\xc2\x4d\xe4\x69\xe2\x64\x77\xb3\x1f\xc1\xbd\x67\x97\xa7\x78\xea\x1c\x95\x30\x9c\x8b\xee\x3d\x1f\xa3\xed\xc7\x7e\x69\x7d\xfa\x21\x2c\x14\xf3\x8e\xdb\x18\x32\xeb\x21\xfe\x9e\x42\xdc\xaf\x38\x0e\x16\xac\x3c\xe2\x9c\x5a\xc9\xb9\x02\x7d\x5d\xf6\x9b\xea\x32\x3b\x4c\x49\xe7\xef\x08\x4e\x2b\xed\x9e\x66\xb3\x02\x37\x3e\x0d\x53\xe8\x84\xda\x34\xbc\x1e\x99\xdb\x5b\xa7\x09\x77\xf1\xf3\x15\xa7\xe9\x4c\x6a\x44\x99\xfe\x4e\xc1\x12\x90\x39\x47\xd2\x57\x91\x1b\x99\xd8\xad\xa9\xca\xbb\xc5\x69\xf2\xc4\x05\xbb\xfe\xf4\x17\x03\x44\x39\xcd\xa8\xd6\x58\x1d\xda\x66\x3d\x85\x26\x50\x2b\x3c\xd9\x99\x56\x89\x09\xd8\x28\x1b\xd1\xfb\x2c\xe6\x4d\x8a\xaf\x16\xb8\x19\x2d\xcf\x0b\x6f\x58\x3f\x24\xb4\x9a\x99\x6f\x81\x9b\x91\xf9\x9a\xb5\x7f\x80\xa2\x0e\xfe\x0e\xd2\xdb\xc1\xdf\x21\x6a\x3c\x3c\x65\x30\x50\x2a\x9c\xa4\xc6\x60\xb1\xb0\x36\x33\x71\xd9\x1f\xf4\x53\x97\xba\x84\xf7\x8d\xaf\x31\x37\x47\xaf\xa0\xf4\xae\x1a\x57\x2b\x8c\x85\xd7\x8d\xc7\x17\xbc\xf4\x93\x8e\x44\x22\x8d\x9c\x27\x26\xe1\xa5\xe3\xa3\x37\x31\x4a\xbc\x1d\xa3\x3e\x45\x9c\xfb\x59\xeb\x5e\x77\x9e\x8f\x8a\x4a\xea\xe9\x51\x72\x93\x7e\x3e\x59\x8c\xfa\xff\x0f\x64\x85\xb4\xfa\x76\x0f\xe0\x7a\xc7\x44\x94\xfc\xa9\xcd\x03\xb9\x29\x0a\xd1\xd9\xbb\xcf\x50\xb4\xce\x7c\xf0\xc6\xaa\xd2\x7e\x53\x8b\xe5\x7a\xd2\xed\xc4\x0b\xf4\xd7\xc1\x83\xbb\xfd\xa9\x34\x3d\x8b\xfc\x38\xf2\x9f\x70\xc3\x51\xe7\xa7\xcc\x0d\x5b\xee\x1d\x84\x76\x17\xb0\x07\x2f\x33\x17\x25\xa8\x5a\x81\xf0\x4e\x6d\xb5\x71\xd9\xad\x2a\xfa\xf0\x4e\x82\x44\xce\xe8\x5f\xe8\xd0\xbe\x31\x1c\xf4\x94\x06\xc8\x36\x30\xb6\xf7\x33\xc4\x20\x3e\xce\xe3\x58\x14\x21\xf7\xfd\x3d\x73\xd6\x33\xd7\x7f\x91\xc2\xd3\xe3\x6e\x08\xc7\x1d\x57\x6e\x8c\x58\x2d\x88\x8b\xae\x5d\x5f\x98\xa3\xe1\x3d\x50\xa9\x0b\x06\xbf\x95\x82\xce\xd1\x99\x3e\xac\x7c\x56\xe5\xaf\xc7\xc8\x00\x72\x3e\x2b\x22\x00\xe9\x8f\x99\xa4\x00\x65\x21\x85\xdf\x2a\xc9\xc0\xf1\xad\xf3\x24\x90\xe4\x27\x47\x32\xf3\x0b\x3a\x04\xe8\xa5\x3f\x1e\xe2\x82\x5a\x99\xd5\xfb\x37\xff\xfe\x7a\x07\xb1\xe4\xf7\x3d\xe4\xec\xe4\xaf\xb3\x2a\x6c\x95\xa4\x51\xf6\x13\x1c\xf1\xc4\xfc\xa6\xe3\xc0\xc6\xb1\x32\xa0\x3c\xb7\xc3\xea\x50\x4e\xea\xbb\x2a\xfe\x66\x8c\x2c\x07\xd3\x3a\xc1\xb9\xbe\x40\x6e\x85\x1c\x6f\x61\x36\x62\xb6\x8b\x75\xb7\x38\x80\xc3\x4e\x04\x48\x0d\x52\x91\xfa\xbd\xa7\x24\xdc\x1b\x6d\x1d\xa3\xce\x77\x62\xbd\xf6\x03\xf2\x19\xb8\xa8\x98\xdd\x41\xbb\x18\xee\x9d\x44\xdb\x82\x39\x41\x4f\x9e\xa0\x06\xd7\xa4\x98\x3d\x78\x26\x8b\x63\x85\x91\x72\x27\x36\x75\xef\xfb\x33\x34\xf9\x85\x9e\x07\x46\x25\x7c\xba\xf7\xbf\x01\x00\x00\xff\xff\xfe\x0c\x63\x92\x2f\x71\x00\x00" +var _lockedtokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3d\x5d\x93\xd4\x38\x92\xef\xfd\x2b\x04\x0f\x33\xd5\xbb\x4d\x35\xb7\x77\x71\x0f\x15\xf4\xb0\x0d\x0d\xb3\x1d\xc3\x00\xd1\x0d\xc7\x5d\x5c\x6c\x6c\xa8\xec\xac\x2e\x2d\x2e\xcb\x23\xd9\x55\xd4\x11\xfc\xf7\x0b\x7d\x5a\x9f\xb6\xab\x60\x67\x98\x5d\xfa\x05\xca\x96\x52\xa9\xcc\x54\x2a\xbf\x24\x9f\xff\xe1\xe4\x04\x21\x84\x5e\xd0\xe2\x3d\x94\x6f\xe8\x7b\xa8\x39\x22\x9b\xa6\x82\x0d\xd4\x2d\x47\xed\x1a\xd0\xaa\xab\x8b\x96\xd0\x1a\x57\xa4\xdd\x23\x06\xbf\x74\x84\x41\x89\x5a\x8a\x36\xb8\xc6\x77\x80\x9e\xbf\x78\xf5\x4e\x42\x59\x76\x7b\x60\x1c\x55\x12\x18\x6a\x15\xb4\x15\xa3\x1b\x09\x47\xfe\x46\x1c\x57\x30\x57\x83\x3e\xc3\xc5\x5a\x3f\x5d\xd3\xaa\x04\x86\xee\x40\x8c\xb9\xa3\x08\x17\x05\xed\xea\x96\xcf\xd1\xab\x1a\xcc\x2f\x44\x24\x42\x84\x79\x23\x48\x50\xba\xc5\x1c\x5d\xb7\x68\x47\xaa\x0a\x2d\x01\xfd\x9d\x92\xba\xad\xf6\xa8\xa0\x75\xcb\x68\x55\x41\x89\x96\x7b\x89\x49\xc7\x81\x21\x5c\x97\x0e\x5a\xb8\xdc\x90\x9a\xf0\x96\xe1\x96\xb2\xb9\x84\xf9\x26\xfd\x12\x6d\x3a\xde\xa2\x82\x3e\xe0\xe4\xae\x56\x10\x18\xae\xf9\x0a\x18\xa2\x2b\x84\xeb\xbd\x3f\xff\x24\x2c\x54\xe0\xba\xa6\x2d\x22\x75\x0b\x0c\x17\x02\xe7\x76\x2d\x61\xe9\x89\xc8\x4e\xe2\x21\xed\x5a\x84\x9b\x86\xd1\x2d\xae\x42\x52\x2a\xa2\x9d\xc9\xb6\xf0\xa1\x80\xa6\x15\x4c\x29\xa1\xa1\x9c\xb4\x08\x97\x25\x51\x6c\x33\x08\x59\x3e\x51\x26\x1a\x76\xb5\x78\x8e\xe0\x03\xe1\x2d\xa9\xef\xe4\x6b\x84\x5b\x04\x82\x2d\x1b\x52\x01\x6f\x69\x0d\x88\xd4\xce\x90\x5b\x50\x6d\x1b\x60\x84\x96\x9a\x8f\x62\x72\x1c\x0a\x5a\x97\x01\xa7\xf4\x10\x50\x6a\x8a\x1b\x26\xbd\x59\x13\xee\x34\x95\x40\x48\x8d\x56\x5d\x55\xa1\x86\x72\x0e\x9c\xd0\x5a\x32\x48\xf3\x4e\x50\x36\x64\xdc\x5e\x10\x11\x95\x14\xed\xd6\xb8\x85\x2d\x30\x09\x46\xbe\xd8\xe1\x5a\x93\x94\x84\xa3\x49\xe1\xe0\x2d\x65\x80\x30\x2a\x70\x83\x97\x44\x8a\x75\xbb\xc6\x2d\xc2\x55\x45\x77\xdc\xc0\xd9\x08\x22\x09\x28\x25\xc3\x3b\x23\xcd\xbb\x35\xd4\x6a\x90\x25\x14\x74\xe3\x4c\x51\xa0\x85\x2b\x4e\x51\x4b\x25\x84\x06\xd8\x8a\xb2\x0d\xe2\x2d\x7e\x2f\x48\x46\x1b\x60\x58\x30\x84\x5b\x6e\x07\x92\xcc\x35\x3d\xdf\x89\x31\xb0\x47\x33\x41\xd0\x82\x01\x6e\xa1\x3c\x43\x4b\xda\xae\xed\x0a\x41\x98\x09\x1e\x91\x96\xe0\x8a\xfc\x1f\x94\x12\xb8\x99\x02\x61\x88\x01\x6f\xa0\x68\xc9\x16\x10\x5d\xfe\x1d\x8a\x96\x2f\xdc\xd5\xfe\xb3\x5c\xc2\x0c\xad\x84\x4c\x08\x3e\xae\xb1\x58\xdc\x1a\xba\x92\x2d\x31\x33\xd9\xf8\x2f\x6a\x95\x9a\xb6\xfd\xd4\x7b\xc6\x6a\x1e\x15\xb8\xaa\xb8\xd5\x1c\x8a\xa4\xb4\xf6\xa0\x24\x88\x6b\xe5\xdb\xc7\x42\x71\x3c\x4d\x55\x5c\xf8\x24\xf5\x09\x7a\x72\x82\xfe\x70\x7e\x72\x42\x36\x0d\x65\x2d\x7a\x5e\xd1\x9d\xc4\x40\x0d\xf4\xf0\x83\x90\xf8\x37\xaf\x7e\x7a\xf6\xf2\xf2\xea\xea\xe6\xd9\xed\xad\x6d\xd8\xd5\x77\x64\x59\x81\xdf\xf8\xed\xcb\x1f\xaf\x9f\xbc\x78\x96\xec\x50\xd1\xdd\xf5\xd5\x1b\xbc\xac\xe0\x56\x23\xe6\x0c\x71\x7d\xf5\xe6\xf2\xc9\x8b\x67\xb7\x6f\x2e\x7f\xba\x7e\xf9\x63\xa2\xeb\x6d\x4b\x19\xbe\x83\xe7\x00\xdc\xed\x77\xfb\xe6\xd5\xcd\xe5\x8f\xcf\x9e\x3f\x7b\x76\x1b\x74\xd2\x83\xbc\x66\xf4\xc3\xde\xf4\xd0\xe0\x5f\xdf\xbc\xfa\xef\xff\x31\xcd\x4f\x70\x51\x00\xe7\x33\x5c\x55\xa7\x6a\x2d\x09\x65\xe3\x29\xfb\x8f\x27\x46\x81\xda\x86\xb0\x85\xba\x45\xb7\x92\x07\x97\x8a\x05\x37\x70\x47\x78\x0b\x0c\xca\x19\x2e\x4b\x06\x9c\x2f\xd0\xa5\xfa\xcf\x69\xa6\xff\x5b\x2d\x1d\x53\x20\x0c\x82\x78\x41\x36\xa4\xbd\xae\x85\xf8\xf3\x44\xef\x33\x44\xf4\xbb\xcb\x8d\x18\x68\x81\xde\x3e\x27\x1f\xfe\xf3\x3f\xce\x50\x0d\x3b\xd9\xd7\x3c\xc9\x8e\xf3\x22\x8d\xe8\x25\x7f\x49\x4b\x48\x0c\x58\xd3\x12\xae\xaf\x16\xe8\xb6\x65\xa4\xbe\xcb\x11\x20\x0b\xf5\x0a\x2a\xb8\x13\x5b\xc9\x04\xd0\x83\xb0\x15\x0b\xaf\x94\xc2\x4f\x92\x06\x7b\x24\xd1\xe0\xce\xcf\xcf\xd1\x6b\x2c\xd6\x0b\xd5\xaa\x30\x5c\x38\x7a\x67\x97\xda\x83\x76\xac\x00\xdb\x4f\xef\x06\xfe\x02\x8d\x90\xac\xa0\x4d\x28\x19\x2d\xe6\x62\x68\x31\x41\xfb\x63\x08\xab\x86\x91\x2d\x6e\xc1\x55\xd5\x46\xfd\xf4\xbb\xbf\xe8\xaa\x31\x9e\x88\xca\x6b\x05\x56\xa1\xe2\xfc\x98\x82\x8a\x47\x28\xb5\x9d\x57\xa4\x7e\xff\x79\x24\xba\x14\x70\x8e\xc1\x4a\xdb\x13\xc2\xbe\x91\xaa\x30\x44\x43\xbd\x3f\x04\x8b\xa7\x16\xd6\x31\x0c\xf3\xec\xb9\x9c\xf8\x84\x3b\x47\x12\x2f\x67\xb3\x98\x80\x48\xb7\xac\x48\x81\x9a\x08\x9f\x81\x3d\x5e\xf4\x63\x80\x4b\xa1\xae\x49\x2d\xb6\x15\xb9\x3f\x23\xbc\x94\x56\x17\x9a\x80\xa3\xb7\xc6\xaf\xeb\x15\x55\x78\x68\x0e\xda\xff\x87\x04\x93\x88\x58\xae\xa8\x9d\x9d\x32\xb4\xa3\x5d\x55\x2a\xdc\x6d\x07\x31\x07\x43\x46\xd5\x51\x5a\x1f\x1d\x17\xa4\xd6\x36\x41\x80\x29\x1f\x47\xf5\xa9\x1a\x71\x2a\x83\x07\xf1\x6d\xc4\x34\xf9\xda\xc5\x98\xb0\xec\x82\xd5\x02\xa9\xb7\x73\xd1\xde\x18\xac\x8e\xf9\xab\x46\x10\xbc\xe8\xc1\x4c\x9e\xd4\x18\x0b\x84\x91\xd2\x4b\xbb\x8b\xa8\x92\x8d\x9c\x57\xe0\xd8\xcc\xda\x5e\xd1\xc6\x72\xaf\x83\x42\xa3\x39\x34\x97\xc3\x29\x58\xc6\x4a\x47\x60\x85\x0b\x0f\xb3\x8f\xb2\x7d\xd8\x67\xd5\xd5\x76\xc7\x73\x36\xc8\x59\x09\x55\x8b\x7b\x4d\x2f\xba\x7d\x72\x27\x2d\x4c\xf2\xa4\x6e\x17\xb6\xa5\x94\xb9\x32\xad\xba\x1c\x4f\x4f\xe1\xd1\x73\x9a\xc6\x3b\xc7\x16\x77\x95\xb1\xd8\x14\x30\x65\xab\x9c\x97\x6a\xd7\x13\xe4\x30\x23\xf3\x01\x8a\xc4\x3a\x7b\xe1\xdb\x65\xf3\x1b\x28\x80\x6c\x81\x9d\x05\xcf\x5f\x33\xba\x25\xc2\x31\xf2\x69\x69\x89\x69\xc9\x21\xdc\x02\xc4\x60\x05\x0c\xea\x02\x0c\xbe\x25\xac\xe4\x14\xa4\x3b\xa4\x66\x33\x44\x9d\xb9\x0b\xd7\x1b\xe3\xb2\xf2\x3c\x2f\x2b\x34\x0c\x3c\x80\x84\xab\x51\xce\xd0\x6e\x4d\x8a\xb5\xf4\x6a\x96\x86\xd4\xba\xd1\x8e\xa2\x1d\xde\xf3\x85\x07\x1f\xa1\x7f\x3b\x45\x57\x84\x41\xd1\x56\x7b\x61\x05\x21\xac\x5c\x51\x65\x13\x1b\x17\x55\xb9\xbd\xd2\x67\x88\xf4\xb3\x62\x53\x24\xe9\xc1\x30\x7f\x3a\x45\xd7\x75\xa9\x07\x42\x5b\x82\x25\xa0\x98\x41\x09\x1c\x7a\x04\xc2\xb1\x93\xb2\xbd\xc5\x4c\x11\x63\x81\x9e\xda\x65\xf9\xe8\x3b\x6b\xb8\xcf\xff\x4b\xbc\xfc\x21\xe4\x25\x68\x3b\x47\xba\x89\x8a\xca\x46\x53\x1a\x77\xa4\xb6\xce\x86\xc7\x30\x74\x2d\x5d\xab\x12\xb4\x75\x69\xfd\x3b\xd5\xcf\xf4\xe1\x59\x6c\xbb\x7e\x05\x9a\xb5\xe7\x63\xf7\xaa\xd1\x4e\xb8\xb0\x25\x85\xdd\xee\xac\xbc\x39\x7a\x27\xdc\x51\x5a\x57\xc2\x9d\x44\x2b\x22\x83\x14\xa4\xf7\x75\x3d\x48\x82\x96\x1c\x75\x8d\x10\x54\x21\x20\xd2\x56\xd4\x6e\x25\xcd\xd3\xb3\xb6\xe3\x2e\xd0\x9f\x63\x47\x65\xde\xe3\xf5\x78\x00\x73\x6b\xb3\x7e\x29\xe4\x4b\x03\x70\x10\x71\x3b\x6c\x1e\x77\xdb\xc4\x41\x5f\xf8\xc3\xb3\x09\x82\x74\xea\xe8\x58\xf1\xc7\xa1\x5a\xcd\xd5\x9a\xbf\x50\x82\x18\xbf\xee\xe9\x89\x1e\x3d\x40\x35\xa9\xd2\x4d\x7a\x82\xe5\x5a\x39\xa2\x83\x2e\xd0\xc3\xf9\x43\xdb\xe4\x53\x3f\x93\x12\x78\xcb\xe8\x1e\xcd\x42\x54\xcd\x8b\x00\xa7\xe1\x36\x57\x11\xd1\x3f\xb9\x3c\xcf\x28\x58\xe3\x64\xfb\xe2\xa1\xdd\x0e\xde\x1b\x73\x66\xe9\x29\x3d\xea\x93\x2f\xdc\xc1\xf4\xa6\x3f\x13\xce\xab\xe0\xad\x37\xb0\x64\x4e\x92\x37\xba\x9b\xf1\x2d\x95\x03\xa4\x81\x3c\x7a\x20\xfe\x3d\x4d\x4d\x4d\x8f\x2e\x40\x78\xc3\x27\xe1\x4c\x41\x46\xd8\x1e\x72\x82\x37\xb0\x42\x17\x8e\xdc\xcc\x97\x94\x31\xba\x9b\x9d\xde\x3b\x89\x3a\x2c\x71\x85\xc5\x46\x73\x21\x5d\xf6\xb9\xfe\xe9\xb7\x33\x40\xe7\x3e\x81\x1e\x3d\x40\x6a\x72\x31\x49\x06\x6c\x01\x3d\x42\x92\x24\x11\xb7\xcd\xb6\x99\xe6\xf6\x3b\xa3\x09\x23\x76\xdb\xa0\xcd\x30\xc3\x8d\x2a\x9d\x05\x2e\x69\x9a\xde\x01\xb9\x19\xb4\x1d\xab\xd1\xa3\x07\x72\xc6\x06\x54\xc0\x3d\x03\x58\xfd\x3b\x4d\x0e\x46\x40\x1d\x82\x63\xc3\x20\x78\x82\x52\x2b\xfd\x87\x0b\xeb\x94\xdf\xbf\x81\x5f\x3a\xe0\xad\x30\x26\xd4\xfe\x05\x1f\x0a\x80\x32\xa4\x31\xaa\x44\xcf\xfb\x1e\xec\x4f\xbe\x24\x34\x94\x87\xf8\x24\x47\xbf\xb8\x40\x4b\x58\x51\x06\xb3\xf0\xd5\x29\x7a\xd0\x23\xf6\xb6\x29\xb1\x40\x2b\x85\x87\xd8\x2f\x49\x5d\x50\x26\xec\x81\x41\xa4\x8e\x5a\x24\x4a\xfb\x3e\x7a\xd0\xaf\x84\x48\x72\x0c\x83\x53\xea\x21\xbb\x16\x92\x9d\xac\x5c\xf9\xb2\x1b\x4b\x8c\x15\xe3\x3b\x68\x9f\xa8\x55\x35\x3b\x35\xf2\x71\x84\x6e\x48\x20\x61\xe7\x6b\xf4\x42\x1e\x1b\x57\x8f\x8d\x39\x02\x29\x2d\xea\xef\x3c\xd1\xa3\x07\x48\x82\xc8\x68\x0d\x37\xf4\x34\x77\x2c\xec\xa4\xda\x78\x8a\xdd\xbc\x8b\x72\xfd\x60\x0b\x6c\x8f\x5a\xb2\x11\x66\x80\xf1\x90\x18\x54\x62\x1e\x68\x8d\x9b\x06\xea\xb4\xbd\x35\xcd\xf3\x39\x62\xc2\x7f\x0c\x26\x2c\xfe\x40\xbc\x18\x0e\x40\x4a\x38\x74\x57\x03\xbb\x37\xc7\xb9\x60\xa4\x84\xec\xc6\x22\xa3\x85\x37\x99\xce\x3a\x70\x9e\x24\xb4\x89\x2f\x0a\x97\xa6\x86\x9d\x6f\x1b\xf6\xd1\x71\x61\x00\x99\xe8\xb1\x0d\x08\x7b\x80\x54\xd6\x65\xb3\x11\x3b\x3b\xae\x4d\x66\xc1\x31\xb0\xa3\xcd\x5e\x38\x78\x90\x65\x18\xd3\x88\xc9\x50\xaa\x8c\x6e\xd6\x2b\xba\xf0\x22\xd8\xd2\x8c\x13\x8f\xa3\x78\x65\xc0\x4b\xb2\x92\x8b\xcb\xb7\xc0\xd2\x46\x59\x42\x19\x8a\xae\xda\x19\x15\x83\xa1\x8b\x44\xd8\xde\xa2\x32\x33\x81\xd8\x1e\xf2\x9c\x94\x81\xfa\x90\xf3\xe5\x1c\x58\x3b\x8b\x9e\x4b\xd9\xeb\x47\x9b\x2b\x7a\x49\x48\x25\xfa\x63\xe2\xd5\x53\x49\xf4\x36\xf3\xf6\x6d\x6d\x32\x1e\xf9\xb7\x99\xae\x37\xb0\xc3\xac\x84\x52\x28\xff\x87\xf3\x87\x67\x49\x54\x37\xc0\x39\xbe\x83\x05\xba\xff\x54\xa5\x26\x0d\xdf\x5c\x79\xea\xea\x96\x54\x08\x57\x55\xb4\xf7\x37\x0c\xb6\x84\x76\x5c\xb5\x5b\xe3\x2d\xa0\x25\x40\xbf\xbf\xd6\xf7\xa3\x51\x13\xb4\x34\xf6\x6a\xc6\x9c\xfd\x12\xdb\x8b\x46\xfc\xf0\xfd\x65\x92\xe0\x25\x04\x0a\x97\xa5\x90\xa9\x1b\x28\x28\x2b\x67\xa4\x54\x12\x25\xd9\x43\xca\x33\xc4\x68\x05\xce\x23\xf1\x53\x28\x8b\x76\x47\x99\xe8\x7e\x69\x74\x8d\x6d\x11\xbd\x73\x9b\xff\x04\xfb\x64\xd3\x9f\x60\x7f\x66\x24\xc3\x6f\xd3\x3f\x3c\x43\x81\x1c\x0a\xab\x53\x3d\x0a\x48\x91\x60\x53\xac\x3a\x27\xe6\x54\x92\x3a\xd4\x5d\x7b\x9a\x52\x19\x2d\x19\x2b\xbe\xde\xef\x3a\x40\xe9\xa9\x40\x71\x55\x01\x43\x6b\xac\x94\x5a\x03\x05\x59\xa9\x6d\xeb\xfa\xca\xe4\x9f\xd3\x1e\xb7\x86\xb0\x97\xa1\x1d\x27\xcc\xa5\x63\x9c\x68\x40\x2b\xf6\xa9\x20\x3f\xf1\x33\x51\x13\x96\xae\x93\x99\x75\x3d\x33\xba\xd0\x76\xce\x6b\xc3\x2b\xb7\x89\x45\xd1\x76\x9c\xab\x27\x67\x0e\x28\xef\xf5\xc1\x0a\xd3\x43\x29\x54\x99\xa9\x97\xae\xd2\x4c\xbd\x77\xd5\x66\xfe\x7d\xb6\xfb\x17\x51\x9d\x3d\x93\x7e\x2d\xfd\x19\xc7\x56\xd0\x17\x50\x9f\x39\xc6\x85\x86\xab\x70\x71\x12\xb2\x74\x07\xad\x15\xa7\x9f\x49\x4d\x36\xdd\x46\xb2\xf6\x46\x15\x14\x6d\xa0\x6e\x67\xa7\x31\x85\x7b\xea\xfe\xdc\xf1\x56\x91\x46\x85\x69\xd5\x3a\xa3\x35\xda\x28\x68\x2a\xca\xca\x7a\x70\x26\x60\xab\x2d\x16\xe5\x59\xb4\xd4\xe3\x0f\x2d\xc1\x27\x6d\x42\xed\x7f\xd6\x9e\x31\x61\x89\x26\x88\x65\xad\x26\xd8\xc5\x2a\xc2\xac\xba\x43\xf5\x75\x2f\x16\x07\xa8\xeb\x44\xb2\x7a\x5c\x67\x5f\x0d\x79\xdf\x56\x09\x2a\x39\x93\xfb\xc1\xe9\x02\x7d\x37\x1c\x9b\x4c\x38\x59\xb5\xdc\x57\x57\xe3\x5d\x2f\xd0\x77\xe1\x66\x8d\xf9\x58\xaf\x94\x8f\xa6\x47\x9c\x32\x39\x06\x1b\xba\x05\x33\xb9\x91\xc0\x6b\x66\x72\x79\xf3\x36\xe3\xc6\x8a\x76\xd3\x91\xeb\x59\x3b\x80\x61\x1f\x5e\x4d\x20\x59\x42\x35\xb8\xf3\x64\xd0\x2c\xa1\x72\xb0\x44\x89\x4c\x95\xcd\x87\x71\x93\x94\xc3\xf5\x7e\x49\xcb\xbd\x5a\xbf\xb8\x4c\x24\x6c\x9d\xa5\xee\xe5\x66\x46\x12\x6e\x51\x0a\x77\x20\xef\x76\x07\xad\xd7\x5c\x9b\x60\x82\x7e\xfa\xbf\x93\xbb\x46\x51\x84\xa1\x9e\xae\xb7\x3b\xdc\x61\x4b\x60\x67\x7a\x49\x5f\xe6\x4a\x74\x50\x46\xc5\xe3\xd1\x1e\xfd\x7e\x2f\xbb\xbd\xbd\xae\xdb\x7f\xff\xd3\x01\xdd\xd2\x23\x3a\xcc\xbd\xb5\x89\x2f\xed\xcc\x8e\x56\x02\x58\x8e\x39\x2e\xf0\xe1\x99\xc0\x14\x93\xe3\x24\x92\x62\xa1\x31\xf6\x74\x9e\x6f\xa6\x10\x3c\x8d\x13\x7e\x61\xc2\x22\x2c\xbf\x09\x43\x21\x7e\x21\x02\xe1\xa8\xe3\xaa\x8e\x56\x01\xca\x64\xd5\x3c\x20\xf9\xda\x12\x17\x21\xf5\x58\x21\xd5\x7a\x19\x54\x37\x19\x12\x0f\x15\x24\xd6\xde\x6a\xf4\x72\x35\x77\x4e\xae\x47\x9a\xcd\x3a\xd9\xd7\x35\x7e\x40\x81\x8f\xa5\xaa\x54\x38\xcb\xcf\x55\xc9\xc0\x80\xa9\x54\x7c\xe9\x3f\x7e\x3c\x8c\xa6\x63\x81\x1f\x81\x69\x36\x2f\xe5\x63\x69\x45\x3e\x42\xd4\x7f\x13\x26\xa5\x74\x4d\x5c\x54\xa8\x75\x10\x9b\x42\x6f\x20\x1d\x7a\x76\x41\x5a\x9b\x0e\xdd\xbb\x10\x8a\xd9\x98\x53\x0d\xe6\x62\xd2\x89\x82\xd0\xbe\x2c\x62\x30\xc6\x2b\x55\xbf\x59\x38\x17\xc8\x9b\x5e\xdc\xd0\x45\x09\x5d\x78\x18\xfa\x60\xc5\x7a\x51\xa5\x2d\xca\x86\xe6\x6a\xf3\x6b\x64\xc1\xa3\x5c\x3e\xa9\x34\x79\x9f\x78\x4e\x8c\x1d\xc8\x16\xba\x48\x0b\xd7\xcc\xe7\x44\x84\xf6\x69\x84\x68\xe1\x22\xda\x9b\x7b\x9f\x8b\xab\x2f\x47\x1e\xba\xfe\xab\x71\x8c\x13\xbc\x93\x0b\xa7\xd5\xf5\x39\xba\x4c\x57\xe6\x66\xa5\x9c\xa4\xea\x22\x12\x32\xa2\x0a\x8a\xb3\xea\xa7\xb7\xf1\xdc\x5e\xd2\xd6\x4b\x00\x4b\x66\x7c\xa2\xc9\x24\x62\xe8\xa9\xb0\xa9\xab\xe9\x33\xf1\x52\x01\x9f\x27\x8c\x06\xbb\x0d\xa8\xb2\x25\x5b\x36\xa3\xca\x16\xd2\xda\x7f\x9a\x6d\x30\x30\x45\x1c\xac\x98\x28\xc8\x91\xc5\xd6\x38\x5d\x23\xd8\xca\xcd\xb7\x5b\xca\xd0\x87\x82\x63\xbc\x26\xae\xca\xbe\xc4\x46\x0b\x6c\xab\x0c\x2a\x27\xa7\x57\x75\xc2\x15\x2d\xb0\x2c\x38\x13\xc2\xdc\x50\x66\xeb\x0c\x0d\x64\xbd\x63\x6a\xd4\x0c\x4a\x44\xb8\xb3\x2d\xc2\x5b\x4c\x2a\x61\x56\xca\x02\x2a\x9e\x0f\x15\x8f\x9a\x48\x03\x04\x4c\xc9\xd9\xdc\x4d\xd6\xa0\x07\x61\xa9\xf5\x7c\x63\xbc\x50\xf9\xe8\xa6\x9f\x7f\x46\xb4\x5c\x2e\x58\xbb\x45\xe5\xc4\x0e\x97\x95\xa4\x49\x77\xe8\x04\x9d\x34\x42\x4e\x74\x6c\x9a\x5e\x7b\xb1\x09\x9f\xd8\x54\x1e\x6d\x30\x7b\xcf\xd5\xc9\x07\xcc\x3d\x20\xfe\x21\x07\x97\x9f\xc6\x11\xce\x4e\xf5\xc8\x44\x7f\x72\xba\x61\x4e\x3c\x9b\xef\x3f\x3a\xb9\x1d\xc6\x65\x5c\x32\xe9\x93\x24\x3b\x5b\xf5\xc2\xbb\xa2\x00\x28\x7d\x03\x4d\xad\x04\x7b\xb2\x41\xe7\x4d\x08\x47\x95\x32\xf1\x70\x8d\x28\x43\xf0\x4b\x87\x2b\x5b\x3f\xe7\xf1\xef\x1f\x93\x38\x1f\xa0\x6a\x36\x96\x91\x91\xa8\xe0\x90\x87\x14\x7b\xbb\x85\xa8\xf9\xeb\x23\x38\x5e\xac\x25\x6f\x06\x6a\xa0\x7b\x1d\xdc\xa1\x62\xeb\x14\xdc\x52\x91\xb2\x35\x48\x5f\xcf\x54\x91\x12\x65\x7f\x65\xc9\xa5\x76\xe3\x7e\x53\x3f\x26\xe7\x34\x51\x1c\x33\xa9\xad\x3a\x82\x9c\x0c\x0e\x7d\xcd\x26\xce\x6f\xce\x79\x1b\x6c\xbf\xbe\xb2\xe5\xc3\xf2\xb7\x37\x84\x36\xb6\x60\x28\xd2\xde\xcb\x43\x2e\xd6\x7e\x04\xc7\xf3\x31\x39\xc3\xf2\x63\x03\xa0\xff\x44\xe6\xe5\x13\x63\x4a\xde\xb7\xb6\xe4\xfd\xa0\x28\x58\x5b\x90\x7a\xff\x71\xca\xaf\x55\x32\xc6\xcf\xb0\xf4\x1e\x1e\x96\x67\xf8\x12\x07\xc0\x12\x27\x2f\x53\x32\xa1\x78\xab\xf5\xc3\x69\xc6\xcb\x9c\x5e\xde\x13\x2e\x3b\xed\x62\x25\x93\x05\xf7\xc5\x1a\x0a\x47\x2a\x29\xf0\xfa\xfb\x56\x1d\xc5\xbc\x17\xfa\x5b\xee\x2f\xd7\x22\x08\x86\x4d\x1a\xc4\x93\x43\x43\x89\xe0\x5e\xe0\xac\x0d\x99\xe2\x29\x1c\xbd\xa6\x3d\xae\x8f\xe7\xa4\x3c\x46\x62\x1c\xaf\xfe\x78\xa1\x49\x84\x06\x0e\x97\x1b\x2f\x6c\x9a\x5b\x35\x87\x49\x4f\xd0\x77\x92\x00\x05\x7d\x8e\x97\x21\x1f\xd0\x41\x62\x94\x8e\x17\xfe\x0a\xb2\xd4\x47\xa5\x33\xe2\x74\x78\xa8\xf2\xd7\xc5\x5a\xed\x17\x21\xe6\x4e\xa4\x74\x24\xf8\x16\xc5\x49\x79\xcb\x3a\x7b\xb6\xf3\x65\x18\x47\x8b\x4c\x1f\x5f\xd1\xe5\x63\x5d\x47\x86\x0f\x65\xac\xeb\xd7\x8f\x69\x5d\xd7\x5b\x5c\x91\xf0\x10\x63\x3e\x94\xe5\xfe\x1a\x0d\x50\xe5\xa5\xac\xaf\xc7\x13\x6c\x7d\x25\xd5\xd3\x33\xb1\x0e\xf9\xec\x6f\x06\x0b\x95\xa8\x8a\x27\x7e\xba\x40\x4f\x28\x0d\x73\xf4\x5a\x82\xfa\xbe\x6e\x0a\x48\x4d\x37\xa7\x44\x9f\xae\x71\x7d\xa7\xad\xa5\xbe\x02\x04\x85\x11\x86\x50\xb7\x75\xb2\xe4\xf3\x65\x58\x5d\x32\xfb\x9b\xb0\x3b\x6c\xbc\xb2\xb7\x98\x86\xd6\x8a\x93\x51\x9e\xb2\x5c\x72\x89\x65\xab\xa1\x3c\x8a\x06\x03\x0d\xa6\x8c\x75\x42\xbe\xd0\x24\x89\xa8\xa1\x8d\x56\xa6\x63\x15\xda\x4a\x95\xa3\xdd\x1b\x4c\x0b\x07\x48\x78\xfb\x5b\x8e\x92\x3d\x1d\xb3\x26\x93\x04\xc1\xa5\xa5\xe7\x9f\x63\xcf\x71\x4d\x3a\x0d\x2f\x61\x97\xae\x5b\xfe\x9d\xb1\x49\x4e\xe6\x68\x96\x04\xf5\x0c\x21\x87\x06\x4b\x1b\x86\xd8\x19\x90\x58\xd7\x0a\x0f\x15\x01\x8c\xb1\xb7\x33\x45\x27\xd1\xb5\x07\xb9\x1a\xa5\x24\xdb\x4d\xed\xca\x37\xde\x8f\xf3\x2f\x43\xab\x91\x48\x87\xe6\x17\x33\x55\x40\xda\x3e\x44\x37\xfe\x03\x59\xf7\xb5\x62\x00\xd5\xde\x46\x6b\x84\xe3\xe7\xc1\xe2\xd4\x7a\xc8\xea\x04\xa0\x40\xe7\xcc\x0f\x16\xa9\x58\x22\x5f\xcb\x63\xb5\x4b\xb0\xb5\xc4\x7e\x88\xc9\x44\x63\x7d\x21\x12\x40\x61\xb5\x52\x57\x7d\x54\x7b\xd4\xaa\xdb\x42\x84\xf7\x7d\x80\x2a\x31\x33\xfb\x26\x53\xe3\x32\x95\xa1\x55\x32\xd8\x13\x02\x1b\x28\x63\x1f\x91\x49\x7d\x66\xc4\x68\x11\x79\xd5\x88\x13\x20\xc9\xb2\x97\xa9\x7e\xb6\x20\xee\x1b\x6f\x33\xbc\xcd\x12\x6a\x2a\x63\xe4\x31\x71\x85\x9f\xf0\x39\x9d\xd2\xd1\xef\x6d\x80\x59\x5d\x16\x24\x5e\xfa\xee\xaa\x39\x24\xab\x0f\xb0\xf6\x85\x80\x26\xd4\x65\x8f\x55\x0f\x32\x5b\x8f\x7f\x59\x55\xd1\xb9\xc1\x7f\x5d\xc6\xba\x44\xc9\x31\xf1\x9d\xbd\x91\x48\xe6\x78\x7c\x15\xbb\xc4\xf2\xe8\x7f\xc4\xb1\xf8\xfc\xbb\x4e\x15\x08\x9f\x1c\xa9\x7b\xbe\xd4\x72\xf7\xd4\xbd\x07\x47\xa9\x7e\x5f\xb5\x9f\x87\x08\x08\x1d\x5f\xd0\x9a\x93\x12\xf4\x0d\x6c\xbc\x25\x55\x15\xec\x0e\x06\x1f\x52\xa3\x16\xd8\xc6\xd6\xb3\x98\xa3\x36\xbc\x58\x43\xd9\x55\x79\xe9\xe9\x0f\xc5\x7d\x33\x30\x9c\xd9\x1d\x6b\x5c\x8a\xbe\xb6\x8e\xf7\x8d\xad\x25\x1d\x12\xd5\x11\x0e\x68\x4d\x74\x6f\xe2\xd1\xd1\x60\xf0\x71\xe1\x57\x06\x4f\x70\x9e\xd7\xcb\x18\x7a\xfd\x54\x20\xce\xc8\x38\x4f\xd8\x34\xa3\xa2\xf6\xcd\xee\xb0\x7f\xa1\x5c\x84\xdc\x9c\x22\x37\xc3\xa6\xc9\x3d\x57\x02\xd0\x70\xd8\x29\x55\x4c\x95\x48\x2f\x0c\x46\xa2\xc2\x5a\xa9\x28\x18\x15\x85\x4e\xff\xd9\xe2\x51\x07\xd5\x57\x45\x32\xf9\xb9\x41\x29\x9b\x34\xfa\xc7\x45\xa6\xfa\xc2\xdf\xe1\xe0\x94\x31\x63\xb2\x99\x76\x67\x13\xcd\x2a\x0d\x03\xe4\x6b\x88\x7b\xa4\x69\xfb\xa5\x94\x46\x9f\xee\xfb\x2d\x22\x20\x4e\xb8\x3a\x26\xb9\x51\x47\xc7\x47\x43\xae\xfa\xec\xad\x2f\x0a\xd6\xec\x31\x0e\xce\xb2\x2b\xde\xc3\xb8\x3c\x7c\x35\xf6\xca\xd7\x24\x14\x13\x19\x7b\x5c\x80\xc4\xb2\x30\x0a\x91\x5c\x7b\xd6\x80\xbe\x36\xcb\xb7\x05\xdc\x58\x46\xbb\x06\x0e\xa3\x71\x94\x1c\xe3\xbf\x1a\xeb\xe1\x77\xc8\xf8\xdf\x34\x8a\xe1\xfa\xca\x23\xe1\xa9\xaf\x28\x7e\xf1\x3b\xe2\xf2\xb1\xc1\x0c\x6b\xbe\x67\x7c\xe0\xc8\x23\xf0\x7a\x4f\x70\x7e\x27\xfa\x05\xdf\x54\x7a\x82\xe7\x9f\xb3\xcf\x67\x9d\xc4\x11\x41\x9a\xe8\x91\x4e\xf5\x2d\xc7\x05\xea\x50\x17\xd3\xdf\x4a\xbc\xce\x41\xd8\xc4\x8a\xf4\x67\x07\x48\xbe\xed\x3b\x09\xe9\x3c\xc6\x7f\x4d\x08\xda\x71\x2e\xec\xc8\x59\xbf\xcb\xd2\xd4\x96\x0f\x1c\xf2\xc3\xb6\x91\x4f\x6d\xee\x5e\x88\x1d\x9d\xe0\xf1\x9a\x76\xfe\xdd\xd7\xc3\x8d\x25\x41\xe4\x1d\x3a\xe3\x4e\x69\xe8\xae\xdf\x84\x37\xc3\xa2\x2b\xdc\x34\xc0\xd0\x0b\xbc\xe4\xee\xd5\x8e\xb6\x87\xbc\x7a\xd2\x94\x81\x13\x96\xb8\xe4\x33\xbb\x14\x44\xf7\x15\x65\xb6\x2c\xd7\xad\x75\x8f\xc3\x00\xfe\xc1\xbd\xe0\x66\xe1\x85\xcf\x0a\x6f\xb9\xfe\x8c\x9b\x46\x96\x79\xad\xc2\x23\x19\xd2\x6d\x1c\x74\xa6\x09\x44\x16\x44\x1f\x3b\x30\xd7\xe3\x2e\xd0\x47\xcb\x91\x11\x82\x7f\x0a\x42\x08\xc9\x5a\x75\x7b\x15\xff\x05\xfa\xf8\x29\xa7\x00\x2f\xcb\x52\xd7\x70\xea\xe6\xdf\xf3\xf4\x95\xdb\xc1\x8d\xb7\xc8\xbf\x6b\x95\xc9\x7b\x44\x7e\xbf\xb2\x2b\xfe\x06\x48\xf8\xbf\x29\x44\xff\x6a\x36\xb9\x4b\x2b\xc9\xe6\x4f\x9e\x5d\x1f\xbd\xa9\x3e\x05\xf4\x34\x86\x33\xe1\xc6\xfa\x34\x71\xb2\xbb\xde\x8f\xe0\xde\x9b\xcc\x53\xbc\x4d\x1c\x0d\x31\x1c\x8c\xee\xc9\x1f\xa3\xf1\xc7\x7e\xa9\x7d\xfa\x21\x2c\x68\xf3\x8e\x1b\x19\x72\xeb\x21\xfe\x3a\x10\x47\x0a\x2a\xa9\x83\x85\x2c\x8f\x8e\xa7\x56\x78\xee\x20\x82\x2e\x67\x4e\x75\x99\x1d\xa7\xd4\xf3\x77\x40\x0f\x2b\xf9\x9e\x96\xb3\x02\x37\x3e\x6d\x53\xe8\x85\xda\x37\xbc\x0e\x9b\xdb\x5b\xc7\x09\x77\xf1\xf4\x15\xad\xe9\x4c\x6a\x44\x99\xfe\x0e\xc6\x12\x90\x39\x4f\xd3\x57\xcd\x1b\x99\xd9\xad\xa9\xca\x03\xc6\x69\xfc\x81\x8b\x93\x7d\x72\x2c\x06\x88\x74\x96\x51\xc5\xb1\xfa\xb4\xcd\x7a\x4a\x4d\xa0\x5a\x78\x02\x36\xad\x42\x13\xb0\x51\x36\x92\xf8\x45\x98\x39\x29\xbe\x5b\xe0\x66\xb4\xcc\x30\xbc\x81\xff\x90\xd0\x6e\x66\xde\x05\x6e\x26\xce\xdb\xe8\x8a\x03\x14\x7c\xf0\x77\x90\xbe\x0f\xfe\x0e\x51\xff\xe1\x29\x8b\x81\x92\xe8\x24\x55\x06\x8b\xa2\xb5\xf9\x8a\xcb\xfe\x60\xa4\xba\x6c\x27\xbc\x77\x7e\x8d\xb9\x39\x92\x06\xa5\x77\xe5\xbc\x5a\x79\x2c\xbc\x76\x3e\xbe\x78\xa7\x9f\x74\x24\x1a\x69\xe4\x3c\x71\x09\x2f\x9d\x1f\xbd\x41\x53\xe2\xed\x38\x0b\x29\xe2\xdc\xcb\x7a\x0d\xba\xf3\x7c\x54\x54\x52\x4f\x8f\x92\x9b\xf4\xf3\xc9\x62\xd4\xff\x7f\x20\x4b\xa5\xd5\xbb\x7b\x70\xd9\x3b\x26\xa3\xe4\x4f\x6d\x32\xc8\x4d\x95\x88\xce\xde\xfd\x93\xa2\x75\xe6\x43\x4b\x91\x8a\xed\x37\xc1\x58\xbe\x27\xdd\x36\xbd\x40\x7f\x1e\x3c\xf8\xdc\x9f\xd6\xd3\xb3\xc9\x8f\x23\xff\x09\x37\x24\x75\x9e\xcc\xdc\x84\xe6\xde\x19\x69\x77\x07\x7b\x50\x35\x73\xd1\x84\xaa\x69\x08\xef\x4e\x57\x1b\x9b\xdd\xca\xa2\x0f\x3f\x0d\x90\xca\xc1\xe2\x0b\x5d\x7e\x60\x0c\x0e\x3d\xb5\x01\xf2\x0d\x8c\xed\xfd\x0c\x31\x88\x8f\x37\x25\x2c\x91\x50\x1a\xfc\xbd\x75\xd6\x33\xdb\x7f\x91\xc2\xd7\xe3\x76\x08\xc7\x1d\x5f\x6e\xa0\x58\x2d\x94\xcb\xae\x5d\x5f\x9a\xa3\xf6\x3d\x50\xa9\x23\x06\xbf\xbd\x83\x2e\xd0\xb9\x3e\xf4\x7d\x5e\xe5\xaf\x1b\xc9\x00\x72\x3e\x4b\x23\x00\xe9\x8f\xe2\xa4\x00\x65\x21\x85\xdf\xba\xc9\xc0\xf1\xad\xfd\x24\x90\xe4\xa7\x6a\x32\xf3\x0b\x3a\x04\xe8\xa5\x3f\x36\xe3\x82\x5a\x99\xd5\xfc\x17\xff\xfb\x05\x0e\x62\xc9\xef\xc0\xc8\xd9\xc9\x5f\xe7\x55\xd8\x2a\x49\xa3\xec\x27\x5a\xe2\x89\xf9\x4d\xc7\x81\x8d\x63\x65\x40\x79\x6e\x8c\xd5\xad\x9c\xd4\x77\x55\xfc\xcd\x21\x59\xce\xa6\x75\x84\x13\xd3\x95\x5b\x24\xc7\x5b\x98\x8d\x98\xfd\x62\xfd\x2d\x0e\xe0\xb0\x13\x71\x52\x83\x54\xa4\x7e\xef\x29\x0b\xf7\x66\x62\xc7\xe8\xf3\x9d\x62\xaf\xfd\x80\x7c\x06\x2e\x2f\x66\x77\xd0\x2e\x86\x7b\x27\xd1\xb6\x60\x4e\xd1\xe3\xc7\xa8\xc1\x35\x29\x66\xf7\x9f\xca\x62\x5f\x61\xbc\xdc\x89\xcd\xde\xfb\x5e\x11\x4d\x7e\xe1\xe9\xbe\x51\x09\x9f\x4e\xfe\x3f\x00\x00\xff\xff\x3f\xfc\x1f\x02\xbf\x73\x00\x00" func lockedtokensCdcBytes() ([]byte, error) { return bindataRead( @@ -239,11 +239,11 @@ func lockedtokensCdc() (*asset, error) { } info := bindataFileInfo{name: "LockedTokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x2c, 0x2b, 0x6f, 0xbc, 0xb7, 0x11, 0x91, 0xb9, 0xea, 0xcd, 0x69, 0x1e, 0x82, 0x7b, 0xb7, 0xa, 0xb4, 0x6a, 0xbb, 0x2, 0x47, 0x53, 0x80, 0xcd, 0xa8, 0xd7, 0x38, 0x82, 0xc3, 0x62, 0xc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xc3, 0xbb, 0xd5, 0xc5, 0xd9, 0x40, 0xbe, 0x52, 0x81, 0x7d, 0x16, 0xb3, 0xcc, 0xeb, 0x12, 0xa6, 0x87, 0x2c, 0xf1, 0x1d, 0xa5, 0x13, 0x11, 0x95, 0x13, 0xff, 0xa6, 0xf0, 0xc6, 0x5c, 0x7b}} return a, nil } -var _nodeversionbeaconCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x7c\xdd\x73\x1b\x37\x92\xf8\xbb\xfe\x8a\xb6\x1f\xbc\x64\x4c\x51\xca\xfe\x7e\x75\x75\xa5\x12\x95\x72\x7c\xeb\x8d\xef\x72\x59\xd7\xc6\xc9\x3d\xb8\x54\x57\xe0\x4c\x0f\x89\xf3\x10\x60\x00\x50\x32\xe3\xf5\xff\x7e\x85\x06\x66\x06\x5f\x1c\x52\x92\xf7\xbe\xfc\x90\x88\x9c\x41\xa3\xbb\xd1\xdf\xdd\xe0\xc5\xc5\x05\xbc\x5f\x23\xfc\x24\x6b\xfc\x15\x95\xe6\x52\x7c\x8f\xac\x92\x02\x2a\x29\x8c\x62\x95\x81\xb5\x6c\x6b\x0d\x66\x8d\xb0\x65\xda\x00\x13\x35\x34\x3b\xb3\x53\x08\x5b\x25\x8d\xac\x64\x0b\x77\x6e\xa5\x9e\x9f\x59\x78\x66\xcd\x0c\xe8\xb5\xdc\xb5\x35\x2c\x11\x76\x1a\x6b\x30\x12\xf0\x13\x56\x3b\x83\x17\x6b\x26\xea\x16\x61\xd9\xca\xea\xa3\x06\x66\x80\x31\x58\xf1\x3b\x14\xee\x2b\x58\x23\x5f\xad\x8d\x03\x75\xd6\xe1\xa7\x51\xdd\xf1\x0a\x81\x55\x95\xdc\x89\x10\xa9\x0c\xf3\xf9\x0f\xc8\x94\x59\x22\x33\xa0\x50\xcb\x9d\xaa\x90\xc0\xdc\xaf\x79\xb5\x06\xae\xed\xb7\x5b\x29\x34\x5f\xb6\x08\x8d\x54\x80\x1b\x6e\x0c\x17\x2b\x02\x17\x33\x01\xef\x50\x98\xf9\x80\x06\x7d\x26\xd6\x30\x2e\xdc\xfe\xd5\x4e\x29\xfb\xa5\xe7\x01\xf1\x87\xb5\x2d\x3d\xdb\x6d\x2b\xb9\xb1\x90\x63\x06\x0d\x90\xb8\x76\xbb\x63\x6d\xbf\x50\x7b\x30\x7c\x83\xb4\xb4\x03\x67\x98\x45\x93\x6b\xd8\x6d\x6b\x66\xb0\x26\x00\x52\x01\xeb\xdf\x58\xca\x9d\xa8\x99\xda\x3b\xd2\x58\xb5\xc6\x9a\xb6\x39\x3b\x78\xb6\xf3\x57\xf5\x86\x8b\x9e\x3b\x04\xdd\x1f\x12\xab\x6b\x10\x78\x9f\x02\xe7\xa8\xbb\x8d\xab\x35\x13\x2b\x04\xfc\xc4\x35\x31\xcd\xcb\x42\xbe\x60\x0e\x6f\x0e\x3d\x82\x8a\x09\x90\xa2\xdd\xc3\xd2\x9d\x8d\x03\x5a\x03\x6f\x2c\xf1\x7b\x90\x55\xb5\x53\xc0\x1a\x83\x2a\x62\x72\x28\x21\xf0\xb2\x83\xfc\x0b\xb1\xe6\x8d\x42\xfc\x1d\xdf\xa1\xe2\xb2\xee\xf8\xcc\xb5\x25\xce\x0a\x9f\xd0\x16\x15\x12\x4d\x21\x6b\xd4\xb0\x66\x77\x08\x28\xe4\x6e\xb5\xf6\x5c\x97\xc4\x3e\x63\xff\x88\xb9\xef\xb0\x0b\x0e\xef\xe0\xbe\x44\x18\x6b\xb5\xb4\x82\xdf\x11\xb5\xdc\x13\x0d\x2c\x62\xfa\x0c\x96\x3b\xe3\x78\xc0\x1b\xaf\x36\xa8\x10\x98\x42\x10\x32\x93\x9c\x90\x79\xf7\xdc\xac\xb9\x28\x09\x5f\x01\x21\xa9\xa0\x83\x1e\x1e\xec\x01\x96\xf5\x14\xf6\xda\xcf\x8d\xc6\xb6\x21\xba\x02\x5d\xfe\x6d\x47\xc2\x7a\x40\xfc\xdd\x5e\x9f\x4c\x46\xc5\xfc\x6c\xbb\x5b\x0e\xb0\x73\xa3\xf3\xf9\xec\x0c\x00\xc0\x62\xf1\xb3\x51\xbb\xca\xaa\xf0\x56\xa1\x46\x41\xb2\xa6\x65\x63\xee\x59\x20\x52\x4c\xc3\xcf\xb8\x61\xc2\xf0\xaa\xd3\xdc\x1e\x00\x6b\xa5\x58\x11\xb3\x60\x8d\xed\x16\x15\x34\x3b\x51\x19\xab\x86\xfd\x3b\x6f\xa4\x02\x85\x0d\x2a\x14\xf6\x48\x34\x22\xac\x8d\xd9\xea\xab\x8b\x0b\x8d\x9b\x3b\x54\x73\xa9\x56\x17\xf4\xba\xc5\x5c\x3b\x9c\x7e\xa6\x47\xf0\x99\xbe\xef\x40\xbd\x96\x9b\xad\x14\x28\x8c\x86\x1a\x1b\x2e\x2c\xbe\x0c\x74\x87\xdd\x5d\x80\x5d\x07\xae\x45\x03\x1b\xf6\x1f\x52\x5d\xc1\x2f\x6f\x85\xf9\xc7\xfc\x21\x17\x87\x1f\x6e\x99\xa9\xd6\x07\x1f\x2a\xfc\x2b\xb6\xc8\x34\x5e\x59\x4e\x72\xb1\xfa\xee\xac\x7f\x89\x0b\x6e\x26\xe1\xc6\xb3\x68\xa7\x59\x04\x7a\x56\x82\x35\x0d\x88\xb7\xff\xac\x8c\xcc\x09\x22\x2c\x1c\x49\x85\xc7\x76\x0b\xfb\xd8\xfe\x3f\x7f\x4c\x7b\xc2\xc2\xed\x5d\x78\xdc\x23\x61\xdf\xe9\x3f\xf4\x2f\x7e\x39\x8b\x4e\xe3\xaf\x68\x76\x4a\xe8\x5e\x50\xb8\xe8\x4e\xad\x91\x6a\xc3\x0c\x4c\x70\xbe\x9a\xc3\xdd\x35\x21\x7b\x33\xbf\x26\xac\x6e\xe6\xd7\xb4\xfd\xcd\xf9\xf5\xb0\xc5\xcd\x34\x82\xcc\x34\x30\xcf\x86\x88\xeb\xcd\x4e\x80\x91\xee\xc1\x64\xda\x71\x2a\xe1\x93\x3d\x1a\x27\x58\xaf\xa5\x42\xff\xca\x22\x60\xdf\x7c\x00\x11\x2d\xa4\x7f\xf3\x4a\x8a\x8a\x99\xc9\xf3\xf9\xf3\x91\xa7\xf9\x93\xf8\x08\x46\xb7\x98\x3e\x79\x0f\x62\xe0\xf8\x1e\xd1\x57\xa4\x3a\x16\xa8\x3d\xd5\x73\xe5\xcf\x98\x37\xc0\x8d\x73\x32\x1a\x5e\x80\xa2\xe3\x8c\xd6\xf1\x26\x13\x8c\x67\x0b\x10\xbc\x4d\x58\x6e\xff\xb9\xe5\x19\xe7\x7b\x5a\xcf\x9f\xf7\x74\x27\x30\x9f\xc5\xc8\x06\x52\x36\x02\xb7\x28\x94\xdf\xc0\xeb\x9d\x36\x72\x43\x86\x82\x29\x66\xa4\xd2\xf0\xcd\x45\x59\x6c\x8d\xda\x11\x0f\xbc\xcc\x56\x52\x91\x97\x5e\x29\x64\xce\x25\x32\x11\xad\xdb\x32\x6d\x2d\x73\xf8\x3a\xc5\x69\xac\xd5\x08\xd2\x7a\x96\x7b\x1e\x28\x4b\x27\xaf\xf6\xc5\x3f\x3b\x98\xef\xd7\x4c\x4c\xfe\xdd\xbd\x7b\xe5\x01\x4d\xaf\xe0\x7b\x29\x53\x86\xf2\x06\x26\x81\xbe\x3f\x5b\xb8\x45\xee\x63\x6a\x18\x22\x2e\xf5\x6b\x6e\xc2\x25\x09\x83\xc3\x4f\x07\xf6\x25\x43\x32\xec\x6b\x3f\x1e\xdd\x97\xd6\xdc\x84\x4b\xc6\x0e\xb6\xdf\xcb\x59\xa5\x7e\x2f\xfa\x78\x6c\x2f\xb7\xe6\x26\x5c\x12\xef\x05\x45\x29\xa2\xc3\x3a\x66\xcf\x4e\x10\x0c\x08\x48\xb3\x4b\xf1\xb7\x1d\x6b\xad\xd3\xfe\x3a\x42\xf2\x17\xf5\x27\x0b\xf0\xbd\x3c\x4d\x5a\x42\xc6\xa4\xe2\x46\xcb\xa7\xf0\xb7\xbf\x0d\x8f\x3b\xd8\xee\xd1\x23\xb9\xd1\xa2\xd6\x5f\x55\x47\x7e\x44\xad\x4f\x57\x10\x4f\xf2\xb3\x12\xcd\x03\xf7\xbe\x0e\x85\x7f\x8f\xc3\xee\xa8\x7d\xdc\x49\x17\xc9\x7e\x1c\xb5\x36\x3b\x8a\xe9\x89\x56\x3d\x86\xb6\x47\xcb\xae\x0f\x6e\x22\x63\x07\x2f\x5e\x44\xa1\x4d\x64\x91\xfa\x87\x3e\xb0\x59\x14\xed\xc1\xc9\x8c\xf8\x06\x3f\xb1\xca\xb4\xfb\x6f\x4e\x61\xc9\x29\xdc\xd0\x46\xf1\xca\x3c\x49\x97\x63\x51\x1e\x08\x0e\x42\xb5\x9e\xea\x52\xc4\x16\x30\x20\x22\xde\x66\x58\x97\xf3\xcb\xf9\xe5\x90\x37\x84\x98\xff\x8e\x4a\x3a\x34\x29\xce\x4a\x83\x71\x8f\xa5\x7f\xc3\x87\xb9\x97\x7d\x88\x7b\xd9\x87\xb7\x97\x71\x68\x2b\x78\x3b\x4d\x51\xf2\x49\x48\x56\x25\xe8\xb2\x1e\xcb\x68\x2e\x92\x24\x3f\xcc\x3c\xcc\x1a\xb9\x72\x69\x6b\x9a\x45\x74\x99\x4f\x97\xbe\x7f\xce\x82\x78\x5a\xf6\x03\x25\xbb\x2e\x18\xff\x87\xff\x9f\xbd\xe3\x37\xed\xf8\x90\x04\xf9\x05\x08\xb3\x74\xc9\xb4\x10\xca\x07\xeb\x60\x11\xe2\x91\xbf\xda\x45\xd8\x8b\x2c\xc5\x19\x3d\x60\x7b\x88\x7d\xe9\x62\x0e\xbf\x58\x63\x45\xa1\xb5\xcb\xf5\xb0\x85\x3b\xd6\xee\x10\xfa\xc5\xf6\x0c\x7a\x0e\x2f\xb1\x91\x2a\x2e\x94\x2c\xe3\xb2\xd5\x7c\x38\x43\xbe\xd9\xb6\xbc\xb1\x99\x33\xd6\x2b\x84\xca\x0a\x66\x25\x6b\x1c\x5e\x79\x9f\x22\x64\x35\x8e\x25\xe5\x86\x4b\x3a\xed\x35\x1b\x92\x0a\x27\xa4\x03\x98\xb7\x54\xd0\x61\xed\x3d\xdb\x3b\x22\x1b\xae\xb4\x01\x6c\x71\x43\xc5\x1e\x11\x22\xdc\x9d\xfb\xf7\x76\x8f\x1f\xb9\x36\xb9\x90\x27\x12\x62\xa5\xfd\xb0\xd0\x58\x61\x08\x16\x75\x59\x45\xa8\x2c\xa9\x8a\xa4\xf0\xa3\xc3\x8d\x44\xe7\x72\x16\xc7\x62\xbd\x08\x05\x3b\xce\xfa\x37\x32\x35\xfa\x13\x15\xbb\xba\x4a\xd7\xfd\x1a\xc5\x68\x8d\x2b\xe2\xe8\xe3\x8b\x6d\x3d\x14\x2d\x95\x71\x75\x98\xb8\xc2\x18\x1e\xbf\xc6\xdf\x76\x28\x2a\xb4\xea\xac\xac\x41\xd0\xf6\x7d\x29\x10\x90\x55\xbe\x42\xc4\x44\x56\xb6\x9b\x43\x84\x6b\x5c\x25\xb9\x43\xc5\x9b\x3d\x08\xe9\x96\x69\xb8\x47\x85\xb0\xe1\xd6\x6c\x0f\xa7\xed\x40\x46\x75\x90\xe1\x24\x62\x61\xe1\xa8\xaf\xe0\x43\x72\x6c\xb7\x03\xe3\x3b\x22\x22\x6b\x31\x3d\x74\x0e\x4c\x14\xea\x8d\xbd\x06\x34\x54\x1b\x82\xad\x2b\x23\x95\x0e\x27\x7b\x63\x83\x4c\xef\x14\x5a\x93\xd8\x95\x77\x27\x8d\x92\x9b\xbc\x84\x37\x4d\xc9\x0f\x4b\x41\x1e\x83\xb0\x38\xf5\xda\x95\xd2\x26\x4d\xf0\x5d\x47\x64\x40\xdf\x6b\x26\xa4\xe0\x15\x6b\x41\x1b\xa9\xd8\x0a\xad\xa9\x5f\x93\xe9\x28\x97\x8a\xe3\x42\xe8\x80\x94\x55\x26\x7a\xf6\xb3\x83\xf3\x8e\x99\xb5\x4d\xe9\xfb\x0f\x4f\xd8\x33\x2f\x4f\xc7\xfb\xf6\xcf\x8f\xef\xfd\x7d\x68\x9f\xb8\xa8\xf1\x13\xd6\xa5\x4a\x2c\x2d\x60\x55\x85\x5a\x4f\x3a\x03\x39\x0d\xdd\x47\xc7\xf3\x2b\xf8\xec\x98\x9a\x59\x9a\x2f\xd0\xe5\x63\x83\x61\x75\x6a\xf5\x4a\x29\xb6\xef\xd4\xb4\x50\xb2\x8c\xb5\xee\x10\x32\x77\x4c\x1d\xb4\x8c\x57\xf0\xc1\x61\x75\x3b\x90\xfe\xd6\x52\x7b\xcc\xa4\x82\x6c\x0e\x17\x23\x7b\xfc\x66\x3d\x50\xa9\xa8\x80\xc0\x9b\xb1\x12\xec\x7e\x84\x02\x32\xf8\xbf\xf8\x85\x03\x53\x1d\xf6\xdf\xc5\xec\x3b\x5c\xb3\xe5\xce\xd8\x89\xdd\x66\x89\xca\xd2\xd0\x29\x13\x35\x60\x42\x65\x92\x02\xa7\x24\x6a\xae\xb9\x91\x71\xbe\xdf\xcc\x97\xb0\x7d\x79\xd9\x58\xa3\x29\xef\xad\xf9\x7a\x7c\x8d\x3c\x25\x24\x2d\x96\x9f\x7a\xcc\x6f\x0a\x3a\x1d\x88\xb8\x94\x2d\x32\x01\x4d\xcb\x56\x44\xe9\x47\xc4\x2d\x85\x61\x8a\x55\x1f\xed\x51\xb1\x52\xcf\x06\x04\x62\x4d\x54\x2d\xb1\x37\x78\x52\x38\x49\x58\x77\x1a\x36\x82\xa4\x5d\x43\xe6\xf2\x2f\xe2\x27\xfc\x64\x7a\xa5\x74\x81\xf1\x80\xdf\x2b\xa0\x86\x94\xcb\xbd\x4d\xe0\x3d\x92\x7e\xce\xaf\x71\x98\x92\xf9\x91\xc3\x98\x58\x94\x23\x0a\x09\xad\x9f\x53\x53\x3f\x60\x14\x37\x77\x08\xad\x0d\x13\xcc\x1e\x7f\xa1\xad\xd3\x2d\xdb\x30\x4e\x1a\xec\xcc\xb7\xb1\x62\x11\xc7\x52\xd6\x3e\xf5\x50\xdd\x26\x71\x05\xfc\x55\x5d\x6b\xab\x42\xce\x51\xe8\x42\x8b\x6a\x9e\x67\x21\x68\xd2\x28\x24\x33\x49\xc9\x0b\x69\xf9\x65\xab\xb0\x50\x90\x49\xa0\x44\x11\xed\x0d\xac\xd0\xbc\x76\x2a\x44\xb6\x62\x32\x9d\xf7\x3d\xa5\xdc\x60\x8f\xc8\x6b\xb1\x0e\x7a\x05\xcf\x5f\x33\x61\xb5\x4c\xa3\xb9\x70\xdc\x28\xf5\xeb\xac\x34\x93\x46\x7b\xf5\x96\xaa\xfb\xcb\x9b\x35\x81\xd6\xa4\x50\x13\x6d\xfe\x7c\xa4\x4c\x46\x89\x9f\x33\x0c\xa4\x26\x46\xba\x04\x52\x4b\xfa\xce\xc9\xda\x3d\x6f\xdb\x50\x19\x48\x13\x48\x3c\xed\x37\xaf\xbd\x7d\xb0\xa7\xce\xda\x16\x63\xca\x72\x9e\x1c\x52\x0f\x58\xd0\xd6\x67\x59\xd5\xdb\x97\x72\x17\xc7\xf9\xfb\x61\xe4\xe8\x6e\x7d\x8d\xf7\x08\x76\x0f\x82\xb8\x48\x65\x25\x2b\x05\x7a\xdc\x73\x21\xa3\xbe\x1a\xd7\x70\x6f\x33\x17\xe1\x05\xdf\xb2\x5d\x48\xb3\xb6\x46\x0a\x6d\x0e\x1e\x9a\xa2\x5a\x0a\x3c\x50\x3c\x1c\xad\x11\x5e\x5c\xc0\xbf\xa1\xb3\xc7\x46\x02\x17\x1a\x95\x3b\xf0\x65\x1c\x02\x18\x77\xe4\x52\xd5\x68\x03\xb1\xb6\xcf\x2b\x02\x40\x9d\xc9\x67\x02\xb8\xc0\xa6\xe1\x15\xa7\x5c\xb6\x5d\x49\xc5\xcd\x7a\xe3\x5a\x93\x9c\xcc\x93\x95\x62\xfc\xb4\xc5\xca\x8a\x0c\x99\x12\x0b\xbe\xf5\xbe\x35\x85\x9c\x85\xe0\xbd\xd4\xd9\x8c\x38\x46\xc4\x9a\x36\x7e\x8a\x3c\x0c\x09\x52\x8b\x62\x65\xe2\x5a\xea\xfd\x9a\xdb\xd4\x01\x6e\xe0\x5b\x78\xf1\xe2\x01\xc0\x3e\xf0\xf3\x6f\x6f\xe1\x66\xd4\x4e\x14\x4e\xdc\x62\xcc\xe1\x1c\xbe\x1d\x51\xc7\x07\x50\xe4\x0e\x72\x62\xdd\x0a\x9f\x8d\xe1\x32\xcd\xc4\x41\x48\x12\x2c\x2b\x0e\xbe\x25\xdf\x67\x9c\x69\x00\x02\x3b\x41\x05\x43\x6e\x48\x52\x53\xfd\xb1\xe1\x81\xcd\x89\xbf\xbd\x72\x31\x24\x6c\x25\xb7\xd9\x8a\x91\xc0\xc0\x86\x09\x2a\x96\x32\xd3\xe5\x6f\x36\x3b\x72\x14\x24\xf6\xe2\xe2\x02\x16\x37\x76\x3b\x3f\x05\xa2\xd0\x7a\x17\x07\x97\xfa\xa2\xa6\xf3\x96\x35\x7e\x2a\xe2\xf2\xc7\x1c\x17\x32\x65\xc2\x50\xdf\x99\x39\x4a\x14\x6e\x5b\x56\x75\x2d\x76\x2b\xd5\x84\xcd\xc3\x71\xb1\x92\x8e\xf7\x0e\xfc\x0c\x34\xa7\x44\x90\x14\x20\xa8\x34\xc8\xd6\x86\x10\x58\xc4\xf7\xff\x75\xf8\x5a\xb4\x7a\xd8\x96\x83\xc2\x23\xdd\x0e\x05\x7a\x0b\xcc\xab\xf0\x1b\xfe\x09\xeb\x77\xf6\xfd\x02\xd2\xc6\x2b\x2a\x6f\x5b\x5c\xb1\x96\xb2\xdd\xca\x79\x96\x35\xdb\x6e\x51\x78\x4c\x87\xc9\x01\xbb\x55\x37\x22\x50\x38\x3a\x3d\x4f\x4d\x5b\x2e\xab\x65\x09\x5a\x1c\x6a\xad\x9d\x0c\xc0\xc7\x29\x93\x07\xeb\xbb\xd5\xb6\xb4\x0b\x37\xfc\x15\x45\x20\xff\x84\x2d\x52\xe4\x21\x8e\x45\xef\x10\xc4\x20\x35\xad\x4a\xc3\x90\x42\xe9\xec\xb4\xc8\xe3\xbf\x25\xd2\x70\x34\x04\x51\xc6\x13\x82\x8b\xf2\xb1\xa6\xc6\xa9\xab\xcb\xfc\x0b\x46\xbc\x9a\x5e\xc1\xf3\x9f\x82\x42\x1a\xcd\x42\x60\xdd\xab\x7c\xf0\xea\xff\xea\x98\x86\xca\x99\x1b\x79\x17\x57\x4f\x36\x6c\x4b\xc9\x89\xd5\xd4\x4e\x02\xe9\xdc\xbf\x8f\x03\xee\xd3\xd9\xac\x68\x93\xc9\x47\xdc\x5f\xc1\xa8\x3f\x08\xc2\x03\x35\x20\x16\x19\xee\xbe\x16\xf3\x7f\x39\x3c\xc8\x9c\xf3\x10\x22\x5c\x3e\x34\x44\xb0\x01\xc2\x57\x08\x08\x98\x26\x2f\xff\xb0\x9d\x17\x51\xdd\x7d\x16\x6f\xbc\x41\xad\xd9\x0a\xaf\xe0\x79\x96\x55\xf8\x60\x95\x93\x30\xce\xac\xbe\x0c\xbe\x8f\x26\xd3\xe8\x85\xce\x0a\x84\x92\xf0\x3c\x11\xaa\x07\xb0\xde\x4b\x29\xc5\x31\xb9\x68\x3a\x7f\x67\xbd\xe3\x9a\x75\x81\x70\x63\x1d\x9f\x13\xa5\xbd\xdc\x75\x6e\xcd\x47\x32\x0a\x2b\xa9\xea\xc8\xf9\x16\x43\x05\x6f\x0c\x68\x8a\x8e\xdc\xb0\x83\xcd\xea\x5a\x21\xb5\x3f\xa9\x92\xe2\xa5\xd2\x61\xc0\x03\xf7\x2c\x9b\xa6\x97\xd7\x59\x0a\x7b\x89\x15\xdb\x69\x1c\x04\x9a\xc4\xfd\xde\xb2\x52\x19\x54\x8f\xf6\xa4\x7e\x48\xe5\xc5\x0b\x78\xac\x2f\x7d\x06\x37\x8f\xf7\xa6\xa5\xe1\x85\xd3\x7d\x78\x1a\x3a\x06\xfe\x37\x71\xc5\xbf\xf8\x22\x40\xb1\x90\xc5\x45\xb9\x60\xc5\x7d\x85\xaa\x51\xf2\x77\x14\xa7\x54\x0b\x42\x17\x39\x11\x78\x5f\x2a\x26\x65\x6e\x5b\x6a\x73\x12\x17\x46\xdc\x31\x05\x44\xe9\x76\xcf\x1d\xd1\xb0\xdc\x35\x0d\x2a\x17\x6b\x4b\x03\x5b\x25\xb7\xa8\xda\xbd\x45\xff\x59\xea\xf3\x52\xb1\xfb\x33\x9a\xe2\xb4\xeb\x3c\xcb\xa8\xab\x20\xac\xe8\x5b\x75\x87\xc2\x8d\x6c\x9f\xc1\x47\x5b\xa6\x77\x5e\x7a\x89\x7b\x69\x83\xcc\x10\x81\x19\x68\xd6\x90\x6a\x6d\xd8\xc7\xbe\xbe\xf7\x5f\x10\x48\x8e\xb2\x3f\xe5\xfe\x89\x49\x75\xf8\x31\xe3\xa8\x0d\x1f\x42\x6f\xbd\x7f\x90\xff\xf9\x70\xaa\xfa\xde\x66\x87\xf1\xa7\xa0\xf2\x6a\x15\xe6\x1e\xff\xe0\xeb\xb4\xfe\x24\xda\x7d\x38\xf5\x4b\x89\x88\xa2\x8c\x25\xea\xc1\xa4\x60\xc3\xea\x77\x14\x08\x74\xce\xa2\xe4\xa5\x32\x46\x16\xe4\xec\x81\xb1\x2b\x5c\x17\x58\xfb\xe2\xc5\x69\x3b\x25\xe7\x5c\x82\x35\xcb\x20\x0d\xfe\x91\x54\xd2\x1a\x7b\xaf\x94\xd6\x84\x2f\x15\xb2\x8f\x59\x31\x74\xdf\xd5\x6f\x5c\x40\xc3\x68\x52\x78\x0e\xef\xbb\x07\x01\x10\x37\x98\x4e\x7c\xcd\xd2\x8b\x58\xc1\x1f\xea\x52\x1f\x20\xe4\xd1\x07\x1b\xbb\x3e\xae\x89\x96\x6c\x11\xce\xe8\x40\xdc\xc5\xcd\x1b\x57\x4e\x62\xed\xde\xba\xd4\x8b\x77\x41\xba\x8d\x85\x3f\x22\x6e\xb5\x2f\xd9\xcb\xa6\x74\x2f\x02\xfa\x5e\xac\xbb\xa1\xe1\xe0\xf7\x71\x0b\xb5\xd4\x97\x08\x6b\xa4\x24\xbc\xdd\x77\x53\xf5\xc9\xc5\x90\xa1\x97\x13\xfa\xef\xf4\xf6\xc8\x70\x39\xa5\x0f\x1f\xa8\xd3\x1b\x8e\x78\x10\xf2\xb3\xa1\xcb\x61\xc9\xa0\x37\xeb\x9d\xea\xde\xd1\x7b\x6d\x70\x63\xe9\x12\x9a\xd1\x68\x79\x5e\x29\x1f\xb8\x16\x56\xcb\x87\x1e\xc4\x90\x9e\x8c\x43\xf6\x0d\x05\xd2\xe3\xdc\x33\xf6\xe0\x26\xc5\xd1\xec\x6a\x8d\xd5\xc7\x37\x25\x6b\x34\x99\xe6\x93\x8f\xcf\x4e\xcf\x8d\x0e\xcf\x42\x3e\xa8\x40\x36\x92\x7a\xb9\xb1\xc8\x9c\x24\xbb\x24\x6f\x8b\x4c\x0a\x0d\xf3\x7c\xbb\xc1\x4b\xfe\x9a\xbe\x3e\x99\x16\xa7\xd4\x7c\x67\xc6\xee\x3c\x25\x86\x9f\xba\x3d\x14\x1a\xf6\x29\xd3\x72\x4d\x8e\xa7\x01\x0a\x34\x65\x5f\xe5\x36\x70\x18\x06\xc8\x19\x30\xde\x53\xca\x06\xb4\x5f\x91\xbd\xcb\xd5\xa3\x6f\x77\x05\x5f\xf5\x83\x14\x3e\xea\xb3\x7a\xa3\x93\x4c\x3e\x1e\x75\x85\x28\x98\xf7\x99\xbd\x14\x7f\x30\x49\xef\x2e\xf1\x65\xee\xae\x10\xcd\x43\xda\x77\x99\xd8\xf7\x5d\x4e\x5f\x2d\xa4\x86\xe4\x11\xc9\x1b\xe7\x44\x31\x00\x38\xb2\xe4\x65\x90\x0b\x1e\x8a\x8e\x5f\x5b\x7d\xf4\x14\x84\x85\x4e\x5f\x34\xec\x29\xcd\x5c\x54\xd8\x4b\xb0\x29\x57\x3d\x3f\x2c\xa2\x63\x4a\x9f\xcf\x74\x3f\x39\x80\x2b\xaa\xfd\x13\xa3\xd6\x70\xf5\x1d\x53\x3d\x1f\x5c\xf7\x7f\x71\x7a\xca\x54\xa8\x08\xc4\xb0\xae\x9f\x90\x51\x25\xac\x78\x58\x91\x21\x42\xe3\x16\xae\x17\x25\x16\x15\xaa\x8c\x09\x27\xe2\xcf\x2f\xb3\x7a\x44\x7a\xdc\xc9\xfa\x92\x9c\x1f\x48\x3e\x8b\x6d\x30\xd1\x75\x21\x1e\x21\x16\x19\x36\xff\x73\xd2\x5b\xd7\xc0\x7b\x0a\xc8\x98\xb2\x23\xc9\xdf\xdb\x06\xee\xb1\x1b\xdd\x66\x83\xd6\x2b\x3c\x27\xb7\x70\xe0\x82\xea\x13\xeb\x9a\x03\x3e\x10\x07\x7c\x23\x6e\xd2\x1f\x6b\x79\x2a\x2f\x9d\x3c\xba\xe8\xfa\xa4\x7e\xb0\x45\xb3\x8d\xaf\xa9\x30\xdd\x37\x92\x3a\x43\xef\xe3\xba\xd2\x3d\xdc\x3e\xb8\xb2\xd6\x6d\xd4\x87\x17\x9c\x6e\xe1\x26\x16\xf9\x07\x5f\xa8\x28\xad\x58\xc0\x87\xdb\x4c\x54\x9f\x6c\x27\x9d\xb6\xf8\x6b\xb3\xe1\x75\xd9\x7f\xde\x69\xd3\x8d\x66\x52\xd5\x89\x69\x9a\xf0\x99\x97\x40\x74\xfc\xb4\xb9\xf9\xac\x77\x84\xc0\x0c\xb4\xe8\xd7\xf9\x32\xda\xb1\x21\xa9\x0c\x7a\xc8\x96\x39\xf5\x99\xea\xe3\x8a\xf8\xa1\xd8\xa0\x78\x52\xf6\x7c\x42\xa1\xf7\x36\xdb\xf5\xf6\x59\x7e\xe3\xac\xe3\x69\x40\xd7\x11\x45\x3c\xff\xd6\xb5\xd9\xab\x76\x57\x27\xf7\xb1\xad\x6b\x96\x75\x9f\x9a\x0c\x09\xfa\xd2\xca\x71\xe6\xb1\xb4\x61\xca\x6a\x5a\x81\x83\x65\xb9\xf9\xee\xbb\xc7\x1b\xbf\x69\x56\x88\xa6\xd1\x0b\x51\x3f\xa1\xfd\x96\xe7\x07\x8e\xa4\x6b\xb8\x1c\x99\x88\xf0\x9a\x4e\x45\xd9\x7e\xde\xb7\xb3\x13\x7d\x25\x96\x19\xb8\xcc\xe3\x56\xcf\xb1\xcb\xb1\x33\xea\xda\x03\xf4\xf2\x59\xb1\xde\x7f\x4d\x84\xe7\x28\xf6\x93\xf5\x0f\xab\xee\xf0\x5c\xd6\x1e\xa7\x28\xb4\x77\x49\x4c\x5d\x2b\xe1\x88\xeb\x3e\x24\xcb\x87\xee\x51\x1c\xe9\x28\x06\xd6\x74\xac\xb2\x3a\xed\x6a\xa9\xf9\x3d\x8b\x87\x77\x31\x0f\xa0\x9a\x26\x0e\x61\xf5\xaa\x54\x58\x88\x4b\x06\xe5\xd1\x6b\x3f\xcb\x58\x5c\x7f\x60\x1c\xdb\x73\xe3\xa7\x34\xc8\xef\xe2\xfb\x31\x5e\x50\x62\x3a\x9e\x1e\xa4\x1c\x78\xe3\xef\xa4\x3b\x54\x55\x7e\x74\xc3\xb4\x43\xd4\x4a\xb5\xe1\xbf\x1e\x78\xa0\xb0\xca\x7e\x1f\x61\xb8\x5d\xf1\xaf\x6c\xdf\xa1\x18\xdf\xbb\x38\xc9\xa3\x1e\xb9\x78\x60\x55\xb1\xd3\xec\x05\x5c\x5a\x9f\x1e\x8e\x24\x7a\xab\xd0\xeb\xbc\xc0\x3b\x54\x70\xe9\x47\x17\x3a\x22\x2f\x83\x9b\x13\xde\x5f\x6d\x59\xe0\x9b\x78\x43\x7a\xcb\x7d\xb4\x7b\xaa\x31\xfd\x5c\xaa\x70\x3a\x20\x37\x74\x27\xa8\xaf\x13\xba\x2f\xbd\x51\x77\x38\x2e\xf1\x54\x34\x93\xab\xd2\x03\x37\xc2\x1b\x32\x05\x93\x62\xf7\x3c\x0f\x9c\x58\x31\xde\x1c\xa0\x7d\x9d\x09\x8a\xc0\xa0\x84\xa6\x70\x1c\x55\x8f\xc4\x6d\x74\xa6\x7f\x1d\x62\x95\xb0\x01\xee\x34\xb0\x8f\x60\xd6\x5c\x1b\xa9\x68\x42\x7e\xbc\x08\x1d\x2a\xd1\x01\xa3\x19\x6a\xcf\x01\x65\x1d\x52\xdc\x4c\x68\xbf\x0b\x38\xfb\x55\x04\xea\x74\xfe\xd1\x3e\xb7\x25\x4b\x3e\x42\xee\xb8\x5c\xf8\xf5\x61\xce\x92\x45\xf0\x54\x67\xd0\xd6\x03\xdb\x08\xd1\xff\xcc\x4e\x77\x56\xd6\xa6\x54\x72\xb3\x65\x86\x7e\x0a\xc7\x9b\x15\xf7\xce\x81\x43\x3b\xe2\x33\x26\xd8\x34\x58\x19\x7e\x87\xaf\xc2\xf4\xb5\x6f\xc4\x1d\xbb\xbf\x14\xf1\x52\x23\x53\xd5\xfa\x8d\x54\xaf\x5b\xa9\x51\x9b\x1f\x7a\x94\xa2\xe2\x7f\x3c\xa8\x53\x46\x60\x7a\x06\x4f\x91\xb2\xf2\x85\xbd\x77\x6c\x85\x85\x4b\x7b\x5b\xb2\x27\x6f\x83\xac\xac\x7f\x82\xea\xdd\xc1\x87\x46\x1a\xd6\xfe\x48\xea\x5a\x7e\x81\xae\xc3\x15\xcb\x89\xf4\xea\x20\xd8\x82\x9b\x49\x8f\xc4\x2c\xda\x75\x96\x6d\x33\xf3\x70\x4f\xa8\x52\xfa\xcb\xac\x2b\xfa\x01\x0e\x96\x64\xfa\xee\xa1\xdb\xca\x3e\x77\x7f\xe5\xaf\x04\xfb\xdb\xf4\x73\xf8\x94\xbf\xea\x09\x5e\x78\x0c\x13\x21\xef\x69\x2e\x44\x13\x8c\xf0\xb3\x01\xc4\xc8\xbc\x3b\xbd\xc2\xb5\x77\x88\xac\xbb\x49\xeb\x9c\xa9\xde\xb5\xc6\xb5\xa2\xcb\x77\xc7\xc6\xf5\x80\xa3\xb6\xd4\x1f\x3a\x85\x82\x65\x4a\x65\x29\x1b\x2c\x23\x6c\x6f\x16\x70\x79\x05\xcf\xe9\xef\x8d\x4d\x16\x97\x98\xde\xfc\x1f\x6e\x07\x5f\xc6\x8d\xa8\xee\x6c\x6e\x1c\x08\xff\xa9\x08\x25\x58\x99\xf8\x8a\xf8\xf4\x1e\x3f\xb9\xdb\x27\x46\x5d\xf5\x8a\x48\xfa\x26\x13\x9b\x2e\xd9\xf0\x65\xa1\x68\xff\x44\x38\x43\x68\x25\xb1\xfa\x12\x6d\x8e\xa2\xee\x5e\x0e\x56\xbe\x2c\x21\xd0\xbf\x3a\xb6\x7d\x00\x6f\x7c\xf3\x41\x93\x0f\x16\x1c\xca\xc4\x2f\x16\xc3\x26\x45\x3f\x50\x90\x28\x2f\x80\xf6\xbf\x81\x04\xfa\x3f\x12\x5b\x10\x7c\x18\x6c\x82\xfb\x7f\xda\x12\xb4\xff\x9a\x6e\x9e\xd0\x86\x41\xa3\xae\x6f\xae\x5b\x5e\x21\xdd\x03\xbc\x0a\x08\x9a\xc1\x6e\xfb\x5e\x5e\xf5\x44\xa5\xd6\xc6\x6d\xfd\x84\xac\xea\x4b\x6a\xf1\xff\xde\x0c\xfa\x72\x16\xdc\x5a\xe2\xc2\x7a\x37\xe7\xc2\x86\xd1\x39\xea\x7d\x70\x51\x43\xe5\x5c\x9a\xbf\xe3\xfc\x11\xf7\x96\x8d\x9e\xa4\xf7\x74\x8d\xca\xcd\x47\x6b\xb8\x5e\x80\x61\x6a\xd5\x89\x0d\xed\x90\x5d\x13\x72\xb3\x31\x8f\x70\x97\xbd\x5f\xce\x32\x9a\x21\xbc\x6b\xfb\x29\xd2\xe0\x7a\x74\xd3\x61\x45\x23\xd2\x7b\x29\xea\x48\xc4\xdb\xce\x46\x8c\x8b\x46\x62\x16\x78\x13\x0f\xcf\x1e\x0b\xaa\x82\x3a\xd0\xc8\x2f\x15\x9c\xb2\xbc\x64\xf0\x68\x9e\xd8\x66\x5c\xdd\x31\x12\xf5\x3a\xb2\x23\x2d\x36\x71\xa9\xc2\x7e\xa9\x7c\x57\x23\xa1\xee\xe2\x02\x7e\x94\x72\x0b\x3b\x61\x78\xdb\xc1\xa4\xae\x0f\x2a\x0d\x95\x92\x7a\x80\xed\x6a\x18\x04\xfd\xda\xc3\x4b\xd5\x43\xc1\x86\xd7\xb0\x80\x09\xbd\xf5\xd2\xbd\x35\x85\x0b\xf8\x63\x56\xaf\x19\xe5\xc2\x86\xd7\xe9\xb0\xe1\x91\xdf\xb7\x19\x05\x95\xd4\x2e\x12\x54\xc2\x4d\xae\x4f\x41\xac\x30\x70\xd9\x10\xe1\x7e\x9a\x33\x1e\xb6\x3e\x0a\x10\xce\x33\x51\x79\x28\x85\xe5\xb2\xe3\x97\x9c\x63\x5e\x0a\x36\x3c\x1e\xdb\x38\xd8\x53\xf0\x84\x5d\xdb\x13\xed\xb3\xb6\x94\xc6\x13\x98\x06\x2f\x73\x7d\x78\xda\x31\x96\x09\xf4\xb2\xef\x77\x3c\x70\xee\x5f\x0a\x06\x85\x22\xae\xfe\x87\xd9\x9a\xfe\xb2\x54\x63\x31\x39\x25\x4e\x1f\x50\xbd\xbc\x0d\x63\x40\x0a\x7d\x0f\x5e\xab\x2d\x8d\x03\x12\xf4\xf4\xa2\x37\x2c\xe0\xc2\xdf\xe5\xbe\xc8\x1c\x0f\xbd\x1c\xaf\x2f\x5d\xd8\x1e\x85\xd1\x2f\x48\x2a\x24\x74\x23\x84\x11\x7f\xce\xcd\x30\x1c\xd9\x4d\xde\xd9\xec\xec\xd5\xbb\xb7\xa0\xf9\x66\xdb\xfa\xce\xfa\x46\x2a\x04\x25\x97\x36\x8e\x8b\x2c\x30\x31\xb9\x14\xa3\x15\x7f\x58\x22\x0e\xa9\x21\xf9\x6d\x8f\xa0\x9d\xf5\xd9\x2e\x0f\x2f\x26\x5d\xd9\x2f\xbe\x8c\x2e\x1b\xae\x63\x2f\xe0\x43\xba\xfe\x76\x74\x69\x32\x0e\x75\xf0\x6c\x63\x20\xa7\xb4\xf7\x4e\x28\xd5\x91\x61\x0f\x4f\xa8\xef\xc1\xb9\x19\x05\xdf\x0d\x70\x3f\xf2\x31\xcc\xf3\x18\x09\x1a\xfd\xaf\x60\x86\xa2\x1e\x6f\x7d\xf2\x65\x03\x7a\xdb\x0f\x2e\xcd\x35\xbb\xc3\xc9\xf5\x79\x45\xe1\xba\xbb\x84\x3b\x99\xda\x40\xe5\xaa\x2c\xca\xd3\x53\xc0\xfc\x30\xcc\x0e\x05\xa0\x4a\x52\xdd\x05\x3a\x5f\xce\xe0\x3f\x03\x00\x00\xff\xff\x83\xa3\x5c\xcf\x39\x58\x00\x00" +var _nodeversionbeaconCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x3c\x5d\x93\x1b\x37\x72\xef\xfb\x2b\x5a\x7a\xd0\x91\x16\xc5\x5d\x5f\x52\xa9\xd4\xd6\x72\x5d\xb2\x62\x9d\x95\x38\x3e\x95\x2d\x3b\x0f\xaa\xad\x14\x38\xd3\x43\x22\x1a\x02\x34\x00\xee\x8a\xd6\xe9\xbf\xa7\xd0\xc0\xcc\xe0\x8b\x43\xee\xae\x9c\x8f\xf3\xc3\x9d\x48\x02\x8d\xee\x46\x7f\x77\x63\xcf\xcf\xcf\xe1\xdd\x1a\xe1\x47\x59\xe3\xaf\xa8\x34\x97\xe2\x5b\x64\x95\x14\x50\x49\x61\x14\xab\x0c\xac\x65\x5b\x6b\x30\x6b\x84\x2d\xd3\x06\x98\xa8\xa1\xd9\x99\x9d\x42\xd8\x2a\x69\x64\x25\x5b\xb8\x75\x3b\xf5\xfc\xcc\xc2\x33\x6b\x66\x40\xaf\xe5\xae\xad\x61\x89\xb0\xd3\x58\x83\x91\x80\x1f\xb1\xda\x19\x3c\x5f\x33\x51\xb7\x08\xcb\x56\x56\x1f\x34\x30\x03\x8c\xc1\x8a\xdf\xa2\x70\x5f\xc1\x1a\xf9\x6a\x6d\x1c\xa8\xb3\x0e\x3f\x8d\xea\x96\x57\x08\xac\xaa\xe4\x4e\x84\x48\x65\x98\xcf\xbf\x47\xa6\xcc\x12\x99\x01\x85\x5a\xee\x54\x85\x04\xe6\x6e\xcd\xab\x35\x70\x6d\xbf\xdd\x4a\xa1\xf9\xb2\x45\x68\xa4\x02\xdc\x70\x63\xb8\x58\x11\xb8\x98\x09\x78\x8b\xc2\xcc\x07\x34\xe8\x33\xb1\x86\x71\xe1\xce\xaf\x76\x4a\xd9\x2f\x3d\x0f\x88\x3f\xac\x6d\xe9\xb7\xdd\xb6\x92\x1b\x0b\x39\x66\xd0\x00\x89\x6b\x77\x3a\xd6\xf6\x0b\xb5\x07\xc3\x37\x48\x5b\x3b\x70\x86\x59\x34\xb9\x86\xdd\xb6\x66\x06\x6b\x02\x20\x15\xb0\x7e\xc5\x52\xee\x44\xcd\xd4\xde\x91\xc6\xaa\x35\xd6\x74\xcc\xd9\xc1\xbb\x9d\xbf\xac\x37\x5c\xf4\xdc\x21\xe8\xfe\x92\x58\x5d\x83\xc0\xbb\x14\x38\x47\xdd\x1d\x5c\xad\x99\x58\x21\xe0\x47\xae\x89\x69\x5e\x16\xf2\x0d\x73\x78\x7d\xe8\x27\xa8\x98\x00\x29\xda\x3d\x2c\xdd\xdd\x38\xa0\x35\xf0\xc6\x12\xbf\x07\x59\x55\x3b\x05\xac\x31\xa8\x22\x26\x87\x12\x02\xcf\x3b\xc8\xbf\x10\x6b\x5e\x2b\xc4\xdf\xf1\x2d\x2a\x2e\xeb\x8e\xcf\x5c\x5b\xe2\xac\xf0\x09\x6d\x51\x21\xd1\x14\xb2\x46\x0d\x6b\x76\x8b\x80\x42\xee\x56\x6b\xcf\x75\x49\xec\x33\xf6\x1f\x31\xf7\x1d\x76\xc1\xe5\x1d\x3c\x97\x08\x63\xad\x96\x56\xf0\x3b\xa2\x96\x7b\xa2\x81\x45\x4c\x9f\xc1\x72\x67\x1c\x0f\x78\xe3\xd5\x06\x15\x02\x53\x08\x42\x66\x92\x13\x32\xef\x8e\x9b\x35\x17\x25\xe1\x2b\x20\x24\x15\x74\xd0\xc3\x8b\x3d\xc0\xb2\x9e\xc2\x5e\xfb\xb9\xd1\xd8\x36\x44\x57\xa0\xcb\xbf\xed\x48\x58\x0f\x88\xbf\x3b\xeb\xa3\xc9\xa8\x98\x9f\xb1\xaa\x42\xad\x27\xac\x6d\xa7\xc3\x19\xb9\xf1\xf9\x74\x76\x06\x00\x60\xb1\xf9\xd9\xa8\x5d\x65\x55\x79\xab\x50\xa3\x20\x99\xd3\xb2\x31\x77\x2c\x10\x2d\xa6\xe1\x67\xdc\x30\x61\x78\xd5\x69\x70\x0f\x80\xb5\x52\xac\x88\x69\xb0\xc6\x76\x8b\x0a\x9a\x9d\xa8\x8c\x55\xc7\x7e\xcd\x6b\xa9\x40\x61\x83\x0a\x85\xbd\x1a\x8d\x08\x6b\x63\xb6\xfa\xf2\xfc\x5c\xe3\xe6\x16\xd5\x5c\xaa\xd5\x39\x2d\x0f\x29\xd0\x0e\xb7\x9f\x69\x09\x7c\xa2\xdf\x3b\x90\xaf\xe4\x66\x2b\x05\x0a\xa3\xa1\xc6\x86\x0b\x8b\x37\x03\xdd\x61\x79\x1b\x60\x99\x82\x6d\xd1\xc0\x86\xfd\x97\x54\x97\xf0\xcb\x1b\x61\xfe\xf9\xf0\x22\x2e\x8e\x2f\xda\x32\x53\xad\x8f\x2e\x52\xf8\x13\xb6\xc8\x34\x5e\x5a\x8e\x73\xb1\xfa\xe6\xac\x5f\xcc\x05\x37\x93\x10\xa1\x59\x74\xf2\x2c\x3a\x62\x56\x82\x35\x0d\x98\x63\xff\xb3\x32\x35\x27\x88\xb0\x70\xa4\x16\x7e\xb6\x47\xd8\x9f\xed\xff\xe7\x3f\xd3\x99\xb0\x70\x67\x17\x7e\xee\x91\xb0\x6b\xfa\x0f\xfd\xc2\xcf\x67\xd1\x6d\xfd\x84\x66\xa7\x84\xee\x05\x8a\x8b\xee\x56\x1b\xa9\x36\xcc\xc0\x04\xe7\xab\x39\xdc\x5e\x11\xb2\xd7\xf3\x2b\xc2\xea\x7a\x7e\x45\xc7\x5f\xbf\xb8\x1a\x8e\xb8\x9e\x46\x90\x99\x06\xe6\xd9\x50\xe4\x7e\xb3\x13\x60\xa4\x5b\x30\x99\x76\x1c\x4b\xf8\x65\xaf\xc8\x09\xe2\x2b\xa9\xd0\x2f\x59\x04\x6c\x9c\x0f\x20\xa2\x8d\xf4\xdf\xbc\x92\xa2\x62\x66\xf2\x74\xfe\x74\xe4\xd7\xfc\x97\xf8\x2a\x46\x8f\x98\x3e\xfa\x0c\x62\xe4\xf8\x19\xd1\x57\xa4\x62\x16\xa8\xbd\xdd\x17\xca\xdf\x35\x6f\x80\x1b\xe7\x9c\x34\x3c\x03\x45\xd7\x1a\xed\xe3\x4d\x26\x20\x4f\x16\x20\x78\x9b\xb0\xdc\xfe\xe7\xb6\x67\x9c\xef\x69\x7d\xf1\xb4\xa7\x3b\x81\xf9\x24\x46\x36\x90\xb6\x11\xb8\x45\xe1\xfc\x0a\x5e\xed\xb4\x91\x1b\x32\x28\x4c\x31\x23\x95\x86\xaf\xce\xcb\xe2\x6b\xd4\x8e\x78\xe0\x65\xb7\x92\x8a\xbc\xfb\x4a\x21\x73\xae\x94\x89\x68\xdf\x96\x69\x6b\xd1\xc3\xe5\x14\xdf\xb1\x56\x23\x48\xeb\x91\xee\x78\xa0\x34\xa9\xdc\xda\x0d\x7f\x71\xb0\xdf\xad\x99\x98\xfc\xa7\xdb\x73\xe9\x01\x4e\x2f\xe1\x5b\x29\x53\xc6\xf2\x06\x26\x81\xfe\x3f\x59\xb8\x4d\xee\x63\x6a\x28\x22\x6e\xf5\x7b\xae\xc3\x2d\x09\xa3\xc3\x4f\x07\xce\x25\xc3\x32\x9c\x6b\x3f\x1e\x3d\x97\xf6\x5c\x87\x5b\xc6\x2e\xb8\x3f\xcb\x59\xa9\xfe\x2c\xfa\x78\xec\x2c\xb7\xe7\x3a\xdc\x12\x9f\x05\x45\x69\xa2\x4b\x3b\x66\xdf\x4e\x10\x10\x08\x48\xb3\x5b\xf1\xb7\x1d\x6b\xad\xd3\xff\xb2\xc2\xf2\x57\xf5\x9d\x05\xfc\x4e\x9e\x26\x35\x21\x83\x52\xb1\xa3\xed\x53\xf8\xdb\xdf\x86\x9f\x3b\xd8\xee\xa7\x07\x72\xa5\x45\xad\xff\x10\x9d\xf9\x01\xb5\x3e\x5d\x61\x3c\xe9\x4f\x4a\xb4\x0f\x5c\xfc\x32\x94\xfe\x91\x97\xdf\x51\xfd\xb0\x9b\x2f\x92\xff\x30\xaa\x6d\xd6\x15\xd3\x15\xed\x7a\x0c\x8d\x0f\x96\x69\x1f\x0c\x45\xc6\x10\x9e\x3d\x8b\x42\xa1\xc8\x62\xf5\x3f\xfa\x40\x68\x51\xb4\x17\x27\x33\xe4\x2b\xfc\xc8\x2a\xd3\xee\xbf\x3a\x85\x35\xf7\xe1\x8a\x36\x8a\x57\xe6\x51\xba\x1e\x8b\xf8\x40\x78\x10\xe2\xf5\xd4\x97\x22\xbd\x80\x11\x11\x13\x6c\x26\x77\x31\xbf\x98\x5f\x0c\xf9\x49\x89\x82\xdf\x51\x49\x87\x2e\xc5\x67\x69\xb0\xef\xb1\xf5\x2b\x7c\x98\x7c\xd1\x87\xc8\x17\x7d\x78\x7c\x11\x87\xc6\x82\xb7\xd3\x14\x35\x9f\xec\x64\x55\x89\x2e\xcb\xb2\x8c\xe7\x22\x29\x2a\x84\x19\x8e\x59\x23\x57\x2e\x4d\x3e\x94\xad\x74\x99\x56\x57\x36\xf8\x74\x30\x29\x20\x30\xdf\x53\xb2\xed\x82\xfb\x7f\xfa\xc7\x83\x6b\x3d\x32\x1d\x7f\x92\xe4\xa1\x00\x69\x96\x6e\x99\x16\x52\x84\x60\x1f\x2c\x42\x7c\xf2\xa5\x5d\xe4\xbe\xc8\x52\xab\x51\x01\xb0\x97\xdb\x97\x50\xe6\xf0\x8b\x35\x72\x14\xb2\xbb\x5c\x13\x5b\xb8\x65\xed\x0e\xa1\xdf\x6c\xef\xa6\xe7\xfc\x12\x1b\xa9\xe2\x82\xcd\x32\x2e\x9f\xcd\x87\xbb\xe5\x9b\x6d\xcb\x1b\x9b\xc1\x63\xbd\x42\xa8\xac\xe0\x56\xb2\xc6\x61\xc9\xbb\x14\x21\xab\x99\x2c\x29\x7b\x5c\x90\x14\xac\xd9\x90\xac\x38\x21\x1e\xc0\xbc\xa1\xc2\x12\x6b\xef\xd8\xde\x11\xd9\x70\xa5\x0d\x60\x8b\x1b\x2a\x3a\x89\x10\xe1\x4e\x0e\xbe\xb5\x67\xfc\xc0\xb5\x39\xac\x04\x89\xe4\x58\x6d\x38\x2c\x4c\x56\x28\x82\x4d\x5d\xb6\x12\x2a\x53\xaa\x42\x29\xfc\xe8\x92\x23\x11\xba\x98\xc5\xb1\x5d\x2f\x4a\xc1\x89\xb3\x7e\x45\xa6\x66\xdf\x51\xf1\xad\xab\xbc\xdd\xad\x51\x8c\xd6\xdc\x22\xce\x3e\xbc\xf8\xd7\x43\xd1\x52\x19\x57\x17\x8a\x2b\x9e\xa1\x18\x68\xfc\x6d\x87\xa2\x42\xab\xee\xca\x1a\x0c\x6d\xd7\x4b\x81\x80\xac\xf2\x15\x2b\x26\xb2\x32\xe2\x1c\x22\x5c\xe3\xaa\xcd\x2d\x2a\xde\xec\x41\x48\xb7\x4d\xc3\x1d\x2a\x84\x0d\xb7\x66\x3e\xbf\x75\x07\x3a\xaa\xcb\x0c\x37\x12\x0b\x0f\x47\x7d\x09\xef\x93\xeb\xbb\x19\x2e\xa0\x23\x26\xb2\x22\xd3\x43\xf7\xc1\x44\xa1\x0e\xda\x6b\x44\x43\x35\x2b\xd8\xba\xf2\x56\xe9\x92\xb2\x15\x1b\x64\x7a\xa7\xd0\x9a\xce\xae\xec\x3c\x69\x94\xdc\xe4\xa5\xc5\xe9\x21\x36\x84\x25\x2a\x8f\x49\x58\x3c\x7b\xe5\x4a\x7d\x93\x26\xf8\xae\x23\x36\xa0\xf3\x15\x13\x52\xf0\x8a\xb5\xa0\x8d\x54\x6c\x85\xd6\x35\xac\xc9\xa4\x94\x4b\xd9\x71\xa1\x36\x47\xce\x2a\x19\xad\xf9\xd9\xc1\x7b\xcb\xcc\xfa\x12\x82\x0f\x8f\x38\x3b\x2f\xa3\x97\xcf\xef\xd7\x1d\xc7\xe1\xdb\xd0\x8e\x71\x51\xe3\x47\xac\x4b\x95\xe3\xf0\x9c\xce\x90\x46\x6e\xa6\xbb\x83\x4b\xf8\xe4\x98\x9c\x59\xa2\xcf\xd0\xe5\x7f\x83\x01\x76\x6a\xf7\x52\x29\xb6\xef\xd4\xb8\x50\x62\x8d\xb5\xf2\x10\x32\xb7\x4c\x1d\xb4\xa0\x97\xf0\xde\x61\x75\x33\x90\xfe\xc6\x52\x7b\xcc\xf4\x82\x6c\x0e\x17\x4f\x7b\xfc\x66\x3d\x50\xa9\xa8\x70\xc1\x9b\xb1\x92\xf1\x7e\x84\x02\x72\x0c\xbf\xf8\x8d\x03\x53\x1d\xf6\xdf\xc4\xec\x3b\x5c\x63\xe6\xce\x18\x8a\xdd\x66\x89\xca\xd2\xd0\x29\x19\x35\x8c\x42\x25\x93\x02\xa7\x24\x72\xae\x19\x93\x71\xbe\x3f\xcc\x97\xdc\x7d\x39\xdc\x58\xa3\x2a\xef\xac\x79\x7b\x78\x4d\x3f\x25\x24\x2d\xee\x9f\x7a\xcd\xaf\x0b\x3a\x1e\x88\xb8\x94\x2d\x32\x01\x4d\xcb\x56\x44\xe9\x07\xc4\x2d\x85\x71\x8a\x55\x1f\xec\x55\xb1\x52\x8f\x09\x04\x62\x4d\x54\x2d\xb1\x37\x84\x52\x38\x49\x58\x77\x1a\x36\x82\xa4\xdd\x43\x66\xf4\xaf\xe2\x47\xfc\x68\x7a\xa5\x74\x01\xf6\x80\xdf\x4b\xa0\x06\x9a\xcb\xf5\x4d\xe0\x5d\x92\xfe\xd3\xaf\x71\x38\x93\xf9\x99\xc3\x98\x58\x94\x23\x0a\x09\xad\x9f\x53\x17\x30\x60\x14\x37\xa3\x08\xad\x0d\x13\xcc\x5e\x7f\xa1\x0d\xd5\x6d\xdb\x30\x4e\x1a\xec\xcc\xba\xb1\x62\x11\xc7\x5c\xa1\x9d\xea\xa1\xbb\xc3\xe2\x4a\xfd\xcb\xba\xd6\x56\x95\x9c\x23\xd1\x85\xd6\xda\xfc\x70\x76\x83\x26\x8d\x5a\x32\x13\x95\x2c\x48\xcb\x3f\x5b\x85\x85\x82\x50\x02\x25\x8a\x84\xaf\x61\x85\xe6\x95\x53\x29\xb2\x1d\x93\xe9\xbc\xef\x89\xe5\x86\x7c\x44\x7e\x8b\xf5\xd8\x4b\x78\xfa\x8a\x09\xab\x75\x1a\xcd\xb9\xe3\x4a\xa9\xdf\x68\xa5\x9b\x34\xdc\xab\xbb\x54\xdd\xbf\xbc\x99\x13\x68\x4d\x0c\x35\x01\xe7\x4f\x47\xca\x74\x94\x58\x3a\x43\x41\x6a\x63\xa4\x4b\x50\xb5\xa4\xef\x9c\xec\xdd\xf1\xb6\x0d\x95\x83\x34\x83\xc4\xd5\x7e\xf3\xca\xdb\x0b\x2b\x05\xac\x6d\x31\xa6\x2c\xe7\xc9\x21\x75\x81\x05\x1d\x7d\x96\x55\xdf\x7d\x49\x79\x71\x9c\xbf\xef\x47\xae\xee\xc6\xd7\x9a\x8f\x60\x77\x2f\x88\x8b\x54\x56\xb2\x52\xa4\xc7\x3d\x17\x32\xea\x0b\x72\x0d\x77\x36\xe3\x11\x5e\x01\x2c\xdb\x85\x34\x6b\x6b\xb4\xd0\xe6\xf8\xa1\x69\xaa\xa5\xc0\x03\xc5\xcb\xd1\x1a\xe5\xf9\x39\xfc\x07\x3a\xfb\x6c\x24\x70\xa1\x51\xb9\x0b\x5f\xc6\x21\x81\x71\x57\x2e\x55\x8d\x36\x60\x6b\xfb\x7c\x24\x00\xd4\xb9\x00\x26\x80\x0b\x6c\x1a\x5e\x71\xca\x8d\xdb\x95\x54\xdc\xac\x37\xae\xb5\xca\xc9\x5c\x59\x29\xc6\x8f\x5b\xac\xac\xc8\x90\x69\xb1\xe0\x5b\xef\x6b\x53\xc8\x59\xc8\xde\x4b\x9d\xcd\xb0\x63\x44\xac\xa9\xe3\xa7\xc8\xc3\x90\x58\xb5\x28\x56\x26\xae\xe5\xde\xad\xb9\x4d\x35\xe0\x1a\xbe\x86\x67\xcf\xee\x01\xec\x3d\x7f\xf1\xf5\x0d\x5c\x8f\xda\x89\xc2\x8d\x5b\x8c\x39\xbc\x80\xaf\x47\xd4\xf1\x1e\x14\xb9\x8b\x9c\x58\x37\xc3\x67\x63\xb8\x4c\x33\x71\x10\x92\x04\xcb\x8a\x83\x1f\x29\xe8\x33\xd5\x34\x20\x81\x9d\xa0\x02\x25\x37\x24\xa9\xa9\xfe\xd8\x70\xc1\xe6\xd2\x5f\x5f\xba\x98\x12\xb6\x92\xdb\xec\xc6\x48\x60\x60\xc3\x06\x15\x4b\x99\xe9\xf2\x3d\x9b\x4d\x39\x0a\x12\x7b\x71\x7e\x0e\x8b\x6b\x7b\x9c\x9f\x62\x51\x68\xbd\x8d\x83\x4b\x7d\x5c\xd3\x79\xcf\x1a\x3f\x16\x71\xf9\x73\x8e\x0b\x99\x32\x61\xa8\x6f\xce\x1c\x25\x0a\xb7\x2d\xab\xba\x11\x01\x2b\xd5\x84\xcd\xfd\x71\xb1\x92\x8e\x77\x0e\xfc\x0c\x34\xa7\xc4\x91\x14\x20\xa8\x50\xc8\xd6\x86\x14\x58\xc4\xf7\x1f\x3a\x7c\x2d\x5a\x3d\x6c\xcb\x41\xe1\x91\x6e\x87\x06\x81\x05\xe6\x55\xf8\x35\xff\x88\xf5\x5b\xbb\xbe\x80\xb4\xf1\x8a\xca\xdb\x16\x57\xac\xa5\xec\xb8\x72\x9e\x65\xcd\xb6\x5b\x14\x1e\xd3\x61\xf2\xc1\x1e\xd5\x8d\x38\x14\xae\x4e\xcf\x53\xd3\x96\xcb\x6a\x59\x82\x16\x87\x5a\x7c\x27\x03\xf0\x71\xcb\xe4\xde\xfa\x6e\xb5\x2d\xed\x06\x0e\xff\x8a\x22\x91\x7f\xc1\x16\x29\x02\x11\xc7\xa2\x79\x28\xc4\x22\x35\xed\x4e\xc3\x91\x42\xe9\xed\xb4\x08\xe4\x7f\x25\xe2\x70\x34\x04\xd1\xc6\x23\x82\x8c\xf2\xf5\xa6\x46\xaa\xab\xe7\xfc\x1b\x46\xbc\x9a\x5e\xc2\xd3\x1f\x83\x42\x1c\xcd\x70\x60\xdd\xab\x7e\xb0\xf4\xff\x75\x6c\x43\xe5\xd0\x8d\xbc\x8d\xab\x2d\x1b\xb6\xa5\xa4\xc5\x6a\x6c\x27\x89\x74\xef\xdf\xc6\x81\xf8\xe9\x6c\x56\x74\xc8\xe4\x03\xee\x2f\x61\xd4\x2f\x04\x61\x82\x1a\x10\x8b\x0c\x78\x5f\xbb\xf9\x7b\x0e\x13\x32\x27\x3d\x84\x0a\x17\xf7\x0d\x15\x6c\xa0\xf0\x05\x02\x03\xa6\xc9\xdb\xdf\xef\xe4\x45\x54\xb7\x9f\xc5\x07\x6f\x50\x6b\xb6\xc2\x4b\x78\x9a\x65\x17\x3e\x68\xe5\x24\x8c\x33\xab\x2f\x83\x0f\xa4\x09\x3b\x5a\xd0\x59\x81\x50\x12\x9e\x26\x42\x75\x0f\xd6\x7b\x29\xa5\x78\x26\x17\x4d\xe7\xf7\xac\x97\x5c\xb3\x2e\x20\x6e\xac\x03\x74\xa2\xb4\x97\xbb\xce\xbd\xf9\x88\x46\x61\x25\x55\x1d\x39\xe1\x62\xc8\xe0\x8d\x01\x4d\x03\x92\x3b\x76\xb0\x59\x5d\x2b\xa4\xb6\x2b\x55\x58\xbc\x54\x3a\x0c\x78\xe0\xa6\x65\xd3\xf4\xf2\x3a\x4b\x61\x2f\xb1\x62\x3b\x8d\x83\x40\x93\xb8\xdf\x59\x56\x2a\x83\xea\xc1\x1e\xd5\x0f\xcd\x3c\x7b\x06\x0f\xf5\xa9\x4f\xe0\xfa\xe1\x5e\xb5\x34\x44\x71\xba\x2f\x4f\x43\xc8\xc0\x0f\x27\x2e\xf9\x17\x5f\x14\x28\x16\xb8\xb8\x28\x17\xb2\xb8\xaf\x5c\x35\x4a\xfe\x8e\xe2\x3e\xd5\x83\xd0\x55\x4e\x04\xde\x95\x8a\x4d\x99\xfb\x96\xda\x9c\xc4\x8d\x11\xb7\x4c\x01\x52\x7a\xdc\x53\x47\x3c\x2c\x77\x4d\x83\xca\xc5\xde\xd2\xc0\x56\xc9\x2d\xaa\x76\x6f\xd1\x7f\x92\xfa\xbe\x54\xfc\xfe\x82\xa6\x38\xbd\x3b\xcf\x32\xec\x2a\x08\x2f\xfa\x96\xdf\xa1\xb0\x23\x3b\x67\xf0\xd5\x96\xf9\x9d\xb7\x5e\xe2\x5e\xda\xa0\x33\x44\x60\x06\x9a\x35\xa4\x62\x1b\xf6\xa1\xaf\xff\xfd\x0f\x04\x96\xa3\xec\x4f\xb9\x7f\x62\x92\x1d\x7e\xcc\x38\x6a\xc3\x88\xd0\x6b\xef\xef\xe5\x87\xde\x9f\xaa\xc6\x37\xd9\x65\x7c\x17\x54\x66\xad\xe2\xdc\xe1\x9f\x7c\x1d\xd7\xdf\x44\xbb\x0f\xa7\x98\x29\x31\x51\x94\xc1\x44\xbd\x9b\x14\x6c\x58\x1d\x8f\x02\x82\xce\x69\x94\xbc\x55\xc6\xc8\x82\x9c\xdd\x33\x86\x85\xab\x02\x6b\x9f\x3d\x3b\xed\xa4\xe4\x9e\x4b\xb0\x66\x19\xa4\xc1\x4f\x92\x4a\x5a\xa3\xef\x95\xd2\x9a\xf2\xa5\x42\xf6\x21\x2b\x96\xee\xbb\x7a\x8e\x0b\x6c\x18\x4d\x3c\xcf\xe1\x5d\xf7\x43\x00\xc4\x0d\xda\x13\x5f\xb3\x74\x23\x56\xf0\xfb\xba\xd6\x7b\x08\x79\xf4\xc1\xc6\xb0\x0f\x6b\xba\x25\x47\x84\xb3\x41\x10\x77\x81\xf3\x06\x97\x93\x58\x7b\xb6\x2e\xf5\xf4\x5d\xb0\x6e\x63\xe2\x0f\x88\x5b\xed\x4b\xfa\xb2\x29\xbd\xf3\x80\xbe\x97\xeb\x5e\x9c\x38\xf8\x7d\xfc\x42\xad\xf9\x25\xc2\x1a\x29\x29\x6f\xf7\xdd\x2b\x81\xe4\xa1\xcb\xd0\xeb\x09\xfd\x78\xfa\x1a\x66\x78\x6c\xd3\x87\x11\xd4\x29\x0e\x47\x48\x08\xf9\xd9\xd0\x05\xb1\x64\xd0\xca\x7a\xa7\xba\x35\x7a\xaf\x0d\x6e\x2c\x5d\x42\x33\x1a\x91\x3f\x5c\x49\x1f\xb8\x17\x56\xd3\x87\x5e\xc5\x90\xae\x8c\x9f\xe0\x1b\x0f\xa4\xcf\x87\x3d\x65\x0f\x76\x52\x1c\x25\xaf\xd6\x58\x7d\x78\x5d\xb2\x4e\x93\x69\x3e\x99\xf9\xe4\xf4\x9c\xe9\xf0\xac\xe6\xbd\x0a\x68\x23\x29\x99\x1b\xdb\xcc\x49\xb2\x5b\xf2\x36\xca\xa4\xd0\x78\xcf\x8f\x1b\xbc\xe6\xaf\xe9\xf2\xc9\xb4\x38\x2d\xe7\xf9\x6d\x4f\x76\x0c\x3f\xf5\x78\x28\x34\xfe\x53\xa6\xe5\x9a\x1d\x4f\x15\x14\x68\xca\xbe\xca\x6d\xe2\x30\x54\x90\x33\x60\xbc\x07\x95\x0d\x92\xbf\x24\xfb\x97\xab\x4b\xdf\x1e\x0b\xbe\xea\x07\x33\x7c\x34\x68\xf5\x48\x27\x19\x7e\x3c\x8a\x0b\x51\x90\xef\x33\x7e\x29\xfe\x64\x92\x5e\x5f\xe2\xdb\xdc\x5b\x28\x9a\xcf\xb4\x6b\x99\xd8\xf7\x5d\x51\x5f\x4d\xa4\x06\xe6\x11\xc9\x1b\xe7\x44\x31\x20\x38\xb2\xe5\x79\x90\x23\x1e\x8a\x9a\x5f\x59\x7d\xf4\x14\x84\x85\x50\x5f\x54\xec\x29\xcd\x5c\x56\xd8\x6b\xb0\xa9\x58\x9d\x99\x84\x41\x44\xc7\x94\x3e\x9f\x39\x7f\x74\x40\x57\x54\xfb\x47\x46\xb1\xe1\xee\x5b\xa6\x7a\x3e\xb8\x69\x81\xc5\xe9\xa9\x54\xa1\x52\x10\xc3\xba\x7a\x44\xa6\x95\xb0\xe2\x7e\xc5\x87\x08\x8d\x1b\xb8\x5a\x94\x58\x54\xa8\x3e\x26\x9c\x88\x3f\x3f\xcf\xea\x14\xe9\x75\x27\xfb\x4b\x72\x7e\x20\x29\x2d\xb6\xc9\x44\xd7\xa5\x78\x80\x58\x64\xd8\xfc\xdf\x49\x7b\x5d\x83\xef\x31\x20\x63\xca\x8e\x24\x83\x6f\x1a\xb8\xc3\x6e\x94\x9c\x0d\x5a\xaf\xf0\x05\xb9\x85\x03\x0f\x70\x1f\x59\xef\x1c\xf0\x81\x38\x00\x1c\x71\x93\xfe\x5a\xcb\x53\x7e\xe9\xa4\xd2\x79\xd7\x47\xf5\x83\x30\x9a\x6d\x7c\xad\x85\xe9\xbe\xd1\xd4\x19\x7a\x1f\xe7\x95\xde\x19\x67\xc1\x96\xb5\x72\xa3\xbe\xbc\xe0\x7c\x0b\x2f\xc7\xc8\x4f\xf8\x42\x46\x69\xc7\x02\xde\xdf\x64\x22\xfb\x68\x7b\xe9\xb4\xc6\x3f\x0f\x0e\x9f\x05\xff\xeb\x4e\x9b\x6e\xe4\x93\xaa\x52\x4c\xd3\x64\xd0\xbc\x04\xa2\xe3\xab\xcd\xd9\x67\xbd\x43\x04\x66\xa0\x45\xbf\xcf\x97\xd9\x8e\x0d\x57\x65\xd0\x43\xb6\xcc\xa9\x1f\x55\x1f\x57\xc8\xf7\xc5\x06\xc6\xa3\xb2\xea\x13\x0a\xc1\x37\xd9\xa9\x37\x4f\xf2\x17\x72\x1d\x4f\x03\xba\x8e\x28\xe4\x8b\xaf\x5d\x3b\xbe\x6a\x77\x75\xf2\xee\xdc\xba\x68\x59\xf7\x29\xcb\x90\xb8\x2f\xad\x3c\x67\x9e\x4b\x1b\xa6\xac\xc6\x15\x38\x58\x96\x9b\x6f\xbe\x79\xb8\x11\x9c\x66\x85\x6a\x1a\xd1\x10\xf5\x23\xda\x74\x79\x9e\xe0\x48\xba\x82\x8b\x91\xc9\x09\xaf\xf1\x54\xb4\xed\xe7\x88\x3b\x7b\xd1\x57\x6a\x99\x81\x8b\x3c\x7e\xf5\x1c\xbb\x18\xbb\xa3\xae\x7d\x40\x8b\xcf\x8a\xfd\x80\x2b\x22\x3c\x47\xb1\x9f\xe0\xbf\x5f\xd5\x87\xe7\xb2\xf6\x30\x45\xa1\xb3\x4b\x62\xea\x5a\x0d\x47\x5c\xf8\x21\x59\x3e\xf4\x8e\xe3\x48\xc7\xb1\x60\x55\xc7\x2a\xaf\xd3\xae\xd6\x9a\xbf\xf3\xb8\x7f\xb7\xf3\x00\xca\x69\x22\x11\x56\xb7\x4a\x85\x87\xb8\xa4\x50\x1e\xed\xf6\xb3\x90\xc5\xfd\x47\xc6\xbd\x3d\x57\x7e\x4c\x83\xff\x2e\xee\x1f\xe3\x09\x25\xac\xe3\x69\x43\xca\x89\xd7\xfe\x0d\xbe\x43\x59\xe5\x57\x39\x4c\x49\x44\xad\x57\x9b\x16\xe8\x81\x17\x0a\xab\xec\xef\x42\x0c\xaf\x39\xfe\x9d\xed\x3b\x14\xe3\x77\x1e\xf7\xf2\xb4\x47\x1e\x3a\x58\x15\xed\x34\x7e\x01\x17\xd6\xe7\x87\x23\x8e\xde\x5a\xf4\xb6\x40\xe0\x2d\x2a\xb8\xf0\xa3\x0f\x1d\xb1\x17\xc1\x8b\x0d\xef\xc7\xb6\x2c\xf0\x59\xbc\x21\x7d\xe6\x3e\x1a\x3e\xd5\xc8\x7e\x2a\x55\x44\x1d\x90\x6b\x7a\xa3\xd4\xd7\x15\xdd\x97\xde\xd8\x3b\x1c\x97\x78\x2a\x9a\xc9\x93\xef\x81\x1b\xe1\xcb\x9c\x82\xa9\xb1\x67\xbe\x08\x9c\x5b\x31\x1e\x1d\xa0\x7d\x99\x09\x8c\xc0\xd0\x84\x26\x72\x1c\x55\x8f\xc4\x4d\x74\xa7\x3f\x0d\x31\x4c\xd8\x38\x77\x1a\xd9\x47\x36\x6b\xae\x8d\x54\x34\x79\x3f\x5e\xb4\x0e\x95\xe9\x80\x31\x0d\xb5\xe8\x88\xf2\x0e\xa9\x70\x26\xbc\xdf\x04\x1c\xfe\x22\x82\x75\x3a\x1f\xe9\x9c\x9b\x92\xa5\x1f\x21\x7b\x5c\x3e\xfc\xfe\x30\xb7\xc9\x22\x7d\xaa\x47\x68\xeb\xa1\x6d\x04\xe9\xff\xdc\x50\x77\x67\xd6\xc6\x54\x72\xb3\x65\x86\xfe\x24\x90\x37\x33\x6e\xcd\x81\xcb\x3b\xd1\xa7\x4c\xb0\x69\xb0\x32\xfc\x16\x5f\x86\xe9\x6e\xdf\xc8\x3b\xf6\x7e\x2a\xe2\xa9\x46\xa6\xaa\xf5\x6b\xa9\x5e\xb5\x52\xa3\x36\xdf\xf7\xa8\x45\xcd\x83\x78\xe0\xa7\x8c\xc0\xf4\x0c\xbe\x84\xd4\x95\x1f\x14\xbe\x65\x2b\x1c\x79\x54\xb8\x25\x7b\xf3\x26\xc8\xea\xb2\x15\xa8\xde\x1e\x5d\x64\xa4\x61\xed\x0f\xa4\xde\xe3\x0b\xe9\xf9\x5e\xb1\x4c\x49\x5b\x06\x45\x10\xdc\x4c\x7a\xe4\x66\x11\x16\xb3\xec\xb8\x99\x87\x7b\x42\xf5\xd3\x3f\xd2\x5d\xd1\x1f\x22\x61\x49\x05\xc1\xfd\xe8\x8e\xb2\xbf\xbb\x7f\xe5\x4b\x82\xf3\x6d\x5a\x3b\x7c\xca\x97\x7a\x82\x17\x1e\xc3\x44\x29\x7a\x9a\x0b\x51\x09\x23\xfc\x6c\x20\x32\x32\x77\x4f\x4b\xb8\xf6\x0e\x95\x75\x2f\x84\x9d\x33\xd6\xbb\xd6\xb8\xd6\x77\xf9\x8d\xdb\x69\x7a\xc3\x51\x5b\x2e\x1c\xba\x8d\x82\x45\x4b\x64\x2e\x1f\x68\x23\xac\xaf\x17\x70\x71\x09\x4f\xe9\xdf\x1b\x9b\x84\x2e\x31\xfd\xcb\x07\xc3\xeb\xe7\x8b\xb8\xf1\xd5\xdd\xd1\xb5\x03\xe1\x3f\x15\xa1\x04\x3b\x13\x5f\x13\xdf\xe2\xc3\x27\x87\xfb\x84\xab\xab\x8e\x11\x49\x5f\x65\xe2\xd3\x25\x31\xbe\xec\x14\x9d\x9f\x08\x69\x08\xad\x24\x5e\x9f\xa3\xc3\x51\xd4\xdd\xe2\x60\xe7\xf3\x12\x02\xfd\xd2\xb1\xe3\x03\x78\xe3\x87\x0f\x1a\x7d\xb0\x90\x51\x26\x7e\xb1\x18\x0e\x29\xfa\x8f\x82\x44\x79\x01\xb4\xff\x1b\x48\xa0\xff\x47\x62\x13\x82\x0f\x83\x6d\x70\xff\x9f\xb6\x20\xed\x7f\x4d\x37\xc7\x68\xc3\xa8\x51\x97\x39\xd7\x2d\xaf\x90\xde\x2b\x5e\x06\x04\xcd\x60\xb7\x7d\x27\x2f\x7b\xa2\x52\xab\xe3\x8e\x7e\x44\xb6\xf6\x39\xf5\x10\x7f\x34\x83\x3e\x9f\x05\xaf\xa8\xb8\xb0\xde\xd0\xb9\xbc\x61\x64\x8f\x7a\x2b\x5c\xd4\x50\x39\x17\xe8\xdf\x66\x7f\xc0\xbd\x65\xa3\x27\xe9\x1d\x3d\xeb\x72\xf3\xd9\x1a\xae\x16\x60\x98\x5a\x75\x62\x13\x1a\xa0\xe1\xd9\x92\x9b\xc5\x79\x80\x7b\xed\xfd\x78\x96\x19\x0d\xe1\x61\xdb\x4f\xaf\x06\xcf\xba\x9b\x0e\x2b\x1a\xd1\xde\x4b\x51\x47\x22\xde\x76\x36\x62\x5c\x34\x12\xb3\xc0\x9b\x78\x68\xf7\x58\x30\x16\xd4\x97\x46\xfe\x02\xc3\x29\xdb\x4b\x06\x8f\xe6\x99\x6d\xe6\xd6\x5d\x23\x51\xaf\x23\x3b\xd2\x62\x13\x97\x40\xec\x97\xca\x77\x4d\x12\xea\xce\xcf\xe1\x07\x29\xb7\xb0\x13\x86\xb7\x1d\x4c\xea\x2a\xa1\xd2\x50\x29\xa9\x07\xd8\xae\x36\x42\xd0\xaf\x3c\xbc\x54\x3d\x14\x6c\x78\x0d\x0b\x98\xd0\xaa\xe7\x6e\xd5\x14\xce\xe1\xcf\x59\x1d\x68\x94\x0b\x1b\x5e\xa7\x43\x8e\x47\xfe\xbe\xcf\x28\xa8\xa4\x26\x92\xa0\x12\x1e\x72\x75\x0a\x62\x85\x41\xcf\x86\x08\xf7\x53\xa4\xf1\x90\xf7\x51\x80\xf0\x22\x13\x95\xfb\x52\x58\x2e\x67\x7e\xce\x39\xe6\xa5\x60\xc3\xe3\x31\x91\x83\x3d\x0b\x4f\xd8\x95\xbd\xd1\x3e\xeb\x4b\x69\x3c\x81\x69\xf0\x3c\xd7\x87\xc7\x5d\x63\x99\x40\x2f\xfb\xfe\xc4\x03\xf7\xfe\xb9\x60\x50\x28\xf2\xea\xff\x50\x5d\xd3\x3f\xd6\x6a\x2c\x26\xa7\xc4\xf5\x03\xaa\x17\x37\x61\x2c\x48\x21\xf0\xc1\x67\xbe\xa5\xf1\x43\x82\x9e\x3e\x40\x87\x05\x9c\xfb\x37\xe6\xe7\x99\xe3\xa1\xc5\xf1\xfe\xd2\x03\xf2\x51\x18\xfd\x86\xa4\xc2\x42\x2f\x52\x18\xf1\xe7\x85\x19\x86\x32\xbb\x49\x3f\x9b\xd5\xbd\x7c\xfb\x06\x34\xdf\x6c\x5b\xdf\xb9\xdf\x48\x85\xa0\xe4\xd2\xc6\x71\x91\x05\x26\x26\x97\x62\xb4\xe2\x1f\xc2\x88\x43\x6b\x48\xfe\x26\x49\xd0\x2e\xfb\x64\xb7\x87\x0f\xa3\x2e\xed\x17\x9f\x47\xb7\x0d\xcf\xc3\x17\xf0\x3e\xdd\x7f\x33\xba\x35\x19\xbf\x3a\x78\xb7\x31\x90\x53\xda\x87\x27\x94\xfc\xc8\xb0\x87\x37\xd4\xf7\xf8\xdc\x0c\x84\xef\x32\xb8\x3f\x4e\x32\xcc\x0d\x19\x09\x1a\xfd\x5f\x11\x0d\x45\x3d\x3e\xfa\xe4\x47\x0e\xb4\xda\x0f\x4a\xcd\x35\xbb\xc5\xc9\xd5\x8b\x8a\xc2\x75\xf7\x18\x78\x32\xb5\x81\xca\x65\x59\x94\xa7\xa7\x80\xf9\x7e\x98\x4d\x0a\x40\x95\xa4\xba\x0b\x74\x3e\x9f\xc1\x7f\x07\x00\x00\xff\xff\x4f\x37\x75\xb5\x79\x59\x00\x00" func nodeversionbeaconCdcBytes() ([]byte, error) { return bindataRead( @@ -259,11 +259,11 @@ func nodeversionbeaconCdc() (*asset, error) { } info := bindataFileInfo{name: "NodeVersionBeacon.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3c, 0x36, 0xb0, 0x47, 0x1b, 0xf3, 0xc3, 0x30, 0xb2, 0x45, 0xc3, 0xd9, 0xe2, 0x4b, 0x2c, 0x29, 0xa5, 0xef, 0x8c, 0x26, 0x11, 0x16, 0x67, 0x34, 0xe, 0x1b, 0xcf, 0xa, 0x2e, 0x1d, 0x1c, 0x6b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0xe5, 0xf6, 0x53, 0x3d, 0x26, 0x42, 0xb1, 0xaf, 0xd3, 0xff, 0x2, 0xd2, 0x6e, 0xd4, 0xf9, 0x55, 0x9d, 0xfb, 0xc9, 0x36, 0x5b, 0xa6, 0x33, 0xa7, 0x1f, 0xd, 0xde, 0x76, 0xda, 0x16, 0x61}} return a, nil } -var _stakingproxyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\xdb\x6e\x1b\x37\x13\xbe\xd7\x53\x4c\x7c\x91\x48\x80\x63\xfd\xf8\x1b\x04\x85\x50\xb5\x4d\x63\x14\x35\x82\xa6\x46\xec\x5c\x15\x01\x42\x91\xb3\x5a\xc2\x5c\x72\x4b\x72\x23\xab\x86\xde\xbd\xe0\x69\xcf\x2b\xcb\x09\xa2\x1b\xed\x2e\x39\xa7\x6f\xc8\x99\x8f\x5c\x2e\xe1\x36\xe7\x06\xa8\x92\x56\x13\x6a\x81\x61\xc6\x25\x1a\x20\x12\xb8\xb4\xa8\x33\x42\x11\x32\xa5\x41\x2a\x86\x60\x2c\xb9\x43\x6d\x66\xcb\x25\x58\x05\x95\x41\xf7\xb7\x41\x20\x1b\xe1\x1f\x4b\xd4\x99\xd2\x05\x50\x55\x14\x4a\xfa\xe9\x5c\x6e\x81\x50\xcb\x95\x34\x33\x27\x77\x65\x81\x08\xa3\x1a\x43\xa0\xd1\xa8\x4a\x53\x04\x9b\x13\x0b\x24\x58\x52\x25\x6a\x62\x95\x06\x4a\xa4\x13\x8b\xb6\x8c\x55\x1a\x6b\xbd\xa5\x56\xf7\x1c\x8d\xf7\x8f\x08\x01\x2a\x03\x9b\x23\xd7\x6d\x15\x5c\x79\x79\x8d\xc2\x3f\x9b\x9c\x97\x66\x36\x2b\xab\x4d\x13\xf3\x4d\x50\x77\xad\xd5\xfd\x1e\x1e\x66\x33\x00\x80\xe5\x72\x09\x25\xb1\x79\x63\xd4\xe6\xd8\x73\x2d\x39\x5e\x0b\x70\x39\x9c\x65\x80\x50\xaa\x2a\x69\xbd\x97\xc9\xf3\x1c\x45\x89\xda\x0b\x3a\x57\x04\x5a\x78\xaf\x18\xfe\x15\x85\xde\x92\x92\x6c\xb8\xe0\x76\x7f\x63\x95\x26\x5b\xbc\x26\x36\x5f\x41\xeb\x65\x76\x82\xec\x75\xb5\x11\x9c\x06\xd1\xe6\xb9\x89\xef\xad\x92\x96\x70\x69\x1a\xa7\xb9\xcc\x14\x10\x63\x14\xe5\xc4\x22\x83\x1d\xb7\x79\x3f\x23\xb5\x61\x63\x75\x45\x83\xed\x2b\x27\x17\x91\x6b\xfb\xc5\x99\x73\x5a\x73\xb9\x1d\x0c\x69\x25\x70\x05\x1f\xaf\xa4\xfd\x71\x30\x26\xd1\xee\x94\x76\x40\xbd\x61\x4c\xa3\x31\x93\x5a\x9a\x99\xef\x70\x3f\x39\x2b\xa2\xde\x9e\x52\xcf\xe1\x92\xdb\xb9\x0b\xf0\xea\x32\x0d\x9e\xb7\x9d\x3b\x9f\xf6\xe6\x7c\xdc\xfc\xf9\x88\xbd\x05\x3c\xd4\x16\xbd\x67\x1a\x7b\x5f\xdc\x2f\xb8\x71\x21\x50\x6e\x6d\x0e\xeb\x35\xbc\x7e\xb5\x82\x33\x07\x30\x5c\x5d\x42\xfc\x5c\x54\xc6\xba\x3d\xf7\xc3\xff\x61\xb3\xb7\x68\x60\xfe\xfa\x15\xe4\x78\x0f\x34\x27\x6e\x39\xa3\x36\x8b\xb3\xa1\xea\x7e\x10\xc9\xca\xcf\xf0\x3f\x78\xfe\xbc\x1b\x49\x6f\xac\x09\xa7\x35\xb0\x1a\x98\x48\xbf\xb3\x68\x01\x88\x64\xf0\x0e\xf7\x90\x93\x2f\xa9\x50\xb8\x95\x46\x95\xd6\x48\x6d\x8c\xa7\xeb\xea\xa1\xf3\x66\x50\x64\x17\x9c\xc1\x3a\x22\x33\x1c\x74\x89\x82\xb5\xcf\xd7\x70\x70\x10\xb3\x53\xd4\xff\x76\x4c\xcc\x39\xbf\xee\x42\x33\x9c\xde\xa0\x03\xeb\x16\x54\xb3\x6e\x48\x87\x66\xdb\xdd\xe6\xd8\xaa\xad\xbe\xe8\x09\x5e\x70\x6b\x60\x37\x51\x00\x5d\x09\x49\xae\x3a\x0d\x99\x56\x85\x87\x32\xd4\x63\xd8\xe5\xca\xbd\xee\xa3\x90\x2f\xd8\xfd\x6d\xda\x58\x74\xeb\xe9\xc6\x0b\x76\x2a\x5e\x9a\x9f\x55\xa1\x70\xe3\x7b\xdc\xdd\xaa\x3b\x94\x66\x4e\x0a\x57\xc0\x56\xf0\xf1\x77\x7e\xff\xfa\xd5\x62\x62\xfe\x47\xe9\xff\xd8\xa9\x42\x1a\xff\xa9\xd0\xd8\x20\xc6\xe5\xf6\x71\x89\x2a\x58\x78\x23\xc4\x7c\x64\xd4\x15\x2b\xa6\xc9\xee\xa9\x7e\x24\xb9\x0f\xb8\x23\x9a\x1d\x97\x3b\x92\x46\x04\x86\x86\x6a\xbe\xc1\x3a\x91\x0c\x05\x6e\xeb\x24\x32\x75\x3c\x27\x97\x69\xf6\x64\x5a\xa2\xbe\xa7\x64\x26\x89\x3c\x15\x94\x24\x77\x0a\x28\xdf\x96\xd4\xef\x9c\xb6\xc7\x37\x5f\x7f\xc3\x95\xae\x55\x9a\x1c\x4d\x24\x13\xbd\xfd\xf2\x87\x12\x2c\xb6\x6e\xa7\x90\x18\xd7\xf6\x95\x66\xa8\x5d\x8d\x23\x42\xa8\x1d\x28\x9b\xfb\xd7\x3b\x94\x90\xfb\xf9\xc6\x0d\xba\x5e\xc3\x89\xe0\xff\x36\x94\xa1\x4b\x08\xba\x34\x25\xb4\x5f\x9b\x63\x51\x2f\x9c\x9a\x2b\x4d\x6e\xe7\xe0\x5e\x68\xf7\x63\x6b\x88\x30\xd6\xe6\x3b\x83\xd6\xe7\x38\xd5\x7e\x05\x6f\xe4\xfe\xc6\x2f\xd2\x87\x9e\xfe\xc3\x48\x2a\xb6\x68\x13\x0b\xe8\xe9\x5b\xac\x6a\x7e\xf0\xcb\x58\x2a\xba\xdc\xaf\x47\x9c\x02\xef\x0a\xa4\x8a\xeb\xc4\xa3\x9a\x32\x68\x15\x14\x44\x92\x2d\x8e\xc2\xd6\x01\xdf\x55\xc8\x92\xec\x3d\x98\xa0\xb2\xec\x25\xcd\x09\x97\x2d\xe2\x66\x2c\x12\xe6\x08\x64\x23\x6c\x86\xa8\x8f\x62\xbd\x3a\x35\x05\xce\xd2\x9f\xa4\x34\x21\xce\xab\x4b\xbf\x26\x88\xdc\xa7\x72\xe0\x31\xe0\x45\x29\xb0\x40\x69\x03\x2d\xeb\x17\xeb\x3a\xef\x1d\xad\x7e\xd5\x99\x3e\x7e\x56\x81\x6b\x5c\x21\xa4\xca\x78\x1c\xdc\xa3\x50\xf4\x0e\x59\x3b\xc8\x5a\x8f\x8c\x9c\x2f\x56\xda\xc1\xa4\xd0\x88\xe6\xae\xf1\x2d\xe0\x0b\xa9\x09\xed\x75\x60\xe2\x2b\x78\x08\x79\x3f\xb6\x80\x0e\x8f\x20\x92\x16\xcc\xb4\x51\x19\x67\xb4\xcc\x25\xa1\x43\x8f\xd9\xf5\x89\x57\xbb\x65\x47\xa7\x61\x0d\x0f\x23\xbc\x23\x19\xe9\x0e\xf7\x9c\x7f\xdf\x6b\xd5\x42\xb8\xb4\xf1\x90\x59\xc6\x22\xa1\xde\xa8\xaa\x2e\x33\xae\x4f\x77\x54\xec\x88\xb4\x7e\x3a\xa5\x58\xda\x08\x78\xdd\xc1\x7b\x5b\xb7\xbb\xcd\x3c\x04\xe9\xd3\x69\x14\xb3\x13\xda\xdf\xe9\xe1\x82\xb3\x4f\x8e\x6f\x4a\x2e\x1e\xa3\x63\x13\xb2\x75\x4e\xa6\x90\xfa\x80\x85\xfa\xd2\x3e\x66\xf0\x0c\xb8\x05\x6e\xe4\x0b\xd7\x08\xfd\x01\xcf\xed\x85\x42\x69\x1c\xe9\x2a\x4e\xf8\xf1\x1a\xd3\x0b\x58\xa3\xad\xb4\xec\xfa\x7d\x11\x74\xcd\xef\x1c\x39\x0f\x8a\x16\xcf\xa6\x9c\xbe\x8e\xad\x80\x39\x2f\xfc\x21\xd6\x65\x6a\x8b\xd6\x1f\x37\x6d\x1e\x43\xf1\xe7\x4f\x30\x25\x52\x9e\x71\x9a\x16\xf3\x57\x96\xc9\x13\x62\x08\xd8\x5f\x7e\x7a\x82\xdb\xc1\xc5\x76\x51\xf4\x35\x31\x27\x06\x0c\xdf\x4a\x64\x50\x95\x1d\x1d\x83\x83\xec\x0b\xd3\xc0\x6c\x55\x4d\x35\xc3\xb2\xee\x88\xde\x3a\x2a\x5a\x1f\x9a\xb9\x86\xcf\xbd\x12\xf0\x19\x72\xd4\xd8\xb4\xcb\x64\xab\xa3\xa5\xde\x55\xad\x7b\x05\xa3\x0a\xec\xdf\x2a\xf8\xeb\x84\xef\xd0\xe6\x4e\xdf\x4e\xdd\x72\x92\x92\x73\xe2\x7e\x9a\x12\x0e\x1e\x4e\x65\xf8\x76\x70\x19\xe1\x18\x26\x4d\xab\x32\xac\xf1\xce\xbd\x46\x5a\x09\xdd\x24\xab\x38\xd5\x2d\xdf\xd6\xa5\xca\xbe\xde\x9d\x20\x15\x08\x25\xb7\xa8\x41\x22\x32\x64\x13\x7b\xf3\x08\xd8\x8b\x63\x30\x7f\x33\xca\xcf\xc6\x50\x9e\xdc\x41\x5d\x25\x4f\xaa\x05\xbf\x29\xad\xd5\x0e\x08\x9c\x69\xcc\x50\xa3\xa4\x78\xe6\x00\x4c\xe7\xb0\x06\x3b\xa3\xea\x0f\xf5\x1d\x54\xb7\xcf\xba\x64\x6d\x30\x2d\xeb\x74\xd1\xc2\xed\x00\xdc\x8d\x37\xfa\xb5\xe0\x1e\xab\x25\xe3\x70\x4e\x9f\x5a\xdf\x6a\x8c\xdb\x1d\x77\x31\xce\x58\x47\x42\x69\x19\xbf\x23\x72\x31\x50\x2f\xd9\x62\x46\xf3\xc5\x0a\x7e\x1d\xe5\x4c\x2d\x7f\xa3\xaf\x3f\xbd\x8c\xf2\xe3\x24\x6b\xde\x21\xf8\x83\x8e\xef\x23\x7d\xf4\x62\x0d\xd6\xb0\x34\xe1\x75\x29\x5b\x93\x4f\x51\xd3\xdc\xab\x39\x2d\xfe\xe8\x40\x87\x4a\x0e\xb3\xc3\xec\xbf\x00\x00\x00\xff\xff\xeb\x91\x32\x1d\x6b\x15\x00\x00" +var _stakingproxyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x58\x5b\x6f\xdb\x36\x14\x7e\xf7\xaf\x38\xcd\x43\x6b\x03\x69\x3c\x6c\x45\x31\x18\xf3\xb6\xae\xc1\xb0\xa0\x58\x17\x34\xe9\xd3\x50\xa0\x34\x79\x64\x11\xa1\x48\x8d\xa4\xea\x78\x81\xff\xfb\xc0\x9b\xae\x96\xed\xa4\xdb\xfc\x62\x49\x3c\xf7\x1b\x3f\x72\x3e\x87\xdb\x9c\x1b\xa0\x4a\x5a\x4d\xa8\x05\x86\x19\x97\x68\x80\x48\xe0\xd2\xa2\xce\x08\x45\xc8\x94\x06\xa9\x18\x82\xb1\xe4\x0e\xb5\x99\xcc\xe7\x60\x15\x54\x06\xdd\xdf\x0a\x81\xac\x84\x7f\x2c\x51\x67\x4a\x17\x40\x55\x51\x28\xe9\xc9\xb9\x5c\x03\xa1\x96\x2b\x69\x26\x8e\xef\xca\x02\x11\x46\x35\x8a\x40\xa3\x51\x95\xa6\x08\x36\x27\x16\x48\xd0\xa4\x4a\xd4\xc4\x2a\x0d\x94\x48\xc7\x16\x75\x19\xab\x34\xd6\x72\x4b\xad\xee\x39\x1a\x6f\x1f\x11\x02\x54\x06\x36\x47\xae\xdb\x22\xb8\xf2\xfc\x1a\x85\x7f\x36\x39\x2f\xcd\x64\x42\x28\x45\x63\xa6\x44\x88\x59\xe3\xfb\x4d\x10\x7b\xad\xd5\xfd\x16\x1e\x26\x13\x00\x80\xf9\x7c\x0e\x25\xb1\x79\xa3\xdc\xe6\xd8\x33\x31\x39\x50\x33\x70\x39\xa4\x32\x40\x28\x55\x95\xb4\xde\xda\xe4\x41\x8e\xa2\x44\xed\x19\xdb\x26\x09\xb4\xf0\x5e\x31\xfc\x23\x32\xbf\x25\x25\x59\x71\xc1\xed\xf6\xc6\x2a\x4d\xd6\x78\x4d\x6c\xbe\x80\xd6\xcb\xe4\x11\x32\xae\xab\x95\xe0\x34\x88\x68\x9e\x1b\x7f\xdf\x2a\x69\x09\x97\xa6\x71\x82\xcb\x4c\x01\x31\x46\x51\x4e\x2c\x32\xd8\x70\x9b\xf7\x33\x35\x30\xc0\x58\x5d\xd1\x60\xc3\x95\xe3\x8f\x11\xdd\x67\x27\x67\xce\x19\xcd\xe5\x7a\x94\x44\x2b\x81\x0b\xf8\x78\x25\xed\xf7\xa3\x34\x12\xed\x46\x69\x17\xd8\x37\x8c\x69\x34\xe6\xa8\xd4\x86\xe3\x1d\x6e\x8f\x52\xc7\xac\xb5\x49\x6b\x5a\x2e\xb9\x9d\xba\x80\x5c\x5d\xa6\xc5\xf3\xb6\xd1\xe7\xe3\xd6\x9d\xef\x37\xe3\x7c\x8f\xbe\x19\x3c\xd4\x1a\xdd\xaf\xd4\xd8\xfb\xe2\x7e\xc1\x8c\x0b\x81\x72\x6d\x73\x58\x2e\xe1\xf5\xab\x05\x9c\xb9\x44\xc0\xd5\x25\xc4\xcf\x45\x65\xac\xeb\xdd\xef\xbe\x85\xd5\xd6\xa2\x81\xe9\xeb\x57\x90\xe3\x3d\xd0\x9c\xb8\x76\x40\x6d\x66\x67\x43\xd1\x7d\x27\x92\x96\x1f\xe1\x1b\x78\xfe\xbc\xeb\x49\x6f\xad\x71\xa7\xb5\xb0\x18\xa8\x48\xbf\xb3\xa8\x01\x88\x64\xf0\x0e\xb7\x90\x93\x2f\x69\xe0\xb8\xca\xa4\x4a\x6b\xa4\x36\xfa\xd3\x35\x75\xd7\x79\x33\x28\xb2\x0b\xce\x60\x19\x23\x33\x5c\x74\x89\x82\xa5\xcf\xd7\x70\x71\xe0\xb3\x13\xd4\xff\x76\x88\xcd\x19\xbf\xec\x86\x66\x48\xde\x44\x07\x96\xad\x50\x4d\xba\x2e\xed\x9a\x36\xbd\xcd\xb1\x35\xa3\xfd\xf0\x14\xbc\xe0\xd6\xc0\x66\x64\x90\xc6\x82\xae\x25\x64\x5a\x15\x3e\x94\x61\xae\xc3\x26\x57\xee\x75\x1b\x99\xfc\xe0\x1f\x6b\xeb\x46\xb3\xab\xab\x1b\x2f\xa0\x33\x39\xfb\x7c\x59\x15\x36\x04\x7c\x8f\x9b\x5b\x75\x87\xd2\x4c\x49\xe1\x06\xe2\x02\x3e\xfe\xca\xef\x5f\xbf\x9a\x1d\xe1\xfb\x28\xfd\x1f\x7b\x2c\xb3\xc6\xbf\x2a\x34\x36\xb0\x73\xb9\x3e\x9d\xb3\x0a\x1a\xdf\x08\x31\x3d\x40\xe5\x86\x21\xd3\x64\xf3\x54\xfb\x12\xff\x07\xdc\x10\xcd\x0e\xf3\x1f\x48\x3f\x02\x43\x43\x35\x5f\x61\x5d\x00\x0c\x05\xae\xeb\xe4\x33\x75\x5a\x2e\x2f\x13\xd7\xd1\x74\x46\xf9\x4f\xc9\x68\x62\x7d\x6a\xd0\x12\xff\x29\x41\xfb\x77\x8b\xe2\x7f\x4a\xf7\xf1\x66\xef\x37\x78\xe9\xb6\x72\x93\xa3\x89\x20\xa8\xd7\x97\xbf\x29\xc1\x22\xd4\x70\x02\x89\x71\x30\x45\x69\x86\xda\xcd\x54\x22\x84\xda\x80\xb2\xb9\x7f\xbd\x43\x09\xb9\xa7\x37\x6e\xd1\xed\x6d\x9c\x08\xfe\x77\x03\x71\xba\x00\xa6\x0b\xaf\x02\x3c\xb0\x39\x16\x83\x82\xab\xb1\xde\xe8\xf8\x08\x66\x06\x58\x72\xa8\xf6\x08\x63\x6d\xbc\x36\xd8\x7a\x1d\x36\xdc\x2e\xe0\x8d\xdc\xde\xf8\x22\x7f\xe8\xe9\xd9\x1d\x48\xd1\x1a\x6d\x42\x2d\x3d\xb9\xb3\x45\x8d\x67\x7e\xda\x97\xa2\x2e\x96\xed\x01\xc0\x80\x1f\x03\x38\xe4\x3a\xe1\xc1\x66\x1c\x5b\x05\x05\x91\x64\x8d\x7b\xc3\xd9\x49\x8a\x9b\xd4\x25\xd9\xfa\x20\x83\xca\xb2\x97\x34\x27\x5c\xb6\x00\xa8\xb1\x48\x98\x03\xc4\x0d\xb3\x19\xcf\xc6\xde\x1c\x2c\x4e\x4d\x8d\xd3\xf8\x3b\x29\x4d\xf0\xf7\xea\xd2\xd7\x0c\x91\xdb\x34\x5e\x7c\x2c\x78\x51\x0a\x2c\x50\xda\x00\x2b\xfb\x9b\x46\x5d\x0f\x1d\xa9\xbe\x2a\x4d\x3f\x8e\x56\x81\xdb\x48\x83\x6b\x95\xf1\xf1\x70\x8f\x42\xd1\x3b\x64\x6d\x67\x6b\x39\x32\x62\xd6\x38\xd1\x07\x44\x31\x2a\x6e\x23\x9e\xc1\x17\x52\x03\xf4\xeb\x70\xc2\x58\xc0\x43\xc8\xff\xa1\x82\xda\x1d\x89\x48\x2a\x9c\x71\xa5\x32\x52\xb4\xd4\x25\xa6\x5d\x0f\x69\xf6\x81\x60\x1b\x42\x44\xa3\x61\x09\x0f\x7b\x70\x50\x52\xd2\x5d\xee\x19\xff\xbe\x07\x1d\x84\x70\x69\xe3\x21\xb3\x8c\xc5\x03\xc1\x4a\x55\xf5\x18\x72\xb8\xa1\x23\x62\x43\xa4\xf5\xe4\x94\x62\x69\x63\xc0\x6b\x44\x31\xd2\xd2\xdd\xb6\xf3\xa1\x48\x9f\x4e\x83\xbe\x1d\x17\xff\x4c\x0f\x17\x9c\x7d\x72\x38\x58\x72\x71\x0c\x26\x8e\xf0\xd6\xb9\x19\x8b\xd8\x07\x2c\xd4\x97\xf6\x71\x89\x67\xc0\x2d\x70\x23\x5f\xb8\x0d\xd6\x1f\x60\x5d\x4f\x14\x4a\xe3\x81\x5d\xc9\x09\x39\x3e\x7b\x7a\x8e\x6b\xb4\x95\x96\x5d\xfb\x2f\x82\xac\xe9\x9d\x3b\x3c\x04\x41\xb3\x67\x63\xc6\x5f\xc7\xad\x83\x39\x2b\xfc\x61\xdd\x65\x6e\x8d\xd6\x1f\xab\x6d\x1e\x5d\xf2\xe7\x6c\x30\x25\x52\x9e\x71\x9a\x8a\xfb\x2b\xc7\xe8\x09\xbe\x84\x5c\x5c\x7e\x7a\x84\xf9\xc1\xd4\xf6\xd0\xf4\x33\x33\x27\x06\x0c\x5f\x4b\x64\x50\x95\x1d\x19\x83\x03\xfb\x0b\xd3\x84\xdb\xaa\x1a\x12\x87\x72\xef\xb0\xde\x3a\xc8\x5c\x5f\x0e\x70\x0d\x9f\x7b\xa3\xe1\x33\xe4\xa8\xb1\xd9\x66\x93\xae\x8e\x94\xba\xdb\x5a\xf7\x28\x46\x15\xd8\xbf\x45\xf1\xd7\x27\xff\xe1\xb6\x78\x7a\x9b\x75\xc7\x4d\x4a\xd2\x89\x7d\x36\xc6\x1c\x2c\x1c\xcb\xf4\xed\xe0\xf2\xc5\x21\x5b\x9a\xaa\x34\xd4\x7c\xe7\x1e\x27\x55\x44\x37\xd9\x2a\x92\xba\x72\x6e\x5d\x26\x6d\xeb\xae\x05\xa9\x40\x28\xb9\x46\x0d\x12\x91\x21\x3b\xd2\xb3\x07\x82\x3e\x3b\x14\xee\xaf\x8e\xf6\xb3\x7d\xd1\x1e\xed\xa8\xae\x90\x47\xcd\x88\x5f\x94\xd6\x6a\x03\x04\xce\x34\x66\xa8\x51\x52\x3c\x73\x81\x4c\xe7\xc7\x26\x86\x46\xd5\x1f\xea\x3b\xb8\xee\x7e\xec\x92\xb6\xc2\x54\xe6\xe9\x42\x89\xdb\xd1\x20\xaf\xbc\xf2\xa7\x06\xf9\xd0\x8c\xd9\x1f\xd6\xf1\x53\xf7\x5b\x8d\x71\x0c\xe0\x26\xfa\x1b\xe7\x4b\x18\x39\x87\xef\xc4\x9c\x2f\xd4\x4b\x68\x21\xaa\xe9\x6c\x01\x3f\xef\xc5\x5a\x2d\xbb\xa3\xcd\x3f\xbc\x8c\xfc\xfb\xc1\xd9\xb4\x73\x70\x18\x20\x05\xef\xf1\xd1\x8b\x45\x58\xc2\xdc\x84\xd7\xb9\x6c\x11\x9f\x22\xa6\xb9\x4f\x74\x52\xfc\x91\x84\x0e\x85\xec\x26\xbb\xc9\x3f\x01\x00\x00\xff\xff\x19\x14\x1a\x24\x7b\x16\x00\x00" func stakingproxyCdcBytes() ([]byte, error) { return bindataRead( @@ -279,11 +279,11 @@ func stakingproxyCdc() (*asset, error) { } info := bindataFileInfo{name: "StakingProxy.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbe, 0xa5, 0xcf, 0xfe, 0x55, 0xa2, 0xbe, 0xa, 0x47, 0x9b, 0xaa, 0xe0, 0xce, 0x46, 0xc9, 0x13, 0x86, 0xc5, 0x28, 0x76, 0x76, 0x3f, 0x12, 0x6e, 0x45, 0x47, 0x6a, 0x82, 0x11, 0xf1, 0xa2, 0xa6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0xc8, 0xa3, 0xa8, 0x99, 0xb7, 0x7, 0x62, 0x1a, 0x6c, 0x76, 0x47, 0xd1, 0xaa, 0x45, 0xc8, 0x4b, 0x32, 0x2a, 0x11, 0x65, 0x1, 0x66, 0xc2, 0x17, 0x7b, 0xc5, 0xe9, 0x15, 0xe1, 0x1e, 0x79}} return a, nil } -var _epochsFlowclusterqcCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x3c\xfb\x6f\x1b\x37\xd2\xbf\xfb\xaf\x98\x04\xf8\x50\xa9\xa7\xc8\x49\x5b\x14\x07\xe3\x7c\xfd\x5c\xa5\xbd\x1a\x7d\xa4\x89\xdd\xf4\x87\x20\x88\xa9\xdd\x91\xc4\xcb\x2e\xb9\x21\xb9\x76\x74\x41\xfe\xf7\x0f\xc3\xd7\x92\xfb\x90\x95\x7c\x77\x67\xa0\x85\x65\x91\x33\xc3\x79\xcf\x70\x98\x93\xd3\x2f\xe1\xe4\xcb\x93\x2f\x01\x7e\x65\x82\x6d\x51\x83\xd9\x21\x34\x4a\x16\xa8\x35\xc8\x0d\x14\xb2\xaa\xb0\x30\x5c\x6c\xe1\x56\x1a\xd4\xb0\x91\xca\xae\x51\x52\x1a\x78\xd7\x4a\xd5\xd6\x50\xa0\x32\x7c\xc3\x0b\x66\x90\xf6\xd0\xd7\x6d\x53\xc8\x9a\x8b\x2d\x81\xc6\x46\x16\x3b\xbb\x91\x55\x55\x84\x28\x05\x08\x59\x22\x14\x55\xab\x0d\x2a\x0d\x4c\x6b\xbe\x15\x58\x46\x14\x01\x86\x03\xb0\x74\x74\xfe\xb9\x43\x11\x60\x48\x65\x41\x68\x60\x0a\x61\xc3\x95\x36\xa0\x70\xcb\x09\x1c\x96\x0b\x82\xb1\x87\x82\x09\x50\xf8\xae\x45\x6d\x80\xc1\x4b\x69\x50\x81\x5c\xff\x13\x0b\x03\x1b\x25\x6b\x30\x3b\xae\xa1\x90\xc2\x28\x56\x98\x25\x61\xb8\xde\xe1\xfe\x8b\xaa\x82\x56\xa3\xfb\x36\x2c\x97\x0a\xf0\x16\xd5\x1e\x74\xbb\xd6\x04\x52\x18\x7f\xb6\xbb\x1d\x2a\x74\xf8\x88\x14\x06\xda\xb0\xb7\x58\xf6\xe8\xf4\x27\xb8\x30\xf6\x74\x6b\xdc\x72\x21\xe8\x78\x72\x03\xc8\x8a\x1d\xfc\x40\xb0\xae\xd0\xb4\x0d\x34\x3b\xa6\xd1\x9e\x00\x58\x59\x73\x01\x5c\x70\xc3\x59\xc5\xff\x65\x45\x94\x90\x0c\x77\xdc\xec\x08\x2c\xad\xed\xf0\x45\xae\x4e\x30\x13\x7e\x20\x8c\x39\x7d\xb0\x63\x9a\x68\xe7\x62\x5b\xa1\x15\xb7\x83\xcb\x0c\x70\x4d\xb2\x93\x24\xe1\x28\x9f\x1a\x98\x28\x3b\x26\x4b\x51\xd1\x2f\x55\x45\x7f\xe2\x0a\x6e\x08\xc0\x0d\x6c\x5a\xe1\x84\x2d\x45\x81\x96\xbf\xf4\xdf\x33\x51\x20\xf8\xb5\x1d\xad\x3b\x76\x8b\xa0\xb0\x40\x7e\x8b\x25\xa0\x90\xed\x76\x07\xbc\x44\x61\x78\xc1\x2a\xaf\x80\x46\x82\x6e\x55\xc3\xb4\xf6\x88\xee\x90\x6f\x77\xc4\x53\x85\x7a\x27\xab\x72\xe1\x85\x08\xcf\x57\xb0\x45\x81\x8a\x59\xfc\x96\xa5\x74\x90\x0d\x17\x5c\xef\xb0\x0c\xe4\x7b\x0e\xdf\xf1\xaa\x02\xf4\x7f\xba\x95\xa4\xf2\x4b\x2f\x2e\x26\xf6\xd0\x48\x2e\xcc\x82\x7e\x95\x02\xed\x81\xdf\xb5\xa4\x0b\xdd\x6a\xe0\x62\x23\x55\xed\xb0\x05\xb6\xc7\xb3\x11\xa8\xf5\x1e\x5a\xe2\xae\xfd\xe6\x66\x8b\x66\xe5\xbf\xed\xd8\x44\x28\x1d\xfd\xa9\x8c\x89\xfd\x50\x63\xbd\x26\xe5\xdd\x90\x8c\x50\x71\xb4\x06\xea\x14\x50\xd7\x4c\x99\xb8\x5e\xc3\xdd\x8e\x5b\xf1\x4a\x55\x72\xc1\x8c\xb7\x6b\x02\x9c\xd8\xb6\x51\x4c\x68\x4e\x58\x89\xa6\x35\x9a\x3b\x44\xe1\x00\x6a\xe0\x02\x7e\xac\xe4\xdd\xf2\xe4\xcb\xd3\x93\x13\x5e\x37\x52\x19\x58\xa9\x7d\x63\xe4\xc9\x49\xd3\xae\x3b\xda\x68\x95\x3f\xc7\xf3\x15\x7c\x38\x39\x01\x00\x38\x3d\x85\xf3\x7f\xf3\x4f\x80\xbb\x7a\xf6\xdb\xf5\x8b\x8b\xd5\x35\xbc\xbc\x78\x71\x79\xf1\xfd\x2f\x3f\x5c\xfd\xc7\x30\x7a\xc0\xa7\x70\x29\x4a\xeb\xdd\x88\xb1\x68\x76\xa8\xbc\x2e\x92\xb1\x17\xad\x52\x28\x4c\xb5\x87\x35\x12\x1f\xbd\x4d\x61\xb9\xec\xb6\x6f\x60\xc3\x2a\x32\x68\x21\x9d\xa5\xc9\x86\xd4\x52\x2a\xa7\x75\x6b\x04\xb6\xae\xd0\xa9\xf6\xba\xe6\xc6\x81\xb7\xfb\x89\xd7\xb7\x4c\x01\x17\xbf\x2b\xb9\x55\xa8\xf5\x19\x7c\x2f\x65\xd5\x11\x77\xdd\x19\xfe\xd0\xa9\x46\x3d\x74\x54\x3a\xe9\xda\xad\xac\x20\x3d\x98\xb1\xa2\x90\xad\x30\x73\x8b\x24\x6c\x3b\x83\x57\x5e\xa4\xaf\xc7\x98\xc0\x49\x05\x6f\xad\x2b\x55\xa8\x65\xab\x0a\xef\x3b\x2a\x85\xac\x24\x46\x90\x8f\xae\x18\xaf\xb1\x24\xa5\x67\x8e\xa8\xcb\xa7\x11\x96\x77\xbd\xe8\xad\xdb\xec\xc1\x58\x0e\x04\xad\x8a\x0b\x7f\x73\x1b\xbd\x6f\x30\xd2\x81\x8d\xe8\xc9\xa9\xc4\xb5\x64\x98\x16\x91\x65\xaa\x73\xdf\x08\x9a\xd5\x08\xba\xc1\x82\x22\x14\x5c\x3e\xb5\x66\xff\x32\x27\x3e\xc4\x26\xc3\xeb\x0e\xdc\x8d\xe0\xd5\x0d\xd4\xc8\x84\x76\x4e\xd0\x58\x2f\xcf\x35\x49\xd1\x9b\x7c\xc1\x1a\xb6\xe6\x15\x1d\x20\x70\x7a\x70\x54\x92\x7c\x0a\x26\xd0\x3e\xb2\xf7\xf2\xe9\x02\xd6\xad\x01\x6e\x88\x9f\xe2\x0b\x93\xb1\x32\x82\x34\xaa\xc5\x1e\x61\x43\x98\x24\x90\xbe\x20\x02\x7d\x93\x0a\x60\xa1\xac\xdc\x86\x33\xf8\x70\x65\x14\x17\x5b\xa7\x70\x1f\xc7\xcd\x81\x99\xa0\x35\x41\xcc\xdc\x3a\x8f\x69\xc5\x23\x08\x2f\x59\xd5\xa2\x73\x6b\x61\x37\x17\x25\xbe\x4f\x09\x0b\xba\xe0\x28\x23\xd0\x5e\x27\x13\xc2\xfe\xb8\x14\xe6\xc9\xb7\x1f\xff\x7b\x4e\x67\xf5\xec\xb7\xab\xeb\x8b\xdf\xae\xff\x0b\x4e\x67\xc5\x84\x14\x36\xf0\x35\xcc\xec\x9c\x29\xbb\x50\x45\x1a\x9c\x9b\x5f\xe7\x2b\x2a\x34\x70\x41\xab\xae\x8c\x54\x6c\x8b\xbf\x33\xb3\x3b\x83\xe4\x43\xb6\xd2\xda\xc1\xe4\xca\x48\xca\x0b\x6c\x14\x6a\x14\xc6\x0a\x6c\xdc\xd7\x38\xfa\x60\xcb\x6f\x43\x10\x59\x42\xc4\xa5\x8d\x6a\x0b\x03\x5e\x80\x21\x4a\xa4\x1e\xcc\x8a\x3f\x64\x8f\x01\x24\xe5\x36\x5c\x64\x7f\x62\x4a\xb1\xfd\xd2\xc5\xc7\x56\xf0\x77\x2d\x56\x7b\xef\x45\x36\xdc\xf3\x21\xc0\x65\xd3\xb4\xc5\x75\x81\x13\x16\x7f\x50\xa8\x9c\xbc\x3f\x6d\x82\xe1\x04\x60\x13\x35\x3a\xf6\xe5\x53\xc8\x29\x1b\x40\xa4\x55\x7e\x6b\x4f\x63\xbf\xfd\xe6\xe3\x90\x01\x46\x1a\x56\x79\xff\xe5\x32\x1a\x8a\xf4\x3e\x45\x72\x69\xee\x3d\x08\x2d\x04\x87\x31\xe0\xc9\xd1\xbc\x74\x09\x14\xd9\xac\x03\xe8\x9d\xe9\xb1\x09\x69\x06\xec\x67\xdc\x3b\x5f\x68\xdd\xdd\x71\x1e\x3d\x25\xa4\xd3\x5d\x2b\x66\xd9\x1a\xa0\xfc\x9f\x99\x56\x51\x66\xa3\xa0\x46\xad\x6d\x49\x92\xf1\xdd\xc6\x5c\x6d\xa4\xc2\x12\xc8\x1f\xe7\x02\x9f\x3a\x89\xcf\x92\xba\xa3\x78\xdd\x8c\x22\xa6\xaa\xc2\xfb\x2f\x17\x82\xb5\xf7\xd3\x8b\xe8\x5d\xbb\x54\x96\x92\x7b\x4d\x4e\x9a\x88\xb6\x2a\xcb\x35\xd4\xac\x59\xe4\xc4\x94\x65\x48\x51\xe3\xc1\xac\xe9\xfa\x83\x59\xc8\xc2\x2d\xe3\x06\xd6\xac\x78\x4b\x01\xce\x02\xb3\xf8\x2a\xae\xcd\x32\x03\x79\xb9\x09\x44\x92\x77\xa7\x45\xae\xcc\xa1\x74\x3b\xe2\xb8\xb1\x48\x6e\x3c\x96\x1b\xd8\x70\xac\xca\x98\x68\x08\x29\x1e\xd9\xc8\x36\x0d\x98\xe2\xce\x67\xc1\xce\xe1\x86\xcc\xc5\xe7\xe0\x58\x5a\xf5\x4b\x4c\x81\x3e\xf7\x0d\x41\xb1\xe2\xad\x76\x32\x73\xd6\xed\x58\x41\x58\x77\xf2\x0e\xea\xd6\xa6\xb5\xf5\x9a\x53\xa1\xe8\xed\x24\x46\x3a\xf2\x50\x31\xf0\xd8\xfa\xa5\x4f\x8b\x83\x49\x88\x7f\x75\x47\xb8\xee\x6c\xe6\xa0\x95\x52\xfd\x35\xcb\x7c\xc4\xe2\xb0\x81\xcf\xe1\x43\xdc\x4c\x3f\x1a\xab\xcd\xd2\x39\xb9\xf3\x24\xd6\x65\x5f\x27\x00\xe1\x3c\x05\x7f\x92\xad\xa5\x83\x8c\xd8\x3a\x9c\xc3\xe3\x6c\x1d\x71\xc2\xb3\x88\x8b\x14\xdc\xf2\x96\xc2\xaf\xee\x51\x48\x3f\x09\x58\x38\xcf\x3e\xfd\xc5\x83\xca\xb6\x7c\x1c\x9e\x61\x12\xc2\x70\x69\xae\x18\x70\x0e\x1f\x46\xe0\x1d\x94\x58\xbe\xa7\xa7\x4b\x2f\xd0\xb4\x4a\xb8\xca\x47\xb4\xa1\x76\xba\xd7\x93\x6e\x5a\x01\x9a\xff\x0b\x67\xf3\x20\xe9\x1e\x9f\x94\x85\xeb\xbf\x9b\xf5\x05\xb7\xac\x50\x6c\xcd\x6e\x0e\xc7\x90\x55\x73\xc1\xeb\xb6\x06\xdd\xd6\x44\x9b\x55\x75\x2f\x31\x85\xef\x5a\x4e\x4e\x8e\x0b\x90\xaa\x44\x12\x79\x5a\x28\x04\xe6\x01\xcb\xa0\xdf\xb2\x8a\x97\x63\x7d\x19\x67\x16\x54\x54\xba\x33\x2f\x73\xdb\xe0\x78\x67\x4f\x4e\x24\x5c\x87\x4a\x3a\xb0\xe0\xdb\x6f\x7a\x2c\xe0\x9b\x11\x61\x9f\xc3\x63\x60\x7a\x7c\x43\xc2\xb7\x64\x51\x4f\x97\xb2\x8f\x14\xd0\x36\x95\x94\xea\x99\xc0\xeb\x1d\x57\x25\x9c\x0f\x71\x9e\x7a\x40\xb3\xaf\xe7\x94\x8b\x71\x61\x70\x8b\x0a\x4a\x7e\xcb\x35\x97\x62\x01\x5c\x14\x55\x4b\x02\xb7\xa0\x86\x66\xa4\xac\xde\x79\x20\x5f\xcd\xe1\xcb\x1c\xe7\x90\xa4\x92\xdf\xbe\xc0\x9a\x91\x01\xab\x31\x8a\xfe\xa7\xa3\xe8\xa4\xcf\xb2\x6c\xef\xdf\x22\xda\x27\x7d\x57\xe1\x98\x45\x84\xd1\xff\xff\xd2\xad\xcb\xf9\x05\x48\x85\xc5\xe1\xad\x29\xca\x43\xdc\xf6\xb2\x51\x49\x02\x75\x40\x6d\xb5\x61\xa6\xd5\x31\xf2\x79\x8d\xfa\x42\xc3\xf3\x55\xe8\x2f\xf4\xa3\x4b\xac\x9d\x58\x62\x8b\x5e\xd5\x49\x35\xfb\x5d\x1e\x7c\x5f\x20\x96\xb1\x57\x92\xa9\xe5\xcd\xa2\x9f\x3c\x89\x11\x42\x92\xd6\x8f\x6b\xa5\x68\x5e\xa2\xb2\x4d\xb9\xba\xa9\xd0\x07\x15\x17\xba\xd1\xec\x64\xe9\x99\xa0\xf3\xcc\x20\x46\x7f\x1f\xf3\x5c\xfa\xa4\x28\x42\x61\x30\xb4\xfe\x61\x5d\x7d\xe8\x9a\x4d\xb2\x25\x2c\xd2\xed\xf0\xeb\x7d\xe4\x77\x05\x26\xd7\x1e\xb1\x2f\xf0\xa0\x6f\x92\x5c\xaf\x3c\xc5\x64\x8f\x2e\xcc\x7c\xd7\x93\xfb\xa6\xcb\x97\xc8\x61\xdc\xef\x39\x97\x6f\x71\x3f\x16\x00\x82\x65\x1f\xdc\xfc\xca\xa3\x7a\xfd\x00\xfe\xee\x6d\xa0\xe7\x37\x46\x20\x27\x6a\xe6\xb7\x0f\x96\x7c\x3c\x10\x5c\xfc\x56\xc1\xab\x29\x0d\xfd\x87\xf7\x88\x4e\x47\x9f\x3b\x17\xb8\x3a\xe0\x02\x47\x74\xb4\xab\x46\x29\xb3\x35\x51\x57\x16\x6e\x63\xd0\x90\x61\xa2\x43\x82\x0a\x2e\xd9\xa1\x4e\x30\x93\xdc\x62\x8b\xec\xbb\xb4\xfa\x71\xd8\xe1\x99\xa8\xf6\x9d\x47\x37\xae\x77\xc9\x37\x59\x73\x51\x77\x8a\x3b\x79\x10\x2f\x41\x72\x54\x4e\xd3\xbc\xf0\x82\xa7\x4a\x55\xa9\x4f\x86\x27\x65\xa5\xd0\x46\x15\x10\x78\x07\x58\x37\x66\x0f\xcf\x57\x83\x85\xb6\x59\xd4\x1d\x30\x39\x1e\x9c\x77\xbf\x87\x84\xa9\xcb\x7d\x16\x49\x8e\x7f\x06\xaf\x5e\x2f\x82\x2e\x9c\xe5\x04\x2f\x5c\x7d\x7b\xf9\xd4\xae\x9a\x8f\x52\x7a\x51\xba\x5e\x6d\x07\x31\x42\xd3\x0b\x6b\xdc\x22\x34\x8f\x6c\x6f\x9a\xb8\xd6\xf5\xd5\x7a\xc0\xac\x55\xd7\xcc\x14\xbb\x68\xf1\xfa\xa0\xa9\x87\x9f\x00\x35\x9a\x5d\x9e\xd5\x4c\xa7\x5a\xf4\x33\xfa\xc7\xa0\x0f\xb6\x2d\x93\x52\x72\x47\x2e\xd4\x55\x27\x26\x71\x16\x23\xc2\x8f\x8b\x3a\xf9\x13\x9c\x65\x70\x11\xe3\xd4\x78\x00\xc3\xcd\xe7\x3d\x6d\x9a\xde\x4e\x3f\x89\x5e\x2c\x59\x59\x5e\x05\xf1\xcc\x2c\x09\x51\x5a\x0f\xe6\x9f\x02\xe5\xa5\x53\x07\x07\xc3\xd5\xdf\xd3\xfb\x3f\x8e\x7e\x33\xfc\xeb\xc7\xa1\x5e\x79\x37\x93\x60\x3f\x36\xe8\x0e\xdc\x53\x8e\x73\xe0\xac\x62\x85\xe9\x85\xcb\x74\x57\x29\xf9\x7e\x45\xda\x4a\x84\xd1\xc6\x58\x88\x11\x5b\x34\xff\x48\xf5\x6e\x66\x59\x54\x86\x70\x31\x77\xc5\x56\x3f\x6a\x78\xa2\x47\xd4\xf6\x95\xdb\xff\x7a\x8a\xfc\x2b\x22\xbf\x2b\x8c\x7d\xc9\xe5\xbb\xac\x58\xde\x4f\xb9\xcd\xb2\x0f\x13\xed\x7c\x80\xa3\x7c\xb4\x9a\x1a\x27\xd9\xeb\xfa\x41\xc6\x9b\xd8\x6f\xf1\x29\x48\x21\xeb\x9a\x77\x8c\x4f\x4a\xcf\xe3\x98\xff\xc7\x81\x70\x39\x73\xc7\x88\x92\x70\xe9\xdc\x21\x59\x1c\x0e\xbe\x04\xee\x7e\xc1\x64\xc7\xfb\x84\x53\x79\xc1\x1c\x7d\xa0\x85\xc7\x11\xce\x35\x2a\xa9\x23\x0e\x04\xe7\xfd\x02\xd3\xd9\x4e\xd2\x76\xbe\x79\x69\x6f\x14\x55\xda\x8c\x74\xfa\xa7\x64\x6d\xbb\xff\xbd\xd6\xa4\x6f\xf2\xd8\xf0\x6e\x40\xf3\xba\xb1\x6e\x55\x18\xc6\x85\x06\x6d\xe9\x77\xdd\xa7\x18\x48\xb0\xcc\xb2\x93\x90\x01\xee\xf0\x3d\xa0\x28\x64\xd9\x7d\x0f\xdc\xd8\xb3\xf9\xae\x9a\xbd\xf7\xdd\x6e\x15\x6e\xad\x01\x53\xb1\xd6\xf2\x6a\xac\x14\xd3\xfd\xae\xa8\xed\x86\x8d\xb4\x44\x07\xad\x35\x6d\xd8\x5b\x77\xc5\xd4\xeb\xa9\x85\xf6\x86\x73\x8c\x41\x34\x43\x88\xf9\x09\x3b\xc0\x16\xd3\xac\xbb\x9b\x74\x45\xf2\x8d\xc7\xf7\x33\xee\x6f\xe6\x29\xae\x99\x46\xdf\x95\x8f\xde\x3c\x26\xa6\x43\xa4\x3b\x7c\xff\xa8\xcf\xbb\xa9\x26\x4d\x07\x39\xe6\x05\x93\x70\x47\x3b\xc6\xfe\x3e\x24\xb4\xd0\x66\x21\x0d\x98\xbb\x6b\x89\x41\xcf\xd4\xef\xbb\x9c\xee\xfe\x12\xaa\xae\x21\x1b\x7d\x5e\x07\x79\x00\xf3\x6e\xa2\x05\x6b\x7b\x48\xb9\x88\x16\xa3\x04\x38\xcf\xf7\xe7\x41\xbb\x6a\xd4\x58\x18\x72\xd0\x7d\x0f\x82\x02\xf7\xb7\xdf\x9c\xc1\x43\x77\xdb\x75\xf9\x14\xea\x56\x1b\xdb\x44\xf0\x7d\x02\xbf\xce\x2b\xda\xc3\xfb\x7a\x3b\x5d\x1b\xf3\x7c\x10\xe9\xec\x82\x3a\xa6\x1b\xa3\x5f\xfb\xbe\xf9\xb9\x27\x73\xb8\x20\x65\x06\x9c\x67\xbc\x19\x2e\xbe\x0b\x4d\xa6\x8e\x59\xd3\xbe\x23\xb9\xc1\x20\x11\x4e\x34\x48\x58\x77\x51\x98\xa6\xd6\xb6\x9b\x2b\xca\xbc\x1b\x7f\xea\x32\xb3\x91\x4e\xd2\xf0\xc2\xa3\xbb\x18\x9f\x54\xe0\x77\x45\x0f\x14\x28\x2c\xa4\x2a\x07\xda\x75\xe0\xa2\xe2\x3a\x28\x67\xd2\x48\xb7\x36\x7e\xf4\x35\x42\xb8\x03\xbc\x4a\xb3\x74\xa7\xaa\xaf\x27\x70\x65\xce\x24\x20\x72\xea\x65\x73\xf8\xa3\xf0\xfd\x9a\x5b\xfb\xa4\x2f\xf4\x99\x70\x21\x95\x42\xdd\x48\x57\x5a\xdb\xca\x7a\xb4\xdd\x9b\x14\x11\x83\x43\x8c\x75\x74\xf5\xc8\xb1\x17\x7d\x57\xb4\x18\x01\xfb\x39\xdd\xde\x9c\xcf\x54\xa2\xc5\x0f\xe3\x8b\xbb\x64\x7e\xac\x80\x8e\xcb\x88\x32\x6f\x15\xf4\xeb\x58\xa6\x10\x2a\xd6\x2c\x3d\x7f\x33\xf4\xe6\xa3\xc7\xca\xe9\x5e\xb2\xa6\x41\x51\xce\xe2\xde\xf9\x3d\x08\x43\x26\xff\x26\x50\x78\x2f\x32\x3a\x45\x40\xe3\x3f\xcf\xa7\x2d\x9d\xb4\xa5\x77\xbd\xcf\xfb\xa9\x35\x26\xc3\x4f\xf1\x1e\x93\x6d\x5c\x00\xc1\x7d\x9c\x22\xeb\x46\x38\xec\xb8\x54\x07\x50\x68\xc3\x84\x87\x2c\x65\x19\x07\x08\x36\xad\x75\x8f\x8d\x34\x28\x0c\x67\x95\x9f\xa6\x71\xb7\xfa\x77\xbc\xaa\x22\x40\x5b\x92\xae\x83\xa5\xf8\x5a\x3f\x9f\x0d\xe9\x6e\xf0\xa5\xd8\x70\x55\x63\x09\x2c\xb9\x80\x0d\x53\x5b\x71\xf0\x00\xdf\x9b\x30\x2a\x17\x78\x1e\x29\x76\x1c\x99\x48\x32\x2e\x9f\xa6\xa1\x4d\xc1\x6c\x32\xe3\x18\x06\xbb\x7b\x53\x0e\x0f\xe1\x2d\xee\x03\x12\x97\x6d\x1c\x89\xc3\x66\x19\x31\x0f\x19\xe2\x19\x0d\xaa\xc3\x0d\xc7\x85\xcf\x07\xd9\x30\x93\x57\x3e\xed\xe7\x21\x3c\x96\xf9\x19\x3c\x5c\x31\x61\xbb\x43\xa1\x57\x32\x36\x4e\x12\xd3\x37\xeb\xb1\xa6\xc6\x63\xfa\x31\xf7\x33\x82\x66\x77\x58\xf2\x21\xf1\x43\xb6\x70\xe4\x5c\xfe\x54\xae\x6c\x7a\x4a\xf9\xb7\x51\xed\x44\xd9\x14\xba\x63\xb7\x03\xbb\x2a\x51\x1b\x25\xf7\x58\x2e\x7c\xcb\xc8\xa5\xe1\x6d\x55\x76\x46\xe0\x14\x3d\x1d\x62\xa1\x1f\xbf\x13\x06\xcd\xc2\x03\xb4\x26\x0c\x79\xdd\x4b\x32\xfa\x75\x90\xbf\xc4\x25\xaa\xdd\xb5\xbf\xed\x1c\xc0\x8a\x09\x4b\x0c\xab\x2a\x2c\x9d\x11\x4a\x32\xe4\x06\x55\x6f\x30\x80\xa0\x64\x1f\x7e\x67\x8a\xd5\xfa\x2c\x8f\x8f\x67\x70\xe5\x72\xea\x9b\xc4\x43\xdf\x74\x35\xc5\x30\x93\xce\x60\x86\x9f\x2c\x06\xfe\x34\x4c\x98\xd3\x4d\x03\xa7\x4a\x9b\x67\x7d\xaa\x92\x50\xd5\x0b\xae\xc7\x99\x42\x2e\x85\x74\xfa\x8c\xd2\x49\xb2\xd7\x38\x50\x49\xa6\xc0\x05\x34\x7e\xc5\xc3\x61\xb7\x30\xa5\x2d\x24\xa7\x7f\x87\xc7\x3e\x35\x4d\xae\xc7\x6d\x82\x4a\xf0\xd6\xe8\x9a\x8f\xe3\xc0\xfc\x89\x46\x40\x85\x6c\xe4\x08\x40\x3d\x63\x27\x49\xfd\xc4\x34\x41\x29\x67\x89\xa2\xcd\x23\xe8\x00\xd2\x8e\xa2\x39\x23\x66\xda\x04\xb3\x3e\x68\xc9\xae\xf1\xe0\x86\xab\xdb\x75\xc5\x0b\xe7\x0f\xb3\x39\xe4\x38\xd6\xf0\xb6\x67\xbc\xe4\x66\xdd\x2e\x67\xe3\xbf\x87\xdf\x67\x83\x33\xc5\x65\x67\x7d\xdf\xb0\x2c\x91\x34\xea\x27\x7c\x3f\x9b\x2f\x06\xfb\xa2\x04\x2e\xaa\xad\x54\xdc\xec\x6a\xa7\xd8\xf9\xdf\x96\xdf\xff\x72\xf5\xe6\xfb\x5f\xae\x9e\x7c\xf5\xe6\xeb\xbf\x3e\xc9\x80\xcc\x07\xe7\x5d\xed\xd0\x0d\x34\x68\xc4\x6e\x4c\xad\x13\xb5\x74\x59\x61\xac\xa6\xb5\x0f\x85\x83\xa3\x73\xfd\xd2\x7e\x71\xde\x9d\x6e\x79\x8b\x8a\x6f\x46\xce\x9f\x64\x30\xb9\xd2\xdd\x7b\x7a\x2c\x9f\x32\xc3\xce\x32\xf5\x3a\xb8\xa9\x94\x35\xe3\xe2\x0a\x1b\xe6\x6e\x99\xae\xd9\xf6\x0c\x1e\xfe\xf8\xcb\xb3\x3f\x1f\xad\x42\x80\x7e\x43\x8a\xf3\xe8\xe5\xe3\xc7\x8f\x56\x57\x8f\x1f\x3f\x22\xaf\xf0\xe8\xe1\x10\xd4\x8e\xe9\x5d\xc2\xf8\x9f\xd2\x8f\xcb\x9f\x7f\xbd\x58\x3d\xf9\xea\xaf\x6f\x3e\x85\xf7\x17\x5a\xa3\x32\x5d\x26\xce\x4d\xae\x51\xcc\x7d\x3f\xe4\x9f\xe7\xf5\x90\xc4\x98\x03\x3b\x5b\x88\x8c\x85\xc2\x85\x42\xca\x64\x48\x26\xbc\x1f\xd2\x86\xc4\x05\x43\x18\x96\xec\x36\x62\xae\xb1\x92\x62\xab\xc1\xc8\x81\x26\xf4\xca\xc3\xa1\xfd\xfa\x4f\x59\x9c\x18\x1c\xe5\xbb\xef\xa0\x61\x82\x17\xb3\x87\xd7\x11\xa9\x3f\x85\x2d\x68\xca\x56\x85\x3e\x48\x36\xbc\xf8\x70\x3e\x45\xd0\x80\x96\x30\x47\xfb\x2a\xa5\xf8\xf5\x83\x09\x56\x78\x22\xbe\x48\x67\xec\xb3\x72\x26\xa0\xb3\xe4\xc5\xb2\x78\x39\xd9\xf4\x4d\xbd\xd7\x10\xe9\x15\xf6\x4d\x31\x19\x4a\x72\x13\x3d\x79\x01\x92\xf7\xed\x7d\x69\x11\x35\x60\xb8\xb4\xce\x2e\x1d\xbc\x31\x4d\x92\x41\x49\xc3\xa0\x59\x39\xe8\x0d\x05\x16\xe4\xe3\x25\x09\x27\x8e\x68\x58\x26\xd4\xcc\x49\x0b\xf2\x69\x19\xdb\x3f\xc3\xbb\x89\xe1\x17\x7b\xb0\x91\x09\x98\x40\xc1\x71\x2d\xd3\x84\x82\xae\x6f\x1a\x91\x0e\x4d\xe5\xca\x0e\x3d\x93\x97\x94\xa5\x6b\xac\xc7\x69\xa8\xa0\x7a\x6b\x56\xbc\x9d\xa2\xe8\x5e\xed\x08\x2d\x76\xfa\xff\xfc\x40\x12\x36\xae\xcf\x9d\x00\xfa\x59\x58\x36\x2b\x6c\x50\x6d\x58\xe1\x63\x80\x7b\x25\x12\x5a\xb0\xae\xd4\xe1\x32\x8e\x46\x53\xed\xc4\x54\x37\xfe\xed\x2b\x06\x85\xdb\xb6\x62\x0a\x58\x6b\x64\xed\xaa\x38\x3f\x8b\xe7\x87\xfc\x68\x91\x9b\xf1\x4b\xe7\x0f\x7c\x0d\xa2\xdd\xd0\xa0\x6b\x75\x77\x83\xd0\x37\x74\x46\x3b\xe2\x78\xd3\xbd\x66\x30\x3b\x65\x5f\x9d\xb0\x64\x94\x7a\x58\x4d\xf1\x78\x28\xbb\xff\x59\x77\x8c\x0f\x83\xec\xcc\x15\x09\xb6\x42\x38\xa6\x4e\x39\x83\xff\xb5\x6b\x07\x70\xb4\x61\xca\xb8\xd4\x6b\x36\x32\xa7\x9f\x0c\x1c\x75\x3b\x64\xe3\x37\xcc\x07\x5f\x6e\xa4\x2a\xf0\xaa\xbf\xa2\x57\x47\xdb\x41\xe2\xee\xd8\x8d\x92\xb7\xbc\xf4\x17\xec\x61\xce\xdc\xc8\x50\x07\x19\xd9\x2f\x84\x5c\x82\xa3\x17\x11\xa8\x9d\xcc\xf4\x57\xda\xee\x8e\x16\xdd\x2c\x33\xc9\xd1\x96\x4d\xe9\x7c\x6e\xc6\x73\x4b\xcb\xd9\x08\xc3\xb3\x84\xda\x5d\x5f\x6b\x5f\x8c\x8c\xd6\x65\xbd\xba\xbf\x57\xb1\x72\xdd\xcd\x79\x86\xb9\x46\x97\x77\x54\x7b\xaf\x42\x7c\x5d\x61\x68\x6a\x45\x1d\xca\xc0\x04\x75\x5a\xf8\x87\x38\x16\x90\xa2\x82\x87\x17\x3e\xf8\x11\x9d\x76\x96\x54\x06\x9b\xc8\x9e\xb4\xfd\xbb\xd4\x68\xfc\x96\xe9\x6f\x8f\xbc\xc8\x72\x78\xc1\x29\xa4\xf0\xba\xdf\x47\x1b\x3b\x96\xe7\x52\x6c\xf8\xd6\x36\xb1\xdc\x23\x34\x6f\x4b\xc3\xc6\xc4\x17\x71\x64\x41\x8f\x56\x34\xf6\xc5\xc7\xb3\xeb\x1f\xce\x9c\x20\x02\xff\x7d\xb5\xe6\xed\xd6\xc8\xe6\x51\x85\xb7\x58\x75\xcc\x4f\x9e\x4a\xb5\x8d\x14\x19\xbc\xfc\x95\x93\x1d\xb0\xf5\x66\x0b\x6e\xb4\xf9\x77\x3b\x0f\x3c\x49\xcf\xea\xe2\x8f\xeb\xcb\x67\xbf\x9d\x59\x2a\x5c\x62\xc0\x35\xa0\x62\x1a\x75\x32\x2b\xd0\x7b\xef\x70\xda\x28\xbc\xe5\xb2\xd5\x69\x47\xe6\x93\xcc\xf9\x50\x51\xdc\x95\x63\xfd\xb2\x7d\xda\x77\x77\xde\x7a\x64\x9c\x74\xec\x16\x62\x74\x9e\xb4\x7b\xad\xd1\xbd\x31\x3a\x62\x90\xc4\x95\x79\xae\x27\x1e\x1b\x70\xe4\xe9\x79\xc1\x1b\x66\xad\x3f\xb3\xc5\x14\x65\x37\x6d\x1f\x42\x5b\x3a\x6e\x39\x31\xc7\x04\xc7\x44\x42\xaf\xef\xdd\x35\xf3\xc0\x12\x72\xbe\xa4\x9f\xf2\x3b\x9a\x11\xca\x42\x63\xe5\xc1\x7c\x7c\x50\x61\x3a\x7b\xed\x1a\x1c\x59\xc2\x3b\xfc\x19\xc0\x1d\x8e\x38\xdc\x53\xd7\x1f\x1d\xd8\x7b\x3c\x1d\xbb\xa1\xf1\x93\x8a\x4f\xbe\x1d\x4c\x2a\x4e\x36\x69\x8c\x6c\x74\xea\xfd\x07\x39\xb7\x6b\xd8\x84\x5e\x69\xec\xda\x14\xa4\x57\x5f\x9d\x7e\x9d\x37\x68\x6a\xf6\x4f\xaa\x99\xf6\x71\xea\x3f\x28\xeb\x8e\xe9\x6e\xaa\xc5\x5f\x1a\x2f\x0f\xc7\xcb\xcf\xe8\x91\xb8\x73\x84\x01\x2b\x3b\x3c\x1b\x5a\x25\xe1\xde\x2d\x4e\x70\xad\x71\x23\x15\x02\x37\xf6\x25\xe9\xda\x96\xfe\x4d\x33\x6c\x07\x4e\x63\xcb\x5c\x80\x7d\x63\x36\xc5\xe5\x1f\x29\xd2\xdb\x37\xc9\xb2\x49\xfa\xbc\xb6\x85\x83\x8a\xcb\x32\x97\xc9\xce\x36\xef\x02\xcb\x5b\x4a\x98\x7c\x77\xba\x51\xd2\xc8\x42\x56\xb0\x63\x95\xd1\x6e\xc2\x0a\xb1\xd4\x7e\x32\x59\xa1\x46\x73\x7f\x9e\x71\xbc\x63\xeb\x9f\x0a\xfa\x57\x7a\x6e\x18\x8f\xc1\x5a\xca\x0a\x99\x00\x83\xce\x43\xf3\xb4\x5b\x69\xc7\xf6\xc2\xa3\xf0\x81\x96\xdd\x26\xbd\xac\x98\x73\x64\xd3\xd0\xea\x52\xbf\x88\xfb\x67\x6f\x7a\x0d\xef\xb9\x7b\x1c\x97\x1c\xca\x87\xd8\xfb\xcd\xfb\x41\xd7\xc0\xfc\x94\x53\xc5\xe7\x1f\xe1\x5d\x9f\x7f\xa3\x61\x43\xf9\x4d\x3f\xf7\xca\xd2\x39\xdf\x6f\x2a\x52\x93\xf2\x40\xc8\xa6\xfc\xdb\xc3\x04\x8d\xef\xd1\xea\x1e\x0e\x07\xa7\xcb\xea\x2e\x8d\x6f\xf9\x26\x00\xd9\x96\xf9\xeb\xf6\x31\x8e\x86\x96\xfa\x67\xb2\x73\xb4\x81\x7d\x98\x9f\xe1\xe1\x6e\x9c\x0d\x08\x6e\xc1\xa6\x74\x9b\xb6\xaa\xf6\x03\x1f\xd1\x0d\x5a\xf6\xae\x55\xe2\x71\xb2\xa6\xe1\xf4\x61\xd2\x56\xfa\xa7\xb7\x3f\xfc\x50\xdf\xd1\xdd\x8f\xc0\x90\x0f\xff\xcf\x7e\xc5\xa0\x1c\xbd\x4c\x54\x63\xcc\xac\x02\xa3\x16\xfd\x8d\x45\xda\x0b\x74\x0a\xb6\x77\x6d\x54\xfb\xce\x28\x5b\xce\x37\x87\xa2\xa9\x97\xf2\xf4\x04\x5e\xd7\x12\x18\x0e\x87\x3d\x7d\xfd\x20\xe9\x63\x3c\x18\x4e\x29\x8c\x46\x2a\x0f\xb8\xf3\x46\x89\x76\xb9\x31\xbe\xaa\x8a\x63\x28\xd3\xff\x00\xc3\xf0\x21\x6c\xa6\x49\xc9\xbf\x06\x40\x91\x23\x26\x82\x43\x53\x48\x27\x25\xf4\x94\xba\xdb\x27\xc2\x7c\x03\x77\xe8\xf8\x1c\x5f\xa5\x87\x7f\x56\xa1\xcb\x5a\xed\x3f\xca\xe1\xc1\x8d\xa8\xf8\x48\x58\xeb\x99\x68\x2f\x2f\x9c\x48\x3f\x07\x2f\x48\x82\xa4\xb2\xa1\xe4\xf3\x7b\xc4\x9b\xc7\x84\xbe\xcc\x7a\x8b\x63\x66\xec\x19\x64\xef\x0a\xd3\x00\x64\x59\xd9\x7f\x2d\x0b\xe7\x70\xaa\xdd\xc7\xd3\x4d\xac\x30\x9e\xaf\xec\xba\x7c\x6b\xff\xf9\xec\xd4\x56\x57\xd1\xe7\x7b\x87\xa1\xae\xcb\x48\xf2\x95\x49\x06\xff\xea\x75\xfe\x55\xea\x08\xf3\xc7\x50\xb1\xcb\xb3\x8a\x36\xff\xe1\x63\x8f\x04\xff\xf4\x7b\xa9\xd9\x2d\xce\x62\x4d\x68\xcf\x39\x9b\x2f\xc0\xc8\xb3\x71\x0e\x85\x5e\xc1\xc7\xff\x0b\x00\x00\xff\xff\x97\x13\xaf\x40\x3f\x46\x00\x00" +var _epochsFlowclusterqcCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x3c\x6b\x6f\x5b\x37\xb2\xdf\xfd\x2b\x26\x01\x2e\x2a\x75\x15\x39\x69\x8b\x62\x61\xac\xb7\xd7\x95\xdb\xad\xd1\x36\x2f\xbb\xe9\x87\x20\x88\xa9\x73\x46\x12\x37\xe7\x90\x0a\xc9\x23\x47\x1b\xe4\xbf\x5f\x0c\x5f\x87\x3c\x0f\x59\xc9\xdd\x5d\x03\x2d\x2c\x8b\x9c\x19\xce\x7b\x86\xc3\x9c\x9c\x7e\x0d\x27\x5f\x9f\x7c\x0d\xf0\x3b\x13\x6c\x8d\x1a\xcc\x06\x61\xab\x64\x81\x5a\x83\x5c\x41\x21\xab\x0a\x0b\xc3\xc5\x1a\x76\xd2\xa0\x86\x95\x54\x76\x8d\x92\xd2\xc0\xfb\x46\xaa\xa6\x86\x02\x95\xe1\x2b\x5e\x30\x83\xb4\x87\xbe\x6e\xb6\x85\xac\xb9\x58\x13\x68\xdc\xca\x62\x63\x37\xb2\xaa\x8a\x10\xa5\x00\x21\x4b\x84\xa2\x6a\xb4\x41\xa5\x81\x69\xcd\xd7\x02\xcb\x88\x22\xc0\x70\x00\xe6\x8e\xce\x3f\x37\x28\x02\x0c\xa9\x2c\x08\x0d\x4c\x21\xac\xb8\xd2\x06\x14\xae\x39\x81\xc3\x72\x46\x30\xf6\x50\x30\x01\x0a\xdf\x37\xa8\x0d\x30\x78\x25\x0d\x2a\x90\xcb\x7f\x62\x61\x60\xa5\x64\x0d\x66\xc3\x35\x14\x52\x18\xc5\x0a\x33\x27\x0c\x37\x1b\xdc\x7f\x55\x55\xd0\x68\x74\xdf\x86\xe5\x52\x01\xee\x50\xed\x41\x37\x4b\x4d\x20\x85\xf1\x67\xbb\xdb\xa0\x42\x87\x8f\x48\x61\xa0\x0d\x7b\x87\x65\x87\x4e\x7f\x82\x0b\x63\x4f\xb7\xc4\x35\x17\x82\x8e\x27\x57\x80\xac\xd8\xc0\x4f\x04\xeb\x1a\x4d\xb3\x85\xed\x86\x69\xb4\x27\x00\x56\xd6\x5c\x00\x17\xdc\x70\x56\xf1\x7f\x59\x11\x25\x24\xc3\x1d\x37\x1b\x02\x4b\x6b\x5b\x7c\x91\xab\x23\xcc\x84\x9f\x08\x63\x4e\x1f\x6c\x98\x26\xda\xb9\x58\x57\x68\xc5\xed\xe0\x32\x03\x5c\x93\xec\x24\x49\x38\xca\xa7\x06\x26\xca\x96\xc9\x52\x54\xf4\x4b\x55\xd1\x9f\xb8\x82\x5b\x02\x70\x0b\xab\x46\x38\x61\x4b\x51\xa0\xe5\x2f\xfd\xf7\x4c\x14\x08\x7e\x6d\x4b\xeb\x86\xed\x10\x14\x16\xc8\x77\x58\x02\x0a\xd9\xac\x37\xc0\x4b\x14\x86\x17\xac\xf2\x0a\x68\x24\xe8\x46\x6d\x99\xd6\x1e\xd1\x1d\xf2\xf5\x86\x78\xaa\x50\x6f\x64\x55\xce\xbc\x10\xe1\xc5\x02\xd6\x28\x50\x31\x8b\xdf\xb2\x94\x0e\xb2\xe2\x82\xeb\x0d\x96\x81\x7c\xcf\xe1\x3b\x5e\x55\x80\xfe\x4f\x3b\x49\x2a\x3f\xf7\xe2\x62\x62\x0f\x5b\xc9\x85\x99\xd1\xaf\x52\xa0\x3d\xf0\xfb\x86\x74\xa1\x5d\x0d\x5c\xac\xa4\xaa\x1d\xb6\xc0\xf6\x78\x36\x02\xb5\xdc\x43\x43\xdc\xb5\xdf\xdc\xae\xd1\x2c\xfc\xb7\x2d\x9b\x08\xa5\xa3\x3f\x95\x31\xb1\x1f\x6a\xac\x97\xa4\xbc\x2b\x92\x11\x2a\x8e\xd6\x40\x9d\x02\xea\x9a\x29\x13\xd7\x6b\xb8\xdb\x70\x2b\x5e\xa9\x4a\x2e\x98\xf1\x76\x4d\x80\x13\xdb\x36\x8a\x09\xcd\x09\x2b\xd1\xb4\x44\x73\x87\x28\x1c\x40\x0d\x5c\xc0\xcf\x95\xbc\x9b\x9f\x7c\x7d\x7a\x72\xc2\xeb\xad\x54\x06\x16\x6a\xbf\x35\xf2\xe4\x84\x15\x04\x62\xc2\xaa\x6a\xda\xd2\x48\xab\xfd\x79\x5e\x2c\xe0\xe3\xc9\x09\x00\xc0\xe9\x29\x9c\xff\x9b\x7f\x02\xdc\xc5\xb3\xa7\x37\x2f\x2f\x16\x37\xf0\xea\xe2\xe5\xd5\xc5\x8f\xbf\xfd\x74\xfd\x1f\xc3\xe8\x01\x9f\xc2\x95\x28\xad\x97\x23\x06\xa3\xd9\xa0\xf2\x3a\x49\x46\x5f\x34\x4a\xa1\x30\xd5\x1e\x96\x48\xfc\xf4\xb6\x85\xe5\xbc\xdd\xbe\x82\x15\xab\xc8\xb0\x85\x74\x16\x27\xb7\xa4\x9e\x52\x39\xed\x5b\x22\xb0\x65\x85\x4e\xc5\x97\x35\x37\x0e\xbc\xdd\x9f\xf2\x7c\xc7\x14\x70\xf1\x5c\xc9\xb5\x42\xad\xcf\xe0\x47\x29\xab\x96\xc8\x9b\xd6\x11\xf4\x9d\x6c\xd4\x4b\x47\xad\x93\x76\x86\xa0\x28\x64\x23\x8c\x43\x12\xb6\x9d\xc1\x6b\x2f\xda\x37\x43\xcc\xe0\xa4\x92\x3b\xeb\x5a\x15\x6a\xd9\xa8\xc2\xfb\x92\x4a\x21\x2b\x89\x21\xe4\xb3\x2b\xc6\x6b\x2c\xc9\x08\x98\x23\xea\xea\x32\xc2\xf2\xae\x18\xbd\xb5\x9b\x3d\x18\xcb\x89\xa0\x5d\x71\xe1\x53\xb7\xd1\xfb\x0a\x23\x1d\xd8\x88\x9e\x9c\x4c\x5c\x4b\x86\x6a\x11\x59\xe6\x3a\x77\x8e\xa0\x59\x8d\xa0\xb7\x58\x50\xc4\x82\xab\x4b\xeb\x06\x5e\xe5\xc4\x87\x58\x65\x78\xdd\x82\xbb\x15\xbc\xba\x85\x1a\x99\xd0\xce\x29\x1a\xeb\xf5\xb9\x26\x69\x7a\x17\x50\xb0\x2d\x5b\xf2\x8a\x0e\x10\x38\xdd\x3b\x2a\x69\x40\x0a\x26\xd0\x3e\xb0\xf7\xea\x72\x06\xcb\xc6\x00\x37\xc4\x4f\xf1\x95\xc9\x58\x19\x41\x1a\xd5\x60\x87\xb0\x3e\x4c\x12\x48\x57\x10\x81\xbe\x51\x05\xb0\x50\x16\x6e\xc3\x19\x7c\xbc\x36\x8a\x8b\xb5\x53\xb8\x4f\xc3\x66\xc1\x4c\xd0\x9a\x20\x66\x6e\x9d\xc9\xb8\xe2\x11\x84\x57\xac\x6a\xd0\xb9\xb9\xb0\x9b\x8b\x12\x3f\xa4\x84\x05\x5d\x70\x94\x11\x68\xaf\x93\x09\x61\x7f\x5c\x09\xf3\xe4\xfb\x4f\xff\x3d\xe7\xb3\x78\xf6\xf4\xfa\xe6\xe2\xe9\xcd\x7f\xc1\xf9\x2c\x98\x90\xc2\x06\xc2\x2d\x33\x1b\x67\xca\x2e\x74\x91\x06\xe7\xe6\xd7\xf7\x19\x15\x1a\xb8\xa0\xd5\xd7\x46\x2a\xb6\xc6\xe7\xcc\x6c\xce\x20\xf9\x30\xb8\xc3\xda\xc5\xe8\x8e\x48\xda\x4b\xdc\x2a\xd4\x28\x8c\x15\xe0\xb0\xef\x71\xf4\xc2\x9a\xef\x42\x90\x99\x43\x0f\xa7\x36\xaa\x29\x0c\x78\xc1\x86\x28\x92\x7a\x36\xab\x16\x21\xcb\x0c\xa0\x29\x07\xe2\x22\xfb\x13\x53\x8a\xed\xe7\x2e\x8e\x36\x82\xbf\x6f\xb0\xda\x7b\xef\xb2\xe2\x9e\x3f\x01\x2e\x1b\xa7\x31\xae\xeb\x72\xc6\xd2\x11\x14\x2e\x27\xf3\x4f\x9b\x90\x38\x01\xd9\xc4\x8e\xd8\x70\x75\x09\x39\x85\xa3\x90\x69\xb5\x07\xd1\xd1\xec\xef\xbf\xfb\xd4\x67\x88\x91\x86\x55\xde\xcf\xb9\x4c\x88\x32\x04\x9f\x5a\xb9\xf4\xf8\x48\xc4\x16\x92\xc3\x1c\xf0\xe5\xe8\x5e\xb9\x04\x8c\x6c\xdc\x01\xf6\xce\xf7\xd8\x84\x36\x03\xf6\x2b\xee\x9d\xef\xb4\xee\xf1\xb8\x08\x90\x12\xd2\xea\xba\x15\xbf\x6c\x0c\x50\xfd\xc0\x4c\xa3\x28\x33\x52\x50\xa3\xd6\xb6\xa4\xc9\xe4\x60\x63\xb5\x36\x52\x61\x09\xe4\xbf\x73\x45\x18\x3b\x89\xcf\xb2\xda\xa3\x78\xdd\x8d\x22\xa7\xaa\xc4\xfb\x3b\x17\xba\xb5\xf7\xeb\xb3\xe8\x8d\xdb\x54\x98\x8a\x03\x4d\x4e\x9d\x88\xb6\xaa\xcc\x35\xd4\x6c\x3b\xcb\x89\x29\xcb\x90\xe2\xc6\x83\x59\x53\xf7\x07\xb3\x90\x85\x5b\xc6\x0d\x2c\x59\xf1\x8e\x02\xa2\x05\x66\xf1\x55\x5c\x9b\x79\x06\xf2\x6a\x15\x88\xa4\x68\x40\x8b\x5c\x99\x44\xe9\x7a\xc4\x71\x6b\x91\xdc\x7a\x2c\xb7\xb0\xe2\x58\x95\x31\x41\x11\x52\x3c\xb2\x91\x70\x1c\x30\xc5\xa9\x2f\x82\x9d\xc3\xed\x66\x3c\x3e\x97\xc7\xd2\xaa\x61\x62\x1a\xf4\xb9\x6b\x18\x8a\x15\xef\xb4\x93\x9d\xb3\x7e\xc7\x12\xc2\xbe\x91\x77\x50\x37\x36\x3d\xae\x97\x9c\x0a\x4e\x6f\x37\x31\x42\x92\x27\x8b\x01\xcb\xd6\x41\x63\x34\x39\xd8\x44\xc0\xef\xee\x48\x37\xad\x0d\x1d\xb4\x5e\xaa\xe7\x26\x99\x0f\x99\x1d\x36\xfc\x29\x7c\x8c\x9b\xe9\x47\x63\xb5\x9a\x3b\x67\x78\x9e\xc4\xca\xec\xeb\x04\x20\x9c\xa7\xe0\x4f\xb2\xb5\x74\x90\x01\xdb\x87\x73\x78\x9c\xad\x23\x8e\x78\x56\x71\x91\x82\x9b\xef\x28\x7c\xeb\x0e\x85\xf4\x93\x80\x85\xf3\xec\xd3\x5f\x3c\xa8\x6c\xcb\xa7\xfe\x19\x46\x21\xf4\x97\xe6\x0a\x02\xe7\xf0\x71\x00\xde\x41\x89\xe5\x7b\x3a\x3a\xf5\x12\x4d\xa3\x84\xab\xa4\x44\x13\x6a\xb1\xa3\x3d\xec\xaa\x11\xa0\xf9\xbf\x70\x32\x0d\x12\xef\xf0\x4b\x59\xf8\xfe\xbb\x49\x57\x80\xf3\x0a\xc5\xda\x6c\xa6\x70\x0c\x79\x35\x17\xbc\x6e\x6a\xd0\x4d\x4d\x34\x5a\xd5\xf7\x92\x53\xf8\xbe\xe1\xe4\xfc\xb8\x00\xa9\x4a\x24\xd1\xa7\x85\x47\x60\x22\xb0\x0c\xfa\x8e\x55\xbc\x1c\xea\xf7\x38\x33\xa1\x62\xd5\x9d\x7d\x3e\x6c\x2b\x1c\xef\x2c\x07\x88\x94\x9b\x50\xa9\x07\x56\x7c\xff\x5d\x87\x15\x7c\x35\x20\xfc\x73\x78\x0c\x4c\x0f\x6f\x48\xf8\x97\x2c\xea\xe8\x56\xf6\x91\x02\xde\xaa\x92\x52\x3d\x13\x78\xb3\xe1\xaa\x84\xf3\x3e\xce\x53\x0f\x68\xf2\xed\x94\x72\x3b\x2e\x0c\xae\x51\x41\xc9\x77\x5c\x73\x29\x66\xc0\x45\x51\x35\xa4\x00\x16\x54\xdf\xac\x94\xd5\x43\x0f\xe4\x9b\x29\x7c\x9d\xe3\xec\x93\x54\xf2\xdd\x4b\xac\x19\x19\xb4\x1a\xa2\xe8\x7f\x5a\x8a\x4e\xba\x2c\xcb\xf6\xfe\x2d\xa2\x7d\xd2\x75\x1d\x8e\x59\x44\x18\xfd\xff\x2f\xed\xba\x9c\x5f\x80\x54\xa8\x1c\xde\x9a\xa2\x3c\xc4\x6d\x2f\x1b\x95\x24\x5e\x07\xd4\x57\x1b\x66\x1a\x1d\x23\xa3\xd7\xac\xaf\x34\xbc\x58\x84\xfe\x45\x37\xfa\xc4\x5a\x8c\x25\xb6\xe9\x55\x9e\x54\xb4\xdb\x45\xc2\x0f\x05\x62\x19\x7b\x31\x99\x5a\xde\xce\xba\x49\x96\x18\x20\x24\x69\x2d\xb9\x56\x8d\xe6\x25\x2a\xdb\xf4\xab\xb7\x15\xfa\x60\xe3\x42\x3b\x9a\x8d\x2c\x3d\x13\x74\x9e\x39\xc4\xec\xc0\xc7\x44\x97\x5e\x29\x8a\x5c\x18\x0c\xae\x7b\x58\x57\x6f\xba\x66\x96\x6c\x08\x8b\x74\x3b\xfc\x7a\x9f\x19\xb8\x82\x95\x6b\x8f\xd8\x17\x8c\x30\x66\x9a\x5c\x2f\x3c\xe5\x64\x97\x2e\xfc\xfc\xd0\x91\xff\xaa\xcd\xab\xc8\x81\xdc\xef\x51\xe7\xef\x70\x3f\x14\x18\x82\x85\x1f\xdc\xfc\xda\xa3\x7a\xf3\x00\xfe\xee\x6d\xa1\xe3\x3f\x06\x20\x27\xea\xe6\xb7\xf7\x96\x7c\x3a\x10\x74\xfc\x56\xc1\xab\x31\x4d\xfd\x87\xf7\x90\x4e\x57\x5f\x38\x97\xb8\x38\xe0\x12\x07\x74\xb5\xad\x72\x29\x03\x36\x51\x67\x66\x6e\x63\xd0\x94\xf1\x84\x88\x04\x16\x5c\xb5\x23\x21\xa1\x80\xe4\x17\x5b\x71\x3f\xa4\x55\x94\xa3\x02\x9e\x89\x6a\xdf\x7a\x7a\xe3\x7a\xa5\x7c\x95\x35\x33\x75\xab\xc8\xa3\x07\xf2\x92\x24\xc7\xe5\x34\xcf\x0b\x31\x78\xae\x54\xa5\xba\x64\x78\x52\x16\x0a\x6d\xb4\x01\x81\x77\x80\xf5\xd6\xec\xe1\xc5\xa2\xb7\xd0\x36\xa3\xda\x03\x26\xc7\x83\xf3\xf6\xf7\x90\x50\xb5\xb9\xd1\x2c\xa9\x09\xce\xe0\xf5\x9b\x59\xd0\x89\xb3\x9c\xe0\x99\xab\x9f\xaf\x2e\xed\xaa\xe9\x20\xa5\x17\xa5\xeb\x0d\xb7\x10\x23\x34\x3d\xb3\xc6\x2e\x42\x73\xca\xf6\xc2\x89\x6b\x6d\xff\xae\x03\xcc\x5a\x79\xcd\x4c\xb1\x89\x1e\x40\x1f\x34\xfd\xf0\x13\xa0\x46\xf3\xcb\xb3\x9e\xf1\x54\x8c\x7e\x06\xff\x18\xf4\xc1\xb6\x7d\x52\x4a\xee\xc8\xa5\xba\x6a\xc6\x24\xce\x63\x40\xf8\x71\x51\x2b\x7f\x82\x33\x0f\xae\x62\x98\x1a\x0f\xa0\xbf\xf9\xbc\xa3\x4d\xe3\xdb\xe9\x27\xd1\x8b\x39\x2b\xcb\xeb\x20\x9e\x89\x25\x21\x4a\xeb\xc1\xf4\x73\xa0\xbc\x72\xea\xe0\x60\xb8\xfa\x7d\x7c\xff\xa7\xc1\x6f\xfa\x7f\xfd\xd4\xd7\x2b\xef\x6e\x12\xec\xc7\x06\xe1\x9e\x9b\xca\x71\xf6\x9c\x56\xac\x48\xbd\x70\x99\x6e\x2b\x2a\xdf\xf7\x48\x5b\x95\x30\xd8\x78\x0b\xb1\x62\x8d\xe6\x1f\xa9\xde\x4d\x2c\x8b\xca\x10\x36\xa6\xae\x28\xeb\x46\x0f\x4f\xf4\x80\xda\xbe\x76\xfb\xdf\x8c\x91\x7f\x4d\xe4\xb7\x85\xb4\x2f\xcd\x7c\x17\x17\xcb\xfb\x29\xb7\xd9\xf7\x61\xa2\x9d\x0f\x70\x94\x0f\x56\x5b\xc3\x24\x7b\x5d\x3f\xc8\x78\x13\xfb\x34\x3e\x25\x29\x64\x5d\xf3\x96\xf1\x49\x89\x7a\x1c\xf3\xff\x38\x10\x36\x27\xee\x18\x51\x12\x2e\xbd\x3b\x24\x8b\xc3\x41\x98\xc0\xdd\x2f\x98\xec\x78\x9f\x71\x2a\x2f\x98\xa3\x0f\x34\xf3\x38\xc2\xb9\x06\x25\x75\xc4\x81\xe0\xbc\x5b\x80\x3a\xdb\x49\xda\xda\xb7\xaf\xec\x0d\xa6\x4a\x9b\x9b\x4e\xff\x94\xac\xed\xed\x42\xa7\xd5\xe9\x9b\x42\x36\xcc\x1b\xd0\xbc\xde\x5a\xb7\x2a\x0c\xe3\x42\x83\xb6\xf4\xbb\x6e\x55\x0c\x24\x58\x66\x59\x4a\xc8\x08\x37\xf8\x01\x50\x14\xb2\x6c\xbf\x07\x6e\xec\xd9\x7c\x17\xce\xde\x33\xaf\xd7\x0a\xd7\xd6\x80\xa9\x88\x6b\x78\x35\x54\xa2\xf5\x7b\xc1\xbe\xcb\x6a\xbb\x68\x03\x2d\xd6\x5e\x4b\x4e\x1b\xf6\xce\x5d\x69\x75\x7a\x71\xdd\x76\x88\x73\x94\x41\x54\x7d\xc8\xf9\x89\x5b\x04\x16\xe3\xa4\xbd\x1b\x75\x45\xf5\xad\xc7\xfb\x2b\xee\x6f\xa7\x43\x38\x09\x65\xf4\xef\x31\x65\xed\xa3\xdd\xe0\x87\x47\x5d\x6e\xde\xd7\xde\x21\xd8\x31\x57\x18\x85\x3c\xd8\x8d\xf6\x77\x30\xa1\x0d\x37\x09\xa9\xc1\xd4\x5d\x85\x8c\xf6\x5f\xfd\xfe\xab\xf1\xce\x32\xa1\x6c\x9b\xbc\xd1\x1f\xb6\x18\x46\x61\xdf\x8d\xb4\x75\x6d\x1f\x2a\x17\xdb\x6c\x90\x10\xe7\x1d\xff\x3c\x68\x7b\x5b\x35\x14\xaa\x1c\x74\xdf\xbf\xa0\xe0\xfe\xfd\x77\x67\xf0\xd0\xdd\xb8\x5d\x5d\x42\xdd\x68\x63\x1b\x10\xbe\xc7\xe0\xd7\x79\x25\x7c\x78\x5f\x7f\xa8\x6d\x8d\x9e\xf7\xa2\xa1\x5d\x50\xc7\x94\x64\xf0\x6b\xdf\x9b\x3f\xf7\x64\xf6\x17\xa4\xcc\x80\xf3\x8c\x37\xfd\xc5\x77\xa1\x51\xd5\x32\x6b\xdc\xbf\x24\xb7\x26\x24\xca\x91\xe6\x0a\x6b\x2f\x2b\xd3\xf4\xdb\x76\x88\x45\x99\x77\xfa\x4f\x5d\xf6\x36\xd0\x8d\x1a\xbf\x64\x69\x2f\xeb\x47\x15\xfb\x7d\xd1\x01\x09\x0a\x0b\xa9\x86\xeb\xc9\x7b\x2e\x47\x6e\x82\xd2\x26\xcd\x7a\xeb\x07\x3e\xfb\xca\x22\xdc\x4f\x5e\xa7\x19\xbe\x53\xe1\x37\x23\x38\x33\xc7\x13\x10\x3a\xb5\xb3\xf9\xff\x67\xe1\xfd\x3d\xf7\x0e\xa3\x7e\xd4\x67\xd3\x85\x54\x0a\xf5\x56\xba\x72\xdd\x56\xeb\x07\x5b\xcb\x49\x41\xd2\x3b\xd4\x50\xf7\x58\x0f\xb0\x61\xd6\x75\x61\xb3\x01\xb0\x5f\xd2\x59\xce\xf9\x4e\xe5\x5e\xfc\x30\xbc\xb8\x2d\x0c\x86\x8a\xf2\xb8\x8c\x28\xf3\xd6\x43\xbf\x0e\x65\x1d\xdd\x2a\x38\x4b\xf9\xdf\xf6\xe3\xc1\xe0\xf1\x72\xfa\xe7\x6c\xbb\x45\x51\x4e\xe2\xde\xe9\x91\x88\x43\x95\xf0\x36\x50\x7c\x2f\x52\x3a\x55\x40\xe7\x3f\x4f\xc7\x3d\x04\x69\x51\x67\x34\x81\x77\xd3\x76\x4c\x06\xb9\xe2\x9d\x2b\x5b\xb9\x40\x84\xfb\x38\x11\xd7\x8e\xa1\xd8\xd1\xaf\x16\xa0\xd0\x86\x09\x0f\x59\xca\x32\x0e\x3f\xac\x1a\xeb\x56\xb7\xd2\xa0\x30\x9c\x55\x7e\x32\xc8\x4d\x24\xdc\xf1\xaa\x8a\x00\x6d\xb9\xbb\x0c\x96\xe4\xfb\x08\xf9\x7c\x4b\x3b\x7d\x20\xc5\x8a\xab\x1a\x4b\x60\xc9\x65\x71\x98\x40\x8b\x43\x13\xf8\xc1\x84\xb1\xbf\x2e\xef\x23\xe5\x8e\x33\x23\x09\xcc\xd5\x65\x1a\x22\x15\x4c\x46\xb3\x99\xf1\xa0\x79\x6f\x3a\xe3\x21\xbd\xc3\x7d\x40\xe6\x32\x99\xcf\xc4\x65\xf3\x98\x98\xeb\xf4\xf1\x0d\x06\xe9\xfe\x86\xe3\xc2\xf1\x83\x6c\x50\xcb\x2b\xa5\xf6\x33\x1e\x1e\xcb\xf4\x0c\x1e\x2e\x98\xb0\x9d\xa9\xd0\x9f\x19\x1a\x91\x89\xa9\xa2\xf5\x70\x63\x23\x3f\xdd\x18\xfe\x05\x41\xb8\x3d\x2c\xf9\x9a\xf8\x21\x5b\x38\x70\x2e\x7f\x2a\x57\xaa\x5d\x52\xce\x6f\x54\x33\x52\xaa\x85\xce\xdc\xae\x67\x6f\x25\x6a\xa3\xe4\x1e\xcb\x99\x6f\x53\xb9\xd4\xbf\xa9\xca\xd6\x38\x9c\x01\xa4\x83\x39\xf4\xe3\x77\x42\xaf\x51\x79\x80\xd6\x84\x21\x6f\x3a\x49\x4b\xb7\xf6\xf2\x17\xcd\x44\xb5\x1b\x59\xb0\xdd\x0a\x58\x30\x61\x89\x61\x55\x85\xa5\x33\x4e\x49\x06\xbe\x45\xd5\x19\x6a\x20\x28\xd9\x87\xe7\x4c\xb1\x5a\x9f\xe5\x71\xf5\x0c\xae\x5d\xde\x7e\x9b\x78\xf2\xdb\xb6\x8e\xe9\x67\xeb\x19\xcc\xf0\x93\xc5\xcc\x5f\xfa\x29\x79\xba\x69\xd4\xe9\x12\x90\x49\x97\xba\x24\xb4\x75\x82\xf2\x71\x26\x91\x4b\x23\x9d\xac\xa3\x34\x95\xec\x37\x0e\x8f\x92\x49\x70\x01\x5b\xbf\xe2\x61\xbf\x53\x99\xd2\x16\x92\xde\xbf\xc3\x63\x9f\xf2\x26\x57\xf9\x36\xf1\x25\x78\x4b\x74\x8d\xcf\x61\x60\xfe\x44\x03\xa0\x42\x36\x73\x04\xa0\x8e\xd1\x93\xc4\x7e\x61\x9a\xa0\x94\x93\x44\xe1\xa6\x11\x74\x00\x69\xc7\xec\x9c\x31\x33\x6d\x82\x79\x1f\xb4\x68\xd7\xf4\x70\x83\xe4\xcd\xb2\xe2\x85\xf3\x8f\xd9\xcc\x75\x1c\xc1\x78\xd7\x31\x62\x72\xbb\x6e\x97\xb3\xf5\xe7\xe1\xf7\x49\xef\x4c\x71\xd9\x59\xd7\x47\xcc\x4b\x24\xcd\xfa\x05\x3f\x4c\xa6\xb3\xde\xbe\x28\x81\x8b\x6a\x2d\x15\x37\x9b\xda\x29\x78\xfe\xb7\xf9\x8f\xbf\x5d\xbf\xfd\xf1\xb7\xeb\x27\xdf\xbc\xfd\xf6\xaf\x4f\x32\x20\xd3\xde\x79\x17\x1b\x74\xc3\x17\x1a\xb1\x1d\xc1\x6b\x45\x2d\x5d\x56\x19\x2b\x79\xed\x43\x65\xef\xe8\x5c\xbf\xb2\x5f\x9c\xb7\xa7\x9b\xef\x50\xf1\xd5\xc0\xf9\x93\x4c\x27\x57\xba\x7b\x4f\x8f\xe5\x25\x33\xec\x2c\x53\xaf\x83\x9b\x4a\x59\x33\x2e\xae\x71\xcb\xdc\x8d\xd7\x0d\x5b\x9f\xc1\xc3\x9f\x7f\x7b\xf6\xe7\xa3\x45\x08\xe0\x6f\x49\x71\x1e\xbd\x7a\xfc\xf8\xd1\xe2\xfa\xf1\xe3\x47\xe4\x1d\x1e\x3d\xec\x83\xda\x30\xbd\x49\x18\xff\x4b\xfa\x71\xfe\xeb\xef\x17\x8b\x27\xdf\xfc\xf5\xed\xe7\xf0\xfe\x42\x6b\x54\xa6\xcd\xe4\xb9\xc9\x35\x8a\xb9\xef\xfb\xfc\xf3\xbc\xee\x93\x18\x73\x66\x67\x0b\x91\xb1\x50\xb8\x90\x48\x99\x0e\xc9\x84\x77\x43\x5b\x9f\xb8\x60\x08\xfd\xd6\x80\x8d\x9c\x4b\xac\xa4\x58\x6b\x30\xb2\xa7\x09\x9d\xb2\xb3\x6f\xbf\xfe\x53\x16\x2f\x7a\x47\xf9\xe1\x07\xd8\x32\xc1\x8b\xc9\xc3\x9b\x88\xd4\x9f\xc2\x16\x44\x65\xa3\x42\xcf\x25\x1b\xcc\x7c\x38\x1d\x23\xa8\x47\x4b\x98\x11\x7e\x9d\x52\xfc\xe6\xc1\x08\x2b\x3c\x11\x5f\xa5\xef\x09\xb2\x32\x28\xa0\xb3\xe4\xc5\x72\x7b\x3e\xda\x70\x4e\xbd\x57\x1f\xe9\x35\x76\x4d\x31\x19\xa0\x72\xd3\x47\x79\xc1\x92\xdf\x19\xf8\x52\x24\x6a\x40\x7f\x69\x9d\x5d\x78\x78\x63\x1a\x25\x83\x92\x87\x5e\xa3\xb4\xd7\x85\x0a\x2c\xc8\x47\x5f\x12\x4e\x1c\xd1\x2c\x4d\xa8\x99\x92\x16\xe4\x93\x3c\xb6\x57\x87\x77\x23\x83\x39\xf6\x60\x03\xd3\x39\x81\x82\xe3\xda\xb5\x09\x05\x6d\xcf\x36\x22\xed\x9b\xca\xb5\x1d\xe8\x26\x2f\x29\x4b\xd7\xd4\x8f\x13\x5b\x41\xf5\x96\xac\x78\x37\x46\xd1\xbd\xda\x11\xda\xfb\xf4\xff\xe9\x81\x64\x6c\x58\x9f\x5b\x01\x74\xb3\xb1\x6c\x0e\xda\xa0\x5a\xb1\xc2\xc7\x00\xf7\x22\x26\xb4\x7f\x5d\x29\xc4\x65\x1c\xfb\xa6\xda\x8a\xa9\x76\xb4\xdd\x57\x10\x0a\xd7\x4d\xc5\x14\xb0\xc6\xc8\xda\x55\x79\x7e\x6e\xd0\x0f\x24\xd2\x22\x37\x8f\x98\xce\x42\xf8\x9a\x44\xbb\x01\x47\x97\x36\xb5\x43\xde\xb7\x74\x46\x3b\x8e\x79\xdb\xbe\xd8\x30\x1b\x65\x5f\xd8\xb0\x64\x4c\x7c\xbc\xda\xe2\xf1\x70\x16\xce\xb3\xf6\x38\x1f\x47\xb3\x35\x57\x3c\xd8\xca\xe1\x98\xfa\xe5\x0c\xfe\xd7\xae\x1d\x85\xa7\x0d\x53\xc6\xa5\x64\x93\x81\xb7\x09\xc9\x70\x54\x7f\xa7\xdc\xfa\x8d\xc3\x35\x18\x2d\x5a\x49\x55\xe0\x75\x77\x65\xa7\x1e\xb7\x43\xd4\x2d\x5b\xb6\x4a\xee\x78\xe9\x87\x01\xc2\xac\xbd\x91\xa1\x6e\x32\xb2\x5b\x38\xb9\x44\x48\xcf\x22\x50\x3b\x6d\xea\xaf\xdd\xdd\x3d\x32\xba\x79\x6e\x92\xb7\x2d\xb3\xc4\xc0\x33\x8d\x4c\x36\x96\xa6\xb3\x01\xc1\x64\x89\xb8\xbb\x6a\xd7\xbe\x88\x19\xac\xe7\x3a\x7d\x84\x4e\xc5\xcb\x75\x3b\xc3\x1a\x66\x36\x5d\x9e\x52\xed\x3d\x61\x7c\x59\x61\x68\xa2\x45\x9d\xcb\xc0\x04\xf5\x9b\xf9\x47\x4a\x16\x90\xa2\x42\x89\x17\x3e\x58\x12\x9d\x76\x4e\x56\x06\x1b\xca\x9e\xfb\xfd\xbb\xd5\x6d\xf8\x66\xec\x6f\x8f\xbc\x08\x73\x78\xc1\x99\xa4\xf0\xda\xdf\x07\x1b\x47\x96\xf7\x52\xac\xf8\xda\x36\xcb\xdc\x43\x3d\x6f\x83\xfd\x86\xc7\x57\x71\xcc\x42\x0f\x56\x44\xf6\x15\xcc\xb3\x9b\x9f\xce\x9c\x40\x82\x1c\x7c\xb5\xe7\xed\xdd\xc8\xed\xa3\x0a\x77\x58\xb5\x42\x48\x9e\x93\x35\x5b\x29\x32\x78\xf9\x4b\x30\x3b\x44\xec\xcd\x1c\xdc\xf8\xf6\x73\x3b\xf3\x3c\x4a\xcf\xe2\xe2\x8f\x9b\xab\x67\x4f\xcf\x2c\x15\x2e\xa1\xe0\x1a\x50\x31\x8d\x3a\x99\x6f\xe8\xbc\x01\x39\xdd\x2a\xdc\x71\xd9\xe8\xb4\xd3\xf3\x45\x66\x7f\xa8\xb8\x6e\xcb\xb9\x6e\xf9\x3f\xee\xfb\x5b\x6f\x3f\x30\x2a\x3b\x74\x3b\x32\x38\x2b\xdb\xbe\x64\x69\xdf\x5f\x1d\x31\x04\xe3\xca\x44\xd7\xa3\x8f\x0d\x3e\x8a\x14\xbc\xe0\x5b\x66\xbd\x42\x66\x9b\x29\xca\xf6\xa5\x41\x08\x8d\xe9\x08\xe9\xc8\x2c\x16\x1c\x13\x49\xbd\xde\xb7\x57\xe4\x3d\x8b\xc8\xf9\x92\x7e\xca\xef\x8e\x06\x28\x0b\x0d\x9a\x07\xd3\xe1\x21\x8b\xf1\xec\xb7\x6d\x94\x64\x09\x73\xff\xa7\x07\xb7\x3f\x9e\x71\x4f\x5f\xe0\xe8\xc4\xa0\xc3\xd3\xa1\x9b\x23\x3f\x75\xf9\xe4\xfb\xde\xd4\xe5\x68\xb3\xc7\xc8\xad\x4e\xa3\x42\x2f\x67\x77\x8d\x9f\xd0\x8b\x8d\xdd\x9f\x82\xf4\xea\x9b\xd3\x6f\xf3\x46\x4f\xcd\xfe\x49\x35\xd7\x3e\xbe\x70\x08\xca\xba\x61\xba\x9d\xc8\xf1\x17\xde\xf3\xe3\xe2\xea\x17\xf4\x5a\xdc\x79\xc2\x90\x98\x1d\x08\x0e\x2d\x97\x70\x2f\x18\xa7\xd0\x96\xb8\x92\x0a\x81\x1b\xfb\xfa\x76\x69\x5b\x08\xdb\x6d\xbf\xbd\x38\x8e\x2d\x73\x05\xf6\x1d\xde\x18\xb7\x7f\xa6\x4c\xc0\xbe\xe3\x96\xdb\xa4\x8f\x6c\x5b\x41\xa8\xb8\x2c\x73\xd9\x6c\x6c\x33\x30\xb0\xbe\xa1\xc4\xcb\x77\xc1\xb7\x4a\x1a\x59\xc8\x0a\x36\xac\x32\xda\x4d\x89\x21\x96\xda\x4f\x5d\x2b\xd4\x38\x7c\x9d\x3e\x98\x8f\x1c\xef\xe8\xba\xa7\x83\xee\xd5\xa3\x1b\x30\x64\xb0\x94\xb2\x42\x26\xc0\xa0\xf3\xdc\x3c\xed\x82\xda\x51\xc4\xf0\xa0\xbe\xa7\x75\xbb\xa4\x37\xd6\xcb\x4d\xb2\x89\x6f\x75\xa5\x5f\x46\x38\x93\xb7\x9d\xc6\xfa\xd4\x3d\x28\x4c\x0e\xe7\x43\xf0\xfd\x66\xff\xa0\x6d\x90\x7e\xce\xe9\xe2\x13\x98\xf0\x16\xd2\xbf\x53\xb1\xa1\xfe\xb6\x9b\xab\x65\xe9\x9f\xef\x63\x15\xa9\xa9\x79\x20\x64\x6b\xfe\xbd\x66\x82\xc6\xf7\x80\x75\x07\x87\x83\xd3\x66\x81\x57\xc6\xb7\x94\x13\x80\x6c\xcd\xfc\xb8\xc0\x21\xce\x86\xd6\xfd\x17\xb2\x75\xb0\x51\x7e\x98\xaf\xe1\xf1\x73\x9c\x71\x08\x6e\xc3\x52\xb9\x6a\xaa\x6a\xdf\xf3\x21\xed\x10\xe9\xc8\xb5\x4e\x3c\x56\xd6\x9c\x1c\x3f\x54\xda\xba\xff\xfc\x36\x8b\x1f\x5c\x3c\xba\xcb\x12\x18\xf3\xf1\xff\xd9\x17\xe9\x95\xbd\x57\x89\xaa\x0c\x99\x5b\x60\xd8\xac\xbb\xb1\x48\x7b\x8e\x4e\xe1\xf6\xae\x5d\x6b\xdf\x5e\x65\xcb\xf9\xea\x50\xd4\xf5\xd2\x1e\x9f\x32\x6c\x5b\x0f\xfd\x01\xb8\xcb\x37\x0f\x92\x7e\xc9\x83\xfe\x94\xc5\x60\x44\xf3\x80\x5b\x2f\x95\x68\x99\x1b\x55\xac\xaa\x38\x56\x33\xfe\x8f\x5a\x8c\xbf\x62\xcf\x34\x2a\xf9\x97\x16\x28\xc2\xc4\xc4\xb1\x6f\x1a\xe9\xc4\x87\x1e\x53\x7f\xfb\xdc\x9a\xaf\xe0\x0e\x1d\xbf\xe3\x4b\xff\xf0\x4f\x56\xb4\xd9\xae\xfd\x07\x4f\x3c\xb8\x03\x2a\x3f\x10\x06\x3b\xa6\xdb\xc9\x27\x47\xd2\xd6\xde\x2b\x9a\x20\xb9\x6c\x10\xfb\xfc\x1e\x71\xe7\xb1\xa3\x2b\xc3\xce\xe2\x98\x51\x7b\x46\xd9\xbb\xca\x34\x50\x59\x96\x76\x5f\x1e\xc3\x39\x9c\x6a\xf7\xf1\x74\x15\x2b\x94\x17\x0b\xbb\x2e\xdf\xda\x7d\x82\x3c\xb6\xd5\x75\x0e\xf2\xbd\xfd\x90\xd8\x66\x32\xf9\xca\x24\xf3\x7f\xfd\x26\xff\x2a\x75\x90\xf9\x03\xb1\xd8\x5d\x5a\x44\x1f\xf0\xf1\x53\x87\x04\xff\x9c\x7e\xae\xd9\x0e\x27\xb1\xa6\xb4\xe7\x9c\x4c\x67\x60\xe4\xd9\x30\x87\x42\xef\xe1\xd3\xff\x05\x00\x00\xff\xff\xa5\xa8\x8f\x31\xa3\x47\x00\x00" func epochsFlowclusterqcCdcBytes() ([]byte, error) { return bindataRead( @@ -299,11 +299,11 @@ func epochsFlowclusterqcCdc() (*asset, error) { } info := bindataFileInfo{name: "epochs/FlowClusterQC.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc7, 0x47, 0xb6, 0x81, 0xf0, 0x4a, 0x71, 0x50, 0xd8, 0x73, 0xd9, 0xb9, 0xab, 0xb8, 0xa, 0x4a, 0x4a, 0xde, 0xe8, 0x9f, 0xa4, 0x4a, 0xb9, 0x99, 0x6e, 0x19, 0x2e, 0xe6, 0xbe, 0x58, 0xeb, 0xd2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x79, 0x17, 0x43, 0x6f, 0x3e, 0x7a, 0x1c, 0xed, 0x78, 0xf1, 0x70, 0x2b, 0x94, 0x9b, 0x58, 0x40, 0x5, 0x75, 0x7f, 0xad, 0x38, 0x1d, 0x98, 0xb8, 0x36, 0xde, 0x5c, 0x1d, 0x1d, 0x42, 0xc3, 0x49}} return a, nil } -var _epochsFlowdkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x5c\x7b\x6f\x1b\x39\x92\xff\xdf\x9f\xa2\x12\xe0\x10\x29\xa3\xf8\xb1\x98\x5d\xe0\x8c\x28\x73\x8e\xed\xc9\x19\x99\x4d\x82\xd8\x33\x73\x40\x10\x4c\xa8\xee\x92\xc4\x73\x37\xa9\x21\xd9\x56\x74\xd9\x7c\xf7\x43\xf1\xd1\x64\x77\xb3\xfd\xc8\x66\xef\x04\xcc\xc0\x52\x93\x45\xb2\xaa\x58\xfc\xd5\x8f\xd5\x39\x78\x0a\x7b\x4f\xf7\x9e\x02\xfc\x9d\x09\xb6\x42\x0d\x66\x8d\xb0\x51\xb2\x40\xad\x41\x2e\x61\x85\x02\x15\x33\x5c\xac\x80\xc1\x4a\xc9\x66\x03\xd7\xb8\x83\x2d\x37\x6b\xd7\x94\x29\xc3\x0b\xbe\x61\x86\x4b\x41\x1d\x58\x55\xd9\x07\x85\x14\x1a\x85\x6e\x34\x08\x59\xa2\xa6\x21\x96\x52\xd9\x47\xcd\xa6\x90\x35\x49\xc4\x8d\x2c\xd6\xfb\x6e\xfc\xdf\xd7\x28\xfa\x9d\x80\x29\x84\x25\x57\xda\xd0\x93\x25\x57\x35\x96\x33\x12\xb1\x83\x82\x09\x50\xf8\x67\x83\xda\x00\x83\x77\x61\x16\xc2\x80\x5c\xfc\x37\x16\x06\x96\x4a\xd6\x60\xd6\x5c\x53\x57\xa3\x58\x61\x68\x94\xab\x35\xee\x9e\x54\x15\x34\x1a\xdd\xc3\xd0\x5a\x2a\xc0\x1b\x54\x3b\xd0\xcd\x42\x93\x5c\x61\xdc\xf4\xc0\xac\x99\x71\x63\xd2\x6c\x18\x68\xc3\xae\xb1\xec\x4d\xd5\x2f\xe2\xc4\xb6\x84\x05\xae\xb8\x10\xb4\x42\xb9\x04\x64\xc5\x1a\xce\x49\xd4\x25\x9a\x66\x03\x9b\x35\xd3\x68\x57\x01\xac\xac\xb9\x00\x2e\xb8\xe1\xac\xe2\xff\x63\xb5\x9f\x4c\xd8\x6a\x99\xc4\x52\xdb\x8a\x6b\x43\xe2\xfa\x2a\x1a\x51\x2a\x9c\xd3\xb0\xdd\xc6\x24\x8a\xf4\xb6\x91\xa4\x34\x0d\x35\x13\x3b\xa8\x51\x6b\x6b\x78\xa6\xdd\x2a\xb7\xa4\x44\x23\xad\xd0\xb3\xd7\xaf\xe0\xf1\x76\xcd\x0d\x2e\x24\x53\xe5\xe3\x68\xf7\x4f\x89\xca\xf7\x49\xe0\xdf\x9d\x9c\xc9\xf4\x13\xd4\x68\xd6\xb2\x9c\xd1\x70\x8b\xc6\x38\x05\xd0\xf8\x76\x70\x29\x2a\xab\xe4\x9a\x93\xe1\x96\x5c\xb0\xca\x7d\xd5\xda\x7a\x90\x28\x10\x36\xa8\xbc\xf2\x6f\x38\x1b\x0e\xa7\x51\x94\x3f\x53\xc7\xcb\xb6\xdf\x64\xea\x47\xdd\xa7\x51\xe9\xbf\xb7\x24\x88\xc1\x8b\xbf\x1e\xfe\x1b\x98\xb5\x42\xbd\x96\x55\x99\x53\xe0\x9a\xdd\xa0\x9f\x90\xc1\xd2\x8e\x86\x9f\x49\xfb\x9a\xd5\x08\x1a\xad\xd6\xaf\x71\xa7\x67\xc1\x14\xa4\x15\x6b\x45\xe0\x1a\x0c\x16\x6b\xc1\x0b\x56\x55\x3b\x5a\x0d\xd7\x6b\x74\x93\x38\x11\x3b\x29\xdc\x9a\xff\x6c\xc8\xb3\xa8\xab\x36\xcc\x20\x09\xb4\x5f\xda\xe9\xeb\xa8\xd8\x9f\x2b\xb9\x3d\x7b\xfd\x6a\x7f\x85\xa6\xb7\x46\x3d\x99\x92\x5c\xa9\xda\x36\xe5\xf5\xea\x54\xd6\x9b\x0a\x0d\x96\xad\x06\xb4\x1d\xfd\xb4\xb7\x4a\x9a\x06\xf9\x15\x17\x0d\x92\x75\xbd\x05\x9c\xfe\x5b\x1f\xc0\x1b\x14\xc0\x96\x06\x9d\x4f\xd1\x06\xe3\x0a\x4b\x60\xb5\x6c\x84\x71\xaa\x5a\x20\x8a\x8e\xbe\x64\xb3\xa2\x4d\x0c\x6e\x7f\xa5\xfe\xcb\x35\x30\xa8\xb1\x5e\xa0\xb2\xa1\x01\x34\x2a\x8e\x36\xae\x38\xf3\xea\x9a\x29\xd3\xb6\xd7\xb0\x5d\x73\xeb\xb5\x52\x95\x5c\x30\xe3\xc3\x11\x09\x4e\x42\x92\x51\x4c\x68\x4e\xf1\x86\xdc\x7d\x81\x66\x4b\x33\xb2\x02\x35\x70\x61\xb5\xb3\xbf\xf7\xf4\x60\x6f\x6f\xd3\x2c\xe2\x64\xbc\xd2\xe0\xcb\xde\x1e\x00\xc0\xc1\x01\xcc\xff\xf9\x4f\x10\x45\x82\xcf\x7f\x3b\x7f\x73\x75\xf9\x3d\x85\x7b\x59\x07\x70\xee\x95\xbd\xa5\x20\x19\x23\x07\x0a\xb6\xa8\xbc\x92\xce\x5e\xbf\xb2\xcd\x69\xcd\x64\x46\x03\x97\x86\x29\x73\xf6\xfa\xd5\x64\x7a\x0f\x41\x65\x2b\xc5\xdb\x1f\x05\xd9\xb5\xe3\xa3\xd1\xfc\x0a\x0b\xa9\x4a\x2c\x7b\x23\x9e\x8b\x92\xc6\x5b\x76\xfd\xf6\x18\x3e\x5c\x1a\xc5\xc5\xea\xa7\x8f\x3f\x8d\x4d\x85\xf5\xb6\x25\xac\x99\xb6\x71\x8a\x9c\x2f\xf8\x67\x1a\x95\x62\x50\xea\xcd\xe1\xa5\x92\xac\x2c\x58\x0c\x48\x24\xee\xe2\xec\x18\xdc\x1c\x66\xd6\x21\x50\x98\xf0\xc3\xf4\x7b\xba\x43\xd7\x7c\x5e\xee\xe9\xdb\x37\x57\xef\x4f\x4e\xaf\xe0\xb7\x93\xf7\x17\x27\x2f\x7f\x39\xff\x9e\x3e\xd2\x1d\xb1\x55\xee\x15\x9d\x18\x28\x56\x66\x1d\xa2\x97\x3b\xc7\xac\x09\x8d\x84\x45\x1a\xf2\x98\xce\x44\xe2\x56\xad\x15\x9a\xe4\xe7\xd7\xb8\xfb\xc5\xca\x3d\x86\x0b\x61\xe2\x80\x17\xa2\xe4\x85\xdd\xb1\x7c\xd9\x1a\x89\x6b\xef\xa2\x25\x45\x2d\x21\x4d\x2b\xf4\x86\x29\x28\xaf\x57\xe7\xee\xe9\x31\xbc\x94\xb2\x1a\x11\xd6\x3d\xdd\x15\x6a\xd9\xa8\xc2\x39\x08\xab\x14\xb2\x72\xe7\x7c\xb2\xa8\x18\xaf\xb1\x84\xc5\x0e\x98\xf3\xa1\x8b\xb3\x56\xa2\x47\x03\x08\xbc\x44\x61\xb8\xd9\x81\xa1\x91\x23\x36\x08\x0d\xdf\xb8\x8e\xba\xd5\x94\x15\x0b\x2c\x02\x1d\x82\x18\xa2\xc0\xb6\x07\x05\x79\x3b\xdc\x96\xb7\xc0\x02\xfd\xe1\xb1\xc1\x82\x2f\x79\x01\x17\x67\xc0\x44\x99\x5f\x08\x1d\xe0\x16\x34\xf1\x3a\x0a\xfd\x24\x78\xf5\x89\x94\xb6\x64\x95\x46\xa8\x91\x09\xdd\x22\x11\x65\x0f\x1e\x21\xe1\x46\x5a\x60\x56\xb0\x0d\x5b\xf0\x8a\x56\x15\xd0\x40\x7f\xfd\x46\x35\x7d\x29\x9d\x15\x25\x22\x48\xb1\x7d\x85\x06\x91\x56\x1e\x2b\x28\x12\x4f\x58\x51\xd0\xa1\x30\xb5\xb6\xa4\x87\xa7\xae\xfd\x31\x7c\x71\x3b\xcb\x59\xf5\x6b\x34\xeb\x7b\x1b\x35\xc8\x21\xe3\xee\x8d\x67\x4f\x98\x7a\xd1\x28\xd5\xa2\xaf\xc4\xa1\xb9\xa6\x55\x2b\xa4\x13\x99\xe5\x70\x96\x85\x6f\xf1\x6c\x9e\x74\xa1\xc4\x74\x74\xee\x71\x32\x3e\x64\xe8\x63\xf8\xe0\xff\xfc\x98\x6c\x29\xc5\x8a\x6b\xed\x7d\xeb\x89\x1e\x42\x97\xdb\x17\xf0\x1a\x77\xc7\x03\xb3\xfc\xc6\xaa\x06\x8f\xe1\xd2\x81\x8c\x4d\xb3\xa8\x78\xe1\x76\x6b\xeb\xb0\xd9\x7d\x69\x37\x89\xdb\x67\x37\x24\x82\x34\x63\x5d\x66\x16\xad\x6f\x5d\x84\xfc\x6c\xc5\xb5\x41\x15\xf6\x79\x0f\x12\x8e\x49\x63\x02\xb0\xde\x18\x02\xbd\x8a\xed\x12\xb1\xe4\x1e\x24\x37\x86\x8f\x1d\x9a\xae\x99\x6a\xb6\xd9\x90\x51\xfe\x35\xe6\xea\x9d\x2e\x2f\x77\x6f\x7c\x80\x6f\xdd\xae\x3d\x6e\x12\xdf\x3b\xa1\x65\xd0\xb8\x8d\xe0\x7f\x36\x43\xb5\x7a\x8d\xbb\x5c\x25\x74\xb2\xd1\x67\x60\x67\xae\x41\x93\x7d\xed\x46\xaa\x99\x29\xd6\x04\x69\x04\xba\x1f\x42\x4c\x6a\xb7\x51\xab\xa8\xb8\x19\x49\x49\x56\xaf\x2e\x66\x90\x3a\x8b\x35\x13\x2b\x04\x2b\xa0\x1a\x5d\xbb\x9b\x7c\x1f\x17\x1e\xc3\x87\x76\xc9\x43\x87\x5d\xcb\xad\x43\xfa\xf9\xa3\x9c\x96\x12\xc3\x24\xa5\x41\x04\xd7\x47\xb4\xf4\xb0\x89\x9d\xd2\xf3\x63\xf8\x72\x41\xff\xff\xf5\x42\x98\xbf\xfd\xf8\xf5\xff\xee\xb4\x3d\x7d\xfb\xe6\xf2\xea\xe4\xfb\x22\xb2\xee\x88\xed\x90\x4c\x48\x9b\x02\xc0\x86\x99\xb5\x8b\x64\x0e\x57\x51\xd0\xdf\x64\x82\xbe\xee\x9c\xae\x27\xd4\xf6\xd2\x48\xc5\x56\xf8\x8e\xd1\xd1\x9a\x7c\xe9\xb4\x4c\x0e\x90\x87\xb6\x7f\x67\x83\x8b\x6b\x1e\xff\x8e\xde\x72\x69\x54\x53\xd8\xc4\x4f\xe1\x86\xb6\xad\xa0\xfc\x4c\x73\xb1\xaa\x30\x13\xaf\xdb\x61\xb4\xeb\xe7\xe3\x65\x40\xd7\x29\x0e\xb9\x38\x0b\x09\x8f\x3b\x26\xd7\xb2\x97\x6e\xa5\x22\xd3\xd9\x77\x91\xdb\x50\xb0\x47\x72\x41\x7a\x5f\x0c\x35\xfb\x1d\xa1\x66\xd7\x34\x32\x30\xad\x9b\x7a\x63\xac\xfb\x93\x81\xb4\x46\xe5\xbe\xb1\x85\x6c\x4c\x20\x2d\x6e\x93\x18\x26\xd6\x83\x90\x71\x66\x94\xca\xdf\x09\x38\xe1\x4b\xdb\x9e\x3e\x1a\xab\xe5\xbe\xeb\x03\x73\xbf\xe6\x61\x83\x30\xb3\x79\x10\xd7\x36\xf9\xba\xe7\xfe\xdf\xc1\x7e\x59\xa4\xc1\x75\xa0\x73\xb0\x8c\x5b\xbd\x07\xbc\x43\x66\xb0\x6b\x4f\x8e\xfd\x08\xd9\xa9\x7d\x14\x27\xb4\x61\xc2\xcb\x95\xb2\x6c\x91\xcc\xb2\x31\x8d\x42\xd8\x48\x9a\x27\x67\x95\xcf\xcd\x66\x96\x0d\xa0\x88\x97\x60\xa7\x8a\xd0\x1b\x1d\x3b\xbc\x0c\xc8\xd1\x4e\x43\x6e\x68\x9e\x52\x25\x70\x24\x30\x40\xb9\x73\x2c\x02\x1f\xfc\x6c\x02\xaf\x14\x4c\xd6\xce\x38\xd5\x4a\xc6\x51\xfd\xe9\x1c\xac\x9f\x6c\xdc\x7b\xbb\x66\xc6\x01\xfa\xf6\xde\x28\xec\xfd\x42\x9f\x90\xd2\x27\x83\x5e\x68\x8f\xa8\xbc\xc0\x29\xcc\xe7\x20\x78\x75\x3c\xe8\x4c\x9f\xc7\xa7\x4c\xd8\x83\x44\x21\x33\x38\x86\x9a\xad\x89\xda\x85\xfa\x94\x20\x0f\xa4\x1f\x77\x86\xf9\xfa\x30\x9f\x0d\xcb\x49\x70\xe1\x07\xd7\xec\x23\xcc\x2d\x1a\x4d\xfc\xb7\x63\x08\x0f\x44\xc6\x1c\xb8\x44\x6d\x94\xdc\x61\x39\xeb\xf6\xa2\x4d\xd9\x54\x65\x74\x3a\xe7\x58\x01\xc3\xb2\x15\xe3\xa2\xed\xe1\x85\xc0\xa4\x6f\x9b\xdc\xb4\x93\xb5\xd2\xdc\x2d\x20\x1f\x9b\xfc\x3b\xa9\x0d\x39\xe7\x30\x5e\x86\xdc\xb5\x93\x70\x04\x8f\x5a\x36\x8e\x94\x0b\x29\xeb\x1f\x77\xc5\x8c\x07\xf8\xd0\xfb\x16\xff\x4d\x92\x95\x4c\x6f\x77\x22\x8d\xa2\xcc\x2d\x82\x2f\xfb\x98\x32\x0b\x7a\x1f\x0f\x84\xfb\xf5\xec\xfb\x9c\xf4\x05\x1c\xde\x3e\x01\x47\x51\x06\x0c\xda\xd3\x61\x42\x48\xf6\x7c\xb4\xf3\xf5\xe0\x20\x6c\x86\x24\x96\xfb\xf3\xaa\xd3\x90\x36\x74\x78\x3c\x87\x3e\x6f\x90\x68\x2d\x89\xe5\xfe\x8f\xe9\x60\x48\x56\x76\x0e\xb5\x30\xe7\xf0\xd5\x31\x27\x59\xa7\x1b\xe6\x21\xfb\x6c\xb3\x41\x51\x4e\x7c\xe7\xde\x60\x58\xf3\x5b\xe8\x8e\xfb\x4e\xbb\xe7\xc1\x97\x2d\x15\xe4\xb0\xdf\x35\xee\xe0\x06\x0b\x8a\xc4\x11\x06\xee\x43\xa7\xcf\x69\xa0\x75\x69\xc3\xb1\xaa\x72\x39\x63\x9f\x67\x75\xe8\x58\x61\xe2\x3d\x1d\x29\x84\x95\x8a\xa1\xa4\x36\x2d\xe8\x05\xfc\x36\x53\x18\xec\xa4\x1c\x3d\xfc\x47\x32\xfb\x24\x41\xf8\x7f\xd9\x57\xc3\x84\xe2\x5b\x77\xd5\xa3\x34\x5e\xfd\x27\xd3\x97\x01\x56\x3d\x64\x4a\xa3\x54\xbc\xd9\xf2\x02\x87\x83\x26\x6e\xe0\x77\xf3\x7c\x9e\xb2\xd6\x2d\xf3\xec\xf2\x32\x3d\x99\x86\x76\x3f\xc0\xd1\xc8\x5c\xa2\xa5\xa0\x6e\xb4\xa7\xa9\x44\x13\x88\x63\xac\xb0\x46\x61\x34\xe0\x9f\x0d\xab\xc2\x96\x8a\xcf\x9d\x83\x25\x57\x51\x94\x7c\x8a\xc8\xd5\x57\x8d\x86\xa3\xbb\x62\x05\x37\x16\x19\x81\x59\x2b\xcb\x7c\x5a\x70\x44\xee\xef\x25\xb9\x5d\x30\xd8\xee\xa2\x74\x08\x53\x13\xe4\x21\xf4\xe3\xd0\x43\x6d\x5d\xdd\x45\x7c\xa5\xb0\x30\x9e\x8e\xeb\xf4\x27\x33\xfb\x11\x12\xbd\x0f\x1d\xf0\xe0\x80\xce\x7d\x47\x0c\xb8\x4b\x28\x07\x98\x7a\x89\x59\xfa\xe1\x4b\x1b\xd6\xae\x71\x67\x39\x06\x98\xdb\x81\x86\xa2\xbd\xf8\x0b\xca\x74\xa9\x85\x37\x15\xd7\xc0\x85\x9f\xf9\x0c\xb8\xf1\x94\x00\x17\x77\x0e\xec\x07\x0f\x03\x07\xdb\x3f\x8a\x3e\x92\x21\x13\x47\x26\x46\x9f\x0d\x13\xbc\x98\xa4\x1e\xd2\x9d\xa6\xc5\x3c\x6e\xa2\x8f\x1e\x4f\xb3\x62\xbe\x0e\x7e\xfd\x7a\x9b\x2f\x64\x48\x86\x0b\x51\xe2\x67\x98\xc3\xe1\x9d\x5e\x13\xae\x3f\xf1\x33\xd7\xd6\x0f\x7d\x26\x9d\x24\xdf\x7d\x11\x16\xf1\x70\x9d\xe2\xcd\x27\x3a\x75\x88\x94\x63\xf0\xd8\xb4\x15\x2f\x05\xea\x59\xf6\x0c\x0a\x78\xa3\x11\x06\x95\x8f\x28\xcc\x8c\x99\xee\xe0\x00\xde\x9a\x35\xaa\x2d\xb7\x97\x93\x8a\x15\xd7\x1e\x4f\x6f\xd3\xa9\x90\xbb\x6b\x34\xc0\x8d\x6e\x45\x1b\x09\x47\x1d\x59\xdb\x35\xaf\x30\xaf\xc2\xe7\xd1\x0d\xf2\x5c\x46\xf0\x97\xec\x26\xb8\xa0\xad\xde\xaa\x63\x8b\x8a\x00\x6d\x23\xca\x99\x3f\x75\x79\x47\x6d\x36\x4d\xa0\xf9\x7b\x13\x48\x81\x39\xa1\xb4\x24\x7b\x94\x12\xdc\xb8\x49\x33\xab\xf0\xe1\xcb\x11\x7f\xf8\xf6\xc5\x40\x72\xac\x8c\x73\x27\x1f\x72\xc3\x12\x08\x3d\x7a\xb8\xc0\x16\x4c\x44\x0d\xe5\x77\xcb\x42\x21\xbb\xce\xec\x98\xc1\x4f\x14\x5f\x82\x1f\x26\xdb\xf3\x2e\xa5\xe4\x17\x35\x14\x1f\x73\x81\x94\xb8\xa2\xf0\x67\x4f\x81\x59\xae\x43\xb3\x29\x03\xde\xeb\x3a\x7e\xcf\x33\x82\xc9\xed\x56\x1a\xb3\xf9\x30\x5e\xe9\x73\x1a\x79\x32\x5c\xf4\x2c\x91\xde\xc7\x14\xdf\xc1\xdc\xdf\xda\xf5\x11\xfc\x00\x93\x23\xda\x08\x8e\x7d\xfb\x27\x0d\xde\x55\x30\xb7\x7b\xc0\xab\x79\xd0\x76\x24\x80\x66\x7f\xfe\xa1\xe7\xcf\xbd\xa1\xc3\xea\x47\x88\xdf\x7e\x82\x96\x09\x70\x03\x8a\xe4\x82\xe6\xbc\x64\x85\xe7\x6c\x2d\xe4\x24\x68\xcc\xb8\xd0\x9e\x7a\xb0\xde\xd6\x62\x56\x8a\xcd\x91\xb5\x58\xfa\xdb\xf1\x55\x53\x31\x05\xac\x31\xb2\x76\x9c\x4a\x23\x8a\x70\x2f\x1d\x02\xb5\xbd\xe7\xf6\xb7\xd7\x29\x45\xa3\xd1\x1d\xe5\x96\x4c\x8d\xb7\x2c\x9f\x68\xb5\xb6\x5a\xe4\x53\xbc\xba\x6e\x0f\x97\xe4\x9e\x66\xc8\x6e\xf0\x76\x51\xb6\xff\xdb\xb8\x8c\x2f\x03\x8c\xec\x12\xa3\x24\xc9\xee\x93\x16\xc7\xf0\x1f\xef\x46\xf8\x0f\x8b\xb1\xc3\xdd\xb2\xeb\xa6\x5b\x4c\xfd\x71\x3a\x68\x8b\xee\x56\x78\xf8\x60\x29\x55\x81\xe7\xe9\xd3\x1e\x8b\x65\x89\xd1\xb8\xc0\x8d\x92\x37\xbc\xf4\xf7\xdd\xe1\xba\xca\x5e\x66\xae\x3c\xd7\x4a\xf0\xda\x5f\x8a\x59\xa6\x43\x24\x29\x42\x47\x57\x56\xf2\x71\x46\x51\xbd\x64\xc8\xb8\xc1\xa4\xe5\x0d\x09\x1e\xb3\xa5\xc3\x94\xba\xb1\x86\x8b\xa5\x25\xfd\x8e\xb6\x5f\x2c\x3c\x31\xd2\x42\x38\xbe\x74\x60\x4a\x3c\x31\x20\x10\xcb\x24\x07\x8a\xe9\x8b\xb9\x64\x4b\xbc\x74\x03\x5c\x05\x09\x13\x81\xdb\xf6\xcb\x3b\x54\x05\x0a\xc3\x56\x78\x0c\xbf\xfe\xcc\x3f\xff\xed\xc7\x9f\xee\x97\xca\x3c\x4a\x4a\x47\xda\xcb\xd7\x98\x9d\xb8\x59\x97\xd7\xab\xe1\xfa\xfc\xa9\x3e\xbc\xda\x1d\x66\x08\xf9\x99\x7a\xf6\x0a\xfe\xf1\x8f\xb1\x16\x8f\xe0\x39\x1c\xed\x1f\x1e\xc3\xe3\xab\x8e\xee\x36\x51\x86\xcd\x0e\x16\xe4\xeb\xf0\xe1\x70\x76\x34\xbd\x15\xd4\x87\xb5\xfa\x9b\x8a\xfd\x4a\xb2\xf2\xb9\x53\xd7\x8b\xc9\x52\xc9\xfa\x18\x0e\xb4\x63\xce\x0f\x96\xae\x2d\x69\xbe\x9d\xd9\x30\xb9\x27\x00\x92\x5f\x1c\x21\x51\x5e\xcd\x60\x6b\xb1\x99\x81\x35\x2a\xdc\x87\x4b\x4e\xd9\xeb\x16\x81\x86\xa6\x00\xa1\x64\xdd\x97\xe9\x67\x40\x06\xbb\xe1\xb2\xd1\x95\xbd\x6d\x73\x77\x67\x4d\x65\x6c\x49\xcb\xad\xd3\x84\x05\xda\xba\xaf\x7a\xe3\xa3\x42\xf8\xf8\x1c\x20\x51\xdf\x7c\x6c\xfa\xe3\x49\x6f\x50\x9e\x66\x37\xd8\x2a\x2f\x8a\x9c\x81\x91\x77\xaa\xb1\x6b\xa3\x8c\xb5\x2c\x8b\x60\x43\x52\xc0\x6c\xb7\xb0\x97\x99\x1b\x4c\xf8\xf6\xd0\xd6\x5b\xba\x55\x58\xf2\xf4\xf9\x33\xcf\x21\xe5\x04\xfa\x04\xfb\x5b\x99\x4f\xfa\x28\x34\x8d\x12\xf0\xfc\x59\x8e\x6d\xee\x69\xe8\x3d\x6a\x0a\x48\x21\xc5\x58\x72\xac\x4a\x7f\x6f\x4e\x78\x9d\x9c\x20\x25\x0d\x6c\xea\x9b\x1c\x3c\x90\x10\x2d\x3a\x44\xb6\x15\xbf\x41\x11\x08\x61\x5b\x04\x98\xa1\x67\xee\x11\xf5\x1f\x44\xa4\xc4\xe0\x43\x41\xc1\x32\xaa\x49\x14\xa2\x41\x92\x3a\x1f\x14\x21\xff\xf4\x24\xb5\x6a\xec\x25\xf2\xbd\xb6\xfe\x08\x66\x80\x39\x7c\xf9\x3a\x48\xc5\x79\x49\x7b\xcd\xaf\xed\x96\xe9\x8f\x01\x11\x5e\x92\x89\x3f\x7c\xbc\x83\x68\x38\xad\x90\xa9\x84\x2a\x88\xe7\xbc\xb3\xe8\x3d\xc9\xc1\xe1\x50\xb7\xe3\xee\x07\xb6\xb7\xb0\xd2\xe9\x29\xdb\x29\xb5\xa1\x73\xeb\x21\x39\x99\x54\xa0\x65\xd4\x41\xbe\x78\xc6\x75\xa7\x84\xcd\xb1\x80\x95\xd4\x18\x0e\xde\x8d\x54\xa6\x11\xa1\xb6\x25\x56\xab\x8a\x32\x9b\x53\x93\xd0\x46\x18\x5e\xc5\xdb\x20\xc3\xeb\xdc\xb9\x35\x8a\x53\x72\xae\x0c\xf7\xf4\x65\x52\x44\x74\x65\x82\x23\xb7\x38\x72\xe9\x16\x9f\x39\x41\x47\x0a\x3c\x1f\xb9\xfb\x9f\xac\x7c\xb7\x68\x5f\xb5\xe7\xb8\x3c\x5b\x62\xa0\x73\x55\x9b\xf7\xda\x3b\x1d\x0b\xbb\x6b\x8f\xa1\x89\xc7\x4a\xfe\xf2\x2b\x18\xf5\x83\xf3\xb4\x00\x71\xcb\xcd\x5a\x36\x06\x8a\x35\xba\xa8\x16\x50\x13\x14\x41\x54\x17\x6d\xad\xed\xd5\x4f\x20\x8e\x1b\x82\xd3\x7c\x09\x5a\xd6\x68\xd6\xd4\x7f\x25\x51\xc3\x56\x49\xb1\x8a\x75\xb6\x67\xaf\x5f\x75\xaf\x90\x7c\xe1\xbb\x91\x85\xac\x60\xcd\x2a\xa3\x67\xb6\x6a\x0d\x91\xa6\x66\x4b\xe6\x5c\x35\x0b\xf9\x21\xc9\x06\x85\x4c\x27\x59\x46\x16\xd6\x8e\x5c\x30\xfd\x8b\x75\x0b\x5d\x2c\x7d\x4a\x8a\x74\x95\x79\x5b\x99\x29\x7d\x69\x93\x6a\xc7\xdb\xd7\x1b\xa6\x2c\xa2\x60\xc5\x3a\x70\xaf\xad\xac\xf3\xe4\x47\x7b\x77\xe8\x54\x63\x4b\xa6\xab\x5d\xac\x7d\xa3\x0d\xea\x99\x53\xfb\x5d\xaa\xd2\xa7\x89\xfd\xfa\x11\x7b\xb2\xf4\x73\xec\x3f\x32\xd4\x42\x42\xdc\xcf\x60\x8c\xd1\x77\x55\x67\x5d\x24\x3f\x24\x12\x12\x02\xb1\xe4\xcb\x25\x2a\x5f\xd0\xe3\x26\x2c\x05\x7a\x50\xe5\x94\x81\x84\xdf\x03\x0d\x6a\x37\x1e\xcd\xb1\x1d\x80\x7c\x6d\x40\x8a\x3f\x9a\x67\x56\x90\x27\x84\x3c\x06\x18\xbd\x59\xbc\x61\xca\x67\xdb\x1d\x06\x32\x18\x76\xc0\x54\xdb\xc9\x04\x12\x5f\x26\xf4\xb4\x4d\x67\x79\x5b\xb4\x94\x4a\xea\x93\x8a\xed\xb3\x31\x8e\x7a\x40\x84\x06\x06\x39\x55\xe9\x8c\xd0\xed\x26\x6e\xe4\x1e\x11\x93\x23\xd3\xb3\xca\x80\x96\x54\xce\xeb\xf5\x03\x77\x54\xc9\xf0\xcc\x1e\x15\xd7\x0b\x7a\x41\xbf\x7c\xc0\x48\x24\x0d\xbd\xb0\x16\xc4\x75\x6a\x1b\xe9\x91\x76\x85\x96\x56\x17\xa1\x08\xef\xf6\x02\xbc\xf6\xaa\x67\xa3\xe4\x46\x52\xe4\xea\x66\xac\x37\x1c\xb7\xee\x7e\x78\xe4\xf2\xe9\x0f\x18\xc0\x5b\xbf\x01\x7a\xb3\xbe\x0b\xbd\x04\x90\xea\x0e\x99\xbb\xd7\x97\x29\xd8\x0e\xb7\xed\x66\x8d\x5c\x65\x21\x7c\x2b\xcf\x55\xfa\x73\xed\x6f\x32\x7a\xa5\x23\xbe\x98\x7f\x6b\x6b\x5d\xd3\x8a\xc6\x1e\x38\x1d\xd7\x50\x28\x9d\x18\x51\xcf\x4f\xe3\xfa\xc9\x00\xf7\xbe\x32\x5e\x59\x18\x2e\x7c\x0d\x5f\xf2\xd2\x53\xa6\xae\xb5\xed\x14\xeb\xaf\x7b\x6f\x50\x2c\x76\xb6\xbf\xbb\xc4\x8a\xd7\x56\xc3\x05\xae\xd0\xfc\x4e\x03\xbc\x4c\x61\xe0\x64\x9a\x54\xab\x0e\x57\x65\xc9\xb1\x21\x78\x1c\x33\xef\x76\x8d\x66\x8d\x9e\x31\x6d\xed\xea\xc9\x80\x65\x53\xb5\xef\xee\xb8\xc2\xfc\x91\x1a\x58\x02\x59\xdd\x12\x9c\x76\x0d\x83\x9b\xca\xbb\xfd\xd7\xa7\xb1\x3a\xa5\x98\xed\xb2\xee\xf2\xe4\x6c\x94\x1d\x46\xea\x17\x70\x18\x37\x3b\x60\xa5\xfb\xa9\xcb\x48\x7c\xce\x39\x85\x0d\xbf\xa1\xea\x3b\xab\x9d\x61\x6d\xfa\xc5\xb2\x53\x5d\x2b\x9e\xa4\xc5\xb5\x52\x25\x3e\xdf\x12\x03\xce\x58\xb6\xe2\x37\xeb\x26\xa4\x88\xe1\x15\xf8\x40\xd1\xf1\xbd\x8c\xef\xaf\xee\xec\xa1\xf8\x02\x0e\xc7\x63\xf4\xc8\xb9\x90\x35\x49\xd2\x2d\x04\xab\xae\x61\xee\x32\x66\xda\x2b\x67\xca\xce\x3b\x77\xf9\x77\x1a\x6d\xc2\xdc\xb9\x74\xce\xda\x62\x78\x1f\x1e\xd3\xe6\x91\xfd\x3a\xa2\xe9\xfd\x6b\xdc\x0d\x76\x6e\x98\xeb\x20\x16\x8d\x15\x3a\x67\x27\x39\x7c\xd5\xac\x53\x54\x3c\x32\xcf\x7c\xa2\x39\xba\x31\x04\x33\xfc\xa6\x43\x8a\x86\x57\x11\x12\x67\xb3\xa0\x30\xa2\x6e\xfc\x5c\xa0\x85\x5f\xb6\x24\x44\x0a\xcd\x4b\x7b\x94\x86\x4c\x00\x3e\x98\xf9\xb2\x92\x52\x4d\x26\xe2\xd9\xd1\xf4\xe0\x2f\xd3\x8f\x09\x85\xcc\x75\xcb\xc9\xb7\xbb\x86\xc6\x7b\xf3\xf6\xcd\xb3\x8b\x37\xa7\xbf\xfc\x7a\x79\xf1\xdb\x39\x54\x72\x8b\x0a\x16\xb2\x11\xf6\xe5\x84\xb5\x14\xa8\x3b\x2c\x90\x8e\x25\x90\x3f\xfb\xe3\x9a\xf2\x14\xfb\x1a\x5d\x41\xf3\x9b\xf5\x0a\x12\x32\x22\x1c\x75\x79\xfe\x5f\xa7\xe7\xe7\x67\x6e\x1b\x47\x3d\xd8\xaa\xfb\x38\x46\xc4\xda\x9f\x19\xad\xf2\xb8\xfd\xe1\x77\x74\x27\xc8\xd1\xa1\x9d\x80\x3b\x32\x26\x62\x7e\x74\x38\xed\x10\xe7\x3d\xd1\xf6\x3d\x45\xaf\xa6\xa3\x43\xa7\x26\x98\x98\xf9\x8f\x9d\x5e\x2a\xd2\xab\x27\x57\xf0\xcb\xf9\xc9\xe5\x15\xfc\x35\x2c\xa5\xfb\xb2\x69\x77\xf5\xf9\x10\x64\x8d\x3d\x60\xb1\xa7\xa1\x12\x7c\xe8\x52\xee\xf7\x89\xab\x5d\xb9\xad\x90\xc4\x2d\x60\x3c\xfe\xb2\xe5\x77\x76\xb2\x68\x9a\x09\xab\xb6\x94\x53\xaf\x2c\x29\xa8\x5c\xca\x20\x55\xaf\x30\xc5\xf9\xf9\x80\x42\x9f\x0e\x2d\xfc\x1d\x5d\xb4\xad\x23\x68\xc5\xb5\xa3\x44\xb9\xad\x52\x66\xfe\x45\xa2\x81\xc5\xcd\x0f\x47\xf7\xb1\x79\xe6\x68\x5f\x8d\x5c\x5c\xe4\x4c\x4e\x29\x4d\x9c\x8d\x3f\x60\x6e\xf1\x9a\x4e\xd6\x13\x42\x1e\x19\xda\xec\xc0\xd6\x5f\x44\x46\x7a\x70\x90\xd9\x56\xef\xa9\x51\x1c\xa7\x43\x50\x47\x1e\xdc\xe6\xeb\x03\x3e\x58\x77\xd8\xf6\x79\x70\xd4\x44\xf0\x53\x7f\x0b\x73\xb7\xef\x4e\x7b\x97\x0a\x74\x4c\x76\xc4\xbf\x48\xf4\x32\x3c\xf3\x3a\x3a\x4b\xfb\x8d\x1d\x81\xc3\xe4\xa5\xd3\xe3\x1e\xfb\x27\x6a\x76\xdf\xb9\xab\x0b\x29\xc1\x71\x90\x5b\xc0\x28\x78\x05\x13\x8d\x35\x13\xc6\xbd\x0c\x7d\x0c\x87\x53\xda\x19\xee\xa6\x06\x8e\xf6\x3b\x21\x8a\xd2\xc0\xee\x30\x5c\x3b\xe2\xc6\x48\x20\xaf\x5e\xf2\xc2\x15\xf1\x72\x51\x28\x64\x3a\x32\x78\xdd\x7f\x71\xc0\xbf\xa2\xec\xca\xc3\x8c\x8c\x3e\x4f\xda\xb7\xa5\x52\x76\xeb\x3c\x73\x5b\x27\x46\xe8\xf7\x4c\x94\xb2\x86\x97\xc8\x0a\x29\xe0\x54\xd6\x16\x6f\xa1\x7f\x5b\x59\xc3\x64\x81\x3b\xe9\xe9\xb5\x05\xa3\x8d\xc2\x05\xaf\x9b\xba\x7d\x27\xba\x1d\xc8\x5f\xdc\x7a\xb6\xdd\xd2\x47\xd3\xf1\xdd\x91\x75\xba\xf6\x12\x2f\xb1\x78\xde\x75\xc3\x6d\x4c\x21\x37\xbb\x87\x5d\x65\xf5\xcf\xef\x56\xf4\x68\xa6\x17\x5f\x3e\x8b\xef\xc0\xdb\xd4\x4f\xec\x2c\x43\x92\xfe\x6c\xb3\x04\xa3\xb8\xe5\x80\x6a\xe9\xb8\x06\x01\xf6\xa2\x40\xdb\x78\x3d\x80\x20\xe9\x58\xfe\x6a\x54\x48\xe3\x0a\x7a\x60\xc2\x45\x08\xbe\xd3\xa1\x2e\xbb\xc4\xd7\x38\x8e\x7d\x64\x75\x96\x70\x6d\x5f\x12\xf8\x77\x0f\x86\x65\xd9\xa9\x7a\xb5\x14\xc8\x38\xec\xc9\xe0\xdf\xd1\xc6\xae\x66\x83\xfb\x22\x8d\x17\x9d\xb0\x34\x0c\x7e\x99\x38\x60\x6b\xd4\x48\x53\x6f\x78\xe5\x13\xa6\x7e\x69\x7a\xba\x88\xfb\x14\x19\x42\xe4\x58\xfc\x4d\xed\x78\x51\x5e\x18\x3a\x77\xa3\x95\x7e\xf2\xa5\x25\x70\x8f\x9a\x3c\x3f\x9b\x76\xa0\x2f\xf1\x5f\x2f\x18\x36\xbc\x23\x81\xf8\x66\xa2\xa7\xc7\x83\xd8\x97\x3b\x52\x6b\x58\xb3\xe5\xca\x19\xe7\x70\xf4\xef\x7f\xd9\xeb\xb6\xeb\xbf\xe5\x05\xf3\xee\x96\xb5\xb5\x08\xfa\xec\xf5\x2b\xdb\xb0\xdb\x37\xff\xde\xd7\xa8\x84\x5c\xe5\x46\x5f\x4e\x7c\x07\x8c\xc4\xb8\x57\x4f\xc7\xa5\x74\xc5\xdc\xc6\x5e\xdf\x96\xc0\x74\xaf\xdd\xee\xd8\x1e\xf7\x6d\xdc\xbb\xd8\xea\xf6\x48\xc8\x9c\x8c\xbc\xb1\x4b\xb5\x6e\xab\xf4\x06\x7c\xd2\xde\x07\x5b\x2b\x4d\xa6\xee\xfe\x3b\x6b\xe0\x80\x50\xbf\xee\xc1\xff\x06\x00\x00\xff\xff\xcc\x5a\x68\xe2\x66\x47\x00\x00" +var _epochsFlowdkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x5c\x6d\x6f\x1b\x39\x92\xfe\xee\x5f\x51\x09\x70\x88\x94\x51\xfc\xb2\x98\x5d\xe0\x8c\x28\x73\x8e\xed\xc9\x19\x99\x4d\x82\xd8\x33\x73\x40\x10\x4c\xa8\xee\x92\xc4\x73\x8b\xd4\x90\x6c\x2b\xba\x6c\xfe\xfb\xa1\xf8\xd2\x64\x77\xb3\x25\x3b\x9b\xbd\x13\xb0\x8b\xb1\xd4\x2c\x92\x55\xc5\xe2\x53\x4f\x55\xe7\xe8\x29\x1c\x3c\x3d\x78\x0a\xf0\x77\x26\xd8\x02\x35\x98\x25\xc2\x5a\xc9\x02\xb5\x06\x39\x87\x05\x0a\x54\xcc\x70\xb1\x00\x06\x0b\x25\xeb\x35\xdc\xe2\x16\x36\xdc\x2c\xdd\xa3\x4c\x19\x5e\xf0\x35\x33\x5c\x0a\x1a\xc0\xaa\xca\xfe\x50\x48\xa1\x51\xe8\x5a\x83\x90\x25\x6a\x9a\x62\x2e\x95\xfd\xa9\x5e\x17\x72\x45\x12\x71\x2d\x8b\xe5\xa1\x9b\xff\xf7\x25\x8a\xee\x20\x60\x0a\x61\xce\x95\x36\xf4\xcb\x9c\xab\x15\x96\x13\x12\xb1\x85\x82\x09\x50\xf8\x67\x8d\xda\x00\x83\x77\x61\x15\xc2\x80\x9c\xfd\x37\x16\x06\xe6\x4a\xae\xc0\x2c\xb9\xa6\xa1\x46\xb1\xc2\xd0\x2c\x37\x4b\xdc\x3e\xa9\x2a\xa8\x35\xba\x1f\xc3\xd3\x52\x01\xde\xa1\xda\x82\xae\x67\x9a\xe4\x0a\xe3\x96\x07\x66\xc9\x8c\x9b\x93\x56\xc3\x40\x1b\x76\x8b\x65\x67\xa9\x7e\x13\x67\xf6\x49\x98\xe1\x82\x0b\x41\x3b\x94\x73\x40\x56\x2c\xe1\x92\x44\x5d\xa3\xa9\xd7\xb0\x5e\x32\x8d\x76\x17\xc0\xca\x15\x17\xc0\x05\x37\x9c\x55\xfc\x7f\xac\xf6\x93\x05\x5b\x2d\x93\x58\x7a\xb6\xe2\xda\x90\xb8\xae\x8a\x06\x94\x0a\x97\x34\x6d\xfb\x61\x12\x45\x7a\x5b\x4b\x52\x9a\x86\x15\x13\x5b\x58\xa1\xd6\xd6\xf0\x4c\xbb\x5d\x6e\x48\x89\x46\x5a\xa1\x17\xaf\x5f\xc1\xe3\xcd\x92\x1b\x9c\x49\xa6\xca\xc7\xd1\xee\x9f\x12\x95\x1f\x92\xc0\xbf\x3b\x39\xa3\xf1\x27\x58\xa1\x59\xca\x72\x42\xd3\xcd\x6a\xe3\x14\x40\xf3\xdb\xc9\xa5\xa8\xac\x92\x57\x9c\x0c\x37\xe7\x82\x55\xee\x4f\xad\xad\x07\x89\x02\x61\x8d\xca\x2b\xff\x8e\xb3\xfe\x74\x1a\x45\xf9\x33\x0d\xbc\x6e\xc6\x8d\xc6\x7e\xd6\x43\x9a\x95\xfe\xf7\x96\x04\x31\x78\xf1\xd7\xe3\x7f\x03\xb3\x54\xa8\x97\xb2\x2a\x73\x0a\x5c\xb2\x3b\xf4\x0b\x32\x58\xda\xd9\xf0\x33\x69\x5f\xb3\x15\x82\x46\xab\xf5\x5b\xdc\xea\x49\x30\x05\x69\xc5\x5a\x11\xb8\x06\x83\xc5\x52\xf0\x82\x55\xd5\x96\x76\xc3\xf5\x12\xdd\x22\xce\xc4\x56\x0a\xb7\xe7\x3f\x6b\xf2\x2c\x1a\xaa\x0d\x33\x48\x02\xed\x1f\xcd\xf2\x75\x54\xec\xcf\x95\xdc\x5c\xbc\x7e\x75\xb8\x40\xd3\xd9\xa3\x1e\x8d\x49\xae\x54\xcd\x33\xe5\xed\xe2\x5c\xae\xd6\x15\x1a\x2c\x1b\x0d\x68\x3b\xfb\x79\x67\x97\xb4\x0c\xf2\x2b\x2e\x6a\x24\xeb\x7a\x0b\x38\xfd\x37\x3e\x80\x77\x28\x80\xcd\x0d\x3a\x9f\xa2\x03\xc6\x15\x96\xc0\x56\xb2\x16\xc6\xa9\x6a\x86\x28\x5a\xfa\x92\xf5\x82\x0e\x31\xb8\xf3\x95\xfa\x2f\xd7\xc0\x60\x85\xab\x19\x2a\x1b\x1a\x40\xa3\xe2\x68\xe3\x8a\x33\xaf\x5e\x31\x65\x9a\xe7\x35\x6c\x96\xdc\x7a\xad\x54\x25\x17\xcc\xf8\x70\x44\x82\x93\x90\x64\x14\x13\x9a\x53\xbc\x21\x77\x9f\xa1\xd9\xd0\x8a\xac\x40\x0d\x5c\x58\xed\x1c\x1e\x3c\x3d\x3a\x38\x60\x05\x8d\x19\xb1\xaa\x1a\xc7\x45\x79\xe5\xc1\x97\x83\x03\x00\x80\xa3\x23\x98\xfe\xf3\x9f\x20\x8a\x04\x5f\xfe\x76\xf9\xe6\xe6\xfa\x7b\x0a\xf7\xb2\x8e\xe0\xd2\x2b\x7d\x43\xc1\x32\x46\x10\x14\x6c\x56\x79\x65\x5d\xbc\x7e\x65\x1f\x4f\xf7\x4e\x66\x35\x70\x6d\x98\x32\x17\xaf\x5f\x8d\xc6\xf7\x10\x58\x36\xd2\xbc\x3f\xa0\x20\x3b\xb7\x7c\x36\xba\x83\xc2\x42\xaa\x12\xcb\x81\x99\x2f\x45\x49\xf3\xce\xdb\xfe\x7c\x0a\x1f\xae\x8d\xe2\x62\xf1\xd3\xc7\x9f\x86\x96\xc4\x3a\xc7\x15\x96\x4c\xdb\xf8\x45\x4e\x19\xfc\x36\x8d\x56\x31\x58\x0d\xac\xe5\xa5\x92\xac\x2c\x58\x0c\x58\x24\xf6\xea\xe2\x14\xdc\x5a\x26\xd6\x51\x50\x98\xf0\xc5\xf8\x7b\xba\x49\xdb\xac\x5e\xee\xf9\xdb\x37\x37\xef\xcf\xce\x6f\xe0\xb7\xb3\xf7\x57\x67\x2f\x7f\xb9\xfc\x9e\xbe\xd3\x9e\xb1\x51\xf2\x0d\xdd\x28\x28\x16\x66\x19\xa2\x9b\xbb\xe7\xac\x49\x8d\x84\x59\x1a\x12\x99\xce\x44\xea\x9e\x7a\x2b\x34\xc9\xcf\xaf\x71\xfb\x8b\x95\x7f\x0a\x57\xc2\xc4\x89\xaf\x44\xc9\x0b\x7b\xb2\xf9\xbc\x31\x1a\xd7\xde\x85\x4b\x8a\x6e\x42\x9a\x9e\xf0\x3b\xa6\xa0\xbc\x5d\x5c\xba\xa7\x4e\xe1\xa5\x94\xd5\x80\xd0\x36\x1a\x50\xa8\x65\xad\x0a\xe7\x38\xac\x52\xc8\xca\xad\xf3\xd9\xa2\x62\x7c\x85\x25\xcc\xb6\xc0\x9c\x6f\x5d\x5d\x34\x12\x3d\x7a\x40\xe0\x25\x0a\xc3\xcd\x16\x0c\xcd\x1c\xb1\x44\x78\xf0\x8d\x1b\xa8\x1b\xcd\x59\xb1\xc0\x22\x30\x22\x48\x22\x0a\x6c\x46\xd0\xa5\x60\xa7\xdb\xf0\x06\x88\xa0\xbf\x6c\xd6\x58\xf0\x39\x2f\xe0\xea\x02\x98\x28\xf3\x1b\xa1\x0b\xdf\x82\x2c\xbe\x8a\x42\x3f\x09\x5e\x7d\x22\xe5\xcd\x59\xa5\x11\x56\xc8\x84\x6e\x90\x8b\xb2\x17\x95\x90\x70\x27\x2d\x90\x2b\xd8\x9a\xcd\x78\x45\xbb\x0a\xe8\xa1\xbb\x7f\xa3\xea\xae\x94\xd6\x8e\x12\x11\xa4\xd8\xae\x42\x83\xc8\x96\x1d\x8b\x82\x2e\x11\x67\x4b\xfa\xf1\xdc\x3d\x7f\x0a\x5f\xdc\x49\x73\x56\xfd\x1a\xcd\xfa\xde\x46\x15\x72\xd0\x78\xaa\xe3\x5d\x15\x96\x5e\xd4\x4a\x35\x68\x2d\x71\x70\xae\x69\xd7\x0a\xe9\x06\x67\x39\x5c\x66\xe1\x5e\xbc\xcb\x47\x6d\xe8\x31\x1e\x5c\x7b\x5c\x8c\x0f\x21\xfa\x14\x3e\xf8\xff\xfc\x98\x1c\x31\xc5\x8a\x5b\xed\x7d\xeb\x89\xee\x43\x9d\xdd\x1b\x78\x8d\xdb\xd3\x9e\x59\x7e\x63\x55\x8d\xa7\x70\xed\x40\xc9\xba\x9e\x55\xbc\x70\xa7\xb7\x71\xd8\xec\x39\xb5\x87\xc4\x9d\xb7\x3b\x12\x41\x9a\xb1\x2e\x33\x89\xd6\xb7\x2e\x42\x7e\xb6\xe0\xda\xa0\x0a\xe7\xbe\x03\x21\x87\xa4\x31\x01\xb8\x5a\x1b\x02\xc9\x8a\x6d\x13\xb1\xe4\x1e\x24\x37\x86\x93\x2d\x9a\xb6\x99\x56\x6c\xbd\x26\xa3\xfc\x6b\xcc\xd5\xb9\x75\x5e\x6e\xdf\xf8\x80\xdf\xb8\x5d\x73\x0d\x25\xbe\x77\x46\xdb\xa0\x79\x6b\xc1\xff\xac\xfb\x6a\xf5\x1a\x77\xb9\x4d\x18\x64\xa3\x4f\xcf\xce\x5c\x83\x26\xfb\xda\x83\xb4\x62\xa6\x58\x12\x04\x12\xe8\xbe\x08\x31\xa9\x39\x46\x8d\xa2\xe2\x61\x24\x25\x59\xbd\xba\x98\x41\xea\x2c\x96\x4c\x2c\x10\xac\x80\x6a\x70\xef\x6e\xf1\x5d\x1c\x79\x0a\x1f\x9a\x2d\xf7\x1d\x76\x29\x37\x2e\x33\xc8\x5f\xf5\xb4\x95\x18\x26\x29\x6d\x22\x78\x3f\xa0\xa5\x87\x2d\xec\x9c\x7e\x3f\x85\x2f\x57\xf4\xff\xbf\x5e\x09\xf3\xb7\x1f\xbf\xfe\xdf\xdd\xbe\xe7\x6f\xdf\x5c\xdf\x9c\x7d\x5f\xe4\xd6\x9e\xb1\x99\x92\x09\x69\x53\x06\x58\x33\xb3\x74\x91\xcc\xe1\x2e\x0a\xfa\xeb\x4c\xd0\xd7\xd9\xdb\xf6\x8c\xc6\x5c\x1b\xa9\xd8\x02\xdf\x31\xba\x6a\x93\x3f\xb2\x23\x92\x0b\xe5\x5b\xc7\xbd\xb3\x41\xc7\x0d\x8b\xff\x1d\xbd\xe8\xda\xa8\xba\xb0\x09\xa4\xc2\x35\x1d\x67\x41\x79\x9e\xe6\x62\x51\x61\x26\x8e\xf7\xa6\xd3\x6e\xbc\x8f\xa7\x01\xa5\xa7\xb8\xe5\xea\x22\x24\x50\xee\x1a\x5d\xca\x4e\xfa\x96\x8a\xce\xed\xa6\x8d\xf8\xfa\x13\x78\x04\x18\x66\xe9\x8a\xa3\xc7\x7e\x47\x58\xb1\x5b\x5a\x01\x30\xad\xeb\xd5\xda\xd8\x63\x42\x86\xd4\x1a\x95\xfb\x8b\xcd\x64\x6d\x02\x19\xb2\x4b\x62\x77\x81\x1d\x08\x1a\x57\xc8\x05\x37\x7b\x01\x2b\x7c\x69\x9e\xa7\x8f\xc6\x6a\x7e\xe8\xc6\xc0\xd4\xef\xbd\xff\x40\x58\xe1\x34\x88\x6b\x1e\xf9\x7a\xe0\xfe\xbf\x85\x1d\xb3\xc8\x84\xeb\x40\x17\x61\x19\x43\x43\x07\xc0\x87\x4c\x63\xdb\xdc\x34\x87\x11\xfa\xd3\xf3\x51\x9c\xd0\x86\x09\x2f\x57\xca\xb2\x41\x3e\xf3\xda\xd4\x0a\x61\x2d\x69\x9d\x9c\x55\x3e\xf7\x9b\x58\xb6\x81\x22\x64\x82\xb5\x2a\x42\x7b\x74\x4d\xf1\x32\x20\x4e\xbb\x0c\xb9\xa6\x75\x4a\x95\xc0\x97\xc0\x30\xe5\xee\xbd\x08\x94\xf0\xb3\x09\xbc\x55\xd7\x74\xcd\xca\x53\xed\x64\x1c\xd8\xdf\xea\xc1\x1b\x92\x03\xff\x60\x97\xcd\x38\x44\xd7\xfe\x6b\x85\x9d\x6f\xe8\x13\x28\x84\x64\xf2\x2b\xed\x11\x99\x17\x38\x86\xe9\x14\x04\xaf\x4e\x7b\x83\xe9\xf3\xf8\x9c\x09\x7b\x11\x29\x64\x06\x87\x50\xb7\x35\x59\xb3\x61\x9f\x62\xe4\x81\xf8\xe3\xd6\x34\x5f\x1f\xe6\xc3\x61\x3b\x09\xae\xfc\xe0\x1e\xfb\x08\x53\x8b\x66\x13\x7f\x6e\x19\xc4\x03\x99\x21\x87\x2e\x51\x1b\x25\xb7\x58\x4e\xda\xa3\xe8\x90\xd6\x55\x19\x9d\xd0\x39\x5a\xc0\xc0\x6c\xc1\xb8\x68\x46\x78\x21\x30\xea\xda\x26\xb7\xec\x64\xaf\xb4\x76\x0b\xe8\x87\x16\xff\x4e\x6a\x43\xce\xda\x8f\xab\x21\x27\x6e\x25\x2c\x5d\xcf\x9a\xd7\x8e\x0c\x0c\xa9\xf0\x1f\xfb\x62\xc9\x03\x7c\xe9\x7d\x83\x23\x47\xc9\x8e\xc6\xbb\x9d\x49\xa3\x28\x73\x9b\xe1\xf3\x2e\x36\xcd\x82\xe7\xc7\x3d\xe1\x7e\x3f\x87\x3e\xd7\x7d\x01\xc7\xbb\x17\xe0\xa8\xd1\x80\x65\x3b\xba\x4c\x88\xd0\x8e\xaf\xb6\xfe\x3c\x3a\x0a\x87\x22\x89\xf5\xfe\x5e\x6b\x3d\x48\x07\x3b\xfc\x3c\x85\x2e\x1f\x91\x68\x2d\x89\xf1\xfe\x3f\xc6\xbd\x29\x59\xd9\xba\xfc\xc2\x9a\xc3\x9f\x8e\xa1\xc9\x3a\x5f\x3f\x9f\x39\x64\xeb\x35\x8a\x72\xe4\x07\x77\x26\xc3\x15\xdf\x41\xa3\xdc\x77\xd9\x1d\x4f\xbe\x6e\x28\x27\x87\x21\x6f\x71\x0b\x77\x58\x50\x84\x8e\x70\xf2\x10\x5a\x63\xce\x03\x9d\x4c\x07\x8f\x55\x95\xcb\x3d\xbb\xfc\xae\x43\xd9\x0a\x13\xef\x69\x49\x21\xcc\x55\xf4\x25\x35\xe9\x45\xe7\x22\x68\x32\x8e\xc1\x13\x95\xa3\xa7\xff\x48\x76\x91\x24\x1c\xff\x2f\xe7\xab\x9f\xa0\x7c\xeb\xe9\x7a\x94\xc6\xaf\xff\x64\xfa\x3a\xc0\xb0\x87\x2c\x69\xb0\x14\x60\x36\xbc\xc0\xfe\xa4\x89\x3b\xf8\x53\x3d\x9d\xa6\xac\x79\xc3\x7c\xbb\x3c\x4f\x8f\xc6\xe1\xb9\x1f\xe0\x64\x60\x2d\xd1\x52\xb0\xaa\xb5\xa7\xc1\x44\x1d\x88\x6b\xac\x70\x85\xc2\x68\xc0\x3f\x6b\x56\x85\xa3\x15\x7f\x77\x8e\x96\x94\xc2\x28\x99\x15\xb1\x56\x50\xd5\x1a\x4e\xf6\xc5\x0c\x6e\x2c\x72\x02\xb3\x54\x96\x69\xb5\xe0\x89\x8e\x81\x97\xe4\x4e\x43\xef\xd8\x8b\xd2\x21\x51\x4d\x90\x88\xd0\x91\x43\x15\x2b\xeb\xf2\xee\x06\x50\x0a\x0b\xe3\xe9\xbe\xd6\x78\x32\xb3\x9f\x21\xd1\x7b\xdf\x01\x8f\x8e\x08\x07\x38\xa2\xc1\x15\xc1\x1c\xa0\xea\x24\x7a\xe9\x87\xcf\x6d\x78\xbb\xc5\xad\xe5\x2c\x60\x6a\x27\xea\x8b\xf6\xe2\xaf\x28\x73\xa6\x27\xbc\xa9\xb8\x06\x2e\xfc\xca\x27\xc0\x8d\xa7\x18\xb8\xd8\x3b\xb1\x9f\x3c\x4c\x1c\x6c\xff\x28\xfa\x48\x86\xa4\x1c\x58\x18\x7d\xd6\x4c\xf0\x62\x94\x7a\x48\x7b\x99\x16\x03\xb9\x85\x3e\x7a\x3c\xce\x8a\xf9\xda\xfb\xf6\xeb\x2e\x5f\xc8\x90\x16\x57\xa2\xc4\xcf\x30\x85\xe3\xbd\x5e\x13\xca\xaf\xf8\x99\x6b\xeb\x87\x3e\x33\x4f\x92\xf9\xae\x08\x8b\x80\xb8\x4e\x71\xe8\x13\x9d\x3a\x44\xca\x59\x78\xcc\xda\x88\x97\x02\xf5\x24\x7b\x17\x05\xfc\x51\x0b\x83\xca\x47\x14\x66\x86\x4c\x77\x74\x04\x6f\xcd\x12\xd5\x86\xdb\xe2\xa8\x62\xc5\xad\xc7\xdb\x9b\x74\x29\xe4\xee\x1a\x0d\x70\xa3\x1b\xd1\x46\xc2\x49\x4b\xd6\x66\xc9\x2b\xcc\xab\xf0\x79\x74\x83\x3c\x37\x12\xfc\x25\x7b\x08\xae\xe8\xa8\x37\xea\xd8\xa0\x22\x80\x5b\x8b\x72\xe2\x6f\x5f\xde\x52\x9b\x4d\x23\x68\xfd\xde\x04\x52\x60\x4e\x28\x6d\xc9\x5e\xa9\x04\x3b\xee\xd2\xcc\x2b\x7c\xf8\x7c\xc0\x1f\xbe\x7d\x33\x90\x5c\x2b\xc3\x5c\xcc\x87\xdc\xb4\x04\x4a\x4f\x1e\x2e\xb0\x01\x15\x51\x43\xf9\xd3\x32\x53\xc8\x6e\x33\x27\xa6\xf7\x15\xc5\x97\xe0\x87\xc9\xf1\xdc\xa7\x94\xfc\xa6\xfa\xe2\x63\x6e\x90\x12\x61\x14\xfe\xec\x2d\x30\xc9\x0d\xa8\xd7\x65\xc0\x7d\x6d\xc7\xef\x78\x46\x30\xb9\x3d\x4a\x43\x36\xef\xc7\x2b\x7d\x49\x33\x8f\xfa\x9b\x9e\x24\xd2\xbb\x98\xe2\x3b\x98\xfb\x5b\x87\x3e\x82\x1f\x60\x74\x42\x07\xc1\xb1\x79\xff\xa4\xc1\xdb\x0a\xe6\xf6\x0c\x78\x35\xf7\x9e\x1d\x08\xa0\xd9\xaf\x7f\xe8\xf8\x73\x67\xea\xb0\xfb\x01\x22\xb9\x9b\xb0\x65\x02\x5c\x8f\x42\xb9\xa2\x35\xcf\x59\xe1\x39\x60\x0b\x3d\x09\x22\x33\x2e\xb4\xa7\x26\xac\xb7\x35\xd8\x95\x62\x73\x64\x35\xe6\xbe\x3a\xbf\xa8\x2b\xa6\x80\xd5\x46\xae\x1c\xe7\x52\x8b\x22\xd4\xc5\x43\xa0\xb6\x75\x76\x5f\x3d\x4f\x29\x1c\x8d\xee\x2a\xb7\xe0\x35\x56\x6d\x3e\xd1\x6e\x6d\xb7\xca\xa7\x58\x32\x6f\x2e\x97\xa4\xee\x33\xcc\x7e\xf0\x66\x73\x56\xce\xdb\xb8\x9d\x2f\x83\x98\xd9\x25\x4c\x49\x12\xde\x25\x35\x4e\xe1\x3f\xde\xed\xe1\x49\x2c\xf6\x0e\x35\x6e\x37\x5c\x37\x58\xfb\xe3\x78\x70\x0c\xba\xea\xf4\xf0\x03\x73\xa9\x0a\xbc\x4c\x9f\xea\xb0\x61\x96\x88\x8d\x0a\x58\x2b\x79\xc7\x4b\x5f\x8f\x0f\x65\x32\x5b\x54\x5d\x78\x8e\x97\x60\xb8\x2f\xc6\x59\x86\x44\x24\x29\x45\x56\xa7\x76\x86\xd3\x8c\x42\x3b\x49\x94\x71\x93\x4a\xcb\x47\x12\x9c\x66\x73\x87\x41\x75\x6d\xc5\xc6\x56\x98\xee\x40\x3b\x2e\x36\xca\x18\x69\x21\x1f\x9f\x3b\xf0\x25\x9e\x18\x10\x88\x65\x92\x3b\xf5\xd3\x1e\x73\xcd\xe6\x78\xed\x26\xba\x09\x92\x46\x02\x37\xcd\x1f\xef\x50\x15\x28\x0c\x5b\xe0\x29\xfc\xfa\x33\xff\xfc\xb7\x1f\x7f\xba\x5f\x0a\xf4\x28\x69\x79\x69\x8a\xc0\x31\xab\x71\xab\x2f\x6f\x17\xfd\x7d\x7a\x34\xd0\x2f\x35\xf7\x33\x8b\xfc\x4a\x3d\x0b\x06\xff\xf8\xc7\xd0\x13\x8f\xe0\x39\x9c\x1c\x1e\x9f\xc2\xe3\x9b\x96\x0e\xd7\x51\x86\xcd\x2a\x66\x74\x36\xe0\xc3\xf1\xe4\x64\xbc\x33\x19\x08\x7b\xf5\x15\x93\xc3\x4a\xb2\xf2\xb9\x53\xd7\x8b\xd1\x5c\xc9\xd5\x29\x1c\x69\xc7\xd8\x1f\xcd\xdd\xb3\xa4\xf9\x66\x65\x7d\x72\x80\x80\x4b\x7e\x73\x84\x60\x79\x35\x81\x8d\xc5\x74\x06\x96\xa8\xf0\x10\xae\x39\x65\xbf\x1b\x04\x9a\x9a\x02\x8b\x92\xab\xae\x4c\xbf\x02\x32\xd8\x1d\x97\xb5\xae\x6c\xd5\xcf\xd5\xf0\xea\xca\xd8\x56\x9c\x9d\xcb\x84\x19\xda\x7e\xb5\xd5\xda\x47\x93\xf0\xf1\xb9\x43\xa2\xbe\xe9\xd0\xf2\x87\x93\xe5\xa0\x3c\xcd\xee\xb0\x51\x5e\x14\x39\x01\x23\xf7\xaa\xb1\x6d\xa3\x8c\xb5\x2c\x0b\x61\x43\x57\xc0\x7a\x3b\x58\xd0\x4c\x25\x35\x77\x8e\x1e\x18\x0a\x3b\x2a\xb0\x8a\x4b\x7e\x7d\xfe\xcc\x73\x51\x39\x81\x3e\x41\xff\x56\x26\x95\x3e\x0a\x4d\xad\x04\x3c\x7f\x96\x63\xb1\x3b\x9a\x7a\x8f\x9a\x02\x54\x48\x51\xe6\x1c\xab\xd2\xd7\xf1\x09\xef\x93\x33\xa4\xa4\x83\x4d\x9d\x93\x8b\x0b\x12\xc2\x46\x87\x48\xb7\xe0\x77\x28\x02\xc1\x6c\x9b\x18\x33\x34\xcf\x03\x6e\x89\x07\x11\x32\x31\x18\x51\x90\xb0\x4c\x6d\x12\x95\x68\x92\xa4\x2f\x09\x45\xc8\x63\x3d\xf9\xad\x6a\x5b\xdc\xbe\x57\x28\x18\xc0\x1e\x30\x85\x2f\x5f\x7b\x29\x3d\x2f\xe9\xec\xf9\xbd\xed\x58\xfe\x10\xa0\xe1\x25\x99\xfa\xc3\xc7\x3d\x84\xc5\x79\x85\x4c\x25\x94\x43\xc4\x0b\xce\xb2\xf7\x24\x1b\xfb\x53\xed\xc6\xef\x0f\x7c\xde\xc2\x53\xa7\xa7\xec\xa0\xd4\x86\xce\xbd\xfb\x64\x67\xd2\x39\x97\x51\x07\xf9\xe4\x05\xd7\xad\x16\x3c\xc7\x2a\x56\x52\x63\xb8\x90\xd7\x52\x99\x5a\x84\x9e\x9b\xd8\x75\x2b\xca\x6c\x6e\x4e\x42\x6b\x61\x78\x15\xab\x4e\x86\xaf\x72\xf7\xd8\x5e\x5c\x93\x73\x69\xb8\xa7\x4f\x93\x42\xa2\x4b\x13\x6c\xd9\xe1\xd0\xa5\x53\x42\xe6\x66\x1d\x68\x58\x7d\xe4\xea\x4b\x59\xf9\x6e\xf3\xbe\xeb\xd0\x71\x83\xb6\x05\x42\xe7\xba\x50\xef\x75\x86\x5a\x96\x76\x65\x95\xbe\xa9\x87\x5a\x15\xf3\x3b\x18\xf4\x87\xcb\xb4\x81\x72\xc3\xcd\x52\xd6\x06\x8a\x25\xba\x28\x17\x50\x15\x14\x41\x54\x1b\x8d\x2d\x6d\x69\x29\x10\xd2\x35\xc1\x73\x3e\x07\x2d\x57\x68\x96\x34\x7e\x21\x51\xc3\x46\x49\xb1\x88\x7d\xc3\x17\xaf\x5f\xb5\x4b\x54\xbe\x91\xdf\xc8\x42\x56\xb0\x64\x95\xd1\x13\xdb\x5d\x87\x48\x4b\xb3\x2d\x7e\xae\xdb\x86\xfc\x91\x64\x83\x42\xa6\x93\xac\x65\x27\x0c\x1e\x28\x64\xfd\x8b\x75\x0c\x6d\xec\x7d\x4e\x0a\x75\x9d\x84\x1b\x99\x69\xd1\x69\x92\x75\x57\x17\x58\xad\x99\xb2\x88\x83\x15\xcb\xc0\xe9\x36\xb2\x2e\x93\x2f\x6d\x8d\xd2\xa9\xc8\xb6\x82\x57\xdb\xd8\xa3\x47\x07\xd6\x33\xb2\xf6\x6f\xa9\x4a\x9f\x7e\x76\xfb\x5c\xec\x4d\xd3\xcd\xdd\xff\xc8\x50\x16\x49\x41\x60\x02\x43\x95\x02\xd7\x1d\xd7\x46\xfc\x7d\x82\x22\x21\x26\x4b\x3e\x9f\xa3\xf2\x8d\x47\x6e\xc1\x52\xa0\x07\x5d\x4e\x19\x48\x38\x3f\xd0\xab\xf6\x00\xd2\x1a\x9b\x09\xc8\xe7\x7a\x64\xfb\xa3\x69\x66\x07\x79\xa2\xc9\x63\x83\xc1\x0a\xe6\x1d\x53\x3e\x8b\x6f\x31\x9b\xc1\xb0\x3d\x06\xdc\x2e\x26\x14\x07\x64\x42\x7b\xdb\x34\x99\x37\xcd\x55\xa9\xa4\x2e\x59\xd9\xfc\x36\xc4\x7d\xf7\x08\xd6\xc0\x4c\xa7\x2a\x9d\x10\xfa\x5d\xc7\x03\xdd\x21\x78\x72\x24\x7d\x56\x19\xd0\x90\xd5\x79\xbd\x7e\xe0\x8e\x82\xe9\xdf\xe1\x83\xe2\x3a\xc1\x2f\xe8\x97\xf7\x98\x8e\xe4\x41\x2f\xac\x01\x77\xad\x1e\x4c\xfa\x49\xbb\x86\x50\xab\x8b\xd0\x2c\xb8\xbb\x51\xb0\x29\x21\xad\x95\x5c\x4b\x8a\x60\xf9\x0c\xf7\x8e\xe3\xc6\xd5\xa1\x07\x8a\x5b\x7f\x40\x0f\xfe\xfa\x83\xd0\x59\xfd\x3e\x54\x13\x40\xac\xbb\x74\xf6\xef\x33\xd3\x78\x1e\xaa\xfb\x66\x89\x5c\x65\xa1\x7e\x23\xcf\xbd\xc9\xc0\xb5\xaf\x94\x74\x5a\x57\xfc\xcb\x0a\x1b\xdb\x9b\x9b\x76\x60\x76\xc0\xeb\x7e\x4d\x85\x96\x8d\x01\x35\xfd\x34\xac\xa7\x0c\xc0\xef\x2a\xe5\x95\x85\xeb\xc2\xf7\x1e\x26\x2f\x77\x65\xfa\x71\x9b\x41\xb1\x8f\xbc\xf3\xa6\xc8\x6c\x6b\xc7\xbb\x62\x59\x2c\x8f\x0d\x6f\x74\x81\xe6\x77\x9a\xe8\x65\x0a\x17\x47\xe3\xa4\xdb\xb6\xbf\x3b\x4b\xc6\xf5\x41\xe6\x90\xb9\x37\x4b\x34\x4b\xf4\x0c\x6d\x63\x67\x4f\x22\xcc\xeb\xaa\x79\x57\xc9\xbd\x70\x30\xd0\xc3\x4b\x60\x2c\xdf\x12\xd4\xec\xa5\x57\x21\xdd\xef\xd7\x3e\x0d\xd6\x29\xb5\x6d\xb7\xb7\xcf\xc3\xb3\x51\xb8\x1f\xc9\x5f\xc0\x71\x0c\x06\x80\x95\xee\xa6\x3a\x03\xf1\x3b\xe7\x24\x36\x3c\x87\xee\xf5\xac\x96\xfa\x3d\xf6\x57\xf3\x56\x97\xb0\x78\x92\x36\x09\x4b\x95\x9c\x85\x86\x58\x70\x46\xb3\x9d\xcb\x3b\xdd\x86\x14\xd2\x2f\xc1\xf7\x14\x1e\xdf\x3f\xf9\xfe\x6a\xcf\x5e\x9e\x2f\xe0\x78\x38\x96\x0f\xdc\x1f\x59\xd3\x24\xc3\x42\x30\x6b\x1b\x68\x9f\x51\xd3\x51\x39\x93\xb6\xde\x39\xcc\xbf\xd3\x69\x13\xee\x56\xd1\x7b\xa7\x4d\xfa\x75\xf9\x98\x76\x0f\x9c\xe3\x01\x8d\x1f\xde\xe2\xb6\x77\xa2\xc3\x9a\x7b\xb1\x6a\xa8\x81\x7b\xe7\x62\xfb\xaf\xde\xb5\x9a\xa6\x07\xd6\x9b\x4f\x58\x07\x0f\x8c\x60\x86\xdf\xb5\x48\xd7\xf0\xaa\x45\xe2\x7c\x16\x4c\x46\xd4\x8e\x9f\x0b\xb4\xb0\xcd\xb6\xaa\x48\xa1\x79\x69\xaf\xe0\x90\x49\xc0\x07\x33\x9d\x57\x52\xaa\xd1\x48\x3c\x3b\x19\x1f\xfd\x65\xfc\x31\xa1\xaa\xb9\x6e\x6a\x04\xcd\x69\xa2\xf9\xde\xbc\x7d\xf3\xec\xea\xcd\xf9\x2f\xbf\x5e\x5f\xfd\x76\x09\x95\xdc\xa0\x82\x99\xac\x85\x7d\xf9\x62\x29\x05\xea\x16\xab\xa4\x63\xcb\xe6\xcf\xfe\x9a\xa7\x3c\xc7\xbe\x56\x58\xd0\xfa\x26\x9d\x06\x89\x8c\x08\x47\x89\x5e\xfe\xd7\xf9\xe5\xe5\x85\x3b\xde\x51\x0f\xf6\xad\x82\x38\x47\xc4\xe8\x9f\x19\xed\xf2\xb4\xf9\xe2\x77\x74\x37\xcd\xc9\xb1\x5d\x80\xbb\x5a\x46\x62\x7a\x72\x3c\x6e\x11\xf4\x1d\xd1\xf6\xbd\x4d\xaf\xa6\x93\x63\xa7\x26\x18\x99\xe9\x8f\xad\x51\x2a\xd2\xb6\x67\x37\xf0\xcb\xe5\xd9\xf5\x0d\xfc\x35\x6c\xa5\xfd\xf2\x6d\x7b\xf7\xbb\x43\x93\x35\x7a\x8f\x25\x1f\x87\x8e\xf7\xbe\x6b\xb9\xef\x47\xae\xa7\x66\x57\x83\x8b\xdb\xc8\x70\x7c\x66\xf3\xef\xec\x6c\xd1\x44\x23\x56\x6d\x28\x37\x5f\x58\xb2\x51\xb9\x94\x43\xaa\x4e\xc3\x8c\xf3\xf7\x1e\x45\x3f\xee\x5b\xfa\x3b\xba\x6a\xd3\xdf\xd0\x88\x6b\x66\x89\x72\x1b\xa5\x4c\xfc\x0b\x53\x3d\xcb\x9b\x1f\x4e\xee\x63\xfb\x1d\x10\x60\x31\x50\x20\xc9\x99\x9e\x52\xa3\xb8\x2a\x7f\x01\xed\xf0\x9e\x56\xf6\x14\x42\x21\x19\xdc\x6c\xc1\xf6\x87\x44\xe6\xbb\x77\xd1\xd9\xa7\xde\xd3\x43\x71\x9e\x16\x11\x1e\xf9\x76\x9b\xf7\xf7\xf8\x66\xdd\x62\xf5\xa7\xc1\x61\x13\xc1\x4f\x7d\xb5\x67\xbf\x0f\x8f\x3b\xc5\x0b\xba\x46\x5b\xe2\x5f\x24\x7a\xe9\xdf\x89\x2d\x9d\xa5\xe3\x86\xae\xc8\x7e\x12\xd4\x1a\x71\x8f\x73\x14\x35\x7b\xe8\xdc\xd6\x85\x98\xe0\x40\xc8\x2d\xc0\x14\xbc\x82\x91\xc6\x15\x13\xc6\xbd\x2c\x7e\x0a\xc7\x63\x3a\x21\xae\x22\x04\x27\x87\xad\x90\x45\xe9\x64\x7b\x1a\xae\x1d\x11\x64\x24\x90\x77\xcf\x79\xe1\x9a\x8e\xb9\x28\x14\x32\x1d\x99\xc1\xf6\xbf\xc8\xe0\x5f\xe1\x76\xed\x6b\x46\x46\xdf\x27\xed\xdb\x56\x2e\x7b\x84\x9e\xb9\x23\x14\x23\xf6\x7b\x26\x4a\xb9\x82\x97\xc8\x0a\x29\xe0\x5c\xae\x2c\x2e\x43\xff\x36\xb7\x86\xd1\x0c\xb7\xd2\xd3\x75\x33\x46\x07\x86\x0b\xbe\xaa\x57\xcd\x3b\xe3\xcd\x44\xbe\xb0\xec\xd9\x7c\x4b\x47\x8d\xf7\x9f\x92\xac\xf3\x35\x45\xc3\xc4\xf2\x79\x17\x0e\xd5\x9f\x42\xae\xb7\x0f\x2b\x9d\x75\xef\xf5\x46\xf4\x60\xc6\x18\x5f\xba\x8b\xff\x56\x80\x4d\x21\xc5\xd6\x32\x2e\xe9\xd7\x36\xbb\x30\x8a\x5b\x4e\x69\x25\x1d\x77\x21\xc0\x16\x22\xb4\x8d\xdf\x3d\x88\x92\xce\xe5\x4b\xb2\x42\x1a\xd7\x78\x04\x23\x2e\x42\x30\x1e\x0f\xeb\xb4\x4d\xa8\x0d\xe3\xde\x47\x56\x77\x09\x87\xf7\x25\x81\x8b\xf7\x60\x6e\xe6\xad\x6e\x5d\x4b\xad\x0c\xc3\xa2\x0c\x5e\x1e\x7c\xd8\xf5\x98\x70\xdf\x54\xf2\xa2\x15\xa6\xfa\xc1\x30\x13\x17\x6c\x4f\x1d\x69\xec\x0d\xaf\x7c\xa2\xd5\x6d\xad\x4f\x37\x71\x9f\xa6\x48\x88\xdc\x8d\xaf\x10\x0f\x37\x11\x86\xa9\x73\x15\xb4\xf4\x93\x6f\x85\x81\x7b\xf4\x10\xfa\xd5\x34\x13\x7d\x89\xff\xda\x43\xff\xc1\x3d\x09\xc7\x37\x13\x48\x1d\x5e\xc5\xbe\x9c\x92\x5a\xc3\x9a\x2d\xd7\x7e\x39\x85\x93\x7f\xff\xcb\x41\xfb\xb9\xee\xdb\x6d\x30\x6d\x1f\x5d\xdb\x0b\xa1\x2f\x5e\xbf\xb2\x0f\xb6\xc7\xe6\xdf\x73\x1b\x94\x90\xeb\x2c\xe9\xca\x89\xef\xba\x91\x18\xf7\xea\xed\xb0\x94\xb6\x98\x5d\xac\xf8\xae\x44\xa7\x5d\xde\xdb\x73\x3c\xee\xfb\x70\xa7\x80\xd6\x1e\x91\x90\x42\x19\x79\x43\xc5\xbb\xf6\x53\x69\xe5\x7d\xd4\xd4\x9f\xad\x95\x46\x63\x57\x77\xcf\x1a\x38\x20\xd7\xaf\x07\xf0\xbf\x01\x00\x00\xff\xff\x57\xeb\x0f\x33\x96\x48\x00\x00" func epochsFlowdkgCdcBytes() ([]byte, error) { return bindataRead( @@ -319,11 +319,11 @@ func epochsFlowdkgCdc() (*asset, error) { } info := bindataFileInfo{name: "epochs/FlowDKG.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0xe7, 0x3e, 0xe, 0x5a, 0xf2, 0x44, 0x5e, 0x60, 0x1a, 0xc9, 0xc6, 0x29, 0x13, 0xcd, 0xf6, 0x69, 0x78, 0xd0, 0x5f, 0x5c, 0x64, 0xe5, 0x6f, 0x53, 0x29, 0xc0, 0x2f, 0xe2, 0x18, 0x8b, 0xf8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x68, 0x19, 0xe5, 0x4, 0x66, 0xe0, 0x94, 0x24, 0xba, 0x3a, 0xd4, 0xac, 0xac, 0xbe, 0x70, 0x5, 0x9, 0xa, 0xe8, 0xe7, 0x66, 0xc2, 0x82, 0x55, 0xce, 0xf8, 0x1e, 0xf0, 0x66, 0x45, 0x3b, 0x5}} return a, nil } -var _epochsFlowepochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x7d\x7b\x73\x1b\x37\xf2\xe0\xff\xfe\x14\x88\xab\x2e\x21\x37\x34\x65\x6f\xae\xb6\xae\x54\x56\x72\xb2\x24\x7b\x55\x4e\xfc\x92\x93\x5c\x55\xca\x15\x83\x33\x20\x89\xd5\x10\xa0\x01\x8c\x18\xae\xed\xef\x7e\x85\xc6\x1b\x83\x19\x92\x92\xb3\xbb\xbf\xd5\x3f\x89\x39\x40\xa3\xd1\x68\xf4\x0b\x8d\x06\x5d\xad\xb9\x50\xe8\x69\xcb\x16\x74\xd6\x90\xb7\xfc\x9a\x30\x34\x17\x7c\x85\x1e\xfe\xf1\xf4\xe7\x17\xcf\x2e\x9f\xfc\x78\xf1\xf6\xe5\xf3\x8b\x17\xa7\xe7\xe7\x6f\x2e\xae\xae\xee\xb9\x0e\x0d\xdf\xa4\x8d\x7f\x7c\xf9\x6b\x5f\xc3\xcb\xf3\xb7\x78\xd6\x90\x2b\x85\xaf\x29\x5b\xc4\x3d\x2e\xcf\xdf\x9e\x3e\xf9\xf1\xe2\xea\xed\xe9\xf3\xcb\x17\xcf\x0a\x5d\xcf\x9a\x56\x2a\x22\x5e\x9f\xb9\x5e\xaf\xcf\x0a\xad\xce\x9f\x3f\x73\xdf\xcf\x9f\x97\xc0\x3c\x25\x44\xc6\xe3\x3e\xbd\xb8\xb8\x72\xcd\xee\x1d\x1d\xa1\xb7\x4b\x82\x14\x5f\x3f\x68\xc8\x0d\x69\x90\x5c\x61\xa1\x50\xc5\x99\x12\xb8\x52\x68\x85\x19\x5e\x68\xc4\xd5\x92\xa0\x86\xce\x49\xb5\xad\x1a\x82\xf8\x1c\x91\x35\xaf\x96\x72\x8a\x2e\x19\x8c\x32\xd1\xa0\xcc\x6f\x08\x0b\x02\xed\xe5\x0a\x37\x0d\x91\x0a\xb5\x8c\x2a\xdd\x47\xd1\x15\x41\x9b\x25\xb1\xdf\x69\x4d\x98\xa2\x6a\x8b\x94\x26\x11\x1a\x41\x1f\x02\x2d\x35\x34\x46\xd4\x86\x8b\x6b\xc4\xd7\x44\x60\xc5\x85\x1c\x23\x2a\x91\x54\x58\xd1\x6a\x8a\x5e\xba\x5f\xd1\x0a\x6f\x11\x67\xcd\x16\x35\x04\xdf\x10\xc4\x05\xfa\x07\xa7\x0c\x46\x70\x20\x34\x38\xac\x0c\x7e\x68\xc6\x5b\x56\x63\x41\x89\xcc\xa1\xcc\x08\x22\xff\x20\x95\x22\x35\xaa\x5b\xa1\xa7\x8d\x99\xed\x34\xe7\x02\xdd\x60\x41\x79\x2b\x35\xb0\x15\x95\x35\x59\x11\xcc\x78\x2b\xe4\x04\xcd\x5a\xa5\xc7\xdb\x22\x41\x56\x98\x32\x64\x87\xcf\x26\xd8\x32\x45\x1b\xf8\x60\x60\x12\x56\xcb\xe9\xbd\xa3\x23\x0d\xf0\x22\x90\x4e\xae\x1b\xaa\x10\x65\x8a\xa3\xef\xd0\x7a\x89\x25\x91\xc7\xba\xc9\xa7\x93\x5b\xff\x41\x77\x74\xf1\xea\xe5\xd9\xdf\xd1\x0b\xb4\xfb\xef\x93\x6f\xfc\xed\x23\x34\x9d\x4e\xa1\xff\x03\xfd\x87\x1c\x27\xc3\xbf\x3e\x3d\x40\x57\x44\xb5\x6b\xa4\xff\xef\x8c\xaf\x56\x54\x69\xe2\x3d\xf8\xf4\xc9\xf7\xba\x13\xd2\x1a\xc2\xa3\x31\x42\x76\x93\xa0\x57\x7f\x3f\xbd\xba\xd0\x3f\xbe\xe0\x35\x09\x8c\x01\x64\x03\x12\x2b\x8e\x64\x3b\x5b\x51\xa5\xf9\x04\xf0\x14\xe4\x43\x4b\xa4\x92\xb0\x82\x9a\xf6\x2f\x2e\xfe\xdf\x5b\xbb\x00\x66\x91\x35\x3c\xb5\xa4\xd2\xd0\x7a\x8a\x4e\x95\x59\x23\x56\x03\xcf\xfa\x2f\x13\xf8\x19\x16\x2a\xdf\x26\x82\x48\xde\xdc\x10\x09\x2d\x34\x3c\xde\x2a\xa9\x30\xab\x35\x06\x1d\x4c\x30\xab\x51\x4d\x14\x11\x2b\xca\x6c\x9f\x8c\x53\x1c\xae\x8c\xfc\xa1\x90\xdf\x59\x53\xd8\xab\x45\x04\xc8\x8a\x2a\x19\xf0\x33\x8b\x22\x89\xb8\xa1\x15\x41\xe4\x86\x30\xd3\x16\x53\xa6\x31\x31\x33\x1e\x1e\x15\x46\x9c\xa0\xcd\x92\x56\x4b\x44\x19\x55\x14\x2b\x8b\xac\x12\x98\x49\xaa\x28\x67\x9a\xde\x6e\xca\x06\x2f\x33\xf2\x2b\xa0\xa4\x5d\xc0\xbf\x8e\xd1\xd5\xc5\xdb\x9f\x5f\x85\xd5\xfb\x75\x49\x58\x44\x58\x34\x23\x0b\xca\x0c\xec\x35\x16\x8a\x56\x74\x8d\x99\x92\xc8\xef\x62\x87\x8f\xd9\x1f\x44\x4d\xd1\xb9\xd9\x9f\x1a\x88\x86\x18\x16\x48\x66\x30\xd6\x82\xac\x75\xaf\xee\xe4\x40\x76\x99\xb6\x6d\x83\xc5\x04\x55\xbc\x69\x48\xa5\xe7\x05\xe2\x87\xd7\x44\x3a\x6e\xba\xe1\x7a\xf2\x16\x06\x15\xa8\x32\xb2\xf9\x1b\x89\x04\xe7\x0a\x7d\x68\xb9\x68\x57\xa8\x22\x42\xd1\x39\xad\xb0\x22\xb0\xc8\x15\x67\x92\x30\x69\x44\x86\x81\x27\x5a\x33\xa7\x9a\x4a\x25\xe8\xac\xd5\xdb\xe5\x9a\x6c\xd1\x82\x30\xcd\xcc\x9a\xa6\x6b\xc1\x15\xaf\x78\x83\x46\xe7\xcf\x9f\x8d\x81\xa5\x89\x42\xed\x1a\xfa\x09\xcc\x6a\xbe\xd2\xf0\x66\x04\x57\x9c\x4d\x1d\x31\x61\xe2\x30\x57\x80\x62\xf6\x44\xc5\x57\xeb\x86\xa8\x21\xd6\xf5\x9c\xe3\xd7\xd0\xec\xe3\x7e\xee\xd1\xa0\x34\xd5\xe6\xb8\x52\xd2\x6c\x11\x23\xb7\xd7\x82\x57\x44\x4a\xcb\x34\x1a\xde\x2e\xbe\x31\x18\xd9\x01\x13\xa6\xf9\x6e\x8c\xce\x5e\xfe\xf4\xd3\xe5\xdb\xb7\x17\xe7\xbb\x18\x67\x92\xc8\x7a\x2a\xd1\xbc\x6d\x9a\xad\x5b\xf9\x1a\x06\xeb\x0c\xad\xf9\x20\xda\x59\xa7\x68\x8e\x69\xd3\x0a\x10\x21\x84\x29\x22\xd2\x71\xe6\x5c\xc4\x13\x00\x3a\xf0\x8c\xa1\xcc\x8c\x6b\x58\x7f\x3d\x63\xac\xf6\x61\x69\x3d\xae\x41\xd2\xad\x96\x27\x68\xbb\x06\xde\xd6\x64\xad\x5b\x41\xfc\x6e\x94\x08\xa3\x4a\x50\x45\x2b\xdc\x78\xbc\x35\xc3\x6d\x68\xd3\xa0\x0a\xb7\xd2\xc0\xa8\x96\x5a\x19\x29\x8e\x96\xb8\x51\xd3\x7b\xf7\xd6\xed\x2c\x2c\xbc\xd6\xda\x86\xfe\x1f\xef\xdd\xd3\x42\x5f\x7f\x25\xac\x5d\x99\x55\x81\xd5\x38\x46\x3f\x5f\x32\xf5\x7f\xd0\xc7\x7b\x4e\x33\x00\x08\x4d\x12\x67\xb7\xfc\x7c\xf6\xf6\xf2\xe5\x8b\xee\x77\xd0\x1f\xb0\xef\x7b\xbe\x99\xe5\x85\x8f\x9f\x33\x04\xb4\x74\x7f\xc3\x9b\xa1\xe1\x5f\xbc\x7c\x71\xd1\xfd\xf5\xcc\xec\x60\x2e\x4a\x9f\xdc\x5e\xec\xa2\xf3\x07\xa9\x5a\xd8\xf6\x9d\x4f\xbf\x10\x61\x36\x74\xf1\xeb\x69\xa5\xf9\x3d\x9e\xc2\x91\x35\xa8\x62\x61\x98\x6e\x24\x2a\x61\xcb\xe9\x7d\xbf\xd1\xdc\xbc\xe9\xdf\x17\xd0\xdd\x83\xb5\xda\xe9\xd2\xef\x45\xb3\xa9\xe6\x94\xe1\x86\xfe\x93\xd4\x7d\xd2\xbc\x5d\x57\x7c\xa5\xf9\xd5\x70\x7a\xa0\x34\xa0\x13\xd4\xc5\xc8\xcf\xcf\xff\x8f\x9b\x4d\xc5\x5b\xd8\x11\x3d\x20\xd1\x4f\xad\x54\xda\x78\xe2\x8c\xa0\x85\x20\xd8\xec\x1e\x0c\xac\x9e\x00\xcb\x01\x55\xad\x10\x1a\x8b\x08\x35\xfd\x67\x9b\x99\xe5\xff\xdb\xff\x9e\xdc\x4b\x80\x5c\xee\x33\x4f\xb4\xa1\x6a\x89\x70\xd3\x80\xdc\x45\x94\xcd\xb9\x58\xc1\x32\x4e\x53\x60\xac\x6a\xda\x5a\x5b\x58\xf1\xaf\xba\xcf\xe5\xf9\xc4\xab\xee\x6b\xb2\x9d\x38\x01\x53\xfa\x37\xae\x6b\x01\x92\x4f\xf0\x86\x4c\x12\x50\x0e\x44\x84\xc1\x04\x6d\x08\x5d\x2c\xd5\x04\xf6\xec\x8a\x0b\x12\x70\x82\x91\xd9\x9c\x1f\xa3\xdf\xba\xee\xc3\xf4\x85\xfd\xfa\x2e\x23\xc9\x5b\x60\x04\x21\x15\xba\xa1\x64\x83\x46\x54\xcf\x4a\xd2\x1b\x32\x76\xf2\xb9\xc4\x05\xfa\x0f\x7a\xfd\x42\xc9\xa6\x87\xd8\x1a\x72\x83\x6f\x05\x98\xe1\x66\x07\x60\xab\x45\x11\x96\x92\x2e\xd8\x4a\x73\x42\x1f\x8b\x5d\x60\x6d\x30\x37\x04\x1a\x59\x21\xda\x50\xa9\x12\x98\x82\xac\x05\x91\x44\xcb\x59\xcd\x8a\x1e\xbc\x51\xc5\x66\xcf\x68\x96\x00\x09\xac\xd9\xe2\xf2\x5c\xda\xc1\xad\x9a\x58\xe2\x14\xa2\x05\x31\x31\xec\x64\x74\xbf\x59\x3c\x63\xc6\x81\x5d\x10\xf1\xad\x15\x3f\xd6\x75\x93\x76\x15\xbd\x27\x37\xb5\xff\x57\x5a\x3f\xc9\x5b\x51\x81\x6b\x65\x74\x3c\x23\x52\x1a\xe5\xaf\x71\xd3\xd3\x25\xb8\x26\x02\x49\x62\x8d\x14\x84\x9b\x05\x17\x54\x2d\x57\x06\xbb\x04\xe2\xd0\xee\xd7\x7f\x66\x8c\x2b\x18\xf3\x18\x5d\x29\x6d\x4d\x15\x90\xaa\x09\xae\x1b\xb0\x52\xb5\xcb\xa7\xd7\xc0\x28\x44\xbb\x02\xda\xf9\xf4\xe6\x8a\xe2\x5a\x06\x38\x25\x56\xbb\x36\x0e\x83\x04\x76\x64\xa5\x5a\xb9\x76\xee\x47\x32\x3e\x10\xa9\xe8\x9c\x5a\x28\x44\xac\x00\x01\x1c\x2c\x2a\xc3\x8f\xac\x5d\xcd\x88\x98\xa6\x53\x07\x23\x01\x1b\xdc\x82\xea\x45\x7c\xa6\x05\xb1\x86\x1f\xc9\x4c\xbd\x86\x92\x60\xad\x80\x67\x0d\xaf\xae\x0d\x25\x01\xb6\x13\x64\x09\x6c\x27\xd5\xd0\x82\xde\x10\xe6\xc9\x33\x41\x54\xa1\x0a\x33\x24\xf1\x9c\x34\xdb\x1e\x73\xc3\x4d\xd5\x43\x3c\x7f\xfe\x0c\xd4\xec\xa3\xa7\xdd\xcd\x92\xb7\xf9\xeb\x1e\x6d\xbe\xeb\xb4\x81\x26\xe3\x82\x6e\x2a\x1a\x79\xc3\xba\x09\x62\x08\x5e\x3b\x79\x90\xc1\xed\x0b\x1a\x2a\x02\x04\x9e\x39\x40\xd3\x3b\x2f\xb2\x50\x7b\x58\xd4\xc3\x5d\x62\x89\x66\x84\xb0\xc0\x51\x25\xd5\x65\x46\x1f\x15\x64\xcb\x9e\x3a\x8b\x7c\x68\x71\xe3\x56\xc9\x75\xa2\x5d\xd5\xb5\x16\xe4\x46\x7b\xff\x31\xeb\x02\x1e\xfb\xaa\x2d\x8d\x94\x20\xb2\x6d\x94\x13\x9d\xaf\xcf\x10\x5e\x2c\x04\x59\x78\xbb\x5f\x9b\x13\x99\xac\xf3\x82\x2b\x01\x16\x4b\xb1\x48\x12\x21\x41\x2a\x42\x6f\x48\x0d\xd3\xc6\x91\x77\xe3\x24\x59\x02\xe5\xf5\x19\x02\x2f\xd5\x78\x36\x05\x27\x06\x6c\x58\xd8\xf6\x4e\x96\x5a\x3f\x85\xc8\x68\xda\x4e\xba\xf5\x8a\xbb\xd7\x67\x25\x81\x67\x88\xa1\x97\x64\xdd\xce\x1a\x5a\x69\xad\x2a\x03\x97\x59\xd9\x62\x3c\x0a\xc2\x2a\x5e\xeb\xfd\x2a\xd1\x6c\x6b\xec\x9e\x86\x6f\x1e\x2c\x78\x2a\xad\xc5\x76\xad\x38\x6a\xe8\x4c\x60\xb1\x05\xb7\x80\xa1\x25\xf9\xe3\x81\xed\x9e\xaa\xfe\x67\x82\x6b\xf1\xe3\xc7\xd6\x5c\xab\xbc\x22\xb5\xf4\x9f\xa0\x39\x6f\x1a\xbe\xd1\x02\xc2\x0c\xac\x2d\xfc\x1b\x5a\x6b\xae\xd1\x08\x7b\x90\xf5\xf5\xe2\x55\x3b\x7b\x4e\xb6\x9a\x0c\x46\xa0\xbe\x9b\xe4\xfb\xef\xcc\xad\xa6\x15\x70\x15\x5a\x11\x85\x6b\xac\x30\xc2\x33\xde\xaa\x74\xcd\xd2\x0d\x71\xda\x34\x68\x49\xa5\xe2\x02\xec\x7e\x63\xe6\xf8\xee\x10\x1a\xe3\xda\xdd\x59\x13\xb1\xc2\x8c\x30\xd5\x6c\xfd\x8e\x91\x4a\xb4\x95\xdd\x32\x3f\xb9\x2e\x1f\xbb\x6b\x62\x6c\xc8\x39\x8d\x36\x4e\x40\xc2\x01\x6b\x88\xca\x79\xbd\xa0\xce\xb4\xda\x6a\xa5\x65\x45\xe7\xde\x5a\xf7\xd1\xe0\x2e\xbd\x7d\x1b\x43\xd6\x1d\x9d\x46\x1a\xb4\x72\x5c\x70\xa6\x8c\xa0\x54\x58\x24\x86\xcd\x90\x5d\x33\x0c\x8a\xb0\xfa\x20\x40\xc4\x1b\x7d\xb8\xad\x3a\x9e\x83\x45\x4e\x7f\xbf\xd8\x05\x58\x71\x85\x1b\x24\xc8\x06\x8b\xda\x7a\x94\x5a\x3b\xae\x31\xad\x91\xe6\x96\xfe\x35\xba\xc1\xc2\xf4\x7e\x63\x3a\x1f\xa3\x9f\x9f\xd2\x3f\x4a\x63\x18\xe8\x08\xaf\xf4\x8a\xe6\x83\x68\x67\x18\x43\x00\xc8\x33\x3d\x18\x4e\x5a\xe2\x50\x25\x51\x4d\x1a\x2d\xbe\xb8\x90\x9d\xd1\x0d\xdc\x53\x03\xb6\x6c\xce\x5a\xdc\x9e\x08\x82\xaf\x6b\xbe\x61\xef\x32\xec\x04\xae\xae\x25\xa2\x73\x4f\x81\x25\xbe\x21\x46\x29\x00\x76\x66\xfa\xc5\x75\x0b\x18\xc8\x57\x98\xd6\xc7\xe8\x09\xe7\x4d\x77\xf2\x5c\x2c\x30\xa3\xff\x34\x02\x98\xcf\x83\x05\x17\xec\x43\x08\xc4\x5a\x19\x27\x13\x00\x3e\x86\x07\xb2\x01\x23\xc1\x5b\x56\x23\xc1\x67\x94\x21\xc9\x05\x70\xbb\xb7\xd1\x0a\x3b\x68\x5f\x63\xb1\x8b\xf6\x6b\x23\xaa\xcf\x82\xa8\x8e\x04\x67\x38\x37\x70\xbe\x7e\x87\x32\x7b\x89\xec\xee\xb0\xb1\x9c\xc6\x52\xf2\x8a\x62\xb0\x15\xac\x6d\x8c\xce\xa3\xa0\xd6\x73\xb2\x45\xcf\x7c\x50\x2b\x53\xa5\x20\xd5\x0d\xab\x05\x8b\xce\xe8\x32\x6f\xb2\x29\x2d\x6a\x0b\x02\x3b\x92\xd4\xb0\xef\x9c\xa2\xc4\xda\x2f\xa8\xc9\x1f\xc7\xa8\x21\x6c\xa1\x96\xe8\x01\x7a\xd4\x99\x78\x7d\xbd\x48\x25\x74\x98\x24\x65\x54\x8d\x3a\x2a\x1c\xc5\x7f\xb1\x68\xca\x3f\xe5\xe2\x26\xfb\x9e\xc9\x90\x6e\xef\x82\x3c\xc8\x1a\x95\xb6\x73\xd6\xe4\x10\x07\x24\xed\xb8\x9f\x0e\x4f\xfa\x74\x68\x39\x8e\x35\x8a\xa1\x57\x33\x9f\x3a\x9b\xea\xc4\xe9\x8c\x6e\x13\xd0\x15\x27\x40\xde\xc2\x47\x47\x59\xdd\xc2\xfd\x7f\xb7\x99\x25\x30\x3a\x71\xa4\x2e\x42\x8a\xa8\x6c\xc0\x45\x3f\x74\x3b\xc4\x14\x47\x27\xc9\x02\x74\x1b\x27\xf2\x0e\x9d\xa0\xdf\xde\xf5\xb5\x01\x89\x84\x4e\xd0\x1c\x37\x92\x94\x08\x96\x2d\x22\x90\x2e\xfb\xad\xd0\xcd\x2f\xa1\x6e\xef\xff\xd1\x6d\x68\xd7\x0d\x9d\xb8\x15\xf4\x4d\x3e\x87\xe5\xc3\x10\xda\x1a\xe1\x0a\x16\x6d\x8c\xe6\x2d\xd3\xfa\xfa\x6d\x44\x82\xd1\xef\x88\x91\x4d\xc6\x90\xe3\x28\x58\xd7\x47\xc7\xd0\xeb\x80\x91\xdf\xc4\xe4\x1d\xfd\x6e\x85\xbb\x57\x1d\x7b\x2a\x98\x22\x7a\xf9\xca\x65\xa0\x0f\x46\x12\xd6\xd7\xa3\x18\xe9\x9f\x81\xd1\x1d\x4f\x44\xff\x0a\xe3\xa2\x9d\x03\xfb\x4d\x2a\x47\x1f\xaa\xa1\x3d\x5c\x44\x21\x61\x9d\x0f\xd5\x21\xcb\x72\xfe\xfc\x19\x88\xe5\xe7\x64\x3b\xba\xee\x48\x83\x01\xde\xbb\x4e\x19\x0f\xa5\x31\x54\x6f\xa3\x82\x8e\xa0\xd2\x1c\x44\x5b\x87\x5d\x3b\xda\x33\x88\x6e\xb3\x45\xb0\xcb\x4f\xeb\x15\x65\x47\x47\x47\xb9\xcd\x7b\xc6\xd9\x9c\x2e\x22\x64\x9c\x36\x33\xc1\x03\xad\xf5\xb5\xe9\x06\xa1\x79\xcc\x90\xb6\x7f\x45\xc1\xa2\x1a\x49\xa2\xc6\xa0\x43\x58\xbb\xd2\xe2\x42\x5e\x32\x30\xa7\xfb\xad\xb7\xc2\x00\x3b\x8c\xc3\xd2\x20\x96\x97\x4f\x4d\xeb\xc4\xb1\x47\xa5\x60\x6d\x61\x54\x30\xe1\xea\xeb\x85\xf1\xd0\x77\x0d\xe8\xa2\x09\xfb\x4c\x2c\xd8\x4b\xce\x42\xf2\xe3\x0d\x53\xf0\xac\xab\xa9\xf4\x68\x8f\xfe\x56\x34\x01\xcd\xc9\x97\x22\x5a\xc9\x9b\x33\x10\xe5\x2d\x57\x6d\x32\x6c\xb5\x31\x4c\x59\x25\x08\x96\x44\x6a\xbf\x5c\x6c\x33\x04\x0c\xee\x54\xa2\x1b\xdc\xb4\x04\x58\x4a\x7b\x9f\xeb\x86\x06\x16\x7a\xfa\xe3\xcb\x5f\xad\xcd\x2d\xdb\xf5\xba\xd9\x6a\xfb\x77\x41\x54\x14\xc1\x81\xa1\xca\xb3\xd2\xbd\x4d\xb7\x4b\x8b\xc9\x2b\x22\x2a\xc2\x14\x5e\x90\xae\xf9\x0d\xe6\x46\x0f\x2b\x4d\x76\x2e\xff\x64\x60\xbd\x26\x83\xf4\x9d\xec\x85\x67\x71\xf3\x66\xd8\x6a\x49\x9e\xfe\x32\xd4\x25\x9d\x47\xd2\x37\xfd\x34\x04\xc4\x4d\x35\xe9\xee\x7e\x2c\x76\xec\xd0\xc1\x74\xed\xfc\xdc\xed\x3c\x44\x26\x74\x32\x48\xc5\x7e\xb9\xf6\x77\xde\xd4\x86\x9d\xdf\xfb\xf3\xb7\xa9\x91\x50\xef\x9d\xc0\xf2\xe6\x74\x05\xbf\xb7\x02\x8e\x39\x9c\xa3\x0f\xa0\xac\x30\x76\xf6\xfd\xd8\x3a\x14\xa1\xb9\x93\x9f\xc7\x56\xfc\xed\x21\x59\xed\x1e\x48\x8f\x87\x7d\x37\x2b\x77\x19\x57\x7d\xa2\xb7\x10\xe4\xc0\x71\xbc\x42\x90\x8a\x8b\xda\x79\xc8\x3e\x6e\x01\x6e\x8b\x0d\x0d\x9a\x00\x9b\xc9\x22\xf2\xd0\xc0\xa8\x37\x63\x99\xb0\x81\x91\x3e\x61\xb8\x37\x44\xb5\xc2\x9e\x86\xa5\x60\x61\x3e\x3e\x92\x9c\x46\x53\xb4\x8b\x47\x1b\xed\x5c\x52\x4d\x06\xf6\x8d\xf6\xa6\x5b\x56\xfb\x06\x86\xc7\x7f\xea\xc6\x57\xb4\x9e\x30\x5a\x10\x7e\xd1\xec\x20\x4d\xf8\x70\x21\xf8\x46\x4b\xf6\x9a\x02\x27\x63\xb1\xf5\xd0\x6a\x4e\xb4\x87\xa3\x8c\x0b\x6b\x42\xe5\x0d\xc7\xb5\xc6\x0b\xa4\x15\xe4\x46\xd9\x55\x37\x07\xb4\x54\xda\x16\x5e\xa3\x69\x9d\xbb\x20\x2a\x89\xe2\x8c\x7e\x37\x13\x3b\x4b\x3d\x97\xf1\x71\x1a\xec\xf9\x21\xda\xd0\x74\x0e\xfc\xe2\x68\x75\xee\xb1\x05\x1b\xbc\x99\x4f\xed\xf4\xa6\x33\x2e\x04\xdf\x3c\xfe\xfa\xa3\x81\x99\x81\xfc\xfc\xfd\x48\x53\xf9\xd8\xf4\x71\xd0\xae\x0c\x49\x5e\x61\xb5\xcc\x85\x88\x80\x85\x2a\x8c\xfb\x5b\x3c\x83\x77\xd9\xee\x89\x7a\x32\xda\xe4\x1b\xea\x0a\x9b\x90\xfe\x8a\xd7\x66\x95\xd3\x10\x97\xdd\x52\x36\xbc\x1b\x82\x65\x9d\x25\xf4\x00\xcb\xfb\x0b\xac\x1d\x7c\x43\x72\xd2\x33\xb2\x09\x5b\x2d\xf9\x18\x4f\x7e\x2d\x48\xd1\xec\x32\xa7\x9f\x17\xd1\xe4\xd1\xc9\x09\x1a\x3d\x44\x58\xba\x65\x44\x9f\x3e\x25\x1d\x47\xd1\x88\xde\xb5\xfa\xfe\xa4\x1f\xe0\x03\x34\x7a\x14\xc3\xfb\xfa\xeb\x04\x5e\x09\xdc\x63\x0b\x6e\x2d\xf8\x9a\x4b\x52\xc7\xf0\x46\xe3\xf1\x71\xea\x06\x22\x84\xee\x9f\x19\xc9\x00\x8b\xb0\xcd\x23\x93\xb0\x15\x5d\x6a\xe0\xdc\x9c\x0d\x13\xe4\x80\xdb\xd6\x5c\xf8\x24\x0b\xf8\x18\xcb\x82\xfb\x05\x8e\xf8\x77\xf1\x70\x36\x2e\x3a\x29\xb1\x73\x81\xa8\xef\x32\x38\xc0\x65\x52\x12\xa1\xd0\xa8\xf3\x41\xff\xad\xf2\x55\x39\x39\x29\x2d\xd6\xa4\xa7\xb3\x94\xa0\xcd\xdd\xca\x68\xde\x0d\x48\x83\x86\x59\x51\xb9\xc2\xaa\x5a\x86\x23\x73\x0b\x52\xde\xef\xc0\x1c\x27\xbf\x7c\xbe\x57\x42\x74\xd7\xfc\x13\xf4\xfb\x35\x64\x74\x76\x33\xd1\x5c\x71\x79\x3e\x71\x3a\x23\xc9\x16\xf0\x42\x11\xe2\x59\x5d\xc6\x4f\xad\x57\x0f\xd9\x82\x30\xa7\x98\x3e\x45\xc7\xcc\x9f\x4a\x17\x71\x2a\xc1\xb5\x36\x56\xf8\xff\x00\x59\x33\x4a\x94\xd7\x1a\xa9\x76\xd0\x8c\xef\x21\x3f\x10\x4e\x77\xbd\x16\xf1\xc3\x68\x6e\xc2\xba\x55\xc4\x74\xc7\x28\xfa\xc7\x3e\xc3\xfc\x9d\x60\xa1\x66\x04\xab\x9d\x43\x2d\x5d\xcb\xc3\x87\xeb\xd9\x41\xef\x23\x75\xd7\x33\x68\x61\x5f\xf5\x8c\xf9\xc6\x61\x6f\x62\x83\x98\xa1\x76\x5d\x6b\xc3\x5f\xf2\x15\xf1\x7c\xe0\x34\xe4\x9c\x92\xc6\x06\x11\xf4\x50\x7e\xea\x40\xf5\x2c\x6b\x48\x4b\x70\x03\x0b\xd0\x07\xdb\xd1\x08\xf0\xf0\x6f\xaf\x3c\xb3\xcd\xda\x95\xdf\xfa\x2f\x90\xbf\xc3\x26\x7a\xb3\x86\x7f\x4d\xd3\x5c\x29\xb3\x2b\xcd\xc1\xa8\x9d\x9d\x99\x88\x4b\x3a\x2e\x38\x89\xdd\x2d\x19\x46\xa7\xf2\x17\xdc\xd0\x1a\x86\x3a\x73\x36\xa0\xee\x34\x8a\x30\x2c\xd8\x86\xbd\xc6\x79\x59\xa6\xec\x0d\xcc\xd9\xe3\x65\x30\x09\xc1\xc7\xc7\xe8\xfe\x0b\xb2\xb1\xb6\x16\xfc\x84\x56\xf6\x60\x36\x4f\x24\x42\xb2\x5d\x69\x0e\xf0\x94\x61\x35\x9c\x11\x1a\x82\x83\xaf\x7b\x3f\x13\x53\xf7\x6e\x85\xbf\x77\x6e\x62\x4c\x4b\x21\x91\x94\xad\x2c\xf1\x22\xc6\x8a\x7f\xf9\x6f\x63\xad\x6c\x7a\x7f\x2a\xcb\x1c\xb6\x72\x9a\xa7\x0e\xe1\x27\x46\x36\x7f\x3e\x4f\x75\xbd\xdf\x94\x7e\xbb\xd9\xcb\x91\x28\xe2\xaf\xf0\xef\xff\x36\xee\xfa\xa2\x82\x2b\xa1\xd4\xbf\x83\xc3\x62\xee\xd2\xdc\xf6\xa7\x70\x58\x1c\x1a\x89\x27\xbc\x9b\xb3\x5e\x14\xc2\x21\x86\xc1\xf4\x97\x2c\x7c\xf4\x9f\xce\x61\x07\x93\xaf\x18\x20\x4a\xa6\xbe\x9b\x82\x4f\x7f\x7c\xf9\xeb\x55\x4f\x2c\xc8\x6e\xd5\x9d\x11\xb6\xff\x34\x42\x22\xbb\x73\x42\xcc\xeb\xf1\x09\x7a\x34\x35\xbe\x29\xcc\xc0\xea\x6e\x13\x4f\x75\x7b\x60\x46\xd4\x86\x10\x86\xfe\x49\x04\x07\x86\xe7\x8c\xdc\x65\x85\x76\x44\xe1\x12\x0c\x4b\x0b\x75\x74\x84\x2e\x18\x04\xd0\xb8\x40\x35\x95\xf0\xbf\xb8\x55\x7c\x85\x15\xad\x7c\x08\xb9\xc2\x4d\xd5\x36\xee\xe6\x04\xab\xd1\x1a\x6f\x57\x84\x29\xd9\xab\xec\x2d\x04\x7b\xe2\x63\xc6\xa8\x47\xbf\x23\x62\xfe\xaf\x7c\xe0\x13\x26\xeb\xdc\xd3\x86\xe3\xfa\xb1\x6e\xea\x1c\xd1\x23\x1b\x90\x38\x9a\x37\x7c\xd3\x33\xcc\x78\x07\x50\xed\xed\x8d\x2c\x22\x13\xa4\xf8\xa1\x50\x3f\xa7\x41\xf8\x0b\x66\x63\x96\x96\x07\x9b\x2d\xc2\x95\xa2\x37\xce\x6f\x82\x24\x4a\x85\x85\x92\x08\x83\x80\xe3\x8c\x84\x28\xe6\x5a\xf0\x1b\x5a\x93\x3a\xc4\x27\xbb\x59\xd8\x70\xa8\x40\x36\xee\xd2\x91\x89\x12\x08\x22\x6d\xac\xcb\xa7\x00\xca\x09\xa4\x05\xbe\x8f\xce\x94\x0b\x21\x8f\x6f\xd1\xa3\xf7\x39\x7c\xb8\x15\xc2\x8c\xf6\xa5\xd2\x24\x26\xd9\xad\x20\xd7\x5c\x5c\x4b\xf4\x00\x49\xca\x2a\x1f\x83\x8b\xd3\x4c\xa9\x34\xc8\x98\x84\x6d\x3b\x29\x93\xf4\x4a\xd3\x94\x90\x19\xe7\x4a\x2a\x81\xd7\x6b\x97\x17\x61\x28\x62\x2e\xc2\x34\x70\x7b\x91\x20\xc9\xf0\x5a\x2e\xb9\x9a\x98\xec\x15\xfb\x91\xfe\x93\xc8\xe8\x56\x86\x27\xa0\xcd\x47\xeb\x9c\x66\x58\x6f\x08\xec\x17\x3d\x85\x89\xde\x9a\x35\x99\x43\x42\x0a\x9c\x35\x61\xe5\x87\x9a\x76\x18\x39\x90\x37\x0d\x40\x0c\xf8\xd2\xa9\xf2\x2c\xa7\x10\xc7\x2d\x76\x24\x45\xec\x93\xf5\x30\x98\x37\x71\xdb\x74\x87\x5b\x64\x3b\x94\xb2\xfb\xc2\x86\xd9\x47\x94\xf7\x44\xfb\xca\x12\xde\x11\xbe\x68\xad\xf8\xa0\x8e\xb9\x9b\x86\x7d\x54\xe3\x22\x0e\xe3\x98\xf5\xf7\x71\x67\x88\xf5\x24\x61\x14\xd7\x2e\x84\xb5\xbb\xf1\xff\xdb\x99\x6f\xe9\xc2\x3e\xf0\x6c\xf0\xed\xa3\xc9\x2d\x7c\x02\xc7\x03\x31\x9c\x42\x10\x12\x28\x73\xc9\x6e\x34\x4e\x81\xf3\x26\x19\x97\x99\x2d\xec\x92\x45\x12\x91\x34\xa8\xa6\xe8\xfc\xd6\xba\xb8\xc0\x0b\x47\x47\xe8\x0a\x84\xcd\x86\x40\xae\x1d\xec\xc5\x34\x3b\x72\xa2\xbf\xd5\x1c\xd6\x8e\xc1\x15\x00\x5e\x02\x03\x13\x8d\xf3\x29\x11\x6e\x24\x9f\xa2\x5f\x89\x51\xfe\xb6\x2b\xdc\x66\x1d\x3a\x7c\xee\x2e\xaf\x09\x9c\x3a\x03\xbb\x5e\x51\x36\x1a\x4f\x09\xab\x53\x93\x7b\x94\x85\x06\x11\x69\x64\x89\xfb\xcd\x95\x84\xca\x4e\xd5\xa7\x3f\x1b\x7f\x6b\x27\x16\x7e\x57\x3a\x3c\x00\xd6\x95\xe2\xeb\x5f\xb8\x26\x5b\x86\x45\x09\xc4\xf9\xf3\x67\x49\xe7\x0b\x56\x9f\x3f\x7f\x96\xa3\x9f\x2e\xfa\xd1\x11\x3a\x03\x9b\x1e\x84\xec\x45\x16\xd6\xee\x5c\x28\xcd\xfb\x7a\x09\xce\x9c\x99\x94\x1e\x33\x36\x44\xf9\x20\xc3\x4f\x21\xa0\x9c\x9e\x31\x14\xf9\xdc\xa7\xa9\xf5\xa8\xbf\xb2\x97\x63\xd2\xd7\x62\xb1\xdd\xd3\x2e\x88\xed\xb0\x8f\x8a\x2d\xbd\x74\xb6\xff\xd3\x0b\x2f\x91\xf3\xd9\x8e\x2c\xf6\x71\x4a\x1b\x6e\x34\xce\x08\xe2\x37\x44\x6c\x04\x55\x8a\xc0\xed\xfa\xf7\xce\x60\x23\xa7\xac\xbe\xf2\x89\x37\xef\xd1\x8c\x34\x7c\x53\x84\x58\x4a\x9f\x1b\x3d\x9c\x3e\x1c\x97\x11\x28\xe8\x96\xce\x4f\x3d\x3d\x23\xed\x12\xfe\xbf\xdc\xd6\xe7\xd0\x05\xfd\x32\xee\xb3\x8f\xbb\xe7\x4f\x39\xf3\x8c\xbb\xec\xeb\xc8\xe4\x2d\xdd\xe2\xd5\xbb\xbc\x9b\xb9\x16\xe3\xae\xaf\x6e\xe3\x54\xe3\x1e\x76\x8f\x84\x63\x71\x65\x46\x5d\xdc\xae\x40\x74\xe1\xb0\xb7\xc2\x6d\xf3\x4a\x40\x4e\xa7\xec\x62\x5a\x4c\x22\x8c\x68\xa4\x61\xbe\xb0\x64\x19\x8d\xfb\x8f\x19\xd2\x40\x33\x95\x46\xe3\xe9\x05\xf6\xa7\xda\xde\xc6\x83\x64\x67\x63\x33\xfa\xfe\x8a\xdb\x43\xf0\x04\x45\x73\xac\x60\x0d\x33\x7f\xb0\x15\x44\x9e\x3d\x67\x98\x83\x58\x8e\xa0\x75\x43\xd8\x3e\xa2\x9f\x67\xe9\x3f\x75\x56\xac\x47\x1c\x03\xd2\xe6\x14\xd9\x5c\x62\x52\x1c\xe1\xfa\x06\x3b\x6b\xb6\x6b\x3a\xc2\x69\xbe\x41\xdf\xde\xe7\x9a\xdb\x8c\x9a\x0f\x2d\x15\xc6\x56\xaf\xa9\xf1\x86\x42\xce\xf5\x8a\xa8\x8e\x15\x69\xc7\x79\xa2\xc7\x1d\x75\x13\x40\x37\x54\x5b\x1d\x43\x9a\xb3\x60\x28\xc1\x9d\xdc\x5e\xcf\xb6\xb8\x8f\x20\xff\xc1\xc0\x06\x54\xd0\x09\x5a\x10\x75\x16\xfd\x52\x50\x11\x59\xc7\x5c\x0e\x07\xac\x3b\x67\xee\x83\x46\xdb\xf8\xab\x3e\x89\xf6\x0a\x6f\xfd\x3e\x04\xed\x4c\xe7\x05\x5f\x54\x1b\x04\xd6\x79\xdb\x2d\x1a\x01\x0c\xae\x54\x8b\x9b\x66\x8b\x96\xda\xf1\xd0\x6e\x7f\x45\x10\x5d\xad\x48\x4d\xb1\x22\xba\x81\x3f\x76\xb5\x25\x50\xe0\xde\x7c\x1f\xf4\x19\x31\x57\xc8\xdf\xaf\xf1\xd6\x6e\xdf\xa7\x5c\xbc\xb2\x67\xb2\x76\x6b\xbd\x8f\xc6\x5f\x27\xf3\xaa\x48\x11\x70\x62\x41\xe1\x1e\xff\x39\x77\x98\xe3\x3f\x73\x26\x3d\x80\x52\xb1\xe7\xe7\x3e\x64\x62\x76\x99\x82\x9b\xf7\xfd\x49\x91\x15\xf2\xbc\xe1\x1d\x18\xee\x32\x91\xfa\x11\xcb\x19\x3f\x5c\xa1\x2f\x33\xbd\xa5\x68\x70\x5e\x6e\xc0\x18\x3a\x73\xf7\xe5\x46\x63\xf4\xf5\xd7\x68\x64\xab\x04\x4d\xeb\xeb\xe4\xd3\x57\x27\x88\xd1\x4e\x84\xa2\x33\x1d\x90\xa8\xf1\x55\xbb\x3b\xcd\xc6\x5c\xfa\xff\x1f\xbb\x87\x0f\x62\x1b\xb2\x1f\xbf\xf4\xea\xcb\xc1\x5e\x84\xd5\x87\x71\x7d\x4d\xe6\xb8\x6d\x54\x99\xf4\x26\xbf\xe6\x5e\x19\x42\x16\x0d\x3a\xc3\x4d\x23\xa3\xc3\xe7\xf7\x3e\xb0\x22\x07\x1c\x8d\x2c\xf5\xd4\x29\x21\xe3\xbe\x64\x25\x0f\xba\x69\xaa\xa0\x6a\x0a\x1b\xeb\x5f\x16\x43\x25\x06\xd7\x64\x46\x77\x0e\x49\x97\x24\xc5\x90\x5d\x13\xd5\x6a\x48\x63\x2f\x2d\x93\x78\x4e\xde\xc0\x6f\xa3\xf1\x54\x71\x13\xa0\x18\x8d\x7b\x43\x7a\x7b\x2e\x62\xff\xa2\x0c\x2f\xe0\xab\xe2\x02\x76\x45\xc9\x17\x5e\xbf\x48\x60\x66\x6b\x17\x23\x67\xd7\x2d\xfa\x69\xcf\xf5\x1a\x10\x85\x77\x21\xaf\xbd\x8a\xbd\x8b\xbe\xae\xf0\xd6\x69\xbc\xa1\xcc\xad\x78\x1f\x3a\x2d\xed\x19\x2b\x26\xfe\x0c\x52\x5b\x69\x9e\xd1\x3a\xae\xad\x95\x4c\xf1\x10\x32\x17\x6d\xf8\x84\x3a\x2f\x08\xa9\xa5\x2b\x3a\x60\x6c\xe0\x28\x83\xcc\x67\xf4\x68\xc7\x31\x5f\x1b\x23\x6f\xe5\xb0\x4f\x64\xc9\xcf\x85\xa9\x5e\xb4\x82\xc4\xf6\x24\x04\xd0\xa1\x76\x9f\x28\xef\x3d\x05\xd8\x29\xfb\x0b\x47\x4e\x43\x16\x50\xef\x40\x7b\x99\x4d\x1d\x27\x29\x22\x95\x61\x32\x05\x65\x0f\x33\x8f\xb0\xeb\x49\x1e\x05\x17\x52\xfa\x00\xc8\xb0\x1f\x59\xba\x5e\x32\x40\x4e\x8f\x73\x74\x9b\xd6\x64\xfd\xd8\xf4\xbf\x52\xf4\x2a\x39\x15\xda\xd3\x33\xf6\x6e\x96\xb9\x9e\x6d\x36\x6f\x0c\x07\xe6\x09\x39\xbd\xba\xa1\xbd\x4c\x3b\x73\x77\x87\x5c\x54\x35\x4f\x89\x1c\x74\xc2\xf5\x9c\x2c\x52\x57\xed\x6a\x65\x93\x1a\xa3\xa9\x04\xbe\xe9\x72\x4c\x64\x0c\x45\x76\x10\xd0\xa4\x63\x02\xf5\x25\x8d\x46\xd6\x4f\x06\x6a\xda\xb9\x89\x95\x22\x3a\xf5\x33\x1f\x0f\x81\x48\xae\x91\x65\x10\xe2\x38\x4d\x00\x62\x6c\xd1\x4e\x04\x24\x83\x1d\x2d\xf1\xad\xdc\x8d\x84\x2f\x94\xbf\x80\x6d\x2f\x83\xf0\xb9\xb9\x21\x12\xbc\xa9\x64\xfd\xbe\x91\xf9\xf5\x10\x0b\x12\x5a\x86\x03\x46\x44\x6d\xcd\x21\x3b\xc2\x35\x61\xf6\x2e\xac\x76\xb5\xd9\x37\xca\x7a\xdb\x94\x29\x52\xf7\x70\xe5\x96\xa8\x4e\x28\xd1\xb6\x78\x65\xf6\xd9\x49\xa1\xfc\xa8\xe7\x00\x28\x5f\x6a\x1a\x66\x06\xa4\x06\x34\x27\xc4\xac\xae\x05\xf2\x94\x10\xa9\xbb\x3e\x25\xe4\x09\x6e\xb4\xbb\x9f\x75\xba\xc1\x02\xea\x31\xc0\xb2\x9a\x83\xf0\x53\x4d\x23\x8f\xca\xc3\xe9\xc3\x3c\x9a\x1e\x06\x09\xf6\xb3\x6d\xdf\xd5\x4b\x83\xc0\x7d\x3d\x56\xc3\x3a\xa6\xc9\x7e\x51\xe9\xc3\xe1\xa2\x6f\xd1\x28\xc5\xf6\x41\x98\xca\xae\x60\xf2\x8f\x1c\x1b\xc5\x6f\x2e\xdb\x6b\x86\x9a\x71\xd6\x4a\xc7\x04\x90\x29\x1d\x27\xa4\xc7\xab\x02\x2d\xdf\x9a\x86\x99\x63\xf3\x24\x7c\x2a\xc5\xd9\xda\x99\x49\x97\xec\x8e\xd5\x61\xf1\xe8\xbe\x93\x20\xfe\xe7\x7c\xed\x62\x54\x1e\x0f\x11\xf1\x40\x8a\x0f\x7c\x7c\x10\x0f\xba\x2b\x66\x9f\x6c\xe1\xfd\xe2\x97\x8d\xa9\x5f\x08\x29\xe9\xfb\xe0\xf3\x97\xbb\x24\x2e\x74\x97\xc8\xdf\x31\xdb\x84\xdb\x6c\x89\x67\xe1\x73\x5e\x21\x39\xc1\xe5\xce\x1b\xeb\xaa\x93\x54\x8d\x9c\xc0\x2c\x9e\xe1\xc8\x82\x10\x48\xa7\xde\x15\x09\xee\xfb\x7e\x2a\xa5\xe7\xe2\x40\x87\x19\x7e\xf8\x01\xad\x31\xa3\xd5\xc8\x9f\x68\x06\xcd\x57\x58\x30\x34\x23\x55\x0b\xd1\x4a\x2d\x2a\xa5\x97\x94\x9e\x1c\x5b\xa2\xee\x8f\x33\x33\x37\xc5\xbb\xa3\x7c\x86\x26\xde\xa3\x73\x72\x98\x03\x06\xd4\x2b\xbc\x0d\x56\xa6\xab\x04\xe5\x4b\xf6\x84\xe2\x19\x2e\x64\x9c\xde\x7b\xe8\x35\x8c\xf6\x34\x01\xed\x5d\x85\x75\xdc\xe0\xd6\x36\x41\x7e\x91\xa4\x70\x31\xe2\xab\xe2\x48\xc9\x05\xe7\xae\x40\x00\x03\xce\x5b\x39\x05\x9d\x05\xc0\xde\x24\x36\xc2\x28\x3d\xcb\x29\x0f\x1b\xb7\x99\x04\x8b\xac\xaf\x79\x72\x09\xbc\xcb\xaa\xfd\xdb\x29\x2c\xc6\xc8\xce\xa3\xdb\xbb\x3c\x64\x76\x61\x5c\x89\x96\xf4\x0c\x5c\x62\xc2\x02\xc4\xbe\x6b\x1a\xdd\xeb\xd5\xfc\x86\x48\x2f\x5b\xac\x46\x70\xa9\x5b\xb3\xb6\xba\x26\xca\x1e\x58\x25\x7e\x68\x30\xe6\xed\x81\x73\xe1\x30\xb9\x78\x4f\x3c\xf5\xe8\xd2\x23\x0d\x74\xc1\xea\xe8\x2c\xd8\x1e\x45\x6c\x4d\x19\x38\x45\x9b\xa6\x13\x0c\xef\xc4\x3d\x29\x7b\x25\xf8\x42\x10\x29\x4b\xd7\xac\x7a\x8e\x90\x65\xe9\xf4\xf8\x73\x3e\x88\x0d\x9c\x5a\x83\xb1\x1f\x7c\x74\xbc\x4c\xf2\x93\xe5\x48\x43\xf5\xb3\xd1\x8a\xdf\x90\xae\x0a\xef\xec\x46\x97\xe3\xd9\x1b\xb5\x4a\x48\xfb\xb3\x49\xfd\x0b\x1e\x88\xbb\xe2\xd3\x3f\x80\x4f\x4d\x19\xba\x03\x96\xf3\x93\xcf\x10\x93\x59\x90\xc2\x57\xe1\x4c\xae\x7c\x59\x11\xb8\x5e\x0b\x7e\x63\xd7\xb5\xc4\x36\xc3\x01\xbf\x7e\x52\xf6\x45\xe0\xe3\x6b\x83\x81\x9d\x43\x54\xcd\x86\x54\x20\x41\xc4\xd7\xd3\x8e\x53\x2b\xa0\xde\x9b\x87\x01\x87\x30\x4b\x9c\xc5\x20\x6a\x2a\x48\xa5\xfc\x99\xcb\xfb\x0e\x32\xef\x87\xb7\x49\x6f\x90\xcf\xc4\xf4\xf2\xcd\xf3\x8c\xa8\xac\x18\x5c\x28\xe0\xe4\xc8\x3d\x60\xfa\x68\xe9\x4b\x6b\xd9\xeb\x2d\xbc\xb2\x30\xa0\xf0\xe8\xb9\xcc\x7c\xe8\x70\x9b\xd9\x54\x4b\x0a\x25\x4e\x21\x2e\x65\xd1\x72\xeb\x6c\xf0\xf3\xfd\xa1\x10\x80\xad\x67\x7a\x2a\x04\xde\xee\x28\x79\x6a\x4a\xaa\x74\x87\xf7\x85\x9a\xf8\xdc\xc4\xa0\xd2\x1a\x4e\xc6\x90\x78\x7d\x96\x8c\xeb\x9b\xd8\x79\x85\x9c\xae\x03\x46\x49\xeb\x16\xe9\x51\xe2\x54\x16\x33\x8c\x6d\xb3\xc7\x30\x7a\x21\xdd\x5c\x4d\xf5\xbe\x78\x55\xfb\x96\x3c\xcc\x35\xa9\x37\xde\xed\xa4\x78\x94\x66\xd8\x97\x7e\xa3\x87\xa5\x90\x09\xa6\x79\xe2\x63\xc7\x0a\x74\xcb\x55\x66\x17\x87\xfd\xc8\x54\xcf\x3d\x46\xb4\xce\x9c\x91\x64\xb9\xa7\x70\x56\x59\x8f\xdc\x8f\xe3\x4e\xc2\x95\xfb\x32\x15\xbc\x81\xf8\xa3\xab\x0b\x3d\xf5\x49\xdb\x53\x81\x37\xbf\x40\x02\x72\xe1\x1c\x39\x5b\xe4\x7c\xc0\x29\xad\x07\x1d\xb6\x1d\x18\x58\x52\x0f\x63\x90\xae\xff\x1e\x18\x74\xff\x2f\x5e\xc5\x97\xa6\x5c\x19\xc9\xd6\xde\x70\x60\xb9\x50\x59\xb1\xd4\x98\x93\xee\x15\x64\x37\x75\xb3\xff\x99\xe3\xd7\x9c\x86\xe9\xfe\x37\x19\x1c\xaf\xcf\x90\xd1\xa3\x21\xe1\x09\x1c\x1f\x4a\xea\x2e\x3a\xc3\x1a\x19\x0b\x65\x55\x72\xd5\x9f\x75\x53\xc2\x41\x1b\x0e\x71\xdd\x84\xe2\x36\x28\xab\x6b\x18\x55\x2b\xec\x68\xd2\xe9\xb2\x8d\xef\x95\xa2\x6b\x77\x33\xa7\xc7\x5f\x25\xb3\xb8\x34\x7b\xd3\xae\xec\x3e\x39\x66\xa6\x7c\xa7\x33\x9a\xa2\xab\xbd\x26\x5f\x6a\x4e\x41\x1b\x51\x86\xb4\x23\x2c\x92\x09\x24\x3a\xbd\x37\xf1\xcc\xe7\x98\x0d\xd8\x01\xe5\xa4\xa6\xa1\xbf\x7d\x73\xd0\x06\x61\x84\xfc\xb4\xc1\x83\xd7\x6f\xad\xaf\x32\x7a\x74\x0b\x44\x7d\x6a\xdb\x8e\x21\x6c\xc9\xae\xdd\xb7\x86\x6e\x35\xcf\x24\x6f\xee\x0b\x60\xb2\xcf\x7d\xa9\xa1\xbf\xd4\xf1\x7a\x18\x5f\x07\x39\x1c\xd8\xed\x53\xec\x06\xa1\xc6\xc9\xdd\x79\xcd\xba\x3d\xfe\x42\x59\xbb\x77\xb9\x21\xde\x1f\x0b\xe8\x4b\xc3\xdb\xc7\x7e\x8f\x5e\x4a\xf0\xfd\xb4\xfd\x19\xd7\xe6\xf7\x9b\xb1\x38\xe0\x70\x31\x00\x94\x94\x95\x4f\x74\xf0\x04\xf5\xf6\x88\x0a\xc3\x97\xc7\xdc\x91\x1a\x8a\xd2\x1a\xf0\x65\x18\x83\x69\xa3\xe8\xce\x2c\x92\x1a\xd0\xfb\x09\x9d\x52\x4d\xee\x1d\x04\xb8\xd5\xde\xdb\xb3\x93\xbf\xd6\xf7\x00\x45\xd1\x97\xdd\xe8\xff\xf5\xcf\x47\x7f\xf4\xd7\x80\x10\xfa\xcb\x41\xb3\x19\x1f\x3a\x9d\xef\xfe\x05\xd3\xf9\xee\x4b\x4d\xa7\xdf\x3d\xee\xf8\x9a\x1b\xfb\x78\x4f\xac\xcb\xe3\x87\x7b\xea\x24\x08\x93\xbd\xf2\x64\x13\x07\x4c\x35\x74\x6f\xfd\x98\xb2\xda\x72\x0f\x2f\xb3\x90\x85\x41\xe7\xe8\xab\x5d\x39\x65\x9f\x3e\xa1\x9e\x94\xb2\x13\x48\x29\x2b\x56\xfd\x29\x05\x43\xc0\x98\x0a\x16\x69\x3a\xee\xc2\x17\x35\xec\xf7\x3a\xbb\x15\xcb\x8d\x1f\x16\x57\x2c\x4f\x1d\xb2\x7d\x2e\xfe\x74\x7d\x33\xaa\xa0\xe6\x39\x52\x4b\xc1\xdb\x45\x08\x68\x78\xe4\xc1\xf9\x32\x37\x05\xec\xfb\x50\xf1\x4b\x50\x5a\xd2\xca\xc4\xc9\x72\xd5\xd4\x29\x0b\x30\x3e\x76\x8e\xd4\x62\x20\xbe\xa4\xe7\xd4\x55\x60\x37\x35\x80\xa3\x12\xc0\x85\x54\xb0\x28\xc0\xce\xdb\xa6\x86\xcb\x24\xae\x7f\x0f\x05\x43\x51\x65\x3b\xe0\xfd\xcc\x31\x0b\x34\x74\xee\x4c\xd4\xbb\x27\x5b\x03\x0e\x38\xdc\xa4\x5f\x9f\xf9\x52\x88\x59\x11\xa0\x4e\x62\x85\x0f\x3e\xf2\xb5\xde\x21\x86\x17\xf7\xb2\x65\x0f\x3f\x9d\x08\x67\xde\x3d\x02\xa6\x5b\x65\x33\x90\x62\xdc\x99\xad\xde\xc9\xb6\xdc\x3f\xd4\x4b\xbe\xc5\x8c\x63\xd7\x5c\xcf\x35\x14\xcf\x2c\xef\xbf\xaf\x92\xd6\x2d\xdb\x98\x7b\x88\xe9\xa5\xb5\xb4\x32\xad\x5e\x6c\x28\xa8\xcc\x3c\xf4\x94\x0f\x13\x28\x6e\xc1\xaf\xc9\xf6\xab\x52\xcc\xb4\x97\x70\xdd\x2a\xa1\x09\xdc\x7f\xa1\x9d\x65\x5f\x9d\x2a\x18\x5a\x56\x1a\xde\xdd\xed\x39\xe4\xfe\x87\xfb\x8b\xaf\x17\x66\xa4\x41\xa9\x2e\x79\x02\xfe\x2b\xc2\x48\x90\x39\x11\x04\x72\xfc\xcd\xc1\x52\xe1\xb9\x51\x93\x12\xe3\x2e\x15\xc4\x2a\x21\x2d\x6d\x56\x0a\xa3\x1e\xa3\xaf\x0b\x41\x1e\xf8\xf8\xb1\xef\x98\xc6\x3c\xa7\x49\x39\x93\x9f\x23\x3e\xf2\x25\x8e\xce\xf0\x1a\xcf\x68\x43\x55\xa7\x4a\x57\xc5\xd7\xdb\xc7\xe1\x73\xf1\x32\x74\x8c\x5e\x36\x5a\x2a\xf9\xca\x52\x4f\xa1\x2a\x0c\x6f\xaa\x0e\xa6\x25\xe0\xee\xa7\x9b\x78\xd6\x4b\x68\x7f\xec\x01\xd4\xe5\xb3\x7f\x90\xa8\xc4\xba\x9f\xec\x1b\x32\x47\x27\xf9\xbc\x7d\x39\xb2\xbb\x90\xf6\xfb\xd1\xee\xf9\x5a\xec\x13\xdc\x13\xbc\xe3\xd9\xda\xf2\x7a\x0e\xed\xfd\x59\x2e\x08\xc4\x03\x59\x2d\x8f\xfd\x58\x66\x0b\xea\x38\x10\x23\xfc\xf6\xe7\xb3\x98\xc5\xe7\xdf\xca\x5d\xda\x12\xbc\x23\x63\x1d\x46\xc6\xdb\xb2\x93\x43\xf4\x8b\x70\x92\x56\x97\x87\xb1\x50\x08\xe1\x59\xe6\xd1\x0a\x31\xcc\x57\xff\xeb\xcf\x67\x18\x87\xc4\xbf\x95\x63\xea\xeb\xbb\xcb\xa2\xdd\xc4\xbb\x2d\x9b\x78\xec\x0e\xe0\x93\x9f\xf0\x35\xbc\xbd\x2a\xc2\x5b\x98\x7c\x6e\x5d\x26\xf3\xba\x83\x44\x23\xca\x4c\xfd\x9c\x31\x78\x4c\x70\xef\x7b\x1a\x0e\xf8\xda\xd9\x03\xf3\x76\x72\x54\xb6\xb6\x53\xa0\x67\xde\x36\xee\x21\x1d\x03\x36\x3c\x8f\x08\x57\x3b\x34\xb7\xf5\x5f\x73\xff\xdd\x1d\x7c\xff\x48\xa2\xc2\xcc\xbf\x83\x32\xd7\xad\xb3\x9f\x61\x9c\xe8\xb7\xb1\xa9\x11\x12\x31\xa5\xa5\xca\x28\x80\xd5\x7e\x69\xec\x98\x8e\xff\x12\x01\x1f\x8f\xd1\x63\x0f\x35\x27\xa1\xb9\x0d\x00\x35\x25\x94\x7d\x2b\xaf\xf8\xc0\x09\x98\x9b\xad\x84\x14\xdf\xf8\x01\x93\xf4\xe1\x12\x7b\xe5\xd1\xbc\x95\x07\xfe\x4f\x7e\xfa\xa0\xb8\x7d\x4a\x4b\xc2\xc3\x6a\x49\xe0\xdf\xe7\x47\xef\x3a\x6e\xf0\x95\x15\x7a\x0b\x39\x0c\x56\x55\x35\x25\x8a\x1c\xb8\xa9\x59\xd2\x71\x28\x8f\xba\x6f\x09\xa0\x50\x37\x13\x2e\x3f\x36\x44\xca\xee\x7c\x35\x0f\xb9\x59\x96\x2a\x94\x6a\x0f\x4e\x2e\xdb\xf9\xbc\x21\xf5\xe5\xb9\x3f\x72\x11\x6e\x5d\x1c\x9a\x25\xe7\xb6\xfb\x30\xa2\x71\x6c\x33\x24\x8a\x9e\x74\x3f\xe9\x12\xcb\x3f\x72\x87\x2f\xcd\xb3\x29\x86\x7a\xe8\x04\x3d\x4c\xe0\xea\x91\x7e\x35\x4f\x1e\x86\x12\x9f\xc7\xe8\xb7\x8f\x66\xad\x1c\x37\x7f\xce\xe0\x6f\x96\xb4\x21\xc9\x08\xe8\xf1\x81\xcb\x90\xad\x6e\x11\x11\xe7\x92\x7c\xfc\x3c\x2e\x79\xa9\x66\xe0\x93\xf4\x9f\xdf\x86\x60\xcd\xa3\xbf\x15\x56\x2e\xeb\xfb\xf0\x5e\xe1\x80\x34\x5e\xd9\xec\xd2\xeb\x97\x3a\x29\xed\xcc\xf5\xb7\x18\xb1\x77\xbf\xd1\x1a\x8a\xaa\xfa\xb3\x44\x73\x84\x64\x7a\x25\xc0\x92\x7f\x1c\x1d\xa1\x53\x77\x37\x38\x7a\x9a\xd0\x3f\x74\xc9\x05\x9a\x61\x73\x87\x38\x14\x9f\xa1\x73\xb4\x21\x66\x33\x2c\x38\xdc\xc1\xb7\x9f\xe1\x05\x1e\xce\xc8\x1d\x69\x8f\xec\xdd\xba\xa4\xe3\xa1\xbb\xb6\x74\x00\x9b\xaf\x64\xfc\xb1\xe7\x86\x9b\x2b\xf9\x90\x04\x78\x20\x5a\xee\xef\x02\x48\xc2\x54\x64\xae\x75\x9e\x59\x8a\xc2\x75\xd1\x43\x98\x51\xf0\x2f\x24\x92\x0c\x62\xf9\xe5\xf7\x90\x9b\x90\xdb\x36\x45\x49\x31\xb2\xef\x28\xc5\x03\x4f\x62\x96\x3c\xde\x87\x3f\xbf\x1a\xdf\x7d\x47\xe6\x9a\x31\xd1\x2a\x7a\xfd\xbc\x72\x3a\x0d\xe5\x9d\x20\x87\xd9\xc6\xb8\xb0\x8d\xfa\xc3\xa3\x78\xad\x0a\xb9\x29\x42\xfc\xf6\x2e\xf4\x6e\xa5\xbb\xc9\x37\xa7\x72\x49\x04\xda\x42\x2c\xd1\x6c\xf2\xee\x33\x5e\xbe\x84\x92\x97\xe5\xbf\x9b\x28\x5f\xaa\xc1\x5c\xc4\xe5\x23\x8a\x1e\x70\xd1\x72\x97\x6a\x63\x0c\x72\x20\xa2\xa7\xaa\x92\x00\x12\x1c\x6a\xfb\x14\xed\xf4\x9d\x2b\x56\x23\xb9\xc1\x6b\xa8\xb2\x35\xdb\xea\xff\x40\xb9\x97\x9a\xb3\x6f\x54\x92\x2d\xe0\x6a\xbf\x88\x36\x3c\xb6\x99\x3c\x6e\x08\x0c\xfd\x8d\x44\x9b\xe5\x16\x51\xf4\x3d\x7a\x88\x32\xd6\x83\x1f\xfd\x6f\x1f\x3b\x92\xe4\x15\xad\xae\x03\x8d\x81\x6d\x0c\xd6\x0f\x21\xe1\x04\x75\x42\x9a\xa6\xe5\x8b\x76\x85\x4e\xb2\x5b\x8b\x3d\x4d\x1d\xbb\x84\x8e\xff\xcb\x9d\xea\x52\xcd\x36\xa6\x5f\x8e\xd7\x95\xa6\x8f\x5e\x63\xfa\x2e\x04\xc6\xa3\x87\xc2\x12\x84\x3b\x23\x2b\xb2\x5a\xbb\x15\xfa\x8d\xa6\xcf\x38\xb9\x1f\xfd\xf7\x08\xcd\x52\xcb\xf8\x33\x3a\x01\xd0\x59\x96\x09\x3a\x41\x34\x79\xab\xac\xcb\xf6\x00\x2a\x37\xf0\xce\x32\x83\xa4\x32\x51\xe9\xb8\xd0\x59\xc8\xe6\xa7\xc2\xa6\x69\x98\xba\x6a\xc1\xc1\x32\x2f\x2c\x20\x2e\x6a\x6d\x17\xf3\xe4\xf9\x35\xb8\x1d\x60\x44\xdc\xc2\xbf\xe4\xe6\x38\x89\xa6\x4f\x8a\x46\xcf\x13\x78\x79\x02\xc3\x81\x8e\xd3\x8a\x8f\x88\x72\x44\xe9\x85\xff\x3e\x3e\x46\xff\x37\x15\x48\x06\xe1\x8f\x1d\x7b\xe4\x00\xd5\x1a\x86\x9f\x26\x5a\xb6\x58\x7c\xfd\x90\x8c\xa3\x34\xa0\x17\x2a\xae\xeb\x2e\x88\x83\xdf\xc4\x85\xaf\x8b\x88\x73\xcb\xdb\xae\x0d\x0e\xeb\x62\x9c\xb7\x60\x4a\xe6\x69\x27\x49\xc8\x24\xbd\xe7\x96\x87\x53\x72\x06\x7a\xfc\x20\xed\x6d\x13\x7f\xc2\x02\x75\x28\xe5\xeb\x66\x3d\x27\xdb\x70\x68\x3c\x0d\x3f\x76\x02\x93\x67\x59\x42\xdc\x2e\x7e\x84\x2a\xa8\xd1\xfb\xcc\x7b\xb3\x65\xf4\xf6\x74\x4f\x7e\x4c\xc4\x8c\xe7\xcf\x9f\x45\x83\xdc\x82\x19\xb5\x2b\x1c\xa3\xf9\x9f\xc1\x8c\x79\xf2\xd9\xe1\xcc\x18\x2f\x56\x60\xc6\x7c\x51\x76\xf0\x64\x7d\x5d\xba\x75\x19\x22\x33\x5d\x3e\x74\x3d\x2c\x07\xe6\x6b\x53\x20\x12\xca\x0b\xf7\x14\x5e\x7b\x09\x97\x34\x1b\xe2\xdf\x21\x37\x16\x52\xa8\xe7\x03\xc1\x86\xae\x7f\xaf\x25\x16\xb4\xf5\x87\x0d\xe3\xe3\xee\xa3\x61\x76\x02\xbd\xc6\x57\x8e\xe6\xdb\xf8\xac\xe7\x22\xce\xbd\x06\x3c\x9b\x0d\xde\xca\x62\x35\xbe\x75\xd3\x4a\xab\x0c\x12\x34\xcb\x27\x11\xce\xfb\xea\xc3\xb4\x5c\x1e\x2c\xc4\x13\x62\xb4\x93\xe1\x7a\x6f\x4c\xf6\x05\x2d\xba\xa1\xb3\x83\xab\x9a\xa2\x1f\x7e\x88\xde\x44\x8c\x88\xf9\x8c\x64\xa5\xa0\x7a\xee\xcf\x35\x64\xae\xec\xf2\xd7\x44\x2a\xc1\xb7\xd1\x01\xfa\x93\xb8\x25\x16\xe9\xcd\xcb\x0d\x11\x04\xe1\xa6\xe1\x15\xbc\x68\x8a\x25\xc2\xa8\x26\x15\xd1\x86\x7d\xe3\xde\x87\xa5\x4c\xff\x40\x6f\x82\x88\xf2\xb9\xd6\xa1\x32\x6a\x38\xe7\x83\x37\x4e\x35\x8a\x04\xde\x04\x72\x08\x4d\x2d\x6f\x10\x09\x11\x32\x37\x87\x28\xcc\x62\xd1\x12\x7c\xa3\xfb\x9b\x9b\x41\x94\x29\xc2\xa0\x8a\x6a\x74\x91\xd4\x89\x3f\xb8\x95\x4a\xd9\xdc\xfe\xac\x2d\x5f\x0f\xce\x3c\x4d\x64\xae\x53\x30\xae\xdc\xe5\xd3\x50\x21\x34\x02\xe8\x3b\x5d\x68\xff\x04\x4a\x0a\x4d\xfc\x61\x77\x42\x69\x97\x66\xe8\x67\xa5\xcd\xd2\x88\x2c\xae\x3c\x91\x0d\xbc\x99\x72\x57\x08\xb3\xed\x8a\x0b\x92\xcb\xe8\xe4\xfa\xa2\x2b\xcd\xb6\x0f\x87\x99\x96\x1d\x1e\xd3\x92\x38\xc0\x2c\x5d\xcd\x44\x26\x7e\xe9\xae\xa5\x5a\x56\xd3\x1e\xb4\xbf\xdd\x19\xef\x99\x52\xf5\xd1\xde\xa7\xdb\x8a\x6d\xfa\x5e\x71\x2b\x36\xee\x3e\xe8\x96\x36\xeb\x7f\xdb\x2d\x6a\xb7\xcf\x2b\x6f\x71\xfb\x5d\xd5\x5c\x6f\x57\x6b\xf5\xe0\x4a\xab\xc5\x3a\xab\x83\x41\xbf\xbd\x5e\x2b\xe8\x4b\x80\x2c\x50\x7d\x92\x2f\x6d\xe9\xc1\xa3\x4e\x9d\xd1\x7d\xca\x8a\xe6\xf7\x80\x4a\x7a\x04\x9d\x58\xdd\xd3\x7d\x1b\xf0\x2e\xf9\xa4\xfd\x9c\xf8\x45\x72\x43\x4b\xbc\xbb\xef\xeb\x0e\xfd\x20\x0b\x7c\x5e\xfa\xf5\x20\xb0\xc3\xdb\x62\xe8\x6b\x90\x20\xd9\x2a\x16\x2f\x4f\x15\x7e\xed\xef\xb6\xfb\x52\x57\xd2\x35\x7f\x2e\x08\x9d\xa4\xfa\x15\xc0\x9c\x7a\x6b\xc7\xf7\x2b\xbd\xfd\x53\xec\xeb\x8b\x0f\xa6\xfd\x0b\xcf\xf8\x14\xbb\x7b\x9b\x28\xb1\x15\x49\xfc\xe9\x18\xf5\xbc\x26\x84\x4e\xd0\xc7\x7c\x9f\xa4\x65\xcd\xe3\xe6\xa6\xb8\x79\xef\xdb\x5d\x43\x70\x1e\x3f\xb0\x09\x5b\xd6\x54\x8d\x40\xe5\xf4\x1d\xef\x03\xc6\xd3\x2c\x01\x55\x22\xf9\xb8\x14\x6d\xc4\x68\x2d\xe8\x8d\xfe\xbf\xe8\x54\xb0\x98\x6f\xe0\xcb\xd2\xc0\xc3\x85\x4c\x1b\x2a\x74\x0e\xe7\x6d\x0a\xad\xb1\x4a\x6e\x08\xbc\x64\xe8\x27\x4c\x19\x23\x26\x6c\xf4\x96\x48\xc5\x08\x94\x1d\x27\xd9\x69\xab\xb4\xf7\x2d\x93\x52\xd0\x44\xdc\xd0\x8a\xb8\x73\xc9\x89\x36\x2c\x96\xee\xf8\x6c\x49\x04\x89\x8b\xac\xa3\x53\x63\x33\x41\x95\x31\x28\x5e\x6c\x90\x9c\x71\x1b\x7e\xc1\xe9\x78\xa1\x96\xba\x9f\x30\x25\x12\x35\x94\xd9\x3b\xa9\x48\x2d\xb9\x24\x71\x07\x87\x16\x5e\x79\x9c\x12\x0c\xe0\x42\x9e\xf6\x6a\x84\xbb\x06\x67\xf2\xd8\x38\x33\xcf\x00\x72\xa1\xcd\xb2\xba\x85\xd9\xda\x52\xec\xb6\xe2\xa8\x84\x8c\x4b\xac\xa8\x76\x20\xc2\x35\x96\xad\x54\x64\x85\xaa\x65\xcb\xae\xe3\x81\xc0\xa6\xc2\x50\xbc\xb7\xd9\xda\x53\xad\x1a\x31\xa2\x36\x50\x49\x5e\x53\xd2\xf9\xbc\xb8\x01\x70\xbc\x55\x08\xd7\xa6\xa4\x26\xbc\x85\x69\xcb\x7c\xae\x30\xa3\x6b\x6b\x7d\x4d\x93\xed\x12\xd7\x7b\xe9\x3f\xa3\xd6\xe4\xba\x6b\x32\x49\x47\x7c\x1e\x59\x56\xdc\x95\x75\xd3\x15\xbc\x0a\x8b\x05\x51\xc7\x25\x5f\x38\x86\x13\x3f\xfd\x15\x77\x1f\x17\x0f\x95\xf5\x1c\x01\x62\xb6\x11\xc2\x46\xb9\x3f\xb4\xd3\xa3\x23\xfc\x3b\x52\xea\xfb\x51\x79\x51\x0a\x4f\x2c\x0c\xe6\x2a\x1d\xb8\xfd\x3f\x54\x91\xeb\x8a\x92\x1c\xc1\xdd\x42\x40\xb3\xd2\x87\x6a\x6f\x2e\x3a\x34\x73\x64\x98\x77\xca\xe9\x34\xc3\x6c\x93\x61\x70\x5b\x56\xf1\x59\x34\xb7\xe5\x92\x03\x29\xf1\xfd\xa8\x43\xe5\x02\x5b\xf4\xe5\x17\x1d\xc8\x11\x3e\xa5\xe2\xd6\x2c\xe1\xc2\x30\xfb\xf0\xc4\x3e\xa9\x21\xc3\x7c\xd0\x93\x25\x33\xcc\x08\x7e\xd8\xdb\xb2\x00\xe4\xd2\xdf\x89\x07\xf6\x98\xf9\xf7\xa3\x2e\x29\x0b\x0b\xdf\x9b\x27\x94\x62\x53\xae\xd7\xa2\x7d\x8c\xfe\x42\x91\x7b\x95\x4d\x4d\x5a\xc3\x19\xd0\x21\x97\xff\x0a\xc6\xec\x17\xab\x30\xdf\xa9\xa7\xba\xa3\xd2\x7c\xb7\xfe\xea\x01\x77\xf0\xf2\x22\x26\xfb\xd5\xab\xbf\xed\x90\xd9\x15\x93\xbd\xc6\x4e\x2f\xd8\xed\x5b\xc2\xeb\x3f\xb7\x84\x7d\x4f\x3e\x77\x97\x05\x5d\xa0\xf7\xf3\x3d\xf4\xff\x03\x00\x00\xff\xff\xa7\xa7\xb9\x3e\x99\xa1\x00\x00" +var _epochsFlowepochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\xbd\x6b\x73\x1b\x37\xd2\x28\xfc\x5d\xbf\x02\x71\xd5\x9b\x90\x1b\x8a\xb2\x37\x6f\x6d\x9d\x52\x59\xce\x91\x25\xd9\x51\x39\xf1\x4d\x4e\x72\xaa\x52\xae\x18\x9c\x01\x45\xac\x86\x00\x03\x60\xc4\x70\x6d\xff\xf7\x53\x68\xdc\x31\x98\x21\x29\x39\xbb\x7b\x1e\x7e\xb1\x45\x02\x8d\x46\xa3\xd1\x37\x34\x1a\x74\xb9\xe2\x42\xa1\x67\x2d\xbb\xa6\xb3\x86\xbc\xe3\x37\x84\xa1\xb9\xe0\x4b\xf4\xf0\xcf\x67\x3f\xbf\x7c\x7e\xf9\xf4\xc7\x8b\x77\xaf\x5e\x5c\xbc\x3c\x3d\x3f\x7f\x7b\x71\x75\x75\xe0\x3a\x34\x7c\x9d\x36\xfe\xf1\xd5\xaf\x7d\x0d\x2f\xcf\xdf\xe1\x59\x43\xae\x14\xbe\xa1\xec\x3a\xee\x71\x79\xfe\xee\xf4\xe9\x8f\x17\x57\xef\x4e\x5f\x5c\xbe\x7c\x5e\xe8\x7a\xd6\xb4\x52\x11\xf1\xe6\xcc\xf5\x7a\x73\x56\x68\x75\xfe\xe2\xb9\xfb\xfd\xfc\x45\x09\xcc\x33\x42\x64\x3c\xee\xb3\x8b\x8b\x2b\xd7\xec\xe0\xe8\x08\xbd\x5b\x10\xa4\xf8\xea\xb0\x21\xb7\xa4\x41\x72\x89\x85\x42\x15\x67\x4a\xe0\x4a\xa1\x25\x66\xf8\x5a\x23\xae\x16\x04\x35\x74\x4e\xaa\x4d\xd5\x10\xc4\xe7\x88\xac\x78\xb5\x90\x53\x74\xc9\x60\x94\x89\x06\x65\xbe\x43\x58\x10\x68\x2f\x97\xb8\x69\x88\x54\xa8\x65\x54\xe9\x3e\x8a\x2e\x09\x5a\x2f\x88\xfd\x9d\xd6\x84\x29\xaa\x36\x48\x69\x12\xa1\x11\xf4\x21\xd0\x52\x43\x63\x44\xad\xb9\xb8\x41\x7c\x45\x04\x56\x5c\xc8\x31\xa2\x12\x49\x85\x15\xad\xa6\xe8\x95\xfb\x16\x2d\xf1\x06\x71\xd6\x6c\x50\x43\xf0\x2d\x41\x5c\xa0\x7f\x72\xca\x60\x04\x07\x42\x83\xc3\xca\xe0\x87\x66\xbc\x65\x35\x16\x94\xc8\x1c\xca\x8c\x20\xf2\x4f\x52\x29\x52\xa3\xba\x15\x7a\xda\x98\xd9\x4e\x73\x2e\xd0\x2d\x16\x94\xb7\x52\x03\x5b\x52\x59\x93\x25\xc1\x8c\xb7\x42\x4e\xd0\xac\x55\x7a\xbc\x0d\x12\x64\x89\x29\x43\x76\xf8\x6c\x82\x2d\x53\xb4\x81\x1f\x0c\x4c\xc2\x6a\x39\x3d\x38\x3a\xd2\x00\x2f\x02\xe9\xe4\xaa\xa1\x0a\x51\xa6\x38\xfa\x0e\xad\x16\x58\x12\x79\xac\x9b\x7c\x3a\xb9\xf3\x07\xba\xa3\x8b\xd7\xaf\xce\x7e\x40\x2f\xd1\xf6\xcf\x27\xdf\xf8\xdb\x47\x68\x3a\x9d\x42\xff\x43\xfd\x41\x8e\x93\xe1\xaf\x4f\x87\xe8\x8a\xa8\x76\x85\xf4\xff\xce\xf8\x72\x49\x95\x26\xde\xe1\xa7\x4f\xbe\xd7\xbd\x90\xd6\x10\x1e\x8d\x11\xb2\x9b\x04\xbd\xfe\xe1\xf4\xea\x42\x7f\xf9\x92\xd7\x24\x30\x06\x90\x0d\x48\xac\x38\x92\xed\x6c\x49\x95\xe6\x13\xc0\x53\x90\x3f\x5a\x22\x95\x84\x15\xd4\xb4\x7f\x79\xf1\x7f\xde\xd9\x05\x30\x8b\xac\xe1\xa9\x05\x95\x86\xd6\x53\x74\xaa\xcc\x1a\xb1\x1a\x78\xd6\xff\x32\x81\xaf\x61\xa1\xf2\x6d\x22\x88\xe4\xcd\x2d\x91\xd0\x42\xc3\xe3\xad\x92\x0a\xb3\x5a\x63\xd0\xc1\x04\xb3\x1a\xd5\x44\x11\xb1\xa4\xcc\xf6\xc9\x38\xc5\xe1\xca\xc8\x9f\x0a\xf9\x9d\x35\x85\xbd\x5a\x44\x80\x2c\xa9\x92\x01\x3f\xb3\x28\x92\x88\x5b\x5a\x11\x44\x6e\x09\x33\x6d\x31\x65\x1a\x13\x33\xe3\xe1\x51\x61\xc4\x09\x5a\x2f\x68\xb5\x40\x94\x51\x45\xb1\xb2\xc8\x2a\x81\x99\xa4\x8a\x72\xa6\xe9\xed\xa6\x6c\xf0\x32\x23\xbf\x06\x4a\xda\x05\xfc\xfb\x18\x5d\x5d\xbc\xfb\xf9\x75\x58\xbd\x5f\x17\x84\x45\x84\x45\x33\x72\x4d\x99\x81\xbd\xc2\x42\xd1\x8a\xae\x30\x53\x12\xf9\x5d\xec\xf0\x31\xfb\x83\xa8\x29\x3a\x37\xfb\x53\x03\xd1\x10\xc3\x02\xc9\x0c\xc6\x4a\x90\x95\xee\xd5\x9d\x1c\xc8\x2e\xd3\xb6\x6d\xb0\x98\xa0\x8a\x37\x0d\xa9\xf4\xbc\x40\xfc\xf0\x9a\x48\xc7\x4d\xb7\x5c\x4f\xde\xc2\xa0\x02\x55\x46\x36\x7f\x23\x91\xe0\x5c\xa1\x3f\x5a\x2e\xda\x25\xaa\x88\x50\x74\x4e\x2b\xac\x08\x2c\x72\xc5\x99\x24\x4c\x1a\x91\x61\xe0\x89\xd6\xcc\xa9\xa6\x52\x09\x3a\x6b\xf5\x76\xb9\x21\x1b\x74\x4d\x98\x66\x66\x4d\xd3\x95\xe0\x8a\x57\xbc\x41\xa3\xf3\x17\xcf\xc7\xc0\xd2\x44\xa1\x76\x05\xfd\x04\x66\x35\x5f\x6a\x78\x33\x82\x2b\xce\xa6\x8e\x98\x30\x71\x98\x2b\x40\x31\x7b\xa2\xe2\xcb\x55\x43\xd4\x10\xeb\x7a\xce\xf1\x6b\x68\xf6\x71\x3f\xf7\x68\x50\x9a\x6a\x73\x5c\x29\x69\xb6\x88\x91\xdb\x2b\xc1\x2b\x22\xa5\x65\x1a\x0d\x6f\x1b\xdf\x18\x8c\xec\x80\x09\xd3\x7c\x37\x46\x67\xaf\x7e\xfa\xe9\xf2\xdd\xbb\x8b\xf3\x6d\x8c\x33\x49\x64\x3d\x95\x68\xde\x36\xcd\xc6\xad\x7c\x0d\x83\x75\x86\xd6\x7c\x10\xed\xac\x53\x34\xc7\xb4\x69\x05\x88\x10\xc2\x14\x11\xe9\x38\x73\x2e\xe2\x09\x00\x1d\x78\xc6\x50\x66\xc6\x35\xac\xbf\x9e\x31\x56\xbb\xb0\xb4\x1e\xd7\x20\xe9\x56\xcb\x13\xb4\x5d\x01\x6f\x6b\xb2\xd6\xad\x20\x7e\x37\x4a\x84\x51\x25\xa8\xa2\x15\x6e\x3c\xde\x9a\xe1\xd6\xb4\x69\x50\x85\x5b\x69\x60\x54\x0b\xad\x8c\x14\x47\x0b\xdc\xa8\xe9\xc1\x01\xae\xf4\xfa\x8c\x70\xd3\x8c\x03\x03\x68\xed\x6d\xd6\xe1\xe3\xc1\x81\x16\xfe\x71\x2b\xc2\xda\xa5\x59\x25\x58\x9d\x63\xf4\xf3\x25\x53\xff\x0b\x7d\x3c\x70\x9a\x22\x01\xa9\x49\xe5\xec\x99\x9f\xcf\xde\x5d\xbe\x7a\xd9\xdf\x0e\xf4\x0b\xc8\x85\x2d\x6d\x0c\x1b\x40\xa3\xcf\x3d\x08\x6a\x6d\xf0\x96\x37\xbb\xa0\xf7\xf2\xd5\xcb\x8b\xfe\x5f\xcf\x8c\x04\xe0\x62\xa8\x89\xdb\xd3\xfd\x68\xff\x49\xaa\x16\xc4\x48\x6f\x93\x5f\x88\x30\x82\x62\xb0\xd5\x29\x7c\x11\x4f\xfd\xc8\x1a\x6c\xb1\xb0\x4d\x37\x2a\x95\xb0\xa5\xb5\x5c\x59\xeb\xdd\xb2\xee\xdf\x77\xd0\xdd\x83\xb5\xda\xef\xd2\xef\x75\xb3\x69\xe7\x94\xe1\x86\xfe\x8b\xd4\x7d\xda\xa2\x5d\x55\x7c\xa9\xf7\x83\xd9\x49\xdd\x15\x02\xb4\x82\x5a\x1a\xf9\xf9\xfa\xff\xb8\x59\x55\xbc\x85\x9d\xd7\x03\x1a\xfd\xd4\x4a\xa5\x8d\x34\xce\x08\xba\x16\x04\x9b\x5d\x8a\x61\x4b\x25\xc0\x72\x40\x55\x2b\x84\xc6\x22\x42\x51\x7f\x6c\x33\xc3\x36\xff\xf8\xff\x27\x07\x09\x90\xcb\x5d\xe6\x8b\xd6\x54\x2d\x10\x6e\x1a\x90\xef\x88\xb2\x39\x17\x4b\x58\xd6\x69\x0a\x8c\x55\x4d\x5b\x6b\x4b\x2e\xfe\x56\xf7\xb9\x3c\x9f\x78\x13\xe1\x86\x6c\x26\x4e\x90\x95\xfe\xc6\x75\x2d\x40\xc2\x0a\xde\x90\x49\x02\xca\x81\x88\x30\x98\xa0\x35\xa1\xd7\x0b\x35\x01\xd9\xb0\xe4\x82\x04\x9c\x60\x64\x36\xe7\xc7\xe8\xb7\xae\x9b\x32\x7d\x69\x7f\x7d\x9f\x91\xe4\x1d\x30\x84\x90\x0a\xdd\x52\xb2\x46\x23\xaa\x67\x25\xe9\x2d\x19\x3b\x3d\x50\xe2\x06\xfd\x81\x5e\xbf\x50\xb2\xee\x21\xb6\x86\xdc\xe0\x3b\x01\x66\xb8\xd9\x02\xd8\x6a\x6b\x84\xa5\xa4\xd7\x6c\xa9\x39\xa1\x8f\xc5\x2e\xb0\x36\xcc\x1b\x02\x8d\xac\xb0\x6e\xa8\x54\x09\x4c\x41\x56\x82\x48\xa2\xe5\xb9\x66\x45\x0f\xde\xa8\x7c\xb3\x77\x34\x4b\x80\xa4\xd7\x6c\x71\x79\x2e\xed\xe0\x56\x1d\x2d\x70\x0a\xd1\x82\x98\x18\x76\x32\x36\x86\x59\x3c\x63\x2e\x82\xfd\x11\xf1\xad\x15\x53\xd6\x45\x94\x76\x15\xbd\xc7\x38\xb5\xff\x2b\xad\x9f\xe4\xad\xa8\xc0\x85\x33\xb6\x04\x23\x52\x1a\x23\x43\xe3\xa6\xa7\x4b\x70\x4d\x04\x92\xc4\x1a\x43\x08\x37\xd7\x5c\x50\xb5\x58\x1a\xec\x12\x88\x43\x52\x40\x7f\xcc\x18\x57\x30\xe6\x31\xba\x52\xda\x6a\x2b\x20\x55\x13\x5c\x37\x60\x0d\x6b\xd7\x52\xaf\x81\x51\xbc\x76\x05\xb4\x93\xeb\xcd\x22\xc5\xb5\x0c\x70\xca\xb2\x76\x6d\x1c\x06\x09\xec\xc8\x1a\xb6\xf2\xed\xdc\x8f\x64\x7c\x2d\x52\xd1\x39\xb5\x50\x88\x58\x02\x02\x38\x58\x6e\x86\x1f\x59\xbb\x9c\x11\x31\x4d\xa7\x0e\xc6\x08\x36\xb8\x05\x15\x8f\xf8\x4c\x0b\x64\x0d\x3f\x92\x9d\x7a\x0d\x25\xc1\x5a\xd1\xcf\x1a\x5e\xdd\x18\x4a\x02\x6c\x27\xc8\x12\xd8\x4e\xaa\xa1\x6b\x7a\x4b\x98\x27\xcf\x04\x51\x85\x2a\xcc\x90\xc4\x73\xd2\x6c\x7a\xcc\x1a\x37\x55\x0f\xf1\xfc\xc5\x73\x50\xdf\x8f\x9e\x75\x37\x4b\xde\xe6\xef\x3b\xb4\xf9\xae\xd3\x06\x9a\x8c\x0b\x3a\xaa\x68\x4c\x0e\xeb\x28\x88\x55\x78\x2d\xe5\x41\x06\xf7\x32\x68\xaa\x08\x10\x44\x00\x00\x9a\xde\x79\x91\x25\xdc\xc3\xa2\x1e\xee\x02\x4b\x34\x23\x84\x05\x8e\x1a\x52\x61\x06\x8b\x51\x41\xc6\xec\xa8\xbb\xc8\x1f\x2d\x6e\xdc\x6a\xb9\x4e\xb4\xab\xc2\x56\x82\xdc\x52\xde\xca\x98\x85\x01\x8f\x5d\xd5\x97\x46\x4a\x10\xd9\x36\xca\x89\xd0\x37\x67\x08\x5f\x5f\x0b\x72\xed\xfd\x0c\x3d\xc5\x4c\xe6\x79\x01\x96\x00\x8b\xa5\x59\x24\x91\x90\x20\x15\xa1\xb7\xa4\x86\x69\xe3\xc8\x9b\x72\x12\x2d\x81\xf2\xe6\x0c\x81\x57\x6c\x3c\xa9\x82\xd3\x04\x36\x33\x6c\x7f\x27\x53\xad\x5f\x44\x64\x34\x6d\x27\xe5\x7a\xc5\xde\x9b\xb3\x92\xe0\x33\xc4\xd0\x4b\xb2\x6a\x67\x0d\xad\xb4\x76\x95\x81\xdb\xac\x8c\x31\x1e\x0c\x61\x15\xaf\xf5\xbe\x95\x68\xb6\x31\x76\x50\xc3\xd7\x87\xd7\x3c\x95\xda\x62\xb3\x52\x1c\x35\x74\x26\xb0\xd8\x80\x1b\xc2\xd0\x82\xfc\x79\x68\xbb\xa7\x26\xc0\x73\xc1\xb5\x18\xf2\x63\x6b\xee\x55\x5e\xa1\x5a\xfa\x4f\xd0\x9c\x37\x0d\x5f\x6b\x41\x61\x06\xd6\x1e\xc5\x2d\xad\x35\xd7\x68\x84\x3d\xc8\xfa\xe6\xfa\x75\x3b\x7b\x41\x36\x9a\x0c\x46\xb0\xbe\x9f\xe4\xfb\xf0\xcc\xad\xa6\x15\x74\x15\x5a\x12\x85\x6b\xac\x30\xc2\x33\xde\xaa\x74\xcd\xd2\x8d\x71\xda\x34\x68\x41\xa5\xe2\x02\xfc\x0c\x63\xee\xf8\xee\x10\x8a\xe3\xda\xbd\x5a\x11\xb1\xc4\x8c\x30\xd5\x6c\x3a\x3b\x47\x2a\xd1\x56\x76\xeb\xfc\xe4\xba\x7e\xec\xae\x8d\xb1\x2d\xe7\x34\xda\x40\x01\x99\x1c\x68\x43\x54\xce\xfb\x05\x35\xa7\xd5\x59\x2b\x2d\x6b\x3a\xf7\xda\xba\xaf\x66\x2e\xd2\xdb\xbf\xa5\x11\x34\x00\xa7\xb1\x06\xad\x20\x17\x24\x1a\x46\x58\x2a\x2c\x12\x03\x68\xc8\xfe\xd9\x0d\x24\x61\xf5\x5e\x00\x89\x37\x12\x71\x5b\xf5\x7a\x1e\x16\x59\xdd\xee\x62\xdb\x00\x8a\x2b\xdc\x20\x41\xd6\x58\xd4\xd6\xe3\xd5\x5a\x75\x85\x69\x8d\x34\x77\x6d\x5f\xcb\x5b\x2c\x0c\x94\xb7\x06\xc8\x31\xfa\xf9\x19\xfd\xb3\x34\x96\x19\x05\xe1\xa5\x5e\xf9\x7c\x30\xed\xb4\x63\x08\x54\xf9\xcd\x02\x86\x97\x96\x54\x54\x49\x54\x93\x46\x8b\x3d\x2e\xca\x6e\x9b\xc6\xc2\xc0\x3f\x35\xe0\xcb\x66\xb1\xc5\xf1\xa9\x20\xf8\xa6\xe6\x6b\xf6\x3e\xc3\x52\xe0\xea\x46\x22\x3a\xf7\x14\x59\xe0\x5b\x62\x94\x0b\x60\x69\xc8\x31\xb8\xae\x01\x13\xf9\x1a\xd3\xfa\x18\x3d\xe5\xbc\xe9\x12\x83\x8b\x6b\xcc\xe8\xbf\x8c\x20\xe7\xf3\x60\x11\x06\x7b\x13\x02\xc8\x56\x56\xca\x04\x80\x8f\x3d\x82\x8c\xc1\x48\xf0\x96\xd5\x48\xf0\x19\x65\x48\x72\x01\xbb\xc4\xdb\x7c\x03\x3b\x70\x57\x23\xb4\x8b\xfe\x1b\x23\xfa\xcf\x82\xe8\x8f\x04\x71\x38\xf7\x70\x31\x8a\x5e\x4a\xed\xa4\x0a\xba\xc3\xc7\xf2\x1f\x4b\xc9\x2b\x8a\xc1\x16\xb1\xb6\x37\x3a\x8f\x82\x73\x2f\xc8\x06\x3d\xf7\xc1\xb9\x4c\x45\x83\xb6\x30\xac\x18\x2c\x46\xa3\x23\xbd\x49\xa8\xb4\x08\x2f\x28\x82\x48\x03\xc0\x3e\x75\x0a\x18\x6b\xbf\xa3\x26\x7f\x1e\xa3\x86\xb0\x6b\xb5\x40\x87\xe8\x51\x2f\x01\xea\x9b\xeb\x54\x03\x84\xc9\x52\x46\xd5\xa8\x63\x22\xa0\xf8\x13\x8b\xb8\xfc\xa7\x5c\x5c\x65\xbf\x67\xb2\xa7\xdb\xbb\x20\x3f\xb2\x46\xa5\x6d\x9f\x35\xd9\xc7\xd1\x49\x3b\xee\x66\x23\x24\x7d\x3a\xb4\x1c\xc7\x9a\xca\xd0\xab\x99\x4f\x9d\xcd\x76\xe2\x74\x50\xb7\x09\xe8\x9e\x13\x20\x6f\xe1\x47\x47\x59\xdd\xc2\xfd\xbf\xdb\xcc\x12\x18\x9d\x38\x52\x17\x21\x45\x54\x36\xe0\xa2\x2f\xba\x1d\x62\x8a\xa3\x93\x64\x01\xba\x8d\x13\x79\x88\x4e\xd0\x6f\xef\xfb\xda\x80\xa4\x42\x27\x68\x8e\x1b\x49\x4a\x04\xcb\x16\x11\x48\x97\x7d\x57\xe8\xe6\x97\x50\xb7\xf7\x7f\x74\x1b\xda\x75\x43\x27\x6e\x05\x7d\x93\xcf\x07\x9d\x8d\x53\xc1\xa2\x8d\xd1\xbc\x65\x5a\xff\xbf\x8b\x48\x30\xfa\x1d\x31\xb2\xce\x18\x72\x1c\x05\x13\xfb\xe8\x18\x7a\xed\x31\xf2\xdb\x98\xbc\xa3\xdf\xad\xd0\xf7\xaa\x65\x47\x05\x54\x44\x2f\x5f\xb9\x0c\xf4\xde\x48\xc2\xfa\x7a\x14\x23\xbd\x34\x30\xba\xe3\x89\xe8\xaf\x30\x2e\xda\x3a\xb0\xdf\xa4\x72\xf4\x47\x35\xb4\x87\x8b\x28\x24\xac\xf3\x47\xb5\xcf\xb2\x9c\xbf\x78\x0e\xe2\xf9\x05\xd9\x8c\x6e\x3a\xd2\x60\x80\xf7\x6e\x52\xc6\x43\x69\xcc\xd6\xdb\xbe\xa0\x2b\xa8\x34\x07\xeb\x36\x30\xa0\x1d\xfa\x19\x44\xeb\xd9\x75\xb0\xfb\x4f\xeb\x25\x65\x47\x47\x47\x7d\x36\xf5\x19\x67\x73\x7a\x1d\x21\xe5\xb4\x9b\x09\x56\x68\xab\x40\x9b\x7e\x70\xe4\x80\x19\xd2\xf6\xb5\x18\xb0\xc4\xb4\x36\x61\xed\x52\x0b\x0e\x79\xc9\xc0\x60\xef\xb7\xfb\x0a\x43\xec\x68\x5e\xa6\xc3\x58\xbe\x3e\x35\xed\x93\x60\x02\x2a\x05\x88\x0b\xe3\x82\xd9\x57\xdf\x5c\x9b\xa8\xc0\xf6\x21\x5d\x0c\x63\x97\xc9\x05\xab\xca\xd9\x51\x7e\xc4\x6d\x74\x3c\xeb\x6a\x2e\x3d\xde\xa3\x7f\x14\x4d\x46\x73\xb2\xa7\x88\x56\xfe\xe6\x8c\x47\x79\x8b\x57\x9b\x12\x1b\x6d\x4c\x53\x56\x09\x82\x25\x91\x88\xdc\x12\xb1\xc9\x50\x30\xd8\x53\x89\x6e\x71\xd3\x12\x60\x31\xed\xed\xae\x1a\x1a\x58\xea\xd9\x8f\xaf\x7e\xb5\x36\xbb\x6c\x57\xab\x66\xa3\xed\xe6\x6b\xa2\xa2\xc8\x11\x0c\xd5\x37\x2f\xdd\xdf\x74\xbc\xb4\xb8\xbc\x26\xa2\x22\x4c\xe1\x6b\xd2\x35\xdc\xc1\x00\xe9\x61\xa9\xc9\x56\x26\x98\x0c\xac\xd9\x64\x90\xc2\x93\x9d\xf0\x2c\x6e\xe7\x0c\x5b\x2d\xdb\xd3\x6f\x86\xba\xa4\xf3\x48\xfa\xa6\x3f\x0d\x01\x71\x53\x4d\xba\xbb\x2f\x8b\x1d\x3b\x74\x30\x5d\x3b\x5f\x77\x3b\x0f\x91\x09\x9d\x0c\x52\xb1\x5f\xd2\xfd\xc0\x9b\xda\x30\xf4\x07\x7f\xb2\x38\x35\xb2\xea\x83\x13\x5d\xde\xd0\xae\xe0\xfb\x56\xc0\x01\x8b\x0b\x2d\xc4\x02\xcf\x79\x00\xce\xe5\x08\xcd\x9d\x44\x3d\xb6\x82\x70\x07\x59\x6b\x77\x41\x7a\x00\xee\xbb\x59\x49\xcc\xb8\xea\x13\xc6\x85\xb0\x0a\x8e\x23\x24\x82\x54\x5c\xd4\xce\xd7\xf6\x91\x12\x70\x6c\x6c\x50\xd2\x84\xf4\x4c\x9e\x94\x87\x06\xe6\xbe\x19\xcb\x04\x26\x8c\x04\x0a\xc3\xbd\x25\xaa\x15\xf6\x3c\x2e\x05\x0b\xf3\xf1\x31\xec\x34\x7e\xa3\x9d\x41\xda\x68\x77\x94\x6a\x32\xb0\x6f\xb4\x3f\xde\xb2\xda\x37\x30\x3c\xfe\x53\x37\xa2\xa3\x35\x86\xd1\x8b\xf0\x8d\x66\x07\x69\x02\x96\xd7\x82\xaf\xb5\x84\xaf\x29\x70\x32\x16\x1b\x0f\xad\xe6\x44\xfb\x3e\xca\x38\xbd\x26\x48\xdf\x70\x5c\x6b\xbc\x40\x5e\x41\xf6\x97\x5d\x75\x73\xf4\x4c\xa5\x6d\xd1\xd1\x71\x5a\x1b\x5f\x13\x95\xc4\x8d\x46\xbf\x9b\x09\x9e\xa5\x3e\xcd\xf8\x38\x0d\x2f\x7d\x1f\x6d\x6c\x3a\x07\xbe\x71\x34\x3b\xf7\x58\x83\x75\xde\xcc\xa7\x76\x9a\xd3\x19\x17\x82\xaf\x1f\x7f\xfd\xd1\xc0\xcc\x40\x7e\x7e\x32\xd2\xd4\x3e\x36\x7d\x1c\xb4\x2b\x43\x9a\xd7\x58\x2d\x72\x61\x22\x60\xc1\x0a\xe3\xfe\x16\xcf\xe0\x7d\xb6\x8b\xa2\x9e\x8c\x36\xf9\xc6\xba\xc2\xe6\x50\x61\xc9\x6b\xb3\xda\x69\x50\xcd\x6e\x2d\x1b\x58\x0e\x61\xba\xce\x52\x7a\x80\xe5\x7d\x06\x76\x10\xbe\x25\x39\xe9\x19\x59\x87\x2d\x97\xfc\x18\x4f\x7e\x25\x48\xd1\x20\x33\xe7\xaf\x17\xd1\xe4\xd1\xc9\x09\x1a\x3d\x44\x58\xba\x65\x44\x9f\x3e\x25\x1d\x47\xd1\x88\xde\xe9\x7a\x72\xd2\x0f\xf0\x10\x8d\x1e\xc5\xf0\xbe\xfe\x3a\x81\x57\x02\xf7\xd8\x82\x5b\x09\xbe\xe2\x92\xd4\x31\xbc\xd1\x78\x7c\x9c\x3a\x88\x08\xa1\x07\x67\x46\x42\xc0\x22\x6c\xf2\x98\x28\x6c\x49\x97\x04\x39\x37\xa7\xd3\x04\x39\xe0\xb6\x35\x17\x3e\x9d\x04\x7e\x8c\x65\xc2\x83\x02\x47\xfc\xa7\x78\x38\x1b\x17\x9d\x94\xd8\xb9\x40\xd4\xf7\x19\x1c\xe0\x32\x29\x89\x50\x68\xd4\xf9\x41\x7f\x96\xf9\xaa\x9c\x9c\x94\x16\x6b\xd2\xd3\x59\x4a\xd0\xea\x6e\x65\x34\xef\x06\xa4\x41\xd3\x2c\xa9\x5c\x62\x55\x2d\xc2\xa1\xbd\x05\x29\x1f\x74\x60\x8e\x93\x6f\x3e\x1f\x94\x10\xdd\x36\xff\x04\xfd\x7e\x4d\x19\x9d\x1a\x4d\x34\x57\x5c\x9e\x4f\x9c\xee\x48\xf2\x15\x3a\xc2\x11\x22\x5f\xdd\x0d\x90\x5a\xb4\x7e\x04\x0b\xca\x9c\xa7\xfa\xa4\x24\x43\x07\x2a\x5d\x6c\x6a\x08\xbe\xb5\xbd\xc2\xff\xc3\x08\x9a\x71\xa2\x8c\xde\x48\xe5\x83\xc6\xfc\x00\x99\x91\x70\xde\xec\xb5\x4b\x67\x38\xcd\x65\x58\xb7\x8e\x98\xf1\x18\x45\x7f\xec\x32\xdc\x0f\x04\x0b\x35\x23\x58\xed\x3c\xe4\xc2\xf5\xd8\x7f\xd8\x9e\x1d\xf6\x21\x52\x8b\x5b\x06\x2f\xec\xbf\x9e\xb1\xdf\xba\xd9\x98\x28\x23\x66\xa8\x5d\xd5\xda\x55\x90\x7c\x49\x3c\xbf\x38\x8d\x3a\xa7\xa4\xb1\x61\x88\x78\x48\x4f\x12\x58\x95\x9e\xfc\x28\x2d\xf9\x0d\x6c\x98\x16\xd8\x9e\x46\xf0\x87\xbf\xbd\xd2\xcd\x36\x79\x57\xee\xeb\x4f\x58\x9e\x0e\x3b\xe9\x4d\x1e\xfe\x9a\xa6\x59\x63\x66\x37\x9b\x23\x5d\x3b\x5b\x33\x31\x97\x96\x5d\x70\x36\xbb\x5b\x39\x8c\x4e\xe5\x2f\xb8\xa1\x35\x0c\x75\xe6\x6c\x48\xdd\x69\x14\x61\x58\xb0\x2d\x7b\x8d\xfb\xb2\x2c\xda\x19\x98\xb3\xe7\xcb\x60\x12\x82\x8f\x8f\xd1\x83\x97\x64\x6d\x6d\x35\xf8\x0a\x2d\xed\x51\x72\x9e\x02\x85\x64\xbb\xd4\x1c\xe1\x29\xc3\x6a\x38\xd5\x34\x04\x07\x8f\xf9\x41\x26\xde\x0e\xee\x84\xbf\x77\x8e\x62\x4c\x87\x82\x2c\x29\x7b\x59\x22\x46\x0c\x16\x7f\xf3\x3f\x8d\xc5\xb2\xe9\xfd\xa5\xac\xb3\xdf\x0a\x6a\xde\xda\x87\xaf\x18\x59\xff\xf5\xbc\xd5\xf5\xa2\x53\xfa\xed\xce\x66\x8e\x54\x11\x9f\x85\xbf\xff\xa7\x71\xd9\x17\x15\x64\x09\xa5\xfe\x13\x9c\x16\x73\x99\xe6\xba\xbf\x84\xd3\xe2\x50\x4b\x3c\xe1\xdd\x39\xec\x65\x21\xcc\x62\x18\x4d\xff\x92\x85\xa5\xfe\xdb\x39\x6d\x6f\x32\x16\x03\x4f\xc9\xd4\x77\xa7\xe4\xb3\x1f\x5f\xfd\x7a\xd5\x13\x6b\xb2\x5b\x77\x6b\x04\xef\xbf\x8d\xa0\xc8\xee\xa4\x10\x53\x7b\x7c\x82\x1e\x4d\x8d\xcf\x0b\x33\xb0\xba\xdd\x44\x6c\xdd\x9e\x98\x11\xb5\x26\x84\xa1\x7f\x11\xc1\x61\x03\x70\x46\xee\xb3\x52\x5b\xa2\x7c\x09\x86\xa5\x05\x3b\x3a\x42\x17\x0c\x02\x74\x5c\xa0\x9a\x4a\xf8\x2f\x6e\x15\x5f\x62\x45\x2b\x1f\xa4\xae\x70\x53\xb5\x8d\xbb\x7b\xc2\x6a\xb4\xc2\x9b\x25\x61\xaa\x9c\x70\x11\x1b\x03\x16\x92\x3d\x6b\x32\x63\xd5\xa3\xdf\x11\x31\xff\x2b\x1f\x35\x85\x49\x3b\xf7\xb7\xe1\xb8\x7e\xac\x9b\x3a\x47\xf7\xc8\x06\x3c\x8e\xe6\x0d\x5f\xf7\x0c\x33\xde\x02\x54\x7b\x93\x23\x8b\xc8\x04\x29\xbe\x2f\xd4\xcf\x69\xb8\xff\x82\xd9\xd8\xa8\xe5\xc5\x66\x83\x70\xa5\xe8\xad\xf3\xc7\x20\x4d\x54\x61\xa1\x24\xc2\x20\xf8\x38\x23\x21\x5a\xba\x12\xfc\x96\xd6\xa4\x0e\x71\xd0\x6e\x9e\x39\x1c\x60\x90\xb5\xbb\xbe\x65\xa2\x10\x82\x48\x1b\x4b\xf3\x49\x8e\x72\x02\x89\x8f\x1f\xa2\xd3\xec\x42\x48\xe5\x5b\xf4\xe8\x43\x0e\x1f\xee\xd7\x30\xa3\x9d\xa9\x34\x29\x56\x76\x4b\xc8\x15\x17\x37\x12\x1d\x22\x49\x59\xe5\x63\x7d\x71\x22\x2d\x95\x06\x19\x93\x92\x6e\x27\x65\xd2\x7a\x69\x9a\xa4\x32\xe3\x5c\x49\x25\xf0\x6a\xe5\x32\x33\x0c\x45\xcc\x95\xa2\x06\xee\x81\x12\x24\x19\x5e\xc9\x05\x57\x13\x93\x57\x63\x7f\xa4\xff\x22\x32\xba\xd7\xe2\x09\x68\x33\xed\x3a\xe7\x26\xd6\x8b\x02\xfb\x46\x4f\x61\xa2\xb7\x68\x4d\xe6\x90\x22\x03\x67\x5b\x58\xf9\xa1\xa6\xbd\x0c\x1d\xc8\x9c\x06\x3a\x06\x7c\xf5\x54\xb9\x96\x93\xa5\xe3\x16\x5b\xd2\x32\x76\xc9\xbb\x18\xcc\xdc\xb8\x6b\xc2\xc5\x1d\xf2\x2d\x4a\xf9\x8b\x61\xe3\xec\x22\xda\x7b\xa2\x8a\x65\x89\xef\x08\x5f\xb4\x66\x7c\xf0\xc8\xdc\xf6\xc3\x3e\x6a\x72\x11\x87\x8b\x0c\x1f\xf8\x38\x37\xc4\x94\x92\x70\x8d\x6b\x17\xc2\xe8\xdd\xf3\x86\xbb\x99\x77\xe9\xc2\x1e\x7a\x36\xf8\xf6\xd1\xe4\x0e\xbe\x83\xe3\x81\x18\x4e\x21\xd8\x09\x94\xb9\x64\xb7\x1a\xa7\xc0\x79\x93\x8c\xcb\xcc\x56\x76\xe9\x2a\x89\x68\x1a\x54\x5b\x74\x7e\x67\xdd\x5c\xe0\x85\xa3\x23\x74\x05\x42\x67\x4d\x20\x2b\x10\xf6\x62\x9a\xef\x39\xd1\xbf\xd5\x1c\xd6\x8e\xc1\x65\x07\x5e\x02\x03\x13\x8d\x33\x44\x11\x6e\x24\x9f\xa2\x5f\x89\x31\x06\x6c\x57\xb8\x1f\x3c\x74\xe8\xdd\x5d\x5e\x13\xa0\x75\x06\x78\xbd\xa4\x6c\x34\x9e\x12\x56\xa7\x26\xf9\x28\x0b\x41\x22\xd2\xc8\x12\xf7\x9b\xcb\x17\x95\x9d\xaa\x4f\xf0\x36\x7e\xd9\x56\x2c\xfc\xae\x74\x78\x00\xac\x2b\xc5\x57\xbf\x70\x4d\xb6\x0c\x8b\x12\x88\xf3\x17\xcf\x93\xce\x17\xac\x3e\x7f\xf1\x3c\x47\x3f\x5d\xf4\xa3\x23\x74\x06\x36\x3f\x08\xdb\x8b\x2c\x7c\xde\xb9\xa2\x9b\xf7\xf5\x92\x9c\x39\xb3\x29\x3d\xd6\x6c\x88\xf2\x41\x89\x9f\x42\xe0\x3a\x3d\xcb\x28\xf2\xb9\x4f\x94\xeb\x51\x83\x65\x2f\xc8\x24\xd0\xc5\x62\xbb\xa7\x5d\x10\xdb\x61\x1f\x15\x5b\x7a\xe9\x6c\xff\xd3\x0b\x2f\x91\xf3\xd9\x8e\x2c\xf6\x71\xca\x1b\xee\x88\xce\x08\xe2\xb7\x44\xac\x05\x55\x8a\x40\xbd\x82\x0f\xce\x80\x23\xa7\xac\xbe\xf2\xa9\x3f\x1f\xd0\x8c\x34\x7c\x5d\x84\x58\x4a\xe0\x1b\x3d\x9c\x3e\x1c\x97\x11\x28\xe8\x96\xce\x57\x3d\x3d\x23\xed\x12\xfe\x5f\x6e\xeb\xb3\xf8\x82\x7e\x19\xf7\xd9\xcb\xdd\x73\xae\x9c\x79\xc6\x5d\xf6\x75\x64\xf2\x96\x6f\xf1\x92\x61\xde\xcd\x5c\x00\x72\x17\x82\x37\x71\x72\x74\x0f\xbb\x47\xc2\xb1\xb8\x32\xa3\x2e\x6e\x57\x20\xba\x70\xd8\x5b\xe1\xfe\x7e\x25\x20\xbb\x54\x76\x31\x2d\xa6\x31\x46\x34\xd2\x30\x5f\x5a\xb2\x8c\xc6\xfd\xc7\x19\x69\xa0\x9a\x4a\xa3\xf1\xf4\x02\xfb\x53\x74\x6f\xeb\x41\x5a\xb6\xb1\x1d\x7d\x7f\xc5\xed\xa1\x7b\x82\xa2\x39\xb6\xb0\x06\x9a\x3f\x40\x0b\x22\xcf\x9e\x63\xcc\x41\x2c\x47\xd0\xfa\x43\xe0\xfe\xa4\x20\xbf\x87\xf0\xcc\x59\xb5\x7e\x02\x18\x90\x37\xa7\xd7\xe6\xda\x96\xe2\x08\xd7\xb7\xd8\x59\xb7\x5d\x53\x12\xb2\x08\xcc\x34\xec\x0d\xb6\xb9\xcd\xe5\xf9\xa3\xa5\xc2\xd8\xee\x35\x35\x5e\x52\xc8\x0e\x5f\x92\x72\x8e\xb3\xb6\x2a\xed\x78\x4f\xf5\xf8\xa3\x6e\x4a\xea\x9a\x6a\x2b\x64\x48\x93\x16\x0c\x27\xb8\xa5\xdc\xeb\xf9\x16\xf7\x15\xe4\x5f\x18\xd8\x80\x0a\x3a\x41\xd7\x44\x9d\x45\xdf\x14\x54\x46\xd6\x31\x97\xcb\x01\xeb\xce\x59\xff\xa0\x11\x37\xfe\xaa\x4f\xc2\xbd\xc6\x1b\xbf\x2f\x41\x5b\xd3\x79\xc1\x57\xd5\x06\x82\x75\xea\xb6\x8b\x4a\x00\x83\x2b\xd5\xe2\xa6\xd9\xa0\x85\x76\x48\x18\xe2\x9a\x03\xe8\x72\x49\x6a\x8a\x15\xd1\x0d\xfc\x71\xaf\x2d\x32\x03\x95\x09\xfa\xa0\xcf\x88\xb9\xa4\xff\x61\x85\x37\x76\x3b\x3f\xe3\xe2\xb5\x3d\x0b\xb6\x5b\xed\x43\x34\xfe\x2a\x99\x57\x45\x8a\x80\x13\x8b\x0a\xf7\xf8\xd5\xb9\x23\x1d\x7f\xcc\x59\xf8\x00\x4a\xc5\x9e\x9f\xfb\x90\x89\xd9\x65\x0a\xee\xdf\x93\x93\x22\x2b\xe4\x99\xcc\x5b\x30\xdc\x66\x32\xf5\x23\x96\x33\x7e\x28\x42\x50\x66\x7a\x4b\xd1\xe0\xcc\xdc\x82\x71\x74\xe6\x6e\x0a\x8e\xc6\xe8\xeb\xaf\xd1\xc8\xd6\x61\x9a\xd6\x37\xc9\x4f\x5f\x9d\x20\x46\x3b\x91\x8b\xce\x74\x40\xc2\xc6\x97\x0b\xef\x35\x1b\x53\x2e\xe1\xff\xd9\x3d\xbc\x17\xdb\x90\xdd\xf8\xa5\x57\x7f\x0e\xf6\x22\xac\xde\x8f\xeb\x6b\x32\xc7\x6d\xa3\xca\xa4\x37\x79\x3d\x07\x65\x08\x59\x94\xe8\x0c\x37\x8d\x8c\x0e\xb7\x3f\xf8\x80\x8b\x1c\x70\x3c\xb2\x04\x58\xa7\x8c\x8c\x3b\x93\x15\x7d\xe8\x4f\x96\x05\x95\x53\xd8\x60\xff\xb6\x58\x2b\x31\x38\x27\x33\xbb\x77\x08\xbb\x24\x31\x86\xec\x9d\xa8\x5a\x45\x1a\x93\x69\x99\xc4\x73\xf2\x16\xbe\x1b\x8d\xa7\x8a\x9b\xc0\xc5\x68\xdc\x1b\xf2\xdb\x71\x31\xfb\x17\x67\x78\x21\x5f\x0f\x2e\x64\x57\xb4\x7c\xe1\x75\x8c\x04\x68\xb6\x86\x31\x92\x76\xfd\xa2\xaf\x76\x5c\xb7\x01\xd1\x78\x1f\x32\xdb\x4b\xe9\xdb\xe8\xec\x4a\x9d\x9d\xc6\x1b\xcc\xd4\x07\xf0\x21\xd6\xa1\x3d\x64\xc5\xc7\x5f\x41\x72\x2b\xe5\x33\x9a\xc7\x55\xcd\x92\xa9\xee\x43\xee\xa2\xad\x9f\x50\xe9\x25\x21\xb5\x74\x65\x18\x8c\x8d\x1c\x65\xb4\xf9\xcc\x22\xed\x60\xe6\x6b\x64\xe4\xb0\x1c\xf6\x9d\xec\x32\x70\x61\xea\x46\x2d\x21\xe9\x3e\x09\x15\xf4\x52\xbd\x4f\xd4\xf7\x9e\x1e\x6c\xd5\x0d\x03\x47\x57\x43\x96\x52\xef\x80\x3b\x99\x57\x1d\xe7\x2a\x22\x9d\x61\x3e\x05\x05\x28\x33\x4f\xb2\xeb\x81\x1e\x05\xd7\x53\xfa\xc0\xc9\xb0\xff\x59\xba\x18\x33\x40\x56\x8f\x73\x74\x6f\xd8\x64\x19\xd9\xf4\xc4\x52\xd4\x2b\x39\x5d\xda\xd1\xa3\xf6\x6e\x99\xb9\xb8\x6e\x36\x75\x0c\x07\xe6\x09\xb9\xc7\xba\xa1\xbd\x2e\x3c\x73\xb7\x9e\x5c\x34\x36\x4f\xd9\x1c\x74\xde\xf5\x9c\x2c\x52\x57\xed\x72\x69\x93\x2e\xa3\xa9\x04\xfe\xe9\x72\x4e\x64\x34\x45\xf6\x12\xd0\xa4\x63\x2a\xf5\x25\xb5\x46\x56\x52\x06\x6a\xda\xb9\x43\x96\x22\x3a\xf5\x33\x1f\x0f\x81\x48\x2e\xc0\x65\x10\xe2\xf8\x4e\x00\x62\x6c\xd6\x4e\xe4\x24\x83\x1d\x2d\xf1\x9d\xdc\x92\x84\x2f\x94\xbf\x6a\x6e\xaf\xad\xf0\xb9\xb9\xcb\x12\xbc\xae\x64\xfd\xbe\x91\xf9\x45\x16\x0b\x12\x5a\x86\x83\x4a\x44\x6d\x55\x26\x3b\xc2\x0d\x61\xf6\x36\xaf\x76\xcd\xd9\x37\xca\x7a\xe7\x94\x29\x52\xf7\x70\xe5\x86\xa8\x4e\x08\xd2\xb6\x78\x6d\xf6\xd9\x49\xa1\x10\xac\xe7\x00\x28\x24\x6b\x1a\x66\x86\xa6\x06\x34\x27\xc4\xac\xae\x05\xf2\x8c\x10\xa9\xbb\x3e\x23\xe4\x29\x6e\x30\xab\x48\xd6\xe9\x16\x0b\xa8\x54\x01\xcb\x6a\x0e\xd4\x4f\x35\x8d\x3c\x2a\x0f\xa7\x0f\xf3\x28\x7c\x18\x24\xd8\xd9\xb6\x7d\x57\x4f\x0d\x02\xf7\x95\x71\x0d\xeb\x98\x26\xbb\x45\xb3\xf7\x87\x8b\xbe\x45\xa3\x14\xdb\xc3\x30\x95\x6d\x41\xe8\x1f\x39\x36\x06\x81\x29\x27\xa0\x19\x6a\xc6\x59\x2b\x1d\x13\x40\x26\x77\x9c\x30\x1f\xaf\x0a\xb4\x7c\x67\x1a\x66\x0e\xd0\xd3\xf0\x53\x29\x3e\xd7\xce\x4c\x9a\x66\x77\xac\x0e\x8b\x47\x37\xb3\x04\xf1\x5f\xe7\x6b\x17\xa3\xf2\x78\x88\x88\x7b\x52\x7c\xe0\xc7\xc3\x78\xd0\x6d\xb1\xfe\x64\x0b\xef\x16\xf7\x6c\x4c\x25\x49\x48\x99\xdf\x05\x9f\xbf\xdd\x27\x01\xa2\xbb\x44\xfe\x36\xdc\x3a\xdc\xbb\x4b\x3c\x0f\x9f\x6b\x0b\x49\x0e\x2e\xb7\xdf\x58\x5b\x9d\xa4\x6f\xe4\x04\x66\xf1\xec\x47\x16\x84\x40\x3a\xf5\xae\x48\x70\xbf\xef\xa6\x52\x7a\x2e\x36\x74\x98\xe1\xfb\xef\xd1\x0a\x33\x5a\x8d\xfc\x49\x68\xd0\x7c\x85\x05\x43\x33\x52\xb5\x10\xdd\xd4\xa2\x52\x7a\x49\xe9\xc9\xb1\x21\xea\xc1\x38\x33\x7b\x53\xbc\x3b\xca\x67\x68\xe2\x3d\x3a\x27\x87\x39\x60\x40\xbd\xc6\x9b\x60\x75\xba\x5a\x59\xbe\x98\x51\x28\x0f\xe2\x42\xcd\xe9\xbd\x8c\x5e\xc3\x68\x47\x13\xd0\xde\xa5\x58\xc5\x0d\xee\x6c\x13\xe4\x17\x5d\x0a\x17\x37\xbe\x2a\x8e\x94\x5c\xcd\xee\x0a\x04\x30\xe0\xbc\x95\x53\xd0\x59\x00\xec\x6d\x62\x23\x8c\xd2\x33\xa0\xf2\xb0\x71\x9b\x49\xb0\xc8\xfa\x9a\x27\xd7\xd7\xbb\xac\xda\xbf\x9d\xc2\x62\x8c\xec\x3c\xba\xbd\xcb\x43\x66\x57\xdd\x95\x68\x49\xcf\xc0\x25\x26\x2c\x40\xec\xbb\x46\xd2\xbd\x18\xce\x6f\x89\xf4\xb2\xc5\x6a\x04\x97\x02\x36\x6b\xab\x1b\xa2\xec\x41\x57\xe2\x9f\x06\x63\xde\x1e\x54\x17\x0e\xa1\x8b\x37\xdc\x53\x0f\x2f\x3d\x02\x41\x17\xac\x8e\xce\x90\xed\xd1\xc5\xc6\x14\xca\x53\xb4\x69\x3a\x41\xf3\x4e\x7c\x94\xb2\xd7\x82\x5f\x0b\x22\x65\xe9\x1a\x58\xcf\xd1\xb3\x2c\x9d\x3a\x7f\xce\x07\xb1\x01\x56\x6b\x30\xf6\x83\x8f\x8e\xa5\x49\x7e\x22\x1d\x69\xa8\x7e\x36\x5a\xf2\x5b\xd2\x55\xe1\x9d\xdd\xe8\x72\x47\x7b\xa3\x5a\x09\x69\x7f\x36\x29\x84\xc1\x03\x71\x57\x90\xfa\x07\xf0\x29\x2d\x43\x77\xd4\x72\x7e\xf2\x19\x66\x32\x0b\x5e\xf8\x3a\xa5\xc9\x95\x34\x2b\x02\x57\x2b\xc1\x6f\xb3\xab\x2a\x31\xdb\x0c\x07\x04\xfb\x49\xd9\x17\xa9\x8f\xaf\x35\x06\x76\x0e\x51\x37\x1b\x6a\x81\xc4\x12\x5f\xd9\x3c\x4e\xc9\x80\x4a\x78\x1e\x06\x1c\xd6\x2c\x70\x16\x93\xa8\xa9\x20\x95\xf2\x67\x33\x1f\x3a\xc8\x7c\x18\xde\x26\xbd\x41\x40\x13\xf3\xcb\x37\xcf\x73\xa2\xb2\x32\x79\xa1\x44\x95\x23\xf7\x80\xe9\xa3\xa5\x2f\xad\x65\xaf\xb7\xf0\xda\xc2\x80\xd2\xac\xe7\x32\xf3\xa1\xc3\xad\x6b\x53\xff\x29\x14\x81\x85\x78\x95\x45\xcb\xad\xb3\xc1\xcf\xf7\x87\x92\x05\xb6\xe2\xeb\xa9\x10\x78\xb3\xa5\x28\xac\x29\x06\xd3\x1d\xde\x97\x9e\xe2\x73\x13\x93\x4a\xab\x52\x19\x43\xe2\xcd\x59\x32\xae\x6f\x62\xe7\x15\x72\xc1\xf6\x18\x25\xad\xbc\xa4\x47\x89\x53\x60\xcc\x30\xb6\xcd\x0e\xc3\xe8\x85\x74\x73\x35\x75\x0d\xe3\x55\xed\x5b\xf2\x30\xd7\xa4\xf2\x7b\xb7\x93\xe2\x51\x9a\x62\x5f\xda\x8e\x1e\x96\x42\x06\x99\xe6\x89\x8f\x1d\x2b\xd0\x2d\x57\x99\x5d\x1c\xf6\x23\x53\x5f\xf8\x18\xd1\x3a\x73\x46\x92\xe5\x9e\xc2\x99\x66\x3d\x72\x5f\x8e\x3b\x89\x5a\xee\x97\xa9\xe0\x0d\xc4\x23\x5d\xc5\xed\xa9\x4f\x02\x9f\x0a\xbc\xfe\x05\x12\x99\x0b\xe7\xcd\xd9\x22\xe7\x03\x4e\x69\x3d\xe8\xb0\x6d\xc1\xc0\x92\x7a\x18\x83\x74\xfd\x77\xc0\xa0\xfb\xbf\x78\x15\x5f\x99\x02\x6c\x24\x5b\x7b\xc3\x81\xe5\xd2\x6b\xc5\xa2\x69\x4e\xba\x57\x90\x15\xd5\xbd\x4d\xc0\x1c\xbf\xe6\x34\x4c\xf7\xbf\xc9\xfc\x78\x73\x86\x8c\x1e\x0d\x89\x52\xe0\xf8\x50\x52\x77\xd1\x19\xd6\xc8\x58\x28\xab\x92\xab\xfe\x6c\x9d\x12\x0e\xda\x70\x88\xeb\x3b\x14\xb7\x41\x59\x5d\xc3\xa8\x5a\x61\x47\x93\x4e\x97\x6d\x7c\x50\x8a\xae\xdd\xcf\x9c\x1e\x7f\x95\xcc\xe2\xd2\xec\x4d\xbb\xb2\xbb\xe4\xa6\x99\xc2\xa6\xce\x68\x8a\xae\x1e\x9b\x3c\xab\x39\x05\x6d\x44\x19\xd2\x8e\xb0\x48\x26\x90\xe8\xf4\xde\x84\x35\x9f\x9b\x36\x60\x07\x94\x93\xa1\x86\x3e\xbb\xe6\xae\x0d\xc2\x08\x79\x6d\x83\x07\xb4\xdf\x5a\x5f\x65\xf4\xe8\x0e\x88\xfa\x94\xb8\x2d\x43\xd8\x62\x63\xdb\x6f\x23\xdd\x69\x9e\x49\xbe\xdd\x17\xc0\x64\x97\x7b\x58\x43\x9f\xd4\xf1\x7a\x18\x5f\x2b\xd9\x1f\xd8\xdd\x53\xf3\x06\xa1\xc6\x49\xe1\x79\xb5\xbd\x1d\x3e\xa1\x20\xdf\xfb\xdc\x10\xef\x8f\x05\xf4\xa5\xef\xed\x62\xbf\x47\x6f\x52\xf8\x7e\xda\xfe\x8c\x5f\x2f\xf0\x9b\xb1\x38\xe0\x70\xb1\x02\x94\x14\xde\x4f\x74\xf0\x04\xf5\xf6\x88\x4a\xe7\x97\xc7\xdc\x92\x52\x8a\xd2\x2a\xf9\x65\x18\x83\xe9\xa6\xe8\xde\x2c\x92\x1a\xd0\xbb\x09\x9d\x52\xd5\xf2\x2d\x04\xb8\xd3\xde\xdb\xb1\x93\xbf\x2e\x78\x88\xa2\xe8\xcb\x76\xf4\xff\xfe\xd7\xa3\x3f\xfa\x7b\x40\x08\xfd\x6d\xaf\xd9\x8c\xf7\x9d\xce\x77\xff\x86\xe9\x7c\xf7\xa5\xa6\xd3\xef\x1e\x77\x7c\xcd\xb5\x7d\x46\x29\xd6\xe5\xf1\x13\x4a\x75\x12\x84\xc9\xde\xdb\xb2\x09\x05\xa6\x4e\xbc\xb7\x7e\x4c\xc1\x71\xb9\x83\x97\x59\xc8\xce\xa0\x73\xf4\xd5\xb6\xdc\xb3\x4f\x9f\x50\x4f\xea\xd9\x09\xa4\x9e\x15\xab\x12\x95\x82\x21\x60\x4c\x05\x8b\x34\x1d\xf7\xda\x97\x63\xec\xf7\x3a\xbb\xb5\xdc\x8d\x1f\x16\xd7\x72\x4f\x1d\xb2\x5d\x2e\x0c\x75\x7d\x33\xaa\xa0\x1a\x3c\x52\x0b\xc1\xdb\xeb\x10\xd0\xf0\xc8\x83\xf3\x65\x6e\x18\xd8\x97\xba\xe2\x37\xb9\xb4\xa4\x95\x89\x93\xe5\xea\xcc\x53\x16\x60\x7c\xec\x1c\xa9\xc5\x40\x7c\x31\xd2\xa9\xab\x4d\x6f\xaa\x19\x47\xc5\x8c\x0b\x29\x63\x51\x80\x9d\xb7\x4d\x0d\x97\x50\x5c\xff\x1e\x0a\x86\x72\xd1\x76\xc0\x07\x99\x63\x16\x68\xe8\xdc\x99\xa8\x77\x4f\xf6\x06\x1c\x70\xb8\x49\xbf\x39\xf3\xa5\x1b\xb3\x22\x45\x9d\x44\x0b\x1f\x7c\xe4\x2b\xbd\x43\x0c\x2f\xee\x64\xcb\xee\x7f\x3a\x11\xce\xbc\x7b\x04\x4c\xb7\x3e\x68\x20\xc5\xb8\x33\x5b\xbd\x93\xed\x43\x08\x50\xf1\xf9\x0e\x33\x8e\x5d\x73\x3d\xd7\x50\xf6\xb3\xbc\xff\xbe\x4a\x5a\xb7\x6c\x6d\xee\x31\xa6\x97\xdd\xd2\x9a\xba\x7a\xb1\xa1\x24\x34\xf3\xd0\x53\x3e\x4c\xa0\xb8\x05\xbf\x21\x9b\xaf\x4a\x31\xd3\x5e\xc2\x75\xeb\x9b\x26\x70\xff\x8d\x76\x96\x7d\xd7\xab\x60\x68\x59\x69\x78\x7f\xb7\x67\x9f\x7b\x23\xee\x13\x5f\x4b\xcc\x48\x83\x52\x5d\xf2\x14\xfc\x57\x84\x91\x20\x73\x22\x08\xdc\x09\x30\x07\x4b\x85\x87\x5f\x4d\x4a\x8c\xbb\x84\x10\xab\x84\xb4\xf4\x5a\x29\x8c\x7a\x8c\xbe\x2e\x04\x79\xe0\xc7\x8f\x7d\xc7\x34\xe6\x61\x53\xca\x99\xfc\x1c\xf1\x91\x2f\xb5\x74\x86\x57\x78\x46\x1b\xaa\x3a\x55\xc4\x2a\xbe\xda\x3c\x0e\x3f\x17\x2f\x53\xc7\xe8\x65\xa3\xa5\x92\xaf\x2c\xf5\x14\xaa\xc2\xf0\xa6\x3a\x62\x5a\xa2\xee\x41\xba\x89\x67\xbd\x84\xf6\xc7\x1e\x40\x5d\x3e\xfb\x27\x89\x8a\xc5\xfb\xc9\xbe\x25\x73\x74\x92\xcf\xdb\x97\x4b\xbb\x0f\x69\x9f\x8c\xb6\xcf\xd7\x62\x9f\xe0\x9e\xe0\x1d\xcf\xd6\x96\xff\x73\x68\xef\xce\x72\x41\x20\xee\xc9\x6a\x79\xec\xc7\x32\x5b\x50\xc7\x81\x18\xe1\xbb\xbf\x9e\xc5\x2c\x3e\xff\x51\xee\xd2\x96\xe0\x3d\x19\x6b\x3f\x32\xde\x95\x9d\x1c\xa2\x5f\x84\x93\xb4\xba\xdc\x8f\x85\x42\x08\xcf\x32\x8f\x56\x88\x61\xbe\xfa\xaf\xbf\x9e\x61\x1c\x12\xff\x51\x8e\xa9\x6f\xee\x2f\x8b\xb6\x13\xef\xae\x6c\xe2\xb1\xdb\x83\x4f\x7e\xc2\x37\xf0\x0a\xae\x08\xaf\x92\xf2\xb9\x75\x99\xcc\xfb\x14\x12\x8d\x28\x33\x75\x79\xc6\xe0\x31\xc1\x7d\xf1\x69\x38\xe0\x6b\x67\x87\xe6\x15\xeb\xa8\xbc\x6e\xa7\xf0\xcf\xbc\x6d\xdc\x13\x43\x06\xec\xf4\xe0\xb1\xf9\xa0\x1f\x2e\x4e\xcf\x01\xda\xaa\x9d\x99\x2a\x12\x9a\xf5\xfa\xef\xca\xff\xee\x4e\xc1\x7f\x24\x51\x35\xe9\xdf\x41\xb3\xeb\xd6\xd9\xd7\x30\x68\xf4\xdd\xd8\x14\x1c\x41\x1f\x0f\xdc\x3b\xd4\x28\xaf\x8f\xf8\x6f\xc4\xe1\x89\xf9\x20\x2e\xe8\x35\x65\x47\x4b\x22\xae\xc9\xa1\x84\x17\x29\x0f\x2b\x5c\x93\xf8\x2e\x98\x5d\xca\x51\x18\x5a\x3b\xd3\xb1\x37\x3d\xfe\x5b\x84\xc0\x78\x8c\x1e\xfb\x91\xf3\x75\x37\x57\x1c\xa0\x90\x86\xb2\x4f\x20\x16\xdf\x99\x01\x1b\xb9\x95\x90\x97\x1c\xbf\x23\x93\xbe\x1f\x63\xef\x77\x9a\x27\x10\xc1\x69\xcb\x8f\x4c\x14\xb7\x2f\xa3\x49\x78\x2f\x2f\x39\xad\xe8\x24\x79\x6f\x3b\x2b\xf1\xe5\x24\x7a\xab\x57\x0c\x96\xac\x35\xf5\x9a\x1c\xb8\xa9\xe1\xc7\x71\xa8\x3d\xbb\x6b\x3d\xa4\x50\x94\x14\x6e\x7a\x36\x44\xca\xee\xbc\xf5\x06\x70\xb3\x2d\x95\x7f\xd5\xee\xa7\x5c\xb4\xf3\x79\x43\xea\xcb\x73\x7f\x5e\x24\xdc\xfa\x38\x34\x4b\x9e\x79\xf7\xdd\x4b\xe3\x95\x67\x48\x14\xc3\x00\xfd\xa4\x4b\xdc\x96\xc8\x97\xbf\x34\xaf\xd6\x18\xea\xa1\x13\xf4\x30\x81\xab\x47\xfa\xd5\xbc\x68\x19\xea\xa7\x1e\xa3\xdf\x3e\x9a\xb5\x72\x9c\xff\x39\x83\xbf\x5e\xd0\x86\x24\x23\xa0\xc7\x7b\x2e\x43\xb6\xba\x45\x44\x9c\x3f\xf5\xf1\xf3\xb8\xe4\x62\x9b\x81\x4f\xd2\x3f\xbf\x0d\x91\xa6\x47\xff\x28\xac\x5c\xd6\xf7\xe1\x41\xe1\x74\x37\x5e\xd9\xec\x66\xef\x97\x3a\xe6\xed\xcc\xf5\xb7\x18\xb1\xf7\xbf\xd1\x1a\x2a\xd6\xfa\x83\x50\x73\xfe\x65\x7a\x25\xc0\x92\x3f\x8e\x8e\xd0\xa9\xbb\x08\x1d\xbd\x3c\xe9\xdf\x31\xe5\x02\xcd\xb0\xb9\x30\x1d\x2a\xef\xd0\x39\x5a\x13\xb3\x19\xae\x39\x14\x1e\xb0\x3f\xc3\x03\x48\x9c\x91\x7b\xd2\x1e\xd9\x0b\x84\x49\xc7\x7d\x77\x6d\xe9\xf4\x38\x5f\xc9\xf8\xc7\x9e\x6b\x7c\xae\xce\x45\x12\x9d\x82\x50\xbf\xbf\xc8\x20\x09\x53\x91\xad\xd9\x79\xed\x2a\x8a\x35\x46\xef\x9c\x46\x91\xcb\x90\x05\x33\x88\xe5\x97\xdf\x43\x6e\x42\x6e\xdb\x14\x25\xc5\xc8\x3e\x63\x15\x0f\x3c\x89\x59\xf2\x78\x17\xfe\xfc\x6a\x7c\xff\x1d\x99\x6b\xc8\x44\xbb\xe8\xf5\xf3\x4a\xea\x34\xd4\xb6\x82\x04\x6c\x1b\xa0\xc3\xf6\xc8\x02\xde\x3a\x6c\x55\x48\xac\x11\xe2\xb7\xf7\xa1\x77\x2b\xdd\x35\xc5\x39\x95\x0b\x22\xd0\x06\x02\xa1\x66\x93\x77\x5f\x55\xeb\xd4\x8f\xf2\x32\xfd\x77\x13\xaa\x4c\x35\x99\x0b\x1b\x7d\x44\xd1\xfb\x39\x5a\xfe\x52\x6d\x51\x42\x22\x47\xf4\x62\x58\x12\x05\x83\x93\x79\x9f\x67\x9e\x3e\x37\xc6\x6a\x24\xd7\x78\x05\xa5\xc6\x66\x1b\xfd\x0f\xd4\xba\xa9\x39\xfb\x46\x25\x29\x0f\xae\xf0\x8d\x68\xc3\x9b\xaa\xc9\xdb\x95\xc0\xd8\xdf\x48\xb4\x5e\x6c\x10\x45\x4f\xd0\x43\x94\xb1\x20\x7c\xe9\xbf\xfb\xd8\x91\x28\xaf\x69\x75\x13\x68\x0d\xec\x63\xb0\x7e\x08\x59\x33\xa8\x13\x97\x35\x2d\x5f\xb6\x4b\x74\x92\x5d\xcd\xec\x69\xea\xd8\x26\x74\xfc\xff\xdc\xd1\x34\xd5\xec\x63\xfa\xe5\x78\x5d\x69\xfa\xe8\xb5\xa6\xef\x43\x74\x3f\x7a\xaf\x2d\x41\xb8\x33\xb2\x22\xcb\x95\x5b\xa1\xdf\x68\xfa\x8a\x96\xfb\xd2\xff\x1e\xa1\x59\x6a\x19\xff\x8c\x4e\x00\x74\x96\x2a\x83\x4e\x10\x4d\x9e\x8c\xeb\xb2\x3f\x80\xca\x0d\xbe\xb3\xcc\x30\xa9\x4c\x68\x3d\xae\xf6\x16\xae\x24\x50\x61\x73\x4d\x4c\x71\xb9\xe0\x25\x9a\xe7\x2c\x10\x17\xb5\x36\xee\x79\xf2\x0a\x1e\x5c\x71\x30\xa2\xee\xda\x3f\xa8\xe7\x38\x89\xa6\x2f\xc6\x16\xde\x82\xf0\xf2\x05\x86\x05\x9d\xa7\x15\x21\x11\xe5\xf0\xd8\x4b\xff\xfb\xf8\x18\xfd\xef\x54\x40\x19\xc4\x3f\x76\xec\x93\x3d\x54\x6d\x18\x7e\x9a\x68\xdd\x62\xa5\xfb\x7d\xd2\xa7\xd2\xe8\x64\x28\x6f\xaf\xbb\x20\x0e\x4e\x20\x17\xbe\x58\x24\xce\x2d\x72\xbb\x46\x38\xac\x8f\xf1\x44\x83\x69\x99\xe7\xd0\x24\xf1\x9f\xf4\xd2\x5e\x1e\x1b\xca\x19\xe9\xf1\x61\xda\xdb\x66\x31\x85\x05\xea\x50\xca\x17\x0f\x7b\x41\x36\xe1\x04\x7c\x1a\xbe\xec\x44\x59\xcf\xb2\xec\xbe\x6d\x7c\x09\xa5\x62\xa3\xe7\xb8\x77\x66\xcf\xe8\xa9\xf1\x2d\x37\x23\x23\xa6\x3c\x7f\xf1\x3c\x1a\xec\x0e\x4c\xa9\xfd\xfb\x18\xdd\xff\x0e\xa6\xcc\x33\xea\xf6\x67\xca\x78\xd1\x02\x53\xe6\x8b\xb3\x85\x37\xeb\x9b\xd2\x55\xd2\x10\x6e\xea\xf2\xa3\xeb\x61\x39\x31\x5f\x9b\x02\x91\x50\x5e\xc5\xa8\xf0\xd4\x4e\xb8\x79\xda\x10\xff\xfc\xbc\xb1\x9c\x42\x71\x23\x88\xa0\x6c\x09\x5a\x68\x31\x06\x1d\xfd\x71\xca\xf8\x38\x3c\xe4\xb6\x35\xde\x30\xdc\xfd\x0e\xa1\x82\x5e\x23\x30\x27\xcb\xbb\xf8\xc0\xec\x22\x4e\x60\x07\xba\x34\x6b\xbc\x91\xc5\x52\x88\xab\xa6\x95\xe8\xd1\x16\xb2\x94\xcf\x76\x9c\x4b\x18\xed\x89\x04\xed\x72\xa1\xb6\x10\xec\x88\xe7\x90\x0c\xd7\x7b\x07\x75\xf7\xc8\xcf\x5f\x8f\x71\x71\xd8\xed\x98\xdf\x95\x09\x92\x50\xeb\xde\x55\x74\xd1\xf7\xdf\x47\xaf\x7f\x46\x7c\xf3\x9c\x64\x25\xc7\x7a\xee\x5b\x36\x64\xae\xec\xce\xaa\x89\x54\x82\x6f\xa2\x84\x8b\xa7\x71\x4b\x2c\xd2\x9b\xba\x6b\x22\x08\xc2\x4d\xc3\x2b\x78\xc3\x17\x4b\x84\x51\x4d\x2a\xa2\x7d\xa9\xc6\xbd\x90\x4c\x99\xfe\x82\xde\x06\x2d\xe0\x73\xf3\x43\x25\xde\x70\x2e\x0c\xaf\xfa\x6a\x14\x09\xbc\x75\xe5\x10\x9a\xda\x6d\x40\x24\x44\x54\xdd\x1c\xa2\x08\x97\x45\x4b\xf0\xb5\xee\x6f\x6e\x92\x51\xa6\x08\x83\xaa\xbd\xd1\xc5\x63\xa7\x61\xe0\x16\x33\x65\x73\xfb\xb5\x76\x36\x3c\x38\xf3\xe4\x96\xb9\x7e\xc3\xb8\x72\x97\x95\x43\x45\xda\x08\xa0\xef\x74\xa1\x5d\x42\x28\x55\x35\xf1\xc9\x11\x09\xa5\x5d\x5a\xaa\x9f\x95\xf6\x00\x22\xb2\xb8\xb2\x57\x36\x50\x6b\xca\xaa\x21\xcc\x36\x4b\x2e\x48\x9f\x1a\x4c\xae\xbd\xba\x52\x80\x3d\xbb\x20\xe1\x34\xd3\xb2\xc3\x6b\x5a\xd9\x05\x98\xa5\x2b\xbd\xc8\xc4\xbd\xdd\x75\x66\xcb\x72\x94\x51\xe5\x6f\x05\xc7\xfb\xac\x54\xed\xb6\xf7\x69\xc2\x62\x9b\xbe\x57\x0a\x8b\x8d\xbb\x0f\x16\xa6\xcd\xfa\xdf\x2e\x8c\xda\xed\xf2\x8a\x61\xdc\x7e\x5b\xf5\xe0\xbb\xd5\xf6\xdd\xbb\xb2\x6f\xb1\xae\xef\x60\xbc\x75\xa7\x57\x34\xfa\x12\x67\x0b\x54\x9f\xe4\x4b\x5b\x7a\xc8\xab\x53\xd7\x76\x97\x32\xb6\xf9\xfd\xb1\x92\xea\x44\x27\x56\x25\x77\xdf\xbe\xbc\x4f\x1e\x72\x3f\x27\x7e\x91\x9c\xe2\x12\xef\xee\xfa\xea\x48\x3f\xc8\x02\x9f\x97\xbe\xdd\x0b\xec\xf0\xb6\x18\xfa\x35\x48\x90\x6c\x15\x8b\x97\xee\x0a\xdf\xf6\x77\xdb\x7e\x19\x30\xe9\x9a\x3f\x77\x85\x4e\x52\x3d\x0b\x60\xcc\x9b\x93\x49\xbf\xd2\x9b\x55\xc5\xbe\xbe\xc8\x65\xda\xbf\xf0\xec\x54\xb1\xbb\x37\x03\x13\x73\x9c\xc4\x3f\x1d\xa3\x9e\x57\xb0\xd0\x09\xfa\x98\xef\x93\xb4\x9c\x7e\xdc\xdc\x14\xd5\xef\x7d\x93\x6e\x08\xce\xe3\x43\x9b\xe8\x67\xbd\x81\x08\x54\x4e\xdf\xf1\x2e\x60\x3c\xcd\x12\x50\x25\x92\x8f\x4b\x81\x5e\x8c\x56\x82\xde\xea\xff\x45\xa7\xc9\xc5\x3c\x15\x5f\xde\x08\x1e\xe6\x64\xda\x60\xa1\x73\x38\xa7\x55\x68\x85\x55\x72\xb3\xe4\x15\x43\x3f\x61\xca\x18\x31\x91\xba\x77\x44\x2a\x46\xa0\xdc\x3d\xc9\x4e\xe9\xa5\xbd\xa7\x9b\x94\x1e\x27\xe2\x96\x56\xc4\x9d\x67\x4f\xb4\x81\xb1\x70\xc7\xae\x0b\x22\x48\x5c\xdc\x1f\x9d\x1a\xdb\x09\xaa\xd8\x41\xb1\x6c\x83\xe4\x8c\xdb\x88\x17\x4e\xc7\x0b\x35\xfc\xfd\x84\x29\x91\xa8\xa1\xcc\xde\x65\x46\x6a\xc1\x25\x89\x3b\x38\xb4\xf0\xd2\xe3\x94\x60\x00\x17\x39\xb5\xe3\x28\xdc\xf5\x49\x93\xff\xc8\x99\x79\xde\x92\x0b\x6d\x9e\xd5\x2d\xcc\xd6\x3e\x01\x60\x2b\xdc\x4a\xc8\xd4\xc5\x8a\x6a\x1f\x2d\x5c\x7f\xda\x48\x45\x96\xa8\x5a\xb4\xec\x26\x1e\x08\x6c\x2b\x0c\xc5\xa2\x9b\x8d\x3d\x50\xac\x11\x23\x6a\x0d\x2f\x18\x68\x4a\xba\xf0\x02\x6e\x00\x1c\x6f\x15\xc2\xb5\x29\xdd\x0a\x6f\xbd\xda\x72\xb2\x4b\xcc\xe8\xca\x5a\x61\xd3\x64\xbb\xc4\x75\x82\xfa\x73\x1b\x34\xb9\xee\x9b\x84\xd4\x11\x9f\x47\x96\x15\xb7\x65\x6b\x75\x05\xaf\xc2\xe2\x9a\xa8\xe3\x52\xb8\x21\x86\x13\x3f\x55\x17\x77\x1f\x17\x93\x11\xf4\x1c\x01\x62\xb6\x11\xc2\x46\x79\x30\xb4\xd3\xa3\xd4\x8f\x7b\x52\xea\xc9\xa8\xbc\x28\x85\xa7\x3d\x06\x73\xdc\xf6\xdc\xfe\x7f\x54\x36\x3a\x10\x75\xdb\x59\x08\x68\x56\xfa\xa3\xda\x99\x8b\xf6\xcd\x38\x1a\xe6\x9d\x72\x1a\xd6\x30\xdb\x64\x18\xdc\x95\x55\x7c\xf6\xd5\x5d\xb9\x64\x4f\x4a\x3c\x19\x75\xa8\x5c\x60\x8b\xbe\xbc\xb4\x3d\x39\xc2\xa7\xe2\xdc\x99\x25\x5c\xa4\x6b\x17\x9e\xd8\x25\xa5\x68\x98\x0f\x7a\xb2\xab\x86\x19\xc1\x0f\x7b\x57\x16\x80\x3b\x18\xf7\xe2\x81\x1d\x66\xfe\x64\xd4\x25\x65\x61\xe1\x7b\xf3\xcb\x52\x6c\xca\x75\x7e\xb4\x8f\xd1\x5f\x80\x74\xa7\xb2\xbc\x49\x6b\x38\x76\xdb\xe7\xd2\x68\xc1\x98\xfd\x62\x2f\x1a\x74\xea\xf5\x6e\x79\xd9\xa0\x5b\xdf\x77\x8f\xbb\x9b\x79\xf1\x9b\xdd\xde\x47\xb8\xeb\x90\xd9\xd5\xa4\x9d\xc6\x4e\x2f\x66\xee\x5a\xfa\xed\xbf\xf7\xc9\x84\x9e\x7b\x00\x5d\x16\x74\xb1\xf4\xcf\x07\xe8\xff\x06\x00\x00\xff\xff\x53\x3e\x5c\x8a\x5b\xa5\x00\x00" func epochsFlowepochCdcBytes() ([]byte, error) { return bindataRead( @@ -339,7 +339,7 @@ func epochsFlowepochCdc() (*asset, error) { } info := bindataFileInfo{name: "epochs/FlowEpoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x18, 0xbf, 0x48, 0xf1, 0xfb, 0x77, 0x18, 0x78, 0x3e, 0x5a, 0x6c, 0xfe, 0x68, 0x92, 0xc3, 0xfb, 0x76, 0xd4, 0xc2, 0xa, 0x87, 0x43, 0x7a, 0xb6, 0xe6, 0x66, 0x42, 0x15, 0x52, 0xef, 0xad}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x1b, 0x68, 0xce, 0xe7, 0xac, 0x64, 0x8b, 0x3e, 0x38, 0x3e, 0x44, 0x76, 0x27, 0xb2, 0xba, 0x48, 0x35, 0xf0, 0x0, 0x2d, 0x6a, 0x54, 0xd4, 0x1d, 0xa5, 0xd0, 0x29, 0x6b, 0xd7, 0x8, 0x99}} return a, nil } diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index 1be3f380d..a31eea065 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -3,9 +3,9 @@ module github.com/onflow/flow-core-contracts/lib/go/templates go 1.18 require ( - github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/cadence v0.28.0 - github.com/onflow/flow-go-sdk v0.29.0 + github.com/kevinburke/go-bindata v3.24.0+incompatible + github.com/onflow/cadence v0.29.0-stable-cadence-4 + github.com/onflow/flow-go-sdk v0.29.0-stable-cadence-4 github.com/psiemens/sconfig v0.1.0 github.com/spf13/cobra v1.5.0 ) diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index f7c3525f9..a5f9d6909 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -237,6 +237,8 @@ github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E github.com/karalabe/usb v0.0.0-20190919080040-51dc0efba356/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= github.com/kevinburke/go-bindata v3.23.0+incompatible h1:rqNOXZlqrYhMVVAsQx8wuc+LaA73YcfbQ407wAykyS8= github.com/kevinburke/go-bindata v3.23.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= +github.com/kevinburke/go-bindata v3.24.0+incompatible h1:qajFA3D0pH94OTLU4zcCCKCDgR+Zr2cZK/RPJHDdFoY= +github.com/kevinburke/go-bindata v3.24.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23/go.mod h1:J+Gs4SYgM6CZQHDETBtE9HaSEkGmuNXF86RwHhHUvq4= @@ -278,10 +280,10 @@ github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXW github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/onflow/atree v0.4.0 h1:+TbNisavAkukAKhgQ4plWnvR9o5+SkwPIsi3jaeAqKs= github.com/onflow/atree v0.4.0/go.mod h1:7Qe1xaW0YewvouLXrugzMFUYXNoRQ8MT/UsVAWx1Ndo= -github.com/onflow/cadence v0.28.0 h1:18A1V9xqGewibEhuzqBNEoNvqG6OwVqHg7gKu3UliaM= -github.com/onflow/cadence v0.28.0/go.mod h1:h+SbY8RNl6Q6sT6l/2cvpUZUJNCbzJya+3Bkwe/0YwY= -github.com/onflow/flow-go-sdk v0.29.0 h1:dTQvTZkHsHMU3eEnHaE8JE2SOPeAIYx5CgTul5MgDYE= -github.com/onflow/flow-go-sdk v0.29.0/go.mod h1:58y6+IddssbrUnrCdYXJuAh64cMHvxy+InUfBA3e8v0= +github.com/onflow/cadence v0.29.0-stable-cadence-4 h1:hzAfjDGaKD6YG/wN+T6FjGDUi3j0y6v3/3/WmyzG8pQ= +github.com/onflow/cadence v0.29.0-stable-cadence-4/go.mod h1:IpiqITdEX5zO/jeJd/5dqAodD7NDKnsrnymwb5kbCEE= +github.com/onflow/flow-go-sdk v0.29.0-stable-cadence-4 h1:Vmutb6Cs72+Ayns6dx2mD8RByam3UB7Bg5/YB1ePPh4= +github.com/onflow/flow-go-sdk v0.29.0-stable-cadence-4/go.mod h1:KEfJICFBZ/GAV4Zj1+jCavTs7qDe77F+s6z6ot0XZSI= github.com/onflow/flow-go/crypto v0.24.4 h1:SwEtoVS2TidCIHYCZMgQ7U2YsqhI9upnw94fhdHTubM= github.com/onflow/flow-go/crypto v0.24.4/go.mod h1:dkVL98P6GHR48iD9zCB6XlnkJX8IQd00FKgt1reV90w= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 220fd7e8b..859f097b6 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -295,7 +295,6 @@ import ( "crypto/sha256" "fmt" "io" - "io/ioutil" "os" "path/filepath" "strings" @@ -6461,11 +6460,13 @@ const AssetDebug = false // directory embedded in the file by go-bindata. // For example if you run go-bindata on data/... and data contains the // following hierarchy: -// data/ -// foo.txt -// img/ -// a.png -// b.png +// +// data/ +// foo.txt +// img/ +// a.png +// b.png +// // then AssetDir("data") would return []string{"foo.txt", "img"}, // AssetDir("data/img") would return []string{"a.png", "b.png"}, // AssetDir("foo.txt") and AssetDir("notexist") would return an error, and @@ -6868,7 +6869,7 @@ func RestoreAsset(dir, name string) error { if err != nil { return err } - err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) + err = os.WriteFile(_filePath(dir, name), data, info.Mode()) if err != nil { return err } diff --git a/lib/go/test/go.mod b/lib/go/test/go.mod index 3dfa1ddec..5acfd7160 100644 --- a/lib/go/test/go.mod +++ b/lib/go/test/go.mod @@ -3,55 +3,53 @@ module github.com/onflow/flow-core-contracts/lib/go/test go 1.18 require ( - github.com/onflow/cadence v0.29.0-stable-cadence - github.com/onflow/flow-core-contracts/lib/go/contracts v0.11.2-0.20220720151516-797b149ceaaa - github.com/onflow/flow-core-contracts/lib/go/templates v0.11.2-0.20220720151516-797b149ceaaa - github.com/onflow/flow-emulator v0.38.2-0.20221027205358-7107a3d7f301 - github.com/onflow/flow-ft/lib/go/templates v0.2.0 - github.com/onflow/flow-go v0.28.1-0.20221027204513-ff6332839b80 - github.com/onflow/flow-go-sdk v0.29.0 - github.com/onflow/flow-go/crypto v0.24.4 - github.com/stretchr/testify v1.8.0 + github.com/coreos/go-semver v0.3.0 + github.com/onflow/cadence v0.39.13-stable-cadence + github.com/onflow/flow-core-contracts/lib/go/contracts v1.2.3 + github.com/onflow/flow-core-contracts/lib/go/templates v1.2.3 + github.com/onflow/flow-emulator v0.51.1 + github.com/onflow/flow-go v0.31.1-0.20230622201809-5001508cc224 + github.com/onflow/flow-go-sdk v0.41.7-stable-cadence + github.com/onflow/flow-go/crypto v0.24.7 + github.com/stretchr/testify v1.8.4 ) require ( - github.com/Microsoft/go-winio v0.5.2 // indirect - github.com/ProtonMail/go-crypto v0.0.0-20221026131551-cf6655e29de4 // indirect - github.com/acomagu/bufpipe v1.0.3 // indirect - github.com/bits-and-blooms/bitset v1.3.0 // indirect - github.com/btcsuite/btcd v0.22.1 // indirect - github.com/cenkalti/backoff/v4 v4.1.3 // indirect + github.com/SaveTheRbtz/mph v0.1.2 // indirect + github.com/beorn7/perks v1.0.1 // indirect + github.com/bits-and-blooms/bitset v1.5.0 // indirect + github.com/btcsuite/btcd/btcec/v2 v2.2.1 // indirect + github.com/cenkalti/backoff/v4 v4.2.0 // indirect github.com/cespare/xxhash v1.1.0 // indirect - github.com/cloudflare/circl v1.1.0 // indirect + github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect github.com/dgraph-io/badger/v2 v2.2007.4 // indirect - github.com/dgraph-io/ristretto v0.0.3-0.20200630154024-f66de99634de // indirect + github.com/dgraph-io/ristretto v0.1.0 // indirect github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2 // indirect - github.com/dustin/go-humanize v1.0.0 // indirect + github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect + github.com/dustin/go-humanize v1.0.1 // indirect github.com/ef-ds/deque v1.0.4 // indirect - github.com/emirpasic/gods v1.18.1 // indirect github.com/ethereum/go-ethereum v1.9.13 // indirect - github.com/fsnotify/fsnotify v1.5.4 // indirect - github.com/fxamacker/cbor/v2 v2.4.1-0.20220515183430-ad2eae63303f // indirect + github.com/fsnotify/fsnotify v1.6.0 // indirect + github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c // indirect github.com/fxamacker/circlehash v0.3.0 // indirect - github.com/go-git/gcfg v1.5.0 // indirect - github.com/go-git/go-billy/v5 v5.4.0 // indirect - github.com/go-git/go-git/v5 v5.5.2 // indirect + github.com/glebarez/go-sqlite v1.21.1 // indirect github.com/go-logr/logr v1.2.3 // indirect github.com/go-logr/stdr v1.2.2 // indirect - github.com/go-test/deep v1.0.8 // indirect + github.com/go-redis/redis/v8 v8.11.5 // indirect + github.com/go-test/deep v1.1.0 // indirect github.com/gogo/protobuf v1.3.2 // indirect + github.com/golang/glog v1.0.0 // indirect github.com/golang/protobuf v1.5.2 // indirect github.com/golang/snappy v0.0.4 // indirect github.com/google/uuid v1.3.0 // indirect - github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0 // indirect + github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 // indirect github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/go-multierror v1.1.1 // indirect github.com/hashicorp/golang-lru v0.5.4 // indirect github.com/hashicorp/hcl v1.0.0 // indirect - github.com/imdario/mergo v0.3.13 // indirect - github.com/inconshreveable/mousetrap v1.0.1 // indirect + github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/ipfs/bbloom v0.0.4 // indirect github.com/ipfs/go-block-format v0.0.3 // indirect github.com/ipfs/go-cid v0.3.2 // indirect @@ -63,91 +61,100 @@ require ( github.com/ipfs/go-log v1.0.5 // indirect github.com/ipfs/go-log/v2 v2.5.1 // indirect github.com/ipfs/go-metrics-interface v0.0.1 // indirect - github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect github.com/jbenet/goprocess v0.1.4 // indirect - github.com/kevinburke/go-bindata v3.23.0+incompatible // indirect - github.com/kevinburke/ssh_config v1.2.0 // indirect - github.com/klauspost/compress v1.15.10 // indirect - github.com/klauspost/cpuid/v2 v2.1.1 // indirect + github.com/k0kubun/pp v3.0.1+incompatible // indirect + github.com/kevinburke/go-bindata v3.24.0+incompatible // indirect + github.com/klauspost/compress v1.15.15 // indirect + github.com/klauspost/cpuid/v2 v2.2.4 // indirect github.com/libp2p/go-buffer-pool v0.1.0 // indirect - github.com/libp2p/go-libp2p v0.23.3 // indirect + github.com/libp2p/go-libp2p v0.24.2 // indirect github.com/libp2p/go-openssl v0.1.0 // indirect github.com/logrusorgru/aurora v2.0.3+incompatible // indirect - github.com/magiconair/properties v1.8.6 // indirect + github.com/logrusorgru/aurora/v4 v4.0.0 // indirect + github.com/magiconair/properties v1.8.7 // indirect github.com/mattn/go-colorable v0.1.13 // indirect - github.com/mattn/go-isatty v0.0.16 // indirect + github.com/mattn/go-isatty v0.0.18 // indirect github.com/mattn/go-pointer v0.0.1 // indirect + github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/minio/sha256-simd v1.0.0 // indirect github.com/mitchellh/mapstructure v1.5.0 // indirect github.com/mr-tron/base58 v1.2.0 // indirect github.com/multiformats/go-base32 v0.1.0 // indirect - github.com/multiformats/go-base36 v0.1.0 // indirect - github.com/multiformats/go-multiaddr v0.7.0 // indirect + github.com/multiformats/go-base36 v0.2.0 // indirect + github.com/multiformats/go-multiaddr v0.8.0 // indirect github.com/multiformats/go-multibase v0.1.1 // indirect - github.com/multiformats/go-multicodec v0.6.0 // indirect + github.com/multiformats/go-multicodec v0.7.0 // indirect github.com/multiformats/go-multihash v0.2.1 // indirect - github.com/multiformats/go-varint v0.0.6 // indirect - github.com/onflow/atree v0.4.0 // indirect + github.com/multiformats/go-varint v0.0.7 // indirect + github.com/onflow/atree v0.6.0 // indirect github.com/onflow/flow-ft/lib/go/contracts v0.7.0 // indirect - github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288 // indirect - github.com/onflow/sdks v0.4.4 // indirect + github.com/onflow/flow-nft/lib/go/contracts v1.1.0 // indirect + github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20230602212908-08fc6536d391 // indirect + github.com/onflow/fusd/lib/go/contracts v0.0.0-20211021081023-ae9de8fb2c7e // indirect + github.com/onflow/nft-storefront/lib/go/contracts v0.0.0-20221222181731-14b90207cead // indirect + github.com/onflow/sdks v0.5.0 // indirect github.com/opentracing/opentracing-go v1.2.0 // indirect github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect - github.com/pelletier/go-toml v1.9.5 // indirect - github.com/pelletier/go-toml/v2 v2.0.2 // indirect + github.com/pelletier/go-toml/v2 v2.0.6 // indirect github.com/pierrec/lz4 v2.6.1+incompatible // indirect - github.com/pjbgf/sha1cd v0.2.3 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/prometheus/client_golang v1.14.0 // indirect + github.com/prometheus/client_model v0.3.0 // indirect + github.com/prometheus/common v0.39.0 // indirect + github.com/prometheus/procfs v0.9.0 // indirect + github.com/psiemens/graceland v1.0.0 // indirect github.com/psiemens/sconfig v0.1.0 // indirect - github.com/rivo/uniseg v0.2.1-0.20211004051800-57c86be7915a // indirect - github.com/rs/zerolog v1.28.0 // indirect - github.com/sergi/go-diff v1.1.0 // indirect + github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect + github.com/rivo/uniseg v0.4.4 // indirect + github.com/rs/zerolog v1.29.0 // indirect github.com/sethvargo/go-retry v0.2.3 // indirect - github.com/skeema/knownhosts v1.1.0 // indirect + github.com/slok/go-http-metrics v0.10.0 // indirect github.com/spacemonkeygo/spacelog v0.0.0-20180420211403-2296661a0572 // indirect github.com/spaolacci/murmur3 v1.1.0 // indirect - github.com/spf13/afero v1.9.0 // indirect + github.com/spf13/afero v1.9.3 // indirect github.com/spf13/cast v1.5.0 // indirect - github.com/spf13/cobra v1.6.1 // indirect + github.com/spf13/cobra v1.7.0 // indirect github.com/spf13/jwalterweatherman v1.1.0 // indirect github.com/spf13/pflag v1.0.5 // indirect - github.com/spf13/viper v1.12.0 // indirect - github.com/subosito/gotenv v1.4.0 // indirect + github.com/spf13/viper v1.15.0 // indirect + github.com/subosito/gotenv v1.4.2 // indirect github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c // indirect github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d // indirect github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect github.com/vmihailenco/msgpack/v4 v4.3.11 // indirect github.com/vmihailenco/tagparser v0.1.1 // indirect github.com/x448/float16 v0.8.4 // indirect - github.com/xanzy/ssh-agent v0.3.3 // indirect github.com/zeebo/blake3 v0.2.3 // indirect - go.opentelemetry.io/otel v1.8.0 // indirect - go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.8.0 // indirect - go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.8.0 // indirect - go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.8.0 // indirect - go.opentelemetry.io/otel/sdk v1.8.0 // indirect - go.opentelemetry.io/otel/trace v1.8.0 // indirect - go.opentelemetry.io/proto/otlp v0.18.0 // indirect + github.com/zeebo/xxh3 v1.0.2 // indirect + go.opentelemetry.io/otel v1.14.0 // indirect + go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.14.0 // indirect + go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.14.0 // indirect + go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.14.0 // indirect + go.opentelemetry.io/otel/sdk v1.14.0 // indirect + go.opentelemetry.io/otel/trace v1.14.0 // indirect + go.opentelemetry.io/proto/otlp v0.19.0 // indirect go.uber.org/atomic v1.10.0 // indirect - go.uber.org/multierr v1.8.0 // indirect - go.uber.org/zap v1.23.0 // indirect - golang.org/x/crypto v0.3.0 // indirect - golang.org/x/exp v0.0.0-20221126150942-6ab00d035af9 // indirect - golang.org/x/net v0.7.0 // indirect - golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 // indirect - golang.org/x/sys v0.5.0 // indirect - golang.org/x/text v0.7.0 // indirect - golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect + go.uber.org/multierr v1.9.0 // indirect + go.uber.org/zap v1.24.0 // indirect + golang.org/x/crypto v0.7.0 // indirect + golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect + golang.org/x/net v0.8.0 // indirect + golang.org/x/sync v0.1.0 // indirect + golang.org/x/sys v0.6.0 // indirect + golang.org/x/text v0.8.0 // indirect + golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect google.golang.org/appengine v1.6.7 // indirect - google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd // indirect - google.golang.org/grpc v1.46.2 // indirect - google.golang.org/protobuf v1.28.1 // indirect - gopkg.in/ini.v1 v1.66.6 // indirect - gopkg.in/warnings.v0 v0.1.2 // indirect - gopkg.in/yaml.v2 v2.4.0 // indirect + google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4 // indirect + google.golang.org/grpc v1.53.0 // indirect + google.golang.org/protobuf v1.30.0 // indirect + gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect lukechampine.com/blake3 v1.1.7 // indirect + modernc.org/libc v1.22.3 // indirect + modernc.org/mathutil v1.5.0 // indirect + modernc.org/memory v1.5.0 // indirect + modernc.org/sqlite v1.21.1 // indirect ) replace github.com/onflow/flow-core-contracts/lib/go/contracts => ../contracts diff --git a/lib/go/test/go.sum b/lib/go/test/go.sum index a95d372ef..7572840cb 100644 --- a/lib/go/test/go.sum +++ b/lib/go/test/go.sum @@ -17,6 +17,16 @@ cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHOb cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= +cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= +cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= +cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= +cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= +cloud.google.com/go v0.84.0/go.mod h1:RazrYuxIK6Kb7YrzzhPoLmCVzl7Sup4NrbKPg8KHSUM= +cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWcY= +cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ= +cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= +cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4= +cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= @@ -25,6 +35,7 @@ cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4g cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= +cloud.google.com/go/kms v1.0.0/go.mod h1:nhUehi+w7zht2XrUfvTRNpxrfayBHqP4lu2NSywui/0= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= @@ -51,42 +62,34 @@ github.com/Azure/go-autorest/logger v0.1.0/go.mod h1:oExouG+K6PryycPJfVSxi/koC6L github.com/Azure/go-autorest/tracing v0.5.0/go.mod h1:r/s2XiOKccPW3HrqB+W0TQzfbtp2fGCgRFtBroKn4Dk= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= -github.com/Microsoft/go-winio v0.5.2 h1:a9IhgEQBCUEk6QCdml9CiJGhAws+YwffDHEMp1VMrpA= -github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v8QkMxJ6pZY= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/OneOfOne/xxhash v1.2.5 h1:zl/OfRA6nftbBK9qTohYBJ5xvw6C/oNKizR7cZGl3cI= github.com/OneOfOne/xxhash v1.2.5/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= -github.com/ProtonMail/go-crypto v0.0.0-20221026131551-cf6655e29de4 h1:ra2OtmuW0AE5csawV4YXMNGNQQXvLRps3z2Z59OPO+I= -github.com/ProtonMail/go-crypto v0.0.0-20221026131551-cf6655e29de4/go.mod h1:UBYPn8k0D56RtnR8RFQMjmh4KrZzWJ5o7Z9SYjossQ8= +github.com/SaveTheRbtz/mph v0.1.2 h1:5l3W496Up+7BNOVJQnJhzcGBh+wWfxWdmPUAkx3WmaM= +github.com/SaveTheRbtz/mph v0.1.2/go.mod h1:V4+WtKQPe2+dEA5os1WnGsEB0NR9qgqqgIiSt73+sT4= github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= github.com/VictoriaMetrics/fastcache v1.5.3/go.mod h1:+jv9Ckb+za/P1ZRg/sulP5Ni1v49daAVERr0H3CuscE= -github.com/acomagu/bufpipe v1.0.3 h1:fxAGrHZTgQ9w5QqVItgzwj235/uYZYgbXitB+dLupOk= -github.com/acomagu/bufpipe v1.0.3/go.mod h1:mxdxdup/WdsKVreO5GpW4+M/1CE2sMG4jeGJ2sYmHc4= github.com/aead/siphash v1.0.1/go.mod h1:Nywa3cDsYNNK3gaciGTWPwHt0wlpNV15vwmswBAUSII= github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/allegro/bigcache v1.2.1-0.20190218064605-e24eb225f156/go.mod h1:Cb/ax3seSYIx7SuZdm2G2xzfwmv3TPSk2ucNfQESPXM= -github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be h1:9AeTilPcZAjCFIImctFaOjnTIavg87rW78vTPkQqLI8= -github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be/go.mod h1:ySMOLuWl6zY27l47sB3qLNK6tF2fkHG55UZxx8oIVo4= github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= github.com/aristanetworks/goarista v0.0.0-20170210015632-ea17b1a17847/go.mod h1:D/tb0zPVXnP7fmsLZjtdUhSsumbK/ij54UXjjVgMGxQ= github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= -github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= -github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/aws/aws-sdk-go v1.25.48/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= github.com/benbjohnson/clock v1.3.0 h1:ip6w0uFQkncKQ979AypyG0ER7mqUSBdKLOgAle/AT8A= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= -github.com/bits-and-blooms/bitset v1.3.0 h1:h7mv5q31cthBTd7V4kLAZaIThj1e8vPGcSqpPue9KVI= -github.com/bits-and-blooms/bitset v1.3.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= +github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= +github.com/bits-and-blooms/bitset v1.5.0 h1:NpE8frKRLGHIcEzkR+gZhiioW1+WbYV6fKwD6ZIpQT8= +github.com/bits-and-blooms/bitset v1.5.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= github.com/btcsuite/btcd v0.0.0-20171128150713-2e60448ffcc6/go.mod h1:Dmm/EzmjnCiweXmzRIAiUWCInVmPgjkzgv5k4tVyXiQ= github.com/btcsuite/btcd v0.20.1-beta/go.mod h1:wVuoA8VJLEcwgqHBwHmzLRazpKxTv13Px/pDuV7OomQ= -github.com/btcsuite/btcd v0.22.1 h1:CnwP9LM/M9xuRrGSCGeMVs9iv09uMqwsVX7EeIpgV2c= -github.com/btcsuite/btcd v0.22.1/go.mod h1:wqgTSL29+50LRkmOVknEdmt8ZojIzhuWvgu/iptuN7Y= -github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 h1:q0rUy8C/TYNBQS1+CGKw68tLOFYSNEs0TFnxxnS9+4U= +github.com/btcsuite/btcd/btcec/v2 v2.2.1 h1:xP60mv8fvp+0khmrN0zTdPC3cNm24rfeE6lh2R/Yv3E= +github.com/btcsuite/btcd/btcec/v2 v2.2.1/go.mod h1:9/CSmJxmuvqzX9Wh2fXMWToLOHhPd11lSPuIupwTkI8= github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f/go.mod h1:TdznJufoqS23FtqVCzL0ZqgP5MqXbb4fg/WgDys70nA= github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d/go.mod h1:+5NJ2+qvTyV9exUAL/rxXi3DcLg2Ts+ymUAY5y4NvMg= github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd/go.mod h1:HHNXQzUsZCxOoE+CPiyCTO6x34Zs86zZUiwtpXoGdtg= @@ -94,23 +97,20 @@ github.com/btcsuite/goleveldb v0.0.0-20160330041536-7834afc9e8cd/go.mod h1:F+uVa github.com/btcsuite/snappy-go v0.0.0-20151229074030-0bdef8d06723/go.mod h1:8woku9dyThutzjeg+3xrA5iCpBRH8XEEg3lh6TiUghc= github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792/go.mod h1:ghJtEyQwv5/p4Mg4C0fgbePVuGr935/5ddU9Z3TmDRY= github.com/btcsuite/winsvc v1.0.0/go.mod h1:jsenWakMcC0zFBFurPLEAyrnc/teJEM1O46fmI40EZs= -github.com/bwesterb/go-ristretto v1.2.0/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0= -github.com/c-bata/go-prompt v0.2.3/go.mod h1:VzqtzE2ksDBcdln8G7mk2RX9QyGjH+OVqOCSiVIqS34= -github.com/cenkalti/backoff/v4 v4.1.3 h1:cFAlzYUlVYDysBEH2T5hyJZMh3+5+WCBvSnK6Q8UtC4= -github.com/cenkalti/backoff/v4 v4.1.3/go.mod h1:scbssz8iZGpm3xbr14ovlUdkxfGXNInqkPWOWmG2CLw= +github.com/bytecodealliance/wasmtime-go v0.22.0/go.mod h1:q320gUxqyI8yB+ZqRuaJOEnGkAnHh6WtJjMaT2CW4wI= +github.com/c-bata/go-prompt v0.2.5/go.mod h1:vFnjEGDIIA/Lib7giyE4E9c50Lvl8j0S+7FVlAwDAVw= +github.com/cenkalti/backoff/v4 v4.2.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/cp v0.1.0/go.mod h1:SOGHArjBr4JWaSDEVpWpo/hNg6RoKrls6Oh40hiwW+s= -github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.0.1-0.20190104013014-3767db7a7e18/go.mod h1:HD5P3vAIAh+Y2GAxg0PrPN1P8WkepXGpjbUPDHJqqKM= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.1.2 h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE= +github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cheekybits/genny v1.0.0/go.mod h1:+tQajlRqAUrPI7DOSpB0XAqZYtQakVtB7wXkRAgjxjQ= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= -github.com/cloudflare/circl v1.1.0 h1:bZgT/A+cikZnKIwn7xL2OBj012Bmvho/o6RpRvv3GKY= -github.com/cloudflare/circl v1.1.0/go.mod h1:prBCrKB9DV4poKZY1l9zBXg2QJY7mvgRvtMxxK7fi4I= github.com/cloudflare/cloudflare-go v0.10.2-0.20190916151808-a80f83b9add9/go.mod h1:1MxXX1Ux4x6mqPmjkUgTP1CdXIBXKX7T+Jk9Gxrmx+U= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= @@ -119,13 +119,11 @@ github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XP github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= -github.com/coreos/go-semver v0.3.0 h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM= github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/go-systemd/v22 v22.3.3-0.20220203105225-a9a7ef127534/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= @@ -133,99 +131,70 @@ github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfc github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= -github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v0.0.0-20171005155431-ecdeabc65495/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/deckarep/golang-set v0.0.0-20180603214616-504e848d77ea/go.mod h1:93vsz/8Wt4joVM7c2AVqh+YRMiUSc14yDtF28KmMOgQ= -github.com/decred/dcrd/crypto/blake256 v1.0.0 h1:/8DMNYp9SGi5f0w7uCm6d6M4OU2rGFK09Y2A4Xv7EE0= -github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 h1:HbphB4TFFXpv7MNrT52FGrrgVXF1owhMVTHFZIlnvd4= github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0/go.mod h1:DZGJHZMqrU4JJqFAWUS2UO1+lbSKsdiOoYi9Zzey7Fc= -github.com/dgraph-io/badger/v2 v2.2007.4 h1:TRWBQg8UrlUhaFdco01nO2uXwzKS7zd+HVdwV/GHc4o= github.com/dgraph-io/badger/v2 v2.2007.4/go.mod h1:vSw/ax2qojzbN6eXHIx6KPKtCSHJN/Uz0X0VPruTIhk= -github.com/dgraph-io/ristretto v0.0.3-0.20200630154024-f66de99634de h1:t0UHb5vdojIDUqktM6+xJAfScFBsVpXZmqC9dsgJmeA= github.com/dgraph-io/ristretto v0.0.3-0.20200630154024-f66de99634de/go.mod h1:KPxhHT9ZxKefz+PCeOGsrHpl1qZ7i70dGTu2u+Ahh6E= +github.com/dgraph-io/ristretto v0.1.0/go.mod h1:fux0lOrBhrVCJd3lcTHsIJhq1T2rokOu6v9Vcb3Q9ug= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= -github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2 h1:tdlZCpZ/P9DhczCTSixgIKmwPv6+wP5DGjqLYw5SUiA= github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw= +github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f/go.mod h1:cuUVRXasLTGF7a8hSLbxyZXjz+1KgoB3wDUb6vlszIc= github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= github.com/dlclark/regexp2 v1.2.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc= github.com/docker/docker v1.4.2-0.20180625184442-8e610b2b55bf/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= github.com/dop251/goja v0.0.0-20200219165308-d1232e640a87/go.mod h1:Mw6PkjjMXWbTj+nnj4s3QPXq1jaT0s5pC0iFD4+BOAA= -github.com/dustin/go-humanize v1.0.0 h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo= github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= +github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= github.com/edsrzf/mmap-go v0.0.0-20160512033002-935e0e8a636c/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= -github.com/ef-ds/deque v1.0.4 h1:iFAZNmveMT9WERAkqLJ+oaABF9AcVQ5AjXem/hroniI= github.com/ef-ds/deque v1.0.4/go.mod h1:gXDnTC3yqvBcHbq2lcExjtAcVrOnJCbMcZXmuj8Z4tg= github.com/elastic/gosigar v0.8.1-0.20180330100440-37f05ff46ffa/go.mod h1:cdorVVzy1fhmEqmtgqkoE3bYtCfSCkVyjTyCIo22xvs= -github.com/emirpasic/gods v1.18.1 h1:FXtiHYKDGKCW2KzwZKx0iC0PQmdlorYgdFG9jPXJ1Bc= -github.com/emirpasic/gods v1.18.1/go.mod h1:8tpGGwCnJ5H4r6BWwaV6OrWmMoPhUl5jm/FMNAnJvWQ= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= -github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/ethereum/go-ethereum v1.9.9/go.mod h1:a9TqabFudpDu1nucId+k9S8R9whYaHnGBLKFouA5EAo= -github.com/ethereum/go-ethereum v1.9.13 h1:rOPqjSngvs1VSYH2H+PMPiWt4VEulvNRbFgqiGqJM3E= github.com/ethereum/go-ethereum v1.9.13/go.mod h1:qwN9d1GLyDh0N7Ab8bMGd0H9knaji2jOBm2RrMGjXls= github.com/fatih/color v1.3.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fjl/memsize v0.0.0-20180418122429-ca190fb6ffbc/go.mod h1:VvhXpOYNQvB+uIk2RvXzuaQtkQJzzIx6lSBe1xv7hi0= github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= -github.com/frankban/quicktest v1.14.3 h1:FJKSZTDHjyhriyC81FLQ0LY93eSai0ZyR/ZIkd3ZUKE= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= -github.com/fsnotify/fsnotify v1.5.4 h1:jRbGcIw6P2Meqdwuo0H1p6JVLbL5DHKAKlYndzMwVZI= -github.com/fsnotify/fsnotify v1.5.4/go.mod h1:OVB6XrOHzAwXMpEM7uPOzcehqUV2UqJxmVXmkdnm1bU= -github.com/fxamacker/cbor/v2 v2.2.1-0.20201006223149-25f67fca9803/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= -github.com/fxamacker/cbor/v2 v2.4.1-0.20220515183430-ad2eae63303f h1:dxTR4AaxCwuQv9LAVTAC2r1szlS+epeuPT5ClLKT6ZY= -github.com/fxamacker/cbor/v2 v2.4.1-0.20220515183430-ad2eae63303f/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= -github.com/fxamacker/circlehash v0.3.0 h1:XKdvTtIJV9t7DDUtsf0RIpC1OcxZtPbmgIH7ekx28WA= +github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw= +github.com/fxamacker/cbor/v2 v2.2.1-0.20210927235116-3d6d5d1de29b/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= +github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= +github.com/fxamacker/circlehash v0.1.0/go.mod h1:3aq3OfVvsWtkWMb6A1owjOQFA+TLsD5FgJflnaQwtMM= github.com/fxamacker/circlehash v0.3.0/go.mod h1:3aq3OfVvsWtkWMb6A1owjOQFA+TLsD5FgJflnaQwtMM= github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff/go.mod h1:x7DCsMOv1taUwEWCzT4cmDeAkigA5/QCwUodaVOe8Ww= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= -github.com/gliderlabs/ssh v0.3.5 h1:OcaySEmAQJgyYcArR+gGGTHCyE7nvhEMTlYY+Dp8CpY= -github.com/gliderlabs/ssh v0.3.5/go.mod h1:8XB4KraRrX39qHhT6yxPsHedjA08I/uBVwj4xC+/+z4= -github.com/go-git/gcfg v1.5.0 h1:Q5ViNfGF8zFgyJWPqYwA7qGFoMTEiBmdlkcfRmpIMa4= -github.com/go-git/gcfg v1.5.0/go.mod h1:5m20vg6GwYabIxaOonVkTdrILxQMpEShl1xiMF4ua+E= -github.com/go-git/go-billy/v5 v5.3.1/go.mod h1:pmpqyWchKfYfrkb/UVH4otLvyi/5gJlGI4Hb3ZqZ3W0= -github.com/go-git/go-billy/v5 v5.4.0 h1:Vaw7LaSTRJOUric7pe4vnzBSgyuf2KrLsu2Y4ZpQBDE= -github.com/go-git/go-billy/v5 v5.4.0/go.mod h1:vjbugF6Fz7JIflbVpl1hJsGjSHNltrSw45YK/ukIvQg= -github.com/go-git/go-git-fixtures/v4 v4.3.1 h1:y5z6dd3qi8Hl+stezc8p3JxDkoTRqMAlKnXHuzrfjTQ= -github.com/go-git/go-git-fixtures/v4 v4.3.1/go.mod h1:8LHG1a3SRW71ettAD/jW13h8c6AqjVSeL11RAdgaqpo= -github.com/go-git/go-git/v5 v5.5.2 h1:v8lgZa5k9ylUw+OR/roJHTxR4QItsNFI5nKtAXFuynw= -github.com/go-git/go-git/v5 v5.5.2/go.mod h1:BE5hUJ5yaV2YMxhmaP4l6RBQ08kMxKSPD4BlxtH7OjI= +github.com/glebarez/go-sqlite v1.21.1/go.mod h1:ISs8MF6yk5cL4n/43rSOmVMGJJjHYr7L2MbZZ5Q4E2E= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/kit v0.12.0 h1:e4o3o3IsBfAKQh5Qbbiqyfu97Ku7jrO/JbohvztANh4= -github.com/go-kit/log v0.2.1 h1:MRVx0/zhvdseW+Gza6N9rVzU/IVzaeE1SFI4raAhmBU= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= -github.com/go-logfmt/logfmt v0.5.1 h1:otpy5pqBCBZ1ng9RQ0dPu4PN7ba75Y/aA+UpowDyNVA= github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/logr v1.2.3 h1:2DntVwHkVopvECVRSlL5PSo9eG+cAkDCuckLubN+rq0= github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= github.com/go-ole/go-ole v1.2.1/go.mod h1:7FAglXiTm7HKlQRDeOQ6ZNUHidzCWXuZWq/1dTyBNF8= +github.com/go-redis/redis/v8 v8.11.5/go.mod h1:gREzHqY1hg6oD9ngVRbLStwAWKhA0FEgq8Jd4h5lpwo= github.com/go-sourcemap/sourcemap v2.1.2+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= github.com/go-test/deep v1.0.5/go.mod h1:QV8Hv/iy04NyLBxAdO9njL0iVPN1S4d/A3NVv1V36o8= -github.com/go-test/deep v1.0.8 h1:TDsG77qcSprGbC6vTN8OuXp5g+J+b5Pcguhf7Zt61VM= -github.com/go-test/deep v1.0.8/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE= +github.com/go-test/deep v1.1.0/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE= github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/glog v1.0.0 h1:nfP3RFugxnNRyKgeWd4oI1nYvXpxrx8ck8ZrcizshdQ= github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -238,7 +207,8 @@ github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= -github.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc= +github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= +github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2-0.20190517061210-b285ee9cfc6c/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= @@ -255,11 +225,10 @@ github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QD github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= +github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM= github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= @@ -271,14 +240,14 @@ github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= -github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= +github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= @@ -289,13 +258,19 @@ github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hf github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= +github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= +github.com/googleapis/gax-go/v2 v2.1.1/go.mod h1:hddJymUZASv3XPyGkUpKj8pPO47Rmb0eJc8R6ouapiM= github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= github.com/gorilla/websocket v1.4.1-0.20190629185528-ae1634f6a989/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= @@ -304,74 +279,51 @@ github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmg github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0 h1:BZHcxBETFHIdVyhyEfOvn/RdU/QGdLI4y34qQGjGWO0= github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0/go.mod h1:hgWBS7lorOAVIJEQMi4ZsPv9hVvWI6+ch50m39Pf2Ks= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3/go.mod h1:o//XUCC/F+yRGJoPO/VU0GSB0f8Nhgmxx0VIRUvaC0w= github.com/gxed/hashland/keccakpg v0.0.1/go.mod h1:kRzw3HkwxFU1mpmPP8v1WyQzwdGfmKFJ6tItnhQ67kU= github.com/gxed/hashland/murmur3 v0.0.1/go.mod h1:KjXop02n4/ckmZSnY2+HKcLud/tcmvhST0bie/0lS48= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo= github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM= github.com/hashicorp/golang-lru v0.0.0-20160813221303-0a025b7e63ad/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/golang-lru v0.5.4 h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+lJfyTc= github.com/hashicorp/golang-lru v0.5.4/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= -github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/huin/goupnp v0.0.0-20161224104101-679507af18f3/go.mod h1:MZ2ZmwcBpvOoJ22IJsc7va19ZwoheaBk43rKg12SKag= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= -github.com/imdario/mergo v0.3.13 h1:lFzP57bqS/wsqKssCGmtLAb8A0wKjLGrve2q3PPVcBk= -github.com/imdario/mergo v0.3.13/go.mod h1:4lJ1jqUDcsbIECGy0RUJAXNIhg+6ocWgb1ALK2O4oXg= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= -github.com/inconshreveable/mousetrap v1.0.1 h1:U3uMjPSQEBMNp1lFxmllqCPM6P5u/Xq7Pgzkat/bFNc= -github.com/inconshreveable/mousetrap v1.0.1/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= +github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= github.com/influxdata/influxdb v1.2.3-0.20180221223340-01288bdb0883/go.mod h1:qZna6X/4elxqT3yI9iZYdZrWWdeFOOprn86kgg4+IzY= -github.com/ipfs/bbloom v0.0.4 h1:Gi+8EGJ2y5qiD5FbsbpX/TMNcJw8gSqr7eyjHa4Fhvs= github.com/ipfs/bbloom v0.0.4/go.mod h1:cS9YprKXpoZ9lT0n/Mw/a6/aFV6DTjTLYHeA+gyqMG0= github.com/ipfs/go-block-format v0.0.2/go.mod h1:AWR46JfpcObNfg3ok2JHDUfdiHRgWhJgCQF+KIgOPJY= -github.com/ipfs/go-block-format v0.0.3 h1:r8t66QstRp/pd/or4dpnbVfXT5Gt7lOqRvC+/dDTpMc= github.com/ipfs/go-block-format v0.0.3/go.mod h1:4LmD4ZUw0mhO+JSKdpWwrzATiEfM7WWgQ8H5l6P8MVk= github.com/ipfs/go-cid v0.0.1/go.mod h1:GHWU/WuQdMPmIosc4Yn1bcCT7dSeX4lBafM7iqUPQvM= github.com/ipfs/go-cid v0.0.2/go.mod h1:GHWU/WuQdMPmIosc4Yn1bcCT7dSeX4lBafM7iqUPQvM= github.com/ipfs/go-cid v0.0.5/go.mod h1:plgt+Y5MnOey4vO4UlUazGqdbEXuFYitED67FexhXog= github.com/ipfs/go-cid v0.0.7/go.mod h1:6Ux9z5e+HpkQdckYoX1PG/6xqKspzlEIR5SDmgqgC/I= -github.com/ipfs/go-cid v0.3.2 h1:OGgOd+JCFM+y1DjWPmVH+2/4POtpDzwcr7VgnB7mZXc= github.com/ipfs/go-cid v0.3.2/go.mod h1:gQ8pKqT/sUxGY+tIwy1RPpAojYu7jAyCp5Tz1svoupw= github.com/ipfs/go-datastore v0.5.0/go.mod h1:9zhEApYMTl17C8YDp7JmU7sQZi2/wqiYh73hakZ90Bk= -github.com/ipfs/go-datastore v0.6.0 h1:JKyz+Gvz1QEZw0LsX1IBn+JFCJQH4SJVFtM4uWU0Myk= github.com/ipfs/go-datastore v0.6.0/go.mod h1:rt5M3nNbSO/8q1t4LNkLyUwRs8HupMeN/8O4Vn9YAT8= -github.com/ipfs/go-detect-race v0.0.1 h1:qX/xay2W3E4Q1U7d9lNs1sU9nvguX0a7319XbyQ6cOk= github.com/ipfs/go-detect-race v0.0.1/go.mod h1:8BNT7shDZPo99Q74BpGMK+4D8Mn4j46UU0LZ723meps= -github.com/ipfs/go-ipfs-blockstore v1.2.0 h1:n3WTeJ4LdICWs/0VSfjHrlqpPpl6MZ+ySd3j8qz0ykw= github.com/ipfs/go-ipfs-blockstore v1.2.0/go.mod h1:eh8eTFLiINYNSNawfZOC7HOxNTxpB1PFuA5E1m/7exE= github.com/ipfs/go-ipfs-delay v0.0.0-20181109222059-70721b86a9a8/go.mod h1:8SP1YXK1M1kXuc4KJZINY3TQQ03J2rwBG9QfXmbRPrw= -github.com/ipfs/go-ipfs-ds-help v1.1.0 h1:yLE2w9RAsl31LtfMt91tRZcrx+e61O5mDxFRR994w4Q= github.com/ipfs/go-ipfs-ds-help v1.1.0/go.mod h1:YR5+6EaebOhfcqVCyqemItCLthrpVNot+rsOU/5IatU= github.com/ipfs/go-ipfs-util v0.0.1/go.mod h1:spsl5z8KUnrve+73pOhSVZND1SIxPW5RyBCNzQxlJBc= -github.com/ipfs/go-ipfs-util v0.0.2 h1:59Sswnk1MFaiq+VcaknX7aYEyGyGDAA73ilhEK2POp8= github.com/ipfs/go-ipfs-util v0.0.2/go.mod h1:CbPtkWJzjLdEcezDns2XYaehFVNXG9zrdrtMecczcsQ= -github.com/ipfs/go-ipld-format v0.3.0 h1:Mwm2oRLzIuUwEPewWAWyMuuBQUsn3awfFEYVb8akMOQ= github.com/ipfs/go-ipld-format v0.3.0/go.mod h1:co/SdBE8h99968X0hViiw1MNlh6fvxxnHpvVLnH7jSM= github.com/ipfs/go-log v0.0.1/go.mod h1:kL1d2/hzSpI0thNYjiKfjanbVNU+IIGA/WnNESY9leM= -github.com/ipfs/go-log v1.0.5 h1:2dOuUCB1Z7uoczMWgAyDck5JLb72zHzrMnGnCNNbvY8= github.com/ipfs/go-log v1.0.5/go.mod h1:j0b8ZoR+7+R99LD9jZ6+AJsrzkPbSXbZfGakb5JPtIo= github.com/ipfs/go-log/v2 v2.1.3/go.mod h1:/8d0SH3Su5Ooc31QlL1WysJhvyOTDCjcCZ9Axpmri6g= -github.com/ipfs/go-log/v2 v2.5.1 h1:1XdUzF7048prq4aBjDQQ4SL5RxftpRGdXhNRwKSAlcY= github.com/ipfs/go-log/v2 v2.5.1/go.mod h1:prSpmC1Gpllc9UYWxDiZDreBYw7zp4Iqp1kOLU9U5UI= -github.com/ipfs/go-metrics-interface v0.0.1 h1:j+cpbjYvu4R8zbleSs36gvB7jR+wsL2fGD6n0jO4kdg= github.com/ipfs/go-metrics-interface v0.0.1/go.mod h1:6s6euYU4zowdslK0GKHmqaIZ3j/b/tL7HTWtJ4VPgWY= github.com/jackpal/go-nat-pmp v1.0.2-0.20160603034137-1fa385a6f458/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= github.com/jbenet/go-cienv v0.1.0/go.mod h1:TqNnHUmJgXau0nCzC7kXWeotg3J9W34CUv5Djy1+FlA= -github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A= -github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo= -github.com/jbenet/goprocess v0.1.4 h1:DRGOFReOMqqDNXwW70QkacFW0YN9QnwLV0Vqk+3oU0o= github.com/jbenet/goprocess v0.1.4/go.mod h1:5yspPrukOVuOLORacaBi858NqyClJPQxYZlqdZVfqY4= github.com/jessevdk/go-flags v0.0.0-20141203071132-1679536dcc89/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= -github.com/jessevdk/go-flags v1.5.0/go.mod h1:Fw0T6WPc1dYxT4mKEZRfG5kJhaTDP9pj1c2EWnYs/m4= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= github.com/jrick/logrotate v1.0.0/go.mod h1:LNinyqDIJnpAur+b8yyulnQw/wDuN1+BYKlTRt3OuAQ= @@ -380,57 +332,42 @@ github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/X github.com/julienschmidt/httprouter v1.1.1-0.20170430222011-975b5c4c7c21/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= +github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213/go.mod h1:vNUNkEQ1e29fT/6vq2aBdFsgNPmy8qMdSay1npru+Sw= +github.com/k0kubun/pp v3.0.1+incompatible/go.mod h1:GWse8YhT0p8pT4ir3ZgBbfZild3tgzSScAn6HmfYukg= github.com/karalabe/usb v0.0.0-20190919080040-51dc0efba356/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= -github.com/kevinburke/go-bindata v3.23.0+incompatible h1:rqNOXZlqrYhMVVAsQx8wuc+LaA73YcfbQ407wAykyS8= -github.com/kevinburke/go-bindata v3.23.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= -github.com/kevinburke/ssh_config v1.2.0 h1:x584FjTGwHzMwvHx18PXxbBVzfnxogHaAReU4gf13a4= -github.com/kevinburke/ssh_config v1.2.0/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM= +github.com/kevinburke/go-bindata v3.22.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= +github.com/kevinburke/go-bindata v3.24.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23/go.mod h1:J+Gs4SYgM6CZQHDETBtE9HaSEkGmuNXF86RwHhHUvq4= github.com/klauspost/compress v1.12.3/go.mod h1:8dP1Hq4DHOhN9w426knH3Rhby4rFm6D8eO+e+Dq5Gzg= -github.com/klauspost/compress v1.15.10 h1:Ai8UzuomSCDw90e1qNMtb15msBXsNpH6gzkkENQNcJo= -github.com/klauspost/compress v1.15.10/go.mod h1:QPwzmACJjUTFsnSHH934V6woptycfrDDJnH7hvFVbGM= +github.com/klauspost/compress v1.15.15/go.mod h1:ZcK2JAFqKOpnBlxcLsJzYfrS9X1akm9fHZNnD9+Vo/4= github.com/klauspost/cpuid/v2 v2.0.4/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= github.com/klauspost/cpuid/v2 v2.0.12/go.mod h1:g2LTdtYhdyuGPqyWyv7qRAmj1WBqxuObKfj5c0PQa7c= -github.com/klauspost/cpuid/v2 v2.1.1 h1:t0wUqjowdm8ezddV5k0tLWVklVuvLJpoHeb4WBdydm0= -github.com/klauspost/cpuid/v2 v2.1.1/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= +github.com/klauspost/cpuid/v2 v2.2.4/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= -github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= -github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= -github.com/leanovate/gopter v0.2.9 h1:fQjYxZaynp97ozCzfOyOuAGOU4aU/z37zf/tOujFk7c= -github.com/libp2p/go-buffer-pool v0.1.0 h1:oK4mSFcQz7cTQIfqbe4MIj9gLW+mnanjyFtc6cdF0Y8= github.com/libp2p/go-buffer-pool v0.1.0/go.mod h1:N+vh8gMqimBzdKkSMVuydVDq+UV5QTWy5HSiZacSbPg= -github.com/libp2p/go-libp2p v0.23.3 h1:/n3i0VtJF0iZ9YMUxl/teOY3h+M8NfgaCjOSYr9D+uI= -github.com/libp2p/go-libp2p v0.23.3/go.mod h1:s9DEa5NLR4g+LZS+md5uGU4emjMWFiqkZr6hBTY8UxI= -github.com/libp2p/go-openssl v0.1.0 h1:LBkKEcUv6vtZIQLVTegAil8jbNpJErQ9AnT+bWV+Ooo= +github.com/libp2p/go-libp2p v0.24.2/go.mod h1:WuxtL2V8yGjam03D93ZBC19tvOUiPpewYv1xdFGWu1k= github.com/libp2p/go-openssl v0.1.0/go.mod h1:OiOxwPpL3n4xlenjx2h7AwSGaFSC/KZvf6gNdOBQMtc= github.com/logrusorgru/aurora v0.0.0-20200102142835-e9ef32dff381/go.mod h1:7rIyQOR62GCctdiQpZ/zOJlFyk6y+94wXzv6RNZgaR4= -github.com/logrusorgru/aurora v2.0.3+incompatible h1:tOpm7WcpBTn4fjmVfgpQq0EfczGlG91VSDkswnjF5A8= github.com/logrusorgru/aurora v2.0.3+incompatible/go.mod h1:7rIyQOR62GCctdiQpZ/zOJlFyk6y+94wXzv6RNZgaR4= -github.com/m4ksio/wal v1.0.1-0.20221209164835-154a17396e4c h1:OqVcb1Dkheracn4fgCjxlfhuSnM8jmPbrWkJbRIC4fo= +github.com/logrusorgru/aurora/v4 v4.0.0/go.mod h1:lP0iIa2nrnT/qoFXcOZSrZQpJ1o6n2CUf/hyHi2Q4ZQ= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= -github.com/magiconair/properties v1.8.6 h1:5ibWZ6iY0NctNGWo87LalDlEZ6R41TqbbDamhfG/Qzo= -github.com/magiconair/properties v1.8.6/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60= -github.com/matryer/is v1.2.0 h1:92UTHpy8CDwaJ08GqLDzhhuixiBUUD1p3AU6PHddz4A= -github.com/matryer/is v1.2.0/go.mod h1:2fLPjFQM9rhQ15aVEtbuwhJinnOqrmgXPNdZsdwlWXA= +github.com/magiconair/properties v1.8.7/go.mod h1:Dhd985XPs7jluiymwWYZ0G4Z61jb3vdS329zhj2hYo0= github.com/mattn/go-colorable v0.1.0/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= github.com/mattn/go-colorable v0.1.1/go.mod h1:FuOcm+DKB9mbwrcAfNl7/TZVBZ6rcnceauSikq3lYCQ= github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= -github.com/mattn/go-colorable v0.1.6/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= +github.com/mattn/go-colorable v0.1.7/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-colorable v0.1.12/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4= -github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= github.com/mattn/go-ieproxy v0.0.0-20190610004146-91bb50d98149/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= github.com/mattn/go-ieproxy v0.0.0-20190702010315-6dee0af9227d/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= @@ -440,74 +377,66 @@ github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hd github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= -github.com/mattn/go-isatty v0.0.16 h1:bq3VjFmv/sOjHtdEhmkEV4x1AJtvUvOJ2PFAZ5+peKQ= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= -github.com/mattn/go-pointer v0.0.1 h1:n+XhsuGeVO6MEAp7xyEukFINEa+Quek5psIR/ylA6o0= +github.com/mattn/go-isatty v0.0.18/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/mattn/go-pointer v0.0.1/go.mod h1:2zXcozF6qYGgmsG+SeTZz3oAbFLdD3OWqnUbNvJZAlc= github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.6/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= -github.com/mattn/go-runewidth v0.0.13 h1:lTGmDsbAYt5DmK6OnoV7EuIF1wEIFAcxld6ypU4OSgU= +github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= github.com/mattn/go-tty v0.0.3/go.mod h1:ihxohKRERHTVzN+aSVRwACLCeqIoZAWpoICkkvrWyR0= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo= +github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1/go.mod h1:pD8RvIylQ358TN4wwqatJ8rNavkEINozVn9DtGI3dfQ= github.com/minio/sha256-simd v0.0.0-20190131020904-2d45a736cd16/go.mod h1:2FMWW+8GMoPweT6+pI63m9YE3Lmw4J71hV56Chs1E/U= github.com/minio/sha256-simd v0.1.1-0.20190913151208-6de447530771/go.mod h1:B5e1o+1/KgNmWrSQK08Y6Z1Vb5pwIktudl0J58iy0KM= -github.com/minio/sha256-simd v1.0.0 h1:v1ta+49hkWZyvaKwrQB8elexRqm6Y0aMLjCNsrYxo6g= github.com/minio/sha256-simd v1.0.0/go.mod h1:OuYzVNI5vcoYIAmbIvHPl3N3jUzVedXbKy5RFepssQM= -github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db h1:62I3jR2EmQ4l5rM/4FEfDWcRD+abF5XlKShorW5LRoQ= +github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db/go.mod h1:l0dey0ia/Uv7NcFFVbCLtqEBQbrT4OCwCSKTEv6enCw= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= -github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY= github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/mr-tron/base58 v1.1.0/go.mod h1:xcD2VGqlgYjBdcBLw+TuYLr8afG+Hj8g2eTVqeSzSU8= github.com/mr-tron/base58 v1.1.3/go.mod h1:BinMc/sQntlIE1frQmRFPUoPA1Zkr8VRgBdjWI2mNwc= -github.com/mr-tron/base58 v1.2.0 h1:T/HDJBh4ZCPbU39/+c3rRvE0uKBQlU27+QI8LJ4t64o= github.com/mr-tron/base58 v1.2.0/go.mod h1:BinMc/sQntlIE1frQmRFPUoPA1Zkr8VRgBdjWI2mNwc= github.com/multiformats/go-base32 v0.0.3/go.mod h1:pLiuGC8y0QR3Ue4Zug5UzK9LjgbkL8NSQj0zQ5Nz/AA= -github.com/multiformats/go-base32 v0.1.0 h1:pVx9xoSPqEIQG8o+UbAe7DNi51oej1NtK+aGkbLYxPE= github.com/multiformats/go-base32 v0.1.0/go.mod h1:Kj3tFY6zNr+ABYMqeUNeGvkIC/UYgtWibDcT0rExnbI= -github.com/multiformats/go-base36 v0.1.0 h1:JR6TyF7JjGd3m6FbLU2cOxhC0Li8z8dLNGQ89tUg4F4= github.com/multiformats/go-base36 v0.1.0/go.mod h1:kFGE83c6s80PklsHO9sRn2NCoffoRdUUOENyW/Vv6sM= -github.com/multiformats/go-multiaddr v0.7.0 h1:gskHcdaCyPtp9XskVwtvEeQOG465sCohbQIirSyqxrc= -github.com/multiformats/go-multiaddr v0.7.0/go.mod h1:Fs50eBDWvZu+l3/9S6xAE7ZYj6yhxlvaVZjakWN7xRs= +github.com/multiformats/go-base36 v0.2.0/go.mod h1:qvnKE++v+2MWCfePClUEjE78Z7P2a1UV0xHgWc0hkp4= +github.com/multiformats/go-multiaddr v0.8.0/go.mod h1:Fs50eBDWvZu+l3/9S6xAE7ZYj6yhxlvaVZjakWN7xRs= github.com/multiformats/go-multibase v0.0.1/go.mod h1:bja2MqRZ3ggyXtZSEDKpl0uO/gviWFaSteVbWT51qgs= github.com/multiformats/go-multibase v0.0.3/go.mod h1:5+1R4eQrT3PkYZ24C3W2Ue2tPwIdYQD509ZjSb5y9Oc= -github.com/multiformats/go-multibase v0.1.1 h1:3ASCDsuLX8+j4kx58qnJ4YFq/JWTJpCyDW27ztsVTOI= github.com/multiformats/go-multibase v0.1.1/go.mod h1:ZEjHE+IsUrgp5mhlEAYjMtZwK1k4haNkcaPg9aoe1a8= -github.com/multiformats/go-multicodec v0.6.0 h1:KhH2kSuCARyuJraYMFxrNO3DqIaYhOdS039kbhgVwpE= -github.com/multiformats/go-multicodec v0.6.0/go.mod h1:GUC8upxSBE4oG+q3kWZRw/+6yC1BqO550bjhWsJbZlw= +github.com/multiformats/go-multicodec v0.7.0/go.mod h1:GUC8upxSBE4oG+q3kWZRw/+6yC1BqO550bjhWsJbZlw= github.com/multiformats/go-multihash v0.0.1/go.mod h1:w/5tugSrLEbWqlcgJabL3oHFKTwfvkofsjW2Qa1ct4U= github.com/multiformats/go-multihash v0.0.13/go.mod h1:VdAWLKTwram9oKAatUcLxBNUjdtcVwxObEQBtRfuyjc= github.com/multiformats/go-multihash v0.0.14/go.mod h1:VdAWLKTwram9oKAatUcLxBNUjdtcVwxObEQBtRfuyjc= -github.com/multiformats/go-multihash v0.2.1 h1:aem8ZT0VA2nCHHk7bPJ1BjUbHNciqZC/d16Vve9l108= github.com/multiformats/go-multihash v0.2.1/go.mod h1:WxoMcYG85AZVQUyRyo9s4wULvW5qrI9vb2Lt6evduFc= github.com/multiformats/go-varint v0.0.5/go.mod h1:3Ls8CIEsrijN6+B7PbrXRPxHRPuXSrVKRY101jdMZYE= -github.com/multiformats/go-varint v0.0.6 h1:gk85QWKxh3TazbLxED/NlDVv8+q+ReFJk7Y2W/KhfNY= -github.com/multiformats/go-varint v0.0.6/go.mod h1:3Ls8CIEsrijN6+B7PbrXRPxHRPuXSrVKRY101jdMZYE= +github.com/multiformats/go-varint v0.0.7/go.mod h1:r8PUYw/fD/SjBCiKOoDlGF6QawOELpZAu9eioSos/OU= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/naoina/go-stringutil v0.1.0/go.mod h1:XJ2SJL9jCtBh+P9q5btrd/Ylo8XwT/h1USek5+NqSA0= github.com/naoina/toml v0.1.2-0.20170918210437-9fafd6967416/go.mod h1:NBIhNtsFMo3G2szEBne+bO4gS192HuIYRqfvOWb4i1E= -github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= -github.com/onflow/atree v0.4.0 h1:+TbNisavAkukAKhgQ4plWnvR9o5+SkwPIsi3jaeAqKs= -github.com/onflow/atree v0.4.0/go.mod h1:7Qe1xaW0YewvouLXrugzMFUYXNoRQ8MT/UsVAWx1Ndo= -github.com/onflow/cadence v0.11.2/go.mod h1:8NwJGO535nnY/+QWEMDc2rhvOFChToWQ9Bg7fUIIc/I= -github.com/onflow/cadence v0.29.0-stable-cadence/go.mod h1:h+SbY8RNl6Q6sT6l/2cvpUZUJNCbzJya+3Bkwe/0YwY= -github.com/onflow/flow-emulator v0.38.2-0.20221027205358-7107a3d7f301/go.mod h1:oWA76SNYv2HFdYzmzx3gEBG7OY2csqjN8b9xMOFRDlI= +github.com/onflow/atree v0.1.0-beta1.0.20211027184039-559ee654ece9/go.mod h1:+6x071HgCF/0v5hQcaE5qqjc2UqN5gCU8h5Mk6uqpOg= +github.com/onflow/atree v0.6.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= +github.com/onflow/cadence v0.20.1/go.mod h1:7mzUvPZUIJztIbr9eTvs+fQjWWHTF8veC+yk4ihcNIA= +github.com/onflow/cadence v0.39.13-stable-cadence/go.mod h1:SxT8/IEkS1drFj2ofUEK9S6KyJ5GQbrm0LX4EFCp/7Q= +github.com/onflow/flow-emulator v0.51.1/go.mod h1:jRdtAc9oh04EA13GW3l8au7J7FmEUfCWAzsd5rSzr+4= github.com/onflow/flow-ft/lib/go/contracts v0.7.0/go.mod h1:kTMFIySzEJJeupk+7EmXs0EJ6CBWY/MV9fv9iYQk+RU= -github.com/onflow/flow-ft/lib/go/templates v0.2.0/go.mod h1:qwkTElMcI+PnSBGIWGu1K9OYBLatNimWTC8un9qUji0= -github.com/onflow/flow-go v0.28.1-0.20221027204513-ff6332839b80/go.mod h1:QqdroNkmNOaR9bg+4eciPkmX+mTIxY+F7SjkqMlVEGY= -github.com/onflow/flow-go-sdk v0.13.0/go.mod h1:yqnSajzJVFfrTg68F4WXRR1Yzs1akqAjyscEDyFudPE= -github.com/onflow/flow-go-sdk v0.29.0/go.mod h1:58y6+IddssbrUnrCdYXJuAh64cMHvxy+InUfBA3e8v0= -github.com/onflow/flow-go/crypto v0.24.4/go.mod h1:dkVL98P6GHR48iD9zCB6XlnkJX8IQd00FKgt1reV90w= -github.com/onflow/flow/protobuf/go/flow v0.1.8/go.mod h1:kRugbzZjwQqvevJhrnnCFMJZNmoSJmxlKt6hTGXZojM= -github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= -github.com/onflow/sdks v0.4.4/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= +github.com/onflow/flow-go v0.31.1-0.20230622201809-5001508cc224/go.mod h1:+acYNPawe1GPMkf3kmHexeXjck0t7/a8q1FErfLlerI= +github.com/onflow/flow-go-sdk v0.24.0/go.mod h1:IoptMLPyFXWvyd9yYA6/4EmSeeozl6nJoIv4FaEMg74= +github.com/onflow/flow-go-sdk v0.41.7-stable-cadence/go.mod h1:ejVN+bqcsTHVvRpDDJDoBNdmcxUfFMW4IvdTbMeQ/hQ= +github.com/onflow/flow-go/crypto v0.21.3/go.mod h1:vI6V4CY3R6c4JKBxdcRiR/AnjBfL8OSD97bJc60cLuQ= +github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= +github.com/onflow/flow-nft/lib/go/contracts v1.1.0/go.mod h1:YsvzYng4htDgRB9sa9jxdwoTuuhjK8WYWXTyLkIigZY= +github.com/onflow/flow/protobuf/go/flow v0.2.2/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= +github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20230602212908-08fc6536d391/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= +github.com/onflow/fusd/lib/go/contracts v0.0.0-20211021081023-ae9de8fb2c7e/go.mod h1:CRX9eXtc9zHaRVTW1Xh4Cf5pZgKkQuu1NuSEVyHXr/0= +github.com/onflow/nft-storefront/lib/go/contracts v0.0.0-20221222181731-14b90207cead/go.mod h1:E3ScfQb5XcWJCIAdtIeEnr5i5l2y60GT0BTXeIHseWg= +github.com/onflow/sdks v0.5.0/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= @@ -517,32 +446,36 @@ github.com/opentracing/opentracing-go v1.2.0/go.mod h1:GxEUsuufX4nBwe+T+Wl9TAgYr github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58/go.mod h1:DXv8WO4yhMYhSNPKjeNKa5WY9YCIEBRbNzFFPJbWO6Y= github.com/pborman/uuid v0.0.0-20170112150404-1b00554d8222/go.mod h1:VyrYX9gd7irzKovcSS6BIIEwPRkP2Wm2m9ufcdFSJ34= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= -github.com/pelletier/go-toml v1.9.5/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= -github.com/pelletier/go-toml/v2 v2.0.2/go.mod h1:MovirKjgVRESsAvNZlAjtFwV867yGuwRkXbG66OzopI= +github.com/pelletier/go-toml/v2 v2.0.6/go.mod h1:eumQOmlWiOPt5WriQQqoM5y18pDHwha2N+QD+EUNTek= github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7/go.mod h1:CRroGNssyjTd/qIG2FyxByd2S8JEAZXBl4qUrZf8GS0= github.com/pierrec/lz4 v2.6.1+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= -github.com/pjbgf/sha1cd v0.2.3/go.mod h1:HOK9QrgzdHpbc2Kzip0Q1yi3M2MFGPADtR6HjG65m5M= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= -github.com/pkg/term v0.0.0-20190109203006-aa71e9d9e942/go.mod h1:eCbImbZ95eXtAUIbLAuAVnBnwf83mjf6QIVH8SHYwqQ= +github.com/pkg/term v1.1.0/go.mod h1:E25nymQcrSllhX42Ok8MRm1+hyBdHY0dCeiKZ9jpNGw= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso= +github.com/prometheus/client_golang v1.14.0/go.mod h1:8vpkKitgIVNcqrRBWh1C4TIUQgYNtG/XQE4E/Zae36Y= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/common v0.39.0/go.mod h1:6XBZ7lYdLCbkAVhwRsWTZn+IN5AB9F/NXd5w0BbEX0Y= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= +github.com/prometheus/procfs v0.9.0/go.mod h1:+pB4zwohETzFnmlpe6yd2lSc+0/46IYZRB/chUwxUZY= github.com/prometheus/tsdb v0.6.2-0.20190402121629-4f204dcbc150/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= +github.com/psiemens/graceland v1.0.0/go.mod h1:1Tof+vt1LbmcZFE0lzgdwMN0QBymAChG3FRgDx8XisU= github.com/psiemens/sconfig v0.1.0/go.mod h1:+MLKqdledP/8G3rOBpknbLh0IclCf4WneJUtS26JB2U= -github.com/raviqqe/hamt v0.0.0-20190615202029-864fb7caef85/go.mod h1:I9elsTaXMhu41qARmzefHy7v2KmAV2TB1yH4E+nBSf0= -github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= -github.com/rivo/uniseg v0.2.1-0.20211004051800-57c86be7915a/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= +github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= +github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= +github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= +github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= github.com/rjeczalik/notify v0.9.1/go.mod h1:rKwnCoCGeuQnwBtTSPL9Dad03Vh2n40ePRrjvIXnJho= github.com/robertkrimen/otto v0.0.0-20170205013659-6a77b7cbc37d/go.mod h1:xvqspoSXJTIpemEonrMDFq6XzwHYYgToXWj5eRX1OtY= github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= @@ -551,51 +484,52 @@ github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFR github.com/rs/cors v0.0.0-20160617231935-a62a804a8a00/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= github.com/rs/xhandler v0.0.0-20160618193221-ed27b6fd6521/go.mod h1:RvLn4FgxWubrpZHtQLnOf6EwhN2hEMusxZOhcW9H3UQ= github.com/rs/xid v1.4.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg= -github.com/rs/zerolog v1.28.0/go.mod h1:NILgTygv/Uej1ra5XxGf82ZFSLk58MFGAUS2o6usyD0= +github.com/rs/zerolog v1.29.0/go.mod h1:NILgTygv/Uej1ra5XxGf82ZFSLk58MFGAUS2o6usyD0= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/segmentio/fasthash v1.0.2/go.mod h1:waKX8l2N8yckOgmSsXJi7x1ZfdKZ4x7KRMzBtS3oedY= -github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= +github.com/schollz/progressbar/v3 v3.8.3/go.mod h1:pWnVCjSBZsT2X3nx9HfRdnCDrpbevliMeoEVhStwHko= github.com/sethvargo/go-retry v0.2.3/go.mod h1:1afjQuvh7s4gflMObvjLPaWgluLLyhA1wmVZ6KLpICw= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= -github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= -github.com/skeema/knownhosts v1.1.0/go.mod h1:sKFq3RD6/TKZkSWn8boUbDC7Qkgcv+8XXijpFO6roag= +github.com/slok/go-http-metrics v0.10.0/go.mod h1:lFqdaS4kWMfUKCSukjC47PdCeTk+hXDUVm8kLHRqJ38= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= github.com/spacemonkeygo/spacelog v0.0.0-20180420211403-2296661a0572/go.mod h1:w0SWMsp6j9O/dk4/ZpIhL+3CkG8ofA2vuv7k+ltqUMc= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spaolacci/murmur3 v1.0.1-0.20190317074736-539464a789e9/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= -github.com/spf13/afero v1.9.0/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= +github.com/spf13/afero v1.9.3/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cast v1.5.0/go.mod h1:SpXXQ5YoyJw6s3/6cMTQuxvgRl3PCJiyaX9p6b155UU= github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU= -github.com/spf13/cobra v1.6.1/go.mod h1:IOw/AERYS7UzyrGinqmz6HLUo219MORXGxhbaJUqzrY= +github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRMrb0= github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo= github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s= github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE= -github.com/spf13/viper v1.12.0/go.mod h1:b6COn30jlNxbm/V2IqWiNWkJ+vZNiMNksliPCiuKtSI= +github.com/spf13/viper v1.15.0/go.mod h1:fFcTBJxvhhzSJiZy8n+PeW6t8l+KeT/uTARa0jHOQLA= github.com/status-im/keycard-go v0.0.0-20190316090335-8537d3370df4/go.mod h1:RZLeN1LMWmRsyYjvAu+I6Dm9QmlDaIIt+Y+4Kd7Tp+Q= github.com/steakknife/bloomfilter v0.0.0-20180922174646-6819c0d2a570/go.mod h1:8OR4w3TdeIHIh1g6EMY5p0gVNOovcWC+1vpc7naMuAw= github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3/go.mod h1:hpGUWaI9xL8pRQCTXQgocU38Qw1g0Us7n5PxxTwTCYU= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= -github.com/subosito/gotenv v1.4.0/go.mod h1:mZd6rFysKEcUhUHXJk0C/08wAgyDBFuwEYL7vWWGaGo= +github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= +github.com/subosito/gotenv v1.4.2/go.mod h1:ayKnFf/c6rvx/2iiLrJUk1e6plDbT3edrFNGqEflhK0= github.com/supranational/blst v0.3.4/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d/go.mod h1:9OrXJhf154huy1nPWmuSrkgjPUtUNhA+Zmy+6AESzuA= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c/go.mod h1:JlzghshsemAMDGZLytTFY8C1JQxQPhnatWqNwUXjggo= @@ -611,7 +545,6 @@ github.com/vmihailenco/tagparser v0.1.1/go.mod h1:OeAg3pn3UbLjkWt+rN9oFYB6u/cQgq github.com/whyrusleeping/go-logging v0.0.0-20170515211332-0457bb6b88fc/go.mod h1:bopw91TMyo8J3tvftk8xmU2kPmlrt4nScJQZU2hE5EM= github.com/wsddn/go-ecdh v0.0.0-20161211032359-48726bab9208/go.mod h1:IotVbo4F+mw0EzQ08zFqg7pK3FebNXpaMsRy2RT+Ees= github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg= -github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= @@ -619,10 +552,12 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= -github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= github.com/zeebo/assert v1.1.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= +github.com/zeebo/blake3 v0.2.0/go.mod h1:G9pM4qQwjRzF1/v7+vabMj/c5mWpGZ2Wzo3Eb4z0pb4= github.com/zeebo/blake3 v0.2.3/go.mod h1:mjJjZpnsyIVtVgTOSpJ9vmRE4wgDeyt2HU3qXvvKCaQ= +github.com/zeebo/pcg v1.0.0/go.mod h1:09F0S9iiKrwn9rlI5yjLkmrug154/YRW6KnnXVDM/l4= github.com/zeebo/pcg v1.0.1/go.mod h1:09F0S9iiKrwn9rlI5yjLkmrug154/YRW6KnnXVDM/l4= +github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= @@ -630,29 +565,30 @@ go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= -go.opentelemetry.io/otel v1.8.0/go.mod h1:2pkj+iMj0o03Y+cW6/m8Y4WkRdYN3AvCXCnzRMp9yvM= -go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.8.0/go.mod h1:78XhIg8Ht9vR4tbLNUhXsiOnE2HOuSeKAiAcoVQEpOY= -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.8.0/go.mod h1:w8aZL87GMOvOBa2lU/JlVXE1q4chk/0FX+8ai4513bw= -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.8.0/go.mod h1:twhIvtDQW2sWP1O2cT1N8nkSBgKCRZv2z6COTTBrf8Q= -go.opentelemetry.io/otel/sdk v1.8.0/go.mod h1:uPSfc+yfDH2StDM/Rm35WE8gXSNdvCg023J6HeGNO0c= -go.opentelemetry.io/otel/trace v1.8.0/go.mod h1:0Bt3PXY8w+3pheS3hQUt+wow8b1ojPaTBoTCh2zIFI4= +go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= +go.opentelemetry.io/otel v1.14.0/go.mod h1:o4buv+dJzx8rohcUeRmWUZhqupFvzWis188WlggnNeU= +go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.14.0/go.mod h1:UFG7EBMRdXyFstOwH028U0sVf+AvukSGhF0g8+dmNG8= +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.14.0/go.mod h1:HrbCVv40OOLTABmOn1ZWty6CHXkU8DK/Urc43tHug70= +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.14.0/go.mod h1:5w41DY6S9gZrbjuq6Y+753e96WfPha5IcsOSZTtullM= +go.opentelemetry.io/otel/sdk v1.14.0/go.mod h1:bwIC5TjrNG6QDCHNWvW4HLHtUQ4I+VQDsnjhvyZCALM= +go.opentelemetry.io/otel/trace v1.14.0/go.mod h1:8avnQLK+CG77yNLUae4ea2JDQ6iT+gozhnZjy/rw9G8= go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= -go.opentelemetry.io/proto/otlp v0.18.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= +go.opentelemetry.io/proto/otlp v0.19.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.6.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= go.uber.org/atomic v1.10.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0= -go.uber.org/goleak v1.0.0/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= +go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= go.uber.org/goleak v1.1.11-0.20210813005559-691160354723/go.mod h1:cwTWslyiVhfpKIDGSZEM2HlOvcqm+tG4zioyIeLoqMQ= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= go.uber.org/multierr v1.5.0/go.mod h1:FeouvMocqHpRaaGuG9EjoKcStLC43Zu/fmqdUMPcKYU= go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= -go.uber.org/multierr v1.8.0/go.mod h1:7EAYxJLBy9rStEaz58O2t4Uvip6FSURkq8/ppBp95ak= +go.uber.org/multierr v1.9.0/go.mod h1:X2jQV1h+kxSjClGpnseKVIxpmcjrj7MNnI0bnlfKTVQ= go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA= go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= go.uber.org/zap v1.16.0/go.mod h1:MA8QOfq0BHJwdXa996Y4dYkAqRKB8/1K1QMMZVaNZjQ= go.uber.org/zap v1.19.1/go.mod h1:j3DNczoxDZroyBnOT1L/Q79cfUMGZxlv/9dzN7SM1rI= -go.uber.org/zap v1.23.0/go.mod h1:D+nX8jyLsMHMYrln8A0rJjFt/T/9/bGgIhAqxv5URuY= +go.uber.org/zap v1.24.0/go.mod h1:2kMP+WWQ8aoFoedH3T2sq6iJ2yDWpHbP0f6MQbS9Gkg= golang.org/x/crypto v0.0.0-20170930174604-9419663f5a44/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= @@ -662,17 +598,13 @@ golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20200117160349-530e935923ad/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20200423211502-4bdfaf469ed5/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= -golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20220826181053-bd7e27e6170d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.3.0/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4= +golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -686,7 +618,7 @@ golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/exp v0.0.0-20221126150942-6ab00d035af9/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= +golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= @@ -701,6 +633,7 @@ golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRu golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= @@ -712,7 +645,6 @@ golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -746,15 +678,15 @@ golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81R golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= -golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220826154423-83b083e8dc8b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= -golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= +golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -764,6 +696,12 @@ golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -776,7 +714,7 @@ golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -798,10 +736,10 @@ golang.org/x/sys v0.0.0-20190712062909-fae7ac547cb7/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200107162124-548cf772de50/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -816,39 +754,41 @@ golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200828194041-157a740278f4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200909081042-eff7692f9009/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200918174421-af09f7315aff/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201014080544-cc95f250f6bc/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210917161153-d61c044b1678/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220825204002-c680a09ffe64/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.0.0-20220722155259-a9ba230a4035/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= +golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -857,9 +797,7 @@ golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= @@ -901,7 +839,6 @@ golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapK golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200323144430-8dcfad9e016e/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= @@ -920,13 +857,16 @@ golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4f golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= +golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= +golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= gonum.org/v1/gonum v0.6.1/go.mod h1:9mxDZsDKxgMAuccQkewq682L+0eCu4dCN2yonUJTCLU= gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= @@ -947,10 +887,20 @@ google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0M google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= -google.golang.org/api v0.31.0/go.mod h1:CL+9IBCa2WWU6gRuBWaKqGWLFFwbEUXkfeMkHLQWYWo= google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= +google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= +google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= +google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= +google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= +google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= +google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= +google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= +google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= +google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= +google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= +google.golang.org/api v0.58.0/go.mod h1:cAbP2FsxoGVNwtgNAmmn3y5G1TWAiVYRmg4yku3lv+E= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -988,16 +938,39 @@ google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7Fc google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200831141814-d751682dd103/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= +google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= +google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210608205507-b6d2f5bf0d7d/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24= +google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= +google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= +google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= +google.golang.org/genproto v0.0.0-20210805201207-89edb61ffb67/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= +google.golang.org/genproto v0.0.0-20210813162853-db860fec028c/go.mod h1:cFeNkxwySK631ADgubI+/XFU/xp8FD5KIVV4rj8UC5w= +google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210917145530-b395a37504d4/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210921142501-181ce0d877f6/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211007155348-82e027067bd4/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4/go.mod h1:NWraEVixdDnqcqQ30jipen1STv2r/n24Wb7twVTGR4s= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= @@ -1017,10 +990,16 @@ google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= +google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= google.golang.org/grpc v1.42.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.46.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.46.2/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.53.0/go.mod h1:OnIrk0ipVdj4N5d9IUoFUx72/VlD7+jUsHwZgwSMQpw= +google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= @@ -1034,17 +1013,14 @@ google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlba google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= -gopkg.in/ini.v1 v1.66.6/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/ini.v1 v1.67.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce/go.mod h1:5AcXVHNjg+BDxry382+8OKon8SEWiKktQR07RKPsv1c= gopkg.in/olebedev/go-duktape.v3 v3.0.0-20190213234257-ec84240a7772/go.mod h1:uAJfkITjFhyEEuUfm7bsmCZRbW5WRq8s9EY8HZ6hCns= gopkg.in/olebedev/go-duktape.v3 v3.0.0-20200316214253-d7b0ff38cac9/go.mod h1:uAJfkITjFhyEEuUfm7bsmCZRbW5WRq8s9EY8HZ6hCns= @@ -1052,18 +1028,14 @@ gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= gopkg.in/sourcemap.v1 v1.0.5/go.mod h1:2RlvNNSMglmRrcvhfuzp4hQHwOtjxlbjX7UPY/GXb78= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= gopkg.in/urfave/cli.v1 v1.20.0/go.mod h1:vuBzUtMdQeixQj8LVd+/98pzhxNGQoyuPBlsXHOQNO0= -gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI= gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.0/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= @@ -1074,6 +1046,10 @@ honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= lukechampine.com/blake3 v1.1.7/go.mod h1:tkKEOtDkNtklkXtLNEOGNq5tcV90tJiA1vAA12R78LA= +modernc.org/libc v1.22.3/go.mod h1:MQrloYP209xa2zHome2a8HLiLm6k0UT8CoHpV74tOFw= +modernc.org/mathutil v1.5.0/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= +modernc.org/memory v1.5.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= +modernc.org/sqlite v1.21.1/go.mod h1:XwQ0wZPIh1iKb5mkvCJ3szzbhk+tykC8ZWqTRTgYRwI= pgregory.net/rapid v0.4.7/go.mod h1:UYpPVyjFHzYBGHIxLFoupi8vwk6rXNzRY9OMvVxFIOU= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= diff --git a/lib/go/test/staking_test_helpers.go b/lib/go/test/staking_test_helpers.go index 3a5ebe6d3..4168bb288 100644 --- a/lib/go/test/staking_test_helpers.go +++ b/lib/go/test/staking_test_helpers.go @@ -51,13 +51,8 @@ func (evt EpochTotalRewardsPaidEvent) FeesBurned() cadence.UFix64 { } func stubInterpreter() *interpreter.Interpreter { - interp, _ := interpreter.NewInterpreter( - nil, - nil, - &interpreter.Config{}, - ) - - return interp + inter, _ := interpreter.NewInterpreter(nil, nil, &interpreter.Config{}) + return inter } // Defines utility functions that are used for testing the staking contract @@ -863,7 +858,7 @@ func assertRoleCountsEquals( } } -/// Sets the role slot limits to the specified values +// / Sets the role slot limits to the specified values func setNodeRoleSlotLimits( t *testing.T, b *emulator.Blockchain,