diff --git a/contracts/ExampleNFT.cdc b/contracts/ExampleNFT.cdc index d418706..6c04d5e 100644 --- a/contracts/ExampleNFT.cdc +++ b/contracts/ExampleNFT.cdc @@ -185,9 +185,9 @@ access(all) contract ExampleNFT: NonFungibleToken { /// withdraw removes an NFT from the collection and moves it to the caller access(NonFungibleToken.Withdraw) fun withdraw(withdrawID: UInt64): @{NonFungibleToken.NFT} { let token <- self.ownedNFTs.remove(key: withdrawID) - ?? panic("ExampleNFT.Collection.withdraw: Could not withdraw an NFT with the ID=" + ?? panic("ExampleNFT.Collection.withdraw: Could not withdraw an NFT with ID " .concat(withdrawID.toString()) - .concat(". Check the submitted ID to make sure it is one that this collection owns")) + .concat(". Check the submitted ID to make sure it is one that this collection owns.")) return <-token } @@ -223,7 +223,7 @@ access(all) contract ExampleNFT: NonFungibleToken { } access(all) view fun borrowNFT(_ id: UInt64): &{NonFungibleToken.NFT}? { - return (&self.ownedNFTs[id] as &{NonFungibleToken.NFT}?) + return &self.ownedNFTs[id] } /// Borrow the view resolver for the specified NFT ID diff --git a/contracts/MetadataViews.cdc b/contracts/MetadataViews.cdc index 6f55989..ed7014e 100644 --- a/contracts/MetadataViews.cdc +++ b/contracts/MetadataViews.cdc @@ -279,10 +279,10 @@ access(all) contract MetadataViews { view init(receiver: Capability<&{FungibleToken.Receiver}>, cut: UFix64, description: String) { pre { cut >= 0.0 && cut <= 1.0 : - "MetadataViews.Royalty.init: The provided royalty cut value (" - .concat(cut.toString()) - .concat(") is invalid.") - .concat(" It should be within the valid range between 0 and 1. i.e [0,1]") + "MetadataViews.Royalty.init: Cannot initialize the Royalty Metadata View! " + .concat("The provided royalty cut value of ").concat(cut.toString()) + .concat(" is invalid. ") + .concat("It should be within the valid range between 0 and 1. i.e [0,1]") } self.receiver = receiver self.cut = cut @@ -308,9 +308,10 @@ access(all) contract MetadataViews { assert( totalCut <= 1.0, message: - "MetadataViews.Royalties.init: Sum of cutInfos multipliers (" + "MetadataViews.Royalties.init: Cannot initialize Royalties Metadata View! " + .concat(" The sum of cutInfos multipliers is ") .concat(totalCut.toString()) - .concat(") should not be greater than 1.0") + .concat(" but it should not be greater than 1.0") ) // Assign the cutInfos self.cutInfos = cutInfos @@ -467,11 +468,12 @@ access(all) contract MetadataViews { assert( number <= max!, message: - "MetadataViews.Edition.init: The provided edition number for the NFT (" + "MetadataViews.Edition.init: Cannot intialize the Edition Metadata View! " + .concat("The provided edition number of ") .concat(number.toString()) - .concat(") cannot be greater than the max edition number (") + .concat(" cannot be greater than the max edition number of ") .concat(max!.toString()) - .concat(")!") + .concat(".") ) } self.name = name @@ -553,7 +555,8 @@ access(all) contract MetadataViews { view init(score: UFix64?, max: UFix64?, description: String?) { if score == nil && description == nil { - panic("MetadataViews.Rarity.init: The provided score and description are both `nil`." + panic("MetadataViews.Rarity.init: Cannot initialize the Rarity Metadata View! " + .concat("The provided score and description are both `nil`. ") .concat(" A Rarity needs to set score, description, or both")) } @@ -668,7 +671,8 @@ access(all) contract MetadataViews { ) { pre { publicLinkedType.isSubtype(of: Type<&{NonFungibleToken.Collection}>()): - "MetadataViews.NFTCollectionData.init: The Public linked type <" + "MetadataViews.NFTCollectionData.init: Cannot initialize the NFTCollectionData Metadata View! " + .concat("The Public linked type <") .concat(publicLinkedType.identifier) .concat("> is incorrect. It must be a subtype of the NonFungibleToken.Collection interface.") } diff --git a/contracts/NonFungibleToken.cdc b/contracts/NonFungibleToken.cdc index 20d4c26..14b7c48 100644 --- a/contracts/NonFungibleToken.cdc +++ b/contracts/NonFungibleToken.cdc @@ -112,13 +112,15 @@ access(all) contract interface NonFungibleToken: ViewResolver { access(all) fun createEmptyCollection(): @{Collection} { post { result.getLength() == 0: - "NonFungibleToken.NFT.createEmptyCollection: The created collection has a non-zero length." + "NonFungibleToken.NFT.createEmptyCollection: Cannot create an empty collection! " + .concat("The created NonFungibleToken Collection has a non-zero length. ") .concat(" A newly created collection must be empty!") result.isSupportedNFTType(type: self.getType()): - "NonFungibleToken.NFT.createEmptyCollection: The created collection does not support NFTs of type=" - .concat(self.getType().identifier) - .concat(" The collection must support NFTs of type=") + "NonFungibleToken.NFT.createEmptyCollection: Cannot create an empty collection! " + .concat("The created NonFungibleToken Collection does not support NFTs of type <") .concat(self.getType().identifier) + .concat(">. The collection must support NFTs of type <") + .concat(self.getType().identifier).concat(">.") } } @@ -163,11 +165,12 @@ access(all) contract interface NonFungibleToken: ViewResolver { access(Withdraw) fun withdraw(withdrawID: UInt64): @{NFT} { post { result.id == withdrawID: - "NonFungibleToken.Provider.withdraw: The ID of the withdrawn token (" + "NonFungibleToken.Provider.withdraw: Cannot withdraw NFT! " + .concat("The ID of the withdrawn NFT (") .concat(result.id.toString()) .concat(") must be the same as the requested ID (") .concat(withdrawID.toString()) - .concat(")") + .concat(").") emit Withdrawn(type: result.getType().identifier, id: result.id, uuid: result.uuid, from: self.owner?.address, providerUUID: self.uuid) } } @@ -246,7 +249,7 @@ access(all) contract interface NonFungibleToken: ViewResolver { access(all) view fun borrowNFT(_ id: UInt64): &{NonFungibleToken.NFT}? { post { (result == nil) || (result?.id == id): - "NonFungibleToken.Collection.borrowNFT: Cannot borrow NFT reference: " + "NonFungibleToken.Collection.borrowNFT: Cannot borrow NFT reference! " .concat("The ID of the returned reference (") .concat(result!.id.toString()) .concat(") does not match the ID that was specified (") @@ -261,13 +264,15 @@ access(all) contract interface NonFungibleToken: ViewResolver { access(all) fun createEmptyCollection(): @{Collection} { post { result.getType() == self.getType(): - "NonFungibleToken.Collection.createEmptyCollection: The created collection type <" + "NonFungibleToken.Collection.createEmptyCollection: Cannot create empty collection! " + .concat("The created collection type <") .concat(result.getType().identifier) .concat("> does not have the same type as the collection that was used to create it <") .concat(self.getType().identifier) - .concat(">") + .concat(">.") result.getLength() == 0: - "NonFungibleToken.Collection.createEmptyCollection: The created collection has a non-zero length." + "NonFungibleToken.Collection.createEmptyCollection: Cannot create empty collection! " + .concat("The created collection has a non-zero length.") .concat(" A newly created collection must be empty!") } } @@ -280,8 +285,9 @@ access(all) contract interface NonFungibleToken: ViewResolver { access(all) fun createEmptyCollection(nftType: Type): @{NonFungibleToken.Collection} { post { result.getIDs().length == 0: - "NonFungibleToken.createEmptyCollection: The created collection has a non-zero length." - .concat(" A newly created collection must be empty!") + "NonFungibleToken.createEmptyCollection: Cannot create empty collection! " + .concat("The created collection has a non-zero length. ") + .concat("A newly created collection must be empty!") } } } diff --git a/contracts/utility/FungibleToken.cdc b/contracts/utility/FungibleToken.cdc deleted file mode 100644 index 8e4e9ea..0000000 --- a/contracts/utility/FungibleToken.cdc +++ /dev/null @@ -1,229 +0,0 @@ -/** - -# The Flow Fungible Token standard - -## `FungibleToken` contract - -The Fungible Token standard is no longer an interface -that all fungible token contracts would have to conform to. - -If a users wants to deploy a new token contract, their contract -does not need to implement the FungibleToken interface, but their tokens -do need to implement the interfaces defined in this contract. - -## `Vault` resource interface - -Each fungible token resource type needs to implement the `Vault` resource interface. - -## `Provider`, `Receiver`, and `Balance` resource interfaces - -These interfaces declare pre-conditions and post-conditions that restrict -the execution of the functions in the Vault. - -They are separate because it gives the user the ability to share -a reference to their Vault that only exposes the fields functions -in one or more of the interfaces. - -It also gives users the ability to make custom resources that implement -these interfaces to do various things with the tokens. -For example, a faucet can be implemented by conforming -to the Provider interface. - -*/ - -import "ViewResolver" -import "Burner" - -/// FungibleToken -/// -/// Fungible Token implementations are no longer required to implement the fungible token -/// interface. We still have it as an interface here because there are some useful -/// utility methods that many projects will still want to have on their contracts, -/// but they are by no means required. all that is required is that the token -/// implements the `Vault` interface -access(all) contract interface FungibleToken: ViewResolver { - - // An entitlement for allowing the withdrawal of tokens from a Vault - access(all) entitlement Withdraw - - /// The event that is emitted when tokens are withdrawn from a Vault - access(all) event Withdrawn(type: String, amount: UFix64, from: Address?, fromUUID: UInt64, withdrawnUUID: UInt64) - - /// The event that is emitted when tokens are deposited to a Vault - access(all) event Deposited(type: String, amount: UFix64, to: Address?, toUUID: UInt64, depositedUUID: UInt64) - - /// Event that is emitted when the global burn method is called with a non-zero balance - access(all) event Burned(type: String, amount: UFix64, fromUUID: UInt64) - - /// Balance - /// - /// The interface that provides standard functions\ - /// for getting balance information - /// - access(all) resource interface Balance { - access(all) var balance: UFix64 - } - - /// Provider - /// - /// The interface that enforces the requirements for withdrawing - /// tokens from the implementing type. - /// - /// It does not enforce requirements on `balance` here, - /// because it leaves open the possibility of creating custom providers - /// that do not necessarily need their own balance. - /// - access(all) resource interface Provider { - - /// Function to ask a provider if a specific amount of tokens - /// is available to be withdrawn - /// This could be useful to avoid panicing when calling withdraw - /// when the balance is unknown - /// Additionally, if the provider is pulling from multiple vaults - /// it only needs to check some of the vaults until the desired amount - /// is reached, potentially helping with performance. - /// - access(all) view fun isAvailableToWithdraw(amount: UFix64): Bool - - /// withdraw subtracts tokens from the implementing resource - /// and returns a Vault with the removed tokens. - /// - /// The function's access level is `access(Withdraw)` - /// So in order to access it, one would either need the object itself - /// or an entitled reference with `Withdraw`. - /// - access(Withdraw) fun withdraw(amount: UFix64): @{Vault} { - post { - // `result` refers to the return value - result.balance == amount: - "Withdrawal amount must be the same as the balance of the withdrawn Vault" - emit Withdrawn(type: self.getType().identifier, amount: amount, from: self.owner?.address, fromUUID: self.uuid, withdrawnUUID: result.uuid) - } - } - } - - /// Receiver - /// - /// The interface that enforces the requirements for depositing - /// tokens into the implementing type. - /// - /// We do not include a condition that checks the balance because - /// we want to give users the ability to make custom receivers that - /// can do custom things with the tokens, like split them up and - /// send them to different places. - /// - access(all) resource interface Receiver { - - /// deposit takes a Vault and deposits it into the implementing resource type - /// - access(all) fun deposit(from: @{Vault}) - - /// getSupportedVaultTypes returns a dictionary of Vault types - /// and whether the type is currently supported by this Receiver - access(all) view fun getSupportedVaultTypes(): {Type: Bool} - - /// Returns whether or not the given type is accepted by the Receiver - /// A vault that can accept any type should just return true by default - access(all) view fun isSupportedVaultType(type: Type): Bool - } - - /// Vault - /// - /// Ideally, this interface would also conform to Receiver, Balance, Transferor, Provider, and Resolver - /// but that is not supported yet - /// - access(all) resource interface Vault: Receiver, Provider, Balance, ViewResolver.Resolver, Burner.Burnable { - - /// Field that tracks the balance of a vault - access(all) var balance: UFix64 - - /// Called when a fungible token is burned via the `Burner.burn()` method - /// Implementations can do any bookkeeping or emit any events - /// that should be emitted when a vault is destroyed. - /// Many implementations will want to update the token's total supply - /// to reflect that the tokens have been burned and removed from the supply. - /// Implementations also need to set the balance to zero before the end of the function - /// This is to prevent vault owners from spamming fake Burned events. - access(contract) fun burnCallback() { - pre { - emit Burned(type: self.getType().identifier, amount: self.balance, fromUUID: self.uuid) - } - post { - self.balance == 0.0: "The balance must be set to zero during the burnCallback method so that it cannot be spammed" - } - self.balance = 0.0 - } - - /// getSupportedVaultTypes returns a dictionary of vault types and whether this receiver accepts the indexed type - /// The default implementation is included here because vaults are expected - /// to only accepted their own type, so they have no need to provide an implementation - /// for this function - access(all) view fun getSupportedVaultTypes(): {Type: Bool} { - // Below check is implemented to make sure that run-time type would - // only get returned when the parent resource conforms with `FungibleToken.Vault`. - if self.getType().isSubtype(of: Type<@{FungibleToken.Vault}>()) { - return {self.getType(): true} - } else { - // Return an empty dictionary as the default value for resource who don't - // implement `FungibleToken.Vault`, such as `FungibleTokenSwitchboard`, `TokenForwarder` etc. - return {} - } - } - - /// Checks if the given type is supported by this Vault - access(all) view fun isSupportedVaultType(type: Type): Bool { - return self.getSupportedVaultTypes()[type] ?? false - } - - /// withdraw subtracts `amount` from the Vault's balance - /// and returns a new Vault with the subtracted balance - /// - access(Withdraw) fun withdraw(amount: UFix64): @{Vault} { - pre { - self.balance >= amount: - "Amount withdrawn must be less than or equal than the balance of the Vault" - } - post { - result.getType() == self.getType(): "Must return the same vault type as self" - // use the special function `before` to get the value of the `balance` field - // at the beginning of the function execution - // - self.balance == before(self.balance) - amount: - "New Vault balance must be the difference of the previous balance and the withdrawn Vault balance" - } - } - - /// deposit takes a Vault and adds its balance to the balance of this Vault - /// - access(all) fun deposit(from: @{FungibleToken.Vault}) { - // Assert that the concrete type of the deposited vault is the same - // as the vault that is accepting the deposit - pre { - from.isInstance(self.getType()): - "Cannot deposit an incompatible token type" - emit Deposited(type: from.getType().identifier, amount: from.balance, to: self.owner?.address, toUUID: self.uuid, depositedUUID: from.uuid) - } - post { - self.balance == before(self.balance) + before(from.balance): - "New Vault balance must be the sum of the previous balance and the deposited Vault" - } - } - - /// createEmptyVault allows any user to create a new Vault that has a zero balance - /// - access(all) fun createEmptyVault(): @{Vault} { - post { - result.balance == 0.0: "The newly created Vault must have zero balance" - } - } - } - - /// createEmptyVault allows any user to create a new Vault that has a zero balance - /// - access(all) fun createEmptyVault(vaultType: Type): @{FungibleToken.Vault} { - post { - result.getType() == vaultType: "The returned vault does not match the desired type" - result.balance == 0.0: "The newly created Vault must have zero balance" - } - } -} \ No newline at end of file diff --git a/contracts/utility/NFTForwarding.cdc b/contracts/utility/NFTForwarding.cdc index e34e149..4e0da9d 100644 --- a/contracts/utility/NFTForwarding.cdc +++ b/contracts/utility/NFTForwarding.cdc @@ -35,7 +35,8 @@ access(all) contract NFTForwarding { /// getSupportedNFTTypes returns a list of NFT types that this receiver accepts access(all) view fun getSupportedNFTTypes(): {Type: Bool} { let recipientRef = self.borrowRecipientCollection() - ?? panic("Could not borrow reference to recipient's Collection!") + ?? panic("NFTForwarding.NFTForwarder.getSupportedNFTTypes: " + .concat("Could not borrow a reference to the recipient's NFT Collection!")) return recipientRef.getSupportedNFTTypes() } @@ -56,7 +57,10 @@ access(all) contract NFTForwarding { /// access(all) fun deposit(token: @{NonFungibleToken.NFT}) { post { - recipientRef.getIDs().contains(id): "Could not forward deposited NFT!" + recipientRef.getIDs().contains(id): + "NFTForwarding.NFTForwarder.deposit: Could not forward deposited NFT! " + .concat("The recipient's collection did not contain the transferred NFT with ID ") + .concat(id.toString()).concat(" after function execution.") } let recipientRef = self.borrowRecipientCollection() @@ -84,7 +88,7 @@ access(all) contract NFTForwarding { /// access(Mutable) fun changeRecipient(_ newRecipient: Capability<&{NonFungibleToken.Collection}>) { pre { - newRecipient.check(): "Could not borrow Collection reference from the given Capability" + newRecipient.check(): "NFTForwarding.NFTForwarder.changeRecipient: Could not borrow NFT Collection reference from the given Capability." } self.recipient = newRecipient @@ -94,7 +98,7 @@ access(all) contract NFTForwarding { init(_ recipient: Capability<&{NonFungibleToken.Collection}>) { pre { - recipient.check(): "Could not borrow Collection reference from the given Capability" + recipient.check(): "NFTForwarding.NFTForwarder.init: Could not borrow NFT Collection reference from the given Capability" } self.recipient = recipient let recipientRef = self.recipient.borrow()! diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 87a2c3b..2620320 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,8 +1,8 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// ExampleNFT.cdc (16.88kB) -// MetadataViews.cdc (29.427kB) -// NonFungibleToken.cdc (13.336kB) +// ExampleNFT.cdc (16.847kB) +// MetadataViews.cdc (29.808kB) +// NonFungibleToken.cdc (13.763kB) // ViewResolver.cdc (2.71kB) package assets @@ -73,7 +73,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _examplenftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x3b\x6b\x73\x1b\x37\x92\xdf\xf5\x2b\x3a\xfc\x90\x23\x73\x34\x65\xe7\xb5\xbb\x2c\x33\x4e\x22\x59\x39\x5e\xd9\x5a\x97\x44\x3b\x57\xe5\x52\x79\xc1\x99\xa6\x88\x68\x06\x60\x00\x8c\x68\x96\x4b\xff\xfd\xaa\x1b\xf3\xc0\xbc\x48\xca\xbe\x5c\xdd\xf1\x83\x44\xce\xa0\x1b\xdd\x8d\x46\xa3\x5f\x38\xfd\xe6\xe4\x9b\x93\x6f\x00\x16\x6b\x69\x41\x5a\x10\x0a\xf0\xa3\x48\x37\x09\x82\xa4\xbf\x29\x2a\x27\x9c\xd4\x0a\xf4\x0a\x04\x5c\x24\x7a\x0b\x97\x5a\x3d\xb9\xc8\xd4\xad\x5c\x26\x08\x0b\x7d\x87\x8a\x30\x64\x56\xaa\x5b\x70\x6b\x84\x77\xdf\x82\x75\x42\xc5\xc2\xc4\x13\x7a\x33\x77\x84\x59\x69\x07\x1b\x61\x1c\x21\xa2\x51\x7a\xb5\x92\x91\x14\x49\x39\x16\x96\x99\x03\xe9\x40\x58\x9b\xa5\x18\x83\xd3\xb0\x44\x82\xb7\x32\x95\x89\x30\xf4\x60\xad\xb7\x90\x0a\xb5\x83\xcb\x8b\x85\x85\xad\xce\x92\xb8\xa2\x93\xd1\x46\xda\x20\xac\x32\x15\x11\xd1\x22\x91\x6e\x37\x09\x38\x8c\xb4\x72\x46\x44\x0e\x62\x8d\x9e\xa4\x0a\x9a\xd0\x5a\xbd\x59\x4b\xeb\x64\x24\x1c\xc6\x10\x25\xc2\x5a\xb9\xa2\x5f\x52\x33\x93\x76\x67\x1d\xa6\xb0\xd2\x06\xa4\xb3\x4c\xc5\x84\xf8\x8b\x71\x25\x15\x5a\x10\x44\x2c\x09\xef\xf2\x62\x01\x5b\xe9\xd6\x90\x4a\x25\x53\x91\x40\x8a\x4e\xc4\xc2\x09\xa6\xe6\xf4\xe4\x44\xa6\x1b\x6d\x1c\x0c\x2e\xb5\x2a\x64\xc9\xa2\x1c\x94\x6f\xde\x49\xdc\x5e\xa1\xd5\xc9\x3d\x9a\xea\xe9\xeb\x1c\x0f\xbd\xb5\x83\x93\x13\x11\x45\x68\xed\x50\x24\xc9\xa8\xe2\xee\xa5\x5f\xc2\xcb\x8b\xc5\x14\x9a\x13\xc0\xa7\x93\x13\x00\x80\xd3\xd3\x53\xb8\x2e\x44\xff\x46\xb8\xb5\xe5\xc7\x21\xbe\x04\x1d\x9c\xe9\x24\x41\x16\xe6\xb5\xd3\x46\xdc\x22\x0d\x9d\x42\xf0\xe3\x00\xd8\x9b\x6c\x99\xc8\xc8\x43\x55\xdf\x2b\x1a\xe8\x17\x6c\xd7\x68\x90\xd7\x2f\x95\xca\xa1\x01\xbb\xe6\xb5\x5d\x22\x58\xa7\x0d\xc6\xe5\xf0\xc5\x1a\x2b\x8d\xd9\x10\xd9\xbc\x1a\x7e\xe9\x8b\x39\x41\x98\x02\x10\xa4\x6a\xbe\x34\x68\x75\x66\x22\x04\xb7\xdb\x60\x27\xf5\xaf\x99\x88\x5e\x86\x4b\x62\x7e\x47\x88\xd6\x5a\x5b\x4f\xba\x12\xa9\x5f\x78\x62\x66\xcc\xea\xec\x48\xe9\x68\x1a\x88\x84\x82\xb5\xb8\x47\x56\x33\x1e\xa9\xf4\xb6\x44\xb4\xc4\x48\x64\x39\x1a\x9e\x7b\x25\x22\xac\x94\xd4\xe0\x9f\x99\x34\x48\xbb\x83\x36\x01\xa3\x01\xbb\xc1\x88\x94\xd3\x63\x23\xb4\xa9\x36\x6d\x7e\x4a\x6e\x3b\xb5\x61\x42\xf4\xe6\x1a\xd1\x25\x09\x19\x4f\xe1\xed\x5c\xb9\x1f\xbf\xaf\xc6\x10\xc1\x17\x46\xa7\x4c\xed\xb9\xb4\x9b\x44\xec\x4a\xfd\x86\x7b\x89\xdb\x5e\x74\x44\x2a\xc9\xd2\x48\x75\xdb\x3b\x28\x46\x1b\x19\xb9\xa1\xb5\x3a\x38\xd6\xad\xb3\x74\xa9\x84\x4c\xca\x91\x75\x32\x73\xd5\xb8\xd2\x3b\x91\x38\x89\x76\x3f\x9d\x16\x93\x95\xc7\x6b\x0a\x80\x29\xbc\xaf\x6d\xb9\x89\x47\xb5\xbb\xa9\x4f\xf4\x1b\x2a\x34\x32\x82\x58\x7a\xc3\x63\x76\x6c\xe7\x8c\x20\x33\x41\x14\xb0\x5e\x08\xdb\x3f\x63\x41\xd8\x14\x3e\x79\x4e\xa6\xf0\x8b\xda\x5d\x3b\x93\x45\xee\xa1\x9a\x4c\x2a\xe9\x86\xe5\x2f\xfa\x84\x32\x1d\xd7\xde\x74\x08\xb2\x3e\xa0\x25\xbd\xfa\xeb\xc3\x42\xa8\x8f\xdf\xcb\x42\x35\x74\x04\x9f\x6a\x60\x24\x83\x89\x8c\x61\xe6\xbf\x65\x99\x8c\xdb\xef\x59\xc9\x67\xcc\x6c\xfb\x65\xc0\x28\xcc\x42\xb6\xdb\x43\x4b\x96\x61\x56\xb1\xdf\x1e\x56\xb2\x0e\xb3\x4a\x0c\xed\x61\xa5\x36\xcd\x4a\xe6\xcb\x41\x0f\x75\x0d\x89\x0c\x0a\x87\x2f\xd3\x8d\xdb\x55\xc6\x31\x7f\xea\xcf\x5d\x7a\x15\x18\xce\x1a\xb4\x50\x31\x18\x74\x99\x51\x36\xb7\x02\x6c\xd4\x44\x92\x90\xb1\xa4\x5f\x82\xcf\xbf\x1d\x1b\x1a\xbd\x55\x7c\x36\xd5\x50\xfc\xfc\xa9\xb5\xf9\xab\xc9\x1e\x3a\x77\xd8\x2a\x53\xdd\x74\x0f\x47\xd3\x03\xf8\x1a\x6b\xec\x69\x87\xe7\x4f\xaa\xa3\x69\xd2\x8d\x59\xad\xdc\x62\xb7\xc1\x29\xd0\xdf\xe7\x3f\x07\xe3\x2f\x2f\x16\x3f\x0d\x47\xa3\x2e\x01\x87\x44\xd3\xc6\x66\xca\x6f\xd1\xb1\xb6\x12\xb1\xef\x09\xdb\x4d\x37\x51\xef\x6b\x0f\xe9\xc3\x53\xd7\x35\x3e\xb7\x73\x3f\x0d\x47\xe3\x63\x86\x97\x06\xe7\x58\x80\x97\xb1\x24\xf6\x8f\x1f\xff\xd1\xa1\x51\x22\x79\x7b\xf5\xea\x58\x90\xcb\x8b\x45\x25\xe7\x73\xe1\xc4\xe7\x01\x3e\x4e\x10\xd7\x68\xa4\x48\x8e\x1d\xbd\x60\x83\x79\xb4\x0c\xde\xbd\xfe\xd5\xc8\xf8\x16\xe3\xe2\xf9\x4f\xc3\x51\x0d\xf0\xe6\x90\xb2\x90\x9e\x18\xef\x64\x11\xce\xe1\x07\x56\x1f\xaf\x7c\xa3\xc0\x7c\xbd\x68\xda\xac\xad\x74\xd1\xda\xeb\xda\xa7\x16\xad\x91\xb0\xb8\x5f\x89\xa6\x2d\x18\xa8\x14\xb2\x13\x68\xd8\x09\x01\xe5\x01\x50\x5a\xc9\xb6\xe8\x8a\x4f\xed\x3c\x68\x1a\xce\x7e\xb0\xe0\x94\xa8\x53\xf6\x1f\x8b\xc5\x9b\x0b\x99\x60\x3f\x69\xf4\xc9\x4c\x32\x6d\xd8\xde\xde\xf1\xa3\xce\x37\xed\xa7\x7d\x02\x0e\x76\x51\xb7\x84\xbd\x07\x49\xae\x14\x79\x56\x90\x8a\x8f\xa0\xb2\x74\x89\x86\x8e\x6b\x0e\x2a\xd8\x92\x92\x11\x5d\xe6\xce\x68\x0c\x2b\xef\xec\x04\xf1\x43\x1f\x6e\xeb\xed\x32\xa1\x45\x4f\x0a\xac\x24\x26\x31\xdc\x8b\x24\xe3\x49\x2d\xb2\xf5\x56\x3d\x42\x20\x4f\x20\x87\x9c\xab\x95\x86\x19\x74\x32\x38\xf4\x6b\x3e\xc8\xad\x23\x7b\x17\xf9\xab\xc1\x38\xe7\x68\x5a\x1c\xac\x63\xa2\x67\x4a\x53\x76\x8b\x37\x98\xf3\x95\xb4\xae\x75\xd8\xe7\x88\x6f\x60\x06\xef\x03\xda\x6e\x8e\x57\xe1\x62\x59\xfa\x15\x25\x98\xff\x0b\x55\xa0\x34\x38\x8f\xd8\x62\x1e\xa6\x9f\xba\x5c\x90\x5f\x48\x59\x78\x26\x3c\x82\xb8\x12\xec\x00\x7d\xdd\x6e\xca\xe3\xc9\xac\x9f\x2c\x8f\x20\x34\x00\x1c\x0e\xd6\xce\x6d\xec\xf4\xf4\x34\xcf\x26\x3c\x51\x2b\x37\xd1\x6a\x95\xe8\xed\x44\x9b\xdb\xd3\xc1\x24\xd2\x2a\x12\x6e\x98\x8b\x76\xe2\xb4\x77\x19\x87\xa3\xd1\xf1\xa4\x76\x9d\x68\x7b\x09\x0e\xbc\x89\xdc\xea\x9f\xe5\x3b\x9a\xad\x7f\x11\x2b\xed\x75\x40\xc6\x6c\xf5\x83\x21\x87\x69\xfa\x5c\x8e\x8e\x3b\x2e\xfe\xd7\x99\x2a\xc9\x3a\x9e\xaf\xf2\x60\xef\x35\xcb\xf8\x31\x4a\xb2\xb8\xb0\xb9\x0b\xc9\x31\x6d\x0c\x2b\xad\xc9\x5e\xda\xb5\xde\x82\x76\x6b\x34\x90\x59\xb4\x64\xad\x3d\xca\x7e\x8b\xe6\xf1\xc5\x7e\x18\xd9\xae\x41\x85\x7a\x30\x86\xc1\x4a\xeb\x41\xb7\x0d\xe3\xc0\x92\xc1\x88\xf8\x96\x0d\xa6\x18\x6f\xa1\x3d\xde\x21\xfd\x98\xd6\x83\x81\x71\x39\xf7\xa5\x48\x29\x78\xaa\x93\x32\x3a\xe9\x13\x41\xc0\xba\xb4\x20\x20\x53\xf2\x23\x38\x99\xa2\x75\x22\xdd\x8c\x61\x8b\x45\x5e\x24\x15\xe6\x8e\xe2\x00\x4e\x31\x09\x88\xfd\x8a\x90\xdc\xe9\x08\xda\x24\xc2\xad\xb4\x49\x2d\xdc\x29\xbd\xe5\xa4\x59\x21\x42\xe9\x26\xbd\x2c\x57\xd3\x33\xa1\x2d\xbe\xf9\x69\x71\xf2\xd4\x64\xc9\xa7\x5b\x43\x0a\x35\x71\xdf\x7c\x35\x0e\x89\x9c\xc2\xe0\x5c\x38\x82\x34\xc2\x48\xb7\xdb\x73\x38\x55\xeb\x30\x11\xb1\x97\xe0\xb0\x41\x68\xbf\x40\x49\x79\x58\x92\x8c\xc5\x4b\x8b\x94\x81\xe2\x23\x3f\x73\xaf\x30\x56\xda\xaf\xf0\x15\x0f\x6b\xc9\xc2\x3f\x1e\xda\x48\x1b\x9c\xc2\xb3\xa7\x93\xa7\xf9\x29\xfb\xec\x29\x7f\xaf\xb9\x5a\x83\x33\x9d\xa6\x5a\x0d\xfa\x8f\xdf\x62\xb6\xfd\x32\x27\x8d\xed\x13\x36\x6b\x73\x43\xc8\x4a\x26\x95\x84\xeb\x0c\x1d\x2f\xec\x02\xae\x47\xca\xb9\x0d\xaa\x20\x8f\x3f\x67\xba\xbc\xf7\x5e\xf3\x30\x2f\xf2\xb4\x3e\xcb\x2c\xad\xf7\xbd\x6f\xe5\x3d\xfa\x04\xcb\xc6\xe8\x3f\x30\x72\xde\x45\xd3\x09\xe8\x7b\x34\x5e\xf5\xd7\x08\x4b\x3f\x11\xfb\x49\xd2\x82\xc1\x8d\x41\x8b\xec\xdc\x09\x0a\xbe\xfb\x66\x7d\x79\x75\xf6\xb7\x6f\x9f\xc1\x76\x8d\xaa\xc4\xe1\x34\xbc\x7c\xf7\x1a\xb4\xf2\xd9\xf0\x7b\x29\xfc\xfc\x9c\xdb\x04\xa9\x56\x46\x58\x8e\x19\x32\x53\x4c\x3c\xe9\xd5\xd0\xdf\xb0\x48\x5b\x7b\x8b\xfd\x24\xc1\x7b\x4c\x8a\x94\x5e\x0c\x76\x97\x2e\x75\xe2\xd7\xbc\xdf\xd6\x15\xd0\xaf\x18\x78\x76\xe8\x44\xd8\xeb\xae\xd7\x8f\x0b\x52\xa1\xbd\xc3\xf7\x1e\x1b\x87\x03\xb4\xf0\x33\x02\x61\xbf\x6a\xfa\x14\x2d\x0c\x2f\xba\x65\x29\x57\x35\x49\xbc\xae\x12\x33\x75\xe1\xb4\x83\xb5\x60\x35\xce\x74\xba\x29\xb2\xb9\x4e\xdf\xa1\xca\x97\xe3\xed\xd5\x1c\x96\xc2\x62\x4c\xab\x2e\xf8\x2b\x3f\xa3\x15\x2a\xc7\xc2\xfc\x7c\x0c\x1b\x2d\x73\x15\xd5\x20\xe0\x3f\xaf\xff\x79\x09\x2b\x99\xe0\x84\xcb\x0f\xfb\xa6\xde\x16\xf9\x6e\xc1\x00\xb0\xd3\xd9\xbf\xdd\x23\x64\x9b\x44\x8b\x98\xd4\x54\xc5\x9c\xd5\x5e\x6b\xcb\xf8\xad\x4e\xd1\x67\xcd\x9f\xf8\x14\x37\x45\x27\x44\x17\x05\x65\x41\xf2\x39\xca\xf1\xee\x9b\x7b\xfe\xe6\xe2\x7a\x0c\xd7\xdf\x8d\xe9\x28\x21\xa1\xbd\xbd\x7a\xc5\x62\x13\x52\x15\x45\x1d\x66\x25\x96\x06\x23\x97\xec\xc6\x80\x2e\xea\x3e\x48\x20\x57\x49\x92\x11\x89\x68\x06\x87\x5c\x41\x2f\xe8\xc2\x92\x9d\x0e\xf6\xa2\xcd\x8c\x7c\xc7\xa1\xd4\x0c\xda\x9e\x63\xe1\x53\x0e\x26\x7f\x58\x36\xb7\xbd\xa8\xba\xfd\xd7\x96\xae\xed\xdf\x29\xde\x2a\x37\x35\xee\x40\x0c\x4e\x1f\xbf\xa9\x3b\x40\xfd\x8b\xfd\xc0\x99\x91\xcd\x38\xfc\xed\xd5\x7c\x3f\xa5\xf4\xc9\x17\x64\x5a\x7c\x19\xd3\xca\x73\xdd\x8a\x96\xb8\x58\x2e\x83\x36\x4b\x9c\x25\x95\x12\xe0\xc5\x89\xaa\x2c\x00\x16\xa3\x48\x19\xd9\x24\x1d\x9c\x35\x3c\xac\xf6\xaf\xd5\x3e\x2c\x7b\x6c\x46\xe7\x9b\x07\xc0\xc4\xe2\x9e\xbd\x9e\xaf\x7f\x5f\x14\xfe\x70\xd2\xff\xab\x03\xd4\x0f\x78\x28\xea\x42\x70\x4e\xc7\x0b\x97\x10\xa7\xf0\x4f\x95\xec\xb8\x20\xc4\x65\xaa\xa5\x88\xee\xb6\xc2\xc4\x10\xe9\x74\x23\x9c\x5c\x4a\x5f\xa1\x84\xbe\xa2\x4d\x55\x0c\xaa\x6c\x7a\xb3\xb6\x06\x9f\xf2\xa9\x3b\x31\x54\xa3\x3b\xaa\x3f\xd5\xcb\xf1\xde\x09\x6a\x89\xe4\x7a\x8d\x83\x8e\xd4\x48\x2b\xf2\x37\xbd\xdd\xbb\x43\x55\x4f\x3c\xe7\x87\xae\xa8\x17\xde\x72\xdf\x55\xc1\xbf\x7c\x7d\xe9\x5f\x30\x3f\xf7\xc9\x92\xee\xac\xae\x30\xe4\xb6\x61\x7c\x79\xb1\xb0\x53\xf8\xf9\x93\x87\x9a\x42\x3b\x0b\x7d\x79\xb1\x78\x68\x54\x4c\x60\xd8\x59\x74\x28\x11\xc2\xf3\x27\x24\xc5\x6a\x41\x6b\x0c\xdc\xa2\xbb\xce\x36\x1b\x6d\x1c\x8f\xa6\x83\xce\x96\xd9\x78\x01\x89\xb4\xae\x90\x84\xe3\x77\x79\x36\x9e\x3d\x8d\x08\x25\x79\x22\xc4\xcb\xc6\xb5\xea\x3f\xad\x8c\x75\x6b\xa2\xe1\x68\x0a\x9f\xfc\x09\xfb\xab\xd6\x49\x33\xb1\x4e\x46\xd1\x16\x30\x0c\xd0\x18\x3e\x0b\x19\x63\xce\x6b\xa3\xdf\xf7\x04\x84\x37\x30\x03\x67\x1a\x3b\x3c\xd7\xfd\x3a\x86\x3e\xa9\x5d\xe5\x02\xda\xae\x91\xe3\x36\x6d\xb8\x96\x49\x87\x09\x79\x6d\xca\x6b\x01\x29\x06\x8b\x06\x63\x58\xee\x1a\xa5\xda\x1a\xbe\x5f\xc2\x1a\x6e\x99\xa5\xf3\xc0\x5c\xfe\x64\x7c\x79\x80\xf4\x47\x66\x5d\xe5\x9b\x66\x48\xb8\x63\x5c\x89\x2c\x71\xfb\x97\x40\xda\xe6\x0a\x0c\x5d\xe9\xde\x8c\xbc\x50\xbb\xcb\x08\x3c\xfd\x6c\xd6\x17\x61\xf7\x89\x89\xb6\x41\x6c\xc4\x16\x0c\xa6\xfa\xde\x97\x82\x48\x93\x56\x45\x85\x35\x2c\x6b\xab\x18\xfc\xa0\x66\x0d\xa8\xc9\x54\x6b\x53\xfc\x9e\x4f\xe3\x53\xde\xc5\xa4\xc3\xe2\xcb\xfc\xbc\xa8\xf3\x76\x57\x76\x68\x4f\x75\x68\x9e\x77\x7c\x9e\x3f\x69\x6c\xa7\x89\xe7\x65\x78\x87\xbb\x29\x54\x53\xb4\x8d\xf5\x8b\x17\xb0\x11\x4a\x46\xc3\x41\x20\xaf\xca\xfc\x4c\x0a\xd8\x29\x9c\xf1\xb2\x92\x02\x95\x02\xcb\x05\xc5\x76\x84\x24\x31\x3f\x9f\xf5\x3b\x0f\xc5\x79\x53\x51\x13\xa6\x9c\x0e\x82\x0d\x26\x70\xb6\xc6\xe8\x8e\x27\xb2\xd9\x32\x95\x8e\x34\x76\x7e\x4e\xcb\x90\x8a\x3b\x7a\xe8\x0b\xf4\xd2\x82\x56\x18\x98\x80\x60\xfd\xf4\x56\xd9\xc1\xa8\xe1\x97\x94\xa5\x31\x16\x66\x9f\x9a\xc4\xb8\xd1\x96\x56\x5d\xdc\x71\x9f\x09\x71\xce\x3e\x61\x1c\xd7\xb4\xa1\x9c\xcc\x06\x76\xba\x55\x4a\x64\x28\x2f\xb3\x02\x52\x92\x7f\x69\xc4\xae\xb7\x4c\x92\x53\x30\x64\x32\x7b\x95\xa4\x69\x67\x6b\x5a\xe2\xbf\x90\x97\xdf\xd8\x1f\x2d\x10\x2e\x07\xf3\xf0\x89\x8c\xeb\xf2\x22\x16\x62\xef\x77\x2b\xdc\xe6\x38\x73\x26\x82\xa3\x69\xbb\x96\xd1\xba\xdc\x54\xdc\x71\x94\x90\xff\x8e\xad\xb9\x74\x12\x2f\xba\xf5\xf8\x7d\x41\xc1\x4d\x49\x7d\x9d\x96\x18\xad\x33\x7a\x57\xa2\x68\x51\x9a\x77\x1d\xc5\x6c\xe8\xb8\x51\x05\xbd\xff\xbe\xc9\x0c\x85\x1a\xa4\x2c\xc9\xae\x09\x75\xae\x59\xd3\x99\x4d\x4d\xa1\x80\xa9\x7a\x7b\x32\x95\xa0\xb5\xf4\xb0\xd9\x08\xd2\xc4\x62\x50\x58\xcd\xa2\xd9\x0a\xc5\x1a\x82\xa9\x74\x45\x37\xc2\xdb\x4d\xcc\x4d\x4e\x78\x8f\xca\x55\xe1\x44\x13\x89\x54\xf5\xf9\x5b\xd2\x13\x99\x5b\x33\xef\x57\xb8\x82\x19\x0c\xbf\x6e\x88\x90\x84\x47\x31\x76\xe6\xd6\x6d\xab\xe4\x89\x18\xc1\xd7\xdd\xca\xf4\x62\xf4\x55\x83\x9e\x70\xb6\x49\xc6\xd0\x0b\x23\x94\x5d\xa1\x39\x17\x0e\x87\xf4\x60\x4a\xe7\xe8\x59\x66\x0c\x2a\xf7\x6b\xa2\xa3\xbb\xe1\x68\x52\x66\xd1\xea\x5b\x3d\xd0\x42\x92\x4d\x25\x96\x61\x38\x51\xaf\xed\xbe\x45\x37\x3f\x0f\x5c\x01\xe5\xb7\x50\xd1\xe2\x46\xef\xd8\x0e\x50\xe0\xd6\xea\x43\x3a\xe8\x0a\xcc\xcf\x7d\xe9\xda\xdb\xe5\x9e\xe2\x75\xc3\xf0\xde\xe1\xae\xf7\x40\xfe\x0d\xf3\x5e\x14\x91\xea\x4c\xb9\xb2\xe2\xd5\xd7\x28\x75\x90\xc0\x57\xa8\x6e\xdd\x9a\x68\x9c\x2b\x77\x14\x79\x09\x43\x1c\x2a\xca\x96\x73\x2c\xb5\x31\x7a\x7b\x79\xb1\x18\x7e\x08\x3a\x91\x46\xd3\x5e\x7d\xe9\x26\xa2\x4f\x27\x7b\xb5\xae\x4f\x82\xbf\x32\x3d\x2c\x26\xa6\x31\x4f\xae\x98\xb2\x05\x2d\xdf\x8a\x79\xa6\x69\x7e\x7e\x0c\x7b\x61\x9f\xdf\xb0\xc1\x65\xf8\x6e\x52\x7c\x69\xb1\x99\xe7\x3e\xd4\xca\xc1\x0c\x1e\xc9\x6b\x47\x90\x54\x44\x38\x2b\xe7\x01\xbb\x89\x78\x6c\x88\x54\x13\xe4\xa3\x9b\x61\x8a\x2d\x65\x45\x1a\xf4\xed\xc1\x11\xdd\x31\xb5\x81\x3f\xe7\xa4\xfd\x52\xcd\x11\x1d\x31\xc7\xff\xa7\x9e\x18\x08\x43\xd1\xcf\x91\x74\xb7\x2e\x97\xf2\xf8\xc2\x6e\xa4\xe3\x44\x59\x63\xf8\x31\x72\x2d\x65\x9a\x23\x86\x70\x7d\x9a\xb2\xb9\xc8\xdb\x84\x3d\xbd\xa5\x15\x4f\x12\x66\xa7\x4c\x21\x72\x92\xa5\x6a\x14\xf6\x81\x8a\xa0\x60\x1a\x1a\x6d\xd0\x39\xe2\x93\x96\xba\x05\x07\x83\x8f\x1e\xcb\xc4\x0b\xbb\x5e\x01\xea\x7b\xce\xe8\x78\xbf\xc1\x37\x0d\x6c\x65\x92\xc0\x12\x21\xb3\x3c\x73\x89\xbc\xf8\xc4\x78\x8f\x89\xde\xa0\xb1\xb4\x10\x5c\xf1\xf1\xbe\xcf\x46\x18\x91\xa2\x43\xee\x9c\xde\x08\x6b\x8b\x85\x0a\x1b\x5e\x46\x90\xa2\x5b\xeb\x78\x52\x23\xbe\xcf\xe2\x87\x69\x64\xdb\x51\x59\x7c\xd1\xd5\x6a\xd5\xd9\x66\xf5\x59\xfd\x49\x9f\xdb\x9b\xf4\xe8\xd4\xf4\xcd\x21\x55\x61\x01\x92\x1f\x5e\xeb\x27\xcd\xf7\x4e\xd0\x28\x32\x69\xeb\x04\x2f\x4b\xd1\x66\xb4\xf6\xa5\x91\xc2\xf4\xc4\x68\xa5\xc9\xb5\x60\xd2\x56\x23\xa8\x0a\x0b\x65\x09\xa3\x50\x22\x83\x7f\x66\x68\x5d\x13\xb8\x73\xd3\x1d\x57\x26\x7e\xd1\x2c\x0a\xf7\x35\x44\x05\xcd\x50\xcc\x4c\xdd\xcc\x7d\x59\xf1\xde\x27\xf5\xc3\x61\xad\x1a\x59\x0b\x51\x77\x32\xd4\x86\xed\xdc\x7c\x48\x76\xf6\xb6\x77\x67\x5f\x37\x41\x17\x7b\x03\xb6\x6a\x6a\xdf\x07\x1a\xa6\xe1\x58\x18\x5f\x77\x46\xbc\x9d\xad\x6f\x15\x96\x57\x52\xdd\xf9\xb4\xcb\xe7\x61\xe9\xb4\xb6\x85\x6e\x4f\x61\xb8\xca\x1e\x7f\x8c\x85\x9f\xbf\xe2\x48\x0b\x3f\x0f\xed\xc7\xed\x27\x39\x11\x75\xad\xf9\x0c\x95\xdc\xd3\x7d\xe1\x1b\xb6\x63\xd9\x56\xc6\xd7\xf4\xb4\x5b\x01\x57\x32\xc1\xc7\xb7\xd0\x71\xfb\x5c\x59\x43\x11\xd6\xa2\xb3\x93\x2d\x2e\xad\x74\xf8\x84\x50\xda\x49\xa4\xd3\xd3\x1f\x56\x3f\x7e\xfb\x8f\xef\xa3\xa7\xd1\xdf\xc4\xdf\xa3\x38\xfe\xf1\xfb\xef\x96\xcf\xa2\xbf\x7f\xfb\xb4\xf1\x42\xfc\xf0\x43\xb4\x7c\x16\xfd\xe3\xbb\x1f\x3f\x5c\x24\x7a\xfb\xe1\x77\x6d\xe2\x54\x98\xbb\x89\xbd\xbf\xed\x4e\x9e\xf4\x68\x12\x73\x9f\xd7\xf2\x65\x2a\x6e\xf1\xd4\xde\xdf\xfe\xfb\xc7\x34\x69\x63\xe9\x5d\xa1\xc3\xc2\xef\x16\x4b\x5e\x0e\x27\xe3\x59\x34\xc0\x55\x90\x83\x6e\x7a\xeb\x05\xf9\x45\x23\x31\x23\xad\x3f\x5e\x45\xed\x06\x94\xd3\xb0\xc6\x64\xc3\xb1\x76\x7e\xca\xfa\x60\x58\xe1\x47\x97\xdf\x85\xba\x58\x4c\x7a\x66\xc4\xaa\x1d\xaa\xb9\xea\x8f\xe8\x94\x1a\xf4\xc8\xdf\xfe\x99\x09\x83\x73\x92\xfc\xd4\x2f\x46\xf7\xb8\xa5\x50\x0a\xcd\xe1\x71\x56\x47\x52\x24\x76\xba\x67\x73\x0f\xdc\x56\x3a\x87\x66\x70\x14\x3b\xf9\x60\x56\x4e\x62\xe6\xc3\x92\x42\xf1\x68\x2d\x64\x5f\xb5\xe7\xe1\x80\xe6\x7c\x61\x23\xc1\x5f\xde\x44\x90\x77\x0b\x74\x4d\xfc\x17\x34\x10\x34\xca\xd5\x8d\x06\x82\xb7\x57\xf3\x09\xcc\x83\xba\xf0\xb8\x36\xaa\x72\x5b\xa4\x85\x44\xfb\xeb\x6e\x5a\x71\x1a\x88\x2b\xc8\x5c\x67\x6e\x6b\xca\xe9\x69\x71\x4b\xaf\xa8\x2b\xff\x8f\x15\x8f\xbf\xa8\x24\x5b\x6f\x87\xbd\xbc\x58\xf4\xec\xc9\xa2\xf2\x3a\xf8\xaf\xd7\x6f\x5e\xf5\x8c\x79\x6c\x81\xb5\x2c\xac\x72\xbb\xcd\xe9\x29\x58\x74\x2e\xac\xa9\x0a\x4b\xaf\xe8\xb1\x0d\xaa\x1f\xde\xb9\x17\xfe\x51\x66\x64\xd8\x28\xdc\x3b\x57\x5e\x4e\x3d\x54\x52\x2f\x95\xa1\xbc\x75\xc8\x45\xd6\x6e\xfb\xbe\x67\xd7\x3d\x34\x7d\xf8\x22\xa4\x0f\x3c\xe3\xab\xb2\xa8\xc7\x99\x2e\x05\x22\x4e\xa5\x02\x6d\x58\x99\xdc\x9a\x9b\x15\xf2\x1b\x9c\xbe\xc9\x81\xe2\x41\x7f\xb9\xb3\xc0\x21\x96\xde\xda\xa6\x52\x39\x4e\xea\x96\xe1\x62\x97\x07\x1b\xde\x68\xf3\x37\xf5\xc2\x1b\x6c\xa7\x79\x23\x1d\xed\x52\xfa\x4f\x4e\x7a\x8e\xb2\x68\x97\xa3\x9f\x41\x6e\x66\x7f\x44\x4b\xf4\x93\x3c\xf1\x63\x77\xe5\x88\xfc\xe9\x7c\xbe\xff\x3b\xf7\xb2\xca\xe1\xe4\xcc\xd5\x7d\xab\x50\x56\x50\xba\x32\x7b\x2e\x6e\xb5\x2b\x88\xec\x93\x07\xf9\x55\x98\xb5\x33\xae\x35\x80\x66\x4f\x20\x8f\x19\xdc\xc0\xac\x86\x66\xb2\x46\x79\xbb\x76\x7b\x21\x7d\x37\x61\x13\xb0\xcc\xee\xb6\xf2\xef\x6c\xff\x36\x12\x23\x0e\xb1\x4a\xab\x57\x8b\xa9\x8b\xde\x48\x4c\x97\x18\xc7\xb4\xde\xbe\x67\x0e\xa4\xe2\x2e\x1e\xee\x6d\xeb\xa1\x8a\xdb\xee\x60\x06\x83\xa5\x30\x83\xd6\xec\x79\x0e\xa2\x54\xc0\xda\xfb\x7b\x41\x8e\xc4\x96\x96\xa4\x4a\x57\xb4\xb4\xa8\xd2\xa4\xee\xbe\x92\x9a\x2e\xed\xbd\xce\x11\x28\x55\xf9\xb5\x3d\x2a\xd0\xad\xf2\x6b\x7b\x54\xa5\x30\x65\xd3\x6b\x6d\x4c\x5f\x89\xcb\xf3\xdb\x9d\xad\xe2\x9b\x8d\xa3\xfa\x56\x86\xeb\xbc\x3f\x8e\x98\xcf\xef\xfb\x56\x61\x67\x6f\x0c\x07\x33\x38\xcd\xc3\xbd\xc2\x44\xd6\xbc\xcb\x3e\x14\x55\x28\x47\x18\xfc\x81\x7c\x04\x82\xd6\x75\xe1\xee\xf9\xfd\xb0\x1a\x7b\x67\x85\x82\x9c\x75\x5c\x4f\xe6\xfe\x3f\x71\x5f\x5c\xfb\xcd\x11\x96\xe0\xf5\xc8\x78\x5f\xca\xab\x24\x54\x44\x91\xce\x94\x9b\xe4\xa8\x26\x84\x7d\xf8\xfc\x49\x14\x74\x81\x38\xbd\x2f\x38\x1e\xd5\xa8\x2f\xd5\x3b\x77\x5d\x22\xb1\x11\xbe\xa3\xa5\xe3\x4e\x76\x0f\xdd\x67\x62\x53\xf4\x72\x15\xd4\x95\x68\x24\xda\x92\x54\x69\x6d\xd6\x1f\xee\xee\xa3\xb8\x53\x02\xb5\x39\x98\x7c\xbb\x1e\xd6\xa8\x1a\x83\x70\x7b\x62\xfd\x51\xf7\x3a\xe6\xe7\xd1\x63\xd6\x30\xbf\xf1\x5e\xb3\x01\x1e\xcd\x91\xcb\xe7\x11\x04\x4b\xd7\xd2\xc7\x22\xf3\xf9\x70\xf2\xdf\x01\x00\x00\xff\xff\x9b\x1b\x12\x42\xf0\x41\x00\x00" +var _examplenftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x3b\x6b\x73\x1b\x37\x92\xdf\xf5\x2b\x3a\xfc\x90\x23\x73\x34\x65\xe7\xb5\xbb\x2c\x33\x4e\x22\x59\x39\x5e\xd9\x5a\x97\x44\x3b\x57\xe5\x52\x79\xc1\x99\xa6\x88\x68\x06\x60\x00\x8c\x68\x96\x4b\xff\xfd\xaa\x1b\xf3\xc0\xbc\x48\xca\xbe\x5c\xdd\xf1\x83\x44\xce\xa0\x1b\xdd\x8d\x46\xa3\x5f\x38\xfd\xe6\xe4\x9b\x93\x6f\x00\x16\x6b\x69\x41\x5a\x10\x0a\xf0\xa3\x48\x37\x09\x82\xa4\xbf\x29\x2a\x27\x9c\xd4\x0a\xf4\x0a\x04\x5c\x24\x7a\x0b\x97\x5a\x3d\xb9\xc8\xd4\xad\x5c\x26\x08\x0b\x7d\x87\x8a\x30\x64\x56\xaa\x5b\x70\x6b\x84\x77\xdf\x82\x75\x42\xc5\xc2\xc4\x13\x7a\x33\x77\x84\x59\x69\x07\x1b\x61\x1c\x21\xa2\x51\x7a\xb5\x92\x91\x14\x49\x39\x16\x96\x99\x03\xe9\x40\x58\x9b\xa5\x18\x83\xd3\xb0\x44\x82\xb7\x32\x95\x89\x30\xf4\x60\xad\xb7\x90\x0a\xb5\x83\xcb\x8b\x85\x85\xad\xce\x92\xb8\xa2\x93\xd1\x46\xda\x20\xac\x32\x15\x11\xd1\x22\x91\x6e\x37\x09\x38\x8c\xb4\x72\x46\x44\x0e\x62\x8d\x9e\xa4\x0a\x9a\xd0\x5a\xbd\x59\x4b\xeb\x64\x24\x1c\xc6\x10\x25\xc2\x5a\xb9\xa2\x5f\x52\x33\x93\x76\x67\x1d\xa6\xb0\xd2\x06\xa4\xb3\x4c\xc5\x84\xf8\x8b\x71\x25\x15\x5a\x10\x44\x2c\x09\xef\xf2\x62\x01\x5b\xe9\xd6\x90\x4a\x25\x53\x91\x40\x8a\x4e\xc4\xc2\x09\xa6\xe6\xf4\xe4\x44\xa6\x1b\x6d\x1c\x0c\x2e\xb5\x2a\x64\xc9\xa2\x1c\x94\x6f\xde\x49\xdc\x5e\xa1\xd5\xc9\x3d\x9a\xea\xe9\xeb\x1c\x0f\xbd\xb5\x83\x93\x13\x11\x45\x68\xed\x50\x24\xc9\xa8\xe2\xee\xa5\x5f\xc2\xcb\x8b\xc5\x14\x9a\x13\xc0\xa7\x93\x13\x00\x80\xd3\xd3\x53\xb8\x2e\x44\xff\x46\xb8\xb5\xe5\xc7\x21\xbe\x04\x1d\x9c\xe9\x24\x41\x16\xe6\xb5\xd3\x46\xdc\x22\x0d\x9d\x42\xf0\xe3\x00\xd8\x9b\x6c\x99\xc8\xc8\x43\x55\xdf\x2b\x1a\xe8\x17\x6c\xd7\x68\x90\xd7\x2f\x95\xca\xa1\x01\xbb\xe6\xb5\x5d\x22\x58\xa7\x0d\xc6\xe5\xf0\xc5\x1a\x2b\x8d\xd9\x10\xd9\xbc\x1a\x7e\xe9\x8b\x39\x41\x98\x02\x10\xa4\x6a\xbe\x34\x68\x75\x66\x22\x04\xb7\xdb\x60\x27\xf5\xaf\x99\x88\x5e\x86\x4b\x62\x7e\x47\x88\xd6\x5a\x5b\x4f\xba\x12\xa9\x5f\x78\x62\x66\xcc\xea\xec\x48\xe9\x68\x1a\x88\x84\x82\xb5\xb8\x47\x56\x33\x1e\xa9\xf4\xb6\x44\xb4\xc4\x48\x64\x39\x1a\x9e\x7b\x25\x22\xac\x94\xd4\xe0\x9f\x99\x34\x48\xbb\x83\x36\x01\xa3\x01\xbb\xc1\x88\x94\xd3\x63\x23\xb4\xa9\x36\x6d\x7e\x4a\x6e\x3b\xb5\x61\x42\xf4\xe6\x1a\xd1\x25\x09\x19\x4f\xe1\xed\x5c\xb9\x1f\xbf\xaf\xc6\x10\xc1\x17\x46\xa7\x4c\xed\xb9\xb4\x9b\x44\xec\x4a\xfd\x86\x7b\x89\xdb\x5e\x74\x44\x2a\xc9\xd2\x48\x75\xdb\x3b\x28\x46\x1b\x19\xb9\xa1\xb5\x3a\x38\xd6\xad\xb3\x74\xa9\x84\x4c\xca\x91\x75\x32\x73\xd5\xb8\xd2\x3b\x91\x38\x89\x76\x3f\x9d\x16\x93\x95\xc7\x6b\x0a\x80\x29\xbc\xaf\x6d\xb9\x89\x47\xb5\xbb\xa9\x4f\xf4\x1b\x2a\x34\x32\x82\x58\x7a\xc3\x63\x76\x6c\xe7\x8c\x20\x33\x41\x14\xb0\x5e\x08\xdb\x3f\x63\x41\xd8\x14\x3e\x79\x4e\xa6\xf0\x8b\xda\x5d\x3b\x93\x45\xee\xa1\x9a\x4c\x2a\xe9\x86\xe5\x2f\xfa\x84\x32\x1d\xd7\xde\x74\x08\xb2\x3e\xa0\x25\xbd\xfa\xeb\xc3\x42\xa8\x8f\xdf\xcb\x42\x35\x74\x04\x9f\x6a\x60\x24\x83\x89\x8c\x61\xe6\xbf\x65\x99\x8c\xdb\xef\x59\xc9\x67\xcc\x6c\xfb\x65\xc0\x28\xcc\x42\xb6\xdb\x43\x4b\x96\x61\x56\xb1\xdf\x1e\x56\xb2\x0e\xb3\x4a\x0c\xed\x61\xa5\x36\xcd\x4a\xe6\xcb\x41\x0f\x75\x0d\x89\x0c\x0a\x87\x2f\xd3\x8d\xdb\x55\xc6\x31\x7f\xea\xcf\x5d\x7a\x15\x18\xce\x1a\xb4\x50\x31\x18\x74\x99\x51\x36\xb7\x02\x6c\xd4\x44\x92\x90\xb1\xa4\x5f\x82\xcf\xbf\x1d\x1b\x1a\xbd\x55\x7c\x36\xd5\x50\xfc\xfc\xa9\xb5\xf9\xab\xc9\x1e\x3a\x77\xd8\x2a\x53\xdd\x74\x0f\x47\xd3\x03\xf8\x1a\x6b\xec\x69\x87\xe7\x4f\xaa\xa3\x69\xd2\x8d\x59\xad\xdc\x62\xb7\xc1\x29\xd0\xdf\xe7\x3f\x07\xe3\x2f\x2f\x16\x3f\x0d\x47\xa3\x2e\x01\x87\x44\xd3\xc6\x66\xca\x6f\xd1\xb1\xb6\x12\xb1\xef\x09\xdb\x4d\x37\x51\xef\x6b\x0f\xe9\xc3\x53\xd7\x35\x3e\xb7\x73\x3f\x0d\x47\xe3\x63\x86\x97\x06\xe7\x58\x80\x97\xb1\x24\xf6\x8f\x1f\xff\xd1\xa1\x51\x22\x79\x7b\xf5\xea\x58\x90\xcb\x8b\x45\x25\xe7\x73\xe1\xc4\xe7\x01\x3e\x4e\x10\xd7\x68\xa4\x48\x8e\x1d\xbd\x60\x83\x79\xb4\x0c\xde\xbd\xfe\xd5\xc8\xf8\x16\xe3\xe2\xf9\x4f\xc3\x51\x0d\xf0\xe6\x90\xb2\x90\x9e\x18\xef\x64\x11\xce\xe1\x07\x56\x1f\xaf\x7c\xa3\xc0\x7c\xbd\x68\xda\xac\xad\x74\xd1\xda\xeb\xda\xa7\x16\xad\x91\xb0\xb8\x5f\x89\xa6\x2d\x18\xa8\x14\xb2\x13\x68\xd8\x09\x01\xe5\x01\x50\x5a\xc9\xb6\xe8\x8a\x4f\xed\x3c\x68\x1a\xce\x7e\xb0\xe0\x94\xa8\x53\xf6\x1f\x8b\xc5\x9b\x0b\x99\x60\x3f\x69\xf4\xc9\x4c\x32\x6d\xd8\xde\xde\xf1\xa3\xce\x37\xed\xa7\x7d\x02\x0e\x76\x51\xb7\x84\xbd\x07\x49\xae\x14\x79\x56\x90\x8a\x8f\xa0\xb2\x74\x89\x86\x8e\x6b\x0e\x2a\xd8\x92\x92\x11\x5d\xe6\xce\x68\x0c\x2b\xef\xec\x04\xf1\x43\x1f\x6e\xeb\xed\x32\xa1\x45\x4f\x0a\xac\x24\x26\x31\xdc\x8b\x24\xe3\x49\x2d\xb2\xf5\x56\x3d\x42\x20\x4f\x20\x87\x9c\xab\x95\x86\x19\x74\x32\x38\xf4\x6b\x3e\xc8\xad\x23\x7b\x17\xf9\xab\xc1\x38\xe7\x68\x5a\x1c\xac\x63\xa2\x67\x4a\x53\x76\x8b\x37\x98\xf3\x95\xb4\xae\x75\xd8\xe7\x88\x6f\x60\x06\xef\x03\xda\x6e\x8e\x57\xe1\x62\x59\xfa\x15\x25\x98\xff\x0b\x55\xa0\x34\x38\x8f\xd8\x62\x1e\xa6\x9f\xba\x5c\x90\x5f\x48\x59\x78\x26\x3c\x82\xb8\x12\xec\x00\x7d\xdd\x6e\xca\xe3\xc9\xac\x9f\x2c\x8f\x20\x34\x00\x1c\x0e\xd6\xce\x6d\xec\xf4\xf4\x34\xcf\x26\x3c\x51\x2b\x37\xd1\x6a\x95\xe8\xed\x44\x9b\xdb\xd3\xc1\x24\xd2\x2a\x12\x6e\x98\x8b\x76\xe2\xb4\x77\x19\x87\xa3\xd1\xf1\xa4\x76\x9d\x68\x7b\x09\x0e\xbc\x89\xdc\xea\x9f\xe5\x3b\x9a\xad\x7f\x11\x2b\xed\x75\x40\xc6\x6c\xf5\x83\x21\x87\x69\xfa\x5c\x8e\x8e\x3b\x2e\xfe\xd7\x99\x2a\xc9\x3a\x9e\xaf\xf2\x60\xef\x35\xcb\xf8\x31\x4a\xb2\xb8\xb0\xb9\x0b\xc9\x31\x6d\x0c\x2b\xad\xc9\x5e\xda\xb5\xde\x82\x76\x6b\x34\x90\x59\xb4\x64\xad\x3d\xca\x7e\x8b\xe6\xf1\xc5\x7e\x18\xd9\xae\x41\x85\x7a\x30\x86\xc1\x4a\xeb\x41\xb7\x0d\xe3\xc0\x92\xc1\x88\xf8\x96\x0d\xa6\x18\x6f\xa1\x3d\xde\x21\xfd\x98\xd6\x83\x81\x71\x39\xf7\xa5\x48\x29\x78\xaa\x93\x32\x3a\xe9\x13\x41\xc0\xba\xb4\x20\x20\x53\xf2\x23\x38\x99\xa2\x75\x22\xdd\x8c\x61\x8b\x45\x5e\x24\x15\xe6\x8e\xe2\x00\x4e\x31\x09\x88\xfd\x8a\x90\xdc\xe9\x08\xda\x24\xc2\xad\xb4\x49\x2d\xdc\x29\xbd\xe5\xa4\x59\x21\x42\xe9\x26\xbd\x2c\x57\xd3\x33\xa1\x2d\xbe\xf9\x69\x71\xf2\xd4\x64\xc9\xa7\x5b\x43\x0a\x35\x71\xdf\x7c\x35\x0e\x89\x9c\xc2\xe0\x5c\x38\x82\x34\xc2\x48\xb7\xdb\x73\x38\x55\xeb\x30\x11\xb1\x97\xe0\xb0\x41\x68\xbf\x40\x49\x79\x58\x92\x8c\xc5\x4b\x8b\x94\x81\xe2\x23\x3f\x73\xaf\x30\x56\xda\xaf\xf0\x15\x0f\x6b\xc9\xc2\x3f\x1e\xda\x48\x1b\x9c\xc2\xb3\xa7\x93\xa7\xf9\x29\xfb\xec\x29\x7f\xaf\xb9\x5a\x83\x33\x9d\xa6\x5a\x0d\xfa\x8f\xdf\x62\xb6\xfd\x32\x27\x8d\xed\x13\x36\x6b\x73\x43\xc8\x4a\x26\x95\x84\xeb\x0c\x1d\x2f\xec\x02\xae\x47\xca\xb9\x0d\xaa\x20\x8f\x3f\x67\xba\xbc\xf7\x5e\xf3\x30\x2f\xf2\xb4\x3e\xcb\x2c\xad\xf7\xbd\x6f\xe5\x3d\xfa\x04\xcb\xc6\xe8\x3f\x30\x72\xde\x45\xd3\x09\xe8\x7b\x34\x5e\xf5\xd7\x08\x4b\x3f\x11\xfb\x49\xd2\x82\xc1\x8d\x41\x8b\xec\xdc\x09\x0a\xbe\xfb\x66\x7d\x79\x75\xf6\xb7\x6f\x9f\xc1\x76\x8d\xaa\xc4\xe1\x34\xbc\x7c\xf7\x1a\xb4\xf2\xd9\xf0\x7b\x29\xfc\xfc\x9c\xdb\x04\xa9\x56\x46\x58\x8e\x19\x32\x53\x4c\x3c\xe9\xd5\xd0\xdf\xb0\x48\x5b\x7b\x8b\xfd\x24\xc1\x7b\x4c\x8a\x94\x5e\x0c\x76\x97\x2e\x75\xe2\xd7\xbc\xdf\xd6\x15\xd0\xaf\x18\x78\x76\xe8\x44\xd8\xeb\xae\xd7\x8f\x0b\x52\xa1\xbd\xc3\xf7\x1e\x1b\x87\x03\xb4\xf0\x33\x02\x61\xbf\x6a\xfa\x14\x2d\x0c\x2f\xba\x65\x29\x57\x35\x49\xbc\xae\x12\x33\x75\xe1\xb4\x83\xb5\x60\x35\xce\x74\xba\x29\xb2\xb9\x4e\xdf\xa1\xca\x97\xe3\xed\xd5\x1c\x96\xc2\x62\x4c\xab\x2e\xf8\x2b\x3f\xa3\x15\x2a\xc7\xc2\xfc\x7c\x0c\x1b\x2d\x73\x15\xd5\x20\xe0\x3f\xaf\xff\x79\x09\x2b\x99\xe0\x84\xcb\x0f\xfb\xa6\xde\x16\xf9\x6e\xc1\x00\xb0\xd3\xd9\xbf\xdd\x23\x64\x9b\x44\x8b\x98\xd4\x54\xc5\x9c\xd5\x5e\x6b\xcb\xf8\xad\x4e\xd1\x67\xcd\x9f\xf8\x14\x37\x45\x27\x44\x17\x05\x65\x41\xf2\x39\xca\xf1\xee\x9b\x7b\xfe\xe6\xe2\x7a\x0c\xd7\xdf\x8d\xe9\x28\x21\xa1\xbd\xbd\x7a\xc5\x62\x13\x52\x15\x45\x1d\x66\x25\x96\x06\x23\x97\xec\xc6\x80\x2e\xea\x3e\x48\x20\x57\x49\x92\x11\x89\x68\x06\x87\x5c\x41\x2f\xe8\xc2\x92\x9d\x0e\xf6\xa2\xcd\x8c\x7c\xc7\xa1\xd4\x0c\xda\x9e\x63\xe1\x53\x0e\x26\x7f\x58\x36\xb7\xbd\xa8\xba\xfd\xd7\x96\xae\xed\xdf\x29\xde\x2a\x37\x35\xee\x40\x0c\x4e\x1f\xbf\xa9\x3b\x40\xfd\x8b\xfd\xc0\x99\x91\xcd\x38\xfc\xed\xd5\x7c\x3f\xa5\xf4\xc9\x17\x64\x5a\x7c\x19\xd3\xca\x73\xdd\x8a\x96\xb8\x58\x2e\x83\x36\x4b\x9c\x25\x95\x12\xe0\xc5\x89\xaa\x2c\x00\x16\xa3\x48\x19\xd9\x24\x1d\x9c\x35\x3c\xac\xf6\xaf\xd5\x3e\x2c\x7b\x6c\x46\xe7\x9b\x07\xc0\xc4\xe2\x9e\xbd\x9e\xaf\x7f\x5f\x14\xfe\x70\xd2\xff\xab\x03\xd4\x0f\x78\x28\xea\x42\x70\x4e\xc7\x0b\x97\x10\xa7\xf0\x4f\x95\xec\xb8\x20\xc4\x65\xaa\xa5\x88\xee\xb6\xc2\xc4\x10\xe9\x74\x23\x9c\x5c\x4a\x5f\xa1\x84\xbe\xa2\x4d\x55\x0c\xaa\x6c\x7a\xb3\xb6\x06\x9f\xf2\xa9\x3b\x31\x54\xa3\x3b\xaa\x3f\xd5\xcb\xf1\xde\x09\x6a\x89\xe4\x7a\x8d\x83\x8e\xd4\x48\x2b\xf2\x37\xbd\xdd\xbb\x43\x55\x4f\x3c\xe7\x87\xae\xa8\x17\xde\x72\xdf\x55\xc1\xbf\x7c\x7d\xe9\x5f\x30\x3f\xf7\xc9\x92\xee\xac\xae\x30\xe4\xb6\x61\x7c\x79\xb1\xb0\x53\xf8\xf9\x93\x87\x9a\x42\x3b\x0b\x7d\x79\xb1\x78\x68\x54\x4c\x60\xd8\x59\x74\x28\x11\xc2\xf3\x27\x24\xc5\x6a\x41\x6b\x0c\xdc\xa2\xbb\xce\x36\x1b\x6d\x1c\x8f\xa6\x83\xce\x96\xd9\x78\x01\x89\xb4\xae\x90\x84\xe3\x77\x79\x36\x9e\x3d\x8d\x08\x25\x79\x22\xc4\xcb\xc6\xb5\xea\x3f\xad\x8c\x75\x6b\xa2\xe1\x68\x0a\x9f\xfc\x09\xfb\xab\xd6\x49\x33\xb1\x4e\x46\xd1\x16\x30\x0c\xd0\x18\x3e\x0b\x19\x63\xce\x6b\xa3\xdf\xf7\x04\x84\x37\x30\x03\x67\x1a\x3b\x3c\xd7\xfd\x3a\x86\x3e\xa9\x5d\xe5\x02\xda\xae\x91\xe3\x36\x6d\xb8\x96\x49\x87\x09\x79\x6d\xca\x6b\x01\x29\x06\x8b\x06\x63\x58\xee\x1a\xa5\xda\x1a\xbe\x5f\xc2\x1a\x6e\x99\xa5\xf3\xc0\x5c\xfe\x64\x7c\x79\x80\xf4\x47\x66\x5d\xe5\x9b\x66\x48\xb8\x63\x5c\x89\x2c\x71\xfb\x97\x40\xda\xe6\x0a\x0c\x5d\xe9\xde\x8c\xbc\x50\xbb\xcb\x08\x3c\xfd\x6c\xd6\x17\x61\xf7\x89\x89\xb6\x41\x6c\xc4\x16\x0c\xa6\xfa\xde\x97\x82\x48\x93\x56\x45\x85\x35\x2c\x6b\xab\x18\xfc\xa0\x66\x0d\xa8\xc9\x54\x6b\x53\xfc\x9e\x4f\xe3\x53\xde\xc5\xa4\xc3\xe2\xcb\xfc\xbc\xa8\xf3\x76\x57\x76\x68\x4f\x75\x68\x9e\x77\x7c\x9e\x3f\x69\x6c\xa7\x89\xe7\x65\x78\x87\xbb\x29\x54\x53\xb4\x8d\xf5\x8b\x17\xb0\x11\x4a\x46\xc3\x41\x20\xaf\xca\xfc\x4c\x0a\xd8\x29\x9c\xf1\xb2\x92\x02\x95\x02\xcb\x05\xc5\x76\x64\x7e\x0e\xfd\x8e\x43\x71\xd6\x54\x94\x84\xe9\xa6\x83\x60\x83\x09\x9c\xad\x31\xba\x63\x71\xdb\x6c\x99\x4a\x47\xda\x3a\x3f\xa7\x25\x48\xc5\x1d\x3d\xf4\xc5\x79\x69\x41\x2b\x0c\xb6\x7f\xb0\x76\x7a\xab\xec\x64\x30\x6a\x38\x25\x65\x5d\x8c\x25\xd9\xa7\x23\x31\x6e\xb4\xa5\x25\x17\x77\xdc\x64\x42\x6c\xb3\x43\x18\xc7\x35\x55\x28\x67\xb3\x81\x91\x6e\xd5\x11\x19\x8a\xc6\x7b\x0e\xb8\xe7\x80\x9c\x4b\x23\x76\xbd\x35\x92\x9c\x82\x21\x93\xd9\xab\x21\x4d\x23\x5b\x53\x11\xff\x85\x5c\xfc\xc6\xe6\x68\x81\x70\x2d\x98\x87\x4f\x64\x5c\x97\x17\xb1\x10\x7b\xa7\x5b\xe1\x36\xc7\x99\x33\x11\x9c\x4b\xdb\xb5\x8c\xd6\xe5\x8e\xe2\x76\xa3\x84\x9c\x77\x6c\xcd\xa5\x93\x78\xd1\xad\xc4\xef\x0b\x0a\x6e\x4a\xea\xeb\xb4\xc4\x68\x9d\xd1\xbb\x12\x45\x8b\xd2\xbc\xe5\x28\x66\x2b\xc7\x5d\x2a\xe8\x9d\xf7\x4d\x66\x28\xce\x20\x6d\x49\x76\x4d\xa8\x73\xcd\x6a\xce\x6c\x6a\x8a\x03\x4c\xd5\xd8\x93\xa9\x04\xad\xa5\x87\xcd\x2e\x90\x26\x16\x83\xc2\x6a\x16\xcd\x56\x28\xd6\x10\x4c\xa5\x2b\x5a\x11\xde\x6e\x62\xee\x70\xc2\x7b\x54\xae\x8a\x25\x9a\x48\xa4\xaa\xcf\xdf\x92\x9e\xc8\xdc\x9a\x79\xbf\xc2\x15\xcc\x60\xf8\x75\x43\x84\x24\x3c\x0a\xb0\x33\xb7\x6e\x9b\x24\x4f\xc4\x08\xbe\xee\x56\xa6\x17\xa3\xaf\x1a\xf4\x84\xb3\x4d\x32\x86\x5e\x18\xa1\xec\x0a\xcd\xb9\x70\x38\xa4\x07\x53\x3a\x44\xcf\x32\x63\x50\xb9\x5f\x13\x1d\xdd\x0d\x47\x93\x32\x85\x56\xdf\xeb\x81\x16\x92\x6c\x2a\xb1\x0c\xc3\x89\x7a\x0d\xf7\x2d\xba\xf9\x79\xe0\x07\x28\xbf\x85\x8a\xfe\x36\x7a\xc7\x86\x80\xa2\xb6\x56\x13\xd2\x41\x3f\x60\x7e\xee\xeb\xd6\xde\x28\xf7\x54\xae\x1b\x56\xf7\x0e\x77\xbd\xa7\xf1\x6f\x98\x37\xa2\x88\x54\x67\xca\x95\xe5\xae\xbe\x2e\xa9\x83\x04\xbe\x42\x75\xeb\xd6\x44\xe3\x5c\xb9\xa3\xc8\x4b\x18\xe2\x50\x45\xb6\x9c\x63\xa9\x8d\xd1\xdb\xcb\x8b\xc5\xf0\x43\xd0\x86\x34\x9a\xf6\xea\x4b\x37\x11\x1d\x2a\xd9\x27\xa3\x5f\x79\x46\x16\x04\x53\x91\xe7\x4e\x4c\xd9\x61\x96\x6f\xb6\x3c\x91\x34\x3f\x3f\x86\x81\xb0\x8d\x6f\xd8\xe0\x23\x7c\x37\x29\xbe\xb4\x18\xc9\x53\x1b\x6a\xe5\x60\xd6\xc5\x0e\xed\xb0\x23\x65\x12\xc8\x85\xd0\x31\x60\x37\x11\x8f\x8d\x80\x6a\x82\x7c\x74\xaf\x4b\xb1\x69\xac\x48\x83\xb6\x3c\x38\xa2\xf9\xa5\x36\xf0\xe7\x9c\xb4\x5f\xaa\x39\xa2\x23\xe6\xf8\xff\xd4\xf2\x02\x61\xa4\xf9\x39\x92\xee\xd6\xe5\x52\x1e\x5f\xd8\x6c\x74\x9c\x28\x6b\x0c\x3f\x46\xae\xa5\x4c\x73\xc4\x10\xae\x4f\x53\x36\x17\x79\x17\xb0\xa7\xb7\xb4\xd3\x49\xc2\xec\x94\x19\x42\xce\xa1\x54\x7d\xc0\x3e\x0e\x11\x14\x2b\x43\xa3\xcb\x39\x47\x7c\xd2\x52\xb7\xc0\xf4\xfb\xe0\xb0\xcc\xab\xb0\x73\x15\xa0\xbe\xe7\x84\x8d\xf7\x0c\x7c\x4f\xc0\x56\x26\x09\x2c\x11\x32\xcb\x33\x97\xc8\x8b\x4f\x8c\xf7\x98\xe8\x0d\x1a\x4b\x0b\xc1\x05\x1d\xef\xdd\x6c\x84\x11\x29\x3a\xe4\xc6\xe8\x8d\xb0\xb6\x58\xa8\xb0\x9f\x65\x04\x29\xba\xb5\x8e\x27\x35\xe2\xfb\x6c\x7a\x98\x25\xb6\x1d\x85\xc3\x17\x5d\x9d\x54\x9d\x5d\x54\x9f\xd5\x7e\xf4\xb9\xad\x47\x8f\xce\x3c\xdf\x1c\x52\x15\x16\x20\x79\xda\xb5\x76\xd1\x7c\xef\x04\x7d\x20\x93\xb6\x4e\xf0\xb2\x14\x5d\x44\x6b\x5f\xf9\x28\x4c\x4f\x8c\x56\x9a\x5c\x0b\x26\x6d\x35\x82\xaa\x6e\x50\x56\x28\x0a\x25\x32\xf8\x67\x86\xd6\x35\x81\x3b\x37\xdd\x71\x55\xe0\x17\xcd\x9a\x6f\x5f\xbf\x53\xd0\xeb\xc4\xcc\xd4\xcd\xdc\x97\xd5\xe6\x7d\xce\x3e\x1c\xd6\x2a\x81\xb5\x10\x75\xe7\x3a\x6d\xd8\xad\xcd\x87\x64\x67\xeb\x7a\x77\x72\x75\x13\x34\xa9\x37\x60\xab\x9e\xf5\x7d\xa0\x61\x96\x8d\x85\xf1\x75\x67\x40\xdb\xd9\xd9\x56\x61\x79\x25\xd5\x9d\xcf\xaa\x7c\x1e\x96\x4e\x6b\x5b\xe8\xf6\x14\x86\xab\xec\xf1\xc7\x58\xf8\xf9\x2b\x8e\xb4\xf0\xf3\xd0\x7e\xdc\x7e\x92\x13\x51\xd7\x9a\xcf\x50\xc9\x3d\xcd\x15\xbe\x1f\x3b\x96\x6d\x65\x7c\x4d\x4f\xbb\x15\x70\x25\x13\x7c\x7c\x87\x1c\x77\xc7\x95\x25\x12\x61\x2d\x3a\x3b\xd9\xe2\xd2\x4a\x87\x4f\x08\xa5\x9d\x44\x3a\x3d\xfd\x61\xf5\xe3\xb7\xff\xf8\x3e\x7a\x1a\xfd\x4d\xfc\x3d\x8a\xe3\x1f\xbf\xff\x6e\xf9\x2c\xfa\xfb\xb7\x4f\x1b\x2f\xc4\x0f\x3f\x44\xcb\x67\xd1\x3f\xbe\xfb\xf1\xc3\x45\xa2\xb7\x1f\x7e\xd7\x26\x4e\x85\xb9\x9b\xd8\xfb\xdb\xee\xfc\x48\x8f\x26\x31\xf7\x79\xa9\x5e\xa6\xe2\x16\x4f\xed\xfd\xed\xbf\x7f\x4c\x93\x36\x96\xde\x15\x3a\x2c\xfc\x6e\xb1\xe4\xd5\x6e\x32\x9e\x45\x7f\x5b\x05\x39\xe8\xa6\xb7\x5e\x6f\x5f\x34\x72\x2f\xd2\xfa\xe3\x55\xd4\x2e\x38\x39\x0d\x6b\x4c\x36\x1c\x4d\xe7\xa7\xac\x0f\x77\x15\x7e\x74\xf9\x55\xa7\x8b\xc5\xa4\x67\x46\xac\xba\x9d\x9a\xab\xfe\x88\x46\xa8\x41\x8f\xfc\xed\x9f\x99\x30\x38\x27\xc9\x4f\xfd\x62\x74\x8f\x5b\x0a\xa5\xd0\x1c\x1e\x67\x75\x24\x45\x62\xa7\x7b\x36\xf7\xc0\x6d\xa5\x73\x68\x06\x47\xb1\x93\x0f\x66\xe5\x24\x66\x3e\x2c\x29\xd8\x8e\xd6\x42\xf6\x15\x73\x1e\x0e\x68\xce\x17\xf6\x09\xfc\xe5\x3d\x02\x79\x33\x40\xd7\xc4\x7f\x41\x7f\x40\xa3\x1a\xdd\xe8\x0f\x78\x7b\x35\x9f\xc0\x3c\x28\xfb\x8e\x6b\xa3\x2a\xb7\x45\x5a\x48\xb4\xbf\xcd\xa6\x15\x27\x7a\xb8\x40\xcc\x65\xe4\xb6\xa6\x9c\x9e\x16\x97\xf0\x8a\xb2\xf1\xff\x58\x6d\xf8\x8b\x2a\xae\xf5\x6e\xd7\xcb\x8b\x45\xcf\x9e\x2c\x0a\xab\x83\xff\x7a\xfd\xe6\x55\xcf\x98\xc7\xd6\x4f\xcb\xba\x29\x77\xd3\x9c\x9e\x82\x45\xe7\xc2\x92\xa9\xb0\xf4\x8a\x1e\xdb\xa0\xb8\xe1\x9d\x7b\xe1\x1f\x65\x46\x86\x7d\xc0\xbd\x73\xe5\xd5\xd2\x43\x15\xf3\x52\x19\xca\x4b\x85\x5c\x43\xed\xb6\xef\x7b\x76\xdd\x43\xd3\x87\x2f\x42\xfa\xc0\x33\xbe\x2a\x6b\x76\x9c\xcb\x52\x20\xe2\x54\x2a\xd0\x86\x95\xc9\xad\xb9\x17\x21\xbf\xa0\xe9\x7b\x18\x28\x1e\xf4\x77\x37\x0b\x1c\x62\xe9\xad\x6d\x2a\x95\xe3\xb4\x6d\x19\x2e\x76\x79\xb0\xe1\x85\x35\x7f\x11\x2f\xbc\xa0\x76\x9a\xf7\xc9\xd1\x2e\xa5\xff\xe4\xa4\xe7\x28\x8b\x6e\x38\xfa\x19\xe4\x66\xf6\x47\xb4\x44\x3f\xc9\x13\x3f\x76\x17\x86\xc8\x9f\xce\xe7\xfb\xbf\x73\xed\xaa\x1c\x4e\xce\x5c\xdd\xb7\x0a\x65\x05\xa5\x2b\xb3\xe7\x5e\x56\xbb\x40\xc8\x3e\x79\x90\x41\x85\x59\x3b\xa7\x5a\x03\x68\xb6\xfc\xf1\x98\xc1\x0d\xcc\x6a\x68\x26\x6b\x94\xb7\x6b\xb7\x17\xd2\x37\x0b\x36\x01\xcb\xfc\x6d\x2b\xc3\xce\xf6\x6f\x23\x31\xe2\x10\xab\xb4\x7a\xb5\x98\xba\x68\x7d\xc4\x74\x89\x71\x4c\xeb\xed\x5b\xe2\x40\x2a\x6e\xd2\xe1\xd6\xb5\x1e\xaa\xb8\xab\x0e\x66\x30\x58\x0a\x33\x68\xcd\x9e\xe7\x20\x4a\x05\xac\xbd\xbf\x17\xe4\x48\x6c\x69\x49\xaa\x74\x45\x4b\x8b\x2a\x4d\xea\x6e\x1b\xa9\xe9\xd2\xde\xdb\x1a\x81\x52\x95\x5f\xdb\xa3\x02\xdd\x2a\xbf\xb6\x47\x55\x0a\x53\xf6\xb4\xd6\xc6\xf4\x15\xb1\x3c\xbf\xdd\xd9\x2a\xbe\xb8\x38\xaa\x6f\x65\xb8\xce\xdb\xdf\x88\xf9\xfc\x3a\x6f\x15\x76\xf6\xc6\x70\x30\x83\xd3\x3c\xdc\x2b\x4c\x64\xcd\xbb\xec\x43\x51\x85\x72\x84\xc1\x1f\xc8\x47\x20\x68\xdd\x06\xee\x9e\xdf\x0f\xab\xb1\x77\x56\x28\xc8\x59\xc7\xed\x63\x6e\xef\x13\xf7\xc5\xad\xde\x1c\x61\x09\x5e\x8f\x8c\xf7\xa5\xbc\x4a\x42\x45\x14\xe9\x4c\xb9\x49\x8e\x6a\x42\xd8\x87\xcf\x9f\x44\x41\x93\x87\xd3\xfb\x82\xe3\x51\x8d\xfa\x52\xbd\x73\xd7\x25\x12\x1b\xe1\x1b\x56\x3a\xae\x5c\xf7\xd0\x7d\x26\x36\x45\xab\x56\x41\x5d\x89\x46\xa2\x2d\x49\x95\xd6\x66\xfd\xe1\xee\x3e\x8a\x3b\x25\x50\x9b\x83\xc9\xb7\xeb\x61\x8d\xaa\x31\x08\xb7\x27\xd6\x1f\x75\xaf\x63\x7e\x1e\x3d\x66\x0d\xf3\x0b\xed\x35\x1b\xe0\xd1\x1c\xb9\x7c\x1e\x41\xb0\x74\x2d\x7d\x2c\x32\x9f\x0f\x27\xff\x1d\x00\x00\xff\xff\x6c\xb6\x54\xe9\xcf\x41\x00\x00" func examplenftCdcBytes() ([]byte, error) { return bindataRead( @@ -89,11 +89,11 @@ func examplenftCdc() (*asset, error) { } info := bindataFileInfo{name: "ExampleNFT.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x15, 0xca, 0x35, 0xd5, 0x44, 0xd2, 0x5, 0x8, 0xd1, 0xba, 0x67, 0x4c, 0x85, 0x86, 0x14, 0xb9, 0xe2, 0x8b, 0x5b, 0x2f, 0x2d, 0xac, 0xeb, 0x3a, 0x42, 0x98, 0xc4, 0x9c, 0x9e, 0x59, 0x8e, 0x43}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0x18, 0xbe, 0x2e, 0xc1, 0xd4, 0x88, 0x60, 0xfc, 0xaf, 0x1a, 0xa8, 0x6b, 0x94, 0xb, 0x58, 0xba, 0xa1, 0x80, 0x75, 0xb4, 0x68, 0xb3, 0x7f, 0xd6, 0x52, 0x56, 0xc7, 0xc5, 0xf9, 0x94, 0x1c}} return a, nil } -var _metadataviewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x7d\x7f\x73\xdb\xb6\xb2\xe8\xff\xf9\x14\x1b\xdf\x99\xd4\x7e\x4f\x96\x9c\xdc\x9e\xbe\xf7\x3c\x55\x7b\xd3\xc4\x3e\xc7\x77\x9a\x9c\x4c\xe2\xf4\xbe\x99\x4c\xa7\x86\x48\x48\xc2\x31\x49\xf0\x00\xa0\x65\xdd\x4c\xbf\xfb\x9d\x5d\xfc\x20\x40\x52\x12\xed\xa6\x27\xfe\x23\x91\x48\x60\xb1\xbb\xd8\x5d\xec\x2e\x16\x90\x28\x6b\xa9\x0c\x1c\x5d\x36\xd5\x4a\x2c\x0a\x7e\x2d\x6f\x79\x75\xf4\xc4\x3f\x7e\x2b\xab\x1d\x6f\x7e\x11\x7c\xf3\x9e\x6b\x59\xdc\x71\x75\xf4\xe4\xc9\x6c\x36\x83\xeb\xb5\xd0\x90\xc9\xca\x28\x96\x19\x10\x65\x5d\xf0\x92\x57\x46\x83\x59\x73\x28\xb9\x61\x39\x33\x0c\xb4\x61\x55\xce\x54\x0e\xb5\x92\xb5\xd4\x3c\xa7\xbe\xa2\x82\xcb\x9f\xaf\xde\x9d\x9e\x7d\xf7\xef\xdf\x4d\xf1\x09\x3d\x7d\xcf\x97\xe7\xb0\x36\xa6\xd6\xe7\xb3\xd9\x4a\x98\x75\xb3\x98\x66\xb2\x9c\xc9\x6a\x59\xc8\xcd\x6c\x59\x88\x5a\xcf\x16\x85\x5c\xcc\x4a\x26\xaa\x19\xab\xeb\x42\x64\xcc\x08\x59\xcd\x5e\x9c\xbd\x78\x7e\xf6\xff\x9e\x7f\x77\x5a\x2d\xcd\xa9\x1f\x7c\x5a\xe6\x01\xf6\x07\xa3\x9a\xcc\x68\x60\x55\x0e\x8a\x6b\xd9\xa8\x8c\x6b\xc8\x58\xd5\x62\x0e\xb2\xe2\x20\x15\x94\x52\x71\xea\x13\x88\x30\xdb\x9a\xeb\x09\x64\xac\x28\x78\x0e\x77\x82\x6f\xf4\x14\x2e\x58\xb6\xa6\xcf\xf4\x1a\x14\xaf\x15\xd7\xc8\x00\xea\xcb\x20\x17\xcb\x25\x57\x08\xf7\x56\x54\x39\xc8\x65\x80\x37\x01\xdd\x64\x6b\x60\x1a\x18\x64\x8a\x33\x23\x15\x2c\x84\x5c\x29\x56\xaf\xb7\xd4\x5b\x2a\x60\xf0\x9f\xef\x2e\xfe\x0a\xa2\x64\x2b\x0e\x4b\x51\x70\xcb\x27\x96\x65\x5c\xeb\x63\x56\x14\x27\x2d\xf3\xdf\x38\xc0\x38\x4b\x1a\x3e\x3f\x79\x02\x00\x80\x70\x5e\x0b\x5d\x17\x6c\x0b\x02\x87\x5a\x30\x2d\x32\x87\xf1\x9a\x19\x10\x55\x56\x34\x39\xb7\x13\x56\xb1\x92\x4f\x20\xe7\x3a\x53\xa2\x46\x96\x22\xa7\x02\x1c\xb3\x6e\xca\x45\xc5\x44\x01\x4b\x44\xad\x02\xb9\xf8\x07\xcf\xcc\x14\xde\x48\x6d\xdc\x17\x0d\x7a\x2d\x9b\x22\x8f\x18\x6a\x50\x44\x70\xc0\xa9\x87\x44\xff\xc7\x34\x68\x9a\x97\x80\xa8\xc3\xdd\x8f\x7b\xed\x30\x43\xee\x21\x96\x6e\xd8\xb8\x4d\xa7\xbd\xd0\xb0\x14\xbc\xc8\x61\x23\x8a\x02\x16\x1c\x72\x0b\x99\xe7\x28\x74\x85\xd0\x4e\x06\xcc\x9a\x2b\xbe\x94\x8a\x3b\xac\x13\x30\x0b\x7a\xaa\x0c\x52\x9a\xc9\x2a\x13\x9a\x0f\x8f\x19\x53\x52\x70\x43\xb8\x9e\xa3\xac\x89\x6a\x95\x52\xf2\x12\x36\x4a\x18\xc3\xab\x84\xc7\x5f\x88\x2c\x06\x39\x37\x4c\x78\xe1\x4c\xc1\x4e\x12\x50\x5a\x92\xd0\x2f\x38\x89\x39\xdc\x71\xb5\x90\x9a\xc3\x31\x9f\xae\xa6\xc0\xa0\x66\x8a\x91\x1c\x82\xa8\xb4\xe1\x8c\xe4\x96\x81\x16\xd5\xaa\xe0\x50\x88\x8a\x9f\x8c\xe3\x44\x44\xe5\x2e\x86\xe8\x92\x15\x45\x24\x5a\x41\x83\xd8\x23\x79\xe3\xe4\x6f\xc1\x81\xc1\x86\x2f\x4e\x97\x4a\xf0\x2a\x2f\xb6\xa4\x3e\x70\x2c\xa6\x9c\x74\x6a\x02\xef\xde\xfe\xf5\x24\x01\x42\xfa\xe0\xf8\xd2\x17\x98\x09\x12\x7e\x0b\xb5\xe2\xa4\xfa\x13\xe0\x26\x1b\xc7\x85\x40\xdc\x39\x7c\xbe\x14\x05\xff\xbd\xe5\x01\x4d\x94\xa8\x84\x39\x0e\x8f\xf0\x2f\x96\xa0\x49\xf2\x66\x80\xa3\x69\x83\xfe\x60\xfe\xcd\x09\x7c\x4e\x5a\x6a\x5e\x2c\xa7\xa4\x57\x73\x1a\xb0\xff\x32\x16\xd2\x79\x3c\x74\xbf\x69\x3b\x81\xf3\x16\x85\xd0\xcc\x22\xf1\x7b\x6b\x92\xfe\xc6\x8b\x9a\x2b\x30\x12\x56\xbc\xd5\x7b\x12\x62\x32\xb3\x6c\xc9\x61\xc3\xb6\x89\xc1\xc0\x7e\xff\x81\xa2\x59\x12\xdb\xfc\x42\x74\x0e\x2f\x41\x71\x32\xb2\x19\x47\x88\x28\x2f\xca\xbd\x0c\x56\xbe\x85\xa0\xb8\x69\x54\x05\x2f\x2b\x90\x44\x0b\x2b\xc2\xf8\xd6\x0c\xed\xb4\x52\xcb\xa6\x42\x74\x5d\xeb\xe3\xdf\x3a\x68\x3c\xfb\x1c\xaf\x8f\x53\xff\xe1\xf7\x13\x38\xf7\x23\xfc\x18\x4d\x81\x58\x92\x70\x90\x04\xcc\x13\x50\x53\x87\x3d\x82\x3b\xbe\xde\xd6\xfc\x7b\xd7\xfd\x87\xe3\x93\xee\x24\x7a\x28\x0e\x04\x30\xfd\x63\x64\x46\xa1\xf3\xe7\x68\xbf\x4b\x5e\xfc\xfe\xa4\xff\xc9\x35\xac\xdc\x1c\x46\x33\xf7\x57\x5e\x71\x25\x32\x10\x95\xe1\x6a\xc9\x90\xe5\xa8\x36\xed\xc2\x07\xcc\x6a\x9a\x36\x52\xf1\x1c\x50\x87\x15\xc8\xe5\x12\xb2\x35\x13\xd5\x14\x50\x28\x75\x00\xe7\xd4\xad\xd1\x3c\xc7\xb9\x0b\x13\xa9\xed\x9a\xa7\x27\x70\x27\x72\x2e\xad\xb9\x96\x68\xaf\xa1\xe4\xb9\x60\x07\xd7\x92\x16\x3f\x1c\x30\xe2\x45\xdc\x96\x58\x86\xd3\xda\x28\x71\x7c\x12\x4c\x54\x87\xe4\x5f\x68\xb1\x94\xc0\xef\xd1\x77\xf1\xf4\xd9\xd5\x53\x3b\x78\xe8\x2d\x01\xa3\xb5\xe2\x6f\xd7\xd7\xef\xe0\x58\x2a\xfa\xf0\xe1\x04\x3e\xbe\xff\xf9\x20\xb6\xd8\x14\xf1\x3c\xdf\x87\x2d\x4e\x74\xa3\x8a\xbe\x25\x6d\xad\x48\xf4\x7a\x50\xdd\x1b\x85\x0a\xda\xa8\x58\x35\x1f\xc0\x99\x0e\x48\x27\x25\x1e\xf2\x6e\x75\x1f\xe6\x60\x2b\x21\x57\xef\x2e\x3f\x04\x1e\xd1\x37\x37\xfd\xc0\x14\x6f\x85\x22\x87\xc5\x16\xd5\x5b\x28\xf2\x7a\xd0\xb9\x10\x39\xaf\x8c\x58\x0a\xae\xe0\xf8\xd5\xd5\xeb\x93\x00\x44\x31\x12\x16\xb3\x66\xb4\x32\x0a\xc5\x33\x03\x1f\xdf\x5f\x4d\xe1\x25\x64\x85\xc0\xbe\x91\xeb\x48\x72\xd8\x68\x6e\x9d\x95\x57\x57\xaf\x5b\xa7\x47\xc2\x12\x3d\x37\x94\xbf\x42\x32\xf2\x19\x9c\x3f\x76\x27\x18\xce\x37\xa1\xbb\x62\x86\x6f\xd8\xf6\xe0\x44\x63\xe3\x64\xa2\x93\x15\xe8\xd5\xd5\x6b\x14\x29\x1c\x62\x80\x40\xf4\xba\x08\x3f\x1a\xd1\x7a\x83\x51\xef\x04\x52\xe2\x45\xe7\x32\xd3\x53\x51\x2f\xf5\x54\xc8\x19\xba\x32\xbc\x36\x7a\xe6\x46\x38\x65\x79\xae\x50\x82\xab\xd5\x6c\xd4\x72\x96\x89\x7c\x78\x31\x7f\xc7\xcc\x9a\x34\x22\x32\xad\x35\x3e\x73\x46\x99\x26\xdd\x1b\x64\x32\xf6\x8e\x79\x76\x76\xa4\xda\x8e\x5a\xe0\x85\x06\x59\x15\x5b\xa8\x38\xcf\x71\x7d\x5e\xb6\xc0\x85\x46\x8f\x45\xe4\x3c\x4c\xf9\x5e\xa0\x23\x98\x84\x60\x4f\xf5\x56\x1b\x5e\xea\x71\xec\x41\x8a\x3d\x7f\x7e\x1c\xd2\xd1\x88\x7f\x93\xb4\xf5\xa0\xca\x66\x22\x87\x39\x32\xbd\xff\x8a\x98\x3b\x27\x18\x43\xfa\xdc\xf2\xad\xa9\x32\x92\x72\xab\xb0\x56\xc0\x88\xf3\x15\x33\xe2\x8e\xa3\x89\x6a\xa5\xab\x27\x58\x7b\xf8\xb4\x96\x9b\x53\x23\x67\x4e\x84\x4e\xf1\xf1\xa9\xac\x4e\x37\x7c\x31\xfb\x37\x0b\xfb\xb4\x51\x85\xde\x39\x03\x7e\x35\x46\x17\x5f\x5b\x13\x83\x62\xc9\x44\x85\x1f\xc3\xbc\x36\x4a\x1c\xe4\xfd\x28\x8b\xe5\x96\x4b\xc7\xb8\x96\x89\x3b\x97\xca\x23\x24\xe9\x7c\x36\x3b\x9a\xa2\x48\x30\x73\xec\xe7\xe4\xc4\x3f\x38\x9a\x1d\x85\xcf\x08\xeb\xa4\xb3\xb8\x0e\x59\xcc\xdd\x50\x77\xdb\xd0\x97\xde\x84\xd0\x32\xe9\x56\x5b\x60\xb0\x72\x0b\x32\xd9\xb6\x37\x6c\x9b\x2e\xa7\xbe\x1d\xb2\xf2\xe3\xfb\x2b\x90\xcb\x28\x9c\xe3\xf0\xf6\xf2\x1a\x36\x18\x04\xd1\x37\x0a\x61\xe5\x92\x1a\x0a\x0d\x95\x34\xc0\x70\x5d\x33\x92\x5c\x62\x6e\xb8\x2a\x45\xc5\x73\xf2\xa2\xa7\xb4\x68\x4d\x12\xab\x6d\x9d\xe2\x93\x43\x46\xf0\xe3\xfb\xab\xde\x42\xe7\x03\xbd\x05\xd3\x16\xd3\x5a\xf1\xa5\xb8\x9f\xe0\x94\xb1\x6a\x3b\x85\xb7\xd2\x78\x95\xa7\xf0\xb3\x28\xb0\x99\x9e\xc0\xa2\x31\xb0\xe6\x45\xbd\x6c\x8a\x04\x1a\xb6\xd2\xb2\x24\x6e\x40\xc6\x34\xd7\x70\x29\x15\xf0\x7b\x86\xa1\xe9\x04\x9a\x3a\x67\x06\x45\x84\xc1\x66\x2d\x0b\xcb\x8c\x4c\x16\x05\x27\x65\xf9\x26\x91\x5a\x67\xf2\xd7\x18\xe9\x72\xa6\x45\xb1\x1d\x65\x0c\x90\x1a\xa2\xd6\xdb\x83\x2e\xb9\x48\xa9\x13\xfc\x3b\x56\x34\x3c\x69\xf0\xf6\xef\xd7\x17\xe7\x56\x29\x85\x06\xcd\x0d\xae\x95\x68\x43\x5c\xd6\x80\x64\x87\x57\x49\xa4\xe4\x46\xf4\xe1\x6d\x02\x8f\x46\x40\x86\xfa\x46\x4f\xe7\xc1\xc5\xdb\x41\x09\x0a\xa6\x25\x85\x3a\xf7\x0d\xff\x1f\x72\x1a\x52\x92\x23\x5d\x21\x43\xd9\x65\xde\x24\xc5\x61\xd0\x5a\x7a\xca\xe6\x9e\xc6\x7e\x13\xcb\x85\x79\x87\x09\xf0\xa3\x7f\xf0\xd4\x2b\x25\x35\x44\xef\xbd\x8b\x66\x84\xec\x80\x74\xbf\x41\xff\xb4\xbb\xb2\x93\xb4\x5b\x13\xcb\xad\x07\x3b\x4a\x7e\x96\xe4\x2a\x74\xa3\x46\x9b\x96\xca\x05\x3b\x25\x8d\xcd\x64\xc9\x71\x4d\xb4\xf6\x52\xaa\x92\x64\x61\x5b\xf3\x99\x6e\x16\xd4\x82\x69\x17\xbd\x2d\x78\x0e\xa4\xee\x09\xac\x60\xda\xf9\x1d\x2f\x64\xcd\xd5\xb4\x94\xff\x2d\x8a\x82\x4d\xa5\x5a\xcd\x78\x75\xfa\xf1\x03\x99\xfd\xd9\x7f\xf1\xc5\x0c\xb5\x7e\xf6\x13\xd3\x22\xd3\xbf\xc9\xe5\x6f\xf4\xf5\xcd\xd5\x9b\x8b\xdf\x28\x70\x1b\x45\x15\xe1\x8e\x81\xcd\x3e\x57\x36\x26\x7d\xd2\xef\x92\xce\x3e\x4d\x2c\xf6\x98\xe3\x3f\xdd\x17\xa1\xf3\x3c\x7c\xda\x6d\x67\xff\x4b\xb1\x1a\x63\x53\x2b\xcc\x52\x41\xd9\x14\x46\xd4\x85\x9b\x36\x9b\xf8\x3b\x64\xe1\x48\x06\x74\x57\x08\x5e\x56\xc0\xd4\x42\x18\xc5\xd4\xf6\x54\x8b\xff\xe6\x39\xa5\x16\x5c\x3a\x6d\x0b\x55\x53\x2e\x38\x06\x4b\x4e\x86\x04\x7a\x1d\x3b\xb9\x48\x6f\xcf\xe1\x13\xb5\xfd\x75\x88\x85\xbf\x75\xda\x0c\x6a\x0c\x35\x81\x79\x67\xb0\x03\x11\xbb\xa3\xef\x5f\x1a\xb0\xb7\x4e\xa5\x1b\x7d\x5c\xb8\x6e\x1b\x3f\x28\x5a\xb7\x5d\x1e\x1b\xac\xdb\xde\x23\x63\xf5\x20\x28\xd0\xf9\xfb\x02\xa1\xba\x8f\xba\x62\x6f\xa1\x10\x19\xaf\x30\x04\xcb\x32\xa9\x72\x72\xb2\x64\xd0\x7f\x5d\xe7\xf7\xa4\xf2\xae\x95\x6e\xe7\xf1\xda\x27\x71\x93\x88\xdd\xf9\xde\x3e\x56\x91\xb8\x54\xd3\x32\x2a\xb4\x1f\x29\x3f\x18\x12\xfd\xec\x50\xda\x1d\xf4\x22\x5e\x57\x21\x0e\xda\x67\x34\x7e\x8b\xe2\xa5\xbd\xeb\x44\x0a\x12\xc5\x3f\x7c\x19\xab\x03\x1e\xef\xaf\x95\xb5\xf2\xe3\x8f\x53\x03\xd7\xfa\x41\x7a\xe0\xfa\x3c\x56\x11\x5c\xf7\x91\x9a\xd0\x17\x83\x3f\x41\x15\x42\x02\x02\x23\x1e\xe2\x3a\xfa\x56\x86\x97\x40\x7b\x1d\xc0\xef\x0d\x57\xc8\x5c\x2d\x0c\x9f\xa6\xd2\x1f\x0b\xfe\x62\x1b\x67\x0f\x50\xd8\x6f\x39\x4c\x43\xa2\xe0\xa7\x42\x66\x08\x5d\xfa\xc4\x43\xa3\xb9\xd2\x10\x27\x15\x28\xab\xad\xc4\x4a\xe0\x68\x94\x59\x76\x9b\x2a\xa8\x3e\xb4\xf3\x53\x2b\xf9\x0f\xec\x5b\xa3\xe3\x49\xd9\x26\xbf\x86\xeb\xe0\xbb\xb7\xee\x6a\x8b\x2c\x5f\x05\x85\xde\x6c\x36\xd3\x72\x4b\xdb\x61\x0e\x9a\xdd\x4a\xbb\xe3\x0a\xf9\x7e\x2a\x97\xf4\xae\x85\x72\x48\x57\x2f\x1c\x7f\x90\x7d\x8f\x4e\x52\xfd\x06\x23\xd2\x54\xf3\xbd\x09\xa5\x54\x13\x63\xac\xbe\x96\x36\xc6\x38\x8c\xd3\xc8\xa8\xc7\x83\xb4\x32\xea\xf7\x58\xcd\x8c\x40\x8c\xd4\xce\xe1\x89\xff\xe2\x1a\x6a\xa5\x7c\x29\x2a\xee\xb3\x60\x65\x2d\x35\x05\xa1\x4a\x6e\x59\x61\xb6\xed\x5e\x32\x35\x5e\x89\x3b\xae\xa1\x64\xea\x96\x9b\xba\x60\x19\xc7\xc0\x28\x00\x6d\x2a\xb4\xe8\x79\x9c\xac\x96\xa0\x9b\x9a\xb6\xb3\x51\x7f\x2c\x50\xc1\xf5\xc1\x55\xea\xbd\x1b\xbe\xe3\xd2\xf9\x74\x78\xb2\x63\x0e\xef\x79\xc6\xc5\x5d\x48\xd9\x71\x58\xf0\x8a\x2f\x45\x26\x98\xda\xfa\x40\xcd\xd1\x93\x40\x7b\xc5\x48\x32\xfc\xa2\x9a\x29\x6e\xda\xa8\xdc\xca\xa4\x03\xbc\x11\x66\x1d\xbe\x4d\x57\xdc\xe0\xbc\x1e\x9f\x74\xd2\x36\x99\x2c\x4b\x5e\xe5\x36\x40\x3c\x85\x8f\x64\x85\xdc\x06\x19\xed\x39\xa3\x29\xac\xf8\x26\x32\x40\x70\x59\xc8\x8d\xa5\x22\x01\xa6\x52\x92\x84\x86\x46\xa3\xfb\x70\xb3\xe2\xc6\xf1\xc6\x53\xfd\xae\x59\x14\x22\x7b\xc7\xcc\xfa\xf8\xe4\x66\x42\x06\xb1\x92\x26\x05\x67\x73\xad\x1c\x27\x9b\x35\x85\x89\x46\x0d\x44\x59\xab\x4b\x5b\x9d\xac\x28\xe4\xc6\x19\x51\x23\x6d\xe4\xde\x89\x61\x88\x65\xac\x66\x0b\x51\x08\x43\x5b\x49\x14\x0d\x35\xa6\x51\x34\xeb\x0d\x99\x7d\xda\xee\xf4\x19\x93\xb6\xf9\x4e\x4b\xe6\x91\x39\x87\x57\xa1\xf1\xf7\xcf\x3e\x27\xb3\x3d\xf5\x74\xff\xfe\x43\x2a\x1b\x6f\x6c\xe0\x80\xfe\x85\x4f\xc8\x64\xac\xc8\x9a\x02\x91\x47\xec\x58\x29\x1b\xeb\x36\x69\x56\x70\x17\x9e\x1b\xc5\x2a\xbd\xe4\x4a\xd9\x1e\xe9\x24\x38\x21\x6c\x79\xf4\x56\x1a\x0e\xa7\x70\x65\xa2\x7d\xcf\x05\x37\x1b\xce\x2b\x38\x9b\x9e\x11\xf3\x9f\x4f\xcf\x52\x30\x17\xf7\xd8\xc5\x4a\x54\x34\xb2\xd0\x70\x4f\x1d\xca\x16\x71\xa1\xe1\x6c\xfa\x97\xef\xb0\x69\x15\x8b\x2d\x0c\x24\x16\x36\x1e\x01\xea\xf1\xbf\xe0\x7e\xda\x57\x15\x56\x14\x5b\xa8\xb9\xca\x78\x65\x70\x5d\x5b\xf1\x68\xef\xc8\xee\xb6\x1a\xae\x4a\x8d\x4c\x59\x30\x2d\x34\xd4\x52\x54\xa6\x93\x8b\xa9\x40\xcb\x42\xe4\x38\xd1\x18\xb4\xe7\xa0\x4b\xa6\x4c\x28\x85\xd0\xb0\x59\x63\xbc\x9d\xb1\x9c\x0c\xba\x5c\x2e\x51\x72\x6e\x3e\x5e\x8a\xfb\xef\xbe\xbd\xe9\x0a\x0e\x33\xc0\x0a\xc5\x59\xbe\xf5\xb6\x41\xfb\x54\x4a\x18\x3f\x24\x91\x60\xc1\x33\x86\x5f\x84\xd1\x29\x20\x0c\x9c\x9d\x3b\xc0\x14\x07\x74\x27\x15\x2f\xb6\x21\x6f\x26\xb4\x71\xfb\x66\x2b\x0c\xf2\xa2\xd6\x55\x1e\x8c\x52\xaa\x24\x35\x4a\xc0\xff\xf5\x28\xc8\x25\xd4\x8a\x67\x42\x87\xe5\x7e\x48\x64\xb3\xc6\x9c\x83\xa5\x34\x15\xc7\xbf\xfb\xa5\x2a\xd9\x43\x8e\x5d\x1b\xab\x43\x48\x1c\x0e\xc5\xb6\x3e\x07\xeb\xe6\x7c\xd2\x53\x38\xc5\x0b\x4b\xc3\x5a\xd4\x41\xec\xf0\xc5\xcd\x86\x15\x05\x37\x37\x3e\x0d\x85\xc6\x76\x02\x36\xcc\x35\x6b\x84\xcb\x0b\xcd\xfb\xf3\x40\x5e\xd1\xa6\xe2\x0a\x4a\xb1\x5a\x1b\xd8\xb0\x8a\x12\x9e\xba\xe6\x99\x58\x6e\x77\x53\xbd\xb7\xd2\xa0\x75\x3d\x1e\xa8\xcf\x93\x98\x9b\x93\xa1\x41\xba\x6b\x67\xad\x86\x3c\xd8\xac\x31\xf0\xc3\x9c\x14\xf2\xd9\x33\xfa\xf6\xfd\x9c\xd4\xf2\xbc\xd7\x14\xff\x8e\x92\x52\x9e\xa9\x33\xaf\x53\xa4\xe0\x9c\xb2\x86\xb5\x92\x77\x22\xe7\x79\xd0\x46\x04\x69\x95\xf0\xf8\x68\x10\xa4\xcf\x69\x65\x8d\x99\x1a\x69\x71\x3f\x3e\x39\xd9\xdb\xf6\xe8\xc4\x6e\xa8\xdc\xb1\x42\xe4\xd3\xa3\x03\x8d\x53\x1b\x84\xeb\x93\xb3\xc1\xd4\x1d\x14\xab\x56\x91\x69\x72\x86\x09\xc4\x94\xc3\xa7\xb3\xc9\xf3\x5f\x8f\xba\x79\xf3\xf8\x1b\x39\x85\x61\x05\x9a\x07\xfb\xd7\x6f\x84\x8c\x98\x23\x3b\xfa\xaf\x0e\x57\x33\x3c\x20\x17\xe4\xdd\x01\x5b\x06\x16\x3a\xbc\x89\x1d\x11\xd4\xaa\x7f\x36\x5c\x6d\xed\x7a\x79\xf3\xde\x3b\x1b\x37\xde\xa9\x58\x2a\x59\xa2\x6a\x44\xa1\x01\xf2\x85\xcc\xc7\x7d\xcd\x33\x63\xd7\x80\x9a\x6d\x5b\x4f\xc5\x59\x3c\x9b\xee\xc3\xf0\x8f\x54\xc3\x47\x22\x23\xfd\x18\x84\xd3\x4d\x4e\x29\xc5\xb6\x4e\x0b\x15\xcb\x6e\xad\x0d\x14\x55\x2e\xee\x44\xde\xb0\xa2\xc5\xa0\xab\x84\x6d\x8e\x38\x6b\xcc\x55\xb5\x94\xfa\x1c\x3e\x39\x06\xfd\xba\x27\x53\xec\x82\x81\x81\x4e\x5d\xad\x42\xff\x10\xa5\xc8\x2e\x9c\xcc\x80\x6e\x28\xc9\xc9\x8a\x82\x44\xbf\x5d\xb0\x82\x7b\x83\x1e\xc7\x82\xc3\x8a\xbc\x1c\xb7\x0f\xfc\x7c\x7a\x96\x80\xbd\x63\x18\x42\x18\x56\xbc\x22\xa9\x39\xeb\xbc\xc6\x09\xf7\x0a\x26\xaa\x80\xe7\x80\x7e\x47\x40\xc2\xc7\xff\xed\xfb\x4e\xbb\xd2\x98\xca\x36\xd3\x9a\xab\x4e\xfd\x4f\x02\xd3\x9a\x8a\x49\xaf\x41\xc9\xb5\x66\x2b\xfe\x00\x13\x82\x7e\xae\x35\x22\x1f\x2c\xff\x02\x49\x31\x03\x0f\x58\x10\x8f\xd7\x43\xcc\xc8\xfe\x39\xe9\xa8\xfe\x49\x77\xea\x5f\x6a\x2d\x56\xd6\x96\x78\x84\x07\x15\xdf\x92\x32\xef\x37\xea\xa4\xce\xdf\xdb\x20\x24\x86\x47\x79\xd8\xb8\x51\xd2\x21\x8a\xf7\x18\x69\x49\xb4\x47\x69\xab\xd7\x78\xa4\x9f\x56\xd1\x0e\x67\xc2\xc3\x6e\x49\xf0\xa0\x05\xd7\xc7\x27\x91\x1a\xec\xd9\x39\x19\xa0\x11\xf6\x85\xc8\xad\xda\x7f\xa5\x9c\xed\xfb\x0e\x7f\x0e\x45\xc7\x2d\x47\x1e\x12\x1b\x87\x5e\x8f\x8d\x8c\x03\x80\x91\x71\x71\x6c\x4e\xbb\x0a\xf0\x45\xaa\xad\xac\x4f\x64\xcb\x28\xc8\xf2\x85\x25\x96\x62\x0a\xb2\x51\xb4\x1a\xa2\x30\xa6\x26\x3a\x64\xae\xa8\xf0\xb7\x05\x41\x21\x15\xbf\xe3\x95\x69\xc8\x1d\x8f\x61\xb5\xfb\xc9\x7a\x23\x4c\xb6\x5e\x48\x0c\xb5\xfd\x7a\xdb\xee\xf6\xae\xad\x20\xf8\xca\xdc\x45\xe3\xc0\x52\x65\x46\x82\x5c\x60\x10\x7e\xab\x64\xa7\x0a\xb8\x5b\x04\xd0\xc6\x8e\x21\x76\xf6\x08\x61\xb8\x1e\xaf\xfb\x43\xc2\xd3\xd7\xa9\xc1\xa8\xf4\x3c\x1e\xe7\x73\x77\x1e\x66\x35\xbd\x9c\xb9\xd8\xfe\xf2\xfa\x7d\x3c\xec\x81\x04\xbb\x2b\x92\xb5\xa5\x2a\x51\xb9\xb7\x4b\x30\xbe\xbd\xbc\x9e\xf6\x26\xc7\x47\x87\x14\xfa\x2b\x26\xac\xaf\x1f\x2d\xbd\xb7\x7c\x3b\xb3\xee\x5d\xcd\x84\xd2\xc0\x0a\x59\xad\x6c\x0e\x40\xcb\xb2\xd5\x3b\x4a\xc4\xdf\xe3\xb4\xd2\xe6\x12\x8d\xcb\x16\xb2\xb1\x42\x44\xa0\x0f\xf9\x07\xd7\xd8\x28\xd9\x97\xef\xd5\x5f\x13\x9c\x29\xfc\x2c\x6e\x39\xfc\xc4\xb2\xdb\x95\x92\x4d\x95\x4f\xe0\x62\xcb\xf5\x04\xfe\xc6\x84\xea\x14\xc7\x8e\x2d\x90\xa6\x91\x9a\x2a\xe7\xaa\xd8\x86\x1d\xf1\x64\xd4\x89\x37\x3c\xc6\x3f\x26\x46\x6b\x5b\xa0\x4c\x4d\xbc\x73\xec\x99\xe1\xad\x15\x01\xdb\x8d\x93\xdb\x5a\x7e\x59\x6d\xed\x21\x81\x04\x2f\x57\x0d\x8c\x16\x22\x9e\x2f\xbd\x96\x1b\x5b\x62\xe0\xc7\xb2\xcc\xde\xd8\x50\x46\x68\xcb\x36\x74\xe9\x2c\x29\x41\x50\x62\xe0\x28\xe7\xa2\xd2\x86\x55\x19\x9f\xc0\x56\x36\x90\x91\x8a\x6b\x8f\x15\x0e\xc5\xa0\xa9\xc4\x3d\x18\x51\x72\x6d\x58\x59\xdb\xb4\x8a\x0b\x8b\x12\xfc\x98\x86\xa3\xd7\xcc\xf0\x23\x22\x9c\x17\xf1\xf6\x3e\xd4\x05\x33\x4b\x89\xf1\xb5\x91\x88\xb4\x6e\x4a\x57\xf3\x66\x79\x47\x75\x05\xe4\x66\xf9\xac\x0d\x73\xbb\x92\xbb\x23\xaf\x76\xec\x81\xb2\x27\x5c\x6e\x99\xc2\x40\x1d\xbd\x61\x56\x68\x19\xac\x83\x4d\x8d\x17\x5b\xa7\x19\xcc\x18\x25\x16\x8d\x49\x6a\x8f\x52\xe1\xb0\xda\x12\x96\x14\x1f\x89\x13\x9a\x45\xd1\x42\xd0\x54\x28\xe2\x48\x74\xcf\xbc\x18\xbc\xbd\xbc\xfe\x46\x83\x22\x9c\x76\x4b\x83\x7d\x7f\xee\x70\x1f\x2c\xe3\x4a\x6a\xb4\x7b\xe2\x33\x19\xe4\xcb\xa4\x0b\xf8\xe1\x35\xd9\xbe\x7a\x21\xad\x49\x08\xaf\x63\x49\x98\xc7\x38\x0c\xc4\x53\x76\x5e\xe6\x0e\xa7\x91\x51\x10\x99\x3b\x32\x93\xde\xf3\xf1\x16\xeb\xb0\x7d\x73\x1d\x5d\x07\xda\x3f\x1e\x61\xe2\x02\xb8\x58\xd3\x06\x4c\x1c\x67\xd9\xda\xd9\xa6\xbd\xc6\x4d\xef\xd9\xb9\xb0\xa8\x9d\xc3\x27\x6a\xb9\x63\x53\xbd\xd3\x68\x70\x0e\x1d\x8d\x73\xd7\x78\x60\xd1\xc7\xbf\x34\x00\xcb\x73\xdd\x2e\x20\xd6\x0e\x3b\xa1\x75\x78\x23\x12\x49\x97\xd4\x4b\xb5\x6e\x1b\xb5\xb5\x69\x02\xab\xd3\x6d\xd9\xd8\x82\x03\xcb\x73\x9e\x1f\x74\x4d\x71\x05\x65\x79\x4e\xa0\x90\xe0\x73\x0b\x75\x0f\xa5\x53\x14\x91\x2a\x3f\x36\x7b\x2a\xd8\x52\x8f\x34\xa2\xe9\x6b\xf9\xa4\x0e\x85\x71\x0e\xa9\x6d\xfc\x20\x6f\xd4\x76\x79\xac\x2b\x6a\x7b\x8f\xf4\x43\x7b\x92\xed\xff\xbe\x80\x13\xea\xe6\x2d\x54\x91\x1a\xe9\x4a\xe0\x50\x19\xef\xb8\x32\x54\x6d\x4b\xef\x98\xda\xd2\x4c\x58\x99\xa0\x7a\xbb\xb7\x97\xd7\x10\x39\x28\x7e\xa7\x51\xbb\xcd\x1e\x49\xe6\x9b\xec\x35\x17\x54\xb2\xed\x8f\xfc\xf8\x59\x22\xab\xe0\x56\xf8\x6b\xeb\x04\x04\x78\xb4\x74\x95\xdc\xac\x65\x38\xf8\xa3\x9b\xe5\x52\x58\x81\x58\x89\x3b\xf2\x51\x4b\x5a\x5f\x28\x72\x93\x4b\x97\x8f\x72\x28\xee\x12\x34\xa4\xc7\x2a\x51\x4a\xd9\x82\x7b\xa2\xad\x49\xbb\x6e\xd5\x3b\xea\xcd\xef\xe9\x50\x5d\xfe\x96\x95\x5c\x9f\x27\xfb\x84\xae\x26\xce\x62\xe3\xd6\x6f\x9f\x67\xbd\xc1\xb1\x6e\x02\x30\xff\x77\xcb\xb7\x8e\x5b\x4c\xd9\xd5\x6e\xc3\x2a\x37\xfe\x82\x67\x68\x15\x6f\x2c\x1e\x37\x83\x3e\x35\x39\xd0\x0c\x3b\x74\xed\xc8\x2e\x71\x47\x3c\xae\xa5\x93\x78\xcb\x8a\xcf\x16\xf1\x68\x89\xfb\x7d\xd2\xa5\xf3\x93\x6d\xf3\xeb\x8f\x27\xe7\x7d\x81\x9c\xcd\xe0\x55\x98\x7d\x9b\xe4\xd5\x2e\xcb\xeb\x49\x0a\x4b\x8a\x73\xea\x6c\x02\x51\xa8\xd6\x89\x76\xa7\x15\xf3\x69\xc7\x6b\xdc\x76\xf2\xc5\x6b\x56\xe5\x05\xb7\x2b\x06\x31\x19\x03\x1d\x4a\x40\x9b\xb6\xf1\x3f\x1a\x1d\x8d\x4d\x72\xe2\xe1\xd3\x51\x8e\xa2\x98\xc6\x8a\x9b\x10\xeb\xab\x06\x3f\xf7\x32\x46\xb7\x88\x76\xd2\xf6\xe9\x80\x5a\x22\x53\xa7\x8a\x97\xf2\x8e\x1f\xdf\xf2\xed\x39\xdc\xee\xca\x7f\x46\xc9\x8b\x81\x15\x0a\xe6\xf0\xe9\xd7\x27\xbd\xf1\x09\x3c\xc9\x4d\x3a\x74\x80\x00\x73\x3b\x43\xce\x8d\xb9\x0d\x1e\x0c\xf6\xfc\x74\xfb\xeb\xd3\x8e\x03\x53\x89\xa2\x75\x5e\x2a\x51\xa4\xd8\x76\xd6\x00\x5a\x2b\x86\x08\xf0\x42\x69\x05\xcb\xf6\x3a\xe9\x9a\x9b\xb0\x4f\x11\xb2\xae\x3d\xab\x21\xb4\x6e\x78\x9b\x8c\x75\x47\x4f\x03\x04\x0a\x8c\xec\xe6\x56\x49\x87\x79\xb5\x28\x45\xc1\x54\x74\xf6\x76\xd9\x56\x02\xa3\x71\xf8\xff\x68\x18\x9e\x9f\x9d\xa1\xd3\x6d\x37\x1e\x03\x30\x51\xa1\xc3\x6c\xb7\x50\xad\x2f\xb3\x6c\xec\x09\x58\xbb\xc7\x61\xf7\x6f\xe2\x1d\xe8\xd6\x01\x7a\x69\xcb\x39\xac\xb8\x2d\xd0\xb5\x51\x14\xb8\x04\xcc\x79\x2e\x88\xac\x09\x6c\xd6\x22\xa3\xd3\x13\x9b\x35\x9d\x71\xf1\xaf\x76\xe1\x61\x59\x89\x92\xaa\xad\x75\x73\x75\x85\x60\xeb\x0a\xc9\xbe\x1c\x8a\xf5\x2e\xec\x10\x87\xce\xdb\xc6\x98\xf8\x36\x49\x25\xb5\xb1\x87\xc0\x5d\x5e\xe2\x03\x37\x13\x78\x57\xb0\xed\x04\x3e\x70\x25\xb8\x4e\xf7\x8d\x5c\xad\xa3\x3d\xcb\xb5\x61\xdb\xa8\xd2\xc5\x82\xc8\x0a\xa6\x35\x46\x35\x68\x3f\x3c\x83\x46\xc5\x92\x3f\xf6\xe9\x70\xfd\xa3\xd2\xca\x1d\xc7\x49\x89\x22\x56\xc1\xd1\x8b\x6f\xbd\x2c\x1c\xff\xdb\x8b\x6f\x67\xcf\xcf\xce\x4e\x8e\xa8\x44\xc8\xc6\x9e\x0e\x90\xd0\xf0\xe2\xdb\x3d\x11\x2e\xb5\x3a\x87\x8f\x57\x95\xe9\xee\xc3\x21\x5a\x25\xbb\x1f\x44\x0d\x03\x31\xb7\xdd\xef\x84\x7a\xda\xe9\xdb\x3d\xe7\xea\x13\x2e\x61\x4b\x08\x25\xb3\x10\xa5\x30\x3c\x3f\x75\x43\xf0\x7c\x18\xda\x08\x92\x11\x51\xa1\xf1\xdd\x60\x57\x2a\x9d\x22\x75\x6b\x2a\x37\xa8\xa7\xcb\xf6\x6d\xd3\x55\x18\xce\x1a\x89\xb6\x63\xdc\xa9\xd9\x92\xdd\x7b\xfe\x1d\x8c\xbf\x7e\x9c\x74\x38\x3e\x49\xba\x0f\x38\x50\x88\xdb\xa0\x09\x87\x3d\x29\x79\xfc\x73\xb3\xf5\xfd\x1c\x41\x3c\xed\x67\xe5\xe1\x50\x66\x1e\xfa\xd9\x79\xa7\x87\x43\x1b\x7c\x1d\x21\xf1\x39\x31\xb4\x2a\x3b\xf2\xf4\x10\xa5\xde\x6d\xaf\x83\x99\x7a\x48\xb3\xf5\x19\xab\x86\x32\xf5\x66\x58\x6e\x8f\x77\x6c\x0c\xc6\x40\x91\x55\x0f\xc4\xe2\xe9\x00\xd8\x83\x5b\x84\x7b\x23\x67\x87\xef\xbc\x9b\xd0\x08\x0d\x90\x38\x9a\xd6\x91\xa1\x70\xb2\x21\xe8\x6d\xe9\xa8\xf2\x70\xd7\xf8\x0f\x14\x88\xf7\xec\x62\xb2\x85\x9e\x2c\x3a\xcc\x2f\x3b\x3b\x55\x0d\x97\x96\x9f\x85\x36\xe7\xf0\xc9\x61\xb6\xab\x9c\xbc\xdf\x70\xb8\xa6\xdc\xb5\x83\x79\xe8\x32\x36\x2c\x0c\xac\xf9\x6a\x85\x7c\x1e\x81\x91\x55\x7c\xae\xf9\xc3\x4a\xf8\x5c\xa7\x47\xd7\xef\xb9\xfe\x63\x8b\xf7\x5a\x71\xeb\xaa\xd4\x97\xaa\xdc\x0b\x99\x4d\x7b\xa0\xca\xad\xe8\xa7\xb6\x96\x2f\x07\xcd\x95\x60\x45\x6c\xc5\x58\xd8\xb8\x46\x69\x0d\xc0\xde\xd9\x8e\x1a\xd6\xec\x8e\x47\xb7\xa7\x10\x20\x47\x05\xf9\x5e\x14\x0e\x75\xe0\x86\xc5\x26\x80\xfb\x80\x01\x40\xc9\xb6\xa1\xde\x8c\x36\xdb\x15\x5f\x35\xe8\x0e\x5e\xbd\xb6\x59\xd4\xb8\x51\x74\x65\x4b\x1b\xb5\x5a\x8f\xc4\x9f\x15\xb6\xc7\x41\xa7\xf6\xd0\x62\x82\x80\xd0\xc9\xbe\xfd\x82\x43\x53\x89\x7f\x36\x54\xe9\xe5\xce\x95\x93\x0b\x44\xbe\x0f\xa1\x12\xea\x24\x98\xf1\x4c\x3b\x64\x3c\x3e\xd8\x21\x77\x27\xb1\x76\x39\x1f\xb1\x26\xa7\x6d\x86\xd3\x90\x3b\xec\xe5\x01\x05\x76\xe8\x7d\x2d\xf5\x75\xc3\x8f\x53\x5e\xdb\xf8\x41\xaa\x6b\xbb\x3c\x56\x71\x6d\xef\x91\x6a\xdb\x9b\xe8\x2f\xad\xb4\x6d\x41\xbc\xcb\x05\xc7\x31\x86\x53\x52\x9b\x8d\x8c\x52\xc4\x74\x30\x51\xfa\x42\x0c\xe6\xbb\x56\x9c\xe7\xda\x86\xde\x77\xdc\xa7\x72\x74\x26\x15\x05\x60\x71\xed\xcd\xa2\x31\x20\xec\x45\x2b\x01\x20\x75\x5a\xc8\x36\xd9\xbb\x4b\xf8\xdd\x66\x42\xff\xdc\xa8\x1b\xca\x95\xc9\xda\x56\xb4\x9b\x71\x60\xfb\x82\xfa\xf9\x12\xaf\x81\x00\xa2\x64\xf7\xa2\x6c\xca\x76\x2f\x8a\x3a\x1c\xf0\x5a\x77\x01\x1b\xb8\xf5\x27\x46\xd5\x1e\x04\x3d\x70\x08\x3e\xc4\x59\x3f\xf3\x15\xaf\x72\xa6\xb6\x13\xb8\xa8\x45\x36\x41\xde\xf0\x09\x7c\xac\x32\x59\x96\xe8\x7f\xbf\xa2\xff\xd3\x80\x6b\xf0\xac\xe9\x88\x62\xba\x41\x17\x3c\xe5\xdd\x24\x21\x7e\xb0\x5a\x6e\xc8\x13\xb7\x13\x37\xb7\xbe\xf8\xb3\x67\x09\x8f\xe6\xbb\x3c\xf4\x9a\x55\x22\x3b\xee\x16\xb9\xd8\x4d\x9d\x01\x2f\xda\x8e\x81\xb6\x3e\xb9\xdb\x4a\x59\x99\x83\x9b\x4a\x14\x37\xd3\x5d\xee\x74\x5b\xe1\xf6\xd2\x8b\x5f\x10\x76\xed\x25\x28\x21\x97\x12\x4d\x08\xf9\xe8\x64\xef\x69\x70\x7b\x12\xc9\xd2\xdf\x91\x2b\xd8\xed\x94\xc2\x1f\x28\x68\xeb\x14\x85\x58\x6a\xbe\x66\x0a\xde\xa1\x30\xb2\x26\x84\x1a\x3f\xac\x20\xc4\xee\xb3\x3d\xb6\x1a\x84\x7a\x8f\x2d\x05\xe9\x9a\x26\xff\xf7\x05\xcc\xf5\xdb\xcb\x6b\xb2\xd8\x1b\xc5\x6a\x4d\x69\xd2\x57\x74\x71\x17\x5d\xf5\x66\xb7\xca\x6e\x44\x6e\xcb\x6d\x6f\x9a\x06\x3f\xda\x1c\xaa\xdd\x27\xf6\x7b\x70\x01\x9e\x4f\x8e\x33\x3a\x61\x51\x70\xc3\xa1\x16\x19\xd5\xca\x87\x43\x7c\xee\x5e\x37\x72\x53\x86\x2f\x75\x0b\xe0\x46\xdd\xee\xe6\x69\xd8\xed\xb8\x88\x3c\x38\x2d\xbb\x9a\x20\x6d\x07\x1b\xb9\xcc\xe5\x79\x7a\x25\xde\xd4\x5f\xc2\xb4\xb3\x1f\x6f\x0f\xb9\x74\xfb\xc6\x87\x6e\x76\xf6\x6f\xf3\x94\xaf\x99\x61\xe7\x48\xf1\xab\xe4\xd1\xa8\xae\x1e\xf9\xb4\xf7\x21\xdc\x43\x9d\x4d\x5c\x04\xb5\xb3\xb5\xcf\x22\xbb\x1d\xaa\x83\x17\x92\x89\x1c\x42\x6a\x25\x79\x81\xf3\xb1\xe3\x95\x9b\x05\xd8\x35\x0d\x69\xeb\x88\xf7\xbd\x1e\x31\xf3\xd3\x5e\x29\xc7\x61\x88\xe5\x3b\x3b\x04\xf4\x06\x19\x9d\x76\x6b\xab\x98\x62\xf6\x76\x6e\x5e\xeb\xf0\xd4\x3f\x1f\x8e\x90\x73\x3a\x73\xda\x7f\x41\x0c\x9d\x13\x5f\x07\x2c\xbe\xc3\x39\xec\xec\xf7\x9b\xc4\x7c\x9c\xc7\x5c\xed\x37\xed\x30\x6f\xde\xe1\xe6\xde\x0e\x01\x91\xde\xb3\x7e\xb7\x96\x79\xf3\x81\x22\x62\x18\xb7\x65\xbe\x73\x11\x73\x47\x26\x49\x70\x77\xad\x59\x68\x33\xae\x5d\x5e\x44\xe4\x7f\xca\x8a\xe6\xad\xdb\xb8\x95\xcc\xb5\x3e\x6e\x8d\xd9\xe4\x01\x8b\x5a\xdf\x92\x52\xd8\xb7\x34\xbf\x8c\x59\xd4\x5c\xef\x1f\xe2\x3c\x9c\x58\x86\xee\x83\x59\x51\xbf\x32\xd9\x36\x4f\x81\xe9\xa7\x1e\x8b\x68\x9e\xba\x0b\x99\xa7\xb2\x6f\x4a\x44\xde\x37\x23\xe7\x29\xde\xf8\x68\xd0\xa0\x74\xad\x43\x74\x25\x5f\x0c\xe0\x64\xbc\x7d\xe9\x1c\xc6\xdc\x03\xa5\x67\x6f\x48\x72\xed\x84\xa6\x76\x67\x24\x94\x60\x84\x86\x01\x1d\xa6\x2b\xb6\x4c\x1e\x46\x5b\x3b\xbb\xa7\xa3\x53\xb7\xb6\x97\xdb\x95\x4b\xba\xb4\x46\xec\x40\x00\x69\xcf\x0a\xb4\xd1\xa3\xbb\xa9\x87\xae\x78\x73\xd7\xed\x1a\x25\xf8\x1d\x1f\x2e\x12\xda\x77\xb6\xda\xba\xd9\x4d\x0d\xac\x73\xe4\xd9\x6e\x3c\xd4\x4a\xa2\x35\x08\xf0\x70\x48\xb6\xb2\x83\xda\x42\xce\xf6\xa0\xdf\x98\x83\x9e\xbd\x99\xec\x04\x9b\xf6\x96\xb3\x2a\x8c\xe3\xaf\x4f\x12\xda\xdf\x7c\xa0\xfc\xb9\xcb\x90\x05\xb2\x37\xdd\xed\xde\x2e\x72\xb0\xde\xb9\xcb\xc0\xc2\x97\xce\xfd\x6a\x96\x1a\x2a\xe4\xb5\xdb\x85\x65\xa3\x29\xc5\x5b\x88\xea\xd6\x0e\xe6\xa6\x63\x80\xf0\xb0\xc1\xe4\xd3\x6d\x10\x36\x16\xb3\xa2\xa1\xab\x20\xc2\xd1\x5a\x22\xc4\x9f\x99\x75\x1b\x9c\x4e\x63\xac\xcb\xd9\xbe\xdc\x49\x53\x1d\x2a\x6c\xe3\x6a\xdb\x7e\x4c\x3c\x78\xce\x35\x9a\x64\x7f\xcf\xa2\xa5\x2c\xf7\x36\xd9\x82\x4f\xa0\x55\xd2\x9d\x20\xe6\x95\x11\xc6\x5f\x44\xcd\xef\x85\x36\x13\x10\x06\x2a\x09\xe8\x29\x73\xd5\xc6\x6f\x0b\x5b\x4c\xaa\x84\x4f\xd9\x45\x69\xc9\x40\xe3\x01\x12\x5b\x69\x39\x07\xaa\xb4\x4b\x49\x44\xaa\x3a\x95\xdb\x6e\xba\x5c\xb2\x9e\x2d\xa5\x22\x5c\xed\x4e\x5d\xdd\xce\xf2\x81\x81\x7f\x26\x30\x76\x7f\xbe\x3f\xf0\x65\x28\xd7\xb1\x07\x1c\x0b\xb9\xd1\xf6\xd0\xaf\xcb\x3e\xb0\x0a\x78\x59\x9b\x6d\x57\xab\x3c\xc3\x91\x7e\x2f\xc3\x24\xc0\x09\x78\x2f\x4a\x7b\x0e\x22\xd2\xe6\xd1\x05\x0e\x11\xb3\x68\xd9\x54\xc7\x27\xe7\xf0\x1f\x9f\xbb\xf7\x8c\x4f\xdb\x56\x87\x6f\xc8\xdd\xa5\x31\xa9\x8d\x1b\x96\xc1\xa1\x36\xdd\x49\x1c\x6a\xd3\xe5\x77\xc7\xa8\x0f\x91\xeb\x27\x61\x2c\xd9\xc1\xdc\x8e\x3a\x56\xd8\x45\x6b\x2a\xf4\x07\x7b\xe3\xd3\xb1\x5c\x5a\x1c\xbf\x7f\xb6\x77\x40\x74\x02\x46\x1d\x20\xea\x59\xc5\x28\xcd\xe2\xec\x92\x37\x42\x28\xf0\xdf\xef\x3f\x43\xd4\x47\x3c\xdc\xbe\x72\xe0\x2c\xd1\x0f\x56\x32\x33\xa9\x14\x5d\x3d\x7e\x65\x82\x11\x64\xe0\xaf\xbb\x72\x46\x64\x0f\xe1\xad\x72\x77\xcf\x35\x0e\xec\x2a\x46\xb2\x36\x8f\x3e\xf7\x1b\xb6\xe2\x36\x6f\x3f\xee\x6a\xd6\x22\x33\xef\x3e\xd8\xd5\xa5\x65\xd8\xbc\xfb\x60\xc0\x59\x1f\x92\xc7\xf9\x5e\x29\x1d\xeb\x72\xf7\x97\x48\xca\x1e\x6d\xfc\xf9\x41\x3a\x09\xe2\xab\x84\x2b\x92\x88\x3c\x94\xf5\xfc\x6b\xf2\x4a\x7d\x14\x47\x3b\xe6\x1d\x3f\xee\x21\xd9\xa6\x7e\xf4\xf9\xc8\xc4\x53\x0f\xd0\xc8\x1c\xd4\x3e\xe7\xc5\xff\x7d\xf9\xdd\x83\x1d\xce\x9f\x3b\x21\x41\xa7\xe6\xfd\x72\xf1\x4d\x74\xf5\x73\x7b\x77\xcd\x28\x27\xd0\x26\xac\x2a\xf0\xb7\xd7\x90\x5b\x12\xa0\xd1\x7d\xf5\x22\xd3\x41\xf9\xbb\x8b\x9a\xf3\xcf\x16\x1c\x7d\x00\x04\xf8\x40\x4f\xb0\x77\xa9\xf6\x6c\x06\x6f\x59\xd9\x5b\xdc\x09\xfd\xcd\x9a\x57\x3e\x5e\xb1\xd5\x9d\x6e\xf8\xee\x85\x3d\xdd\xa1\xf7\x1e\x8f\x79\x1d\x25\x7c\x87\x46\x1d\x62\x92\xf7\xfa\xc6\x0c\x7c\xe0\xba\xfe\x70\x09\x8c\xbd\x2e\x84\xbc\x25\x77\x8f\x12\x0d\x45\x97\x6b\xc4\x72\xe0\x8f\x1e\x8d\x1c\x7e\x5c\xfa\x2d\xc1\xe8\xc3\x3f\x1b\xa6\xb8\x2b\x95\xb0\x57\x74\x76\xae\x3d\x1d\x39\xb6\x26\x40\x57\x08\xa1\x3b\x36\x5d\xd1\x96\x8c\xfa\x13\xab\x2a\xae\x92\x51\xc3\xad\x28\xed\x60\x93\x6e\x20\x40\x9b\x5c\x8c\x0a\xf4\xa0\xe2\x4c\xc1\xf3\x6f\xcf\xce\xee\xff\xfd\x2f\x67\xbb\xd1\x5a\xd0\x48\x23\xd1\xfa\x20\x33\xe1\x26\x47\x5b\x36\xd0\x89\x88\x14\xab\x6f\x34\x68\xdb\x6e\x2d\x4b\x5e\xb3\x15\x4f\x8a\xc2\xe0\x9d\x74\x97\x99\x53\xf5\x68\x69\xef\x93\x3d\xa2\xf3\x49\x2b\xc5\xca\xa3\x09\x1c\x99\x8d\x30\x86\x2b\xfc\x98\x0b\x9d\x49\x95\x1f\x1d\x38\xf0\x65\x47\xd4\x51\x15\xf1\xce\xe9\xfd\x53\x7f\x1c\x61\x9c\x84\xa5\x7d\x0e\x49\x46\xda\xfa\xd0\x84\x75\x60\x3f\x84\x2f\xbe\xd3\x9f\xfa\x3b\x0e\x0f\x48\x1f\x46\x8c\x81\x79\xcc\xa6\x7e\xd3\x88\x2b\x74\xf1\x6a\xf8\x36\x00\xd5\xb2\x04\x21\xda\x4f\x8f\x73\x4a\xe2\x5f\x94\x18\xf6\x4b\x9c\x5b\x12\xa0\x7d\x45\xff\xe4\x51\xbe\xc9\x23\x7e\x85\x62\x30\xd1\xfd\x45\x3c\x94\x07\xfd\x3e\xc5\x81\x75\xd5\xff\x3d\xde\x4f\x81\x38\xb5\x64\x97\xa6\xe8\x5e\xec\xc5\x16\x5e\xd9\x8b\x81\x4e\xdd\xf5\xe7\xb5\x2f\x3a\x32\xd2\xdd\x3e\x66\xcf\x1d\x44\xae\x8a\xbd\x58\xe8\xd4\xde\x67\x83\xc1\xc4\x69\xc1\xef\x78\xd1\x9e\x4c\x48\x2e\xd4\xbc\xf8\xe5\xcd\x69\x26\xcb\x9a\x19\x32\xa5\x76\x45\x8c\xea\xc2\x3f\xf0\x3b\xae\x58\x01\x17\xef\x5f\x85\xa4\x8b\x76\x3f\xbf\x73\xf1\xfe\xd5\x8b\xb3\x09\xfe\xf7\x7f\x5e\x3c\x77\x17\x6a\x7b\x47\x2b\x1c\x27\xd5\xdb\x72\x21\x83\xa8\xfa\x23\x32\x2d\xfa\x4c\x6b\x6e\x8f\xd8\x6d\x78\x51\xe0\xff\x2d\x09\xcf\x86\x09\x88\x0f\x85\xc0\x0d\x35\xf9\xf8\xfe\xea\xb8\x11\x95\x79\xf1\x97\xef\x4e\xdc\xde\xa2\x07\x83\xaf\x4e\x6e\xdc\xd1\x1b\x3d\x8d\x58\xcd\x2b\xb6\x88\x7f\xe1\xc3\xf1\x7a\x88\xc9\xe1\x7c\x87\xdc\x54\xd1\xe5\x4d\x6b\xca\xe3\xf0\xad\xbb\x50\xaa\x10\xb7\xad\x2a\x75\xce\x83\xf8\x9b\xc9\x6d\x95\x19\x79\x5d\x0b\x25\xf2\x95\x5d\x70\x2f\x7e\x79\x73\xd0\xc9\xbb\xf8\xe5\xcd\x4f\xb6\x87\x37\xbd\x87\xca\xe1\x89\xb7\x71\x8b\x07\x3b\x72\xae\x62\x85\xe6\xf0\xe1\x50\x6d\xbf\xdd\x70\xed\x35\xef\x2d\x50\x38\x75\x3e\x00\xab\x7c\x5d\x8e\x3d\xc5\x64\xe5\xc1\x8a\x81\x54\x69\x76\x27\x92\x10\x84\x97\xf3\x9a\x57\x24\xdd\xb2\x8a\x2e\x8c\x6f\xcf\xe5\x68\x6f\xfe\x72\x8c\xc9\xd3\xfc\x62\x2f\x23\xda\x9a\xce\x8b\x5f\xde\xf4\x7f\x25\xce\x56\xf8\x91\x14\xe0\xf4\xa6\x17\x73\x40\xad\x78\xcd\x14\x87\xad\x6c\x6c\x1d\xee\x37\xda\x29\x98\xe1\x79\xf7\x94\x77\xb7\x82\x26\x39\xb6\x60\x2f\x09\xdb\xca\x86\xcc\x43\xb6\x96\x14\xcb\x48\x30\xec\x96\x03\xcb\xef\x98\xbd\xa2\x4c\x2e\x41\x56\xf4\xe3\x35\x09\xa8\xf6\x2c\x09\xd3\xe1\x47\x3b\x30\xd4\xa1\xb2\x60\xa9\x4d\x90\xfc\xb7\x97\xd7\x7a\x12\xc6\xa1\x33\xd0\x76\xb0\x0e\xcb\x23\xbf\x95\x88\xa3\xd9\xfb\x46\xc7\xa7\x9f\xec\xaf\x36\xd0\x1d\x41\xfe\x52\x14\xd4\x3b\xaa\x4d\x62\x69\x31\xb0\xfb\x71\x8d\x4b\xfb\x4b\x2b\x24\xeb\x74\x8f\x98\x33\x51\xb4\x20\xb6\x3f\x24\x02\x2f\x0b\x5a\xea\xd1\x1e\x16\x5b\xc2\x36\xa5\x96\x6d\x5d\xad\x23\x7a\xaf\x84\x9e\x3d\x49\xdd\x1a\xc0\x16\x29\x7f\x90\xfc\x3f\x3f\xfc\xfd\xad\xab\x38\x4a\x80\x51\x7b\xf4\x30\xe2\x1f\xfb\x72\x67\xe0\x2c\x54\xc7\xf0\x08\xba\xbb\xc2\x40\xb8\xf3\xea\x09\x3c\xeb\x28\x46\x22\x38\x4a\x8f\x1a\x25\xfa\x57\xab\x0f\x1c\xed\x4e\xf5\x6d\x12\xf7\x7b\xb8\x2b\xe6\x94\x7e\x1e\x5b\xf0\xa4\x41\xa3\x04\xfd\x42\x8f\x18\xf6\x7b\x86\x2a\x90\x7b\x16\xec\x61\xb5\xc8\xbd\xee\x8f\xae\x4a\xee\x41\x1a\x5b\x9f\x3c\x64\x83\xa1\xf3\xf7\x07\xd2\x16\xbf\x3f\xf9\x9f\x00\x00\x00\xff\xff\x48\x6f\xc2\x18\xf3\x72\x00\x00" +var _metadataviewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x7d\x7f\x73\xdb\xb6\xb2\xe8\xff\xf9\x14\x1b\xdf\x99\xd4\x7e\x4f\x96\x9c\xdc\x9e\xbe\xf7\x3c\x55\x7b\xd3\xc4\x3e\xc7\x77\x9a\x9c\x4c\xe2\xf4\xbe\x99\x4c\xa7\x86\x48\x48\xc2\x31\x49\xf0\x00\xa0\x65\x9d\x4c\xbf\xfb\x9d\x5d\xfc\x20\x40\x52\x12\xed\xa6\x37\xfe\x23\x91\x44\x60\xb1\xbb\xd8\x5d\xec\x2e\x16\xa0\x28\x6b\xa9\x0c\x1c\x5d\x36\xd5\x4a\x2c\x0a\x7e\x2d\x6f\x79\x75\xf4\xc4\xff\xfc\x56\x56\x3b\x9e\xfc\x22\xf8\xe6\x3d\xd7\xb2\xb8\xe3\xea\xe8\xc9\x93\xd9\x6c\x06\xd7\x6b\xa1\x21\x93\x95\x51\x2c\x33\x20\xca\xba\xe0\x25\xaf\x8c\x06\xb3\xe6\x50\x72\xc3\x72\x66\x18\x68\xc3\xaa\x9c\xa9\x1c\x6a\x25\x6b\xa9\x79\x4e\x7d\x45\x05\x97\x3f\x5f\xbd\x3b\x3d\xfb\xee\xdf\xbf\x9b\xe2\x2f\xf4\xeb\x7b\xbe\x3c\x87\xb5\x31\xb5\x3e\x9f\xcd\x56\xc2\xac\x9b\xc5\x34\x93\xe5\x4c\x56\xcb\x42\x6e\x66\xcb\x42\xd4\x7a\xb6\x28\xe4\x62\x56\x32\x51\xcd\x58\x5d\x17\x22\x63\x46\xc8\x6a\xf6\xe2\xec\xc5\xf3\xb3\xff\xf7\xfc\xbb\xd3\x6a\x69\x4e\xfd\xe0\xd3\x32\x0f\xb0\x3f\x18\xd5\x64\x46\x03\xab\x72\x50\x5c\xcb\x46\x65\x5c\x43\xc6\xaa\x16\x73\x90\x15\x07\xa9\xa0\x94\x8a\x53\x9f\x40\x84\xd9\xd6\x5c\x4f\x20\x63\x45\xc1\x73\xb8\x13\x7c\xa3\xa7\x70\xc1\xb2\x35\x7d\xa6\xc7\xa0\x78\xad\xb8\x46\x06\x50\x5f\x06\xb9\x58\x2e\xb9\x42\xb8\xb7\xa2\xca\x41\x2e\x03\xbc\x09\xe8\x26\x5b\x03\xd3\xc0\x20\x53\x9c\x19\xa9\x60\x21\xe4\x4a\xb1\x7a\xbd\xa5\xde\x52\x01\x83\xff\x7c\x77\xf1\x57\x10\x25\x5b\x71\x58\x8a\x82\x5b\x3e\xb1\x2c\xe3\x5a\x1f\xb3\xa2\x38\x69\x99\xff\xc6\x01\xc6\x59\xd2\xf0\xf9\xc9\x13\x00\x00\x84\xf3\x5a\xe8\xba\x60\x5b\x10\x38\xd4\x82\x69\x91\x39\x8c\xd7\xcc\x80\xa8\xb2\xa2\xc9\xb9\x9d\xb0\x8a\x95\x7c\x02\x39\xd7\x99\x12\x35\xb2\x14\x39\x15\xe0\x98\x75\x53\x2e\x2a\x26\x0a\x58\x22\x6a\x15\xc8\xc5\x3f\x78\x66\xa6\xf0\x46\x6a\xe3\xbe\x68\xd0\x6b\xd9\x14\x79\xc4\x50\x83\x22\x82\x03\x4e\x3d\x24\xfa\x3f\xa6\x41\xd3\xbc\x04\x44\x1d\xee\x7e\xdc\x6b\x87\x19\x72\x0f\xb1\x74\xc3\xc6\x6d\x3a\xed\x85\x86\xa5\xe0\x45\x0e\x1b\x51\x14\xb0\xe0\x90\x5b\xc8\x3c\x47\xa1\x2b\x84\x76\x32\x60\xd6\x5c\xf1\xa5\x54\xdc\x61\x9d\x80\x59\xd0\xaf\xca\x20\xa5\x99\xac\x32\xa1\xf9\xf0\x98\x31\x25\x05\x37\x84\xeb\x39\xca\x9a\xa8\x56\x29\x25\x2f\x61\xa3\x84\x31\xbc\x4a\x78\xfc\x85\xc8\x62\x90\x73\xc3\x84\x17\xce\x14\xec\x24\x01\xa5\x25\x09\xfd\x82\x93\x98\xc3\x1d\x57\x0b\xa9\x39\x1c\xf3\xe9\x6a\x0a\x0c\x6a\xa6\x18\xc9\x21\x88\x4a\x1b\xce\x48\x6e\x19\x68\x51\xad\x0a\x0e\x85\xa8\xf8\xc9\x38\x4e\x44\x54\xee\x62\x88\x2e\x59\x51\x44\xa2\x15\x34\x88\x3d\x92\x37\x4e\xfe\x16\x1c\x18\x6c\xf8\xe2\x74\xa9\x04\xaf\xf2\x62\x4b\xea\x03\xc7\x62\xca\x49\xa7\x26\xf0\xee\xed\x5f\x4f\x12\x20\xa4\x0f\x8e\x2f\x7d\x81\x99\x20\xe1\xb7\x50\x2b\x4e\xaa\x3f\x01\x6e\xb2\x71\x5c\x08\xc4\x9d\xc3\xe7\x4b\x51\xf0\xdf\x5b\x1e\xd0\x44\x89\x4a\x98\xe3\xf0\x13\xfe\xc5\x12\x34\x49\x9e\x0c\x70\x34\x6d\xd0\x1f\xcc\x3f\x39\x81\xcf\x49\x4b\xcd\x8b\xe5\x94\xf4\x6a\x4e\x03\xf6\x1f\xc6\x42\x3a\x8f\x87\xee\x37\x6d\x27\x70\xde\xa2\x10\x9a\x59\x24\x7e\x6f\x4d\xd2\xdf\x78\x51\x73\x05\x46\xc2\x8a\xb7\x7a\x4f\x42\x4c\x66\x96\x2d\x39\x6c\xd8\x36\x31\x18\xd8\xef\x3f\x50\x34\x4b\x62\x9b\x5f\x88\xce\xe1\x25\x28\x4e\x46\x36\xe3\x08\x11\xe5\x45\xb9\x87\xc1\xca\xb7\x10\x14\x37\x8d\xaa\xe0\x65\x05\x92\x68\x61\x45\x18\xdf\x9a\xa1\x9d\x56\x6a\xd9\x54\x88\xae\x6b\x7d\xfc\x5b\x07\x8d\x67\x9f\xe3\xf5\x71\xea\x3f\xfc\x7e\x02\xe7\x7e\x84\x1f\xa3\x29\x10\x4b\x12\x0e\x92\x80\x79\x02\x6a\xea\xb0\x47\x70\xc7\xd7\xdb\x9a\x7f\xef\xba\xff\x70\x7c\xd2\x9d\x44\x0f\xc5\x81\x00\xa6\x7f\x8c\xcc\x28\x74\xfe\x1c\xed\x77\xc9\x83\xdf\x9f\xf4\x3f\xb9\x86\x95\x9b\xc3\x68\xe6\xfe\xca\x2b\xae\x44\x06\xa2\x32\x5c\x2d\x19\xb2\x1c\xd5\xa6\x5d\xf8\x80\x59\x4d\xd3\x46\x2a\x9e\x03\xea\xb0\x02\xb9\x5c\x42\xb6\x66\xa2\x9a\x02\x0a\xa5\x0e\xe0\x9c\xba\x35\x9a\xe7\x38\x77\x61\x22\xb5\x5d\xf3\xf4\x04\xee\x44\xce\xa5\x35\xd7\x12\xed\x35\x94\x3c\x17\xec\xe0\x5a\xd2\xe2\x87\x03\x46\xbc\x88\xdb\x12\xcb\x70\x5a\x1b\x25\x8e\x4f\x82\x89\xea\x90\xfc\x0b\x2d\x96\x12\xf8\x3d\xfa\x2e\x9e\x3e\xbb\x7a\x6a\x07\x0f\xbd\x25\x60\xb4\x56\xfc\xed\xfa\xfa\x1d\x1c\x4b\x45\x1f\x3e\x9c\xc0\xc7\xf7\x3f\x1f\xc4\x16\x9b\x22\x9e\xe7\xfb\xb0\xc5\x89\x6e\x54\xd1\xb7\xa4\xad\x15\x89\x1e\x0f\xaa\x7b\xa3\x50\x41\x1b\x15\xab\xe6\x03\x38\xd3\x01\xe9\xa4\xc4\x43\xde\xad\xee\xc3\x1c\x6c\x25\xe4\xea\xdd\xe5\x87\xc0\x23\xfa\xe6\xa6\x1f\x98\xe2\xad\x50\xe4\xb0\xd8\xa2\x7a\x0b\x45\x5e\x0f\x3a\x17\x22\xe7\x95\x11\x4b\xc1\x15\x1c\xbf\xba\x7a\x7d\x12\x80\x28\x46\xc2\x62\xd6\x8c\x56\x46\xa1\x78\x66\xe0\xe3\xfb\xab\x29\xbc\x84\xac\x10\xd8\x37\x72\x1d\x49\x0e\x1b\xcd\xad\xb3\xf2\xea\xea\x75\xeb\xf4\x48\x58\xa2\xe7\x86\xf2\x57\x48\x46\x3e\x83\xf3\xc7\xee\x04\xc3\xf9\x26\x74\x57\xcc\xf0\x0d\xdb\x1e\x9c\x68\x6c\x9c\x4c\x74\xb2\x02\xbd\xba\x7a\x8d\x22\x85\x43\x0c\x10\x88\x5e\x17\xe1\x47\x23\x5a\x6f\x30\xea\x9d\x40\x4a\xbc\xe8\x5c\x66\x7a\x2a\xea\xa5\x9e\x0a\x39\x43\x57\x86\xd7\x46\xcf\xdc\x08\xa7\x2c\xcf\x15\x4a\x70\xb5\x9a\x8d\x5a\xce\x32\x91\x0f\x2f\xe6\xef\x98\x59\x93\x46\x44\xa6\xb5\xc6\xdf\x9c\x51\xa6\x49\xf7\x06\x99\x8c\xbd\x63\x9e\x9d\x1d\xa9\xb6\xa3\x16\x78\xa1\x41\x56\xc5\x16\x2a\xce\x73\x5c\x9f\x97\x2d\x70\xa1\xd1\x63\x11\x39\x0f\x53\xbe\x17\xe8\x08\x26\x21\xd8\x53\xbd\xd5\x86\x97\x7a\x1c\x7b\x90\x62\xcf\x9f\x1f\x87\x74\x34\xe2\xdf\x24\x6d\x3d\xa8\xb2\x99\xc8\x61\x8e\x4c\xef\x3f\x22\xe6\xce\x09\xc6\x90\x3e\xb7\x7c\x6b\xaa\x8c\xa4\xdc\x2a\xac\x15\x30\xe2\x7c\xc5\x8c\xb8\xe3\x68\xa2\x5a\xe9\xea\x09\xd6\x1e\x3e\xad\xe5\xe6\xd4\xc8\x99\x13\xa1\x53\xfc\xf9\x54\x56\xa7\x1b\xbe\x98\xfd\x9b\x85\x7d\xda\xa8\x42\xef\x9c\x01\xbf\x1a\xa3\x8b\xaf\xad\x89\x41\xb1\x64\xa2\xc2\x8f\x61\x5e\x1b\x25\x0e\xf2\x7e\x94\xc5\x72\xcb\xa5\x63\x5c\xcb\xc4\x9d\x4b\xe5\x11\x92\x74\x3e\x9b\x1d\x4d\x51\x24\x98\x39\xf6\x73\x72\xe2\x7f\x38\x9a\x1d\x85\xcf\x08\xeb\xa4\xb3\xb8\x0e\x59\xcc\xdd\x50\x77\xdb\xd0\x97\xde\x84\xd0\x32\xe9\x56\x5b\x60\xb0\x72\x0b\x32\xd9\xb6\x37\x6c\x9b\x2e\xa7\xbe\x1d\xb2\xf2\xe3\xfb\x2b\x90\xcb\x28\x9c\xe3\xf0\xf6\xf2\x1a\x36\x18\x04\xd1\x37\x0a\x61\xe5\x92\x1a\x0a\x0d\x95\x34\xc0\x70\x5d\x33\x92\x5c\x62\x6e\xb8\x2a\x45\xc5\x73\xf2\xa2\xa7\xb4\x68\x4d\x12\xab\x6d\x9d\xe2\x93\x43\x46\xf0\xe3\xfb\xab\xde\x42\xe7\x03\xbd\x05\xd3\x16\xd3\x5a\xf1\xa5\xb8\x9f\xe0\x94\xb1\x6a\x3b\x85\xb7\xd2\x78\x95\xa7\xf0\xb3\x28\xb0\x99\x9e\xc0\xa2\x31\xb0\xe6\x45\xbd\x6c\x8a\x04\x1a\xb6\xd2\xb2\x24\x6e\x40\xc6\x34\xd7\x70\x29\x15\xf0\x7b\x86\xa1\xe9\x04\x9a\x3a\x67\x06\x45\x84\xc1\x66\x2d\x0b\xcb\x8c\x4c\x16\x05\x27\x65\xf9\x26\x91\x5a\x67\xf2\xd7\x18\xe9\x72\xa6\x45\xb1\x1d\x65\x0c\x90\x1a\xa2\xd6\xdb\x83\x2e\xb9\x48\xa9\x13\xfc\x3b\x56\x34\x3c\x69\xf0\xf6\xef\xd7\x17\xe7\x56\x29\x85\x06\xcd\x0d\xae\x95\x68\x43\x5c\xd6\x80\x64\x87\x57\x49\xa4\xe4\x46\xf4\xe1\x6d\x02\x8f\x46\x40\x86\xfa\x46\x4f\xe7\xc1\xc5\xdb\x41\x09\x0a\xa6\x25\x85\x3a\xf7\x0d\xff\x1f\x72\x1a\x52\x92\x23\x5d\x21\x43\xd9\x65\xde\x24\xc5\x61\xd0\x5a\x7a\xca\xe6\x9e\xc6\x7e\x13\xcb\x85\x79\x87\x09\xf0\xa3\xff\xe1\xa9\x57\x4a\x6a\x88\xde\x7b\x17\xcd\x08\xd9\x01\xe9\x7e\x83\xfe\x69\x77\x65\x27\x69\xb7\x26\x96\x5b\x0f\x76\x94\xfc\x2c\xc9\x55\xe8\x46\x8d\x36\x2d\x95\x0b\x76\x4a\x1a\x9b\xc9\x92\xe3\x9a\x68\xed\xa5\x54\x25\xc9\xc2\xb6\xe6\x33\xdd\x2c\xa8\x05\xd3\x2e\x7a\x5b\xf0\x1c\x48\xdd\x13\x58\xc1\xb4\xf3\x3b\x5e\xc8\x9a\xab\x69\x29\xff\x25\x8a\x82\x4d\xa5\x5a\xcd\x78\x75\xfa\xf1\x03\x99\xfd\xd9\x7f\xf1\xc5\x0c\xb5\x7e\xf6\x13\xd3\x22\xd3\xbf\xc9\xe5\x6f\xf4\xf5\xcd\xd5\x9b\x8b\xdf\x28\x70\x1b\x45\x15\xe1\x8e\x81\xcd\x3e\x57\x36\x26\x7d\xd2\xef\x92\xce\x3e\x4d\x2c\xf6\x98\xe3\x3f\xdd\x07\xa1\xf3\x3c\x7c\xda\x6d\x67\xff\x4b\xb1\x1a\x63\x53\x2b\xcc\x52\x41\xd9\x14\x46\xd4\x85\x9b\x36\x9b\xf8\x3b\x64\xe1\x48\x06\x74\x57\x08\x5e\x56\xc0\xd4\x42\x18\xc5\xd4\xf6\x54\x8b\x7f\xf1\x9c\x52\x0b\x2e\x9d\xb6\x85\xaa\x29\x17\x1c\x83\x25\x27\x43\x02\xbd\x8e\x9d\x5c\xa4\xa7\xe7\xf0\x89\xda\xfe\x3a\xc4\xc2\xdf\x3a\x6d\x06\x35\x86\x9a\xc0\xbc\x33\xd8\x81\x88\xdd\xd1\xf7\x3f\x1a\xb0\xb7\x4e\xa5\x1b\x7d\x5c\xb8\x6e\x1b\x3f\x28\x5a\xb7\x5d\x1e\x1b\xac\xdb\xde\x23\x63\xf5\x20\x28\xd0\xf9\xfb\x02\xa1\xba\x8f\xba\x62\x6f\xa1\x10\x19\xaf\x30\x04\xcb\x32\xa9\x72\x72\xb2\x64\xd0\x7f\x5d\xe7\xf7\xa4\xf2\xae\x95\x6e\xe7\xf1\xda\x27\x71\x93\x88\xdd\xf9\xde\x3e\x56\x91\xb8\x54\xd3\x32\x2a\xb4\x1f\x29\x3f\x18\x12\xfd\xec\x50\xda\x1d\xf4\x22\x5e\x57\x21\x0e\xda\x67\x34\x7e\x8b\xe2\xa5\xbd\xeb\x44\x0a\x12\xc5\x3f\x7c\x19\xab\x03\x1e\xef\xaf\x95\xb5\xf2\xe3\x8f\x53\x03\xd7\xfa\x41\x7a\xe0\xfa\x3c\x56\x11\x5c\xf7\x91\x9a\xd0\x17\x83\x3f\x41\x15\x42\x02\x02\x23\x1e\xe2\x3a\xfa\x56\x86\x97\x40\x7b\x1d\xc0\xef\x0d\x57\xc8\x5c\x2d\x0c\x9f\xa6\xd2\x1f\x0b\xfe\x62\x1b\x67\x0f\x50\xd8\x6f\x39\x4c\x43\xa2\xe0\xa7\x42\x66\x08\x5d\xfa\xc4\x43\xa3\xb9\xd2\x10\x27\x15\x28\xab\xad\xc4\x4a\xe0\x68\x94\x59\x76\x9b\x2a\xa8\x3e\xb4\xf3\x53\x2b\xf9\x0f\xec\x5b\xa3\xe3\x49\xd9\x26\xbf\x86\xeb\xe0\xbb\xb7\xee\x6a\x8b\x2c\x5f\x05\x85\xde\x6c\x36\xd3\x72\x4b\xdb\x61\x0e\x9a\xdd\x4a\xbb\xe3\x0a\xf9\x7e\x2a\x97\xf4\xac\x85\x72\x48\x57\x2f\x1c\x7f\x90\x7d\x8f\x4e\x52\xfd\x06\x23\xd2\x54\xf3\xbd\x09\xa5\x54\x13\x63\xac\xbe\x96\x36\xc6\x38\x8c\xd3\xc8\xa8\xc7\x83\xb4\x32\xea\xf7\x58\xcd\x8c\x40\x8c\xd4\xce\xe1\x89\xff\xe2\x1a\x6a\xa5\x7c\x29\x2a\xee\xb3\x60\x65\x2d\x35\x05\xa1\x4a\x6e\x59\x61\xb6\xed\x5e\x32\x35\x5e\x89\x3b\xae\xa1\x64\xea\x96\x9b\xba\x60\x19\xc7\xc0\x28\x00\x6d\x2a\xb4\xe8\x79\x9c\xac\x96\xa0\x9b\x9a\xb6\xb3\x51\x7f\x2c\x50\xc1\xf5\xc1\x55\xea\xbd\x1b\xbe\xe3\xd2\xf9\x74\x78\xb2\x63\x0e\xef\x79\xc6\xc5\x5d\x48\xd9\x71\x58\xf0\x8a\x2f\x45\x26\x98\xda\xfa\x40\xcd\xd1\x93\x40\x7b\xc5\x48\x32\xfc\xa2\x9a\x29\x6e\xda\xa8\xdc\xca\xa4\x03\xbc\x11\x66\x1d\xbe\x4d\x57\xdc\xe0\xbc\x1e\x9f\x74\xd2\x36\x99\x2c\x4b\x5e\xe5\x36\x40\x3c\x85\x8f\x64\x85\xdc\x06\x19\xed\x39\xa3\x29\xac\xf8\x26\x32\x40\x70\x59\xc8\x8d\xa5\x22\x01\xa6\x52\x92\x84\x86\x46\xa3\xfb\x70\xb3\xe2\xc6\xf1\xc6\x53\xfd\xae\x59\x14\x22\x7b\xc7\xcc\xfa\xf8\xe4\x66\x42\x06\xb1\x92\x26\x05\x67\x73\xad\x1c\x27\x9b\x35\x85\x89\x46\x0d\x44\x59\xab\x4b\x5b\x9d\xac\x28\xe4\xc6\x19\x51\x23\x6d\xe4\xde\x89\x61\x88\x65\xac\x66\x0b\x51\x08\x43\x5b\x49\x14\x0d\x35\xa6\x51\x34\xeb\x0d\x99\x7d\xda\xee\xf4\x19\x93\xb6\xf9\x4e\x4b\xe6\x91\x39\x87\x57\xa1\xf1\xf7\xcf\x3e\x27\xb3\x3d\xf5\x74\xff\xfe\x43\x2a\x1b\x6f\x6c\xe0\x80\xfe\x85\x4f\xc8\x64\xac\xc8\x9a\x02\x91\x47\xec\x58\x29\x1b\xeb\x36\x69\x56\x70\x17\x9e\x1b\xc5\x2a\xbd\xe4\x4a\xd9\x1e\xe9\x24\x38\x21\x6c\x79\xf4\x56\x1a\x0e\xa7\x70\x65\xa2\x7d\xcf\x05\x37\x1b\xce\x2b\x38\x9b\x9e\x11\xf3\x9f\x4f\xcf\x52\x30\x17\xf7\xd8\xc5\x4a\x54\x34\xb2\xd0\x70\x4f\x1d\xca\x16\x71\xa1\xe1\x6c\xfa\x97\xef\xb0\x69\x15\x8b\x2d\x0c\x24\x16\x36\x1e\x01\xea\xf1\xbf\xe0\x7e\xda\x57\x15\x56\x14\x5b\xa8\xb9\xca\x78\x65\x70\x5d\x5b\xf1\x68\xef\xc8\xee\xb6\x1a\xae\x4a\x8d\x4c\x59\x30\x2d\x34\xd4\x52\x54\xa6\x93\x8b\xa9\x40\xcb\x42\xe4\x38\xd1\x18\xb4\xe7\xa0\x4b\xa6\x4c\x28\x85\xd0\xb0\x59\x63\xbc\x9d\xb1\x9c\x0c\xba\x5c\x2e\x51\x72\x6e\x3e\x5e\x8a\xfb\xef\xbe\xbd\xe9\x0a\x0e\x33\xc0\x0a\xc5\x59\xbe\xf5\xb6\x41\xfb\x54\x4a\x18\x3f\x24\x91\x60\xc1\x33\x86\x5f\x84\xd1\x29\x20\x0c\x9c\x9d\x3b\xc0\x14\x07\x74\x27\x15\x2f\xb6\x21\x6f\x26\xb4\x71\xfb\x66\x2b\x0c\xf2\xa2\xd6\x55\x1e\x8c\x52\xaa\x24\x35\x4a\xc0\xff\xf5\x28\xc8\x25\xd4\x8a\x67\x42\x87\xe5\x7e\x48\x64\xb3\xc6\x9c\x83\xa5\x34\x15\xc7\xbf\xfb\xa5\x2a\xd9\x43\x8e\x5d\x1b\xab\x43\x48\x1c\x0e\xc5\xb6\x3e\x07\xeb\xe6\x7c\xd2\x53\x38\xc5\x0b\x4b\xc3\x5a\xd4\x41\xec\xf0\xc1\xcd\x86\x15\x05\x37\x37\x3e\x0d\x85\xc6\x76\x02\x36\xcc\x35\x6b\x84\xcb\x0b\xcd\xfb\xf3\x40\x5e\xd1\xa6\xe2\x0a\x4a\xb1\x5a\x1b\xd8\xb0\x8a\x12\x9e\xba\xe6\x99\x58\x6e\x77\x53\xbd\xb7\xd2\xa0\x75\x3d\x1e\xa8\xcf\x93\x98\x9b\x93\xa1\x41\xba\x6b\x67\xad\x86\x3c\xd8\xac\x31\xf0\xc3\x9c\x14\xf2\xd9\x33\xfa\xf6\xfd\x9c\xd4\xf2\xbc\xd7\x14\xff\x8e\x92\x52\x9e\xa9\x33\xaf\x53\xa4\x00\x11\xaf\xd0\x9a\xe2\x17\xc1\x0a\xf1\x2f\x3b\x6d\x7e\x79\xf2\x3d\x69\x3d\x7d\x0a\x47\x83\xf0\x43\xea\xfa\x7a\xcd\xd1\xcd\xbc\x13\x39\xcf\x83\x66\x23\x7a\x56\xa1\xe5\x12\xda\xdc\x76\xd6\x98\xa9\x91\x96\xea\xe3\x93\x93\xfd\x80\xed\x4e\xcc\x1d\x2b\x44\x3e\x85\xa3\x03\x8d\x13\xe3\x85\x0b\x9b\x33\xde\xd4\x1d\x14\xab\x56\x91\x4d\x73\x16\x0d\xc4\x94\xc3\xa7\xb3\xc9\xf3\x5f\x8f\xba\x09\xf7\xf8\x1b\x79\x93\x61\xe9\x9a\x07\xc3\xd9\x6f\x84\x54\xcf\x91\xf6\xfe\xa3\xc3\x65\x10\x0f\x48\x22\xf9\x89\xb2\xf5\x63\xa1\xc3\x9b\xd8\x83\x41\x75\xfc\x67\xc3\xd5\xd6\x2e\xb4\x37\xef\xbd\x97\x72\xe3\xbd\x91\xa5\x92\x25\xea\x54\x14\x53\x20\x5f\xc8\xee\xdc\xd7\x3c\x33\x76\xf1\xa8\xd9\xb6\x75\x71\x9c\xa9\xb4\x79\x42\x8c\x1b\x49\xa7\x7c\x08\x33\xd2\x01\x42\x38\xdd\xac\x96\x52\x6c\xeb\xd4\x57\xb1\xec\xd6\x1a\x4f\x51\xe5\xe2\x4e\xe4\x0d\x2b\x5a\x0c\xba\xda\xdb\x26\x97\xb3\xc6\x5c\x55\x4b\xa9\xcf\xe1\x93\x63\xd0\xaf\x7b\x52\xcc\x2e\x8a\x18\xe8\xd4\x55\x47\x74\x2c\x51\x8a\xec\x8a\xcb\x0c\xe8\x86\xb2\xa3\xac\x28\x48\xce\xdb\x95\x2e\xf8\x45\xa8\x5c\x0b\x0e\x2b\x72\x8f\xdc\x06\xf2\xf3\xe9\x59\x02\xf6\x8e\x61\xec\x61\x58\xf1\x8a\xa4\xe6\xac\xf3\x18\x27\xdc\x6b\x93\xa8\x02\x9e\x03\x86\x21\x02\x12\x3e\xfe\x6f\xdf\x77\xda\x95\xc6\x54\xb6\x99\xd6\x5c\x75\x0a\x87\x12\x98\xd6\xc6\x4c\x7a\x0d\x4a\xae\x35\x5b\xf1\x07\xd8\x1e\x74\x90\x77\x59\x9f\x56\x2e\x1e\x66\x7b\xec\x9e\x9f\x9d\x8e\xc0\xa1\x78\x3e\x84\x3e\x64\x39\x3c\xa5\x0f\xb0\x4b\x8b\xc6\x80\x30\x07\xe6\xba\x33\xec\x49\x57\xa4\x5e\x6a\x2d\x56\xd6\x46\x79\xcc\x07\x0d\x8a\xa5\x69\xde\x6f\xd4\xc9\xe5\xbf\xb7\x51\x51\x0c\x8f\x12\xc3\x71\xa3\xa4\x43\x14\x80\x32\xd2\xbe\x68\xd3\xd4\x96\xd3\xf1\x48\xef\xad\x02\x1f\x4e\xcd\x87\xed\x9b\xe0\xd2\x0b\xae\x8f\x4f\x22\xf5\xda\xb3\x95\x33\x40\x23\xec\x8b\xd9\x5b\xb1\xf9\x4a\x49\xe4\xf7\x1d\xfe\x1c\x0a\xd7\x5b\x8e\x3c\x24\x58\x0f\xbd\x1e\x1b\xaa\x07\x00\x23\x03\xf5\xd8\x4c\x77\xd5\xe0\x8b\x94\x7f\x59\x27\xcd\xd6\x75\x90\x45\x0d\x4b\x37\x05\x39\x64\xfb\x68\x95\x45\x61\x4c\x4d\x7f\x48\xa5\x51\x25\x72\x0b\x82\x62\x3c\x7e\xc7\x2b\xd3\x50\x7c\x10\xc3\x6a\x37\xb8\xf5\x46\x98\x6c\xbd\x90\x18\xfb\xfb\x75\xbc\xdd\x7e\x5e\x5b\x41\xf0\xa5\xc2\xa8\xe7\x04\x96\x4a\x45\x12\xe4\x02\x83\xf0\x5b\x25\x3b\x65\xc9\xdd\xaa\x84\x36\x98\x0d\xc1\xbc\x47\xe8\xf2\x3a\xf5\x27\x86\x84\xa7\xaf\x53\x83\x61\xf2\x79\x3c\xce\xe7\xee\x3c\xcc\x6a\x7a\x38\x73\xc9\x86\xcb\xeb\xf7\xf1\xb0\x07\x32\xfe\xae\x6a\xd7\xd6\xce\x44\xf5\xe7\x2e\xe3\xf9\xf6\xf2\x7a\xda\x9b\x1c\x1f\xae\x52\x2e\x42\x31\x61\x83\x8f\x68\x49\xbf\xe5\xdb\x99\xf5\x11\x6b\x26\x94\x06\x56\xc8\x6a\x65\x93\x12\x5a\x96\xad\xde\xd1\xce\xc0\x3d\x4e\x2b\xed\x76\xd1\xb8\x6c\x21\x1b\x2b\x44\x04\xfa\x90\xdf\x71\x8d\x8d\x92\x42\x81\x5e\x41\x38\xc1\x99\xc2\xcf\xe2\x96\xc3\x4f\x2c\xbb\x5d\x29\xd9\x54\xf9\x04\x2e\xb6\x5c\x4f\xe0\x6f\x4c\xa8\x4e\xb5\xee\xd8\x8a\x6d\x1a\xa9\xa9\x72\xae\x8a\x6d\xd8\xa2\x4f\x46\x9d\x78\xc3\x63\xfc\xcf\xc4\x68\x6d\x2b\xa6\xa9\x89\xf7\xb0\x3d\x33\xbc\xb5\x22\x60\xbb\x71\x72\x7b\xdd\x2f\xab\xad\x3d\xb5\x90\xe0\xe5\xca\x93\xd1\x42\xc4\xf3\xa5\xd7\x72\x63\x6b\x1e\xfc\x58\x96\xd9\x1b\x1b\x5b\x09\x6d\xd9\x86\xae\xa2\x25\x25\x08\x4a\x0c\x1c\xe5\x5c\x54\xda\xb0\x2a\xe3\x13\xd8\xca\x06\x32\x52\x71\xed\xb1\xc2\xa1\x18\x34\x95\xb8\x07\x23\x4a\xae\x0d\x2b\x6b\x9b\xe7\x71\x71\x5a\x82\x1f\xd3\x70\xf4\x9a\x19\x7e\x44\x84\xf3\x22\xae\x37\x80\xba\x60\x66\x29\x31\xe0\x37\x12\x91\xd6\x4d\xe9\x8a\xf0\x2c\xef\xa8\xd0\x81\xdc\x37\x9f\x46\x62\x6e\x9b\x74\x77\x28\xd8\x8e\x3d\x50\x87\x85\xcb\x2d\x53\x02\xe3\x1c\x56\x01\x2b\xb4\x0c\xd6\xc1\xe6\xea\x8b\xad\xd3\x0c\x66\x8c\x12\x8b\xc6\x24\xc5\x50\xa9\x70\x58\x6d\x09\x4b\x8a\x4f\x0d\x10\x9a\x45\xd1\x42\xd0\x54\xb9\xe2\x48\x74\xbf\x79\x31\x78\x7b\x79\xfd\x8d\x06\x45\x38\xed\x96\x06\xfb\xfc\xdc\xe1\x3e\x58\x57\x96\x14\x8d\xf7\xc4\x67\x32\xc8\x97\x49\x17\xf0\xc3\x8b\xc4\x7d\x39\x45\x5a\x24\x11\x1e\xc7\x92\x30\x8f\x71\x18\x88\xd3\xec\xbc\xcc\x1d\x4e\x23\xa3\x2b\x32\x77\x64\x26\xbd\xe7\xe3\x2d\xd6\x61\xfb\xe6\x3a\xba\x0e\xb4\xa1\x3d\xc2\xc4\x05\x70\xb1\xa6\x0d\x98\x38\xce\xb2\xb5\xb3\x4d\x7b\x8d\x9b\xde\xb3\x95\x62\x51\x3b\x87\x4f\xd4\x72\xc7\x2e\x7f\xa7\xd1\xe0\x1c\x3a\x1a\xe7\xae\xf1\xc0\xa2\x8f\x7f\x69\x60\x97\xe7\xba\x5d\x40\xac\x1d\x76\x42\xeb\xf0\x46\x24\x92\x2e\xa9\x97\x6a\xdd\x36\x6a\x7b\x4e\xa6\xd4\xea\x74\x5b\xc7\xb6\xe0\xc0\xf2\x9c\xe7\x07\x5d\x53\x5c\x41\x59\x9e\x13\x28\x24\xf8\xdc\x42\xdd\x43\xe9\x14\x45\xa4\xca\x8f\xcd\x9e\x92\xba\xd4\x23\x8d\x68\xfa\x5a\x3e\xa9\x43\x61\x9c\x43\x6a\x1b\x3f\xc8\x1b\xb5\x5d\x1e\xeb\x8a\xda\xde\x23\xfd\xd0\x9e\x64\xfb\xbf\x2f\xe0\x84\xba\x79\x0b\x65\xad\x46\xba\x9a\x3c\x54\xc6\x3b\xae\x0c\x95\xff\xd2\x33\xa6\xb6\x34\x13\x56\x26\xa8\x00\xf0\xed\xe5\x35\x44\x0e\x8a\xdf\xfa\xd4\x6e\xf7\x49\x92\xf9\x26\x7b\xcd\x05\xd5\x90\xfb\x33\x48\x7e\x96\xc8\x2a\xb8\x15\xfe\xda\x3a\x01\x01\x1e\x2d\x5d\x25\x37\x6b\x19\x4e\x22\xe9\x66\xb9\x14\x56\x20\x56\xe2\x8e\x7c\xd4\x92\xd6\x17\x8a\xdc\xe4\xd2\xe5\xb9\x1c\x8a\xbb\x04\x0d\xe9\xb1\x4a\x94\x52\xb6\xe0\x9e\x68\x6b\xd2\xae\x5b\xf5\x8e\x7a\xf3\x7b\x3a\xe5\x97\xbf\x65\x25\xd7\xe7\xc9\xc6\xa5\x2b\xd2\xb3\xd8\xb8\xf5\xdb\x27\x7e\x6f\x70\xac\x9b\x00\xcc\xff\xdd\xf2\xad\xe3\x16\x53\x76\xb5\xdb\xb0\xca\x8d\xbf\xe0\x19\x5a\xc5\x1b\x8b\xc7\xcd\xa0\x4f\x4d\x0e\x34\xc3\x0e\x5d\x3b\xb2\x4b\xdc\x11\x8f\x6b\xe9\x24\xde\xb2\xe2\xb3\x45\x3c\x5a\xe2\x7e\x9f\x74\xe9\xfc\x64\xdb\xfc\xfa\xe3\xc9\x79\x5f\x20\x67\x33\x78\x15\x66\xdf\x66\x9d\xb5\x4b\x3b\x7b\x92\xc2\x92\xe2\x9c\x3a\x9b\x98\x14\xaa\x75\xa2\xdd\xf1\xc9\x7c\xda\xf1\x1a\xb7\x9d\x04\xf6\x9a\x55\x79\xc1\xed\x8a\x41\x4c\xc6\x40\x87\x32\xe2\xa6\x6d\xfc\x8f\x46\x47\x63\x93\x9c\x78\xf8\x74\xb6\xa4\x28\xa6\xb1\xe2\x26\xc4\xfa\x32\xc6\xcf\xbd\x4c\xd4\x2d\xa2\x9d\xb4\x7d\x3a\xa0\x96\xc8\xd4\xa9\xe2\xa5\xbc\xe3\xc7\xb7\x7c\x7b\x0e\xb7\xbb\xf2\xaa\x51\xf2\x62\x60\x85\x82\x39\x7c\xfa\xf5\x49\x6f\x7c\x02\x4f\x72\x93\x0e\x1d\x20\xc0\xdc\xce\x90\x73\x63\x6e\x83\x07\x83\x3d\x3f\xdd\xfe\xfa\xb4\xe3\xc0\x54\xa2\x68\x9d\x97\x4a\x14\x29\xb6\x9d\x35\x80\xd6\x8a\x21\x02\xbc\x50\x5a\xc1\xb2\xbd\x4e\xba\xe6\x26\x6c\x9c\x84\x6c\x6e\xcf\x6a\x08\xad\x1b\xde\x26\x79\xdd\x59\xd8\x00\x81\x02\x23\xbb\xdb\x56\xd2\xe9\x62\x2d\x4a\x51\x30\x15\x1d\x06\x5e\xb6\xa5\xc9\x68\x1c\xfe\x3f\x1a\x86\xe7\x67\x67\xe8\x74\xdb\x9d\xd0\x00\x4c\x54\xe8\x30\xdb\x3d\x5d\xeb\xcb\x2c\x1b\x7b\x24\xd7\x6e\xba\xd8\x0d\xa5\x78\x4b\xbc\x75\x80\x5e\xda\xfa\x12\x2b\x6e\x0b\x74\x6d\x14\x05\x2e\x01\x73\x9e\x0b\x22\x6b\x02\x9b\xb5\xc8\xe8\x38\xc7\x66\x4d\x87\x6e\xfc\xa3\x5d\x78\x58\x56\xa2\xa4\x6a\x6b\xdd\x5c\xa1\x23\xd8\x42\x47\xb2\x2f\x87\x62\xbd\x0b\x3b\xc4\xa1\x03\xc0\x31\x26\xbe\x4d\x52\xda\x6d\xec\xa9\x74\x97\x97\xf8\xc0\xcd\x04\xde\x15\x6c\x3b\x81\x0f\x5c\x09\xae\xd3\x8d\x2c\x57\x7c\x69\x0f\x97\x6d\xd8\x36\x2a\xbd\xb1\x20\xb2\x82\x69\x8d\x51\x0d\xda\x0f\xcf\xa0\x51\xb1\xe4\x8f\x7d\x3a\x5c\xff\xa8\xd6\x73\xc7\xf9\x56\xa2\x88\x55\x70\xf4\xe2\x5b\x2f\x0b\xc7\xff\xf6\xe2\xdb\xd9\xf3\xb3\xb3\x93\x23\xaa\x59\xb2\xb1\xa7\x03\x24\x34\xbc\xf8\x76\x4f\x84\x4b\xad\xce\xe1\xe3\x55\x65\xba\x1b\x83\x88\x56\xc9\xee\x07\x51\xc3\x40\xcc\xd5\x1f\x38\xa1\x9e\x76\xfa\x76\x0f\xde\xfa\x84\x4b\xd8\x57\x42\xc9\x2c\x44\x29\x0c\xcf\x4f\xdd\x10\x3c\x1f\x86\x36\x82\x64\x44\x54\x68\x7c\x36\xd8\x95\x6a\xb9\x48\xdd\x9a\xca\x0d\xea\xe9\xb2\x7d\xdb\x74\x15\x86\xb3\x46\xa2\xed\x18\x77\x8c\xb7\x64\xf7\x9e\x7f\x07\xe3\xaf\x1f\x27\x1d\x8e\x4f\x92\xee\x03\x0e\x14\xe2\x36\x68\xc2\x61\x4f\xaa\x1f\xff\xdc\x6c\x7d\x3f\x47\x10\x4f\xfb\xd9\x7e\x38\x94\xf1\x87\x7e\xd6\xdf\xe9\x61\x37\xe7\x1f\x6f\x38\x7a\x55\x1d\x95\xf4\x87\x9d\x9b\x8e\x7d\x99\xdb\x91\xf3\x8f\x41\xd8\xc6\x07\xb3\xfe\xc9\xa8\x18\xee\x0f\xa5\xfb\xcd\x4e\xe1\x1f\x81\x08\x72\xfc\x61\x68\x4c\x07\xa0\x1e\xdc\xc0\xdc\x1b\x7f\x3b\x84\xe7\xdd\xb4\x48\x68\x80\xd4\x91\x70\x8c\x0c\xa8\x93\xed\x4a\x3f\xcd\xa3\xaa\xde\x5d\xe3\x3f\x50\xf7\xde\xb3\xae\x49\x65\x40\xb2\x74\x31\xbf\x78\xed\x54\x58\x5c\xa0\x7e\x16\xda\x9c\xc3\x27\x87\xd9\xae\x2a\xf9\x7e\xc3\xe1\x52\x79\xd7\x0e\xe6\xa1\xcb\xd8\xe0\x32\xb0\xe6\xab\xd5\x27\x7a\x04\x46\x16\x27\xba\xe6\x0f\xab\x4c\x74\x9d\x1e\x5d\x96\xe8\xfa\x8f\xad\x49\x6c\xc5\xad\xab\x52\x5f\xaa\x20\x31\xe4\x47\xed\x39\x31\xe7\x17\x9c\xda\x12\xc5\x1c\x34\x57\x82\x15\x5e\x7e\xed\x76\x85\xdf\x56\x47\x69\x0d\xc0\xde\xd9\x8e\x1a\xd6\xec\x8e\x47\x97\xc2\x10\x20\x47\x05\x79\x70\x14\x54\x75\xe0\x86\x25\x2b\x80\xfb\x80\x61\x44\xc9\xb6\xa1\x8c\x8e\x4a\x01\x14\x5f\x35\xe8\x54\x5e\xbd\xb6\xb9\xd8\xb8\x51\x74\x13\x4d\x1b\xfb\x5a\xbf\xc6\x1f\x81\xb6\xa7\x5c\xa7\x76\x5f\x36\x41\x40\xe8\xa4\xaa\x60\xc1\xa1\xa9\xc4\x3f\x1b\x2a\x60\x73\xc7\xe5\xc9\x91\x22\x0f\x8a\x50\x09\x55\x1c\xcc\x78\xa6\x1d\x32\x1e\x1f\xec\x90\xbb\x53\x61\xbb\x5c\x98\x58\x93\xd3\x36\xc3\xc9\xcc\x1d\xf6\xf2\x80\x02\x3b\xf4\xbe\x96\xfa\xba\xe1\xc7\x29\xaf\x6d\xfc\x20\xd5\xb5\x5d\x1e\xab\xb8\xb6\xf7\x48\xb5\xed\x4d\xf4\x97\x56\xda\xb6\xce\xdf\x65\x94\xe3\x48\xc5\x29\xa9\xcd\x69\x46\x89\x66\x3a\x6f\x29\x7d\x99\x08\xf3\x5d\x2b\xce\x73\x6d\x03\xf8\x3b\xee\x13\x42\x3a\x93\x8a\xc2\xb8\xb8\x32\xc8\x55\x16\x64\xac\x6a\xb3\x41\xd4\x69\x21\xdb\x94\xf1\x2e\xe1\x77\x5b\x12\xfd\xe3\xb0\x6e\x28\x57\xfd\x6b\x5b\xd1\x9e\xc8\x81\x4d\x10\xea\xe7\x2b\xd7\x06\xc2\x90\x92\xdd\x8b\xb2\x29\xdb\x1d\x2d\xea\x70\xc0\xf7\xdd\x05\x6c\xe0\x32\xa3\x18\x55\x7b\xbe\xf5\xc0\xd9\xfe\x10\xad\xfd\xcc\x57\xbc\xca\x99\xda\x4e\xe0\xa2\x16\xd9\x04\x79\xc3\x27\xf0\xb1\xca\x64\x59\xa2\x17\xff\x8a\xfe\x4f\xc3\xb6\xc1\x23\xb4\x23\x6a\x04\x07\x1d\xf9\x94\x77\x93\x84\xf8\xc1\x22\xc0\x21\x7f\xde\x4e\xdc\xdc\x7a\xf4\xcf\x9e\x25\x3c\x9a\xef\xf2\xf3\x6b\x56\x89\xec\xb8\x5b\x82\x63\xb7\x86\xf6\x56\xff\x59\x6e\x8f\xf4\xc5\x87\x3d\x71\x8b\x30\x2e\x1c\xc9\xfd\x5f\xca\x0a\x30\xdc\x54\xa2\xb8\xd9\x59\xcb\x17\x3b\xda\x2f\x3d\x3a\x41\x77\xb4\x17\xc8\x84\x7b\x94\xfd\x42\xd8\x47\x27\x7b\xcf\xcc\xdb\xf3\x5a\x96\x9d\x1d\x31\x85\xdd\x3e\x2e\xfc\x81\xea\xbd\x4e\xa5\x8a\xa5\xe6\x6b\xee\x0b\x38\x14\x46\x16\xaa\x50\xe3\x87\x55\xa9\xd8\xcd\xbf\xc7\x96\xa8\x50\xef\xb1\xf5\x29\x5d\x4b\xe7\xff\xbe\x80\xf5\x7f\x7b\x79\x4d\x0b\xc0\x46\xb1\x5a\x53\xee\xf6\x15\x5d\x6f\x46\x17\xe2\xd9\xfd\xbb\x1b\x91\xdb\xa2\xe4\x9b\xa6\xc1\x8f\x36\xb1\x6b\x37\xaf\xfd\xc6\x60\x80\xe7\x33\xf6\x8c\xce\xa1\x14\xdc\x70\xa8\x45\x46\x27\x0a\xc2\x51\x47\x77\xfb\x1d\x79\x3d\xc3\x57\xdf\x05\x70\xa3\xee\xc0\xf3\x34\xec\xf6\x83\x44\x1e\x7c\xa0\x5d\x4d\x90\xb6\x83\x8d\x5c\x3a\xf5\x3c\xbd\x38\x70\xea\xaf\xaa\xda\xd9\x8f\xb7\x47\x81\xba\x7d\xe3\xa3\x49\x3b\xfb\xb7\xc9\xd3\xd7\xcc\xb0\x73\xa4\xf8\x55\xf2\xd3\xa8\xae\x1e\xf9\xb4\xf7\x21\xdc\x43\xf1\x4f\x5c\x99\xb5\xb3\xb5\x4f\x6d\xbb\x6d\xb3\x83\xd7\xb6\x89\x1c\x42\xbe\x27\x79\x80\xf3\xb1\xe3\x91\x9b\x05\xd8\x35\x0d\x69\xeb\x88\xf7\xbd\x1e\x31\xf3\xd3\x5e\x29\xc7\x61\x88\xe5\x3b\x3b\x04\xf4\x06\x19\x9d\x76\x6b\x4b\xab\x62\xf6\x76\xee\xa7\xeb\xf0\xd4\xff\x3e\x1c\x70\xe7\x74\x32\xb7\xff\x80\x18\x3a\x27\xbe\x0e\x58\x7c\x87\x73\x28\x37\xe8\x37\x89\xf9\x38\x8f\xb9\xda\x6f\xda\x61\xde\xbc\xc3\xcd\xbd\x1d\x02\x22\xbd\xdf\xfa\xdd\x5a\xe6\xcd\x07\x2a\xa6\x61\xdc\x3e\xfe\xce\x45\xcc\x1d\x2c\x25\xc1\xdd\xb5\x66\xa1\xcd\xb8\x76\x69\x16\x91\xff\x29\x2b\x9a\xb7\x6e\xe3\x56\x32\xd7\xfa\xb8\x35\x66\x93\x07\x2c\x6a\x7d\x4b\x4a\x51\xe4\xd2\xfc\x32\x66\x51\x73\xbd\x7f\x88\xb3\x7a\x62\x19\xba\x0f\xa6\x6a\xfd\xca\x64\xdb\x3c\x05\xa6\x9f\x7a\x2c\xa2\x79\xea\x2e\x64\x9e\xca\xbe\x29\x11\x79\xdf\x8c\x9c\xa7\x78\xe3\x4f\x83\x06\xa5\x6b\x1d\xa2\x8b\x0b\x63\x00\x27\xe3\xed\x4b\xe7\xc8\xea\x1e\x28\x3d\x7b\x43\x92\x6b\x27\x34\xb5\x3b\x23\xa1\x04\x23\x34\x0c\xe8\x30\x5d\xb1\x65\xf2\x30\xda\x82\xde\x3d\x1d\x9d\xba\xb5\xbd\xdc\x56\x61\xd2\xa5\x35\x62\x07\xe2\x51\x7b\x30\xa2\x0d\x46\xdd\x7d\x46\x74\x11\x9e\xbb\x94\xd8\x28\xc1\xef\xf8\x70\xe5\xd2\xbe\x13\xe8\xd6\xcd\x6e\x6a\x60\x9d\x83\xe1\x76\x37\xa4\x56\x12\xad\x41\x80\x87\x43\xb2\x95\x1d\xd4\x56\x97\xb6\xc7\x21\xc7\x1c\x87\xed\xcd\x64\x27\x76\xb5\x77\xc1\x55\x61\x1c\x7f\xc9\x94\xd0\xfe\x7e\x08\xe5\x4f\xa7\x86\xa4\x92\xbd\x0f\x70\xf7\x1e\x96\x83\xf5\xce\x5d\x99\x16\xbe\x74\x6e\xa1\xb3\xd4\x50\x75\xb1\xdd\xc3\x2c\x1b\x4d\x19\xe3\x42\x54\xb7\x76\x30\x37\x1d\x03\x84\x87\x5d\x2f\x9f\xbd\x83\xb0\xdb\x99\x15\x0d\x5d\x98\x11\x0e\x20\x13\x21\xfe\x64\xb1\xdb\x75\x75\x1a\x63\x5d\xce\xf6\xe1\x4e\x9a\xea\x50\xf6\x1b\x97\x00\xf7\x43\xec\xc1\xd3\xc0\xd1\x24\xfb\xdb\x28\x2d\x65\xb9\xb7\xc9\x16\x7c\x02\xad\x92\xee\x9c\x35\xaf\x8c\x30\xfe\xba\x6e\x7e\x2f\xb4\x99\x80\x30\x50\x49\x40\x4f\x99\xab\x36\x7e\x5b\xd8\x0a\x57\x25\x7c\x06\x30\xca\x72\x06\x1a\x0f\x90\xd8\x4a\xcb\x39\x50\xf9\x5f\x4a\x22\x52\xd5\x29\x27\x77\xd3\xe5\x72\xff\x6c\x29\x15\xe1\x6a\xb7\x0f\xeb\x76\x96\x0f\x0c\xfc\x33\x81\xb1\x45\x03\xfd\x81\x2f\x43\x0d\x91\x3d\x06\x5a\xc8\x8d\xb6\x47\xa3\x5d\x32\x83\x55\xc0\xcb\xda\x6c\xbb\x5a\xe5\x19\x8e\xf4\x7b\x19\x26\x01\x4e\xc0\x7b\x51\xda\x73\x5c\x93\x36\xa3\x2e\x70\x88\x98\x45\xcb\xa6\x3a\x3e\x39\x87\xff\xf8\xdc\xbd\x8d\x7d\xda\xb6\x3a\x7c\x8f\xf0\x2e\x8d\x49\x6d\xdc\xb0\x0c\x0e\xb5\xe9\x4e\xe2\x50\x9b\x2e\xbf\x3b\x46\x7d\x88\x5c\x3f\x09\x63\xc9\x0e\xe6\x76\xd4\xe1\xcb\x2e\x5a\x53\xa1\x3f\xd8\x7b\xb1\x8e\xe5\xd2\xe2\xf8\xfd\xb3\xbd\x03\xa2\x13\x30\xea\xb4\x54\xcf\x2a\xee\xcd\xda\xf4\x6d\xe8\xc3\x4f\x6f\x3a\x6b\xe7\x4d\x1b\xaa\xd1\xf7\x07\x4e\x4d\xf5\xf9\x11\xae\xbe\x39\x70\x7a\xea\x07\x2b\xf0\x99\x54\x8a\xee\x7d\xbf\x32\xc1\xb6\x32\xf0\x77\x8d\x39\xdb\xb4\x87\x9f\xad\xcd\xe8\xee\x86\x0e\xec\x7d\x46\x22\x3c\x8f\x3e\xf7\x1b\xb6\x52\x3c\x6f\x3f\xee\x6a\xd6\x22\x33\xef\xfe\xb0\xab\x4b\xcb\xb0\x79\xf7\x87\x81\x18\x60\x48\xcc\xe7\x7b\x85\x7f\xac\x27\xdf\x97\x1a\x4a\x4a\x6d\xfc\x19\x4c\x3a\xf5\xe2\x2b\xa2\x2b\x12\x89\x3c\x94\x30\xfd\xcf\xa4\xab\xfa\x28\x8e\xf6\xf7\x3b\xee\xe1\x43\x92\x58\xfd\xa0\xf6\x91\xf9\xac\x1e\xa0\x91\xa9\xad\x7d\x3e\x91\xff\xfb\xf2\x7b\x1c\x3b\x7c\x4a\x77\x1a\x84\xae\x2c\xf0\xab\xd0\x37\xd1\xbd\xdb\xed\xc5\x41\xa3\x7c\x4b\x9b\x07\xab\xc0\x5f\x1d\x44\xde\x4e\x80\x46\x2f\x0b\x10\x99\x0e\xca\xdf\x5d\x2b\x9d\xdb\xb7\xe0\xe8\x5a\x20\xc0\x07\x3a\x98\xbd\x1b\xcd\x67\x33\x78\xcb\xca\x9e\xcf\x40\xe8\x6f\xd6\xbc\xf2\x61\x90\xad\x64\x75\xc3\x77\x6f\x4b\xea\x0e\xbd\xf7\x28\xd0\xeb\x28\x8f\x3c\x34\xea\x10\x93\xbc\x33\x39\x66\xe0\x03\xef\x4a\x08\x37\xf0\xd8\xbb\x5a\xc8\x09\x73\x97\x58\xd1\x50\x74\xb3\x49\x2c\x07\xfe\x98\xd5\xc8\xe1\xc7\x65\xf5\x12\x8c\x3e\xfc\xb3\x61\x8a\xbb\x82\x0e\x7b\x3f\x6a\xe7\xce\xd9\x91\x63\x6b\x02\x74\x85\x10\xba\x63\xd3\xfd\x78\xc9\xa8\x3f\xb1\xaa\xe2\x2a\x19\x35\x5c\x49\xd3\x0e\x36\xe9\xc6\x17\xb4\x15\xc7\xa8\x18\x11\x2a\xce\x14\x3c\xff\xf6\xec\xec\xfe\xdf\xff\x72\xb6\x1b\xad\x05\x8d\x34\x12\xad\x0f\x32\x13\x6e\x72\xb4\x65\x03\x9d\xfe\x48\xb1\xfa\x46\x83\xb6\xed\xd6\xb2\xe4\x35\x5b\xf1\xa4\x00\x0e\xde\x49\x77\x93\x3c\x55\xca\x96\xf6\x32\xdf\x23\x3a\x8b\xb5\x52\xac\x3c\x9a\xc0\x91\xd9\x08\x63\xb8\xc2\x8f\xb9\xd0\x99\x54\xf9\xd1\x81\xc3\x6d\x76\x44\x1d\x55\x4c\xef\x9c\xde\x3f\xf5\xcd\x14\xe3\x24\x2c\xed\x73\x48\x32\xd2\xd6\x87\x26\xac\x03\xfb\x21\x7c\xf1\x9d\xfe\xd4\x97\x68\x3c\x20\x2b\x19\x31\x06\xe6\x31\x9b\xfa\x4d\x23\xae\xd0\xad\xb7\xe1\xdb\x00\x54\xcb\x12\x84\x68\x3f\x3d\xce\x29\x89\x5f\xe7\x31\xec\x97\x38\xb7\x24\x40\xfb\x8a\xfe\xc9\xa3\x7c\x93\x47\xbc\x02\x64\x30\x7f\xfe\x45\x3c\x94\x07\xbd\x1c\xe4\xc0\xba\xea\xff\x1e\xef\xa7\x40\x9c\xb1\xb2\x4b\x53\x74\x29\xf9\x62\x0b\xaf\xec\xad\x4c\xa7\xee\xee\xf9\xda\x97\x46\x19\xe9\xae\x7e\xb3\x67\x2c\x22\x57\xc5\xde\xea\x74\x6a\x2f\x13\xc2\x60\xe2\xb4\xe0\x77\xbc\x68\x4f\x61\x24\xb7\x99\x5e\xfc\xf2\xe6\x34\x93\x65\xcd\x0c\x99\x52\xbb\x22\x46\x35\xf0\x1f\xf8\x1d\x57\xac\x80\x8b\xf7\xaf\x42\x2e\x47\xbb\x77\x1f\x5d\xbc\x7f\xf5\xe2\x6c\x82\xff\xfd\x9f\x17\xcf\xdd\x6d\xe6\xde\xd1\x0a\x47\x67\xf5\xb6\x5c\xc8\x20\xaa\xfe\x38\x50\x8b\x3e\xd3\x9a\xdb\xe3\x84\x1b\x5e\x14\xf8\x7f\x4b\xc2\xb3\x61\x02\xe2\x03\x30\x70\x43\x4d\x3e\xbe\xbf\x3a\x6e\x44\x65\x5e\xfc\xe5\xbb\x13\xb7\x65\xe9\xc1\xe0\xa3\x93\x1b\x77\xcc\x48\x4f\x23\x56\xf3\x8a\x2d\xe2\xd7\xab\x38\x5e\x0f\x31\x39\x9c\x65\x91\x9b\x2a\xba\x39\x6b\x4d\xe9\x21\xbe\x75\xb7\x79\x15\xe2\xb6\x55\xa5\xce\xd9\x17\x7f\x2d\xbc\xad\x85\x23\xaf\x6b\xa1\x44\xbe\xb2\x0b\xee\xc5\x2f\x6f\x0e\x3a\x79\x17\xbf\xbc\xf9\xc9\xf6\x08\x91\xef\x81\xd2\x7f\xe2\x6d\xdc\xe2\xc1\x8e\x9c\xab\xab\xa1\x39\x7c\x38\x54\xdb\x6f\x37\x5c\x7b\xc7\x7e\x0b\x14\x4e\x9d\x0f\xc0\x2a\x5f\x3d\x64\x4f\x6c\x59\x79\xb0\x62\x20\x55\x9a\x34\x8a\x24\x04\xe1\xe5\xbc\xe6\x15\x49\xb7\xac\xa2\xdb\xfa\xdb\x33\x48\xda\x9b\xbf\x1c\x63\xf2\x34\x6d\xd9\x4b\xb4\xb6\xa6\xf3\xe2\x97\x37\xfd\x57\xf4\xd9\x3a\x44\x92\x02\x9c\xde\xf4\x12\x12\xa8\x15\xaf\x99\xe2\xb0\x95\x8d\xad\x16\xfe\x46\x3b\x05\x33\x3c\xef\x9e\x68\xef\xd6\xf9\x24\x47\x34\xec\x0d\x6d\x5b\xd9\x90\x79\xc8\xd6\x92\x62\x19\x09\x86\xdd\x72\x60\xf9\x1d\xb3\xf7\xc3\xc9\x25\xc8\x8a\xde\x1c\x94\x80\x6a\xcf\xcd\x30\x1d\xde\x98\x82\xa1\x0e\x15\x2f\x4b\x6d\x82\xe4\xbf\xbd\xbc\xd6\x93\x30\x0e\x9d\xf7\xb6\x83\x75\x58\x1e\xf9\xad\x44\x1c\xcd\xde\x37\x3a\x3e\xe9\x65\x5f\x99\x41\xf7\x2c\xf9\x0b\x60\x50\xef\xa8\x82\x8a\xa5\x25\xcb\xee\xcd\x26\x97\xf6\x35\x37\x24\xeb\x74\x89\x9b\x33\x51\xb4\x20\xb6\x6f\x71\x81\x97\x05\x2d\xf5\x68\x0f\x8b\x2d\x61\x9b\x52\xcb\xb6\xae\x22\x13\xbd\x57\x42\xcf\x9e\x1a\x6f\x0d\x60\x8b\x94\x3f\x34\xff\x9f\x1f\xfe\xfe\xd6\xd5\x45\x25\xc0\xa8\x3d\x7a\x18\xf1\x9b\xd6\xdc\x79\x3f\x0b\xd5\x31\x3c\x82\xee\xae\x6b\x10\xee\x6c\x7e\x02\xcf\x3a\x8a\x91\x08\x8e\xd2\xa3\x46\x89\xfe\xbd\xf6\x03\xc7\xd8\x53\x7d\x9b\xc4\xfd\x1e\xee\x8a\x39\xa5\x9f\xc7\x16\x3c\x69\xd0\x28\x41\xaf\x47\x12\xc3\x7e\xcf\x50\x9d\x74\xcf\x82\x3d\xac\x62\xba\xd7\xfd\xd1\xb5\xd3\x3d\x48\x63\xab\xa8\x87\x6c\x30\x74\xfe\xfe\x40\xda\xe2\xf7\x27\xff\x1d\x00\x00\xff\xff\xcb\xbb\x55\xbb\x70\x74\x00\x00" func metadataviewsCdcBytes() ([]byte, error) { return bindataRead( @@ -109,11 +109,11 @@ func metadataviewsCdc() (*asset, error) { } info := bindataFileInfo{name: "MetadataViews.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0xd2, 0x39, 0xcc, 0x2f, 0xbb, 0x5a, 0xd5, 0x66, 0x28, 0xb5, 0x1, 0x38, 0xba, 0x22, 0x27, 0x53, 0x1c, 0xf8, 0x36, 0x6c, 0x19, 0xc5, 0x9b, 0x1f, 0xb1, 0xb1, 0xa5, 0xd5, 0xa7, 0xc9, 0x49}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0xb6, 0x59, 0x41, 0xb, 0x38, 0x9d, 0xb, 0xd5, 0xfd, 0xcf, 0xdb, 0x97, 0x74, 0x58, 0xc7, 0x27, 0xac, 0xda, 0x23, 0xa7, 0xe1, 0x10, 0xcb, 0xf4, 0x2b, 0xa2, 0x17, 0xe, 0xc, 0x90, 0x51}} return a, nil } -var _nonfungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5a\x5f\x73\x23\x37\x72\x7f\xe7\xa7\x68\xeb\xaa\xb2\xa4\x8b\xa2\xae\x2a\xa9\xa4\x8a\x75\x8e\xad\xb5\xac\x8b\xe2\x44\xb9\xda\xa5\x7d\x0f\xa9\xd4\x12\x9c\x69\x72\xe0\xc5\x00\x63\x00\x43\x9a\xde\xd3\x37\xcb\x5b\xbe\x58\xaa\x1b\xc0\xfc\x21\x67\x24\xca\x3e\x5b\x0f\xf6\x72\x06\x68\x74\x37\xfa\xcf\xaf\xbb\xe7\xe6\xf3\xcf\x27\x93\x3f\xfc\x01\x56\x05\xc2\xbd\x32\x07\x78\x34\xfa\xfa\xbe\xd6\x3b\xb9\x51\x08\x2b\xf3\x11\x35\x38\x2f\x74\x2e\x6c\xce\x0b\xd7\x8f\x46\xa7\xf7\xfc\x7a\x0d\x99\xd1\xde\x8a\xcc\x4f\x26\x44\x45\x6a\x8f\x76\x2b\x32\x04\x5f\x08\x0f\x42\xa9\x21\x9a\x69\x8f\x03\x57\x98\x5a\xe5\xf4\x60\x6b\x6c\x09\xde\x2c\x26\x0f\x5b\x10\x50\x3b\xb4\x70\x10\xda\x3b\xf0\x06\x72\xac\x94\x39\x82\x00\x8d\x07\x78\xbc\x5f\x35\x04\xe6\xe0\x0b\x94\xb6\xf9\x9d\xe8\xc9\xb2\x52\x58\xa2\xf6\xcc\x94\x3f\x56\xe8\x20\xc7\xad\xd4\x98\x43\x81\x16\x27\x93\x9b\x9b\x1b\xf8\x9a\x76\xc9\x4d\xed\x8d\x75\x30\xad\x14\x0a\x87\x20\xf2\x9c\x8e\xf4\x85\x74\xa0\xa4\xf3\x20\xb7\x70\x34\x75\x38\x82\x16\xe3\x67\xb3\x25\x6f\xbf\x86\x7f\x37\xae\xa8\x05\xfc\x9b\xd0\x5a\x68\xb8\x86\xc2\xfb\xca\x2d\x6f\x6e\x76\xd2\x17\xf5\x66\x91\x99\xf2\xe6\x07\x5e\x52\xf0\x8a\xb8\xeb\xad\x70\x5e\x0a\x0d\xff\xf9\x7f\xff\xab\x14\xda\xce\x3e\x7f\x90\xde\xa3\xe5\x8d\xbe\xb6\x1b\xa3\x48\x84\xb0\xeb\x0e\x3d\xc2\xfb\x42\x5a\x85\xc7\x91\x2d\x39\x7a\xfc\x97\x7f\x4c\xa7\xfc\x20\xac\x47\xf8\x56\x58\xe5\x50\x8f\xec\xf8\xe3\x4f\x61\xd9\xc7\xb8\xe9\xb6\x76\x5e\x6a\xf8\x56\x49\x8d\x23\x5b\x04\x2f\xf9\xb0\x55\xe6\xe0\x8f\x71\xdb\x9f\xa5\xd9\x0b\xad\x25\xbc\x17\x3a\x2b\xf0\xe7\x91\xad\x3b\x69\x3e\x48\x9d\x99\x9d\x96\xde\x34\x62\x69\xf9\x33\x7c\x93\x4b\x9d\xc9\x8f\x23\xfb\x36\xaa\x46\x27\x77\xac\x3f\xde\xf6\x0e\x2b\x03\x16\xb7\x68\x51\x67\xb8\x1c\xd2\xbb\xd1\xc4\xe1\x0d\xfd\xe7\x5a\x6f\x7d\xb4\xde\xfb\xd5\x1a\x2c\x3a\x53\xdb\xac\x63\xab\xc1\x74\x33\x63\xb1\x7d\x49\x36\x13\x6c\xd8\x62\x65\xd1\x21\x99\xa2\xd0\x6c\x7d\x52\x93\xd9\x81\x2b\x85\xf5\x8d\xe9\x2d\xc2\x11\x5f\x1b\xa5\x30\xf3\xd2\xe8\x35\xbc\x1b\x39\xa9\x3d\x84\xe8\x3b\x6f\x2c\xba\x68\xf3\x6f\x5c\xb4\xef\x44\x65\x31\x79\xf0\x20\x75\xa6\xea\x9c\x17\x6d\xf1\x00\xdb\x5a\xf3\x3b\xf6\x0d\xa1\xc8\x71\x89\x1f\x73\xd0\x68\xe9\x11\x0a\x27\xd5\x71\x52\x9a\x3d\x82\x27\x87\x73\xc4\xb2\xd0\x39\x98\xda\x83\xd9\xf2\xea\xee\x11\xcc\xf9\x5f\xac\xd9\xcb\x1c\xed\x9a\x57\xae\xdf\x61\x86\x72\x4f\x3f\xcf\x15\xe6\x58\x0e\xd7\x7d\x02\x39\x66\x4a\x58\xec\x30\x77\x90\xbe\x00\x67\x4a\x84\xca\x22\x13\xad\x8c\x63\x85\xe5\x92\x57\x4c\xa2\x7e\x7f\xac\xa5\x45\x66\xaa\xd5\x1e\xc9\xb1\x35\x2c\x5b\x86\xd6\x0b\xa9\x41\x8b\x52\xea\x1d\x13\xda\x60\x21\xf6\xd2\xd8\x26\x3a\xb9\x05\xb3\x74\x04\x62\xc1\x61\x25\xac\xf0\x08\x1b\xcc\x44\x4d\x6c\x7a\xd8\xc9\x3d\x33\xb9\x47\x65\x2a\xb4\x8e\x8f\x13\x1b\xa9\xa4\x3f\x86\x10\x43\xd1\xa1\xe5\x3e\xf0\x96\x09\x4d\xd7\x02\x42\x1f\x3b\x16\xd1\x44\x17\xa6\xe2\xfa\x8a\x79\x7b\x84\xda\x11\x9f\x49\x6d\x8e\x39\x6e\x97\xcc\xf9\xa2\x1d\xdd\x03\x5d\x75\xdf\x8a\x1c\x1f\xe9\x50\xe7\x13\xda\x65\xc3\x25\xa4\x5b\xac\x10\xed\xb5\x37\xd7\xf4\xff\x39\xeb\x97\x2e\x94\x54\xa1\x77\x24\x04\x1f\x42\x61\x90\x55\x2f\x20\x43\xa2\xaa\x40\x61\xbe\x43\x3b\x39\x33\xd8\x95\xe1\xa3\x92\x5d\x93\x35\x69\xe3\x0b\xb4\xcc\xe2\xbc\x89\xc3\x1c\x53\x1d\x89\x7d\x64\xd2\xb9\x15\xc1\xe4\x1e\xef\x57\x93\xad\x35\x65\x0c\xc3\xed\xf5\x71\x60\xd6\x90\x51\x02\xa0\x85\x39\x56\xc6\x49\xdf\xe8\x17\x8c\xee\x9d\xf5\xc6\x4d\xfa\x77\x9f\x19\x52\xb2\x0f\x66\xe1\xad\xd0\x6e\x8b\x76\x31\x99\x7c\x7e\x33\x99\xc8\xb2\x32\xd6\xc3\xd5\xf7\x12\x0f\xe4\x63\x6a\x8f\xf6\x2a\x84\x74\x72\xaf\x92\x8c\xa5\x9b\x25\x5a\xe5\x2f\xe0\xbf\xf8\xc8\xee\x5b\x32\x54\xa5\x20\x10\x65\x22\x7c\x5f\xe9\x8e\x43\x26\x68\xf3\x9a\x70\x70\xc0\x28\x55\xcf\xfc\x43\x76\xe1\xd8\xd0\xdd\xc0\x41\x4b\x64\x19\x3a\x37\x15\x4a\xcd\x06\xb8\x82\xd3\xac\xba\x84\xae\x68\xf0\x69\x32\x01\x00\x20\xd6\x6e\x35\xa0\xf6\xd2\x47\xde\xb6\xc6\x86\x00\xc0\x06\x50\x60\x73\x3b\x42\xb1\x9f\x07\xb3\xe1\x1b\x12\xf0\xbd\xa8\x95\x67\x4a\x5d\x76\xba\xe4\xfe\x1a\x77\x5f\x76\x5e\x5d\xe5\xc2\x47\xf3\x0e\xff\x06\xdc\xb3\x57\xf0\x32\xbe\x83\x67\x8f\xfb\x8e\x37\xb5\x87\x7d\xb3\x0f\xfa\x16\xfe\x1c\x21\x60\x29\x3d\x1c\xc8\xa6\x48\xcc\x12\xbd\xc8\x85\x17\x24\x64\x0a\xca\x2e\x32\x91\x37\xf4\x1e\x82\x03\x1b\xad\x8e\xb0\x41\x26\xe1\x31\x87\xcd\x91\xed\x32\xa9\x6c\x4d\xcf\x1f\xef\x57\x81\x9b\x7c\xdd\xd8\x68\x43\x27\x78\x93\x86\x75\x58\xb2\x4e\x42\xe4\x6d\x0e\x0a\x90\x01\x83\x1b\x91\x00\x07\x71\xce\x0f\x19\x67\x57\xfe\xca\x46\x7d\xb9\x4a\x94\x25\xc5\x04\xbe\xa9\x96\x39\x19\x9f\xb4\x7e\xe2\xde\x74\x02\xb7\x6b\x28\xa7\x40\xc7\xa2\x66\x26\x0f\x86\x40\x41\xbf\xb3\x1c\x8c\x0d\xbc\x15\x82\x8e\xc4\x4c\x0a\xd5\x8a\x12\x2e\xa9\xa1\x18\xe5\xe9\x1c\x46\x4a\x2f\x4c\x1e\xdd\x65\x43\xd1\x53\xb1\xdc\x3b\xf4\xbc\xf6\x5c\x2b\x0d\xb5\xbe\x0a\xf8\x9a\x4b\xf1\x11\x1d\x45\x66\x67\x02\x57\xbe\x90\x36\xbf\xae\x84\xf5\x47\x90\x3a\xc7\x9f\x48\x21\x74\x7f\xa5\x21\xbc\x60\xc3\x19\xac\xb0\x86\x1c\x99\xde\x8f\x35\xda\x23\xbf\x8c\xfa\x6e\xad\x23\x85\xa6\x90\x1a\xfb\xba\x5b\x24\x22\xe7\x26\xba\x6f\x8d\x33\x9f\x52\xd8\x5f\xc2\x7b\x6f\xa5\xde\xcd\x41\xe6\x4b\xf8\xee\x41\xfb\x7f\xfe\xa7\x39\xd4\x75\xf7\x17\x1f\xb1\x84\xdb\x3c\xb7\xe8\xdc\x97\xb3\x33\xb2\x7b\x19\x52\x37\xf4\xed\x6d\xfa\x01\xf4\xd6\xbf\xc3\xed\x12\x44\xed\x8b\x69\x78\x3c\x83\x7f\xf8\x74\x1a\x15\x16\x8f\xf7\xab\xa7\x40\xf7\x13\xff\x97\xfe\xd8\x2f\xfa\xbc\x06\x72\x8b\x1d\xfa\xd5\xb1\xc2\xe9\x6c\x21\x73\xba\x9a\xad\xa4\x90\x4e\x2c\xc7\x05\x32\x4f\x32\xc4\x07\xf4\xa3\x11\x24\x3e\xe3\x5f\x5f\x2e\x44\x10\x2b\x9c\xfe\x34\x19\xf4\x59\xe9\x1a\x17\x63\x47\x15\x21\xfe\xd0\xf3\x14\x96\xf4\xbc\xd9\x28\x75\x2e\x33\xe1\x93\x17\x12\xeb\xc4\x5d\x60\x69\xde\x01\x34\x67\x78\x25\x9e\x16\x7c\xac\xa1\xcc\x97\x3d\xef\x59\x06\x6d\xfb\xee\xbb\x87\xbb\x44\xa2\x05\x32\x83\x7b\xa1\x76\xb5\x50\xea\xd8\x73\x9a\xbe\x99\x70\x54\x39\xe3\x47\x3a\xd0\xc6\x07\x8c\x45\x57\x6e\x6a\xed\xdf\x38\x06\x76\x62\x87\x73\x58\x13\xf9\x75\xe3\x37\x6b\x2d\xd5\xfa\x25\xf3\x4b\xa1\x58\x5f\x6c\x80\x74\x48\x6b\x7f\x73\xa8\x22\x9e\x23\x0d\xa4\x55\xb3\xc1\x8b\x1b\xbb\xb5\x98\xb4\x91\x0b\xa2\x41\xa5\xc0\x43\xb8\x45\x74\xbf\xea\x12\xbb\x07\x3d\x7f\x85\x5d\xad\x9f\xef\xfd\xbb\xdd\xd5\xfc\x75\x97\x75\x97\x78\xb8\xf8\xb2\xbc\xe9\x5e\x55\xcb\xdf\xc8\x65\x3d\xf4\xcb\xea\x98\x69\x1c\x94\x75\x00\xd4\xb1\x78\x1e\x65\xf3\x1c\xc2\xd3\xfe\x3e\xcc\x58\x9c\xe2\x8d\x74\x78\xad\xe5\x8f\x35\xc2\xc3\x1d\xe7\xf5\x04\xfb\xd2\x8a\xee\x31\x0a\x7d\x47\xe6\x3e\x95\xe1\x40\x21\x6a\x6f\x4a\xe1\x65\xc6\x8e\x87\x7b\x0e\xe5\xb2\x44\x10\x1d\x9e\xe9\x92\x9d\xb7\xe6\x18\x73\x69\x37\x99\x30\x2a\x97\xac\x00\x91\x2e\x38\x96\x4b\x79\x2a\xd4\x9a\x7c\x10\x6e\xcb\x19\xb2\x9d\x68\x08\x1a\x91\x56\x0a\x2e\xee\x84\xdd\xd5\xdc\x35\x18\x12\x2e\x6c\x4e\x35\xdd\x5d\xe2\x68\xda\x0a\x0c\x5f\x80\x43\xd5\x0d\xac\xfd\xe7\xf4\x6c\xd6\xd7\x4a\x66\x51\x78\xfc\xa6\xac\xfc\xb1\x83\x7f\xc3\x53\x66\x09\xe9\x55\xaf\x2e\x8a\x1a\x4c\xd9\x97\xcb\xc7\xb3\x5b\x49\xfe\x63\xd1\xd7\x56\x73\x9e\x4d\x19\x5d\x70\xd3\xa1\xcd\xba\x78\x0c\x28\xe9\xc0\x38\xca\x75\x49\xf4\xc8\x7d\x15\x68\xc1\x6d\xcb\xd6\xa9\x3b\x73\xed\x12\xf9\x91\xee\x94\xa1\x41\xad\x52\x42\x1c\x54\xc2\x74\xb6\x84\xaf\x3e\xb5\xbf\x9f\x3a\x49\x8f\xfe\xb8\x96\xec\x3f\xa2\x3f\x8b\xae\x56\x9e\x92\xdf\x7f\xa0\xde\xf9\x62\x3a\x83\x2f\xbe\x80\x3f\x2e\xe1\x6c\x25\xfd\x5d\x0d\xe5\xd8\xc5\x20\x3f\x4b\x36\xb7\xf0\x2a\xef\x4a\x4e\x68\x4a\x80\x36\xfa\xfa\x67\xb4\x06\x14\x1f\xbb\xb8\x1a\x3c\x6f\x91\x19\x9d\x09\x3f\xbd\x82\x5b\xd0\x78\x20\xb0\x76\x4e\x90\x9d\x9a\xf1\x6a\xe5\x8f\x9f\x5d\xcd\xc6\x64\x94\xee\x7d\x5d\x51\xd1\x82\xf9\xe3\xfd\x8a\x73\x7d\x08\x3f\x6c\x6c\x4d\xfa\x9f\xfd\x86\xb2\xe7\x06\x83\x1b\xb9\xc0\x49\x88\x4a\x14\xab\x8f\x15\x7e\xf1\xbc\x0e\xfa\x5c\x76\x40\xca\xb9\xc0\x7d\xd5\xad\xfa\x11\x9d\xd5\x35\x7c\xfe\xf3\x94\x2e\x64\xe0\x69\xd2\xfe\xab\xe7\x10\x7f\x46\xef\x20\x15\xb8\x7c\x70\xc2\xb1\xa1\x89\x93\x4b\x8b\x99\x57\x47\x72\xad\x4b\xdc\x2a\x97\x2c\x90\xb0\x47\x2e\x6b\x94\x02\x57\x6f\x1e\xef\x57\xef\xe1\x23\x1e\x43\xdd\x42\x62\xbd\xe8\x52\x0d\xd0\xdc\xa1\xbf\xdd\x0b\xa9\x28\x54\xbc\x0f\xa4\xc8\xab\x3e\xad\xd8\x4a\xfe\x3b\x04\xa7\xff\x39\x75\xac\xc8\xcf\xa7\xe7\xe4\xe6\xf0\xdc\x29\x7d\x52\x03\xa1\x27\xff\xa9\xd8\xf0\xd6\x50\x1d\x15\x63\xac\xe3\x56\x8d\xa9\x58\x64\xd5\xef\x64\xc5\x66\x44\x56\x18\xe3\x7a\xf2\x42\x61\x0e\x14\xcb\x52\x58\x73\xf5\x26\x68\x3e\xc7\x0a\x75\x4e\x60\xd2\x68\x38\x70\xeb\xb9\x77\x4e\x04\x43\xfd\xfc\x71\x6f\x2c\xe0\x4f\x82\x2a\xfd\x39\xc8\x2d\xac\x49\xbd\xeb\xe8\xd0\x7b\xa1\x6a\x9c\xc3\xa6\xf6\xb0\x96\xf9\x9a\x4d\x5d\xbf\x09\x1d\x67\x66\xb0\x1f\xc7\x85\x8e\xec\xc2\xa1\x90\x59\x11\x14\xb0\x8d\x1a\xe1\xce\x91\x49\x9a\x95\x0c\x4a\x2c\x27\x36\x01\x57\x39\x6e\xa9\x30\xbf\xea\xd1\x7b\xd8\xc2\x26\x68\x2b\x42\x90\xd8\x50\x69\xcd\x8c\x4b\xbd\x10\x6c\x05\x38\xa9\x77\x2a\xb0\x45\x9c\xfc\x40\x2e\x11\x4e\xeb\x51\xa5\x8d\x0b\x58\xd1\x05\x15\xa8\x2a\x17\x93\x81\x83\x43\x61\xe8\x28\xfd\x86\x3c\xc9\x62\xd0\xa0\x4f\xfd\x34\x65\xcc\x47\x52\x2d\xa5\xff\x71\x3b\xae\x84\x15\x25\x84\x08\x44\x2e\x4a\x56\x96\x60\x5b\x8e\x4e\x5a\xcc\xcf\x52\x54\xdc\x44\xa9\x92\xa7\x07\x79\xda\x10\x2d\x60\x63\xac\x35\x87\x0b\x7c\xc7\x79\x5b\x67\xbe\xe6\x0e\x6e\x6c\xd7\xa6\xca\xc2\xe2\x8f\x35\x3a\x0a\x5c\xe4\x18\x8b\xd1\x2c\xb4\x43\x1f\x9c\x24\x46\xd1\x55\x04\xb3\x0d\x1c\x83\xe5\x58\x51\xf6\xe5\xb0\x0b\x69\xa9\x26\xfd\x28\xf2\x34\x08\xe9\x0c\x94\x98\x4b\xe1\xbb\xed\x9b\xa6\x6b\x93\x60\x50\xb7\x3c\x69\x23\xf3\x6b\x10\x5f\x6a\xf0\xf6\xf1\x1d\xfc\x15\x63\x73\x25\x35\xf6\x52\x13\x27\x15\xcf\xa9\x90\xe8\x90\x4a\xfd\x06\x82\x9e\x14\xb5\xf4\xae\xd9\xde\x25\x1d\x29\x45\xcb\x12\x8e\xd7\x87\xee\xa8\x37\x11\x50\x29\xe9\x3c\x52\x75\x9e\xde\xab\x48\x30\xb5\x0c\x63\xc9\xdf\xbb\xf8\x86\x57\x8b\xa5\xd9\x63\xd3\x99\x6f\x78\xee\xe4\x07\x82\x41\x61\xd1\x29\x08\xea\x7b\x9c\xef\x64\xb3\x0a\x33\xb9\x3d\x52\x41\xc4\x9d\x17\xda\xf2\x70\x47\xfe\x1a\x6a\x11\x4b\xab\x5e\xf2\x84\xc4\x23\x01\xfa\x41\xe3\x6e\x84\x18\xe0\x7a\xd0\xcc\xbf\xfa\x44\xc6\x16\xa8\xf5\x1a\x4d\x4d\x21\xfb\x5c\x6e\x48\x15\x65\xb0\xf6\xb4\x65\xda\x65\x33\x1a\xfa\x32\x9e\xf4\x2a\xc4\x25\x73\x02\x5a\x5d\x6a\x17\xa2\x8e\x64\x96\x8b\xb4\x37\x08\xd8\xd6\x7c\x6d\x99\x1e\x2a\xd3\xe9\xf3\xb8\xa2\xe1\x67\xe1\x4d\x28\xc4\xa6\xb3\x17\x20\xc5\xac\xc1\x5c\x3c\xd7\x11\x25\xb7\x79\xfb\xc1\xe3\xe1\x0e\xa6\x2f\x00\x8a\x56\xf8\x57\x1c\x3d\x40\x93\xdd\xf1\xb4\x01\xd0\x02\xdb\x91\xae\x4e\x23\x77\x2a\x3e\xe2\x83\x50\x8a\x87\xee\x00\x43\x9e\x7e\x4b\xe7\xb4\x51\xd0\xa9\x54\xba\x3c\x3d\xbd\x32\x92\x45\xef\x75\xc9\xe3\x7e\x59\xc8\x4a\x43\xa8\xd3\x92\x34\xc5\x06\xcf\x4d\xc4\xe8\xfc\xfd\x1a\x8e\xfd\x5e\xe4\x79\xd7\xed\xbf\x1e\xf1\xaf\x98\xba\x42\xeb\x7d\xd5\x7a\x68\x3c\x66\x34\x65\xc4\xf7\xd3\xb8\x33\x78\xcd\x49\x85\xc7\x69\xa5\x0f\xd3\x5d\x83\x5f\x44\x18\x31\xc7\x51\x50\x98\x53\xb7\x20\xca\x26\xe9\xe9\xdc\xca\xbb\x8b\x70\x63\x20\x52\x8a\xaa\x0a\x7d\x9b\x8d\x31\x0a\x05\x8f\x00\x9b\x86\x1b\x23\x10\xd9\xa7\x97\xfe\x2c\x66\x92\xea\xf0\x04\xa9\x49\x7f\x2f\xc2\xcc\x33\x09\x3b\x38\xf3\xad\x31\xea\x04\x41\xbe\x8b\xe2\xa7\xf8\x1a\x02\x2a\x5f\xd1\x4e\xee\x51\xc7\xaa\xde\x45\xc1\x23\xf6\x1d\x0f\x90\xb7\x83\x95\x68\xd8\xdc\xce\xee\xe2\x24\xa1\x03\x8e\xc0\xdb\x1a\x89\x76\xc4\x60\xe3\x80\xe6\x56\x37\x37\x34\x72\x0b\x51\xcf\x03\x6a\x6e\xef\x91\xb8\x8a\xfa\x3d\x85\x45\x7d\xd2\x83\x7a\x1e\xad\xf7\xe8\x9f\xb3\xa0\xe8\x53\xdf\xfc\x96\x34\x40\xb8\x6d\x23\xb2\x8f\x07\x61\x73\x77\x9d\x99\xb2\x12\x5e\xc6\xd1\xa7\x45\xe1\xd2\x24\xe1\x05\x67\x6c\xbd\xe7\x2f\xf5\x46\xc9\xac\x93\x0b\x2e\x74\x8c\x97\xcc\x28\x95\xec\x4b\x8a\x29\x2f\xae\x7e\xb8\x63\x33\x4b\x75\xcc\x28\x33\x5b\x63\xbf\x11\x59\xf1\x70\x37\xfd\x00\xdb\x25\x3f\x9a\x36\x99\x8e\x94\x36\x5b\xc2\xf7\x46\xe6\xcf\x1f\x18\xa0\x28\xc1\xc3\x0f\x5d\x50\xc8\x98\x90\x20\xe0\xa9\xe6\xdf\x85\xb1\x76\x33\x36\x0b\xe6\xab\x33\x8b\xfe\xf4\x33\x83\xd8\xa6\x6a\x46\x8e\x64\x3b\xcd\x67\x35\xd0\x0e\x64\xc6\x66\x92\x0b\x78\x2f\xb9\x10\xeb\x4f\x2a\xa5\x2e\xd0\xca\x88\xe4\xda\xae\x6a\x2c\x58\xc3\x4c\x49\x23\x89\x4a\xa1\xa3\x3b\xa0\x6e\x47\xd7\xfd\x79\x37\x85\xd2\xdc\xb0\xaf\x76\xe8\x39\xc3\x5d\xb4\x30\x80\xe6\xce\x5b\xe7\x80\xce\x88\x34\x88\x19\xbe\xd6\xe1\x7e\x1d\xf1\x4c\xf1\xcf\xbd\x26\x25\x74\xbb\x12\x09\x3a\xcc\x9b\x44\x31\x3f\xb3\xd2\xf9\x70\x93\xb3\xd3\x51\x3b\xc9\x2d\xf7\x12\x55\xde\x4e\x21\x85\xd4\xc3\x55\x7e\x0f\x64\xf6\x6a\xdd\x9e\xfd\x08\xcb\x2d\x70\x72\x59\x47\x9e\x10\xec\x66\x09\xc3\x95\xc4\xd3\xb3\x79\x6e\x2c\xcd\xc5\x4f\x48\xa4\x4f\xa6\x34\x06\x24\x5f\x48\x74\xa4\xe6\xd3\xb9\xdf\x2b\x7c\x7c\x70\x5e\x75\x0a\x22\x2d\x0e\x60\xc8\x4e\x19\xd2\xfd\x5a\x20\x54\x08\x51\xa6\xde\xa7\x35\xed\x78\x7d\x80\x54\xaa\x4e\xc6\x77\x71\x6e\x51\x25\x01\x5a\xa1\x0e\xe2\x18\xc0\xde\x56\x6a\xa1\xb8\xd7\x2c\xb5\xe8\xc9\xde\x21\xde\x8e\xd5\x49\xf3\x0d\xa7\xa5\x74\x8e\xa7\xa4\x61\x84\x5b\x3b\x6f\xca\x26\xf0\x53\x61\x43\xa9\x67\x83\x6d\x05\x34\x44\x9b\x28\x16\xc2\xe6\xa1\x59\x40\xd1\x42\x86\x26\xef\x49\xa9\x34\x8c\x18\x4f\xa7\x10\xcc\xe6\x33\x80\x31\xbc\x6f\xf1\x62\xf8\x1d\x27\x37\x66\x04\x2c\x9e\x8e\x2a\x2e\x80\x8b\xe7\x4d\x33\xfe\xf6\xa6\x34\xb5\x4e\xd0\x27\x0c\x60\xda\x8e\xfd\x0b\x85\xd0\xad\xe6\xab\xdc\x71\x7c\xe9\x8d\x11\x9d\xfc\x19\xcf\x67\x45\xaf\x4b\x3c\xc3\xc5\x7c\xa3\x0d\xf6\xe4\x45\x68\xf3\x8e\x49\x79\xab\x94\x39\x90\xc3\x06\x38\xd3\x7c\xf5\x42\x21\xd2\x23\x7f\x9b\xe4\x0b\x6b\xea\x5d\xc1\x9c\xd2\xc5\xf6\xf6\x9b\x6d\x08\x1a\xec\x9f\x0f\x77\xe1\xfb\xad\x6e\xbc\x49\xdf\xfe\x6c\xa5\x3d\xd9\xda\x7e\x0d\xa4\x8c\xc8\x9b\xc1\xbc\xc5\xf8\x35\xa3\x66\x90\x5e\x1a\x7b\xfc\xd5\x09\xf3\x44\x51\x27\x1a\x8a\x54\xbe\xc5\xe3\x74\x3b\x1b\x53\xd4\x5b\xce\xaa\x6e\xa4\x9f\x78\x91\x51\x3c\xb4\x45\x35\x7f\xa8\xc1\x66\xc0\x05\xbc\x0c\x65\x5b\x3b\xf2\xeb\x53\x99\x9f\xf4\xc6\xda\xaf\xbf\x12\x54\x8c\x57\xcf\x0d\x38\x76\x4e\xa2\x53\x09\x2d\xb3\xc5\x4b\xd5\x7f\x6a\x69\x25\x88\xa7\xb7\x1e\xe4\x80\x28\x9d\xbe\x60\xd2\x41\x86\x74\x03\x8b\x31\xcb\x6f\x5a\xa6\x43\x1f\x9f\xfc\x72\x0c\x73\x49\x5f\x6b\xa4\x03\x10\x4b\x6e\xaa\xff\xb5\x54\x33\xf8\xdb\xdf\xd2\xa3\x2f\x63\x5b\x40\xe6\x97\x4f\x21\xda\x80\xbd\x68\xf8\x5d\xc2\xd7\x42\x93\xf2\xc3\x13\xbe\xec\xce\xf7\x9f\x2f\x0c\x5b\xfa\xed\x84\xa0\xc9\xde\xc7\x3b\x2f\x15\xf6\x41\x98\xcf\x5e\xd9\x53\x68\xda\x49\xa5\xf0\x59\x91\x9a\x48\x4d\xd3\xa6\xb5\xd1\x97\x8e\x7f\xd5\xb1\x57\x17\x06\xe2\xd7\x4f\x1e\xa3\xfe\xb8\x3d\x72\x56\x08\x3d\x37\x6c\x1c\xa9\x98\x86\xc6\x88\xa3\x67\xfc\x3e\x33\xc3\x90\x29\xc9\x62\xfb\xc3\xa1\x5f\x62\xbc\xaf\x9b\xa4\x71\x21\xf0\xa7\x8b\x3a\x5b\xbf\x60\x66\xf6\xaf\xad\x31\x16\x62\x8f\x7d\x1d\xa7\x5e\xd7\x69\x0d\xcd\x9f\xb0\xb9\x00\xec\x03\xc7\x74\xb3\x7f\xfa\xfb\x4c\xd5\xce\x59\x1c\x1f\x74\x9e\x0d\x73\x7f\xeb\xcb\xf8\x7d\x47\xba\xcf\xb4\xd6\x5e\xef\xa4\xa9\xd4\x6c\xa3\x4b\xaf\xb9\xf0\x2b\xbf\x0b\xe8\x24\x38\xbd\xf5\xab\x66\xd6\xd3\xcd\x72\x27\xd3\xae\x1e\x6c\x69\xf2\xda\x49\x4e\x13\xd6\x8a\x63\x6a\x83\xad\xba\x6d\xb0\x91\xb2\x38\x7e\x6f\x1b\xbf\xe2\xbb\x2c\x38\xb4\x1c\x87\x7e\xc9\x40\xc5\x32\x1c\x3a\x06\xc2\x46\x6b\x99\xdc\x85\x88\x70\x70\xec\x53\x83\x73\xd3\xfc\x6d\xec\xf1\xd7\xd9\x62\xb2\xbe\xa7\xc9\xff\x07\x00\x00\xff\xff\x5f\xfd\x7b\xd8\x18\x34\x00\x00" +var _nonfungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5a\x5f\x8f\x23\x37\x72\x7f\xd7\xa7\x28\xef\x01\x59\xc9\xd0\x6a\x0e\x48\x90\x00\x42\x36\xf6\xac\xc7\x73\x99\x38\x99\x1c\x76\x65\xdf\x43\x10\xac\xa8\xee\x92\x9a\x5e\x36\xd9\x26\xd9\x92\xe5\xbd\xfd\x66\x79\xcb\x17\x0b\xaa\x48\xf6\x1f\xa9\x7b\xa4\x59\xdb\x41\x32\x0f\xf6\xaa\xbb\x59\x2c\xd6\xdf\x5f\x55\xf1\xe6\xcb\x2f\x27\x93\x3f\xfc\x01\x56\x05\xc2\xbd\x32\x07\x78\x34\xfa\xd5\x7d\xad\x77\x72\xa3\x10\x56\xe6\x03\x6a\x70\x5e\xe8\x5c\xd8\x9c\x3f\x5c\x3f\x1a\x9d\xde\xf3\xeb\x35\x64\x46\x7b\x2b\x32\x3f\x99\x10\x15\xa9\x3d\xda\xad\xc8\x10\x7c\x21\x3c\x08\xa5\x86\x68\xa6\x35\x0e\x5c\x61\x6a\x95\xd3\x83\xad\xb1\x25\x78\xb3\x98\x3c\x6c\x41\x40\xed\xd0\xc2\x41\x68\xef\xc0\x1b\xc8\xb1\x52\xe6\x08\x02\x34\x1e\xe0\xf1\x7e\xd5\x10\x98\x83\x2f\x50\xda\xe6\x77\xa2\x27\xcb\x4a\x61\x89\xda\x33\x53\xfe\x58\xa1\x83\x1c\xb7\x52\x63\x0e\x05\x5a\x9c\x4c\x6e\x6e\x6e\xe0\x1b\x5a\x25\x37\xb5\x37\xd6\xc1\xb4\x52\x28\x1c\x82\xc8\x73\xda\xd2\x17\xd2\x81\x92\xce\x83\xdc\xc2\xd1\xd4\x61\x0b\xfa\x18\xbf\x98\x2d\x79\xf9\x2b\xf8\x17\xe3\x8a\x5a\xc0\x3f\x0b\xad\x85\x86\x57\x50\x78\x5f\xb9\xe5\xcd\xcd\x4e\xfa\xa2\xde\x2c\x32\x53\xde\xfc\xc8\x9f\x14\xfc\x45\x5c\xf5\x46\x38\x2f\x85\x86\x7f\xfb\xef\xff\x52\x0a\x6d\x67\x9d\x3f\x48\xef\xd1\xf2\x42\x5f\xdb\x8d\x51\x74\x84\xb0\xea\x0e\x3d\xc2\xbb\x42\x5a\x85\xc7\x91\x25\x39\x7a\xfc\x87\xbf\x4d\xbb\xfc\x28\xac\x47\xf8\x4e\x58\xe5\x50\x8f\xac\xf8\xe3\xcf\xe1\xb3\x0f\x71\xd1\x6d\xed\xbc\xd4\xf0\x9d\x92\x1a\x47\x96\x08\xfe\xe4\xfd\x56\x99\x83\x3f\xc6\x65\x7f\x92\x66\x2f\xb4\x96\xf0\x4e\xe8\xac\xc0\x5f\x46\x96\xee\xa4\x79\x2f\x75\x66\x76\x5a\x7a\xd3\x1c\x4b\xcb\x5f\xe0\xdb\x5c\xea\x4c\x7e\x18\x59\xb7\x51\x35\x3a\xb9\x63\xf9\xf1\xb2\xb7\x58\x19\xb0\xb8\x45\x8b\x3a\xc3\xe5\x90\xdc\x8d\x26\x0e\x6f\xe8\x3f\xaf\xf4\xd6\x47\xeb\xbd\x5f\xad\xc1\xa2\x33\xb5\xcd\x3a\xb6\x1a\x4c\x37\x33\x16\xdb\x97\x64\x33\xc1\x86\x2d\x56\x16\x1d\x92\x29\x0a\xcd\xd6\x27\x35\x99\x1d\xb8\x52\x58\xdf\x98\xde\x22\x6c\xf1\x8d\x51\x0a\x33\x2f\x8d\x5e\xc3\xdb\x91\x9d\xda\x4d\x88\xbe\xf3\xc6\xa2\x8b\x36\xff\xd2\x45\xfb\x4e\x54\x16\x93\x07\x0f\x52\x67\xaa\xce\xf9\xa3\x2d\x1e\x60\x5b\x6b\x7e\xc7\xbe\x21\x14\x39\x2e\xf1\x63\x0e\x1a\x2d\x3d\x42\xe1\xa4\x3a\x4e\x4a\xb3\x47\xf0\xe4\x70\x8e\x58\x16\x3a\x07\x53\x7b\x30\x5b\xfe\xba\xbb\x05\x73\xfe\x67\x6b\xf6\x32\x47\xbb\xe6\x2f\xd7\x6f\x31\x43\xb9\xa7\x9f\xe7\x02\x73\x7c\x0e\xd7\x7d\x02\x39\x66\x4a\x58\xec\x30\x77\x90\xbe\x00\x67\x4a\x84\xca\x22\x13\xad\x8c\x63\x81\xe5\x92\xbf\x98\x44\xf9\xfe\x54\x4b\x8b\xcc\x54\x2b\x3d\x3a\xc7\xd6\xf0\xd9\x32\xb4\x5e\x48\x0d\x5a\x94\x52\xef\x98\xd0\x06\x0b\xb1\x97\xc6\x36\xd1\xc9\x2d\x98\xa5\x23\x10\x0b\x0e\x2b\x61\x85\x47\xd8\x60\x26\x6a\x62\xd3\xc3\x4e\xee\x99\xc9\x3d\x2a\x53\xa1\x75\xbc\x9d\xd8\x48\x25\xfd\x31\x84\x18\x8a\x0e\x2d\xf7\x81\xb7\x4c\x68\x52\x0b\x08\x7d\xec\x58\x44\x13\x5d\x98\x8a\xeb\x0b\xe6\xcd\x11\x6a\x47\x7c\x26\xb1\x39\xe6\xb8\xfd\x64\xce\x8a\x76\xa4\x07\x52\x75\xdf\x8a\x1c\x6f\xe9\x50\xe7\x13\x5a\x65\x83\x12\x92\x16\x2b\x44\xfb\xca\x9b\x57\xf4\xff\x39\xcb\x97\x14\x4a\xa2\xd0\x3b\x3a\x04\x6f\x42\x61\x90\x45\x2f\x20\x43\xa2\xaa\x40\x61\xbe\x43\x3b\x39\x33\xd8\x95\xe1\xad\x92\x5d\x93\x35\x69\xe3\x0b\xb4\xcc\xe2\xbc\x89\xc3\x1c\x53\x1d\x1d\xfb\xc8\xa4\x73\x2b\x82\xc9\x3d\xde\xaf\x26\x5b\x6b\xca\x18\x86\x5b\xf5\x71\x60\xd6\x90\x51\x02\xa0\x0f\x73\xac\x8c\x93\xbe\x91\x2f\x18\xdd\xdb\xeb\xa5\x9b\xf4\x75\x9f\x19\x12\xb2\x0f\x66\xe1\xad\xd0\x6e\x8b\x76\x31\x99\x7c\x79\x33\x99\xc8\xb2\x32\xd6\xc3\x8b\x1f\x24\x1e\xc8\xc7\xd4\x1e\xed\x8b\x10\xd2\xc9\xbd\x4a\x32\x96\x6e\x96\x68\x85\xbf\x80\x7f\xe7\x2d\xbb\x6f\xc9\x50\x95\x82\x40\x94\x89\xb0\xbe\x92\x8e\x43\x26\x68\xf3\x9a\x70\x70\xc0\x78\xaa\x9e\xf9\x87\xec\xc2\xb1\xa1\xbb\x80\x83\x96\xc8\x32\x74\x6e\x2a\x94\x9a\x0d\x70\x05\xa7\x59\x75\x09\xdd\xa3\xc1\xc7\xc9\x04\x00\x80\x58\xbb\xd5\x80\xda\x4b\x1f\x79\xdb\x1a\x1b\x02\x00\x1b\x40\x81\x8d\x76\x84\x62\x3f\x0f\x66\xc3\x1a\x12\xf0\x83\xa8\x95\x67\x4a\x5d\x76\xba\xe4\xfe\x12\x57\x5f\xb7\x5f\x5d\xe5\xc2\x47\xf3\x0e\xff\x06\xdc\xb3\x57\xf0\x67\xac\x83\x27\xb7\xfb\x9e\x17\xb5\x9b\x7d\xbb\x0f\xf2\x16\xfe\x1c\x21\x60\x29\x3d\x1c\xc8\xa6\xe8\x98\x25\x7a\x91\x0b\x2f\xe8\x90\x29\x28\xbb\xc8\x44\xde\xd0\x7b\x08\x0e\x6c\xb4\x3a\xc2\x06\x99\x84\xc7\x1c\x36\x47\xb6\xcb\x24\xb2\x35\x3d\x7f\xbc\x5f\x05\x6e\xf2\x75\x63\xa3\x0d\x9d\xe0\x4d\x1a\xd6\xe1\x93\x75\x3a\x44\xde\xe6\xa0\x00\x19\x30\xb8\x11\x1d\xe0\x20\xce\xf9\x21\xe3\xec\x9e\xbf\xb2\x51\x5e\xae\x12\x65\x49\x31\x81\x35\xd5\x32\x27\xe3\x93\xd6\x4f\xdc\xcb\x4e\xe0\x76\x0d\xe5\x14\xe8\xf8\xa8\x99\xc9\x83\x21\x50\xd0\xef\x7c\x0e\xc6\x06\xde\x0a\x41\x5b\x62\x26\x85\x6a\x8f\x12\x94\xd4\x50\x8c\xe7\xe9\x6c\x46\x42\x2f\x4c\x1e\xdd\x65\x43\xd1\x53\xf1\xb9\x77\xe8\xf9\xdb\x73\xa9\x34\xd4\xfa\x22\x60\x35\x97\xe2\x03\x3a\x8a\xcc\xce\x04\xae\x7c\x21\x6d\xfe\xaa\x12\xd6\x1f\x41\xea\x1c\x7f\x26\x81\x90\xfe\x4a\x43\x78\xc1\x86\x3d\x58\x60\x0d\x39\x32\xbd\x9f\x6a\xb4\x47\x7e\x19\xe5\xdd\x5a\x47\x0a\x4d\x21\x35\xf6\x65\xb7\x48\x44\xce\x4d\x74\xdf\x1a\x67\x3e\xa5\xb0\xbf\x84\x77\xde\x4a\xbd\x9b\x83\xcc\x97\xf0\xfd\x83\xf6\x7f\xff\x77\x73\xa8\xeb\xee\x2f\xde\x62\x09\xb7\x79\x6e\xd1\xb9\xaf\x66\x67\x64\xf7\x32\xa4\x6e\xe8\xdb\xdb\xf4\x3d\xe8\xad\x7f\x8b\xdb\x25\x88\xda\x17\xd3\xf0\x78\x06\x7f\xf3\xf1\x34\x2a\x2c\x1e\xef\x57\x9f\x02\xdd\x8f\xfc\x5f\xfa\x63\xbf\xe8\xf3\x1a\xc8\x2d\x76\xe8\x57\xc7\x0a\xa7\xb3\x85\xcc\x49\x35\x5b\x49\x21\x9d\x58\x8e\x1f\xc8\x3c\x9d\x21\x3e\xa0\x1f\xcd\x41\xe2\x33\xfe\xf5\xd5\x42\x84\x63\x85\xdd\x3f\x4d\x06\x7d\x56\xba\xc6\xc5\xd8\x51\x45\x88\x3f\xf4\x3c\x85\x25\x3d\x6f\x16\x4a\x9d\xcb\x4c\xf8\xe4\x85\xc4\x3a\x71\x17\x58\x9a\x77\x00\xcd\x19\x5e\x89\xbb\x05\x1f\x6b\x28\xb3\xb2\xe7\x3d\xcb\xa0\x65\xdf\x7f\xff\x70\x97\x48\xb4\x40\x66\x70\x2d\xd4\xae\x16\x4a\x1d\x7b\x4e\xd3\x37\x13\x8e\x2a\x67\xfc\x48\x07\xda\xf8\x80\xb1\x48\xe5\xa6\xd6\xfe\xa5\x63\x60\x27\x76\x38\x87\x35\x91\x5f\x37\x7e\xb3\xd6\x52\xad\x2f\x99\x5f\x0a\xc5\xfa\x6a\x03\xa4\x4d\x5a\xfb\x9b\x43\x15\xf1\x1c\x49\x20\x7d\x35\x1b\x54\xdc\x98\xd6\x62\xd2\x46\x2e\x88\x06\x85\x02\x0f\x41\x8b\xe8\x7e\x95\x12\xbb\x1b\x3d\xad\xc2\xae\xd4\xcf\xd7\xfe\x66\xba\x9a\x3f\x4f\x59\x77\x89\x87\xab\x95\xe5\x4d\x57\x55\x2d\x7f\x23\xca\x7a\xe8\x97\xd5\x31\xd3\x38\x28\xeb\x00\xa8\x63\xf1\x3c\xca\xe6\x39\x84\xa7\xf5\x7d\x98\xb1\x38\xc5\x1b\x69\xf3\x5a\xcb\x9f\x6a\x84\x87\x3b\xce\xeb\x09\xf6\xa5\x2f\xba\xdb\x28\xf4\x9d\x33\xf7\xa9\x0c\x07\x0a\x51\x7b\x53\x0a\x2f\x33\x76\x3c\xdc\x73\x28\x97\x25\x82\xe8\xf0\x4c\x4a\x76\xde\x9a\x63\xcc\xa5\xdd\x64\xc2\xa8\x5c\xb2\x00\x44\x52\x70\x2c\x97\xf2\x54\xa8\x35\xf9\x20\x68\xcb\x19\xb2\x9d\x68\x08\x1a\x91\xbe\x14\x5c\xdc\x09\xbb\xab\xb9\x6b\x30\x74\xb8\xb0\x38\xd5\x74\x77\x89\xa3\x69\x7b\x60\x78\x0d\x0e\x55\x37\xb0\xf6\x9f\xd3\xb3\x59\x5f\x2a\x99\x45\xe1\xf1\xdb\xb2\xf2\xc7\x0e\xfe\x0d\x4f\x99\x25\xa4\x57\xbd\xba\x28\x4a\x30\x65\x5f\x2e\x1f\xcf\xb4\x92\xfc\xc7\xa2\xaf\xad\xe6\x3c\x9b\x32\xba\xe0\xa6\x43\x9b\x75\xf1\x18\x50\xd2\x81\x71\x94\xeb\x92\xe8\x91\xfb\x3a\xd0\x82\xdb\x96\xad\x53\x77\xe6\xda\x25\xf2\x23\xdd\x29\x43\x83\x52\xa5\x84\x38\x28\x84\xe9\x6c\x09\x5f\x7f\x6c\x7f\x7f\xea\x24\x3d\xfa\xe3\x5a\xb2\xff\x88\xfe\x2c\xba\x5a\x79\x4a\x7e\xff\x8a\x7a\xe7\x8b\xe9\x0c\x5e\xbf\x86\x3f\x2e\xe1\xec\x4b\xfa\x7b\x31\x94\x63\x17\x83\xfc\x2c\xe1\x1b\xa1\xc9\x62\xc2\xdb\x21\x21\x7c\x01\x2f\x06\x77\x59\x64\x46\x67\xc2\x4f\x5f\x70\x9b\x81\x97\xe7\x67\x98\xbf\xab\x63\x02\x68\x02\xb4\xd1\xaf\x7e\x41\x6b\x40\xf1\x49\x16\xf0\x62\xf6\x34\x79\xb8\x05\x8d\x07\x42\x80\x71\x8f\x8e\x7e\x38\x52\x30\x08\xae\xfc\xf1\x8b\x01\x4a\x51\x70\xd2\xbd\xab\x2b\xaa\x84\x30\x7f\xbc\x5f\x31\x80\x08\x31\x8d\x2d\xb8\xc1\x14\xb3\xff\x5f\x02\xcd\x0d\x06\x77\x77\xe1\x70\x21\x7a\x52\x4e\xa1\xf0\xf1\x8f\x17\x04\xdb\x3f\x7a\x07\x4e\x5d\xd0\xc7\x3f\x2d\x60\xd5\xcf\x3e\xac\x85\xdf\x98\x87\xce\x76\x27\x34\x3e\x4d\xda\x7f\xf5\x5c\xf9\x4f\xe8\x1d\xa4\xd2\x9c\xd9\x48\x08\x3c\xb4\x9f\x72\x69\x31\xf3\xea\x48\x41\xe1\x9a\x80\x90\x4b\x3e\x9e\xb0\x47\x2e\xc8\x94\x02\x57\x6f\x1e\xef\x57\xef\xe0\x03\x1e\x43\xc5\x45\x87\xbc\x18\x0c\x1a\x88\xbc\x43\x7f\xbb\x17\x52\x51\x90\x7b\x17\x48\x51\x3c\xf8\xb8\x62\x53\xfc\x8f\x10\x56\xff\xf3\x34\x24\x44\x7e\x3e\x3e\x75\x6e\x4e\x2c\x9d\xa2\x2d\xb5\x3e\x7a\xe7\x3f\x3d\x36\xbc\x31\x54\x01\xc6\xec\xe0\xb8\xc9\x64\x2a\x3e\xb2\xea\xf7\xe0\x62\x1b\x25\x2b\x8c\x71\xbd\xf3\x42\x61\x0e\x14\x85\x53\x40\x76\xf5\x26\x48\x3e\xc7\x0a\x75\x4e\x30\xd8\x68\x38\x70\xd3\xbc\xb7\x4f\x84\x71\xfd\xcc\x77\x6f\x2c\xe0\xcf\xa2\xac\x14\xe1\xad\x2d\xac\x49\xbc\xeb\x18\x37\xf6\x42\xd5\x38\x87\x4d\xed\x61\x2d\xf3\x35\x1b\xbf\x7e\x19\x7a\xe5\xcc\x60\x3f\x03\x09\x1d\xd9\x85\x43\x21\xb3\x22\x08\x60\x1b\x25\xc2\x3d\x2f\x93\x24\x2b\x19\x4e\x59\x4e\xc9\x02\x5e\xe4\xb8\x15\xb5\xf2\x2f\x7a\xf4\x1e\xb6\xb0\x09\xd2\x8a\xe0\x29\xb6\x82\x5a\x33\xe3\x22\x35\xa4\x09\x01\x4e\xea\x9d\x0a\x6c\x11\x27\x3f\x92\x83\x84\xdd\x7a\x54\x69\x21\x79\x93\x74\x50\xa0\xaa\x5c\x4c\x63\x0e\x0e\x85\xa1\xad\xf4\x4b\xf2\x2b\x8b\x41\x82\x3e\x75\x02\x95\x31\x1f\x48\xb4\x04\x5c\xc6\xed\xb8\x12\x56\x94\x10\xc2\x1c\x39\x2c\x59\x59\x02\x9c\x39\x3a\x69\x29\xba\x9c\x24\xd7\xb8\x88\x92\x3c\xcf\x3d\xf2\xb4\x20\x5a\xc0\xc6\x58\x6b\x0e\x57\xf8\x8e\xf3\xb6\xce\x7c\xcd\xbd\xe7\xd8\x68\x4e\x35\x91\xc5\x9f\x6a\x74\x14\xdb\xc8\x31\x16\xa3\xf9\x73\x87\x3e\x38\x49\x0c\xd5\xab\x08\xc3\x1b\x20\x09\xcb\xb1\x72\xf2\xab\x61\x17\xd2\x52\x4d\xfa\x51\xe4\xd3\x20\x18\x35\x50\x62\x2e\x29\x7a\xb7\x8d\xa7\xa6\xdf\x94\x00\x5c\xb7\xb0\x6a\x63\xf2\x73\xb0\x6a\x6a\x4d\xf7\x91\x29\xfc\x05\x63\x5b\x28\xb5\x24\x53\xfb\x29\x95\xfd\xa9\x04\xea\x90\x4a\x9d\x12\x02\xcd\x14\xb5\xf4\xae\x59\xde\x25\x1d\x29\x45\xcb\x12\x8e\xbf\x0f\x7d\x5d\x6f\x22\x14\x54\xd2\x79\xd4\x64\x84\xf1\xbd\x8a\x04\x53\xb3\x33\x36\x2b\x7a\x8a\x6f\x78\xb5\x58\x9a\x3d\x36\x33\x85\x86\xe7\x4e\xb6\x20\x00\x17\x3e\x3a\x85\x6f\x7d\x8f\xf3\x9d\xfc\x56\x61\x26\xb7\x47\x2a\xe5\xb8\x67\x44\x4b\x1e\xee\xc8\x5f\x43\x15\x65\xe9\xab\x4b\x9e\x90\x78\xa4\x52\x64\xd0\xb8\x9b\x43\x0c\x70\x3d\x68\xe6\x5f\x7f\x24\x63\x0b\xd4\x7a\x2d\xb2\xa6\x04\x7f\x2a\x37\xa4\x5a\x38\x58\x7b\x5a\x32\xed\xb2\x19\x0d\x7d\x19\x77\x7a\x16\x56\x94\x39\x41\xc4\x2e\xb5\x2b\xa1\x4d\x32\xcb\x45\x5a\xdb\x40\x9a\x46\x40\x8f\xf7\xab\xab\x40\x4c\x5b\xe1\xb6\x4d\x09\x12\xd4\xf4\x02\x2c\x68\x8e\xb0\xf0\x26\x54\x9d\xd3\xd9\x05\x54\x32\x6b\xb0\x20\x0f\xb1\x44\xc9\x3d\xed\x7e\xbc\x79\xb8\xbb\xb8\x73\x2b\xaf\x67\x6c\x7d\x8a\x50\x20\x75\xb0\x4e\xdb\x1d\x2d\x8c\x1f\xe9\x61\x35\x07\x4f\xa5\x56\x7c\x10\x1a\x0f\xa1\x17\xc2\x98\xa9\xdf\xc0\x3a\x6d\x8b\x74\xea\xb2\x2e\x4f\x9f\x9e\x19\xfd\xa2\xc7\xbb\xe4\xa5\x9f\x17\xe6\xd2\xc8\xed\xb4\x00\x4f\xf1\xc4\x73\xcb\x34\x06\x8c\x7e\xc5\xca\xb1\x42\xe4\x79\x37\x54\x7c\x33\xe2\x93\x31\xdd\x85\x41\xc3\xaa\xf5\xea\xb8\xcd\x68\x9a\x89\xef\xa7\x71\x65\xf0\xb4\x93\x7a\x96\x53\x51\xbf\x7e\x70\x0d\xe6\x11\x61\xa0\x1e\x07\x5f\x61\x2a\xdf\x02\x2f\x9b\x4e\x4f\xfb\x56\xde\x5d\x85\x35\x03\x91\x52\x54\x55\xe8\x52\x6d\x8c\x51\x28\x78\xe0\xd9\xb4\x17\x19\xb5\xc8\x3e\xbd\xf4\x67\x31\x93\x48\x9b\x46\x50\x4e\xf2\xbb\x08\x4d\xcf\x4e\xd8\xc1\xa6\x6f\x8c\x51\x27\xa8\xf3\x6d\x3c\x7e\x8a\xc9\x21\x08\xb3\x8a\x76\x72\x8f\x3a\xf6\x30\x5c\x3c\x78\xc4\xcb\xe3\x41\xf5\x76\xb0\xee\x0e\x8b\xdb\x49\x65\x9c\x9b\x74\x00\x15\x78\x5b\x23\xd1\x8e\xb8\x6d\x1c\x04\xdd\xea\x46\x43\x23\x5a\x88\x72\x1e\x10\x73\xab\x47\xe2\x2a\xca\xf7\x14\x4a\xf5\x49\x0f\xca\x79\xb4\x10\xa5\x7f\xce\x82\xa0\x4f\x7d\xf3\x3b\x92\x00\x61\xbd\x8d\xc8\x3e\x1c\x84\xcd\xdd\xab\xcc\x94\x95\xf0\x32\x0e\x7a\x2d\x0a\x97\xe6\x26\x17\x9c\xb1\xf5\x9e\x3f\xd7\x1b\x25\xb3\x4e\xfe\xb8\xd2\x31\x2e\x99\x51\x6a\x50\x2c\x29\xa6\x5c\xfc\xfa\xe1\x8e\xcd\x2c\xd5\x3e\xa3\xcc\x6c\x8d\xfd\x56\x64\xc5\xc3\xdd\xf4\x3d\x6c\x97\xfc\x68\xda\x64\x47\x12\xda\x6c\x09\x3f\x18\x99\x3f\xbd\x61\x80\xaf\x04\x29\xdf\x77\x81\x24\xe3\x48\x82\x8d\xa7\x92\x7f\x1b\x86\xf8\xcd\x90\x30\x98\xaf\xce\x2c\xfa\xd3\x4b\x15\xb1\x29\xd7\x0c\x58\xc9\x76\x9a\x4b\x44\xd0\x8e\x9f\xc6\x26\xb0\x0b\x78\x27\xb9\x78\xeb\xcf\x65\xa5\x2e\xd0\xca\x88\xfe\xda\x1e\x72\x2c\x72\xc3\x04\x4d\x23\x1d\x95\x42\x47\x77\x1c\xdf\x0e\xea\xfb\xd3\x7d\x0a\xa5\xb9\x61\x5f\xed\xd0\x73\x86\x7b\x86\x61\xdc\xce\x7d\xc6\xce\x06\x9d\x81\x70\x38\x66\xb8\x9b\xc4\xdd\x49\xe2\x99\xe2\x9f\x7b\x4e\x4a\xe8\xb6\x4b\x12\xdc\x98\x37\x89\x62\x7e\x66\xa5\xf3\xe1\x96\x6e\xa7\x15\x72\x92\x5b\xee\x25\xaa\xbc\x9d\xb9\x0a\xa9\x87\x3b\x03\x3d\x60\xda\xab\x8f\x7b\xf6\x23\x2c\x37\xfc\xc9\x65\x1d\x79\x42\xb0\x9b\x25\x0c\x57\x1f\x9f\x9e\xcc\x73\x63\x69\x2e\x5e\x98\x91\x3e\x99\xd2\x18\xf8\xbc\x90\xe8\x48\xcc\xa7\x53\xce\x67\xf8\xf8\xe0\x74\xee\x14\x78\x5a\x1c\xc0\x9d\x9d\xd2\xa5\x7b\x37\x22\x54\x15\xf1\x4c\xbd\x8b\x44\xed\x65\x82\x01\x52\xa9\xa2\x19\x5f\xc5\xb9\x45\x95\x04\x82\x85\x3a\x88\x63\x40\x7b\x5b\xa9\x85\xe2\xce\xba\xd4\xa2\x77\xf6\x0e\xf1\xf6\x12\x01\x49\xbe\xe1\xb4\x94\xce\xf1\x4c\x38\x0c\xac\x6b\xe7\x4d\xd9\x04\x7e\x2a\x86\x28\xf5\x6c\xb0\xad\x9a\x86\x68\x13\xc5\x42\xd8\x3c\x34\x18\x28\x5a\xc8\xd0\xd2\x3e\x29\xaf\x86\x11\xe3\xe9\xcc\x85\xd9\x7c\x02\x30\x86\xf7\x2d\x5e\x0c\xbf\xe3\x9c\xca\x8c\x80\xc5\xd3\xc1\xcc\x15\x70\xf1\xbc\xd1\xc6\x37\x8d\x4a\x53\xeb\x04\x7d\xc2\xb8\xa9\x9d\x4f\x5c\x28\x9e\x6e\x35\xab\x72\xc7\xf1\xa5\x37\x34\x75\xf2\x17\x3c\x9f\x8c\x3d\x2f\xf1\x0c\x37\x00\x1a\x69\xb0\x27\x2f\x42\x07\x7a\xec\x94\xb7\x4a\x99\x03\x39\x6c\x80\x33\xcd\x1d\x1f\x0a\x91\x1e\xf9\x26\x96\x2f\xac\xa9\x77\x05\x73\x4a\x8a\xed\xad\x37\xdb\x10\x34\xd8\x3f\x1f\xee\xc2\x6d\xb5\x6e\xbc\x49\x37\x9d\xb6\xd2\x9e\x2c\x6d\xef\x3e\x29\x23\xf2\xe6\x1a\x82\xc5\x78\x77\x53\x33\x48\x2f\x8d\x3d\xfe\xea\x84\x79\x22\xa8\x13\x09\x45\x2a\xdf\xe1\x71\xba\x9d\x8d\x09\xea\x0d\x67\x55\x37\xd2\x83\xbc\xca\x28\x1e\xda\x42\x9c\xaf\xa5\xb0\x19\x70\xd1\x2f\x43\xdd\xd6\x0e\x38\xfb\x54\xe6\x27\xfd\xb4\xf6\xae\x5b\x82\x8a\x51\xf5\xdc\xb4\x63\xe7\x24\x3a\x95\xd0\x32\x5b\x5c\xea\x18\xa4\x36\x58\x82\x78\x7a\xeb\x41\x0e\x1c\xa5\xd3\x4b\x4c\x32\xc8\x90\x34\xb0\x18\xb3\xfc\xa6\xcd\x3a\x74\xd5\xe6\xf3\x31\xcc\x35\xbd\xb0\x91\xae\x41\xac\xb9\xe1\xf5\x6b\xd0\x52\xcd\xe0\xaf\x7f\x4d\x8f\xbe\x8a\xad\x04\x99\x5f\x3f\x1e\x69\x03\xf6\xa2\xe1\xb7\x69\x23\x84\x27\xac\xec\xe6\xf8\xcf\x6c\x27\x04\x49\xf6\xae\x2a\x5d\xd7\x53\xf8\xe2\x99\x4d\x85\xa6\x05\x55\x0a\x9f\x15\xa9\xf1\xd4\x34\x7a\x5a\x1b\xbd\xb4\xfd\xb3\xb6\xbd\x76\xe2\xf1\xfc\x39\x6b\x94\x1f\xf7\x47\xce\x0a\xa1\xa7\x46\xab\x23\x15\xd3\xd0\xd0\x74\x74\x8f\xff\x9d\x09\x69\xc8\x94\x64\xb1\xfd\xe9\xd2\xe7\x18\xef\x55\x23\xbe\x5f\x35\xdf\xeb\x46\x91\x6b\x26\x66\x4f\xb4\x90\x2e\xcd\xed\x5a\x63\x2e\xc4\x1e\xfb\x3a\x4a\xcd\xb2\xd3\x1a\x9c\x2f\xfc\xb9\x50\x18\xc4\xe3\x4a\xff\x3b\x8e\x16\xc7\x47\xb8\x67\xb3\xef\xff\xe3\xda\x1c\x9e\x76\xff\x6e\xc3\xee\x27\x7a\x7b\xcf\x8f\x12\xa9\xd6\x6d\xc3\x5b\xaf\xbb\xf1\x2b\xaf\x61\x74\x32\xac\xde\xfa\x55\x33\xa0\xea\xa6\xd9\x93\x11\x5d\x0f\x37\x35\x89\xf5\x24\xa9\x0a\x6b\xc5\x31\xf5\xe1\x56\xdd\x3e\xdc\x48\x5d\x1e\xaf\x37\xc7\x4b\x93\xd7\x45\xa7\x96\xe3\xd0\xb0\x19\x28\x99\x86\x63\xd7\x40\xdc\x6a\x2d\x9b\xdb\x20\x11\x8f\x8e\xdd\xec\x38\x37\xed\xdf\xcc\x9e\x3f\xcf\x96\x87\x6e\x6e\x34\x94\x3e\xc7\x8e\x93\xe5\x7e\x9a\xfc\x4f\x00\x00\x00\xff\xff\x2e\x57\xac\x0f\xc3\x35\x00\x00" func nonfungibletokenCdcBytes() ([]byte, error) { return bindataRead( @@ -129,7 +129,7 @@ func nonfungibletokenCdc() (*asset, error) { } info := bindataFileInfo{name: "NonFungibleToken.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x78, 0xff, 0x5d, 0xca, 0xbd, 0xc4, 0xd5, 0xd8, 0xe2, 0x1c, 0xdb, 0x24, 0x3c, 0xac, 0x4b, 0x7d, 0xf0, 0x5b, 0x64, 0xd1, 0x20, 0x2d, 0x9c, 0xfc, 0xb6, 0xda, 0x86, 0x89, 0xfc, 0x5c, 0xa4, 0xf9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0x58, 0xde, 0x1a, 0xbd, 0xdc, 0xdb, 0x50, 0xaf, 0xc9, 0x29, 0xe7, 0x4a, 0xca, 0x87, 0x16, 0x1d, 0x0, 0x83, 0x58, 0x8f, 0x6a, 0xbf, 0x2b, 0x36, 0x96, 0x72, 0xe6, 0x4c, 0xf4, 0xa4, 0x3}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index c63287c..d6d4c40 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -1,29 +1,29 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// transactions/destroy_nft.cdc (1.539kB) -// transactions/generic_transfer_with_address.cdc (4.476kB) -// transactions/generic_transfer_with_address_and_type.cdc (4.505kB) -// transactions/generic_transfer_with_paths.cdc (2.867kB) -// transactions/mint_nft.cdc (3.806kB) +// transactions/destroy_nft.cdc (1.542kB) +// transactions/generic_transfer_with_address.cdc (4.529kB) +// transactions/generic_transfer_with_address_and_type.cdc (4.552kB) +// transactions/generic_transfer_with_paths.cdc (2.868kB) +// transactions/mint_nft.cdc (3.807kB) // transactions/nft-forwarding/change_forwarder_recipient.cdc (1.272kB) -// transactions/nft-forwarding/create_forwarder.cdc (1.661kB) -// transactions/nft-forwarding/transfer_nft_to_receiver.cdc (2.953kB) +// transactions/nft-forwarding/create_forwarder.cdc (1.76kB) +// transactions/nft-forwarding/transfer_nft_to_receiver.cdc (2.949kB) // transactions/nft-forwarding/unlink_forwarder_link_collection.cdc (1.045kB) -// transactions/scripts/borrow_nft.cdc (1.189kB) +// transactions/scripts/borrow_nft.cdc (1.191kB) // transactions/scripts/get_collection_data.cdc (249B) -// transactions/scripts/get_collection_ids.cdc (631B) -// transactions/scripts/get_collection_length.cdc (940B) -// transactions/scripts/get_collection_length_from_storage.cdc (1.093kB) -// transactions/scripts/get_contract_storage_path.cdc (692B) +// transactions/scripts/get_collection_ids.cdc (633B) +// transactions/scripts/get_collection_length.cdc (942B) +// transactions/scripts/get_collection_length_from_storage.cdc (1.095kB) +// transactions/scripts/get_contract_storage_path.cdc (688B) // transactions/scripts/get_contract_views.cdc (242B) -// transactions/scripts/get_nft_metadata.cdc (6.465kB) -// transactions/scripts/get_nft_view.cdc (4.692kB) +// transactions/scripts/get_nft_metadata.cdc (6.463kB) +// transactions/scripts/get_nft_view.cdc (4.717kB) // transactions/scripts/get_views.cdc (1.244kB) // transactions/scripts/iterate_ids.cdc (794B) // transactions/setup_account.cdc (1.431kB) // transactions/setup_account_from_address.cdc (2.277kB) // transactions/setup_account_from_nft_reference.cdc (1.707kB) -// transactions/setup_account_to_receive_royalty.cdc (1.832kB) +// transactions/setup_account_to_receive_royalty.cdc (1.844kB) // transactions/transfer_nft.cdc (2.909kB) // transactions/unlink_collection.cdc (625B) @@ -95,7 +95,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _transactionsDestroy_nftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x6f\xdb\x38\x10\xbd\xfb\x57\xbc\xe8\x90\x15\x81\x8d\x7c\x59\xec\xc1\x70\x12\x34\x76\x0d\xf8\x50\xa3\x48\xd5\xf4\x4c\x8b\x23\x8b\xad\x4c\x0a\xe4\x28\x4e\x5a\xe4\xbf\x17\xd4\x87\x2d\x25\x69\x02\x74\x0e\xb6\x44\x71\x66\xde\xcc\x7b\x33\xd3\xe9\x14\x69\xa1\x3d\xd8\x49\xe3\x65\xc6\xda\x1a\x1c\x34\x17\xca\xc9\x83\x87\x34\xd8\xac\x52\xe4\xce\xee\xc1\x05\xc1\xeb\x9d\x21\xe7\x91\xd9\xb2\xa4\xf6\xb2\x34\x0a\x8a\x3c\x3b\xfb\xe8\xa1\x79\x32\xd1\xfb\xca\x3a\x46\xb4\xb1\x66\x55\x9b\x9d\xde\x96\x94\xda\x1f\x64\xa2\xe3\x97\x4f\xc4\x52\x49\x96\x77\x9a\x0e\xfe\x74\xfc\xf1\x41\xee\xab\x92\x36\xab\xf4\x74\x76\x53\x3b\x43\x2e\x9a\x4c\x06\xf8\x62\xad\x66\xf8\xba\x36\xfc\xff\x7f\x02\xbf\x26\x13\x00\x08\x75\xdc\x52\x4e\x8e\x4c\x46\xe0\x42\x32\x0e\xba\x2c\xb1\x25\xd4\x9e\x14\x72\xeb\x9a\x02\xec\xc1\x90\xfb\x67\x58\x40\xe3\x5e\x12\x0f\x8e\x6e\x29\x9f\x41\xd6\x5c\xc4\xcf\x6b\x48\xbe\x75\xad\x11\x38\x3f\xc1\x4d\x16\xa7\x68\x4d\xb8\xca\x51\x25\x1d\xc5\x6d\xbb\xba\x58\x37\xd6\x39\x7b\xb8\x93\x65\x4d\x02\xe7\x1f\xb2\xcc\xd6\x86\x43\x01\xe8\x6c\x0c\x62\x29\x59\xe2\x12\x83\x2c\x8e\xbc\x2d\xef\x69\x61\x0d\x3b\x99\x71\xe8\x5e\x1c\xce\x6a\x97\x51\xfa\x58\xd1\x0c\x46\x97\xff\xe2\x5e\xd3\xa1\x7d\x0d\xbf\xf3\x51\xb3\x93\xcd\x2a\x5d\x8c\x52\x5c\xc5\x42\x40\xfa\x33\xbc\x73\xef\xfa\x08\x33\xd8\xf5\x35\x2a\x69\x74\x16\x47\x0b\x5b\x97\x0a\xc6\x32\x3a\x78\x78\xe1\xda\x20\x4a\x90\x16\x34\xa8\x06\x59\x57\x06\x0c\x91\xf2\x60\x0b\x1d\x3e\xed\xc9\x70\xc3\xd4\xcb\x30\x3d\xc2\x26\x1e\xb4\x81\x75\x8a\x5c\xf0\xa4\x07\xca\x6a\x0e\xbc\x8f\x95\x1c\x89\x11\xea\xe3\xcb\x74\x8a\x6d\xc3\x06\x24\xdc\x49\x35\xf6\x2d\x89\x04\xf3\x54\xe6\xc9\x48\x27\xb8\xec\x66\x22\xf1\x6c\x9d\xdc\x51\xd2\x06\x9e\xff\x9d\x7c\xae\xe2\x11\xe0\x60\x61\xf6\x66\xcf\x74\xd1\x27\xfb\x2c\xb9\x18\x39\x88\x01\x33\xe9\x71\x5e\xa1\x2c\xf9\x86\xa3\xe0\x47\x61\xaa\x5f\xcd\x0e\xbb\xfd\x4e\x19\x43\xb6\x0c\x54\x92\x0b\x44\x2f\x00\xf5\x96\x64\xd6\x64\x92\xe3\x3f\x43\x4b\xd8\x7e\x61\xa7\xcd\x2e\x16\xe2\xdd\x30\x43\xbc\xfb\xda\x33\xb4\xd1\xac\x65\xa9\x7f\x06\x5e\x49\x3b\xc8\x76\x64\x9a\xf5\xd4\x52\x3d\x58\x43\xb9\x76\x9e\xcf\x22\x21\xda\x09\x7c\x6a\xff\x7a\x61\x74\x5b\xa2\xe3\xbe\xdf\x6f\xbd\xce\x4e\xfb\xed\x0d\xee\xc3\x74\x9a\x9c\x31\xbf\x78\x45\x06\x49\x1f\x32\xee\x1f\xd6\xcb\x19\xb4\x12\xa7\xbc\xed\x26\x4b\xb6\xb5\x33\xf1\xfc\xc2\xe4\x2c\x86\x40\x2b\xeb\x79\xb0\x0a\xce\x5e\x49\xb1\x23\x5e\x2f\x7d\x2c\x42\xc3\x58\x6a\xe3\x63\xad\xc4\x0c\x4d\xdf\x42\x11\x5d\x5b\x08\xbe\xa2\x4c\xe7\x9a\x14\xd6\x4b\xf8\xa2\x19\xd0\x42\xde\x13\xb6\x44\x06\x8a\x4a\x62\x52\x51\x97\xfd\x69\xf2\x3b\x00\x00\xff\xff\x5c\x52\x99\x1d\x03\x06\x00\x00" +var _transactionsDestroy_nftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x6f\xdb\x38\x10\xbd\xfb\x57\xbc\xe8\x90\x15\x81\x8d\x7c\x59\xec\xc1\x70\x12\x34\x76\x0d\xf8\x50\xa3\x48\xd5\xf4\x4c\x8b\x23\x8b\xad\x4c\x0a\xe4\x28\x4e\x5a\xe4\xbf\x17\xd4\x87\x2d\x25\x69\x02\x74\x0e\xb6\x44\x71\x66\xde\xcc\x7b\x33\xd3\xe9\x14\x69\xa1\x3d\xd8\x49\xe3\x65\xc6\xda\x1a\x1c\x34\x17\xca\xc9\x83\x87\x34\xd8\xac\x52\xe4\xce\xee\xc1\x05\xc1\xeb\x9d\x21\xe7\x91\xd9\xb2\xa4\xf6\xb2\x34\x0a\x8a\x3c\x3b\xfb\xe8\xa1\x79\x32\xd1\xfb\xca\x3a\x46\xb4\xb1\x66\x55\x9b\x9d\xde\x96\x94\xda\x1f\x64\xa2\xe3\x97\x4f\xc4\x52\x49\x96\x77\x9a\x0e\xfe\x74\xfc\xf1\x41\xee\xab\x92\x36\xab\xf4\x74\x76\x53\x3b\x43\x2e\x9a\x4c\x06\xf8\x62\xad\x66\xf8\xba\x36\xfc\xff\x7f\x02\xbf\x26\x13\x00\x08\x75\xdc\x52\x4e\x8e\x4c\x46\xe0\x42\x32\x0e\xba\x2c\xb1\x25\xd4\x9e\x14\x72\xeb\x9a\x02\xec\xc1\x90\xfb\x67\x58\x40\xe3\x5e\x12\x0f\x8e\x6e\x29\x9f\x41\xd6\x5c\xc4\xcf\x6b\x48\xbe\x75\xad\x11\x38\x3f\xc1\x4d\x16\xa7\x68\x4d\xb8\xca\x51\x25\x1d\xc5\x6d\xbb\xba\x58\x37\xd6\x39\x7b\xb8\x93\x65\x4d\x02\xe7\x1f\xb2\xcc\xd6\x86\x43\x01\xe8\x6c\x0c\x62\x29\x59\xe2\x12\x83\x2c\x8e\xbc\x2d\xef\x69\x61\x0d\x3b\x99\x71\xe8\x5e\x1c\xce\x6a\x97\x51\xfa\x58\xd1\x0c\x46\x97\xff\xe2\x5e\xd3\xa1\x7d\x0d\xbf\xf3\x51\xb3\x93\xcd\x2a\x5d\x8c\x52\x5c\xc5\x42\x40\xfa\x33\xbc\x73\xef\xfa\x08\x33\xd8\xf5\x35\x2a\x69\x74\x16\x47\x0b\x5b\x97\x0a\xc6\x32\x3a\x78\x78\xe1\xda\x20\x4a\x90\x16\x34\xa8\x06\x59\x57\x06\x0c\x91\xf2\x60\x0b\x1d\x3e\xed\xc9\x70\xc3\xd4\xcb\x30\x3d\xc2\x26\x1e\xb4\x81\x75\x8a\x5c\xf0\xa4\x07\xca\x6a\x0e\xbc\x8f\x95\x1c\x89\x11\xea\xe3\xcb\x74\x8a\x6d\xc3\x06\x24\xdc\x49\x35\xf6\x2d\x89\x04\xf3\x54\xe6\xc9\x48\x27\xb8\xec\x66\x22\xf1\x6c\x9d\xdc\x51\xd2\x06\x9e\xff\x9d\x7c\xae\xe2\x11\xe0\x60\x61\xf6\x66\xcf\x74\xd1\x27\xfb\x2c\xb9\x18\x39\x88\x01\x33\xe9\x71\x5e\xa1\x2c\xf9\x86\xa3\xe0\x47\x61\xaa\x5f\xcd\x0e\xbb\xfd\x4e\x19\x43\xb6\x0c\x54\x92\x0b\x44\x2f\x00\xf5\x96\x64\xd6\x64\x92\xe3\x3f\x43\x4b\xd8\x7e\x61\xa7\xcd\x2e\x16\xe2\xdd\x30\x51\xab\x90\x0e\xf1\xbe\xf6\x0c\x6d\x34\x6b\x59\xea\x9f\x81\x59\xd2\x0e\xb2\x1d\x9a\x66\x41\xb5\x64\x0f\x16\x51\xae\x9d\xe7\xb3\x48\x88\x76\x06\x9f\xda\xbf\x5e\x1a\xdd\x9e\xe8\xd8\xef\x37\x5c\xaf\xb4\xd3\x86\x7b\x83\xfd\x30\x9f\x26\x67\xcc\x2f\x5e\x11\x42\xd2\x87\x8c\xfb\x87\xf5\x72\x06\xad\xc4\x29\x6f\xbb\xcb\x92\x6d\xed\x4c\x3c\xbf\x30\x39\x8b\x21\xd0\xca\x7a\x1e\x2c\x83\xb3\x57\x52\xec\x88\xd7\x4b\x1f\x8b\xd0\x32\x96\xda\xf8\x58\x2b\x31\x43\xc3\x74\x28\xa2\x6b\x0b\xc1\x57\x94\xe9\x5c\x93\xc2\x7a\x09\x5f\x34\x23\x5a\xc8\x7b\xc2\x96\xc8\x40\x51\x49\x4c\x2a\x89\xba\xf4\x4f\x93\xdf\x01\x00\x00\xff\xff\xa5\xc6\x6a\x02\x06\x06\x00\x00" func transactionsDestroy_nftCdcBytes() ([]byte, error) { return bindataRead( @@ -111,11 +111,11 @@ func transactionsDestroy_nftCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/destroy_nft.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0xcd, 0x82, 0xd4, 0x9f, 0x50, 0x2a, 0x84, 0x5b, 0x0, 0x45, 0x7f, 0x24, 0xf8, 0x82, 0x97, 0xf9, 0xad, 0xd3, 0x36, 0x20, 0xdc, 0xcc, 0xce, 0xde, 0x20, 0x94, 0xe9, 0x55, 0xa9, 0xba, 0x74}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe9, 0x4c, 0xaa, 0xa0, 0x6a, 0x7c, 0x91, 0x91, 0xf5, 0xb9, 0x81, 0x48, 0x3a, 0x1b, 0xcf, 0x60, 0xad, 0x1, 0x73, 0x37, 0x5d, 0xb8, 0xdd, 0x91, 0x3, 0x41, 0x48, 0x2b, 0x85, 0x8a, 0x95, 0xf0}} return a, nil } -var _transactionsGeneric_transfer_with_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x57\xdf\x6f\xdb\x38\x12\x7e\x3e\xff\x15\x13\x1d\xd0\x93\x80\x44\x69\x0f\x87\x43\x61\xc4\x69\xb3\x69\x53\xf4\xa1\xc6\xa2\x55\xbb\xcf\xb4\x34\xb6\xb9\x95\x49\x2d\x39\x8a\xe3\x0d\xf2\xbf\x2f\x86\x14\x65\xca\x3f\xe2\xb6\x7e\x68\x1d\x8b\xf3\x71\xe6\x9b\x99\x6f\x46\x72\xd5\x68\x43\x90\x4c\xb5\xba\x6b\xd5\x42\xce\x6a\x2c\xf4\x77\x54\xc9\x28\x3c\xf9\x84\x24\x2a\x41\xe2\x9b\xc4\xb5\x4d\x46\xa3\x7f\x4b\x45\x68\x44\x49\x52\x2b\x48\x47\x00\xf7\x68\xac\xd4\x6a\x0c\xc9\xab\xfc\x65\xfe\x32\x39\x1f\xfd\x8b\x24\xd5\x38\x86\xe4\x03\x2a\x34\xb2\x84\xe9\x5d\x01\x85\x11\xca\xce\xd1\xc0\x5a\xd2\x12\x6e\xb5\x22\x06\x81\x9b\xaa\x32\x68\x2d\x08\x55\xc1\x54\xac\x90\xcd\x2b\xb4\xa5\x91\x0d\x79\xd4\xde\x50\xa8\x0d\x4c\xb5\xba\x08\x8e\x82\xf3\x14\x66\x1b\x68\x8c\xbe\x97\x95\x54\x0b\xa0\x25\x42\x19\xb0\x45\x84\xad\x3a\xec\x5a\xa8\x45\x2b\x16\xec\x1d\xaa\x8b\xaf\x5f\x92\xf3\x51\x36\x1a\x5d\x5e\x5e\xc2\xad\x50\xd0\x08\x6b\x41\x2a\x77\xd5\x51\x18\x77\xba\x58\x4a\x0b\x35\x92\x85\x8d\x6e\xa1\x5c\x6a\x6d\xd1\xdd\x4e\xce\x29\xfe\x71\x2d\x14\x01\x69\xb0\xa8\x2a\x98\x61\x29\x5a\xeb\x6d\xdd\x31\x8e\xaa\x63\x71\xc1\x30\xfc\xe3\xaa\xe3\x1a\xe6\x46\xaf\xdc\x2f\x3e\x32\xac\x7a\x6f\x72\x46\x70\x28\x6f\x1b\x61\xc4\x0a\x48\x8f\xa1\x58\x62\xef\x25\x69\x8f\xcd\x8c\x6d\xfd\x21\x1d\xdb\xc8\xca\xdb\xc8\x0a\xf4\xbc\x3f\xd1\xdb\xc5\x47\xc3\xbd\x5d\x9e\x86\x77\xb1\x71\x4c\x38\x2d\x05\x41\x85\x73\xa9\xd0\x46\x97\xcf\xd0\xa5\xa6\x43\x37\x58\x1d\xba\x80\x93\xef\xd1\x99\xe3\x5f\x86\xce\xe1\xfd\xc3\x18\x92\xf7\x0f\x62\xd5\xd4\x38\xbd\x2b\x92\x9e\x30\x97\xb2\x98\x77\xad\xea\x0d\xac\xb5\xf9\x6e\x7d\x51\x4e\xef\x0a\xeb\x2f\x5a\x8a\xfb\x2e\x9b\x9b\xa6\x73\x28\x09\x58\x70\x03\x95\x9c\xcf\xd1\x20\xa7\x37\x82\x93\x16\x0c\xfe\xd5\x4a\x83\x15\xcc\xb5\xf1\x70\x0e\x58\xc4\x16\x01\xd1\xf9\x15\xd9\xa7\x9c\xc9\x8e\xe6\x73\x97\xa2\xaf\x1f\x15\xfd\xff\x7f\xe7\xfb\x39\xe8\x4f\x0d\xc9\xfb\x42\x46\xaa\x45\x06\x8f\xa3\x11\x00\x80\x0b\x19\x5d\xf3\x19\xb4\xba\x35\x25\xb3\x06\x33\x1c\xa4\x82\x4f\xd6\x48\x40\xb8\x6a\xa6\x77\xc5\x18\xde\x3e\xee\x8a\x41\x3e\xbd\x2b\x9e\x7a\xcc\xe9\x5d\x71\xab\xeb\x1a\x9d\xd3\xef\xb8\x5a\x2d\x99\xb6\x74\xa5\xbe\x40\x82\x46\xd0\xd2\xba\x0a\xee\xb1\xcb\xc1\xf9\x31\x0c\x34\x25\xdf\x03\xf4\x57\x35\x06\x1b\x61\x30\xb5\x72\xa1\xd0\x8c\x41\xb4\xb4\x4c\x7f\xd3\xc6\xe8\xf5\x37\x51\xb7\x98\xc1\x8b\x9b\xb2\xd4\xad\xa2\x3e\xe2\xce\x43\x7f\x08\x04\x18\x74\xa4\xfb\xb8\x39\x9d\x6a\x4e\xdb\x92\xaa\xb0\xa9\xf5\x06\xab\xf0\x90\x9b\x1f\x2b\x10\x1e\xb4\x07\xe4\x00\x98\xbf\xfa\x1e\xcd\x67\x9c\xc3\x84\xa3\xec\x6e\x4e\x77\x52\x93\xf5\x56\xfc\xc9\xc3\x53\x9b\xcf\x9c\x4b\x57\x2f\xf6\xb8\x7d\xba\x4e\x95\x4b\x5e\x9c\xca\x21\x0c\x7f\xde\xbc\x81\x46\x28\x59\xa6\xc9\xad\x6e\xeb\x0a\x94\x26\xf0\x98\xb0\x8b\xb8\x1f\x75\xaf\x1d\xf0\x49\x7c\x47\xb0\xad\xc1\xc3\xe2\xe2\x2b\x3d\x4d\xf6\xae\x1f\xc6\x54\x8a\x6d\xe0\xce\xdd\xf0\x63\x92\x39\x91\x0c\xf2\x90\x26\xd9\xee\xf1\x8e\xa7\x9c\xb4\x2f\xd6\x34\x1b\x18\x1b\x76\xd6\x18\x2c\xe9\x2c\xc9\xb2\x41\x52\xbf\x3a\x7d\x15\x34\x0c\xcf\x20\x19\x89\x5d\xb3\xee\x57\xe6\xbd\xc4\x35\xf4\x28\x16\xeb\x79\x3e\xac\x45\x98\xc4\xb9\xcd\xbb\xef\x61\x3a\x71\x7d\xa6\xa1\x77\x8a\x4d\x83\x63\x50\xb2\x3e\x77\xb0\xfe\x4f\xfe\xf7\xea\x44\x39\x5f\xa7\x59\x06\xc2\x9e\x9d\x2a\xfb\x37\xa3\x53\x19\xef\xdc\x3b\x12\x68\xee\xda\x3d\x79\x3e\x43\x51\xae\x11\x2b\x37\x2e\x24\x2b\xe5\xca\x69\xd3\x41\x12\x83\xdb\x9e\x4d\xa9\x40\x9b\x8a\x87\x8b\x06\x7c\xc0\xb2\x25\x26\x7f\xa8\xac\x2e\x77\x71\xf2\x66\x47\x3b\xd2\x77\xf7\x7f\xac\x93\xa9\x6d\x6e\x06\xdd\xc7\x1a\x5a\x19\xb1\xf6\xdd\xe7\x2d\x72\x4b\xda\x88\x05\x86\xce\x72\xea\xb0\x27\x5c\x7f\x74\x96\x19\xec\x77\x5e\xbe\x0d\xf3\xe9\x3a\xdd\x2b\x79\x16\xb0\xf1\xa1\x92\x09\x37\xff\x2e\x68\x39\xb0\xca\xa2\x9c\x15\x7d\x68\x50\x69\xb4\x2e\x7b\x6c\x87\x20\xe0\x78\x7b\x1d\x4c\xdd\xc9\xd3\x49\x14\x09\xe8\xd9\x9f\xc8\x3b\x0b\x75\x92\x46\x4b\x48\x4e\x43\x9c\x08\x33\x6e\xd7\xd3\xee\x44\xb1\xaf\x5a\x4b\x20\x95\x24\x29\x6a\xf9\xb7\xeb\x52\x69\x82\xc2\xfa\xd9\xe8\x6a\x67\x7b\x35\xcc\xa5\xb1\x3b\xdd\xef\xbc\xeb\xe6\x13\x5c\x5d\xc4\xf5\x90\x87\xef\x69\xf8\xf2\xf1\xdd\x18\x64\x35\xd4\x8e\x0f\xe8\xe9\xb0\x2e\x08\x30\xd8\x18\xb4\xa8\x48\x78\xca\xfc\xaa\x11\x54\x8b\x81\x74\xeb\x0d\x5e\x3e\xf4\x30\xf7\xc2\x84\x23\x9e\x0b\x98\xec\x0e\xe6\x88\xa6\xde\x4c\xce\x87\x56\x79\x8d\x6a\x41\x4b\x98\x4c\xe0\xd5\x6b\x78\x1c\xb0\xb9\x0b\x3f\x34\xb4\xb5\x2c\x31\xf5\x65\xf9\xdf\x73\x68\x9b\x42\x8f\xe1\xd5\xeb\xed\x55\x4f\x83\xa6\xe1\x3d\xc3\x5b\x86\xc5\x00\x26\x90\xdc\xe4\xbd\x3e\x0c\xd0\xb7\x02\x91\xef\x8b\xf6\x50\x41\x58\xb8\xa2\x92\x0a\x77\xc1\x04\x6e\xf5\xaa\xd1\x56\x92\x93\xca\x74\xeb\xc0\xf6\x30\x4f\x58\x43\xc3\x66\x73\xc6\x67\x13\xa7\xac\x83\x07\x2b\xb4\xd6\x6f\xea\x5b\x05\x2c\x0d\x0a\xe2\x26\x72\x56\x9c\xa6\xdd\x45\xf1\xf9\x11\xf6\x33\x1d\x76\x7c\xaa\x9d\x30\x18\x32\x7b\x12\xfd\x2c\x02\x8c\xea\xf6\x10\x57\x71\x27\xe4\x0b\x24\x47\x74\xc6\xc5\xc4\x7c\x9c\x1d\xe3\x2f\xac\x81\x6e\x7e\xae\x85\xed\x3b\x68\xb0\xf6\xf3\x02\xcb\x1c\xf7\x7b\x6f\x7f\x9c\xd7\x5a\xb4\x84\xd5\x59\x12\x79\x0a\xae\xe6\xdc\x7f\x61\x10\x3c\xc6\x5d\xb7\xe8\xba\xce\x60\x29\x1b\x89\x8a\x2c\x34\xed\xac\x96\x65\x2f\x00\x5e\xac\x76\x36\xad\xee\xf0\x70\xcf\x22\x9d\x1d\x1e\x28\x1d\xe2\xde\x5c\x31\x58\xa2\xe4\x57\xd3\x63\x43\x25\x1c\xf0\x43\xa5\xbf\x36\x2f\x45\x23\x66\xb2\x96\x24\xf1\x99\xb5\x2d\xff\xdc\x99\x3f\x5d\x1f\x14\x4f\xef\x16\x6b\x67\x76\x64\xaa\x17\x31\x33\xdb\x21\xe1\xde\x3c\xc4\xfe\x52\x17\xee\x63\x65\x3f\x3d\x40\x9e\x77\xe9\xe7\xe4\xdc\x97\x01\x8b\x34\x33\x53\xbb\x57\x33\x4f\x1e\x6b\x8a\xf8\x91\xf1\xf2\x93\xf3\x8c\x6b\x35\xff\x01\xd8\x1d\x0e\x7f\x61\xd8\x70\x5f\x87\x42\x38\x34\x79\x2e\x2f\xe1\x1d\x3a\x4d\x0b\xbb\xd1\x6e\x7d\xf5\x47\xa3\x7a\xca\x2b\x6f\x93\xba\x77\xd4\x31\x5c\x5d\xc4\x7d\x1b\x1a\xe7\xe9\x9f\x00\x00\x00\xff\xff\xd2\x3f\x3e\x21\x7c\x11\x00\x00" +var _transactionsGeneric_transfer_with_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x57\xdd\x6e\xdb\x38\x13\xbd\xfe\xfc\x14\x13\x7d\x40\x57\x02\x12\xa5\x5d\x2c\x16\x85\x11\xa7\xcd\xa6\x75\xd1\x8b\x1a\x8b\x56\xed\x5e\xd3\xd2\xd8\xe6\x56\x26\xb5\x24\x15\xc7\x1b\xf8\xdd\x17\x43\x8a\x12\xe9\x9f\xba\xad\x2f\x5a\xc7\xe2\x1c\xce\x9c\x99\x39\x33\xe2\xeb\x46\x2a\x03\xc9\x4c\x8a\x69\x2b\x96\x7c\x5e\x63\x21\xbf\xa2\x48\x46\xfe\xc9\x07\x34\xac\x62\x86\x7d\xe1\xb8\xd1\xc9\x68\xf4\x7f\x2e\x0c\x2a\x56\x1a\x2e\x05\xa4\x23\x80\x07\x54\x9a\x4b\x31\x86\xe4\x45\xfe\x3c\x7f\x9e\x5c\x8e\xfe\x67\xb8\xa9\x71\x0c\xc9\x3b\x14\xa8\x78\x09\xb3\x69\x01\x85\x62\x42\x2f\x50\xc1\x86\x9b\x15\xdc\x4b\x61\x08\x04\xee\xaa\x4a\xa1\xd6\xc0\x44\x05\x33\xb6\x46\x32\xaf\x50\x97\x8a\x37\xc6\xa1\xf6\x86\x4c\x6c\x61\x26\xc5\x95\x77\x14\xac\xa7\x30\xdf\x42\xa3\xe4\x03\xaf\xb8\x58\x82\x59\x21\x94\x1e\x9b\x05\xd8\xa2\xc3\xae\x99\x58\xb6\x6c\x49\xde\xa1\xb8\xfa\xfc\x29\xb9\x1c\x65\xa3\xd1\xf5\xf5\x35\xdc\x33\x01\x0d\xd3\x1a\xb8\xb0\x57\x9d\x84\xb1\xa7\x8b\x15\xd7\x50\xa3\xd1\xb0\x95\x2d\x94\x2b\x29\x35\xda\xdb\x8d\x75\x8a\x7e\xdc\x30\x61\xc0\x48\xd0\x28\x2a\x98\x63\xc9\x5a\xed\x6c\xed\x31\x8a\xaa\x63\x71\x49\x30\xf4\xe3\xba\xe3\x1a\x16\x4a\xae\xed\x2f\x2e\x32\xac\x7a\x6f\x72\x42\xb0\x28\xaf\x1b\xa6\xd8\x1a\x8c\x1c\x43\xb1\xc2\xde\x4b\x23\x1d\x36\x31\x36\xf8\x63\x64\x68\xc3\x2b\x67\xc3\x2b\x90\x8b\xfe\x44\x6f\x17\x1e\xf5\xf7\x76\x79\x8a\xef\x22\xe3\x90\x70\xb3\x62\x06\x2a\x5c\x70\x81\x3a\xb8\x7c\x8e\x36\x35\x1d\xba\xc2\xea\xd8\x05\x94\x7c\x87\x4e\x1c\xff\x34\x74\x0e\x6f\x1f\xc7\x90\xbc\x7d\x64\xeb\xa6\xc6\xd9\xb4\x48\x7a\xc2\x6c\xca\x42\xde\xa5\xa8\xb7\xb0\x91\xea\xab\x76\x45\x39\x9b\x16\xda\x5d\xb4\x62\x0f\x5d\x36\xb7\x4d\xe7\x50\xe2\xb1\xe0\x0e\x2a\xbe\x58\xa0\x42\x4a\x6f\x00\xc7\x35\x28\xfc\xa7\xe5\x0a\x2b\x58\x48\xe5\xe0\x2c\x30\x0b\x2d\x3c\xa2\xf5\x2b\xb0\x4f\x29\x93\x1d\xcd\x97\x36\x45\x9f\xdf\x0b\xf3\xfb\x6f\x97\x87\x39\xe8\x4f\xc5\xe4\x7d\x32\x8a\x8b\x65\x06\x4f\xa3\x11\x00\x80\x0d\x19\x6d\xf3\x29\xd4\xb2\x55\x25\xb1\x06\x73\x8c\x52\x41\x27\x6b\x34\x60\x70\xdd\xcc\xa6\xc5\x18\x5e\x3f\xed\x8b\x41\x3e\x9b\x16\xbb\x1e\x73\x36\x2d\xee\x65\x5d\xa3\x75\xfa\x0d\x55\xab\x36\xaa\x2d\x6d\xa9\x2f\xd1\x40\xc3\xcc\x4a\xdb\x0a\xee\xb1\xcb\xe8\xfc\x18\x22\x4d\xc9\x0f\x00\xdd\x55\x8d\xc2\x86\x29\x4c\x35\x5f\x0a\x54\x63\x60\xad\x59\xa5\x7f\x48\xa5\xe4\xe6\x0b\xab\x5b\xcc\xe0\xd9\x5d\x59\xca\x56\x98\x3e\xe2\xce\x43\x77\x08\x18\x28\xb4\xa4\xbb\xb8\x29\x9d\x62\x61\x86\x92\xaa\xb0\xa9\xe5\x16\x2b\xff\x90\x9a\x1f\x2b\x60\x0e\xb4\x07\xa4\x00\x88\xbf\xfa\x01\xd5\x47\x5c\xc0\x84\xa2\xec\x6e\x4e\xf7\x52\x93\xf5\x56\xf4\xc9\xfd\x53\x9d\xcf\xad\x4b\x37\xcf\x0e\xb8\xdd\xdd\xa6\xc2\x26\x2f\x4c\x65\x0c\x43\x9f\x57\xaf\xa0\x61\x82\x97\x69\x72\x2f\xdb\xba\x02\x21\x0d\x38\x4c\xd8\x47\x3c\x8c\xba\xd7\x0e\xf8\xc0\xbe\x22\xe8\x56\xe1\x71\x71\x71\x95\x9e\x26\x07\xd7\xc7\x31\x95\x6c\x08\xdc\xba\xeb\x7f\x4c\x32\x2b\x92\x5e\x1e\xd2\x24\xdb\x3f\xde\xf1\x94\x1b\xe9\x8a\x35\xcd\x22\x63\x45\xce\x2a\x85\xa5\xb9\x48\xb2\x2c\x4a\xea\x67\xab\xaf\xcc\xc4\xe1\x29\x34\x8a\x63\xd7\xac\x87\x95\xf9\xc0\x71\x03\x3d\x8a\xc6\x7a\x91\xc7\xb5\x08\x93\x30\xb7\x79\xf7\xdd\x4f\x27\xaa\xcf\xd4\xf7\x4e\xb1\x6d\x70\x0c\x82\xd7\x97\x16\xd6\xfd\x49\xff\xde\x9c\x29\xe7\xdb\x34\xcb\x80\xe9\x8b\x73\x65\xff\x6a\x74\x2e\xe3\x9d\x7b\x27\x02\xcd\x6d\xbb\x27\xdf\xce\x50\x90\x6b\xc4\xca\x8e\x0b\x4e\x4a\xb9\xb6\xda\x74\x94\x44\xef\xb6\x63\x93\x0b\x90\xaa\xa2\xe1\x22\x01\x1f\xb1\x6c\x0d\x91\x1f\x2b\xab\xcd\x5d\x98\xbc\xf9\xc9\x8e\x74\xdd\xfd\x8b\xb6\x32\x35\xe4\x26\xea\x3e\xd2\xd0\x4a\xb1\x8d\xeb\x3e\x67\x91\x6b\x23\x15\x5b\xa2\xef\x2c\xab\x0e\x07\xc2\xf5\x57\x67\x99\xc1\x61\xe7\xe5\x43\x98\xbb\xdb\xf4\xa0\xe4\x49\xc0\xc6\xc7\x4a\xc6\xdf\xfc\x27\x33\xab\xc8\x2a\x0b\x72\x56\xf4\xa1\x41\x25\x51\xdb\xec\x91\x1d\x02\x83\xd3\xed\x75\x34\x75\x67\x4f\x27\x30\x44\x02\x72\xfe\x37\xd2\xce\x62\x3a\x49\x33\x2b\x48\xce\x43\x9c\x09\x33\x6c\xd7\xf3\xee\xb8\x3a\xec\xa2\x5f\xb7\xda\x00\x17\xdc\x70\x56\xf3\x7f\x6d\x9f\x72\xe5\x35\xd6\x4d\x47\x5b\x3d\xc3\xe5\xb0\xe0\x4a\xef\xf5\xbf\xf5\xaf\x9b\x50\x70\x73\x15\x56\x44\xee\xbf\xa7\xfe\xcb\xfb\x37\x63\xe0\x55\xac\x1e\xef\xd0\x11\xa2\x6d\x18\xa0\xb0\x51\xa8\x51\x18\xe6\x48\x73\xcb\x86\xd7\x2d\x02\x92\xad\x33\x78\xfe\xd8\xc3\x3c\x30\xe5\x8f\x38\x36\x60\xb2\x3f\x9a\x03\xa2\x7a\x33\xbe\x88\xad\xf2\x1a\xc5\xd2\xac\x60\x32\x81\x17\x2f\xe1\x29\xe2\x73\x1f\x3e\x36\xd4\x35\x2f\x31\x75\x85\xf9\xeb\x25\xb4\x4d\x21\xc7\xf0\xe2\xe5\x70\xd5\x2e\x6a\x1b\xda\x34\x9c\xa5\x5f\x0d\x60\x02\xc9\x5d\xde\x2b\x44\x84\x3e\x48\x44\x7e\x28\xdb\xb1\x86\x90\x74\x05\x45\xe5\xef\x82\x09\xdc\xcb\x75\x23\x35\x37\x56\x2c\xd3\xc1\x81\xe1\x30\xcd\x58\x65\xe2\x76\xb3\xc6\x17\x13\xab\xad\xd1\x83\x35\x6a\xed\x76\xf5\x41\x03\x4b\x85\xcc\x50\x1b\x59\x2b\x4a\xd3\xfe\xaa\xe8\xd6\xb5\x13\x75\xfa\x23\x2d\x36\x34\x58\x38\xd5\x4e\xb6\xd3\x71\x5a\xcf\x61\x5f\x04\x78\x41\xcd\x1e\xe3\x29\xec\x82\x7c\x89\xc6\x92\x9c\x51\x21\x11\x17\x17\xa7\xb8\xf3\x4b\xa0\x9d\x9e\x1b\xa6\xfb\xee\x89\x96\x7e\x5a\x5f\x89\xdf\x7e\xeb\xed\x8f\xd3\x52\x8b\xda\x60\x05\x37\x27\x58\xf5\xc1\x04\x09\xef\xe3\xbb\xcd\xa3\x00\xc1\x96\xa9\xfd\xcf\x4f\x8f\xa7\xb0\x51\x97\x5d\xa3\x2a\x2c\x79\xc3\x51\x18\x0d\x4d\x3b\xaf\x79\xd9\x6b\x86\x53\xb8\xbd\xf5\xac\x3b\x1c\x2f\x67\x46\x66\xc7\xa7\x50\x87\x78\x30\x8c\x14\x96\xc8\xe9\x7d\xf6\xd4\x24\xf2\x07\xdc\x24\xea\xaf\xcd\x4b\xd6\xb0\x39\xaf\xb9\xe1\xf8\x8d\x5d\x2f\xff\xd8\x99\xef\x6e\x8f\x2a\xae\x73\x8b\x04\x37\x3b\xb1\x0a\x14\x21\x33\xc3\x64\xb1\xaf\x2b\xec\x70\x13\xf4\xf7\xd1\x38\x38\x3f\x75\xbe\xed\xd2\x8f\xcd\x00\x57\x3d\xa4\xeb\xc4\x4c\x6d\xdf\xe7\x1c\x79\x24\x43\xec\x7b\x66\xd2\x8f\x0e\x41\x6a\x8a\xef\x80\xdd\xe3\xf0\x27\xe6\x13\x89\x81\x2f\x84\x63\xc3\xea\xfa\x1a\xde\xa0\x95\x41\xbf\x50\xed\xd7\x57\x7f\x34\xa8\xa7\xbc\x72\x36\xa9\x7d\xb1\x1d\xc3\xcd\x55\xd8\xee\xbe\x71\x76\xff\x05\x00\x00\xff\xff\xa2\x7a\x46\x12\xb1\x11\x00\x00" func transactionsGeneric_transfer_with_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -131,11 +131,11 @@ func transactionsGeneric_transfer_with_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/generic_transfer_with_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7e, 0xb7, 0x8, 0xc9, 0xf, 0x8, 0x60, 0x28, 0x82, 0x4c, 0x18, 0x60, 0xda, 0x1a, 0x7a, 0x7f, 0xb, 0x79, 0x83, 0xcf, 0x5d, 0x2d, 0x4b, 0xf5, 0xf1, 0xf1, 0x5a, 0x60, 0xce, 0x86, 0xec, 0xba}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0x76, 0xa2, 0xf1, 0xd4, 0x9a, 0x77, 0xc6, 0x1f, 0x22, 0xb1, 0x72, 0x51, 0x7c, 0x91, 0x14, 0x2e, 0x6d, 0xa0, 0x51, 0x5, 0x44, 0xf4, 0x19, 0x4f, 0x4c, 0xeb, 0x63, 0xc4, 0xa, 0x25, 0x3a}} return a, nil } -var _transactionsGeneric_transfer_with_address_and_typeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x57\xdb\x6e\xdb\x46\x13\xbe\xfe\xf5\x14\x63\xfe\x40\x4a\x02\x36\x9d\x14\x45\x11\x08\x96\x93\xd4\x89\x83\x5c\x44\x28\x12\x26\xbd\x5e\x91\x23\x69\x1b\x6a\x97\xdd\x1d\xfa\x50\xc3\xef\x5e\xcc\x2e\x97\x5c\xea\x60\x25\xf1\x45\x22\x51\x33\xdf\x9c\xbf\x19\xca\x4d\xa3\x0d\x41\x32\xd7\xea\xba\x55\x2b\xb9\xa8\xb1\xd0\xdf\x50\x25\x93\xf0\xcb\x47\x24\x51\x09\x12\x5f\x25\xde\xda\x64\x32\xf9\xbf\x54\x84\x46\x94\x24\xb5\x82\x74\x02\x70\x83\xc6\x4a\xad\xa6\x90\xbc\xc8\x9f\xe7\xcf\x93\xd3\xc9\xff\x48\x52\x8d\x53\x48\xde\xa3\x42\x23\x4b\x98\x5f\x17\x50\x18\xa1\xec\x12\x0d\xdc\x4a\x5a\xc3\x95\x56\xc4\x20\xf0\xa6\xaa\x0c\x5a\x0b\x42\x55\x30\x17\x1b\x64\xf5\x0a\x6d\x69\x64\x43\x1e\xb5\x57\x14\xea\x1e\xe6\x5a\x9d\x05\x47\xc1\x79\x0a\x8b\x7b\x68\x8c\xbe\x91\x95\x54\x2b\xa0\x35\x42\x19\xb0\x45\x84\xad\xc4\x06\xdd\x07\xba\x6f\xd0\x7d\x63\x4b\xb5\x50\xab\x56\xac\xd8\x57\x54\x67\x5f\x3e\x27\xa7\x93\x6c\x32\x39\x3f\x3f\x87\x2b\xa1\xa0\x11\xd6\x82\x54\xce\xf0\xd3\xa0\x1c\x60\x0f\xec\xf4\x8b\xb5\xb4\x50\x23\x59\xb8\xd7\x2d\x94\x6b\xad\x2d\x3a\xef\xc8\x39\xcd\x0f\x6f\x85\x22\x20\x0d\x16\x55\x05\x0b\x2c\x45\x6b\xbd\xae\x13\xe3\xa8\xbb\x2c\xaf\x18\x86\x1f\x6e\xba\x5a\xc0\xd2\xe8\x8d\x7b\xe2\x23\xc7\xaa\xf7\x2f\x67\x04\x87\xf2\xba\x11\x46\x6c\x80\xf4\x14\x8a\x35\xf6\x7e\x93\xf6\xd8\x9c\xd1\xc1\x1f\xd2\xb1\x8e\xac\xbc\x8e\xac\x40\x2f\x7b\x89\x5e\x2f\x16\x0d\x76\xbb\x3a\x8e\x6d\xb1\x72\x5c\x10\x5a\x0b\x82\x0a\x97\x52\xa1\x8d\x8c\x2f\xd0\x95\xae\x43\x37\x58\xed\x33\xc0\xcd\xe1\xd1\x5d\xd6\x7f\x16\x3a\x87\x77\x77\x53\x48\xde\xdd\x89\x4d\x53\xe3\xfc\xba\x48\x62\x63\x6a\x49\xc5\x7d\x83\x83\xad\xbe\xa8\xc1\xa0\xab\x34\xdb\xe2\x2f\xad\xe5\x7e\x16\x8a\xec\x4e\x7a\xb6\xff\x9c\xd5\x60\x6e\x12\x55\x37\xe5\x02\x75\xd9\x3b\x75\x99\xff\xf2\x41\xd1\xef\xbf\x9d\xee\xa6\xb6\x97\x1a\xe7\xe4\x33\x19\xa9\x56\xa7\x63\xe7\xfd\xc3\x0c\x1e\x26\x13\x36\xef\x3a\xd2\x7b\x6f\xd0\xea\xd6\x94\x9c\x21\x58\xe0\x28\xed\x2c\x59\x23\x01\xe1\xa6\x99\x5f\x17\x53\x78\xfd\xb0\x4d\x0c\xf9\xfc\xba\x78\xec\x31\xe7\xd7\xc5\x95\xae\x6b\x74\x91\xbc\xe5\xce\xb4\x64\xda\xd2\xb5\xf5\x0a\x09\x1a\x41\x6b\xeb\xba\xb5\xc7\x2e\x47\xf2\x53\x18\xf1\x4b\xbe\x03\xe8\x4d\x35\x06\x1b\x61\x30\xb5\x72\xa5\xd0\x4c\x41\xb4\xb4\x4e\xff\xd0\xc6\xe8\xdb\xaf\xa2\x6e\x31\x83\x67\x6f\xca\x52\xb7\x8a\xfa\x88\x3b\x0f\xbd\x10\x08\x30\xb8\x44\x83\xca\xc7\xcd\xc5\x53\x4b\x1a\xda\xa7\xc2\xa6\xd6\xf7\x58\x85\x1f\x79\xf4\xb1\x02\xe1\x41\x7b\x40\x0e\x80\xf3\x57\xdf\xa0\xf9\x84\x4b\x98\x71\x94\x9d\xe5\x74\xab\x5e\xd9\x24\xae\x7f\x1e\x7e\xb5\xf9\xc2\xb9\x74\xf1\x6c\x27\xb7\x8f\x97\xa9\x72\xc5\x8b\xeb\x3b\x86\xe1\xbf\x57\xaf\xa0\x11\x4a\x96\x69\x72\xa5\xdb\xba\x02\xa5\x09\x3c\x26\x6c\x23\xee\x46\xdd\xf3\x04\x7c\x14\xdf\x10\x6c\x6b\x70\x3f\x91\xf8\xae\x4f\x93\x1d\xf3\xe3\x98\x4a\x31\x04\xee\xdc\x0d\x0f\x93\xcc\x31\x63\xa0\x82\x34\xc9\xb6\xc5\xbb\x3c\xe5\xa4\x7d\xb3\xa6\xd9\x48\xd9\xb0\xb3\xc6\x60\x49\x27\x49\x96\x8d\x8a\xfa\xc5\x71\xa9\xa0\x71\x78\x06\xc9\x48\xbc\xc1\x30\xa7\x5b\x9d\x79\x23\xf1\x16\x7a\x14\x8b\xf5\x32\x1f\xf7\x22\xcc\xe2\xda\xe6\xdd\xe7\xb0\xa9\xb8\x3f\xd3\x30\x3b\x3c\x67\x53\x50\xb2\x3e\x75\xb0\xfe\x2b\xff\x7b\x71\xa4\x9d\x2f\xd3\x2c\x03\x61\x4f\x8e\xb5\xfd\xab\xc9\xb1\x8a\x77\xee\x1d\x08\x34\x77\xe3\x9e\x3c\x5d\xa1\xa8\xd6\x88\x95\xe3\x30\xc9\xac\xb8\x41\x45\x07\x92\x18\xdc\xf6\xd9\x94\x0a\xb4\xa9\x78\x91\x68\xc0\x3b\x2c\x5b\xe2\xe4\x4b\x1b\x6f\x2f\x57\xbb\xb8\x78\x8b\x83\x13\xe9\xa7\xfb\x17\xeb\x68\x6a\xa8\xcd\x68\xfa\xf8\x7a\xa8\x8c\xb8\xf5\xd3\xe7\x35\x72\x4b\xda\x88\x15\x86\xc9\x72\xec\xb0\x43\x5c\x7f\x75\x9a\x19\xec\x4e\x5e\x3e\x84\xf9\x78\x99\xee\xb4\x3c\x13\xd8\x74\x5f\xcb\x04\xcb\x7f\x0a\x5a\x8f\xb4\xb2\xa8\x66\x45\x1f\x1a\x54\x1a\xad\xab\x1e\xeb\x21\x08\x38\x3c\x5e\x7b\x4b\x77\x54\x3a\x89\x22\x01\xbd\xf8\x1b\xf9\x62\xa1\x8e\xd2\x68\x0d\xc9\x71\x88\x23\x61\xc6\xe3\x7a\xdc\x9d\x28\xf6\x4d\x6b\x09\xa4\x92\x24\x45\x2d\xff\x75\x53\x2a\x4d\x60\x58\x7f\x15\xba\xde\x19\x4c\xc3\x52\x1a\xbb\x35\xfd\xce\xbb\x6e\x3f\xc1\xc5\x59\xdc\x0f\x79\xf8\x9c\x86\x0f\x1f\xde\x4e\x41\x56\x63\xee\x78\x8f\x3e\x1d\xd6\x05\x01\x06\x1b\x83\x16\x15\x09\x9f\x32\xbf\xe5\x03\x6b\x31\x90\x6e\xbd\xc2\xf3\xbb\x1e\xe6\x46\x98\x20\xe2\x73\x01\xb3\xed\x6d\x1d\xa5\xa9\x57\x93\xcb\xb1\x56\x5e\xa3\x5a\xd1\x1a\x66\x33\x78\xf1\x12\x1e\x46\xd9\xdc\x86\x1f\x2b\xda\x5a\x96\x98\xfa\xb6\xfc\xf5\x14\xda\xa6\xd0\x53\x78\xf1\x72\x30\xf5\x38\x1a\x1a\xbe\x62\xbc\x66\x38\x0c\x60\x06\xc9\x9b\xbc\xe7\x87\x11\xfa\x40\x10\xf9\x2e\x69\x8f\x19\x24\x12\x88\xae\x8f\x6c\xc7\x38\xcc\xe0\x4a\x6f\x1a\x6d\x25\x39\xee\x4c\x07\x8f\x06\x61\x5e\xb9\x86\xc6\xd3\xe7\x94\x4f\x66\x8e\x6a\x47\x3f\x6c\xd0\x5a\x7f\xb8\x0f\x94\x58\x1a\x14\xc4\x53\xe5\xb4\xb8\x6e\xdb\x57\xe2\xd3\x3b\xed\x47\x46\xee\xf0\x9a\x3b\xa2\x30\x4e\xf5\x51\xf4\x93\x08\x30\x6a\xe4\x7d\xb9\x8a\x47\x23\x5f\xa1\x2b\x47\x9a\x71\x77\x71\x3e\x4e\x0e\xe5\xaf\x88\xaf\xda\x5b\x61\xfb\x91\x1a\xdd\xfc\x20\x3d\x71\x51\x38\x8a\x7b\x71\x83\xff\xb4\x68\x09\xab\x93\x24\xf2\x14\x5c\x13\xba\xff\xc2\x66\x78\x88\xc7\x70\xd5\x8d\xa1\xc1\x52\x36\x12\xf9\x84\x6e\xda\x45\x2d\xcb\x9e\x11\x3c\x7b\x6d\x9d\x5e\x9d\xf0\xf8\xf0\x22\x9d\xed\xdf\x30\x1d\xe2\xce\xa2\x31\x58\xa2\xe4\xf7\xd6\x43\x5b\x26\x08\xf8\x2d\xd3\x9b\xcd\x4b\xd1\x88\x85\xac\x25\x49\x7c\xe2\x8e\xcb\x3f\x75\xea\x8f\x97\x7b\xd9\xd4\xbb\xc5\x64\x9a\x1d\x58\xf3\x45\x9c\x99\x61\x6b\xac\xc5\x0d\xb7\xf7\xce\x95\x17\xec\x31\xd5\x1f\xdf\x28\x4f\xbb\xf4\x63\xfc\xee\xdb\x80\x59\x9b\x33\x53\xbb\xd7\x24\x9f\x3c\x26\x19\xf1\x3d\xfb\xe6\x07\x17\x1c\xf7\x6a\xfe\x1d\xb0\x5b\x39\xfc\x89\xed\xc3\x73\x1d\x1a\x61\xdf\x2a\x3a\x3f\x87\xb7\xe8\x38\x6d\x78\x33\x1c\xf7\x57\x2f\x1a\xf5\x53\x5e\x79\x9d\xd4\xbd\xa0\x4e\xe1\xe2\x2c\x9e\xdb\x30\x38\x8f\xff\x05\x00\x00\xff\xff\x21\xa8\x91\x34\x99\x11\x00\x00" +var _transactionsGeneric_transfer_with_address_and_typeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x57\xdb\x6e\xdb\x46\x13\xbe\xfe\xf5\x14\x63\xfe\x40\x4a\x02\x36\x9d\x14\x45\x11\x08\x96\x93\xd4\x89\x83\x5c\x44\x28\x12\x26\xbd\x5e\x91\x23\x69\x1b\x6a\x97\xdd\x1d\xfa\x50\xc3\xef\x5e\xcc\x2e\x97\x5c\xea\x60\x25\xf1\x45\x22\x51\x33\xdf\x9c\xbf\x19\xca\x4d\xa3\x0d\x41\x32\xd7\xea\xba\x55\x2b\xb9\xa8\xb1\xd0\xdf\x50\x25\x93\xf0\xcb\x47\x24\x51\x09\x12\x5f\x25\xde\xda\x64\x32\xf9\xbf\x54\x84\x46\x94\x24\xb5\x82\x74\x02\x70\x83\xc6\x4a\xad\xa6\x90\xbc\xc8\x9f\xe7\xcf\x93\xd3\xc9\xff\x48\x52\x8d\x53\x48\xde\xa3\x42\x23\x4b\x98\x5f\x17\x50\x18\xa1\xec\x12\x0d\xdc\x4a\x5a\xc3\x95\x56\xc4\x20\xf0\xa6\xaa\x0c\x5a\x0b\x42\x55\x30\x17\x1b\x64\xf5\x0a\x6d\x69\x64\x43\x1e\xb5\x57\x14\xea\x1e\xe6\x5a\x9d\x05\x47\xc1\x79\x0a\x8b\x7b\x68\x8c\xbe\x91\x95\x54\x2b\xa0\x35\x42\x19\xb0\x45\x84\xad\xc4\x06\xdd\x07\xba\x6f\xd0\x7d\x63\x4b\xb5\x50\xab\x56\xac\xd8\x57\x54\x67\x5f\x3e\x27\xa7\x93\x6c\x32\x39\x3f\x3f\x87\x2b\xa1\xa0\x11\xd6\x82\x54\xce\xf0\xd3\xa0\x1c\x60\x0f\xec\xf4\x8b\xb5\xb4\x50\x23\x59\xb8\xd7\x2d\x94\x6b\xad\x2d\x3a\xef\xc8\x39\xcd\x0f\x6f\x85\x22\x20\x0d\x16\x55\x05\x0b\x2c\x45\x6b\xbd\xae\x13\xe3\xa8\xbb\x2c\xaf\x18\x86\x1f\x6e\xba\x5a\xc0\xd2\xe8\x8d\x7b\xe2\x23\xc7\xaa\xf7\x2f\x67\x04\x87\xf2\xba\x11\x46\x6c\x80\xf4\x14\x8a\x35\xf6\x7e\x93\xf6\xd8\x9c\xd1\xc1\x1f\xd2\xb1\x8e\xac\xbc\x8e\xac\x40\x2f\x7b\x89\x5e\x2f\x16\x0d\x76\xbb\x3a\x8e\x6d\xb1\x72\x5c\x10\x5a\x0b\x82\x0a\x97\x52\xa1\x8d\x8c\x2f\xd0\x95\xae\x43\x37\x58\xed\x33\xc0\xcd\xe1\xd1\x5d\xd6\x7f\x16\x3a\x87\x77\x77\x53\x48\xde\xdd\x89\x4d\x53\xe3\xfc\xba\x48\x62\x63\x6a\x49\xc5\x7d\x83\x83\xad\xbe\xa8\xc1\xa0\xab\x34\xdb\xe2\x2f\xad\xe5\x7e\x16\x8a\xec\x4e\x7a\xb6\xff\x9c\xd5\x60\x6e\x12\x55\x37\xe5\x02\x75\xd9\x3b\x75\x99\xff\xf2\x41\xd1\xef\xbf\x9d\xee\xa6\xb6\x97\x1a\xe7\xe4\x33\x19\xa9\x56\xa7\x63\xe7\xfd\xc3\x0c\x1e\x26\x13\x36\xef\x3a\xd2\x7b\x6f\xd0\xea\xd6\x94\x9c\x21\x58\xe0\x28\xed\x2c\x59\x23\x01\xe1\xa6\x99\x5f\x17\x53\x78\xfd\xb0\x4d\x0c\xf9\xfc\xba\x78\xec\x31\xe7\xd7\xc5\x95\xae\x6b\x74\x91\xbc\xe5\xce\xb4\x64\xda\xd2\xb5\xf5\x0a\x09\x1a\x41\x6b\xeb\xba\xb5\xc7\x2e\x47\xf2\x53\x18\xf1\x4b\xbe\x03\xe8\x4d\x35\x06\x1b\x61\x30\xb5\x72\xa5\xd0\x4c\x41\xb4\xb4\x4e\xff\xd0\xc6\xe8\xdb\xaf\xa2\x6e\x31\x83\x67\x6f\xca\x52\xb7\x8a\xfa\x88\x3b\x0f\xbd\x10\x08\x30\xb8\x44\x83\xca\xc7\xcd\xc5\x53\x4b\x1a\xda\xa7\xc2\xa6\xd6\xf7\x58\x85\x1f\x79\xf4\xb1\x02\xe1\x41\x7b\x40\x0e\x80\xf3\x57\xdf\xa0\xf9\x84\x4b\x98\x71\x94\x9d\xe5\x74\xab\x5e\xd9\x24\xae\x7f\x1e\x7e\xb5\xf9\xc2\xb9\x74\xf1\x6c\x27\xb7\x8f\x97\xa9\x72\xc5\x8b\xeb\x3b\x86\xe1\xbf\x57\xaf\xa0\x11\x4a\x96\x69\x72\xa5\xdb\xba\x02\xa5\x09\x3c\x26\x6c\x23\xee\x46\xdd\xf3\x04\x7c\x14\xdf\x10\x6c\x6b\x70\x3f\x91\xf8\xae\x4f\x76\xac\x8f\x43\x2a\xc5\x10\xb7\xf3\x36\x3c\x4c\x1c\x2f\x06\x22\x48\xb2\x6d\xe1\x2e\x49\x39\x69\xdf\xa9\x69\x16\xab\x1a\x76\xd4\x18\x2c\xe9\x24\xc9\xb2\x51\x41\xbf\x38\x1e\x15\x34\x0e\xcd\x20\x19\x89\x37\x18\x66\x74\xab\x2b\x6f\x24\xde\x42\x8f\x62\xb1\x5e\xe6\xe3\x3e\x84\x59\x5c\xd7\xbc\xfb\x1c\xb6\x14\xf7\x66\x1a\xe6\x86\x67\x6c\x0a\x4a\xd6\xa7\x0e\xd6\x7f\xe5\x7f\x2f\x8e\xb4\xf2\x65\x9a\x65\x20\xec\xc9\xb1\x96\x7f\x35\x39\x56\xed\xce\xbd\x03\x81\xe6\x6e\xd4\x93\x23\xe5\x19\xea\x8c\x58\x39\xfe\x92\xcc\x88\x1b\x54\x74\x20\x89\xc1\x6d\x9f\x4d\xa9\x40\x9b\x8a\x97\x88\x06\xbc\xc3\xb2\x25\x4e\xbe\xb4\xf1\xe6\x72\xb5\x8b\x8b\xb7\x38\x38\x8d\x7e\xb2\x7f\xb1\x8e\xa2\x86\xda\x8c\x26\x8f\x2f\x87\xca\x88\x5b\x3f\x79\x5e\x23\xb7\xa4\x8d\x58\x61\x98\x2a\xc7\x0c\x3b\xa4\xf5\x57\xa7\x99\xc1\xee\xd4\xe5\x43\x98\x8f\x97\xe9\x4e\xbf\x33\x79\x4d\xf7\xb5\x4c\xb0\xfc\xa7\xa0\xf5\x48\x2b\x8b\x6a\x56\xf4\xa1\x41\xa5\xd1\xba\xea\xb1\x1e\x82\x78\x62\xb6\xf6\x96\xee\xa8\x74\x02\x43\x24\xa0\x17\x7f\x23\x5f\x2b\xd4\xd1\x19\xad\x21\x39\x0e\x71\x24\xcc\x78\x5a\x8f\xbb\x13\xc5\xbe\x69\x2d\x81\x54\x92\xa4\xa8\xe5\xbf\x6e\x4a\xa5\x09\xec\xea\x2f\x42\xd7\x3b\x83\x69\x58\x4a\x63\xb7\xa6\xdf\x79\xd7\xed\x26\xb8\x38\x8b\xfb\x21\x0f\x9f\xd3\xf0\xe1\xc3\xdb\x29\xc8\x6a\xcc\x1d\xef\xd1\xa7\xc3\xba\x20\xc0\x60\x63\xd0\xa2\x22\xe1\x53\xe6\x37\x7c\xe0\x2c\x06\xd2\xad\x57\x78\x7e\xd7\xc3\xdc\x08\x13\x44\x7c\x2e\x60\xb6\xbd\xa9\xa3\x34\xf5\x6a\x72\x39\xd6\xca\x6b\x54\x2b\x5a\xc3\x6c\x06\x2f\x5e\xc2\xc3\x28\x9b\xdb\xf0\x63\x45\x5b\xcb\x12\x53\xdf\x96\xbf\x9e\x42\xdb\x14\x7a\x0a\x2f\x5e\x0e\xa6\x1e\x47\x43\xc3\x17\x8c\xd7\x0c\x47\x01\xcc\x20\x79\x93\xf7\xfc\x30\x42\x1f\x08\x22\xdf\xe5\xec\x31\x83\x44\x02\xd1\xe5\x91\xed\x18\x87\x19\x5c\xe9\x4d\xa3\xad\x24\xc7\x9d\xe9\xe0\xd1\x20\xcc\xeb\xd6\xd0\x78\xfa\x9c\xf2\xc9\xcc\x51\xed\xe8\x87\x0d\x5a\xeb\x8f\xf6\x81\x12\x4b\x83\x82\x78\xaa\x9c\x16\xd7\x6d\xfb\x42\x7c\x72\x9f\xfd\xc8\xc4\x1d\x5a\x71\x47\xc4\xc7\x79\x3e\x86\x7d\x12\xe1\x45\x4d\xbc\x2f\x4f\xf1\x58\xe4\x2b\x74\xa5\x48\x33\xee\x2c\xce\xc5\xc9\xa1\xdc\x15\xf1\x35\x7b\x2b\x6c\x3f\x4e\xa3\x5b\x1f\xa4\x27\x2d\x0a\xc7\x70\x2f\x6e\xf0\x9f\x16\x2d\x61\x05\x17\x07\xb2\x1a\x82\x89\x0a\xde\xc7\x77\x99\x8f\x02\x04\xd7\xb7\xee\xbf\xb0\x4c\x1e\xe2\xc9\x5d\x75\x93\x6b\xb0\x94\x8d\x44\xbe\xb8\x9b\x76\x51\xcb\xb2\x27\x11\x4f\x78\x5b\x97\x5a\x27\x3c\xbe\xd3\x48\x67\xfb\x97\x52\x87\xb8\xb3\x9b\x0c\x96\x28\xf9\x35\xf7\xd0\x62\x0a\x02\x7e\x31\xf5\x66\xf3\x52\x34\x62\x21\x6b\x49\x12\x9f\x38\xfb\xf2\x4f\x9d\xfa\xe3\xe5\x5e\x02\xf6\x6e\x31\xff\x66\x07\x2e\x83\x22\xce\xcc\xb0\x68\xd6\xe2\x86\x27\x62\xe7\x28\x0c\xf6\x78\x3b\x1c\x5f\x42\x4f\xbb\xf4\x63\x2b\xc1\x77\x0f\x13\x3d\x67\xa6\x76\x6f\x55\x3e\x79\xcc\x4b\xe2\x7b\x56\xd4\x8f\xee\x44\x1e\x8a\xef\x80\xdd\xca\xe1\x4f\x2c\x2c\x26\x83\xd0\x08\xfb\xb6\xd7\xf9\x39\xbc\x45\x47\x83\xc3\x8b\xe4\xb8\xbf\x7a\xd1\xa8\x9f\xf2\xca\xeb\xa4\xee\x7d\x76\x0a\x17\x67\xf1\xb8\x87\xc1\x79\xfc\x2f\x00\x00\xff\xff\xd8\xa8\xb1\x3b\xc8\x11\x00\x00" func transactionsGeneric_transfer_with_address_and_typeCdcBytes() ([]byte, error) { return bindataRead( @@ -151,11 +151,11 @@ func transactionsGeneric_transfer_with_address_and_typeCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/generic_transfer_with_address_and_type.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfa, 0xf1, 0x1e, 0xf3, 0xc4, 0xec, 0x3, 0xae, 0xc, 0x3d, 0x2f, 0x21, 0x1d, 0x22, 0xff, 0xef, 0xb0, 0x1, 0xf5, 0x87, 0x79, 0x81, 0x17, 0x57, 0x2a, 0xd, 0xa9, 0x29, 0x6, 0xe, 0x9b, 0xc4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7, 0x83, 0x5b, 0x47, 0x18, 0x91, 0xf3, 0x35, 0xf6, 0xc2, 0x90, 0x82, 0xd1, 0x9, 0xca, 0xe, 0x15, 0x70, 0x32, 0xa1, 0x33, 0xc1, 0xe4, 0xb8, 0xe2, 0xf0, 0x96, 0xcf, 0x70, 0xd7, 0x34, 0xae}} return a, nil } -var _transactionsGeneric_transfer_with_pathsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x6f\xdb\x46\x10\x3d\x57\xbf\x62\xca\x02\x29\x09\xc8\x54\x0a\x14\x3d\x08\x71\x12\xd7\x81\x0b\x5f\x8c\x20\x56\xda\xf3\x6a\x77\x24\x4e\x4c\xed\x12\xbb\x43\xab\xae\xe1\xff\x5e\xec\x2c\xbf\x64\x5b\x8d\x5d\x9e\x48\x79\x76\xe6\xcd\x9b\xf7\x66\x4d\xbb\xc6\x79\x86\xec\xca\xd9\x8b\xd6\x6e\x69\x5d\xe3\xca\xdd\xa0\xcd\x66\xb3\x9f\xc8\x32\x7a\xa5\x99\x9c\x85\x7c\x06\x70\x8b\x3e\x90\xb3\x4b\xc8\x7e\x29\xdf\x96\x6f\xb3\xf9\xec\x07\x26\xae\x71\x09\xd9\x1f\x68\xd1\x93\x86\xab\x8b\x15\xac\xbc\xb2\x61\x83\x1e\xf6\xc4\x15\x7c\x56\x5c\x85\x18\x6a\x30\x68\x4f\x0d\xa7\x0c\x43\x90\xb2\x77\x70\xe5\xec\x49\x5f\x1d\xa4\x3c\xac\xef\xa0\xf1\xee\x96\x0c\xd9\x2d\x70\x85\xd0\xc4\x3c\xb0\x71\x5e\xbe\x82\x6b\xbd\x46\x38\x77\x75\x8d\x09\xa0\xb2\x06\x0c\x06\x26\xab\xe4\x7b\xfc\x53\x2c\x5e\x2b\xbb\x6d\xd5\x36\x42\x45\x7b\xf2\xf5\x3a\x9b\xcf\x8a\xd9\x6c\xb1\x58\xc0\xb9\xb2\xd0\xa8\x10\x80\xac\x60\x09\xec\xbc\xda\xa6\x7a\x92\xd4\xa3\x46\xba\x45\x9f\x7e\x21\x1b\x18\x95\x01\xb7\x81\x6f\x6d\x60\x01\x63\x70\xa3\xda\x9a\x4b\xc9\xb7\xaa\x28\x40\x8d\x1c\xe0\xce\xb5\xa0\x2b\xe7\x02\x4a\x14\x4b\x5f\xf1\xc7\xbd\xb2\x0c\xec\x20\xa0\x35\xa0\x02\xec\xb1\xae\x25\x44\xab\x46\xad\xa9\x26\xbe\x7b\x1a\x47\xf1\x55\x4a\x48\x99\x33\x7b\xd7\x65\x14\x58\x5a\x59\x58\xa3\x34\x82\x92\x53\x59\x50\x7e\xdb\xee\xd0\x32\x54\xe8\x71\x0e\xc1\xc1\x5e\xd5\x82\x2c\x54\xae\xad\x8d\xe4\x49\xaf\xa0\x2b\xd4\x37\xe3\x89\x5b\x55\xb7\x18\x62\xed\x9d\xba\x41\x08\xad\x4f\x3d\x44\x45\x58\x83\x66\x5a\x9a\x42\x5f\x96\xec\x00\xef\x63\xa3\xbc\xda\x01\xbb\x25\xac\x2a\x04\x65\x8c\xc7\x20\x09\xb9\x1f\xfc\xc8\x09\xbb\xe9\x19\x32\xe9\x0c\x09\xc9\xd3\xa8\xe1\xec\x34\x3c\x92\x83\x3e\xaa\xec\xd2\xa0\x65\xda\x10\xfa\x94\x20\xb0\x8f\xe2\xa1\xe1\xe7\x3e\xdf\x74\xc4\x92\xaa\x7b\xf6\x91\xa8\x49\xc5\x8e\x9b\x35\x8a\x92\x8d\x57\x7b\x0b\x1b\xef\x76\xd3\xf2\xbd\x3a\x5e\x05\xa0\x69\xd7\x35\xe9\x57\xd4\x37\xd8\xb8\x40\x2c\xc4\x0b\xc7\xc2\x44\xb2\x66\x1e\x49\x3e\x4b\x04\xcf\x85\xbd\xaf\x97\x96\x7f\xfb\x75\x7e\x84\x9a\x6b\x41\x35\x3f\x8a\x3c\xfd\xbd\x80\xfb\xd9\x2c\x82\x12\x49\xa3\x18\xdb\x63\x67\x3b\x76\x11\x54\x3f\x0d\x8f\x46\x22\x6b\x64\x60\xdc\x35\x57\x17\xab\x25\x7c\xbc\x7f\xbc\x51\xca\xab\x8b\xd5\x43\xca\xd9\x78\x6c\x94\xc7\x3c\xd0\xd6\xc6\x92\xaa\xe5\x2a\xff\xdd\x79\xef\xf6\x7f\x46\xe5\x15\xf0\xe6\x4c\x6b\xd7\x5a\x1e\x60\xf4\x05\xba\xd9\x45\xd0\x70\x0a\xd7\xe3\x57\x4e\x93\x1e\x9e\xeb\xbc\x18\xf2\xc4\xe7\xc3\x07\x68\x94\x25\x9d\x67\xe7\x42\xb2\x75\x0c\xda\xd9\xc0\xbe\xd5\x0c\xea\x70\x0d\xc4\xa1\xa7\xc1\xc9\x4a\x42\xd3\x29\x7f\x1c\x6c\x1a\x75\x56\x8c\x60\x17\x0b\x58\x4b\x47\xa0\xc0\xe3\x06\x3d\xda\xc4\x9c\x28\x50\x1a\xff\x39\x08\xad\x7a\xd8\x54\x07\x9d\xf6\x9a\xfb\x82\x1b\x38\xed\x4e\x94\x1d\xac\x32\xa5\x7e\x27\xc4\x3d\x21\xfa\xaf\xee\x64\x01\x6f\x9e\x4e\x61\xdc\x8b\x0f\xef\xf3\x03\x4a\xe2\x13\x3b\x5d\x4e\x49\x3e\x88\x28\x26\xb4\xad\x86\x36\xc0\x38\x0c\x42\x60\x3c\x87\xa0\xe0\x3f\xab\x82\x5b\x7f\xc3\xc8\x31\x0f\x7b\x1d\xb2\x27\x40\xfa\xa7\xd4\xce\x6a\xc5\xf9\x04\x52\xc9\x2e\x69\x34\x2f\x8a\xef\x9e\x9b\xe2\xdc\xc5\x85\x4d\x96\x98\x54\x4d\xff\x88\xd3\xc8\x83\x4a\x4a\x4b\xb7\x15\xc7\xed\x3d\x0e\x04\x36\xe4\x03\xff\x98\x15\x93\xc1\x06\xac\x37\x65\xa7\x73\x78\x77\x32\x9d\x53\xd9\xbf\xe7\xfd\xcb\xe5\xa7\x25\x90\x49\x30\x3b\xf1\xe3\xdf\xa8\x5b\x46\xb8\x3f\x98\x76\x5a\x09\x9d\xac\x3f\x0f\x1f\x07\xaa\x7e\xde\xb1\xaf\xd3\xf5\x64\xf5\xbc\x58\xd6\x90\x1f\x9b\x4f\xcf\xf2\x4b\x90\x3d\x33\x9b\xe2\x80\xd8\xc5\x02\xb6\x98\x44\xe1\x51\x53\x43\x68\x39\xf4\x80\xfb\x29\x25\xf1\x1c\x50\x37\x04\xc3\x69\x4c\xd0\x6d\x8e\x9c\xdd\x11\x37\x76\x19\x9f\x98\xb2\x6f\x22\x1c\x73\x64\x1f\x90\x1c\x39\x94\x2d\x87\x6b\x9b\x30\xf4\xce\x7c\xc6\x79\x5f\xba\xe3\x0f\xef\xf3\x71\xda\xc7\xa6\xb7\x9a\xb2\x30\x3a\xac\x52\xb7\xd1\x60\x8f\x73\x43\x9f\x3b\xba\xea\xfb\x66\x1a\xcb\xbf\xce\x4b\xc0\x95\xe2\x78\xe1\x4b\xc7\x35\xc6\xfb\x2c\x91\x12\x55\xa2\xe2\x36\x2b\xb3\x17\x7a\x72\x6c\xee\x7f\xd8\xf2\xe0\xff\xb2\x67\x3c\xba\x58\xc0\xa7\x74\x65\xca\x64\xa3\x53\x1f\x0d\x79\x08\x9d\x0c\xb5\xec\xae\xd9\x5c\xae\xdf\x25\xbc\x3b\x99\x7a\xbd\x37\xf1\xc3\xbf\x01\x00\x00\xff\xff\x0a\x10\x9f\x68\x33\x0b\x00\x00" +var _transactionsGeneric_transfer_with_pathsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x6f\xdb\x46\x10\x3d\x57\xbf\x62\xca\x02\x29\x05\xc8\x54\x0a\x14\x3d\x08\x76\x12\xd7\x81\x0b\x5f\x8c\x20\x56\xda\x4b\x2e\xab\xdd\x91\x38\x31\xb5\x4b\xec\x0e\xad\xba\x86\xff\x7b\xb1\xb3\xfc\x92\x2d\x21\x76\x78\x22\xe5\xd9\x99\x37\x6f\xde\x9b\x35\x6d\x6b\xe7\x19\xb2\x6b\x67\x2f\x1b\xbb\xa1\x55\x85\x4b\x77\x8b\x36\x9b\x4c\x7e\x21\xcb\xe8\x95\x66\x72\x16\xf2\x09\xc0\x1d\xfa\x40\xce\x2e\x20\xfb\xad\x78\x5b\xbc\xcd\x66\x93\x9f\x98\xb8\xc2\x05\x64\x7f\xa1\x45\x4f\x1a\xae\x2f\x97\xb0\xf4\xca\x86\x35\x7a\xd8\x11\x97\xf0\x49\x71\x19\x62\xa8\xc1\xa0\x3d\xd5\x9c\x32\xf4\x41\xca\xde\xc3\xb5\xb3\x27\x5d\x75\x90\xf2\xb0\xba\x87\xda\xbb\x3b\x32\x64\x37\xc0\x25\x42\x1d\xf3\xc0\xda\x79\xf9\x0a\xae\xf1\x1a\xe1\xc2\x55\x15\x26\x80\xca\x1a\x30\x18\x98\xac\x92\xef\xe1\x4f\xb1\x78\xa5\xec\xa6\x51\x9b\x08\x15\xed\xc9\x97\x9b\x6c\x36\x99\x4e\x26\xf3\xf9\x1c\x2e\x94\x85\x5a\x85\x00\x64\x05\x4b\x60\xe7\xd5\x26\xd5\x93\xa4\x1e\x35\xd2\x1d\xfa\xf4\x0b\xd9\xc0\xa8\x0c\xb8\x35\x7c\x6b\x02\x0b\x18\x83\x6b\xd5\x54\x5c\x48\xbe\x65\x49\x01\x2a\xe4\x00\xf7\xae\x01\x5d\x3a\x17\x50\xa2\x58\xfa\x8a\x3f\xee\x94\x65\x60\x07\x01\xad\x01\x15\x60\x87\x55\x25\x21\x5a\xd5\x6a\x45\x15\xf1\xfd\xf3\x38\x8a\xaf\x52\x42\xca\x9c\xdb\xfb\x36\xa3\xc0\xd2\xca\xc2\x0a\xa5\x11\x94\x9c\xca\x82\xf2\x9b\x66\x8b\x96\xa1\x44\x8f\x33\x08\x0e\x76\xaa\x12\x64\xa1\x74\x4d\x65\x24\x4f\x7a\x05\x5d\xa2\xbe\x1d\x4e\xdc\xa9\xaa\xc1\x10\x6b\x6f\xd5\x2d\x42\x68\x7c\xea\x21\x2a\xc2\x1a\x34\xe3\xd2\x14\xba\xb2\x64\x7b\x78\x1f\x6a\xe5\xd5\x16\xd8\x2d\x60\x59\x22\x28\x63\x3c\x06\x49\xc8\xdd\xe0\x07\x4e\xd8\x8d\xcf\x90\x49\x67\x48\x48\x1e\x47\xf5\x67\xc7\xe1\x91\x1c\xf4\x51\x65\x57\x06\x2d\xd3\x9a\xd0\xa7\x04\x81\x7d\x14\x0f\xf5\x3f\x77\xf9\xc6\x23\x96\x54\xed\xb3\x8b\x44\x8d\x2a\xb6\xdc\xac\x50\x94\x6c\xbc\xda\x59\x58\x7b\xb7\x1d\x97\xef\xd4\xf1\x2a\x00\x75\xb3\xaa\x48\xbf\xa2\xbe\xc1\xda\x05\x62\x21\x5e\x38\x16\x26\x92\x35\xf3\x48\xf2\x79\x22\x78\x26\xec\x7d\xb9\xb2\xfc\xc7\xef\xb3\x23\xd4\xdc\x08\xaa\xd9\x51\xe4\xe9\xef\x53\x78\x98\x4c\x22\x28\x91\x34\x8a\xb1\x3d\xb6\xb6\x63\x17\x41\x75\xd3\xf0\x68\x24\xb2\x42\x06\xc6\x6d\x7d\x7d\xb9\x5c\xc0\x87\x87\xa7\x1b\xa5\xb8\xbe\x5c\x3e\xa6\x9c\xb5\xc7\x5a\x79\xcc\x03\x6d\x6c\x2c\xa9\x1a\x2e\xf3\x3f\x9d\xf7\x6e\xf7\x77\x54\xde\x14\xde\x9c\x6b\xed\x1a\xcb\x3d\x8c\xae\x40\x3b\xbb\x08\x1a\xce\xe0\x66\xf8\xca\x69\xd4\xc3\xa1\xce\xa7\x7d\x9e\xf8\xbc\x7f\x0f\xb5\xb2\xa4\xf3\xec\x42\x48\xb6\x8e\x41\x3b\x1b\xd8\x37\x9a\x41\xed\xaf\x81\x38\xf4\x34\x38\x59\x49\x68\x5a\xe5\x0f\x83\x4d\xa3\xce\xa6\x03\xd8\xf9\x1c\x56\xd2\x11\x28\xf0\xb8\x46\x8f\x36\x31\x27\x0a\x94\xc6\x7f\x0d\x42\xab\xee\x37\xd5\x5e\xa7\x9d\xe6\x3e\xe3\x1a\xce\xda\x13\x45\x0b\xab\x48\xa9\x4f\x85\xb8\x67\x44\xff\xd3\x9e\x9c\xc2\x9b\xe7\x53\x18\xf6\xe2\xe3\xbb\x7c\x8f\x92\xf8\xc4\x4e\x17\x63\x92\xf7\x22\xa6\x23\xda\x96\x7d\x1b\x60\x1c\x06\x21\x30\x9e\x43\x50\xf0\xb4\xe8\x78\x4f\xbb\xd5\x37\x8c\x0c\x73\xbf\xd5\x21\x7b\x06\xa3\x7b\x0a\xed\xac\x56\x9c\x8f\x00\x15\xec\x92\x42\xf3\xe9\xf4\xbb\xe7\xc6\x28\xb7\x71\x5d\x93\x25\x26\x55\xd1\x7f\xe2\x33\xf2\xa0\x92\xce\xd2\x5d\xc5\x71\x77\x0f\xe3\x80\x35\xf9\xc0\x3f\x67\xd3\xd1\x58\x03\x56\xeb\xa2\x55\x39\x9c\x9e\x8c\xa7\x54\x74\xef\x79\xf7\x72\xf5\x71\x01\x64\x12\xcc\x56\xfa\xf8\x2f\xea\x86\x11\x1e\xf6\x66\x9d\x16\x42\x2b\xea\x4f\xfd\xc7\x9e\xa6\x0f\xfb\xf5\x75\xaa\x1e\x2d\x9e\x17\x8b\x1a\xbe\x66\xc7\x06\xd4\xd1\xfc\x12\x68\x07\x86\xf3\x35\x2b\xf6\xb8\x9d\xcf\x61\x83\x49\x17\x1e\x35\xd5\x84\x96\x43\x87\xb9\x1b\x54\xd2\xcf\x1e\x7b\x7d\x30\x9c\xc5\x04\xed\xea\xc8\xd9\x1d\xb1\x63\x9b\xf1\x99\x2b\xbb\x36\xc2\x31\x4b\x76\x01\xc9\x92\x7d\xd9\xa2\xbf\xb7\x09\x43\x67\xcd\x03\xd6\xfb\xdc\x1e\x7f\x7c\x97\x0f\x03\x3f\x36\xc0\xe5\x98\x85\xc1\x62\xa5\xba\x3b\xe8\xb0\x2e\x77\x34\xd6\xf7\xfd\x34\x94\x7f\x9d\x9d\x80\x4b\xc5\xf1\xc6\x97\x8e\x2b\x8c\x17\x5a\x22\x25\x0a\x45\xc5\x75\x56\x64\x2f\xb4\xe5\xd0\xdc\x0f\x38\x73\xef\x1f\xb3\x03\x36\x9d\xcf\xe1\x63\xba\x33\x65\xb2\xd1\xac\x4f\x86\xdc\x87\x8e\x86\x5a\xb4\xf7\x6c\x2e\xf7\xef\x02\x4e\x4f\xc6\x76\xef\x7c\xfc\xf8\x7f\x00\x00\x00\xff\xff\x1a\x8d\x64\x65\x34\x0b\x00\x00" func transactionsGeneric_transfer_with_pathsCdcBytes() ([]byte, error) { return bindataRead( @@ -171,11 +171,11 @@ func transactionsGeneric_transfer_with_pathsCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/generic_transfer_with_paths.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x94, 0xeb, 0xe0, 0x57, 0x5e, 0xa5, 0x39, 0x74, 0xf4, 0x3, 0x80, 0xf9, 0x5c, 0x40, 0xc7, 0x26, 0xa1, 0xf6, 0xb0, 0x2c, 0xd7, 0xde, 0xaa, 0x6c, 0x3f, 0x2f, 0x1d, 0xd1, 0x3b, 0x9, 0xc2, 0x1e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3, 0x9c, 0xd, 0x3b, 0xed, 0x39, 0x8a, 0x27, 0x2b, 0xe1, 0xcc, 0x25, 0x71, 0x54, 0xe6, 0xd1, 0xa4, 0x16, 0x63, 0xb4, 0xfd, 0x85, 0x9d, 0x44, 0x37, 0xda, 0xe, 0x3a, 0xcb, 0xd7, 0xe4, 0xa}} return a, nil } -var _transactionsMint_nftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x57\x41\x6f\xdb\x38\x13\xbd\xfb\x57\x4c\x7d\x48\x65\x7c\xa9\xfc\x2d\xb0\xd8\x83\x11\xa7\x68\xd3\x0d\xb0\x87\x06\x45\x9a\xed\xa5\xc8\x61\x4c\x8d\xad\xd9\xca\xa4\x96\x1c\xc5\xf5\x06\xfd\xef\x0b\x92\x12\x2d\x39\x72\xb2\xf5\x21\x91\xc5\x99\xe1\xf0\xcd\xbc\xc7\xf1\x7c\x3e\x87\xbb\x92\x1d\x38\x65\xb9\x16\x68\x1c\x39\x90\x92\xe0\xe6\xfa\xee\x23\x6b\x21\x0b\x96\x9c\x69\xac\x22\x10\x03\x5b\xd6\x02\x08\x9a\x76\xde\x60\xe2\xbd\xff\x10\xd8\x36\x4e\x60\x45\x60\x1b\x0d\x3b\x96\x32\x04\x40\xa5\x4c\xa3\x05\xa4\x44\x81\x12\x63\xd4\xed\x30\x64\x08\xe0\xc4\x58\x2a\x80\x35\xcc\xfd\x23\x6e\x68\x9e\x36\xf7\x06\x93\x98\x23\x81\x35\x7b\xac\x64\x0f\x68\x37\xcd\x96\xb4\x38\x60\x5d\xb0\x62\x72\x29\x03\xac\x78\xa3\xa9\x98\x4c\x78\x5b\x1b\x2b\x30\xbd\x31\xfa\xba\xd1\x1b\x5e\x55\x74\x67\xbe\x91\x9e\xa6\x95\xdf\xbf\xe3\xb6\xae\xe8\xe6\xfa\xee\xf0\xee\x23\x09\x16\x28\xf8\x85\x69\xe7\x0e\xaf\x8f\x22\x4c\xc4\xa2\x76\xa8\x84\x8d\xce\x26\x00\x00\x96\x14\xd7\x4c\x5a\x16\xf0\xae\x28\x2c\x39\x77\x1e\xde\x6b\xdc\xd2\x02\x3e\x8b\x65\xbd\x89\x6f\x0a\x8a\x40\xb3\xd1\xc3\x05\x29\x9b\xed\x4a\x23\x57\xc3\xd7\xaa\x11\xb7\x80\xaf\x7f\x5e\xf3\xf7\xdf\x7e\xbd\x8f\xef\x5a\x1c\x3e\x1c\x42\x79\x93\xe8\x35\x34\x79\x4f\x9a\xd6\xac\x18\x2d\x93\xb7\x69\x93\xbb\x9f\xcc\xe0\x71\x12\x0c\x3d\xb6\x95\x51\x58\xc1\x03\x5a\xc6\x55\x45\xb0\x36\x36\xd4\x84\xf5\x66\x58\xb3\x35\x59\xd2\x8a\x82\x5f\x45\xd2\x2e\x2c\xe0\xec\x00\x65\x7e\xa8\x5c\x0a\x7f\xdb\x39\xfa\x06\xf2\x01\x2d\x29\xe2\x07\xb2\xaf\x1d\x28\x53\x55\x14\x80\x4c\x51\x13\x96\x57\x69\xed\x96\xd6\x0b\x38\x7b\x3c\xae\x65\x7e\xdb\x06\xfa\x11\x37\xab\x2d\xd5\x68\x29\x73\xbe\x07\xec\x02\xb0\x91\x32\x7b\x6f\xac\x35\xbb\x2f\x58\x35\x34\x83\xb3\x77\xb1\x29\xd3\xf1\xbb\x4d\x0f\x79\x7c\x40\x41\x58\x42\xef\x48\xbe\x59\xab\x07\xba\x32\x5a\x2c\x2a\xf1\xbd\x91\x75\x0d\x7c\xb7\xaf\x69\x01\x9a\xab\x73\x78\x60\xda\xc5\xaf\xfe\xef\xc5\xa0\x95\x3c\x2c\x57\x83\x2d\x2e\xb3\xd9\x0c\xd0\xbd\x82\x17\xec\xde\xa6\x34\xfd\xe7\xed\x5b\xa8\x51\xb3\xca\xa6\x57\xa6\xa9\x0a\xd0\x46\xa0\x4d\x0f\x9e\xb8\x86\x8c\xf2\xc0\x9c\xc3\x69\x40\xb5\xc7\x00\x4d\x54\x38\x5f\x12\xf6\x4b\x9e\x4f\x1d\xef\x8f\xc2\x74\x19\x86\x78\x9e\xa6\xc6\x16\x64\xbd\x27\x7d\x27\xd5\x08\x81\x78\x01\xe9\x91\x62\x3a\x4b\x59\xa7\x87\xf9\x1c\x56\xa1\x14\x80\x87\x56\xea\x3a\x62\x44\x6c\x58\x43\xab\x06\x29\x84\xa3\x6a\x9d\xb7\xdd\xb8\x84\x58\xe5\xbc\x35\xca\x63\xf0\x8b\xd1\x5e\xbc\xcc\xd6\xd6\x6c\x17\xfd\xa2\xc6\x85\xcf\xd1\xf9\x13\x4a\x39\x3b\x01\xb4\x87\x2f\x6e\x05\x85\x21\x17\x20\x0f\x8a\x05\xa8\x9f\x06\x04\xb3\xfa\x8b\x94\x00\x46\x30\x6b\x94\x12\xa6\x83\xc8\xe9\x93\x2b\xa3\x15\x4a\xf6\x5c\x52\xb9\x98\x48\xeb\x6c\x36\x7b\x3e\x4a\x3f\xcf\x20\x86\xac\x59\x18\x2b\xfe\xc7\x97\x87\xd8\x26\x3d\x6e\x05\x9a\xdd\xb1\x18\xc3\x9a\xad\x93\x57\xd3\xd9\x6c\xd2\xaf\x5a\x24\x50\x47\xdc\x48\xcd\xd7\x0e\xea\x66\x55\xb1\x82\xd8\x52\x5d\xbf\x1c\x89\x44\x2a\xda\x38\xa7\x61\x09\x1b\x92\x96\x92\x59\xb2\x99\xe5\x0a\x6b\x5c\x71\xc5\xc2\xe4\x52\x61\x9f\xa1\xff\x65\x36\xe4\x6f\x1e\x93\x7b\xa9\xac\x69\xc7\x43\x65\x4b\x7c\x20\x40\x38\xde\x0a\xba\xad\x7c\x61\xc7\xeb\xd9\x15\xe2\x64\x26\x2f\xd6\x32\x95\x32\x5e\x99\xec\x20\xe0\x50\x11\x98\x75\xab\x99\x5e\x92\x51\x7b\xd0\xf3\xe9\x0b\x41\x86\x07\xfc\xaf\x2d\xd1\x2b\x25\xea\x22\x29\x75\xaf\x35\xfc\x26\x07\xbd\x85\xc7\x94\x85\xbf\xa9\xf2\x8a\xf4\x46\x4a\x58\x2e\xc7\x2e\xa9\x6e\xf5\xec\xec\x84\xf1\xe0\xba\x6a\x97\x17\x30\x7d\x67\x2d\xee\xa1\xb5\x76\x65\x50\xbe\x15\x01\xfd\xdd\x60\x15\x6e\xab\x6e\x30\xb0\x54\xa1\x50\x01\x05\x09\x72\xe5\xa6\xfd\x64\x3b\xad\x7a\x1c\x34\xf7\x95\x25\x0c\x02\x76\x98\x2e\x5a\xe7\x64\xf5\x80\x16\x22\x4c\x4b\xf8\xff\xe0\x6d\xf4\x88\x37\xeb\x50\xc6\x6f\x63\xac\x7b\x58\xc2\xd7\xfb\xe4\xb3\x2b\xb9\xa2\xe7\xce\x0a\x97\xed\x4e\x8f\x83\xda\xfa\x0b\x6a\x95\xcc\xf7\x30\x8e\xd7\xd7\xe0\x7a\xff\x9c\xe7\x55\xc7\xab\xfd\x90\x7a\x3d\x93\x23\xf2\x6d\x48\x2e\xce\x1e\x4f\xd2\xee\x49\x0b\x0e\x61\xd8\x90\xb4\x48\x74\x3e\x9f\x12\x1d\xb2\x61\xff\xf6\x34\xc7\x7f\x78\x0d\xaf\x46\x13\xcf\x55\x49\xea\x5b\x36\x3b\x82\x28\xb4\x63\x8f\xd9\x6d\x2d\xfb\xa8\x9d\x90\xe1\x03\x65\x7a\xc6\x2f\xeb\x6e\x9f\xae\xc7\xea\x71\x42\x3a\x94\xd1\x6b\xde\x34\x7e\xd6\x45\x39\x41\xdf\x5e\xdc\x9f\x81\xf2\xa7\xf2\x0d\x23\xc1\xbe\x23\x92\x23\x81\xa6\x3e\xce\xfa\xf3\x8e\x45\x95\x2b\x83\xb6\x27\x02\xe1\x52\x63\x17\x6f\x35\x31\xdd\x02\xa0\xde\x83\xec\xeb\xa0\x53\x5d\x14\x88\xb3\xf2\x51\x3a\x3f\x86\x55\x4e\x04\xca\xb1\xae\x49\x17\x2f\xf5\x53\x8b\xc0\x53\x33\x88\x33\x78\x48\x73\x31\xde\xf1\xe7\xa3\x4e\xaa\x91\x45\x10\xa3\x96\x3d\xe3\x56\x83\xa1\x7d\x44\xd8\xc6\xa8\x07\xa1\xa9\x4f\x7f\xeb\x24\x25\xfe\xff\x1f\xfc\x32\xe9\x81\xd4\x97\x28\x3f\x14\x74\x43\x52\x10\xe5\x82\x6a\xe3\x58\x80\xa5\x37\x50\xa7\x7b\xf9\x68\xa2\x86\xfe\xac\x5e\xf8\x10\x17\x6f\xfa\x83\x54\xf8\x77\x73\x7d\x37\xc4\x34\xfe\x6e\xf1\x7f\x87\x80\x0c\x80\xe8\x7d\x19\x5a\xf5\x7e\xca\xa4\xc7\xf3\xf1\xc2\x2f\x0e\x8f\x93\xa7\x38\x3d\x33\x3b\xe4\x2d\x0a\x99\xf8\x3e\x5b\xc0\xc5\x9b\x74\xc2\x74\x47\xfd\x98\xfc\x1b\x00\x00\xff\xff\x37\xc7\x65\x38\xde\x0e\x00\x00" +var _transactionsMint_nftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x57\x41\x6f\xdb\x38\x13\xbd\xfb\x57\x4c\x7d\x48\x65\x7c\xa9\xf2\x2d\xb0\xd8\x83\x10\xa7\x68\xd3\x0d\xb0\x87\x06\x45\x9a\xed\xa5\xc8\x81\xa6\xc6\xd6\x6c\x65\x52\x4b\x8e\xe2\x7a\x83\xfe\xf7\x05\x49\x89\x12\x1d\x39\xde\xfa\x90\xc8\xe2\xcc\x70\xf8\x66\xde\xe3\xf8\xe2\xe2\x02\xee\x2b\xb2\x60\xa5\xa1\x86\xa1\xb5\x68\x81\x2b\x84\xdb\x9b\xfb\x8f\xa4\x18\x0d\x18\xb4\xba\x35\x12\x81\x35\x6c\x49\x31\x08\x50\xb8\x73\x06\x33\xe7\xfd\x07\xc3\xb6\xb5\x0c\x2b\x04\xd3\x2a\xd8\x11\x57\x3e\x80\x90\x52\xb7\x8a\x81\x2b\xc1\x50\x89\x10\x75\x9b\x86\xf4\x01\x2c\x6b\x83\x25\x90\x82\x0b\xf7\x28\x36\x78\x11\x37\x77\x06\xb3\x90\x23\x82\xd1\x7b\x51\xf3\x1e\x84\xd9\xb4\x5b\x54\x6c\x81\x54\x49\x92\xd0\xc6\x0c\x44\x4d\x1b\x85\xe5\x6c\x46\xdb\x46\x1b\x86\xf9\xad\x56\x37\xad\xda\xd0\xaa\xc6\x7b\xfd\x0d\xd5\x3c\xae\xfc\xfe\x5d\x6c\x9b\x1a\x6f\x6f\xee\x87\x77\x1f\x91\x45\x29\x58\x7c\x21\xdc\xd9\xe1\xf5\x41\x84\x19\x1b\xa1\xac\x90\x4c\x5a\x65\x33\x00\x00\x83\x92\x1a\x42\xc5\x05\xbc\x2b\x4b\x83\xd6\x9e\xfb\xf7\x4a\x6c\xb1\x80\xcf\x6c\x48\x6d\xc2\x9b\x12\x03\xd0\xa4\x55\xba\xc0\x55\xbb\x5d\x29\x41\x75\xfa\x5a\xb6\x6c\x0b\xf8\xfa\xe7\x0d\x7d\xff\xed\xd7\x87\xf0\xae\xc3\xe1\xc3\x10\xca\x99\x04\xaf\xd4\xe4\x3d\x2a\x5c\x93\x24\x61\x08\x9d\x4d\x97\xdc\xc3\x6c\x01\x4f\x33\x6f\xe8\xb0\xad\xb5\x14\x35\x3c\x0a\x43\x62\x55\x23\xac\xb5\xf1\x35\x21\xb5\x49\x6b\xb6\x46\x83\x4a\xa2\xf7\xab\x91\xbb\x85\x02\xce\x06\x28\xf3\xa1\x72\x31\xfc\x5d\xef\xe8\x1a\xc8\x05\x34\x28\x91\x1e\xd1\xbc\xb6\x20\x75\x5d\xa3\x07\x32\x46\x8d\x58\x5e\xc7\xb5\x3b\x5c\x17\x70\xf6\x74\x58\xcb\xfc\xae\x0b\xf4\x23\x6c\xd6\x18\x6c\x84\xc1\xcc\xba\x1e\x30\x05\x88\x96\xab\xec\xbd\x36\x46\xef\xbe\x88\xba\xc5\x05\x9c\xbd\x0b\x4d\x19\x8f\xdf\x6f\x3a\xe4\xf1\x41\xb0\x80\x25\x8c\x8e\xe4\x9a\xb5\x7e\xc4\x6b\xad\xd8\x08\xc9\xae\x37\xb2\xbe\x81\xef\xf7\x0d\x16\xa0\xa8\x3e\x87\x47\xc2\x5d\xf8\xea\xfe\x5e\x26\xad\xe4\x60\xb9\x4e\xb6\xb8\xca\x16\x0b\x10\xf6\x15\x9c\xb0\x7b\x1b\xd3\x74\x9f\xb7\x6f\xa1\x11\x8a\x64\x36\xbf\xd6\x6d\x5d\x82\xd2\x0c\x5d\x7a\xf0\xcc\xd5\x67\x94\x7b\xe6\x0c\xa7\x01\xd9\x1d\x03\x14\x62\x69\x5d\x49\xc8\x2d\x39\x3e\xf5\xbc\x3f\x08\xd3\x67\xe8\xe3\x39\x9a\x6a\x53\xa2\x71\x9e\xf8\x1d\x65\xcb\x08\xec\x04\x64\x44\x8a\xf9\x22\x66\x1d\x1f\x2e\x2e\x60\xe5\x4b\x01\x62\x68\xa5\xbe\x23\x26\xc4\x86\x14\x74\x6a\x10\x43\x58\xac\xd7\x79\xd7\x8d\x4b\x08\x55\xce\x3b\xa3\x3c\x04\xbf\x9c\xec\xc5\xab\x6c\x6d\xf4\xb6\x18\x17\x35\x2c\x7c\x0e\xce\x9f\x04\x57\x8b\x23\x40\x3b\xf8\xc2\x56\x50\x6a\xb4\x1e\x72\xaf\x58\x20\xd4\xf3\x80\xa0\x57\x7f\xa1\x64\x10\x01\xcc\x46\x70\x05\xf3\x24\x72\xfc\xe4\x52\x2b\x29\x38\x7b\x29\xa9\x9c\x75\xa0\x75\xb6\x58\xbc\x1c\x65\x9c\xa7\x17\x43\x52\xc4\x24\x6a\xfa\xc7\x95\x07\xc9\x44\x3d\xee\x04\x9a\xec\xa1\x18\xc3\x9a\x8c\xe5\x57\xf3\xc5\x62\x36\xae\x5a\x20\x50\x4f\xdc\x40\xcd\xd7\x16\x9a\x76\x55\x93\x84\xd0\x52\x7d\xbf\x1c\x88\x44\x2c\xda\x34\xa7\x61\x09\x1b\xe4\x8e\x92\x59\xb4\x59\xe4\x52\x34\x62\x45\x35\x31\xa1\x8d\x85\x7d\x81\xfe\x57\x59\xca\xdf\x3c\x24\x77\xaa\xac\x71\xc7\xa1\xb2\x95\x78\x44\x10\x70\xb8\x15\xf4\x5b\xb9\xc2\x4e\xd7\xb3\x2f\xc4\xd1\x4c\x4e\xd6\x32\x96\x32\x5c\x99\x64\xc1\xe3\x50\x23\xe8\x75\xa7\x99\x4e\x92\x85\x72\xa0\xe7\xf3\x13\x41\xd2\x03\xfe\xd7\x96\x18\x95\x52\xa8\x32\x2a\xf5\xa8\x35\xdc\x26\x83\xde\xc2\x53\xcc\xc2\xdd\x54\x79\x8d\x6a\xc3\x15\x2c\x97\x53\x97\x54\xbf\x7a\x76\x76\xc4\x38\xb9\xae\xba\xe5\x02\xe6\xef\x8c\x11\x7b\xe8\xac\x6d\xe5\x95\x6f\x85\x80\x7f\xb7\xa2\xf6\xb7\x55\x3f\x18\x18\xac\x05\x63\x09\x25\xb2\xa0\xda\xce\xc7\xc9\xf6\x5a\xf5\x94\x34\xf7\xb5\x41\xe1\x05\x6c\x98\x2e\x3a\xe7\x68\xf5\x28\x0c\x04\x98\x96\xf0\xff\xe4\x6d\xf0\x08\x37\x6b\x2a\xe3\x77\x21\xd6\x03\x2c\xe1\xeb\x43\xf4\xd9\x55\x54\xe3\x4b\x67\x85\xab\x6e\xa7\xa7\xa4\xb6\xee\x82\x5a\x45\xf3\x3d\x4c\xe3\xf5\xd5\xbb\x3e\xbc\xe4\x79\xdd\xf3\x6a\x9f\x52\x6f\x64\x72\x40\xbe\x0d\xf2\xe5\xd9\xd3\x51\xda\x3d\x6b\xc1\x14\x86\x0d\x72\x87\x44\xef\xf3\x29\xd2\x21\x4b\xfb\x77\xa4\x39\xee\x43\x6b\x78\x35\x99\x78\x2e\x2b\x94\xdf\xb2\xc5\x01\x44\xbe\x1d\x47\xcc\xee\x6a\x39\x46\xed\x88\x0c\x0f\x94\x19\x19\x9f\xd6\xdd\x31\x5d\x0f\xd5\xe3\x88\x74\x48\xad\xd6\xb4\x69\xdd\xac\xeb\x54\xe4\x64\xe0\x9f\xc1\xf2\xa7\x12\xf6\x33\xc1\xbe\x67\x92\x45\x86\xb6\x39\x4c\xfb\xf3\x8e\x58\x56\x2b\x2d\x4c\x99\x88\x9f\x57\x09\x7f\xad\xb1\xee\xe5\x01\x84\xda\x03\xef\x1b\x2f\x54\x7d\x14\x08\xc3\xf2\x41\x3a\x3f\xd2\x32\x47\x06\xe5\xa2\x69\x50\x95\xa7\x1a\xaa\x43\xe0\xb9\x19\x84\x21\xdc\xa7\x59\x4c\xb7\xfc\xf9\xa4\x93\x6c\xb9\xf0\x6a\xd4\xd1\x67\xda\x2a\x99\xda\x27\x94\x6d\x8a\x7b\xe0\xbb\xfa\xf8\xb7\x5e\x53\xc2\xff\xff\xc1\x2f\xb3\x11\x48\x63\x8d\x72\x53\x41\x3f\x25\x79\x55\x2e\xb1\xd1\x96\x18\x88\x47\x13\x75\xbc\x98\x0f\x46\x6a\x18\x0f\xeb\xa5\x0b\x71\xf9\x66\x3c\x49\xf9\x7f\xb7\x37\xf7\x29\xa6\xe1\x87\x8b\xfb\x9b\x02\x92\x00\x31\xfa\x92\x5a\x8d\x7e\xcb\xc4\xc7\xf3\xe9\xc2\x17\xc3\xe3\xec\x39\x4e\x2f\x0c\x0f\x79\x87\x42\xc6\xae\xcf\x0a\xb8\x7c\x13\x4f\x18\x2f\xa9\x1f\xb3\x7f\x03\x00\x00\xff\xff\xd4\xaa\x2e\x40\xdf\x0e\x00\x00" func transactionsMint_nftCdcBytes() ([]byte, error) { return bindataRead( @@ -191,11 +191,11 @@ func transactionsMint_nftCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/mint_nft.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0x3e, 0x24, 0xd1, 0x3, 0xb, 0x99, 0x33, 0x3f, 0x94, 0xc9, 0x99, 0x10, 0xd6, 0x73, 0xde, 0x56, 0x65, 0x5a, 0xa4, 0x37, 0xb9, 0xe2, 0xbf, 0xbd, 0x1a, 0xe0, 0xa, 0x7d, 0x2, 0xe, 0xfc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xec, 0x2f, 0xf5, 0xa2, 0x24, 0x57, 0x30, 0x3, 0x38, 0xa0, 0xdf, 0xda, 0x4e, 0xd5, 0x95, 0xd6, 0xf4, 0xd4, 0xbe, 0xf7, 0xfb, 0xc9, 0xef, 0x61, 0x58, 0x29, 0x44, 0xe2, 0xce, 0x61, 0x3f, 0xe7}} return a, nil } -var _transactionsNftForwardingChange_forwarder_recipientCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x53\x4d\x8b\xdb\x40\x0c\xbd\xfb\x57\x88\x1c\xb6\x36\x14\xfb\x1e\x36\xbb\x6c\x03\xb9\xb5\x2c\xd9\xd0\xbb\x32\x96\x6d\xd1\x59\x8d\x99\x91\x9b\x96\x25\xff\xbd\xf8\x2b\xb6\xd3\xb4\x0b\xab\x8b\xcd\x8c\x46\x4f\xef\xe9\x89\x5f\x6b\xe7\x15\x56\xdf\x9c\xec\x1a\x29\xf9\x68\xe9\xe0\x7e\x90\xac\xa2\xcb\xcd\xee\xb0\x73\xfe\x84\x3e\x67\x29\x57\x51\x94\x65\x19\x1c\x2a\x0e\xa0\x1e\x25\xa0\x51\x76\x02\x4d\x9d\xa3\x52\x00\xad\x08\xa6\x07\xe4\xc1\x93\xe1\x9a\x49\x14\xd4\x75\xb7\x4e\x08\x4a\xfe\x49\x02\xa8\xdd\x41\xa8\xc9\x70\xc1\x94\xc3\x73\x73\xb4\x6c\x9e\x51\xab\x16\x24\x9a\xd5\x8f\x85\x4e\xfb\xb1\xd2\x53\x9e\x7b\x0a\x61\x0d\xc3\xcf\x67\x30\xce\x5a\xea\x12\xa7\x12\xeb\x59\xb9\x04\xde\xa2\x08\x00\x20\xcb\xc0\x53\x41\x9e\xc4\xd0\xd8\x50\xd7\xee\xd0\xed\x9e\x82\x6b\xbc\xa1\x2e\xd9\x92\x42\x31\x12\xd9\x53\xb1\x06\x6c\xb4\x8a\x17\x7a\xa4\x5f\x1b\xc5\xa3\xa5\x04\xee\x96\xe7\x73\x11\x46\xe8\xed\xa5\x4d\x38\x11\x9c\xd8\x5a\xc8\x29\x70\x29\xa8\x04\x18\x46\x30\x96\x72\x92\xed\xd2\xc9\x5c\x81\xa9\xd0\x1a\xb6\x58\xe3\x91\x2d\xeb\xef\xfb\xbb\xb7\xeb\x29\xa6\x53\xe6\xf9\xa1\x97\xa0\xf6\x54\xa3\xa7\xb8\xc5\x25\x3f\x70\xfa\xe2\xbc\x77\xa7\xef\x68\x9b\x96\xc9\x93\x31\xae\x11\x6d\x55\x83\x21\xb2\x0c\x8e\x5d\xce\x52\xbf\xab\x51\xcf\xc4\x6b\x23\x90\x2d\xd2\xb9\x82\xb0\x81\x1e\x36\x0d\xea\x3c\x96\x94\xf6\x45\xef\x3f\x28\xec\x43\x7c\xc1\x1a\xa3\xf0\xee\x75\x0d\xcb\x27\x2f\x3d\x58\x67\xac\x79\x6e\x02\x8f\x8f\x50\xa3\xb0\x89\x57\x5b\xd7\xd8\x1c\xc4\xe9\xfb\x3c\x59\x7a\xdf\x76\x4c\x3e\x05\xc0\x5e\xae\xd6\xcf\x35\x6a\xb5\x59\xa5\xc6\x89\x41\x8d\xff\xd9\x45\xaa\xee\x45\x3d\x4b\x19\x27\x49\x12\xcd\x45\x2e\x49\xe7\x36\x99\x86\xdb\x11\xeb\x70\xfd\xd5\x1e\x8c\xf8\x4b\xd9\x6f\xdb\x05\x36\x2d\xc2\x30\xdf\x5b\x4b\x95\xa4\x66\x84\x64\x0a\x69\x49\xfa\x9e\xab\xfe\x1e\xc1\xad\x6d\x5c\xea\xde\x53\x3e\xf7\x1f\xfa\x45\xa6\x51\x5a\x9a\x2d\xf4\x8e\xbf\xda\x83\x9b\xa6\x4a\x4d\x85\x52\xd2\x85\x49\xfc\x1f\xfe\xc9\x00\x7c\x8e\xfe\x04\x00\x00\xff\xff\xba\x82\x27\xb1\xf8\x04\x00\x00" +var _transactionsNftForwardingChange_forwarder_recipientCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x53\x4f\x8b\xdb\x4e\x0c\xbd\xfb\x53\x88\x1c\xf6\x67\xc3\x0f\xfb\x1e\xf6\x0f\xdb\x40\x6e\x2d\x4b\x36\xf4\xae\x8c\x65\x5b\x74\x56\x63\x66\xe4\xa6\x65\xc9\x77\x2f\xfe\x6f\xa7\x69\x17\xaa\x8b\xcd\x8c\x46\x4f\xef\xe9\x89\xdf\x6a\xe7\x15\x36\x5f\x9c\xec\x1b\x29\xf9\x64\xe9\xe8\xbe\x91\x6c\xa2\xe9\x66\x7f\xdc\x3b\x7f\x46\x9f\xb3\x94\x9b\x28\xca\xb2\x0c\x8e\x15\x07\x50\x8f\x12\xd0\x28\x3b\x81\xa6\xce\x51\x29\x80\x56\x04\xf3\x03\xf2\xe0\xc9\x70\xcd\x24\x0a\xea\xba\x5b\x27\x04\x25\x7f\x27\x01\xd4\xee\x20\xd4\x64\xb8\x60\xca\xe1\xa5\x39\x59\x36\x2f\xa8\x55\x0b\x12\x2d\xea\xc7\x42\xe7\xc3\x58\xe9\x39\xcf\x3d\x85\xb0\x85\xe1\xe7\x7f\x30\xce\x5a\xea\x12\xe7\x12\xdb\x45\xb9\x04\xde\xa3\x08\x00\x20\xcb\xc0\x53\x41\x9e\xc4\xd0\xd8\x50\xd7\xee\xd0\xed\x81\x82\x6b\xbc\xa1\x2e\xd9\x92\x42\x31\x12\x39\x50\xb1\x05\x6c\xb4\x8a\x57\x7a\xa4\x9f\x1b\xc5\x93\xa5\x04\xee\xd6\xe7\x4b\x11\x46\xe8\xdd\xd4\x26\x9c\x09\xce\x6c\x2d\xe4\x14\xb8\x14\x54\x02\x0c\x23\x18\x4b\x39\xcb\x36\x75\xb2\x54\x60\x2e\xb4\x85\x1d\xd6\x78\x62\xcb\xfa\xf3\xfe\xee\xfd\x7a\x8a\xe9\x9c\x79\x79\xec\x25\xa8\x3d\xd5\xe8\x29\x6e\x71\xc9\x0f\x9c\x3e\x39\xef\xdd\xf9\x2b\xda\xa6\x65\xf2\x6c\x8c\x6b\x44\x5b\xd5\x60\x88\x2c\x83\x53\x97\xb3\xd6\xef\x6a\xd4\x0b\xf1\xda\x08\x64\x8b\x74\xa9\x20\x3c\x40\x0f\x9b\x06\x75\x1e\x4b\x4a\xfb\xa2\xf7\xff\x28\xec\x63\x3c\x61\x8d\x51\x78\xf7\xb6\x85\xf5\x93\xd7\x1e\xac\x33\xd6\x32\x37\x81\xa7\x27\xa8\x51\xd8\xc4\x9b\x9d\x6b\x6c\x0e\xe2\xf4\x63\x9e\x2c\xbd\x6f\x3b\x26\xff\x05\xc0\x5e\xae\xd6\xcf\x35\x6a\x05\x9b\xd4\x38\x31\xa8\xf1\x1f\xbb\x48\xd5\xbd\xaa\x67\x29\xe3\x24\x49\xa2\xa5\xc8\x25\xe9\xd2\x26\xf3\x70\x3b\x62\x1d\xae\xbf\xda\x83\x11\x7f\x2d\xfb\x6d\xbb\xc0\x43\x8b\x30\xcc\xf7\xd6\x52\x25\xa9\x19\x21\x99\x42\x5a\x92\x7e\xe4\xaa\xdf\x47\x70\x6b\x1b\xd7\xba\xf7\x94\x2f\xfd\x87\x7e\x90\x69\x94\xd6\x66\x0b\xbd\xe3\xaf\xf6\xe0\xa6\xa9\x52\x53\xa1\x94\x34\x31\x89\xff\xc2\x3f\x19\x80\x2f\xd1\xaf\x00\x00\x00\xff\xff\xdb\x06\xf1\x14\xf8\x04\x00\x00" func transactionsNftForwardingChange_forwarder_recipientCdcBytes() ([]byte, error) { return bindataRead( @@ -211,11 +211,11 @@ func transactionsNftForwardingChange_forwarder_recipientCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/nft-forwarding/change_forwarder_recipient.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x23, 0x69, 0x68, 0x99, 0x69, 0x88, 0xd5, 0x9e, 0x69, 0x1, 0xc3, 0xa0, 0xcd, 0xf5, 0xf3, 0xed, 0xe8, 0x40, 0xb3, 0xea, 0x91, 0xf5, 0x2, 0x61, 0x44, 0xf9, 0xa2, 0xc8, 0xea, 0x65, 0xeb, 0xd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0x34, 0x3d, 0xd, 0xff, 0x96, 0x3c, 0xda, 0xf1, 0x58, 0xfb, 0x72, 0x1f, 0xfb, 0x81, 0x2a, 0x73, 0x4f, 0x6, 0x6f, 0x86, 0x69, 0x89, 0xa4, 0x26, 0xc1, 0x4e, 0xc5, 0x15, 0x70, 0x42, 0xbf}} return a, nil } -var _transactionsNftForwardingCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4d\x6f\xf2\x38\x10\xbe\xe7\x57\xcc\x72\xa0\x89\x44\xc3\x1d\xb5\x95\xba\x48\x48\x7b\x58\x54\xb5\x6c\xef\x83\x33\x24\xa3\x06\x3b\xb2\x27\x64\xab\x8a\xff\xfe\xca\xf9\x72\xe8\x9b\xb7\x9c\x4c\x9c\x3c\xf3\xf8\xf9\x30\x9f\x2b\x63\x05\x16\x7b\xa3\x77\xb5\xce\xf9\x58\xd2\xc1\x7c\x90\x5e\x44\xc3\xce\xbf\x24\x98\xa1\xe0\x3b\x53\xe3\xc2\xe3\xfd\xee\xb0\x33\xb6\x41\x9b\xb1\xce\x17\x51\xb4\x5e\xaf\xe1\x50\xb0\x03\xb1\xa8\x1d\x2a\x61\xa3\x81\x1d\x34\x05\x0a\xa0\x06\x54\xca\xd4\x5a\xa0\x31\x75\x99\x81\xad\x35\x88\x01\x47\x02\x2c\x8e\xca\x13\xd4\x95\x7f\x70\xea\x20\x61\xbf\x3b\x38\xff\x1f\x21\x23\xc7\xb9\x46\xa1\x0c\x2c\x29\xae\x98\xb4\xdc\x39\x68\xe7\xed\x77\x87\x74\x6b\xca\x92\xba\x69\xe8\x5c\x7d\x66\x9d\x83\x14\x14\x5e\xf6\x24\x94\xd1\x27\xce\x6b\x4b\x99\x9f\xd0\xee\xe7\x7c\x21\xed\x11\x20\x20\x78\xd0\x68\xc2\x3f\x1e\x41\x9e\xb3\xcc\x92\x73\x1b\xe8\x17\x2b\x50\xe3\x57\x2f\xf5\xb1\x64\xf5\x82\x52\x6c\x20\xac\x13\xf8\x8a\x22\x00\x80\xca\x52\x85\x96\x62\x7f\x0c\xb2\x1b\xc0\x5a\x8a\xf8\x6f\x63\xad\x69\xde\xb1\xac\x69\x05\xff\x38\x57\xd3\x9b\x18\x8b\x39\x6d\xb1\xc2\x23\x97\x2c\x9f\x5b\xa3\xc5\xfa\x21\x76\xd5\xc1\xba\x22\x6c\xae\xe0\x0d\x2f\xd4\x7f\xff\x9f\xae\xbe\xef\x27\xb0\x7c\xee\x04\xf7\x3c\xa0\xff\x8d\x8b\xf5\x1a\x72\x92\xc9\xc9\x21\x7c\x0a\x27\x6b\xce\xb7\x12\xf6\x87\x1e\x3c\x1c\x61\x4a\x92\xf0\x52\x00\xdb\x62\x05\x8f\x7e\x40\x4f\xe1\x37\x19\x93\x54\x0d\xe3\x98\x5c\x9a\x93\x3c\x2c\xbf\xbe\x27\x70\xe2\xec\xf5\x29\x1e\x67\xfa\xdf\x9c\xf6\xe3\x0b\x49\x34\x2e\xf9\x04\x7f\xcd\xf3\x4b\x55\x41\xea\x23\x9e\x8a\xd3\x7a\x85\x9a\x55\xbc\x38\x14\x04\xaf\x63\x7e\x0a\x74\xa0\x8d\x4c\x43\x24\x05\xb1\x0d\x91\x66\x29\x7c\xc4\x6f\xc3\x04\x28\x93\xa0\xb5\x0e\x29\xa8\x50\x8a\xc7\x45\xaa\x8c\x56\x28\xf1\xdc\x39\x52\x31\x6f\x62\x59\xe7\x71\x92\x24\x23\xb9\x6b\x34\xf5\x4e\x59\x42\x21\x40\xd0\xd4\x40\x28\x22\x59\xb0\xe4\x4c\x6d\x15\xc1\x12\x1c\x5e\x08\x58\x83\xeb\x82\xb5\x1a\xba\xd5\x16\xc4\xdc\x1a\x7c\xe7\xa6\x2d\x98\xda\x7b\x1a\xa1\x1f\xee\xe1\xa6\xf3\x69\xc7\x62\x4f\xcd\x94\x41\xf0\x7a\xf3\x87\x68\x84\x43\x75\x8d\x48\x7b\x82\xa9\x27\x1c\x3f\xdc\x8f\x13\x57\x20\x66\xf3\x6d\x66\xdf\x92\xb6\x60\x37\x92\xd4\x43\x07\x80\xfe\x67\x27\xfe\x90\x13\x2b\xa6\x71\xeb\xf2\x3d\x13\x9c\x9e\xce\x4d\x34\x47\xd8\x59\xaf\x92\x39\x57\x96\x30\x30\xc1\x30\xf7\x73\xbc\x77\x82\xa0\x4d\x41\x96\xda\x67\x01\xbb\xbf\x1e\xb5\xb1\x67\x2c\xcb\x4f\x38\xd2\xbc\x1b\xaf\xa4\x88\x2f\x64\xbb\xaa\xcd\x31\x1f\x54\x65\x7f\xb9\xcc\xd5\x6b\x80\xb8\x3e\xc5\x3f\x68\xfc\x93\x38\x83\x34\x73\xac\x56\x80\xb2\x99\x2d\x6a\x2f\xda\x35\xba\x46\xbf\x02\x00\x00\xff\xff\x26\x46\xe9\x29\x7d\x06\x00\x00" +var _transactionsNftForwardingCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\xcb\x6e\xdb\x30\x10\xbc\xeb\x2b\xb6\x3a\x38\x32\xe0\xc8\x77\x23\x0d\x90\x1a\x30\xd0\x43\x8d\xa0\x71\x73\x5f\x53\x6b\x89\x88\x4c\x0a\xe4\xca\x6a\x10\xf8\xdf\x0b\xea\x45\xca\x51\xe3\x13\x2d\x92\xb3\xb3\xb3\x33\x94\xe7\x4a\x1b\x86\x78\xaf\xd5\xae\x56\xb9\x3c\x96\x74\xd0\x6f\xa4\xe2\x68\xd8\xf9\x45\x8c\x19\x32\xbe\x4a\x6a\xac\xff\xbc\xdf\x1d\x76\xda\x34\x68\x32\xa9\xf2\x38\x8a\xd6\xeb\x35\x1c\x0a\x69\x81\x0d\x2a\x8b\x82\xa5\x56\x20\x2d\x34\x05\x32\xa0\x02\x14\x42\xd7\x8a\xa1\xd1\x75\x99\x81\xa9\x15\xb0\x06\x4b\x0c\x92\x2d\x95\x27\xa8\x2b\xf7\xe1\xd4\x41\xc2\x7e\x77\xb0\xee\x3f\x42\x46\x56\xe6\x0a\x99\x32\x30\x24\x64\x25\x49\xf1\x9d\x85\xb6\xde\x7e\x77\x48\xb7\xba\x2c\xa9\xab\x86\xd6\xd6\x67\xa9\x72\xe0\x82\xfc\x61\x47\x42\x68\x75\x92\x79\x6d\x28\x73\x15\xda\xfd\x5c\x5e\x48\x39\x04\xf0\x08\x0e\x34\x0a\xf8\x27\x23\xc8\x53\x96\x19\xb2\x76\x03\xfd\x62\x05\x62\xbc\xf5\x5c\x1f\x4b\x29\x9e\x91\x8b\x0d\xf8\xf5\x12\x3e\xa2\x08\x00\xa0\x32\x54\xa1\xa1\xc4\xb5\x41\x66\x03\x58\x73\x91\xfc\xd0\xc6\xe8\xe6\x15\xcb\x9a\x56\xf0\xd3\xda\x9a\x5e\x58\x1b\xcc\x69\x8b\x15\x1e\x65\x29\xf9\x7d\xab\x15\x1b\x57\xc4\xac\x3a\x58\x5b\xf8\xcd\x15\xbc\xe0\x85\xfa\xfb\x7f\x54\x75\xbb\xbf\x84\xc5\x53\x27\xb8\xe3\x01\xfd\x6f\x5c\xac\xd7\x90\x13\x07\x9d\x83\xbf\x0a\x27\xa3\xcf\x53\x09\xfb\xa6\x87\x19\x8e\x30\x25\xb1\x3f\xe4\xc1\xb6\x58\xc1\x77\x57\xa0\xa7\xf0\x49\xc6\x65\x2a\x86\x72\x92\x6c\x9a\x13\x3f\x2c\x3e\x6e\x1d\x18\x4c\xf6\xfa\x98\x8c\x35\xdd\x6f\x4e\xfb\xf1\xc0\x32\x1a\x97\xf2\x04\xdf\xe6\xf9\xa5\xa2\x20\xf1\x96\x84\xe2\xb4\xb3\x42\x25\x45\x12\x1f\x26\xfe\x69\x24\x17\x80\xbd\x04\x71\x2a\xb4\x12\xf8\xb9\xa7\x94\xf5\x0b\x1b\xa9\xf2\x64\xb9\x9c\x60\x0e\x17\x62\x28\xd0\x82\xd2\x1c\xba\x91\x0b\x92\xc6\x67\xa3\xad\x74\xeb\x4a\x40\x0e\x1c\xdb\x8e\x5a\x40\x85\x5c\x40\x3c\x5f\x69\x4e\x9e\x90\xde\xc8\x28\x8d\x03\xae\xd7\x28\xb4\x87\x30\x84\x4c\x80\xa0\xa8\x01\x9f\x75\x32\x60\xc8\xea\xda\x08\x82\x05\x58\xbc\x10\x48\x05\xb6\xf3\xee\x6a\x88\x6f\x9b\x41\x3d\xf5\xd0\x9d\x0d\x83\x16\x3a\xe8\x34\x42\x3f\xdc\xc3\xe4\x59\x49\x3b\x16\x7b\x6a\x42\x06\x5e\xfa\xcd\x7f\xdc\xe7\x9b\xea\x42\x97\xf6\x04\x53\x47\x38\x79\xb8\x1f\x2b\xae\x80\xf5\xe6\xa6\x66\x1f\xc4\x36\xc3\x13\x49\xea\x21\x66\x40\x7f\xa5\x65\xd7\x64\x30\xa4\xd0\xd1\x5d\x84\x66\xbc\xd9\xd3\x99\xb8\x7f\x84\x9d\x9d\xdb\x72\x6e\x2a\x0b\x18\x98\xa0\xaf\xfb\x3e\x3e\x6d\x5e\xd0\xa6\x20\x43\xed\x37\x8f\xdd\xbf\xc0\x4a\x9b\x33\x96\xe5\x3b\x1c\x69\x7e\x1a\xbf\x49\x90\xbc\x90\xe9\xd2\x3c\xc7\x7c\x50\x55\xba\xf7\x6b\x2e\xc1\x03\xc4\xf5\x31\xf9\x42\xe3\xaf\xc4\x19\xa4\x99\x63\xb5\x02\xe4\xcd\xec\x5b\xd0\x8b\x76\x8d\xae\xd1\xbf\x00\x00\x00\xff\xff\xf7\x48\x20\xe6\xe0\x06\x00\x00" func transactionsNftForwardingCreate_forwarderCdcBytes() ([]byte, error) { return bindataRead( @@ -231,11 +231,11 @@ func transactionsNftForwardingCreate_forwarderCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/nft-forwarding/create_forwarder.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0x86, 0x57, 0x66, 0x81, 0x5a, 0x52, 0x0, 0x4c, 0xe0, 0x5b, 0xd0, 0xd3, 0x2b, 0x24, 0xe2, 0xca, 0xb1, 0xb4, 0x90, 0x39, 0x2e, 0x55, 0x9f, 0x7d, 0xcd, 0xa1, 0x35, 0x58, 0x39, 0x60, 0x3e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0xd6, 0x1e, 0x34, 0x24, 0x79, 0x6e, 0xe4, 0x5e, 0x45, 0xd0, 0x6f, 0xec, 0x59, 0xfb, 0x9a, 0xc8, 0x51, 0x9a, 0x44, 0xc, 0xdd, 0xfc, 0x6, 0xab, 0xa3, 0x15, 0x4a, 0x8e, 0x4e, 0x82, 0x1}} return a, nil } -var _transactionsNftForwardingTransfer_nft_to_receiverCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\x5f\x6f\xe3\x36\x0c\x7f\xcf\xa7\xe0\xf9\xa1\xb5\x81\x3b\xe7\x65\xd8\x43\xd0\x3f\xb8\xb5\x28\xd0\x87\xeb\x86\x2e\xbb\x3d\x2b\x36\x1d\x6b\xe7\x48\x06\x45\x27\xbb\x15\xfd\xee\x83\x24\xcb\x7f\x93\xa5\xdd\xf9\x21\x50\x24\x91\xfc\x91\xfc\x91\x94\xdc\xd5\x9a\x18\xa2\x27\xad\x1e\x1a\xb5\x95\x9b\x0a\xd7\xfa\x1b\xaa\x68\x11\x4e\xbe\x4a\x3c\x3c\xa3\xd1\xd5\x1e\xa9\xdf\xfd\x82\x2c\x72\xc1\xc2\x9e\x9a\x68\xb1\x58\x2e\x97\xb0\x2e\xa5\x01\x26\xa1\x8c\xc8\x58\x6a\x05\xd2\x40\xa1\xc9\x6f\x15\x48\x24\xd5\x16\x84\x82\xa7\x87\x35\x14\xa4\x77\xa0\x15\x82\xc8\x32\xdd\x28\x06\xd6\xc0\x25\x02\x61\x26\x6b\x89\x8a\x2f\x0d\x3c\x63\x86\x72\x8f\x64\x95\x2f\x06\x7a\xe3\x05\x00\x40\xa6\x15\x93\xc8\xf8\x73\x9e\x13\x1a\xb3\x82\x76\xf1\x71\x74\xfa\x24\x76\xb8\x82\xdf\xd9\xda\xf6\x27\x9d\x85\x89\xc4\x41\x72\x99\x93\x38\x3c\xde\xaf\xe0\x8f\x47\xc5\x3f\xff\xb4\x48\xe0\x65\xe1\xce\x96\x4b\x20\x2c\x90\x50\x65\x18\x90\x86\xfb\x48\x97\x06\x32\x5d\x55\xe8\xc0\xb9\xfb\x15\x72\x77\xfe\x8c\xc5\x0a\x44\xc3\x65\x3c\x8d\x71\xfa\x67\x7b\x25\x81\x8b\x97\xd9\xe1\x5d\xa7\xf2\x75\x8e\x41\x17\x0e\x43\x88\x90\xc5\x94\x63\xad\x8d\x64\xb7\x6f\x23\xcc\xba\x83\xd2\x1e\x39\x24\x47\x2c\x05\x2d\xaf\xde\xd9\x9a\xb0\x16\x84\xb1\x91\x5b\x85\xd4\x62\xff\x45\x13\xe9\xc3\x57\x51\x35\x98\xc0\xc5\x67\x9f\xb4\x2e\x3e\x2d\xbe\x2d\x7a\xf3\x7d\x34\xc0\x72\xc4\x27\x3b\xe0\x0a\x99\xe9\x04\x2d\x42\x55\xf0\x5d\xbb\x0f\xd7\x56\x4f\x6b\x21\x9e\x64\x39\x49\xc3\x86\x49\x37\x0e\xd2\xd5\xc5\xcb\x90\xa1\xaf\x37\xb1\x72\x29\x1f\x12\x20\xe9\x6c\xd9\xef\xf6\x16\x6a\xa1\x64\x16\x47\x77\xba\xa9\x72\x50\x9a\xc1\xeb\x82\xa1\xa6\x79\xc6\x83\xca\x14\xbe\x88\x6f\x08\xa6\x21\x74\xfb\x35\xe9\xbd\xcc\x31\xef\x2e\x80\x85\x00\x71\x34\x32\xdb\x7f\xd6\x87\x4c\xf4\xbe\x39\x88\x61\x33\x4a\x40\xa8\x1c\x84\xf7\x17\xe2\x28\x99\x5e\x6f\x43\x91\xb2\xf6\xb4\x8e\x93\x91\x30\x59\xa0\x44\x98\xf1\x87\x28\x19\x7b\x3e\x0a\x79\x9f\xa4\x7b\x9b\xa3\xeb\x61\x0e\x52\xf2\x41\x08\xff\x6d\x5c\x62\xbb\xd7\x50\x86\xeb\xef\x35\xae\x40\xc9\xea\x23\xec\x25\x1e\xfc\x5f\xfb\x7b\x35\x6a\x0a\xe9\xd3\xc3\xfa\x6e\x64\xe3\x26\x4e\x12\x10\x06\xce\x5c\xbb\x3d\x9b\xad\x16\x1d\xcc\x44\x1d\xa0\x14\xd6\x25\x42\xf4\xdf\x51\x1e\xe4\x0a\x31\x37\x36\xc5\x72\x57\x57\xb8\x43\xd5\x95\xd0\x44\x77\x80\xed\x8c\x80\x54\xa0\x29\xf7\xa5\x87\x7f\x63\xd6\xb0\x25\xc3\xb8\x01\xda\xf8\x0f\xeb\xa3\x65\x99\x98\x53\xcb\xd7\xda\xa5\x69\x2b\x64\xd4\x4c\xec\x67\xb0\x2a\xd2\x41\x47\x81\xeb\x56\x24\x35\xac\x49\x6c\x31\x54\xc3\x8f\x35\x9a\x9b\x78\x46\x59\x5b\xbb\xab\x09\x59\x82\xd1\xdf\x04\x97\x23\x81\x64\x90\xae\x75\xe7\x16\xe4\x1a\x8d\x4b\x9c\x95\x43\x10\x70\xaa\x32\x4e\xd4\xc6\xd9\xdb\xd1\xc0\x09\xd0\x9b\xbf\x30\x63\x10\x3e\x8f\xb5\xe0\x12\xa2\xf3\x2a\x4e\x7b\x38\x2c\xb4\xf3\x48\x06\x6e\xef\x1a\xc3\x20\x95\x64\x29\x2a\xf9\x8f\xeb\x15\x92\xba\x81\x67\xb3\xe9\x19\x33\x68\x97\x85\x24\xe3\xeb\xf6\x28\x6f\xea\x66\x53\xc9\x6c\x4e\x9f\xa3\x53\x73\xc4\x9d\x7e\x04\x8c\xfb\x6b\x27\x99\xa4\x99\xa8\xc5\x46\x56\x92\x25\x0e\x9a\xeb\xe9\x69\x71\x84\x2c\x93\x20\x7a\xb8\x67\x59\xd2\x61\xe8\x89\x52\x8a\xbd\xe5\xc9\xd4\x78\x3f\xf0\x04\xbf\x89\x44\x27\xe0\xbc\x2f\xa5\xc0\xa5\x60\xfb\x98\x71\x11\xaa\xdc\xf4\x25\x07\xc4\x3d\x68\xde\xc6\xae\x77\xd1\xd9\xb6\x81\xf4\x0d\x6a\x27\xe1\xfb\x1f\x84\xb3\xb3\x86\x42\x50\x7b\xf6\x59\x23\xed\x73\x20\x34\xb7\xf1\xa8\x0f\xbd\xa8\x1b\xeb\xdd\x8c\xd7\x07\x75\xec\x49\x04\xfd\xa4\x87\xab\x4f\xb3\x86\xd6\xad\xe3\xe1\x3b\xac\x5f\x8f\x0b\xe2\x7e\xf2\xd6\x91\x6a\x5c\x06\xa7\xb8\x1f\x96\x31\x5b\x36\xad\xe0\xea\x93\x2a\x78\xe4\x6d\xad\x0d\xc3\x4b\x27\xff\x61\x86\x73\x8b\xfc\x78\x6f\x62\xff\x10\x11\x52\x99\x01\xe0\x64\x05\xd1\xaf\x24\xb7\x52\x89\xca\xc7\x01\x4c\xd9\x4d\x2d\xc7\xe9\x80\x58\xa8\xef\x3b\x4d\x18\xb5\xb6\x5f\x17\xff\x06\x00\x00\xff\xff\x76\x2b\x07\xf6\x89\x0b\x00\x00" +var _transactionsNftForwardingTransfer_nft_to_receiverCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\x5f\x6f\xe3\x36\x0c\x7f\xcf\xa7\xe0\xf9\xa1\xb5\x81\x3b\xf7\x65\xd8\x43\xd0\x3f\xb8\xb5\x28\xd0\x87\xeb\x86\x2e\xbb\x3d\x2b\x36\x1d\x6b\xe7\x48\x06\x45\x27\xbb\x15\xfd\xee\x83\x24\x4b\xfe\x93\x04\xe9\x6d\x7e\x08\x14\x49\x24\x7f\x24\x7f\x24\x25\xb7\xad\x26\x86\xe4\x59\xab\xc7\x4e\x6d\xe4\xba\xc1\x95\xfe\x86\x2a\x59\x84\x93\xaf\x12\xf7\x2f\x68\x74\xb3\x43\x1a\x76\xbf\x20\x8b\x52\xb0\xb0\xa7\x26\x59\x2c\xae\xae\xae\x60\x55\x4b\x03\x4c\x42\x19\x51\xb0\xd4\x0a\xa4\x81\x4a\x93\xdf\xaa\x90\x48\xaa\x0d\x08\x05\xcf\x8f\x2b\xa8\x48\x6f\x41\x2b\x04\x51\x14\xba\x53\x0c\xac\x81\x6b\x04\xc2\x42\xb6\x12\x15\x5f\x1a\x78\xc1\x02\xe5\x0e\xc9\x2a\x5f\x8c\xf4\xa6\x0b\x00\x80\x42\x2b\x26\x51\xf0\xe7\xb2\x24\x34\x66\x09\xfd\xe2\xe3\xe4\xf4\x59\x6c\x71\x09\xbf\xb3\xb5\xed\x4f\xa2\x85\x99\xc4\x5e\x72\x5d\x92\xd8\x3f\x3d\x2c\xe1\x8f\x27\xc5\x3f\xff\xb4\xc8\xe0\x75\xe1\xce\xae\xae\x80\xb0\x42\x42\x55\x60\x40\x1a\xee\x23\x5d\x1a\x28\x74\xd3\xa0\x03\xe7\xee\x37\xc8\xf1\xfc\x05\xab\x25\x88\x8e\xeb\x74\x1e\xe3\xfc\xcf\xfe\x4a\x06\x17\xaf\x07\x87\xf7\x51\xe5\xdb\x21\x06\x5d\x39\x0c\x21\x42\x16\x53\x89\xad\x36\x92\xdd\xbe\x8d\x30\xeb\x08\xa5\x3f\x72\x48\x8e\x58\x0a\x5a\xde\xbc\xb3\x2d\x61\x2b\x08\x53\x23\x37\x0a\xa9\xc7\xfe\x8b\x26\xd2\xfb\xaf\xa2\xe9\x30\x83\x8b\xcf\x3e\x69\x31\x3e\x3d\xbe\x0d\x7a\xf3\x43\x34\xc0\x72\xc4\x27\x3b\xe0\x0a\x99\x89\x82\x16\xa1\xaa\xf8\xbe\xdf\x87\x1b\xab\xa7\xb7\x90\xce\xb2\x9c\xe5\x61\xc3\xe4\x6b\x07\xe9\xfa\xe2\x75\xcc\xd0\xb7\xdb\x54\xb9\x94\x8f\x09\x90\x45\x5b\xf6\xbb\xbb\x83\x56\x28\x59\xa4\xc9\xbd\xee\x9a\x12\x94\x66\xf0\xba\x60\xac\xe9\x30\xe3\x41\x65\x0e\x5f\xc4\x37\x04\xd3\x11\xba\xfd\x96\xf4\x4e\x96\x58\xc6\x0b\x60\x21\x40\x32\xb1\x3a\x7c\xd6\x85\x42\x0c\xae\x39\x84\x61\x33\x01\xa1\x4a\x10\xde\x5b\x48\xb2\xf9\xe5\x3e\x0e\x39\x6b\xcf\xe9\x34\x1b\x8b\x92\x05\x49\x84\x05\x7f\x48\xb2\xa9\xd7\x93\x70\x0f\x09\x7a\xb0\xf9\xb9\x19\xc7\x3f\x27\x1f\x80\xf0\xdf\xc6\x24\xb5\x7b\x1d\x15\xb8\xfa\xde\xe2\x12\x94\x6c\x3e\xc2\x4e\xe2\xde\xff\xb5\xbf\xd7\x93\x86\x90\x3f\x3f\xae\xee\x27\x36\x6e\xd3\x2c\x03\x61\xe0\xcc\xb5\xbb\xb3\x99\xea\xd1\xc1\x81\xa8\x03\x94\xc3\xaa\x46\x48\xce\x84\x78\xc8\x13\x62\x69\x6c\x7a\xe5\xb6\x6d\x70\x8b\x2a\x96\xcf\x4c\x77\x80\xed\x8c\x80\x54\xa0\xa9\xf4\x65\x87\x7f\x63\xd1\xb1\x25\xc2\xb4\xf9\xd9\xf8\x8f\x6b\xa3\x67\x98\x38\xa4\x95\xaf\xb3\x4b\xd3\x57\xc7\xa4\x91\xd8\xcf\x60\x53\xe5\xa3\x6e\x02\x37\xbd\x48\x6e\x58\x93\xd8\x60\xa8\x84\xff\xd7\x64\x6e\xd3\x03\xbe\xda\xba\x5d\xce\xc8\x12\x8c\xfe\x26\xb8\x9e\x08\x64\xa3\x74\xad\xa2\x5b\x50\x6a\x34\x2e\x71\x56\x0e\x41\x9c\x2c\x8b\x13\x85\x71\xf6\x76\x32\x72\x02\xf4\xfa\x2f\x2c\x18\x84\xcf\x63\x2b\xb8\x86\xe4\xbc\x8a\xd3\x1e\x8e\xeb\xec\x3c\x92\x91\xdb\xdb\xce\x30\x48\x25\x59\x8a\x46\xfe\xe3\xfa\x84\xa4\x38\xec\x6c\x36\x3d\x63\x46\xad\xb2\x92\x64\x7c\xdd\x1e\xe5\x4d\xdb\xad\x1b\x59\x1c\xd2\xe7\xe8\xc4\x9c\x70\x67\x68\xff\xd3\xde\x1a\x25\xb3\xbc\x10\xad\x58\xcb\x46\xb2\xc4\x51\x63\x3d\x3d\x29\x8e\x90\x65\x16\x44\x0f\xf7\x2c\x4b\x22\x86\x81\x28\xb5\xd8\x59\x9e\xcc\x8d\x0f\xc3\x4e\xf0\xbb\x48\x74\x02\xce\x8f\xa5\x14\xb8\x16\x6c\x1f\x32\x2e\x42\x8d\x9b\xbc\xe4\x80\xb8\xc7\xcc\xfb\xd8\xf5\x43\x74\xb6\x6d\x20\x7f\x87\xda\x59\xf8\xfe\x03\xe1\xec\xa4\xa1\x10\xd4\x81\x7d\xd6\x48\xff\x14\x08\xcd\x6d\x3a\xe6\x43\x2f\x8a\x23\x3d\xce\x77\xbd\x57\xc7\x9e\x43\x30\x4c\x79\xb8\xfe\x74\xd0\xd0\xe2\x3a\x1d\xbf\xc1\x86\xf5\xb4\x20\x1e\x66\xef\x1c\xa9\xa6\x65\x70\x8a\xfb\x61\x99\xb2\x65\xd3\x12\xae\x3f\xa9\x8a\x27\xde\xb6\xda\x30\xbc\x46\xf9\x0f\x07\x38\x37\xc8\x4f\x0f\x26\xf5\x8f\x10\x21\x95\x19\x01\xce\x96\x90\xfc\x4a\x72\x23\x95\x68\x7c\x1c\xc0\xd4\x71\x6a\x39\x4e\x07\xc4\x42\x7d\xdf\x6a\xc2\xa4\xb7\xfd\xb6\xf8\x37\x00\x00\xff\xff\xb3\x28\xda\x2b\x85\x0b\x00\x00" func transactionsNftForwardingTransfer_nft_to_receiverCdcBytes() ([]byte, error) { return bindataRead( @@ -251,7 +251,7 @@ func transactionsNftForwardingTransfer_nft_to_receiverCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/nft-forwarding/transfer_nft_to_receiver.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x24, 0xf5, 0x59, 0x52, 0x56, 0x8f, 0xe0, 0xdc, 0x5a, 0x26, 0xf1, 0x5b, 0x1f, 0x74, 0x9c, 0xa1, 0xcd, 0x8e, 0xaa, 0x1f, 0xb7, 0x37, 0x59, 0xfa, 0xc1, 0x72, 0x7b, 0x71, 0x9, 0x3e, 0x8d, 0xe6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xeb, 0xc6, 0x98, 0xed, 0x73, 0x74, 0x4, 0x4, 0xaf, 0xc6, 0xd3, 0x76, 0x8d, 0x3c, 0xce, 0x15, 0x1c, 0x5f, 0x48, 0x8f, 0x82, 0xac, 0x6e, 0x1a, 0xb5, 0x63, 0x58, 0xb5, 0x7e, 0xe6, 0x8b, 0xec}} return a, nil } @@ -275,7 +275,7 @@ func transactionsNftForwardingUnlink_forwarder_link_collectionCdc() (*asset, err return a, nil } -var _transactionsScriptsBorrow_nftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x41\x6f\xd3\x40\x10\x85\xef\xfe\x15\xaf\x3e\x20\x5b\xaa\x9c\x0b\xe2\x50\x35\xad\x4a\x21\x12\x07\x22\x04\x86\x2b\x9a\xac\x27\xf5\x88\xf5\xae\xb5\x3b\x6e\x0a\x55\xff\x3b\xb2\x13\xc7\x71\x29\xaa\x0f\x51\x76\x67\x67\xf6\x7b\xf3\x66\x17\x0b\x94\xb5\x44\x44\x13\xa4\x55\x6c\x7c\x08\x7e\x17\x41\x0e\xeb\x55\x89\x6d\xf0\x0d\x08\xc6\x5b\xcb\x46\xc5\xbb\x24\x91\xa6\xf5\x41\x91\xae\xbd\x5b\x75\xee\x4e\x36\x96\x4b\xff\x8b\x5d\x7a\x8c\x7c\x7c\xa0\xa6\xb5\xbc\x5e\x95\xd3\xde\x67\x56\xaa\x48\xe9\x87\xf0\x2e\xa6\x49\x42\xc6\x70\x8c\x19\x59\x9b\x63\xdb\x39\x34\x24\x2e\xa3\xaa\x0a\x1c\xe3\x05\x6e\xf6\x7f\xce\x21\xd5\x05\xbe\x7f\x72\xfa\xee\x6d\x8e\xc7\x04\x00\x2c\x2b\xc8\x18\xdf\x39\xc5\x12\x77\xac\x37\xfb\xc5\x98\x9c\x27\xc7\x63\x13\xf5\x07\x52\xc2\x12\x13\x58\x11\x38\x7a\x7b\xcf\xb7\xde\x69\x20\xa3\x3d\x56\xd6\xef\x75\xc1\x70\xf9\xbb\xe5\x0b\x38\xb1\xe7\xb8\x17\xde\xed\x97\xfd\xef\xe5\x4c\x45\xb1\x5e\x95\xb7\xb3\x2b\xae\xb2\x3c\x07\xc5\x33\xbc\x72\xee\x7a\x40\x1c\xbf\xeb\x6b\xb4\xe4\xc4\x64\xe9\xad\xef\x6c\x05\xe7\x15\x07\x3c\xfc\x93\x3a\x10\x15\x28\x6b\x3e\x51\x03\x73\x90\x01\xc7\x5c\x45\xa8\x87\xf4\xa1\x86\x9d\x42\xeb\x97\xca\x8c\x84\x43\x3d\x88\x83\x0f\x15\x87\x3e\x93\x1f\xd8\x74\xca\xd0\x7e\x2a\x34\x90\x8b\x34\xa4\xa5\x2f\x76\xf6\x2b\x6f\xb1\x1c\x0d\x29\x0c\xb5\xb4\x11\x2b\x2a\x1c\x8b\xfd\x28\x5d\xbe\x79\x7c\x3e\x29\xc5\xc4\xf2\x74\x95\xcd\x7a\x31\xb7\xac\x68\xbb\x8d\x15\xf3\x85\xb4\x9e\x9d\xca\x4f\x7a\xd6\x77\x62\x9c\x87\xb4\x30\xde\x19\x3a\xce\x42\xa1\xfe\x9b\x06\x71\x77\x59\x9e\x8f\xa1\x14\x95\xe7\x38\x34\xb9\xa6\x7b\x06\xe1\x39\x1e\x26\x3c\x90\x22\xcd\x67\x77\x9f\x7e\x63\xcd\xff\x52\x9f\x02\xbc\x5a\x65\x26\xa5\xe9\xa2\x42\x9c\xa8\x90\x95\x3f\xbd\x1b\x2c\xe1\x18\xdd\x89\xd6\x7b\x83\xa6\xab\xb1\x95\x10\xf5\x2c\xcd\x0f\x3e\x2d\x16\x78\x3f\x38\x00\x42\xe0\x2d\x07\x76\x86\x7b\x83\x09\xb1\x65\x23\x5b\x31\xc3\x13\x17\x37\x8c\xc8\xc9\x13\x1f\x5d\xfe\x89\xe5\xdc\xe9\x83\xa5\xeb\x55\x99\x49\x35\x09\x9a\x9b\xd1\xd7\x1c\xf8\xa4\x5a\x1e\x0d\x91\xea\x15\x2f\xf8\x41\x06\xc1\xcf\x58\x06\x39\x4f\xc9\xdf\x00\x00\x00\xff\xff\xfd\x6b\x79\xeb\xa5\x04\x00\x00" +var _transactionsScriptsBorrow_nftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x41\x6f\xd3\x40\x10\x85\xef\xfe\x15\xaf\x3e\x20\x5b\xaa\x9c\x0b\xe2\x50\x35\xad\x4a\x21\x12\x07\x22\x04\x86\x2b\x9a\xac\x27\xcd\x88\xf5\xae\xb5\x3b\x6e\x0a\x55\xff\x3b\xb2\x1d\xc7\x71\x29\xaa\x0f\x51\x76\x67\x67\xf6\xbd\xf9\x66\x17\x0b\x94\x3b\x89\x88\x26\x48\xa3\xd8\xf8\x10\xfc\x3e\x82\x1c\xd6\xab\x12\xdb\xe0\x6b\x10\x8c\xb7\x96\x8d\x8a\x77\x49\x22\x75\xe3\x83\x22\x5d\x7b\xb7\x6a\xdd\x9d\x6c\x2c\x97\xfe\x17\xbb\xf4\x18\xf9\xf8\x40\x75\x63\x79\xbd\x2a\xa7\xbd\xcf\xac\x54\x91\xd2\x0f\xe1\x7d\x4c\x93\x84\x8c\xe1\x18\x33\xb2\x36\xc7\xb6\x75\xa8\x49\x5c\x46\x55\x15\x38\xc6\x0b\xdc\x0c\x7f\xce\x21\xd5\x05\xbe\x7f\x72\xfa\xee\x6d\x8e\xc7\x04\x00\x2c\x2b\xc8\x18\xdf\x3a\xc5\x12\x77\xac\x37\xc3\x62\x4c\xce\x93\xe3\xb1\x49\xf5\x07\x52\xc2\x12\x93\xb0\x22\x70\xf4\xf6\x9e\x6f\xbd\xd3\x40\x46\x3b\x59\x59\xb7\xd7\x06\xc3\xe5\xef\x86\x2f\xe0\xc4\x9e\xe3\x5e\x78\x3f\x2c\xbb\xdf\xcb\x99\x8b\x62\xbd\x2a\x6f\x67\x57\x5c\x65\x79\x0e\x8a\x67\x78\xe5\xdc\x75\x2f\x71\xfc\xae\xaf\xd1\x90\x13\x93\xa5\xb7\xbe\xb5\x15\x9c\x57\x1c\xe4\xe1\x9f\xd4\x5e\x51\x81\x72\xc7\x27\x6e\x60\x0e\x36\xe0\x98\xab\x08\xf5\x90\x2e\x54\xb3\x53\xe8\xee\xa5\x32\xa3\xc2\xbe\x1e\xc4\xc1\x87\x8a\x43\x97\xc9\x0f\x6c\x5a\x65\x68\x37\x15\x1a\xc8\x45\xea\xd3\xd2\x17\x3b\xfb\x95\xb7\x58\x8e\x40\x0a\x43\x0d\x6d\xc4\x8a\x0a\xc7\x62\x18\xa5\xcb\x37\x8f\xcf\x27\xa5\x98\xb4\x3c\x5d\x65\xb3\x5e\xcc\x91\x15\x4d\xbb\xb1\x62\xbe\x90\xee\x66\xa7\xf2\x93\x9e\x75\x9d\x18\xe7\x21\x2d\x8c\x77\x86\x8e\xb3\x50\xa8\xff\xa6\x41\xdc\x5d\x96\xe7\x63\x28\x45\xe5\x39\xf6\x4d\xde\xd1\x3d\x83\xf0\x5c\x1e\x26\x79\x20\x45\x9a\xcf\xee\x3e\xfd\xc6\x9a\xff\x55\x7d\x2a\xe0\xd5\x2a\xe9\x80\x75\x34\x53\xb7\x51\x21\x4e\x54\xc8\xca\x9f\x8e\x07\x4b\x38\x46\xf7\xa2\xbb\x01\xd1\x74\x39\xb6\x12\xa2\x9e\xa5\xf9\x81\xd4\x62\x81\xf7\x3d\x03\x10\x02\x6f\x39\xb0\x33\xdc\x21\x26\xc4\x86\x8d\x6c\xc5\xf4\x8f\x5c\x5c\x3f\x24\x27\x8f\x7c\xe4\xfc\x13\xcb\x39\xeb\x03\xd4\xf5\xaa\xcc\xa4\x9a\x2c\xcd\x71\x74\x35\x7b\x7d\x52\x4d\x48\xa4\x7a\x85\x06\x3f\x48\x6f\xf8\x99\x96\xde\xce\x53\xf2\x37\x00\x00\xff\xff\xd3\xb5\x16\x75\xa7\x04\x00\x00" func transactionsScriptsBorrow_nftCdcBytes() ([]byte, error) { return bindataRead( @@ -291,7 +291,7 @@ func transactionsScriptsBorrow_nftCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/scripts/borrow_nft.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0xdd, 0x31, 0x73, 0xaf, 0x85, 0x1a, 0x34, 0x48, 0x9f, 0x57, 0xeb, 0x8e, 0xd1, 0xa6, 0x78, 0xea, 0x36, 0x5b, 0xd6, 0xe8, 0x72, 0x2b, 0x6d, 0x9e, 0x68, 0x30, 0xd1, 0x79, 0xdc, 0x58, 0x67}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd2, 0xcd, 0x39, 0x5b, 0xe3, 0x9e, 0xca, 0x6e, 0x32, 0x4f, 0x43, 0xb2, 0xe1, 0xf0, 0x2d, 0x1f, 0xd, 0xbb, 0x47, 0xa, 0x57, 0x2, 0xd2, 0xd3, 0x6, 0xc2, 0xdd, 0x7d, 0xc9, 0xe9, 0xf5, 0xb6}} return a, nil } @@ -315,7 +315,7 @@ func transactionsScriptsGet_collection_dataCdc() (*asset, error) { return a, nil } -var _transactionsScriptsGet_collection_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xcf\x8a\xdb\x30\x10\x87\xef\x7a\x8a\x5f\x7d\x68\x2d\x28\xce\xa5\xf4\x10\xba\x5d\x96\x2e\x0b\xb9\x2c\xa1\x49\x4f\xa5\x07\x59\x99\xd8\x43\x95\x91\x91\xc6\x0d\x34\xe4\xdd\x4b\x92\xda\xf9\x43\x76\x4e\x23\x66\xe6\xd3\x27\x46\x93\xc9\x04\x0b\x9f\xb8\x53\x68\x44\x43\x8a\xd7\x97\x25\x66\xcf\x19\x2c\x70\x02\xe7\x7d\xec\x45\x3f\x64\xf8\x18\x02\x79\xe5\x28\xc6\xf0\xa6\x8b\x49\x51\xbc\x46\x79\xe9\xa5\xe1\x3a\xd0\x32\xfe\x26\x29\x8c\x71\xde\x53\xce\xa5\x0b\xc1\x62\xdd\x0b\x36\x8e\xa5\x74\xab\x55\xa2\x9c\xa7\x78\x3a\x25\x1f\x2f\x68\xf3\xbe\x0e\xec\xe7\x4e\xdb\x29\xce\xb9\x9d\xe2\xe7\x8f\x99\xe8\xe7\x4f\xbf\xb0\x33\x00\x10\x48\x07\x1b\x3c\x1c\x4c\x9f\x4e\x87\x01\x6e\xcd\xd8\x76\x86\x7f\xa7\x35\x1e\x86\xb1\xca\xbb\xce\xd5\x1c\x58\x99\x72\x55\xc7\x94\xe2\xf6\xcb\xfb\xdd\xed\x23\xaa\x6f\xe3\xf8\xfe\x6b\x79\x84\x0e\x71\xcf\xfa\xd8\x60\xf1\xf8\x88\xce\x09\xfb\xb2\x58\xb6\x34\x8a\x16\x95\x8f\xe2\xdd\x28\x59\x69\x5c\x68\x62\x69\x4a\x6b\x87\x52\x81\x55\xa4\x0c\x89\x8a\xd6\xfd\x21\x38\xdc\x1a\xe1\x6c\x04\xa7\x28\xec\x95\xd4\x21\x06\xd6\x3d\xc1\xcb\x3b\xdf\x1c\xbc\xb2\xde\xf4\x59\xc1\xc2\xca\x2e\xf0\x5f\x82\xb6\xc4\x69\xac\x6e\x59\x5b\x68\xcb\x97\x5f\x02\x6b\x4e\x59\xdf\x15\xf6\xff\x16\x12\x69\x9f\xe4\x7a\x11\x55\x43\x3a\x7b\xce\xa5\x35\x7b\xf3\x2f\x00\x00\xff\xff\x70\xd9\x74\xb5\x77\x02\x00\x00" +var _transactionsScriptsGet_collection_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xc1\x6a\x1b\x31\x10\x86\xef\x7a\x8a\xbf\x3a\xb4\x2b\x28\xeb\x4b\xe9\xc1\x34\x0d\xa1\x21\xe0\x4b\x08\x8d\x7b\x2a\x3d\x68\xe5\xf1\xee\x50\x79\xb4\x48\xb3\x0d\x34\xe4\xdd\x4b\xec\xee\x7a\x6d\x9c\x39\x8d\x98\x99\x4f\x9f\x18\x2d\x16\x0b\x3c\x86\xcc\xbd\x42\x13\x5a\x52\xdc\xdf\xad\xb1\xba\x2d\x60\x81\x17\xf8\x10\xd2\x20\xfa\xa1\x20\xa4\x18\x29\x28\x27\x31\x86\x77\x7d\xca\x0a\x7b\x9f\xe4\x6e\x90\x96\x9b\x48\xeb\xf4\x9b\xc4\x1a\xe3\x43\xa0\x52\x2a\x1f\xa3\xc3\x76\x10\xec\x3c\x4b\xe5\x37\x9b\x4c\xa5\x2c\x71\x73\x48\x3e\xce\x68\x0f\x43\x13\x39\x3c\x78\xed\x96\x38\xe6\x6e\x89\x9f\x3f\x56\xa2\x9f\x3f\xfd\xc2\xb3\x01\x80\x48\x3a\xda\xe0\xea\xd5\xf4\xe6\x70\x18\xe1\xce\x4c\x6d\x47\xf8\x77\xda\xe2\x6a\x1c\xab\x83\xef\x7d\xc3\x91\x95\xa9\xd4\x4d\xca\x39\x3d\x7d\x79\xff\x7c\xfe\x88\xfa\xdb\x34\xfe\xf2\xb5\xda\x43\xc7\xb8\x64\xbd\x6f\x70\xb8\xbe\x46\xef\x85\x43\x65\xd7\x1d\x4d\xa2\xb6\x0e\x49\x82\x9f\x24\x6b\x4d\x8f\x9a\x59\xda\xca\xb9\xb1\x64\xb1\x49\x54\x20\x49\xd1\xf9\x3f\x04\x8f\x73\x23\x1c\x8d\xe0\x15\xd6\x9d\x48\xbd\xc6\xc8\xba\x24\x38\xbf\xf3\xcd\x41\x5b\x63\xee\xbd\x1b\x8a\x82\x85\x95\x7d\xe4\xbf\x04\xed\x88\xf3\x54\x7d\x62\xed\xa0\x1d\xcf\x3f\x05\xb6\x9c\x8b\xbe\xb3\xee\xff\x1e\x32\xe9\x90\xe5\x74\x15\x75\x4b\xba\xba\x2d\x95\x33\x2f\xe6\x5f\x00\x00\x00\xff\xff\x4a\xa4\xe2\xa2\x79\x02\x00\x00" func transactionsScriptsGet_collection_idsCdcBytes() ([]byte, error) { return bindataRead( @@ -331,11 +331,11 @@ func transactionsScriptsGet_collection_idsCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/scripts/get_collection_ids.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x96, 0xb6, 0x5f, 0x9c, 0x18, 0x3f, 0x5b, 0x50, 0xa, 0xab, 0xfa, 0xc1, 0x67, 0xaa, 0xb, 0x6c, 0xab, 0xa, 0x3, 0x32, 0x84, 0x93, 0x71, 0xbe, 0xe, 0x81, 0x1f, 0xbd, 0x6b, 0x25, 0x16, 0x15}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf9, 0xa7, 0x2a, 0xd9, 0xc, 0x32, 0xf4, 0x52, 0x75, 0x71, 0x66, 0x5e, 0x5d, 0xdc, 0x4a, 0x44, 0x78, 0x5, 0xe8, 0xc5, 0x9d, 0x42, 0xaf, 0x60, 0x55, 0x47, 0x61, 0x35, 0x80, 0x0, 0xd0, 0x45}} return a, nil } -var _transactionsScriptsGet_collection_lengthCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\xd1\x8a\xdb\x3c\x10\x85\xef\xfd\x14\x67\x7d\xf1\x63\xc1\x8f\x1f\x20\x6c\x36\x2c\x69\x03\x85\x36\x94\x36\xf4\x7e\x22\x4f\xe2\xa1\x8a\x64\xa4\x71\xb2\xed\xb2\xef\x5e\xec\xc4\x71\xbc\xdd\xa5\xba\x30\x96\x46\x33\xf3\xe9\x9c\x91\x43\x13\xa2\x22\x5f\x07\xbf\x6a\xfd\x5e\xb6\x8e\x37\xe1\x27\xfb\x3c\x1b\x22\x1f\x9f\xe8\xd0\x38\x5e\xaf\x36\xe3\xd9\x17\x56\xaa\x48\xe9\x87\xf0\x29\xe5\x59\x46\xd6\x72\x4a\x05\x39\x67\xb0\x6b\x3d\x0e\x24\xbe\xa0\xaa\x8a\x9c\xd2\x0c\x8f\xe7\x1f\x33\xc3\x27\xaf\x78\xce\x00\xc0\xb1\x82\xac\x0d\xad\x57\xcc\xb1\x67\x7d\x3c\x6f\x86\x2c\x93\x5d\xaf\xd9\xe0\x1c\x5b\x95\xe0\x3f\x90\x12\xe6\x18\x89\xca\xc8\x29\xb8\x23\x2f\x83\xd7\x48\x56\x3b\x9e\xa2\x3b\x6b\xa3\xe5\xcd\xaf\x86\x67\xf0\xe2\xfe\xc7\x51\xf8\x74\xde\x76\xdf\xfb\x09\x7e\xb9\x5e\x6d\x96\x93\x16\x0f\x85\x31\xa0\x74\x87\x7f\xdc\x5b\xf4\x88\xc3\x5a\x2c\xd0\x90\x17\x5b\xe4\xcb\xd0\xba\x0a\x3e\x28\x2e\x78\xf8\x2b\xb5\x27\x2a\xb1\xa9\xf9\xe6\x35\xb0\x97\x67\xc0\x33\x57\x09\x1a\x20\x5d\xe8\xc0\x5e\xa1\xf5\x5b\x65\x06\xc2\xbe\x1e\xc4\x23\xc4\x8a\x63\x97\xc9\x4f\x6c\x5b\x65\x68\x2d\x09\x1a\xc9\x27\xea\xd3\xf2\x37\x95\xfd\xc6\x3b\xcc\x07\x43\x4a\x4b\x0d\x6d\xc5\x89\x0a\xa7\x72\x1b\x62\x0c\xa7\xfb\xff\x9e\x5f\x8f\x48\x39\xb2\xbc\x3c\x14\x13\x2d\xa6\x96\x95\x4d\xbb\x75\x62\xbf\x92\xd6\xfd\x2d\x73\xa3\x55\xa7\xc0\x30\x07\x79\x69\x83\xb7\x74\x9d\x81\x52\xc3\x77\x8d\xe2\xf7\x85\x31\x43\x28\x47\x15\x38\xf5\xe2\xd6\x74\x64\x10\x5e\x63\x61\xc4\x02\x29\x72\x33\x21\xeb\xd6\x50\xeb\x5d\xca\xdb\xc6\xef\x66\x4f\xd0\x0f\x6d\x52\x88\x17\x15\x72\xf2\xbb\x53\x9d\x25\x5e\xa3\x27\xd1\xfa\x6c\xc4\xd8\x12\x3b\x89\x49\xef\x72\x73\xf1\x23\xb2\xb6\xd1\x4f\x2d\x29\xf7\xac\x9f\xd9\xef\xb5\x2e\x4c\xf6\x92\xfd\x09\x00\x00\xff\xff\xf3\xaf\xa9\x83\xac\x03\x00\x00" +var _transactionsScriptsGet_collection_lengthCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\xd1\x8a\xdb\x3c\x10\x85\xef\xfd\x14\x67\x7d\xf1\x63\xc1\x8f\x1f\x20\x6c\x36\x2c\x69\x03\x85\x36\x94\x36\xf4\x7e\x22\x4f\xe2\xa1\x8a\x64\xa4\x71\xb2\xed\xb2\xef\x5e\xec\xc4\x71\xbc\xdd\xa5\xba\x30\x96\x46\x33\xf3\xe9\x9c\x91\x43\x13\xa2\x22\x5f\x07\xbf\x6a\xfd\x5e\xb6\x8e\x37\xe1\x27\xfb\x3c\x1b\x22\x1f\x9f\xe8\xd0\x38\x5e\xaf\x36\xe3\xd9\x17\x56\xaa\x48\xe9\x87\xf0\x29\xe5\x59\x46\xd6\x72\x4a\x05\x39\x67\xb0\x6b\x3d\x0e\x24\xbe\xa0\xaa\x8a\x9c\xd2\x0c\x8f\xe7\x1f\x33\xc3\x27\xaf\x78\xce\x00\xc0\xb1\x82\xac\x0d\xad\x57\xcc\xb1\x67\x7d\x3c\x6f\x86\x2c\x93\x5d\xaf\xd9\xe0\x1c\x5b\x95\xe0\x3f\x90\x12\xe6\x18\x89\xca\xc8\x29\xb8\x23\x2f\x83\xd7\x48\x56\x3b\x9e\xa2\x3b\x6b\xa3\xe5\xcd\xaf\x86\x67\xf0\xe2\xfe\xc7\x51\xf8\x74\xde\x76\xdf\xfb\x09\x7e\xb9\x5e\x6d\x96\x93\x16\x0f\x85\x31\xa0\x74\x87\x7f\xdc\x5b\xf4\x88\xc3\x5a\x2c\xd0\x90\x17\x5b\xe4\xcb\xd0\xba\x0a\x3e\x28\x2e\x78\xf8\x2b\xb5\x27\x2a\xb1\xa9\xf9\xe6\x35\xb0\x97\x67\xc0\x33\x57\x09\x1a\x20\x5d\xe8\xc0\x5e\xa1\xf5\x5b\x65\x06\xc2\xbe\x1e\xc4\x23\xc4\x8a\x63\x97\xc9\x4f\x6c\x5b\x65\x68\x2d\x09\x1a\xc9\x27\xea\xd3\xf2\x37\x95\xfd\xc6\x3b\xcc\x07\x43\x4a\x4b\x0d\x6d\xc5\x89\x0a\xa7\x72\x1b\x62\x0c\xa7\xfb\xff\x9e\x5f\x8f\x48\x39\xb2\xbc\x3c\x14\x13\x2d\xa6\x96\x95\x4d\xbb\x75\x62\xbf\x92\xd6\xfd\x2d\x73\xa3\x55\xa7\xc0\x30\x07\x79\x69\x83\xb7\x74\x9d\x81\x52\xc3\x77\x8d\xe2\xf7\x85\x31\x43\x28\x47\x15\x38\xf5\xe2\xd6\x74\x64\x10\x5e\x63\x61\xc4\x02\x29\x72\x33\x21\xeb\xd6\x50\xeb\x5d\xca\xdb\xc6\xef\x66\xe7\x67\xfb\x06\xf8\x43\x9b\x14\xe2\x45\x85\x9c\xfc\xee\x74\x67\x89\xd7\xe8\x49\xb4\x3e\x5b\x31\x36\xc5\x4e\x62\xd2\xbb\xdc\x5c\x1c\x89\xac\x6d\xf4\x53\x53\xca\x3d\xeb\x67\xf6\x7b\xad\x0b\x93\xbd\x64\x7f\x02\x00\x00\xff\xff\x37\xd5\x9b\x75\xae\x03\x00\x00" func transactionsScriptsGet_collection_lengthCdcBytes() ([]byte, error) { return bindataRead( @@ -351,11 +351,11 @@ func transactionsScriptsGet_collection_lengthCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/scripts/get_collection_length.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x89, 0x8f, 0x76, 0xaa, 0xa7, 0x8e, 0x35, 0xf, 0x66, 0xe8, 0x67, 0x1b, 0xd, 0x4c, 0x66, 0xe2, 0xc, 0xa2, 0x62, 0xc1, 0xd0, 0xc5, 0x14, 0x75, 0x47, 0x4f, 0xf2, 0xf2, 0x56, 0x1f, 0x68, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0xfe, 0xa7, 0x31, 0xe5, 0x61, 0x3c, 0x99, 0xd0, 0x4e, 0x90, 0xfe, 0x12, 0x68, 0xd3, 0x64, 0xa9, 0x90, 0x21, 0xfe, 0x94, 0x2c, 0x41, 0xc6, 0x62, 0xee, 0x3f, 0xd5, 0x3a, 0xf2, 0x14, 0x2d}} return a, nil } -var _transactionsScriptsGet_collection_length_from_storageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x52\x5d\x8b\xdb\x30\x10\x7c\xf7\xaf\xd8\xf3\xc3\x61\x41\xf1\x0f\x08\xf9\x20\x4d\x1b\x28\xb4\xa1\xb4\xe1\xde\x37\xf2\xc6\x56\x2b\xaf\x82\xb4\xba\x5c\x7b\xdc\x7f\x2f\xfe\x4a\xec\xf4\xca\x51\x3d\x84\x78\x35\x3b\x9a\x9d\x59\x53\x9f\x9c\x17\xd8\x39\xde\x46\x2e\xcd\xc1\xd2\xde\xfd\x24\x86\xa3\x77\x35\xa4\xb7\xe5\x34\xe9\xf1\x5f\x48\xb0\x40\xc1\x07\x43\xe7\xd0\x83\x27\xb5\x0b\xf2\xe3\x13\xd6\x27\x4b\xbb\xed\xbe\x87\x5d\x0b\x69\x92\xa0\xd6\x14\x42\x86\xd6\x2a\x38\x46\x86\x1a\x0d\x67\x58\x14\x9e\x42\x98\xc1\xba\xfb\xa3\x66\xf0\x89\x05\x9e\x13\x00\x00\x4b\x02\xa8\xb5\x8b\x2c\xb0\x80\x92\x64\x1d\xa5\x5a\x77\x85\x39\x46\xa9\xb2\xf7\xce\x7b\x77\x7e\x40\x1b\x49\xc1\x7d\x7f\xb5\x1c\x58\x55\x72\xa1\xd1\xce\x5a\xd2\x62\x1c\x7f\x40\x41\x58\x8c\xb4\xe6\x9e\x82\xb3\x8f\xb4\x71\x2c\x1e\xb5\x34\x33\x65\x4d\x2d\x7a\x4d\xfb\x5f\x27\x9a\x01\x1b\xfb\x0e\x1e\x0d\x9d\xbb\xcf\xe6\x77\x3e\xb1\x20\xdf\x6d\xf7\x9b\xc9\x13\xcb\x4c\x29\xc0\x70\x07\x6f\xe0\x56\xad\xc4\xe1\xac\x56\x70\x42\x36\x3a\x4b\x37\x2e\xda\x02\xd8\x09\xf4\xf2\xe0\xaf\xd6\x56\x51\x0e\xfb\x8a\xc6\xce\xeb\x7e\x0c\x60\xa2\x22\x80\x38\x30\xcd\x55\x4d\x2c\x20\xd5\x6b\x34\x83\xc2\x96\x0f\x0c\x83\xf3\x05\xf9\xa6\x93\x9e\x48\x47\x21\x90\xca\x04\x10\x8f\x1c\xb0\x6d\x4b\x5f\x75\xf6\x1b\x1d\x61\x31\x04\x96\x07\x71\x1e\x4b\xca\x0f\x6d\x44\xf3\xfb\xe7\xdb\x05\xcb\xaf\x32\x5e\x96\xd9\xc4\x86\x66\x7b\x66\x37\x99\x0d\x84\x5f\x51\xaa\x09\x58\x8d\x5c\x6b\xbc\x18\x36\x26\xcd\xb5\x63\x8d\x32\x6c\x43\x2e\xee\xbb\x78\xc3\x65\xa6\xd4\x84\x60\x7c\x86\x9e\x14\x0a\x47\xa1\xf5\xbf\x79\x97\x00\x79\xbc\x32\x57\xe9\xe0\x0e\x3f\x48\x0b\x60\xe7\xee\x09\xa5\x82\xf4\x6d\xfe\x7f\xcf\xf6\x7f\x32\xc7\x03\xd7\x31\x08\x18\x36\x62\xd0\x9a\xdf\x4d\x6a\x64\xfc\xe5\xf6\x6c\xa4\xea\x82\xbc\xbe\x0d\x47\xe3\x83\xdc\xa5\xaa\xcf\xd3\x93\x44\xcf\xd3\x48\xf3\x92\xe4\x33\x71\x29\x55\xa6\x92\x97\xe4\x4f\x00\x00\x00\xff\xff\x72\x2b\xae\x4b\x45\x04\x00\x00" +var _transactionsScriptsGet_collection_length_from_storageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x52\x5d\x8b\xdb\x30\x10\x7c\xf7\xaf\xd8\xf3\xc3\x61\x41\xf1\x0f\x08\xf9\x20\x4d\x1b\x28\xb4\xa1\xb4\xe1\xde\x37\xf2\xc6\x56\x2b\xaf\x82\xb4\xba\x5c\x7b\xdc\x7f\x2f\xfe\x4a\xec\xf4\xca\x51\x3d\x84\x78\x35\x3b\x9a\x9d\x59\x53\x9f\x9c\x17\xd8\x39\xde\x46\x2e\xcd\xc1\xd2\xde\xfd\x24\x86\xa3\x77\x35\xa4\xb7\xe5\x34\xe9\xf1\x5f\x48\xb0\x40\xc1\x07\x43\xe7\xd0\x83\x27\xb5\x0b\xf2\xe3\x13\xd6\x27\x4b\xbb\xed\xbe\x87\x5d\x0b\x69\x92\xa0\xd6\x14\x42\x86\xd6\x2a\x38\x46\x86\x1a\x0d\x67\x58\x14\x9e\x42\x98\xc1\xba\xfb\xa3\x66\xf0\x89\x05\x9e\x13\x00\x00\x4b\x02\xa8\xb5\x8b\x2c\xb0\x80\x92\x64\x1d\xa5\x5a\x77\x85\x39\x46\xa9\xb2\xf7\xce\x7b\x77\x7e\x40\x1b\x49\xc1\x7d\x7f\xb5\x1c\x58\x55\x72\xa1\xd1\xce\x5a\xd2\x62\x1c\x7f\x40\x41\x58\x8c\xb4\xe6\x9e\x82\xb3\x8f\xb4\x71\x2c\x1e\xb5\x34\x33\x65\x4d\x2d\x7a\x4d\xfb\x5f\x27\x9a\x01\x1b\xfb\x0e\x1e\x0d\x9d\xbb\xcf\xe6\x77\x3e\xb1\x20\xdf\x6d\xf7\x9b\xc9\x13\xcb\x4c\x29\xc0\x70\x07\x6f\xe0\x56\xad\xc4\xe1\xac\x56\x70\x42\x36\x3a\x4b\x37\x2e\xda\x02\xd8\x09\xf4\xf2\xe0\xaf\xd6\x56\x51\x0e\xfb\x8a\xc6\xce\xeb\x7e\x0c\x60\xa2\x22\x80\x38\x30\xcd\x55\x4d\x2c\x20\xd5\x6b\x34\x83\xc2\x96\x0f\x0c\x83\xf3\x05\xf9\xa6\x93\x9e\x48\x47\x21\x90\xca\x04\x10\x8f\x1c\xb0\x6d\x4b\x5f\x75\xf6\x1b\x1d\x61\x31\x04\x96\x07\x71\x1e\x4b\xca\x0f\x6d\x44\xf3\xfb\xe7\xdb\x05\xcb\xaf\x32\x5e\x96\xd9\xc4\x86\x66\x7b\x66\x37\x99\x0d\x84\x5f\x51\xaa\x09\x58\x8d\x5c\x6b\xbc\x18\x36\x26\xcd\xb5\x63\x8d\x32\x6c\x43\x2e\xee\xbb\x78\xc3\x65\xa6\xd4\x84\x60\x7c\x86\x9e\x14\x0a\x47\xa1\xf5\xbf\x79\x97\x00\x79\xbc\x32\x57\xe9\xe0\x0e\x3f\x48\x0b\x60\xe7\xee\x09\xa5\x82\xf4\x6d\xfe\x7f\xcf\xf6\x7f\x32\xbb\xf8\x87\x91\xeb\x18\x04\x0c\x1b\x31\x68\xcd\xef\x26\x37\x32\xfe\x72\x7b\x36\x52\x75\x51\x5e\x5f\x87\xa3\xf1\x41\xee\x52\xd5\x27\xea\x49\xa2\xe7\x69\xa8\x79\x49\xf2\x99\xb8\x94\x2a\x53\xc9\x4b\xf2\x27\x00\x00\xff\xff\x03\xf3\xd6\xbd\x47\x04\x00\x00" func transactionsScriptsGet_collection_length_from_storageCdcBytes() ([]byte, error) { return bindataRead( @@ -371,11 +371,11 @@ func transactionsScriptsGet_collection_length_from_storageCdc() (*asset, error) } info := bindataFileInfo{name: "transactions/scripts/get_collection_length_from_storage.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf1, 0xfb, 0xff, 0x63, 0xe4, 0xc7, 0x36, 0x84, 0x78, 0x71, 0x63, 0xcf, 0x2d, 0x72, 0x88, 0xe2, 0x42, 0x6c, 0x62, 0x38, 0x27, 0x7c, 0xe6, 0x35, 0x12, 0x8e, 0xe2, 0xea, 0xbe, 0x15, 0x82, 0x74}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0xd2, 0x84, 0x29, 0x4a, 0xd1, 0xde, 0xae, 0x6d, 0x68, 0xf6, 0xf3, 0x94, 0x52, 0x11, 0x5d, 0x2e, 0xf3, 0x13, 0x92, 0x5e, 0xae, 0xff, 0x99, 0xee, 0xbd, 0x2e, 0xe0, 0xfc, 0x73, 0xb1, 0x45}} return a, nil } -var _transactionsScriptsGet_contract_storage_pathCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\xc1\x8a\x1b\x31\x0c\xbd\xcf\x57\xbc\xcc\xa1\xd8\xb0\xcc\x07\x84\xcd\x86\x25\xa5\xb7\x2d\xa5\x5d\x7a\x57\x6d\x25\x6b\x3a\xb1\x07\x59\x93\x50\x96\xfc\x7b\xf1\x38\x33\xc9\xd2\x43\x75\x08\xd1\xb3\xa4\xf7\xf4\x34\xe1\x38\x24\x51\xb4\x2f\xac\xe4\x49\xe9\x67\xe0\x73\x6e\x9b\x19\x2e\xe9\x77\xce\xa9\x3f\xb1\xb4\x4d\x43\xce\x71\xce\x86\xfa\xde\x62\x3f\x46\x1c\x29\x44\x43\xde\xcb\x1a\xcf\xde\x0b\xe7\xfc\x80\x48\x47\x5e\xe3\x87\x4a\x88\x07\x5b\xfe\x24\xa1\x03\x7f\x23\x7d\xdb\xe2\xbd\x01\x80\x9e\x15\x8a\x0d\x5e\xff\x0c\xfc\xf8\x81\xb8\xfb\xfa\xe5\x75\x97\xfa\x9e\x9d\x86\x14\x3f\x93\xd2\x93\xb1\x4b\xcf\xaf\x24\x92\xce\xec\x77\x29\xaa\x90\x2b\x23\x0e\xac\xcf\xce\xa5\x31\xea\x24\xc3\x76\xee\xfa\x96\xbb\x5a\xfd\xf8\xe9\xfd\x7e\x87\xcb\x93\xa9\xfa\xca\x6f\x9d\x5c\x62\xbb\xc5\x40\x31\x38\xd3\xee\xd2\xd8\x7b\xc4\x34\xb3\xe1\xbe\x1b\xc2\x7b\x16\x8e\x8e\xa1\x09\xfa\xc6\x98\xe9\x3a\xbc\xd0\x6f\x46\x1e\x85\x27\x7c\x90\x74\x0a\x9e\xfd\x52\x30\x11\xc2\xb4\x0b\xe5\x2d\x8a\x66\x47\x3a\x09\xb3\x73\xd2\x5a\x50\xf4\xa0\xea\x2a\x4c\xbb\xbc\x14\xa8\xd3\x54\x0d\x36\xf6\x43\x87\x14\x45\x22\xec\x74\xd5\x5a\xdb\x2c\xce\x9d\x02\x9f\xb1\xf9\xc7\xc0\x4e\xea\x62\x73\x5e\x76\x35\x05\x1b\xc5\x71\xb9\xce\x1a\x31\xf4\x0f\x53\x7b\x4d\xb5\x7a\x16\xf6\xd7\x91\x9b\x52\x70\x3d\x6b\x09\x61\x1d\x25\x16\x70\x82\x2e\x37\x09\xce\x63\x33\x35\xad\x40\x79\x85\xff\x9c\xbd\xb9\x1b\xe6\x7c\x97\x6f\x1f\x51\x73\x69\xfe\x06\x00\x00\xff\xff\xdf\x2c\x76\x8e\xb4\x02\x00\x00" +var _transactionsScriptsGet_contract_storage_pathCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\xc1\x8a\xdb\x40\x0c\xbd\xfb\x2b\x5e\x7c\x28\x1e\x58\xfc\x01\x61\xb3\x61\x49\xe9\x6d\x4b\x69\x97\xde\xd5\x19\x25\x3b\x74\x32\x13\x34\x72\x42\x59\xf2\xef\x65\x3c\xb1\xe3\xd2\xc3\xea\x60\xac\x67\x49\xef\xe9\xc9\xfe\x78\x4a\xa2\x68\x5f\x58\xc9\x91\xd2\x4f\xcf\x97\xdc\x36\x13\x5c\xd2\xef\x9c\x53\x38\xb3\xb4\x4d\x43\xd6\x72\xce\x1d\x85\x60\xb0\x1f\x22\x8e\xe4\x63\x47\xce\xc9\x1a\xcf\xce\x09\xe7\xfc\x80\x48\x47\x5e\xe3\x87\x8a\x8f\x07\x53\x5e\x92\xd0\x81\xbf\x91\xbe\x6d\xf1\xde\x00\x40\x60\x85\x62\x83\xd7\x3f\x27\x7e\xfc\x87\xb8\xff\xfa\xe5\x75\x97\x42\x60\xab\x3e\xc5\xcf\xa4\xf4\xd4\x99\xb9\xe7\x57\x12\x49\x17\x76\xbb\x14\x55\xc8\x96\x11\x07\xd6\x67\x6b\xd3\x10\x75\x94\x61\x7a\x7b\xfb\x96\xfb\x5a\xfd\xf8\xe9\x7d\xb9\xc3\xf5\xa9\xab\xfa\xca\xb3\x4e\x2e\xb1\xdd\xe2\x44\xd1\xdb\xae\xdd\xa5\x21\x38\xc4\x34\xb1\x61\xd9\x0d\xe1\x3d\x0b\x47\xcb\xd0\x04\x7d\x63\x4c\x74\x3d\x5e\xe8\x37\x23\x0f\xc2\x23\x7e\x92\x74\xf6\x8e\xdd\x5c\x30\x12\xa2\x9d\x19\xef\x51\x24\x5b\xd2\x51\x97\x99\x92\x16\x14\x1d\xa8\x7a\x8a\x76\xc6\x0b\xd2\x6b\xaa\xee\x76\x66\x59\x2f\x45\x8d\x08\x5b\x5d\xb5\xc6\x34\xb3\x6b\x67\xcf\x17\x6c\xfe\x33\xaf\x97\xba\xd4\x94\x97\x3d\xbb\x82\x0d\x62\xb9\x5c\x66\x8d\xe8\xc3\xc3\xd8\x5e\x53\xad\x7e\xf9\xfd\x6d\xe4\xa6\x14\xdc\x4e\x5a\x42\x58\x07\x89\x05\x1c\xa1\xeb\x5d\x82\x75\xd8\x8c\x4d\x2b\x50\x5e\xe1\x83\x93\x37\x8b\x61\xd6\xf5\xf9\xfe\x03\x35\xd7\xe6\x6f\x00\x00\x00\xff\xff\xf0\xc3\x42\x1c\xb0\x02\x00\x00" func transactionsScriptsGet_contract_storage_pathCdcBytes() ([]byte, error) { return bindataRead( @@ -391,7 +391,7 @@ func transactionsScriptsGet_contract_storage_pathCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/scripts/get_contract_storage_path.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0x9e, 0xdf, 0xad, 0x40, 0x7a, 0xbe, 0x18, 0x0, 0x5, 0x6a, 0x87, 0xf1, 0xc8, 0x33, 0x9c, 0xe0, 0x8d, 0x43, 0xaf, 0xff, 0x7, 0xb3, 0xdf, 0x5d, 0x11, 0x34, 0x33, 0x40, 0xa0, 0xed, 0x9f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x36, 0xaa, 0x8c, 0x1f, 0x88, 0x98, 0xbb, 0x63, 0xe6, 0x3d, 0x85, 0xad, 0xc8, 0x67, 0xa8, 0xb7, 0x90, 0x93, 0xd8, 0xa0, 0x86, 0x81, 0x85, 0x7f, 0x99, 0xe, 0x72, 0xe, 0x7b, 0x93, 0xed, 0x84}} return a, nil } @@ -415,7 +415,7 @@ func transactionsScriptsGet_contract_viewsCdc() (*asset, error) { return a, nil } -var _transactionsScriptsGet_nft_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x58\x4f\x6f\xdb\xb8\x12\xbf\xfb\x53\x4c\x7c\x78\xb0\x80\x3e\xe5\x1d\x1e\xf6\x10\x54\x0d\xfa\x27\x59\x14\x48\x8d\x22\x71\x7b\x29\x7a\xa0\xa5\xb1\x3d\x88\x4c\x79\x49\x2a\xa9\xb7\xc8\x77\x5f\x90\x94\x44\x52\x22\xed\x6c\x80\xdd\xca\x33\xbf\x21\x87\xe4\xfc\x66\x38\xbc\xbc\xbc\x84\xd5\x8e\x24\xc8\x52\xd0\x41\xc1\x16\x95\x04\x56\xd7\xa0\x76\x08\x4f\x84\xcf\xff\x5d\x33\x89\x15\xec\x51\xb1\x8a\x29\x06\x4c\xca\xa6\x24\xa6\xb0\x82\x67\x52\x3b\x83\x93\x07\x2c\x69\x43\x58\xc1\xf2\x76\x35\xd3\x43\x32\x5e\x81\x40\xd5\x0a\x2e\x81\x14\x30\x09\x0c\x24\xf1\x6d\x8d\x20\x95\x68\x4b\x35\x9b\xd1\xfe\xd0\x08\x05\xf3\x9b\x5f\x6c\x7f\xa8\x71\x79\xbb\x9a\x0f\xb2\x2f\xdd\x6c\xdf\x09\x9f\xe5\x7c\x36\x63\x65\x89\x52\x2e\x58\x5d\x67\x9d\xbd\x9e\x09\x7e\xcf\x00\x00\x7c\x65\x8d\x0a\x38\xdb\xe3\x15\x3c\x28\x41\x7c\x1b\x05\x54\x68\x17\x4b\x0d\x3f\x89\x53\xbb\x76\xbf\xe6\x8c\xea\x93\xa8\xe6\x99\xa3\xb8\x82\xf7\x55\x25\x50\xca\xf8\x40\xc7\xc3\x69\x8f\x44\x73\x64\xb5\x22\x94\x57\xf0\x23\x58\x7b\x7e\x6f\x34\xc7\x9f\x51\x33\xfc\xa5\x50\x70\x56\x7f\xbb\xbf\x3b\x39\xbc\x44\x41\xac\x5e\xb6\xfb\xb5\xf6\xf4\xdb\x67\xae\xfe\xf8\x7f\x14\x58\x36\x75\x8d\xa5\xde\x98\xaf\xed\xba\xa6\xf2\x2b\x53\xbb\x2b\x70\xdf\x67\x8c\x1e\x54\x23\xd8\x16\xad\x95\xf7\xe3\x55\x73\x9d\x5c\xc1\x18\x7c\x47\xfc\x11\xab\xd5\xb9\x7d\x75\x66\xcb\x73\x41\xe1\xa0\x9f\x5e\x19\x1e\xce\xe2\xe6\x95\xe7\xe0\xed\xd4\x5f\x2d\x13\xf8\x79\xcf\xb6\xaf\xf5\xea\x03\xe3\x1c\xc5\xbf\xb1\x78\xd0\x3c\xad\xe5\x15\xfc\xb6\xf0\xde\xec\x25\x1e\x4b\x15\xd9\x15\x87\xf1\x77\x63\xc5\xf1\xb0\x16\x8c\x94\x1c\x5b\xac\x8c\x34\x6a\xb0\xc7\x8a\xd8\xc4\xe0\x8b\x91\x5e\x47\x2d\x6a\x2a\x91\x4b\x1c\x9b\xdc\x59\x71\xdc\x66\x2d\xa8\xda\x62\x75\xf6\xc4\xe5\x71\xbf\x6e\x4e\x73\x5b\x35\x8f\xc8\xbf\xdd\x7f\x1e\x40\x06\x45\x9c\xd4\xc2\x7c\xe9\x3f\x3f\xdd\xbc\x19\xa4\x91\x1c\xe3\x94\x93\xc4\xe2\x54\x61\x36\x71\x72\xbe\x51\x7e\xb4\x3b\xc5\xf9\xd4\xe1\xb0\x91\x7c\xe1\x94\xb1\x24\xe1\xb4\xe7\x32\x43\x0c\x99\x4a\x07\xe9\x51\xa7\x5e\x9d\x27\x7e\x0c\xbb\x8c\x9e\xc9\x49\x8a\xc7\x60\x11\x5e\x47\xd7\x39\x25\x73\x0c\x16\x61\x70\x74\xb4\x14\x6d\xbd\x73\x3c\xc9\x55\x2f\xce\x4e\x10\xd4\xa1\x3a\x56\x46\x49\xe9\x50\x3d\x13\xe3\x44\x74\xb8\x08\xfb\xbc\x18\x0b\x28\xe7\x39\x3a\xe6\x99\x16\x66\x5d\x7d\xb7\xc1\x59\x6f\x72\xcd\x34\x28\x0c\xe1\x42\x85\x47\x36\x28\x7c\xea\x85\xb0\x81\x76\x50\x38\x0a\x86\x10\x43\x3f\x28\x2c\x0d\x47\xd6\xc7\x83\x99\xdd\x12\x31\xd4\x0d\x24\x84\xc2\x11\x32\x84\x78\xdc\x83\xc2\x67\x62\x08\xf3\x59\x08\x45\x40\xca\x10\x18\x23\x24\x14\x51\x9e\xa6\x0c\x3d\x4a\x06\x96\xe3\xca\x9d\x9c\x33\x32\xdf\x69\x03\xc7\xde\x88\xa9\x53\xa6\x06\x59\xda\x00\x08\x05\x29\xf0\xa7\x20\x28\xa2\xf2\x94\xe9\x4d\x70\x56\x51\x79\x72\x4f\x5d\x2e\x08\xf7\xd4\xc9\x53\xa6\x5e\x7e\x08\x4c\x3d\x79\x72\x56\x9b\x33\xc2\x19\xad\x6c\x14\x85\x36\x45\xe8\x08\xf4\x0a\xbb\x8b\x71\x93\x1a\x34\x3d\x5c\x11\x1f\x94\x36\x4f\x40\xd1\x25\x8c\x50\xd9\xa5\x07\x28\xfa\x44\x11\xaa\xbd\xac\x00\x85\x9f\x23\x46\xd1\x6f\xf2\x83\x8e\x7b\xf3\x31\x72\xae\x4b\x12\xda\xbd\xee\xd3\x00\x5e\x66\x2f\x61\x87\xb0\x69\x39\xec\x19\xf1\x05\xb3\x55\xd4\x95\x53\xa0\xaa\x2f\x6d\xd9\x95\xd7\x42\xe8\x5a\xcf\xca\xb2\x69\xb9\x82\x42\xf7\x40\xef\xed\x8f\x7e\x84\x6c\x36\xc0\xbc\x40\xd2\xed\x50\x01\xae\x7f\xc9\x05\xca\xa6\x7e\xc2\x8f\x0d\x57\x82\x95\x4a\xa7\xc8\x85\x96\xb5\xa2\x44\x5b\xb2\x38\xd5\x6f\x4c\x5b\x65\x7f\xea\xff\xbf\x0d\x33\xea\xf2\x76\xf5\x31\x98\xe2\xdd\x22\xcb\x80\xc9\x0b\x38\x83\xbb\x1e\x76\x4b\xff\x5d\x5f\xc3\x81\x71\x2a\x17\xf3\x8f\x4d\x5b\x57\xc0\x1b\x05\x9d\x7b\x30\x31\x35\x1e\xe5\xb0\xda\xa1\xb7\x1a\x28\xbb\x65\x00\x47\xac\x24\xa8\x06\x48\xab\xf6\xc8\x95\xe9\xfa\xa6\xc3\xf4\x1e\x9a\xf1\x80\x38\x34\xa2\x42\xa1\x2d\xf1\x17\x96\xad\x42\x50\xba\xd5\x54\x82\x71\xc9\x8c\xd9\x3c\x33\x5e\x47\x76\x17\x8a\xfe\x44\xf2\x92\x1d\xd8\x9a\x6a\xd2\x49\x35\x5f\x37\x42\x34\xcf\x6f\xff\xe3\x6d\xbb\xf3\xe2\xdd\x22\xd8\x84\xf0\xac\xf2\x43\x98\x11\x33\x6f\x93\xf4\xd2\xfb\x00\x98\xe7\x65\xc3\x4b\x36\x1c\x7e\xae\x1a\x5b\x95\x16\x59\xd6\xab\xe6\x50\x35\x28\xcd\xae\xee\xd8\x13\x02\x83\x65\xc3\x6f\x5b\xbe\xa5\x75\x8d\x2b\x1d\x9d\xe0\xbc\x02\xa6\xa0\x5b\xa8\xff\xd7\x8f\x95\xf4\xd2\x9f\x38\x69\x1d\xb8\xbe\x6f\xa5\x32\xd7\x53\x62\x35\xfd\xad\xb7\x1b\x49\x0c\xda\xae\x5f\x27\xe9\x6f\xf3\x86\x84\x54\x17\xf3\xcc\x0b\x71\xbe\x51\x41\x26\xe9\xf6\x7c\x79\xbb\x5a\x50\xe5\x3c\x89\x85\x98\x45\x02\x03\x81\x1b\x14\xc8\x4b\xd4\xa7\xcf\xb8\x1f\x57\xfa\xbf\xe1\xe9\x80\xaa\x62\xd8\x6f\xaa\xfc\x15\x77\x0e\x5d\x5e\xc2\x9f\x68\x03\x6e\xcd\x24\x95\x50\x91\x3c\xd4\xec\x08\xc4\x37\x8d\xd8\x33\xbb\x88\x46\xd8\x85\x2d\x6f\x57\xc3\x32\x7a\x60\x31\x62\xce\x16\xd5\x27\xab\x5a\xf0\x8d\xca\x2e\x26\xf3\xd8\x0a\x1e\x9b\x01\x61\x4b\x4f\xc8\x83\x69\x3a\xb4\x1e\x3b\x36\xd5\x7d\x7f\x1d\xf0\x27\x1b\x35\xef\x31\x3b\xaf\xd6\x8c\x2d\xbd\x80\x49\x2f\x31\x64\x67\xb0\x5e\xef\x9c\x1d\x24\xe5\xff\x84\xe5\x63\x6f\xf8\x46\x75\x17\xcf\xd4\x10\x9d\x5a\x8e\xa6\xf7\xef\x36\x29\xd3\x07\x83\x19\x4f\x19\x36\x49\xf6\x52\x66\xaf\x6e\x17\x79\x47\xda\x60\x95\xab\xe1\xea\xa6\xc7\xd4\xbf\x16\xd1\x8c\x9e\xbc\x7a\x43\x01\xbf\x6d\xdb\xac\xe3\xe0\x11\x75\x6c\x4c\x8f\x21\x97\xd6\x3e\x7f\xc4\xa3\xf4\x2e\xaf\x93\x09\x7e\x3c\xe2\xf1\x67\x78\x29\x09\x47\x30\x80\x8b\xbc\x15\x75\x57\xe1\x06\x67\x87\x0a\x3d\xd9\x2a\x7b\xad\x1f\x6f\xd5\x50\xb4\x27\x78\x7b\xc3\x37\xf8\x01\xed\xaa\xf8\x04\xde\xdd\xf4\x2d\x7e\x30\xe8\x2a\xf9\x90\xf8\x63\xa7\xff\xfd\xcb\x87\x10\xe5\xfb\x68\x1f\x09\x35\xa1\xc6\x1d\x75\x47\x5f\x73\xeb\x4f\xf4\xd5\x3d\xc4\x13\x46\x9b\xec\x1e\x37\x88\xf2\x56\xd0\x22\x9b\x74\xdd\xe6\x9f\x48\xcf\xdd\x7d\xe4\x54\x21\x57\xb4\x21\x1f\xe4\xf5\xdf\x5e\x26\x08\x99\x9f\x25\x5a\x70\xef\x87\x3e\xeb\x54\x2f\x3e\x26\x4a\xce\xcd\xe7\xb9\xe6\x7c\x42\x6f\xaf\xb4\x9c\x6d\xd7\xa7\xc6\xf2\x75\x0d\x7c\x6a\x56\x27\x8c\x6e\xe3\xa9\x3e\x3f\x35\xa4\xc3\x9c\x19\xd2\x36\xa3\x53\xb6\x85\xa1\x95\x78\x1e\x98\x9a\x45\xc3\x2d\xf1\x6a\x30\xb5\x4e\x1e\x7a\xe2\x41\x21\x92\x24\x9c\x3a\xdf\x50\x8d\xe3\x68\x4e\x3c\x39\x4c\x07\x5a\x3b\xf5\x99\x81\x86\xcc\x38\x11\x45\x5e\x25\xc2\x8a\x90\xeb\x32\x7a\x47\x52\xfd\xf8\xdf\xcf\xe9\xd3\x84\x8a\x3f\x46\x74\xff\x4e\x9f\x1f\xfa\x8f\xc4\x83\xc3\x28\x1f\x8d\x4e\xb8\x7f\x7e\x18\xa3\xac\x3c\xf6\x1c\x31\x46\xb6\x82\xec\x26\xd9\x1b\xe4\xec\x65\xf6\x4f\x00\x00\x00\xff\xff\xe8\x16\x6d\x9b\x41\x19\x00\x00" +var _transactionsScriptsGet_nft_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x58\x4f\x6f\xdb\xb8\x12\xbf\xfb\x53\x4c\x7c\x78\xb0\x80\x3e\xe5\x1d\x1e\xf6\x10\x54\x0d\xfa\x27\x59\x14\x48\x8d\x22\x71\x7b\x29\x7a\xa0\xa5\xb1\x3d\x88\x4c\x79\x49\x2a\xa9\xb7\xc8\x77\x5f\x90\x94\x44\x52\x22\xed\x6c\x80\xdd\xca\x33\xbf\x21\x87\xe4\xfc\x66\x38\xbc\xbc\xbc\x84\xd5\x8e\x24\xc8\x52\xd0\x41\xc1\x16\x95\x04\x56\xd7\xa0\x76\x08\x4f\x84\xcf\xff\x5d\x33\x89\x15\xec\x51\xb1\x8a\x29\x06\x4c\xca\xa6\x24\xa6\xb0\x82\x67\x52\x3b\x83\x93\x07\x2c\x69\x43\x58\xc1\xf2\x76\x35\xd3\x43\x32\x5e\x81\x40\xd5\x0a\x2e\x81\x14\x30\x09\x0c\x24\xf1\x6d\x8d\x20\x95\x68\x4b\x35\x9b\xd1\xfe\xd0\x08\x05\xf3\x9b\x5f\x6c\x7f\xa8\x71\x79\xbb\x9a\x0f\xb2\x2f\xdd\x6c\xdf\x09\x9f\xe5\x7c\x36\x63\x65\x89\x52\x2e\x58\x5d\x67\x9d\xbd\x9e\x09\x7e\xcf\x00\x00\x7c\x65\x8d\x0a\x38\xdb\xe3\x15\x3c\x28\x41\x7c\x1b\x05\x54\x68\x17\x4b\x0d\x3f\x89\x53\xbb\x76\xbf\xe6\x8c\xea\x93\xa8\xe6\x99\xa3\xb8\x82\xf7\x55\x25\x50\xca\xf8\x40\xc7\xc3\x69\x8f\x44\x73\x64\xb5\x22\x94\x57\xf0\x23\x58\x7b\x7e\x6f\x34\xc7\x9f\x51\x33\xfc\xa5\x50\x70\x56\x7f\xbb\xbf\x3b\x39\xbc\x44\x41\xac\x5e\xb6\xfb\xb5\xf6\xf4\xdb\x67\xae\xfe\xf8\x7f\x14\x58\x36\x75\x8d\xa5\xde\x98\xaf\xed\xba\xa6\xf2\x2b\x53\xbb\x2b\x70\xdf\x67\x8c\x1e\x54\x23\xd8\x16\xad\x95\xf7\xe3\x55\x73\x9d\x5c\xc1\x18\x7c\x47\xfc\x11\xab\xd5\xb9\x7d\x75\x66\xcb\x73\x41\xe1\xa0\x9f\x5e\x19\x1e\xce\xe2\xe6\x95\xe7\xe0\xed\xd4\x5f\x2d\x13\xf8\x79\xcf\xb6\xaf\xf5\xea\x03\xe3\x1c\xc5\xbf\xb1\x78\xd0\x3c\xad\xe5\x15\xfc\xb6\xf0\xde\xec\x25\x1e\x4b\x15\xd9\x15\x87\xf1\x77\x63\xc5\xf1\xb0\x16\x8c\x94\x1c\x5b\xac\x8c\x34\x6a\xb0\xc7\x8a\xd8\xc4\xe0\x8b\x91\x5e\x47\x2d\x6a\x2a\x91\x4b\x1c\x9b\xdc\x59\x71\xdc\x66\x2d\xa8\xda\x62\x75\xf6\xc4\xe5\x71\xbf\x6e\x4e\x73\x5b\x35\x8f\xc8\xbf\xdd\x7f\x1e\x40\x06\x45\x9c\xd4\xc2\x7c\xe9\x3f\x3f\xdd\xbc\x19\xa4\x91\x1c\xe3\x94\x93\xc4\xe2\x54\x61\x36\x71\x72\xbe\x51\x7e\xb4\x3b\xc5\xf9\xd4\xe1\xb0\x91\x7c\xe1\x94\xb1\x24\xe1\xb4\xe7\x32\x43\x0c\x99\x4a\x07\xe9\x51\xa7\x5e\x9d\x27\x7e\x0c\xbb\x8c\x9e\xc9\x49\x8a\xc7\x60\x11\x5e\x47\xd7\x39\x25\x73\x0c\x16\x61\x70\x74\xb4\x14\x6d\xbd\x73\x3c\xc9\x55\x2f\xce\x4e\x10\xd4\xa1\x3a\x56\x46\x49\xe9\x50\x3d\x13\xe3\x44\x74\xb8\x08\xfb\xbc\x18\x0b\x28\xe7\x39\x3a\xe6\x99\x16\x66\x5d\x7d\xb7\xc1\x59\x6f\x72\xcd\x34\x28\x0c\xe1\x42\x85\x47\x36\x28\x7c\xea\x85\xb0\x81\x76\x50\x38\x0a\x86\x10\x43\x3f\x28\x2c\x0d\x47\xd6\xc7\x83\x99\xdd\x12\x31\xd4\x0d\x24\x84\xc2\x11\x32\x84\x78\xdc\x83\xc2\x67\x62\x08\xf3\x59\x08\x45\x40\xca\x10\x18\x23\x24\x14\x51\x9e\xa6\x0c\x3d\x4a\x06\x96\xe3\xca\x9d\x9c\x33\x32\xdf\x69\x03\xc7\xde\x88\xa9\x53\xa6\x06\x59\xda\x00\x08\x05\x29\xf0\xa7\x20\x28\xa2\xf2\x94\xe9\x4d\x70\x56\x51\x79\x72\x4f\x5d\x2e\x08\xf7\xd4\xc9\x53\xa6\x5e\x7e\x08\x4c\x3d\x79\x72\x56\x9b\x33\xc2\x19\xad\x6c\x14\x85\x36\x45\xe8\x08\xf4\x0a\xbb\x8b\x71\x93\x1a\x34\x3d\x5c\x11\x1f\x94\x36\x4f\x40\xd1\x25\x8c\x50\xd9\xa5\x07\x28\xfa\x44\x11\xaa\xbd\xac\x00\x85\x9f\x23\x46\xd1\x6f\xf2\x83\x8e\x7b\xf3\x31\x72\xae\x4b\x12\xda\xbd\xee\xd3\x00\x5e\x66\x2f\x61\x87\xb0\x69\x39\xec\x19\xf1\x05\xb3\x55\xd4\x95\x53\xa0\xaa\x2f\x6d\xd9\x95\xd7\x42\xe8\x5a\xcf\xca\xb2\x69\xb9\x82\x42\xf7\x40\xef\xed\x8f\x7e\x84\x6c\x36\xc0\xbc\x40\xd2\xed\x50\x01\xae\x7f\xc9\x05\xca\xa6\x7e\xc2\x8f\x0d\x57\x82\x95\x4a\xa7\xc8\x85\x96\xb5\xa2\x44\x5b\xb2\x38\xd5\x6f\x4c\x5b\x65\x7f\xea\xff\xbf\x0d\x33\xea\xf2\x76\xf5\x31\x98\xe2\xdd\x22\xcb\x80\xc9\x0b\x38\x83\xbb\x1e\x76\x4b\xff\x5d\x5f\xc3\x81\x71\x2a\x17\xf3\x8f\x4d\x5b\x57\xc0\x1b\x05\x9d\x7b\x30\x31\x35\x1e\xe5\xb0\xda\xa1\xb7\x1a\x28\xbb\x65\x00\x47\xac\x24\xa8\x06\x48\xab\xf6\xc8\x95\xe9\xfa\xa6\xc3\xf4\x1e\x9a\xf1\x80\x38\x34\xa2\x42\xa1\x2d\xf1\x17\x96\xad\x42\x50\xba\xd5\x54\x82\x71\xc9\x8c\xd9\x3c\x33\x5e\x47\x76\x17\x8a\xfe\x44\xf2\x92\x1d\xd8\x9a\x6a\xd2\x49\x35\x5f\x37\x42\x34\xcf\x6f\xff\xe3\x6d\xbb\xf3\xe2\xdd\x22\xd8\x84\xf0\xac\xf2\x43\x98\x11\x33\x6f\x93\xf4\xd2\xfb\x00\x98\xe7\x65\xc3\x4b\x36\x1c\x7e\xae\x1a\x5b\x95\x16\x59\xd6\xab\xe6\x50\x35\x28\xcd\xae\xee\xd8\x13\x02\x83\x65\xc3\x6f\x5b\xbe\xa5\x75\x8d\x2b\x1d\x9d\xe0\xbc\x02\xa6\xa0\x5b\xa8\xff\xd7\x8f\x95\xf4\xd2\x9f\x38\x69\x3d\xb7\xe7\xd6\x3b\xbf\x6f\xa5\x32\x17\x54\x62\x35\xfd\xad\x37\x1c\x49\x0c\xda\xae\x63\x27\xe9\x6f\xf4\x86\x84\x54\x17\xf3\xcc\x0b\x72\xbe\x51\x41\x2e\xe9\x76\x7d\x79\xbb\x5a\x50\xe5\x7c\x89\x05\x99\x45\x02\x03\x81\x1b\x14\xc8\x4b\xd4\xe7\xcf\xb8\x1f\x59\xfa\x3f\xe3\x0a\x55\x6e\xb7\xa9\xf2\xd7\xdb\x39\x73\x79\x09\x7f\xa2\x0d\xb7\x35\x93\x54\x42\x45\xf2\x50\xb3\x23\x10\xdf\x34\x62\xcf\xec\x02\x1a\x61\x17\xb5\xbc\x5d\x0d\x4b\xe8\x81\xc5\x88\x37\x5b\x54\x9f\xac\x6a\xc1\x37\x2a\xbb\x98\xcc\x63\xeb\x77\x6c\x06\x84\x2d\x3d\x21\x0f\xa6\xe9\xd0\x7a\xec\xd8\x54\xf7\xfd\x65\xc0\x9f\x6c\xd4\xba\xc7\xec\xbc\x4a\x33\xb6\xf4\xc2\x25\xbd\xc4\x90\x9b\xc1\x7a\xbd\x33\x76\x90\x94\xff\x13\x8e\x8f\xbd\xe1\x1b\xd5\x5d\x3b\x53\x43\x74\x6a\x39\x9a\xde\xbf\xd9\xa4\x4c\x1f\x0c\x66\x3c\x65\xd8\x22\xd9\x2b\x99\xbd\xb8\x5d\xe4\x1d\x65\x83\x55\xae\x86\x8b\x9b\x1e\x53\xff\x5a\x44\xf3\x79\xf2\xe2\x0d\x05\xfc\xb6\x4d\xb3\x8e\x83\x47\xd4\xb1\x31\x3d\x86\x5c\x5a\xfb\xfc\x11\x8f\xd2\xbb\xba\x4e\x26\xf8\xf1\x88\xc7\x9f\xe1\x95\x24\x1c\xc1\x00\x2e\xf2\x56\xd4\x5d\x7d\x1b\x9c\x1d\xea\xf3\x64\xab\xec\xa5\x7e\xbc\x55\x43\xc9\x9e\xe0\xed\xfd\xde\xe0\x07\xb4\xab\xe1\x13\x78\x77\xcf\xb7\xf8\xc1\xa0\xab\xe3\x43\xda\x8f\x9d\xfe\xf7\x2f\x1f\x42\x94\xef\xa3\x7d\x22\xd4\x84\x1a\xf7\xd3\x1d\x7d\xcd\x9d\x3f\xd1\x55\xf7\x10\x4f\x18\x6d\xb1\x7b\xdc\x20\xca\x5b\x41\x8b\x6c\xd2\x73\x9b\x7f\x22\x1d\x77\xf7\x91\x53\x85\x5c\xd1\x86\x7c\x90\xd7\x7d\x7b\x99\x20\x64\x7e\x96\x68\xc0\xbd\x1f\xfa\xac\x53\x9d\xf8\x98\x28\x39\x37\x9f\xe7\x5a\xf3\x09\xbd\xbd\xc2\x72\xb6\x59\x9f\x1a\xcb\xd7\xb5\xef\xa9\x59\x9d\x30\xba\x8d\xa7\xba\xfc\xd4\x90\x0e\x73\x66\x48\xdb\x8a\x4e\xd9\x16\x86\x56\xe2\x71\x60\x6a\x16\x0d\xb7\xc4\x9b\xc1\xd4\x3a\x79\xe8\x89\xe7\x84\x48\x92\x70\xea\x7c\x43\x35\x8e\xa3\x39\xf1\xe0\x30\x1d\x68\xed\xd4\x67\x06\x1a\x32\xe3\x44\x14\x79\x93\x08\x2b\x42\xae\xcb\xe8\x1d\x49\xf5\xe3\x7f\x3f\xa7\x0f\x13\x2a\xfe\x14\xd1\xfd\x3b\x7d\x7c\xe8\x3f\x12\xcf\x0d\xa3\x7c\x34\x3a\xe1\xfe\xf1\x61\x8c\xb2\xf2\xd8\x63\xc4\x18\xd9\x0a\xb2\x9b\x64\xef\x8f\xb3\x97\xd9\x3f\x01\x00\x00\xff\xff\x6c\xae\xf4\x95\x3f\x19\x00\x00" func transactionsScriptsGet_nft_metadataCdcBytes() ([]byte, error) { return bindataRead( @@ -431,11 +431,11 @@ func transactionsScriptsGet_nft_metadataCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/scripts/get_nft_metadata.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0x2e, 0x2e, 0x18, 0xe5, 0x67, 0xa5, 0xd, 0x6, 0x2e, 0x71, 0xf6, 0xe5, 0x68, 0xab, 0x88, 0xe1, 0x65, 0x5b, 0x6b, 0xc9, 0xe7, 0xe4, 0x87, 0x1a, 0x3b, 0xc7, 0x90, 0xd4, 0xcd, 0xe6, 0xa1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcd, 0x13, 0xe5, 0xd0, 0x6b, 0xb0, 0xda, 0xc8, 0xed, 0x7e, 0x16, 0xf2, 0x98, 0xb0, 0x3f, 0xf4, 0x9, 0x93, 0x6, 0x9c, 0xb3, 0x77, 0xe8, 0x14, 0xc1, 0xcd, 0xb1, 0xc9, 0xf2, 0xc5, 0x43, 0x8}} return a, nil } -var _transactionsScriptsGet_nft_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x57\xc1\x6e\xe3\x38\x0f\xbe\xe7\x29\x98\x1c\x7e\xc4\x40\xe1\xd3\x8f\x3d\x04\xe3\x29\x66\x3b\x2d\x30\xc0\x6c\x30\x68\x33\x7b\x19\xcc\x41\xb1\x99\x84\xa8\x22\x65\x25\xb9\x6d\xb6\xe8\xbb\x2f\x64\xc7\x96\x94\x48\x76\xdb\x43\x11\x91\x1f\x29\x9a\xfc\x48\xd3\xb4\x3f\x48\x65\x60\x76\xfb\xc2\xf6\x07\x8e\xcb\xbb\xd5\x6c\xd2\xc9\xfe\x42\xc3\x2a\x66\xd8\xdf\x84\xcf\xda\x89\xed\xf1\x1e\xb5\xe4\x4f\xa8\x66\x93\x09\x2b\x4b\xd4\x7a\xce\x38\xcf\x40\x1b\x55\x97\x06\x96\x77\x2b\x0b\x82\xd7\x09\x00\x80\x0f\xe0\x68\x80\xaa\x05\xfc\xfc\x26\xcc\x1f\xff\x8f\xaa\xeb\x7a\x04\x20\xd8\x1e\x17\xf0\x60\x14\x89\x6d\x14\x50\xa1\x2e\x15\x1d\x0c\x49\x31\x88\x33\xbb\x7a\xbf\x16\x8c\xf8\x20\x4a\xc9\x23\xe3\x86\x50\x2f\xe0\x57\x90\x91\xfc\xbe\xd1\x1c\x7f\x47\xcd\xf0\xc5\xa0\x12\x8c\xff\xbc\xff\x3e\xe8\xbe\x94\x9c\x63\x69\x63\xfd\x51\xaf\x39\x95\x3f\x98\xd9\x2d\xc0\xfd\x1e\x31\x7a\x30\x52\xb1\x2d\xb6\x56\xde\xe1\x5d\x77\x7d\x28\xb0\xef\x24\x1e\xb1\x5a\x1d\x0f\xc3\xc9\x77\x66\xcb\xb1\x3a\x39\xe8\xd7\x77\x56\xcc\x59\xdc\x7e\x38\xbd\x0f\xff\xd4\x4c\xe1\xb7\x3d\xdb\xbe\x37\xaa\x3f\x99\x10\xa8\x3e\x62\xf1\x20\x4b\x62\x5c\x2f\xe0\xb5\x85\x77\x66\x6f\x71\xfe\x29\x46\x46\x2f\x20\x64\xd5\xaa\x91\x4e\x1a\x0b\x12\x64\xe6\xcd\xaf\xe6\xd4\xf7\xc5\x55\x2f\xf3\xbb\xc5\x49\xfd\x16\x71\xd2\x48\x5f\x38\xe5\x45\x33\x38\xd5\x78\x07\x38\x6c\x84\xf6\x4e\x39\xc6\xf5\x18\x32\x45\xf0\xb4\xd7\xf1\x7b\x2f\xa9\x1c\xc3\x2e\xa3\x49\x1c\x24\x6d\x0c\x16\x61\x6a\xf4\x39\x2f\xe9\x19\x83\x45\x38\x19\xf5\x96\x22\xa2\x57\xf0\x21\xf6\x59\x40\x76\x9a\xdf\xf6\x4f\x23\xdf\xe4\x54\x41\x01\x54\x85\x42\x4b\x40\x28\x1a\x1e\x86\x0a\xcb\x41\x28\x1a\x2a\x86\x0a\x8f\x86\x50\xf8\xa4\x0c\x61\x3d\x21\xa1\x70\xe4\x0c\x21\x3d\x31\xa1\x70\x24\x0d\x21\x1e\x1f\xa1\xf0\xd9\x19\xc2\x62\xcc\x84\x22\x4a\xd8\x94\xa1\xc7\xcd\xc0\xf2\x7c\x28\x27\xef\x8c\xdc\x37\x6c\xe0\x68\x1c\x31\x75\xca\x94\x93\x65\x5b\xa0\x50\x90\x02\x7f\x0d\x8a\x16\x95\xa7\x4c\x6f\x83\x12\x44\xe5\xc9\x9c\xba\xa6\x08\x73\xea\xe4\x29\x53\xaf\x51\x02\x53\x4f\x9e\xbc\xb5\x6d\x9e\xf0\xc6\x56\x76\x46\xd1\xa6\x59\x2c\x3f\x5d\xd7\xbc\x4d\xde\xc2\x9d\x68\x53\x0b\xd8\x33\x12\x73\x56\x55\x0a\xb5\x5e\xc0\x97\xf6\xc7\x95\x37\xd0\xb3\xc5\xd9\xd2\x64\xdf\x0f\xac\x2c\x65\x2d\x0c\x14\xb0\x45\xf3\xa5\x3d\x74\x5e\xb2\x49\x0f\xf3\x8a\xc1\x0c\x83\x02\xdc\x2e\x97\xab\x76\x4f\xbb\x91\xc2\x28\x56\x1a\x7b\xc1\xdc\xca\x6a\x55\x62\x3b\xff\x04\xf1\x2b\x78\x22\x7c\x6e\x8f\xf6\xff\xa7\x70\x24\x2c\xef\x56\x37\xc1\x15\x9f\xe7\x59\x06\x4c\x4f\x61\x04\x77\xdd\x67\xcb\xfe\x5d\x5f\xc3\x81\x09\x2a\xe7\xb3\x1b\x59\xf3\x0a\x84\x34\x70\x0a\x0f\x2e\x4c\x9b\x88\x72\x58\xed\xd0\x7b\x1a\x28\x4f\x8f\x01\x02\xb1\xd2\x60\x24\x90\x55\xed\x51\xd8\x65\x2e\xe6\xa6\x8b\xb0\xf1\x07\x24\x40\xaa\x0a\x95\xb5\xc4\x17\x2c\x6b\x83\x60\x76\xa4\x6d\xfd\x84\x66\x8d\xd9\x2c\x9a\x59\x28\xba\x6a\xe4\x25\x3b\xb0\x35\x71\xb2\xb3\x26\x5f\x4b\xa5\xe4\xf3\xa7\xff\x79\x29\x77\x11\x7c\x9e\x07\x09\x08\xeb\x94\x1f\xc2\x89\x92\x79\x09\xb2\x8f\xdd\x15\x7f\x96\x97\x52\x94\xac\x2f\x7c\x6e\x64\x3b\xca\xe7\x59\xd6\xa9\x66\x50\x49\xd4\x4d\x46\x77\xec\x09\x81\xc1\x52\x8a\xbb\x5a\x6c\x69\xcd\x71\x25\x1f\x51\x80\x8b\x0a\x98\x81\x59\x16\x44\x66\xff\x3a\x5f\xc9\x28\xfd\x8b\x93\xd6\x41\xe8\xfb\x5a\x9b\x66\x85\x21\xc6\xe9\x5f\x9b\x6a\x24\xd5\x6b\x9f\xc9\xec\xda\xec\x7b\x69\xde\x90\xd2\x66\x3a\xcb\xbc\x22\x3c\x79\x9f\x1b\x41\x4b\x9e\x92\xef\x7f\x8e\xcc\x6d\x47\x51\x95\xc1\x64\x88\x75\xad\x5d\x47\x3e\xd5\x46\xb2\xa5\x27\x14\x40\x95\x5f\x7f\xb1\x69\x3a\x06\x8a\x33\xa6\x6f\xd1\x9c\xba\xf5\x74\xe1\x55\x18\xe5\x22\x38\x46\x09\x95\x7c\x41\x43\x01\xaf\xed\xba\xb8\x91\x0a\x1e\xf1\x68\x59\x7b\x0a\xc4\x9f\xc7\xa4\x0f\x9c\x1d\xa7\xb9\x6e\x1d\xe5\x8f\x78\xd4\xde\x0b\xfb\xe2\xa6\x5f\x8f\x78\xfc\x6d\xdf\xc7\xa3\xae\x1a\xe4\x34\xaf\x15\x3f\x0d\xb4\x36\x7e\x85\xa6\x56\xa2\x1b\x53\xe1\x56\xda\x39\xa5\xea\x7c\x33\xed\x34\xf6\x74\xbe\x9f\x76\xba\xaa\x0b\xc0\x8a\x13\xeb\xea\x05\xd6\xd3\x46\x97\xd8\x0b\x83\x5e\x97\xd7\x8a\xe6\x59\x74\xbd\xed\x8c\x7a\xd1\xd4\xd6\xfa\xbe\x3b\xf9\x56\xc1\xa2\xdb\xd9\x79\xc2\x26\x81\x63\xab\x6f\xa4\x18\xcc\xb0\xa9\xd7\x75\xa3\x2b\x71\xca\x85\x7e\xdf\xaa\x3c\x1c\x81\x9b\x1a\x39\x55\x28\x0c\x6d\x08\xd5\xfb\xf6\xea\x61\xc7\x0e\x39\xe2\x78\x19\x30\x25\x42\xda\x90\x33\x89\xed\x7c\xc0\x3e\xca\xa3\xc4\xf6\x3e\xe0\xc6\xab\x7c\xaa\xf0\xc1\x86\x3f\xd4\x86\x0e\x97\x6f\x88\xe3\x39\x5f\x13\x1f\x03\x03\x1e\xd7\x0e\x37\xe2\xb1\x1f\x4b\x17\xa2\xcb\x0f\x87\xee\xc2\xf6\x3c\x6d\x01\xd9\xe4\x6d\xf2\x5f\x00\x00\x00\xff\xff\x03\xe9\xcf\x9a\x54\x12\x00\x00" +var _transactionsScriptsGet_nft_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x57\xc1\x6e\xe3\x38\x0f\xbe\xe7\x29\x98\x1c\x7e\xc4\x40\xe1\xd3\x8f\x3d\x04\xe3\x29\x66\x3b\x2d\x30\xc0\x6c\x30\x68\x33\x7b\x19\xcc\x41\xb1\x99\x84\xa8\x22\x65\x25\xb9\x6d\xb6\xe8\xbb\x2f\x64\xc7\x96\x94\x48\x76\xdb\x43\x11\x91\x1f\x29\x9a\xfc\x48\xd3\xb4\x3f\x48\x65\x60\x76\xfb\xc2\xf6\x07\x8e\xcb\xbb\xd5\x6c\xd2\xc9\xfe\x42\xc3\x2a\x66\xd8\xdf\x84\xcf\xda\x89\xed\xf1\x1e\xb5\xe4\x4f\xa8\x66\x93\x09\x2b\x4b\xd4\x7a\xce\x38\xcf\x40\x1b\x55\x97\x06\x96\x77\x2b\x0b\x82\xd7\x09\x00\x80\x0f\xe0\x68\x80\xaa\x05\xfc\xfc\x26\xcc\x1f\xff\x8f\xaa\xeb\x7a\x04\x20\xd8\x1e\x17\xf0\x60\x14\x89\x6d\x14\x50\xa1\x2e\x15\x1d\x0c\x49\x31\x88\x33\xbb\x7a\xbf\x16\x8c\xf8\x20\x4a\xc9\x23\xe3\x86\x50\x2f\xe0\x57\x90\x91\xfc\xbe\xd1\x1c\x7f\x47\xcd\xf0\xc5\xa0\x12\x8c\xff\xbc\xff\x3e\xe8\xbe\x94\x9c\x63\x69\x63\xfd\x51\xaf\x39\x95\x3f\x98\xd9\x2d\xc0\xfd\x1e\x31\x7a\x30\x52\xb1\x2d\xb6\x56\xde\xe1\x5d\x77\x7d\x28\xb0\xef\x24\x1e\xb1\x5a\x1d\x0f\xc3\xc9\x77\x66\xcb\xb1\x3a\x39\xe8\xd7\x77\x56\xcc\x59\xdc\x7e\x38\xbd\x0f\xff\xd4\x4c\xe1\xb7\x3d\xdb\xbe\x37\xaa\x3f\x99\x10\xa8\x3e\x62\xf1\x20\x4b\x62\x5c\x2f\xe0\xb5\x85\x77\x66\x6f\x71\xfe\x29\x46\x46\x2f\x20\x64\xd5\xaa\x91\x4e\x1a\x0b\x12\x64\xe6\xcd\xaf\xe6\xd4\xf7\xc5\x55\x2f\xf3\xbb\xc5\x49\xfd\x16\x71\xd2\x48\x5f\x38\xe5\x45\x33\x38\xd5\x78\x07\x38\x6c\x84\xf6\x4e\x39\xc6\xf5\x18\x32\x45\xf0\xb4\xd7\xf1\x7b\x2f\xa9\x1c\xc3\x2e\xa3\x49\x1c\x24\x6d\x0c\x16\x61\x6a\xf4\x39\x2f\xe9\x19\x83\x45\x38\x19\xf5\x96\x22\xa2\x57\xf0\x21\xf6\x59\x40\x76\x9a\xdf\xf6\x4f\x23\xdf\xe4\x54\x41\x01\x54\x85\x42\x4b\x40\x28\x1a\x1e\x86\x0a\xcb\x41\x28\x1a\x2a\x86\x0a\x8f\x86\x50\xf8\xa4\x0c\x61\x3d\x21\xa1\x70\xe4\x0c\x21\x3d\x31\xa1\x70\x24\x0d\x21\x1e\x1f\xa1\xf0\xd9\x19\xc2\x62\xcc\x84\x22\x4a\xd8\x94\xa1\xc7\xcd\xc0\xf2\x7c\x28\x27\xef\x8c\xdc\x37\x6c\xe0\x68\x1c\x31\x75\xca\x94\x93\x65\x5b\xa0\x50\x90\x02\x7f\x0d\x8a\x16\x95\xa7\x4c\x6f\x83\x12\x44\xe5\xc9\x9c\xba\xa6\x08\x73\xea\xe4\x29\x53\xaf\x51\x02\x53\x4f\x9e\xbc\xb5\x6d\x9e\xf0\xc6\x56\x76\x46\xd1\xa6\x59\x2c\x3f\x5d\xd7\xbc\x4d\xde\xc2\x9d\x68\x53\x0b\xd8\x33\x12\x73\x56\x55\x0a\xb5\x5e\xc0\x97\xf6\xc7\x95\x37\xd0\xb3\xc5\xd9\xd2\x64\xdf\x0f\xac\x2c\x65\x2d\x0c\x14\xb0\x45\xf3\xa5\x3d\x74\x5e\xb2\x49\x0f\xf3\x8a\xc1\x0c\x83\x02\xdc\x2e\x97\xab\x76\x4f\xbb\x91\xc2\x28\x56\x1a\x7b\xc1\xdc\xca\x6a\x55\x62\x3b\xff\x04\xf1\x2b\x78\x22\x7c\x6e\x8f\xf6\xff\xa7\x70\x24\x2c\xef\x56\x37\xc1\x15\x9f\xe7\x59\x06\x4c\x4f\x61\x04\x77\xdd\x67\xcb\xfe\x5d\x5f\xc3\x81\x09\x2a\xe7\xb3\x1b\x59\xf3\x0a\x84\x34\x70\x0a\x0f\x2e\x4c\x9b\x88\x72\x58\xed\xd0\x7b\x1a\x28\x4f\x8f\x01\x02\xb1\xd2\x60\x24\x90\x55\xed\x51\xd8\x65\x2e\xe6\xa6\x8b\xb0\xf1\x07\x24\x40\xaa\x0a\x95\xb5\xc4\x17\x2c\x6b\x83\x60\x76\xa4\x6d\xfd\x84\x66\x8d\xd9\x2c\x9a\x59\x28\xba\x6a\xe4\x25\x3b\xb0\x35\x71\xb2\xb3\x26\x5f\x4b\xa5\xe4\xf3\xa7\xff\x79\x29\x77\x11\x7c\x9e\x07\x09\x08\xeb\x94\x1f\xc2\x89\x92\x79\x09\xb2\x8f\xdd\x15\x7f\x96\x97\x52\x94\xac\x2f\x7c\x6e\x64\x3b\xca\xe7\x59\xd6\xa9\x66\x50\x49\xd4\x4d\x46\x77\xec\x09\x81\xc1\x52\x8a\xbb\x5a\x6c\x69\xcd\x71\x25\x1f\x51\x80\x8b\x0a\x98\x81\x59\x16\x44\x66\xff\x3a\x5f\xc9\x28\xfd\x8b\x93\xd6\xb3\xb6\x66\x5d\xf0\xfb\x5a\x9b\x66\x89\x21\xc6\xe9\x5f\x9b\x6c\x24\xd5\x6b\x9f\xc9\xec\xda\xfc\x7b\x89\xde\x90\xd2\x66\x3a\xcb\xbc\x32\x3c\x79\x1f\x1c\x41\x53\x9e\xd2\xef\x7f\x90\xcc\x6d\x4f\x51\x95\xc1\x64\x88\x77\xad\x5d\x47\x3f\xd5\x46\xb2\xa5\x27\x14\x40\x95\x4b\x39\x55\xfe\x43\x7b\x11\x89\x4d\xd3\x4a\x50\x9c\xb5\xc0\x16\xcd\xa9\x8d\x4f\x71\x5c\x85\xc1\x2f\x82\x63\x94\x69\xc9\x37\x37\x14\xf0\xda\xee\x91\x1b\xa9\xe0\x11\x8f\x96\xce\xa7\x40\xfc\x41\x4d\xfa\xc0\xd9\x71\x9a\xeb\xd6\x51\xfe\x88\x47\xed\xbd\xc9\x2f\x6e\xfa\xf5\x88\xc7\xdf\xf6\x45\x3d\xea\xaa\x41\x4e\xf3\x5a\xf1\xd3\xa4\x6b\xe3\x57\x68\x6a\x25\xba\xf9\x15\xae\xab\x9d\x53\xaa\xce\x57\xd6\x4e\x63\x4f\xe7\x8b\x6b\xa7\xab\xba\x00\xac\x38\xb1\xc7\x5e\x60\x3d\x6d\x74\xbb\xbd\x30\xe8\x75\x79\xad\x68\x9e\x45\xf7\xde\xce\xa8\x17\x4d\x6d\xad\xef\xbb\x93\x6f\x15\x6c\xc0\x9d\x9d\x27\x6c\x12\x38\xb6\x13\x47\x8a\xc1\x0c\x9b\x7a\xed\x38\xba\x2b\xa7\x5c\xe8\xf7\xed\xd0\xc3\x11\xb8\x71\x92\x53\x85\xc2\xd0\x86\x50\xbd\x6f\xe1\x1e\x76\xec\x90\x23\x8e\x97\x01\x53\x22\xa4\x0d\x39\x93\x58\xdb\x07\xec\xa3\x3c\x4a\xac\xf5\x03\x6e\xbc\xca\xa7\x0a\x1f\xac\xfe\x43\x6d\xe8\x70\xf9\x86\x38\x9e\xf3\x35\xf1\x95\x30\xe0\x71\xed\x70\x23\x1e\xfb\xb1\x74\x21\xba\xfc\xa2\xe8\x2e\x6c\xcf\xd3\x16\x90\x4d\xde\x26\xff\x05\x00\x00\xff\xff\xf2\x38\xc9\x6c\x6d\x12\x00\x00" func transactionsScriptsGet_nft_viewCdcBytes() ([]byte, error) { return bindataRead( @@ -451,11 +451,11 @@ func transactionsScriptsGet_nft_viewCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/scripts/get_nft_view.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf0, 0xb4, 0x84, 0x61, 0x21, 0x35, 0x1, 0x4b, 0xf3, 0xbd, 0x51, 0x85, 0x94, 0x23, 0x9f, 0x17, 0x3b, 0x7c, 0xd1, 0x45, 0xc9, 0xb3, 0x7f, 0x9, 0x74, 0x39, 0x78, 0x79, 0x4c, 0xc4, 0x1b, 0x93}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0x95, 0x68, 0xf0, 0xb9, 0xb8, 0x7b, 0x6, 0xeb, 0x33, 0xc2, 0x4, 0xa, 0xfb, 0x7f, 0xa6, 0xaa, 0x9, 0xc, 0xb7, 0x70, 0xac, 0x31, 0xb9, 0x10, 0x7b, 0xe0, 0x6f, 0xf6, 0x4f, 0x31, 0x6e}} return a, nil } -var _transactionsScriptsGet_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\x26\x3a\x7c\x90\x80\x40\xbe\x7c\xe8\xc1\x88\x13\xa4\x69\x0d\xf4\x50\xa3\x68\x95\x5e\x8a\x1e\x68\x6a\x65\x2d\x42\x93\x02\xb9\x72\x92\x06\x79\xf7\x82\xb2\x65\x59\xf9\x41\x09\xd8\x10\xb9\xdc\xdd\xd9\x99\xe1\x6c\x36\x43\xd9\x70\x40\xd0\x9e\x5b\x81\x6e\x48\xdf\x05\x28\x63\x20\x0d\x21\x74\x6d\xeb\xbc\x50\x85\x1d\xd3\x7d\x40\xed\xdd\x36\x89\x39\x0a\x1b\xde\x91\xc5\x6a\x59\x16\xb8\x0d\x54\xa1\x76\x1e\x42\x41\xd8\x6e\xe0\xac\x79\x2c\x92\x84\xb7\x31\x19\xe9\xca\xd9\x65\x67\x37\xbc\x36\x54\xba\x3b\xb2\xe9\x31\xf2\x95\x44\x55\x4a\xd4\xcf\x58\x7d\x3c\xfe\xfc\xa0\xb6\xad\xa1\xd5\xb2\x4c\x93\x44\x69\x4d\x21\x64\xca\x98\x1c\x75\x67\xb1\x55\x6c\x33\x55\x55\x9e\x42\x98\xe3\x7a\xff\x71\x0e\xae\xe6\xb8\xfd\x62\xe5\xc3\xff\xf9\x1c\xbf\xca\xc7\x96\x7e\xe3\x29\x01\x00\x43\x02\xa5\xb5\xeb\xac\x60\x81\x0d\xc9\xf5\x7e\x33\x14\xc9\x93\xe3\x35\xed\x8c\x21\x2d\xec\xec\x27\x25\x0a\x0b\x8c\x48\x0a\x4f\xc1\x99\x1d\xdd\x38\x2b\x5e\x69\x89\x90\xb3\x78\xd6\x79\x4d\xb1\xdd\x1c\x96\xcd\x79\x4f\xd4\x7e\x1b\xff\x2f\x26\x13\x16\xab\x65\x79\x33\x69\x71\x99\xe5\x39\x54\x38\xc3\x3f\xee\x5d\xf5\x10\x87\x75\x75\x85\x56\x59\xd6\x59\x7a\xe3\x3a\x53\xc1\x3a\xc1\x01\x1e\x5e\xa5\xf6\x88\x0a\x94\x0d\x9d\x4c\x03\x7d\x18\x03\x96\xa8\x0a\x10\x07\x8e\xa1\x2d\x59\xe9\x95\x7f\x5d\x66\x40\xd8\xd7\x03\x5b\x38\x5f\x91\x8f\x99\xf4\x40\xba\x13\x82\x44\x23\x89\x57\x36\xa8\x3e\x2d\xcd\x7b\xd4\x6f\xb0\xfb\x9d\x6a\x2c\x06\x51\x0a\xad\x5a\xb5\x66\xc3\xc2\x14\x8a\xb5\xf3\xde\xdd\x5f\xfc\xf7\xf4\xd2\x35\xc5\x88\xe7\xf9\x32\x9b\xf0\x31\x95\xad\x68\xbb\xb5\x61\xfd\x4d\x49\xd3\xdf\xca\x4f\xf8\x8a\x2c\x0c\x5e\x48\x0b\xed\xac\x56\x47\x1f\x14\xe2\x7e\x88\x67\xbb\xc9\xf2\x7c\x08\xa5\xa8\x1c\x85\x9e\xe0\x46\xed\x08\x0a\x2f\x61\x61\x84\x05\x25\x38\xcc\x7c\xba\x86\x5a\xef\xa2\x3c\x6d\xfc\x6e\xf6\x04\xfa\xb6\x0b\x02\xb6\x2c\xac\x0c\xff\x89\xcc\x13\xfb\x63\xf4\x9e\xa5\xd9\x8b\x31\xb6\x44\xcd\x3e\xc8\x59\x9a\x1f\xdc\x3e\x9b\xe1\x63\xcf\x34\x14\x3c\xd5\xe4\xc9\x6a\x8a\x62\x2a\x84\x96\x34\xd7\xac\xa3\x07\xa2\xce\xd1\x0e\x63\xa1\xa3\x9a\xb6\x8e\xcf\x69\xa2\xe9\x41\xbc\xd5\xb2\xcc\xb8\x1a\x47\x79\xcb\xae\x9b\xf8\x28\xa7\x9d\x65\xea\xd0\xf8\xeb\x27\xe1\x6a\x71\x94\x8a\xab\x53\xb2\xf6\x2d\x3c\x49\xe7\x6d\xc4\x53\x6c\xa8\x7f\x97\x21\xcb\x93\xe7\xe4\x6f\x00\x00\x00\xff\xff\x73\x37\x7f\x3a\xdc\x04\x00\x00" +var _transactionsScriptsGet_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\x4d\x6f\xdb\x38\x10\xbd\xeb\x57\xbc\xe8\xb0\x90\x80\x40\xbe\x2c\xf6\x60\xe4\x03\xd9\xec\x1a\xe8\xa1\x46\xd1\x2a\xbd\x14\x3d\xd0\xd4\x48\x1a\x84\x26\x05\x72\xe4\x24\x0d\xf2\xdf\x0b\xca\x96\x65\xe5\x03\x25\x60\x43\xe4\x70\x66\xde\xbc\xf7\xb8\x58\x2c\x50\xb6\x1c\x10\xb4\xe7\x4e\xa0\x5b\xd2\xf7\x01\xca\x18\x48\x4b\x08\x7d\xd7\x39\x2f\x54\x61\xc7\xf4\x10\x50\x7b\xb7\x4d\x62\x8e\x42\xc3\x3b\xb2\x58\xaf\xca\x02\x77\x81\x2a\xd4\xce\x43\x28\x08\xdb\x06\xce\x9a\xa7\x22\x49\x78\x1b\x93\x91\xae\x9d\x5d\xf5\xb6\xe1\x8d\xa1\xd2\xdd\x93\x4d\x8f\x91\xcf\x24\xaa\x52\xa2\xbe\xc7\xea\xd3\xf1\xff\x8f\x6a\xdb\x19\x5a\xaf\xca\x34\x49\x94\xd6\x14\x42\xa6\x8c\xc9\x51\xf7\x16\x5b\xc5\x36\x53\x55\xe5\x29\x84\x25\x6e\xf6\x1f\xe7\xe0\x6a\x89\xbb\x4f\x56\xfe\xf9\x3b\x5f\xe2\x47\xf9\xd4\xd1\x4f\x3c\x27\x00\x60\x48\xa0\xb4\x76\xbd\x15\x5c\xa2\x21\xb9\xd9\x6f\xc6\x22\x79\x72\xbc\xa6\x9d\x31\xa4\x85\x9d\xfd\x4f\x89\xc2\x25\x26\x24\x85\xa7\xe0\xcc\x8e\x6e\x9d\x15\xaf\xb4\x44\xc8\x59\x3c\xeb\xbd\xa6\xd8\x6e\x09\xcb\xe6\x7c\x20\x6a\xbf\x8d\xff\x17\xb3\x09\x8b\xf5\xaa\xbc\x9d\xb5\xb8\xca\xf2\x1c\x2a\x9c\xe1\x0f\xf7\xae\x07\x88\xe3\xba\xbe\x46\xa7\x2c\xeb\x2c\xbd\x75\xbd\xa9\x60\x9d\xe0\x00\x0f\x6f\x52\x07\x44\x05\xca\x96\x4e\xa6\x81\x3e\x8c\x01\x4b\x54\x05\x88\x03\xc7\xd0\x96\xac\x0c\xca\xbf\x2d\x33\x22\x1c\xea\x81\x2d\x9c\xaf\xc8\xc7\x4c\x7a\x24\xdd\x0b\x41\xa2\x91\xc4\x2b\x1b\xd4\x90\x96\xe6\x03\xea\x77\xd8\xfd\x4a\x35\x2e\x47\x51\x0a\xad\x3a\xb5\x61\xc3\xc2\x14\x8a\x8d\xf3\xde\x3d\x5c\xfc\xf5\xfc\xda\x35\xc5\x84\xe7\xe5\x2a\x9b\xf1\x31\x97\xad\xe8\xfa\x8d\x61\xfd\x45\x49\x3b\xdc\xca\x4f\xf8\x8a\x2c\x8c\x5e\x48\x0b\xed\xac\x56\x47\x1f\x14\xe2\xbe\x89\x67\xdb\x64\x79\x3e\x86\x52\x54\x8e\xc2\x40\x70\xab\x76\x04\x85\xd7\xb0\x30\xc1\x82\x12\x1c\x66\x3e\x5d\x63\xad\x0f\x51\x9e\x36\xfe\x30\x7b\x06\x7d\xdb\x07\x01\x5b\x16\x56\x86\x7f\x45\xe6\x89\xfd\x31\xfa\xc0\xd2\xee\xc5\x98\x5a\xa2\x66\x1f\xe4\x2c\xcd\x0f\x6e\x5f\x2c\xf0\xef\xc0\x34\x14\x3c\xd5\xe4\xc9\x6a\x8a\x62\x2a\x84\x8e\x34\xd7\xac\xa3\x07\xa2\xce\xd1\x0e\x53\xa1\xa3\x9a\xb6\x8e\xcf\x69\xa6\xe9\x41\xbc\xf5\xaa\xcc\xb8\x9a\x46\x79\xcf\xae\x4d\x7c\x94\xf3\xce\x32\x77\x68\xfc\x0d\x93\x70\x35\x49\xc5\xd5\x29\x59\xfb\x16\x9e\xa4\xf7\x36\xe2\x29\x1a\x1a\xde\x65\xc8\xf2\xe4\x25\xf9\x1d\x00\x00\xff\xff\xcd\xee\x3b\x2a\xdc\x04\x00\x00" func transactionsScriptsGet_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -471,7 +471,7 @@ func transactionsScriptsGet_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/scripts/get_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x76, 0xc5, 0x3c, 0xcf, 0xd5, 0x8, 0xd9, 0xdf, 0xf5, 0xe0, 0x71, 0xfb, 0x5, 0xc, 0x93, 0xe8, 0xb8, 0xb5, 0x4a, 0x8d, 0x1f, 0x79, 0x51, 0x42, 0x66, 0xeb, 0x3, 0x7a, 0x42, 0xa8, 0x1f, 0x4b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0xf3, 0x83, 0xce, 0xdc, 0x42, 0xd3, 0xfa, 0xd7, 0x95, 0x7e, 0x27, 0x21, 0x7e, 0xa, 0xca, 0x2, 0xda, 0x7e, 0xc1, 0x72, 0x8c, 0x92, 0x1, 0x29, 0xca, 0x5e, 0x75, 0xa2, 0x8e, 0xb3, 0xcd}} return a, nil } @@ -535,7 +535,7 @@ func transactionsSetup_account_from_addressCdc() (*asset, error) { return a, nil } -var _transactionsSetup_account_from_nft_referenceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\x4d\x6b\xe3\x48\x10\xbd\xeb\x57\xbc\xe8\x10\x24\x70\xe4\xcb\xb2\x07\x63\x27\x04\xef\x1a\x72\x58\x13\x36\x9e\xdc\xcb\x52\xd9\x6a\xa2\x74\x8b\xee\x92\x8d\x09\xf9\xef\x43\x5b\xd6\x67\x26\x98\x61\x74\x32\xee\x57\xaf\xea\xd5\xc7\x9b\x4e\xa7\xd8\xe4\xca\x41\x2c\x69\x47\xa9\x28\xa3\xa1\x1c\x8e\x39\x09\x48\x83\xd2\xd4\x54\x5a\x70\x34\x55\x91\xc1\x56\x3a\xf0\x11\x62\xe0\x58\xa0\xc4\x71\xb1\x43\x55\xfa\x3f\x2c\xa7\xac\x0e\x8c\xf5\x6a\xe3\x92\x9a\x73\x57\xe9\x33\xe1\x39\xa6\x72\xec\x70\x50\x7c\x74\x1e\xfd\xa6\xcd\x11\xc7\x9c\x2d\x37\x64\x9e\x25\x67\xa4\xa6\x28\xb8\x8b\x52\x1a\x4e\x8c\xa5\x3d\x83\x74\xe6\xb1\xa9\x65\x12\x3e\x63\xf9\xbd\x94\x53\x2f\x22\x09\x02\xf5\x5e\x1a\x2b\x08\xd7\x46\xaf\x2a\xbd\x57\xdb\x82\x37\xe6\x8d\x75\xd8\xbe\xfc\xc7\x42\x19\x09\xbd\xfa\x52\xc2\x20\xe8\x09\x8f\x28\xcb\x2c\x3b\x37\xc3\x63\xfd\x63\x82\xb2\xda\x16\x2a\x7d\x26\xc9\x67\x78\x6e\x7f\x4f\xa0\xb2\x19\x7e\x3c\x69\xf9\xfb\xaf\x18\x1f\x41\x00\x00\xa5\xe5\x92\x2c\x47\x4e\xed\x35\xdb\x19\xa8\x92\x3c\x7a\x72\xae\xe2\x97\x5a\xc1\x92\x4a\xda\xaa\x42\xc9\x69\x69\xb4\x58\x5f\xb6\x9d\xd4\xac\x2e\xef\x1e\x27\x78\xa1\x03\xbf\x52\x51\x71\x8c\xdb\xc7\x7a\x00\x3e\x0b\x2e\x5f\xc1\xd2\x13\x8d\x05\xf6\x2c\x17\x58\xa3\x20\x4e\xd2\x86\x4f\xb1\x4b\xb6\xc6\x5a\x73\x9c\xdf\x7e\x8c\xdb\x92\x2c\x5b\x9e\xcf\xfb\xa8\x13\x1b\xb7\xc9\xfc\xf7\xf0\x80\x92\xb4\x4a\xa3\x70\x79\x5e\x03\x6d\x04\x35\x25\x08\x96\x77\x6c\x59\xa7\xe7\x41\xfa\xa9\x8c\x73\xf4\x6b\xdd\x19\x7b\xc6\xb4\x6b\xa5\x24\x6f\x9a\x8d\x70\x90\xb4\xfb\x92\xd4\xe8\x94\x5a\x6d\x89\x98\x17\xb1\x4a\xef\xa3\x38\xbe\x12\x11\x82\x04\x25\x49\x8e\xf0\x1a\xb4\xd3\xfe\x3b\xfc\x7e\xd1\x3b\x35\x9a\x39\x73\xc3\x7d\x56\x76\x20\x5f\x59\x27\x61\x1c\x07\x83\x59\xea\x9d\xfc\xcf\x3b\x2c\xfa\x9b\x5c\xb7\x77\xbd\xda\x44\x2a\xfb\x93\x61\x64\xec\x94\xe5\xcc\x5f\x65\xdd\x6c\x95\x2d\xae\xf5\x59\x65\xfd\x16\x74\xd9\xbf\x59\xc0\x7f\x48\x08\x8b\x8b\x8a\xc4\xb2\x33\xc5\x81\xfd\x75\x45\x9b\x53\xc9\xf3\xc1\xbd\x25\xeb\xd5\x66\x39\x88\xbc\x8f\xe2\xf8\x06\xe4\x6e\x70\x05\xd8\xf5\x6c\x3a\xc5\xb2\x36\x01\x82\xe6\xe3\x17\x1b\x70\x83\x42\xcf\xaf\x1d\x15\xe6\x77\xa3\xda\x93\xda\x51\xfe\x1d\xe2\xa2\x78\x90\xd0\xd1\x81\xa1\xa4\x69\xeb\x65\xe2\x2d\xa2\xbe\xf9\xe4\x62\x55\x89\x47\x47\xf3\xbb\x51\xea\x09\xc4\xcc\xc6\xc9\x2f\x21\xf5\xd1\xf5\x33\xa6\x8d\xc4\x7a\x33\xd1\x1e\xf4\xa9\xbd\xa2\x9e\x57\xfe\x7a\x34\x4b\x2a\xb1\x68\x8a\x1b\x38\x42\x53\xa9\xf2\xfe\x74\xd5\x18\xbe\x2c\xcc\xf7\x22\x06\xd0\x78\xdc\xa0\x41\x0d\x65\xed\x7c\xd1\xa0\xde\x09\x48\x66\x18\x3b\xd1\x67\xf0\x19\xfc\x0c\x00\x00\xff\xff\x8d\xd6\x3d\x14\xab\x06\x00\x00" +var _transactionsSetup_account_from_nft_referenceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\x4d\x6b\xe3\x48\x10\xbd\xeb\x57\xbc\xe8\x10\x24\x70\xe4\xcb\xb2\x07\x63\x27\x04\xef\x1a\x72\x58\x13\x36\x9e\xdc\xcb\x52\xd9\x6a\xa2\x74\x8b\xee\x92\x8d\x09\xf9\xef\x43\x5b\xd6\x67\x26\x98\x61\x74\x32\xee\x57\xf5\xea\xd5\xc7\x9b\x4e\xa7\xd8\xe4\xca\x41\x2c\x69\x47\xa9\x28\xa3\xa1\x1c\x8e\x39\x09\x48\x83\xd2\xd4\x54\x5a\x70\x34\x55\x91\xc1\x56\x3a\xf0\x11\x62\xe0\x58\xa0\xc4\x71\xb1\x43\x55\xfa\x3f\x2c\xa7\xac\x0e\x8c\xf5\x6a\xe3\x92\x3a\xe7\xae\xd2\xe7\x84\xe7\x98\xca\xb1\xc3\x41\xf1\xd1\x79\xf4\x9b\x36\x47\x1c\x73\xb6\xdc\x24\xf3\x59\x72\x46\x6a\x8a\x82\xbb\x28\xa5\xe1\xc4\x58\xda\x33\x48\x67\x1e\x9b\x5a\x26\xe1\x33\x96\xdf\x4b\x39\xf5\x22\x92\x20\x50\xef\xa5\xb1\x82\x70\x6d\xf4\xaa\xd2\x7b\xb5\x2d\x78\x63\xde\x58\x87\xed\xcb\x7f\x2c\x94\x91\xd0\xab\x2f\x25\x0c\x82\x9e\xf0\x88\xb2\xcc\xb2\x73\x33\x3c\xd6\x3f\x26\x28\xab\x6d\xa1\xd2\x67\x92\x7c\x86\xe7\xf6\xf7\x04\x2a\x9b\xe1\xc7\x93\x96\xbf\xff\x8a\xf1\x11\x04\x00\x50\x5a\x2e\xc9\x72\xe4\xd4\x5e\xb3\x9d\x81\x2a\xc9\xa3\x27\xe7\x2a\x7e\xa9\x15\x2c\xa9\xa4\xad\x2a\x94\x9c\x96\x46\x8b\xf5\x65\xdb\x49\x9d\xd5\xe5\xdd\xe3\x04\x2f\x74\xe0\x57\x2a\x2a\x8e\x71\xfb\x58\x0f\xc0\xb3\xe0\xf2\x15\x2c\x3d\xd1\x58\x60\xcf\x72\x81\x35\x0a\xe2\x24\x6d\xf2\x29\x76\xc9\xd6\x58\x6b\x8e\xf3\xdb\x8f\x71\x5b\x92\x65\x9b\xe7\xf3\x3e\xea\xc4\xc6\x2d\x99\xff\x1e\x1e\x50\x92\x56\x69\x14\x2e\xcf\x6b\xa0\x8d\xa0\x4e\x09\x82\xe5\x1d\x5b\xd6\xe9\x79\x90\x7e\x2a\x63\x0e\x74\x1c\xd8\x19\x7b\xc6\xb4\x6b\xa5\x24\x6f\x9a\x8d\x70\x40\xda\x7d\x49\x6a\x74\x4a\xad\xb6\x44\xcc\x8b\x58\xa5\xf7\x51\x1c\x5f\x89\x08\x41\x82\x92\x24\x47\x78\x0d\xda\x69\xff\x9d\xfc\x7e\xd1\x3b\x35\x9a\x39\x73\xc3\x7d\x56\xb6\x3f\xaa\x9d\xb2\x4e\xc2\x38\x0e\x06\xb3\xd4\x3b\xf9\x9f\x77\x58\xf4\x37\xb9\x6e\xef\x7a\xb5\x89\x54\xf6\x27\xc3\xc8\xd8\x29\xcb\x99\xbf\xca\xba\xd9\x2a\xbb\xda\x67\x95\xf5\x5b\xd0\xb1\x7f\xb3\x80\xff\x90\x10\x16\x17\x15\x89\x65\x67\x8a\x03\xfb\xeb\x8a\x36\xa7\x92\xe7\x83\x7b\x4b\xd6\xab\xcd\x72\x10\x79\x1f\xc5\xf1\x0d\xc8\xdd\xe0\x0a\xb0\xeb\xd9\x74\x8a\x65\x6d\x02\x04\xcd\xc7\x2f\x36\xe0\x06\x85\x9e\x5f\x7b\x2b\x38\xbf\x1b\xd5\x9e\xd4\x8e\xf2\xef\x10\x17\xc5\x03\x42\x47\x07\x86\x92\xa6\xad\x97\x89\xb7\x88\xfa\xe6\x93\x8b\x55\x25\x1e\x1d\xcd\xef\x46\xd4\x13\x88\x99\x8d\xc9\x2f\x21\xf5\xd1\xf5\x19\xd3\x46\x62\xbd\x99\x68\x0f\xfa\xd4\x5e\x51\xcf\x2b\x7f\x3d\x9a\x25\x95\x58\x34\xc5\x0d\x1c\xa1\xa9\x54\x79\x7f\xba\x6a\x0c\x5f\x16\xe6\x7b\x11\x03\x68\x3c\x6e\xd0\xa0\x86\xb2\x76\xbe\x68\x50\xef\x04\x24\x33\x8c\x9d\xe8\x33\xf8\x0c\x7e\x06\x00\x00\xff\xff\xd5\x02\x69\xc2\xab\x06\x00\x00" func transactionsSetup_account_from_nft_referenceCdcBytes() ([]byte, error) { return bindataRead( @@ -551,11 +551,11 @@ func transactionsSetup_account_from_nft_referenceCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/setup_account_from_nft_reference.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0x6e, 0xff, 0xff, 0x4e, 0x6a, 0x92, 0x6f, 0x82, 0xf8, 0x9a, 0x58, 0x20, 0x1c, 0x6c, 0xd, 0xe6, 0x5d, 0xe8, 0xe2, 0xd8, 0xf1, 0x1b, 0x7a, 0xe3, 0x44, 0x6c, 0x50, 0xd, 0x2a, 0xbe, 0xfd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0x2a, 0x5c, 0xaf, 0x63, 0x27, 0x42, 0x94, 0x15, 0x42, 0x75, 0xd3, 0x64, 0x5e, 0x92, 0x2b, 0xbf, 0x63, 0x80, 0x18, 0x37, 0x23, 0xb0, 0x26, 0xeb, 0x73, 0x48, 0xe0, 0x6, 0xe, 0x50, 0xd9}} return a, nil } -var _transactionsSetup_account_to_receive_royaltyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x54\x4d\x6f\xdb\x46\x10\xbd\xf3\x57\x4c\x75\x48\x28\x80\x20\xef\x46\x1d\x20\x55\x61\x20\x40\x8b\x06\x76\xe2\x5e\x3d\x5a\x0e\xc9\x41\x56\xbb\x8b\xdd\xa1\x15\xd6\xd0\x7f\x2f\x76\xf9\x21\xb2\x31\x8c\x46\x37\x91\x33\x6f\xde\xbc\xf7\x86\x55\x55\xc1\x97\x8e\x03\x88\x47\x13\x50\x09\x5b\x03\x1c\x00\x41\xe8\xe4\x34\x0a\x41\x63\x7d\xfc\x7b\x7d\x9f\xc5\x26\xb1\xa0\x3c\xc5\xf7\x08\x86\xce\xa0\xd9\x7c\x03\x36\x20\x1d\xb1\x07\x54\xca\xf6\x46\x62\xd5\x91\xa0\x0f\x54\x27\x18\x4f\x8a\xf8\x99\x4d\x0b\xde\x0e\xa8\x85\x29\x64\xaf\x32\x50\x68\x36\x8d\x68\x06\x68\x7a\xd3\xf2\x51\x13\x88\xfd\x46\xa6\x80\x73\xc7\xaa\x8b\x5c\x83\x23\xc5\x0d\x53\x0d\xc7\x21\xce\x87\xa7\x67\xec\xb5\x7c\x46\xe9\x9e\x00\x7d\xdb\x9f\xc8\x48\x9c\x93\x66\x7d\x6a\x52\xcd\xcc\xf0\x8c\x46\x42\xe4\x39\x72\xa3\x2b\xb3\xb8\xcd\xdd\x1f\x7f\xfd\x5d\xc4\xfa\xe1\xbd\xd6\x91\x0e\x3c\x55\x41\xac\xc7\x96\xaa\x46\xdb\xf3\x97\x48\xe5\x31\x4e\x7b\x5a\x81\x0f\x09\x75\x0d\xca\x12\xd1\xbe\x3e\xfc\x7e\x28\xa6\x02\xdb\xeb\x3a\x01\xde\x31\x4a\x82\x29\x13\xce\xc3\x88\x1e\xc9\x27\x44\x34\x35\x04\x0b\xd6\x94\x93\x52\x04\x0e\xa5\xbb\x4a\x13\x97\x71\xfd\x51\xb3\x9a\x3c\x08\x93\x23\xa9\x4c\x3a\x94\xc9\x16\x68\x7a\xe9\x3d\x15\xb1\x82\xbe\x3b\x52\x42\xf5\x8a\xe3\x32\xad\x25\x43\x9e\xd5\x56\x66\x95\xf8\x1e\x53\x1a\xce\xe8\xeb\xb1\x35\x09\xe9\x9c\xb7\xce\x73\x8c\x42\xd2\x3d\xcb\xf8\xe4\xac\x17\xd8\xdd\x4d\x8e\xa5\xf5\x76\xcb\xe3\x3f\x49\xb0\x46\xc1\x47\xa6\x73\xd8\x65\xd9\xca\xf8\x7c\x71\xee\x06\x56\x4a\xec\xe1\x25\xcb\x00\x00\x9c\x27\x87\x9e\xf2\xc0\xad\x21\x7f\x03\xd8\x4b\x97\xff\x66\xbd\xb7\xe7\x47\xd4\x3d\x15\xf0\x29\x84\x9e\xa6\xd6\x03\x3a\x3c\xb2\x66\x19\x0e\xd6\x88\xb7\x5a\x93\x2f\xe0\x73\x14\x2b\x74\xd7\x97\x05\x7c\x35\xee\xbf\x0f\xf7\xf0\xee\xe3\x18\x91\x65\x78\xfc\x55\x15\xdc\x93\xf4\xde\x00\xa1\xd7\x03\xf0\x36\x4d\xb5\xa5\x60\xde\x0b\x74\xf8\x1c\x0f\x63\x23\x00\x24\x7f\x17\x24\x6e\x60\xdc\xa2\x9c\x02\x55\x1e\xd3\x1e\xbf\xbe\x7b\xd9\xb4\x8d\xb1\xb8\x7c\xc8\x1b\x6f\x4f\x37\xb0\x08\xb4\x87\xdb\x5b\x30\xac\xe1\x65\x81\x4c\x0a\xa1\x61\x95\xef\x0e\x68\x8c\x15\x08\x24\xbd\x4b\x0c\xc7\x59\xeb\xc3\xfc\x21\xf0\x37\xf0\x71\x84\x5f\x72\x75\xbd\xac\xed\xf1\x8d\xd9\xca\x77\x9b\xc9\xd3\xaf\x54\xd6\x28\x94\xab\x93\xa5\xd8\x07\xf1\x6c\xda\x7c\xbf\x7f\xab\x61\xb7\x4f\xf2\x41\xe4\x4d\xdf\x39\x48\x99\xd2\x3e\x33\x0e\x5d\x8a\x20\x1b\x16\x46\xcd\xff\xd0\x98\xed\xad\xc4\xcb\x07\x68\xd2\x14\x1a\xf6\x41\x7e\xd9\xad\x26\x5f\xb2\x37\x2c\x90\xc1\x51\x8e\xf2\xbf\x65\xfe\x39\xc1\xb6\xeb\xed\x5e\xe5\x54\x55\x70\x98\xbf\xab\xd3\x59\xab\x25\x94\xf3\xcd\xa5\x48\x8c\xfb\x5b\xa3\x87\x78\xce\x36\x50\x58\x83\xc4\xb2\x9a\x9c\x0d\x2c\x91\xcb\xf8\x59\x95\xce\xdb\xbe\xed\xd2\xcb\xfb\xd1\x7e\x0f\x6c\x84\x7c\x83\x8a\x96\xf6\x49\x94\x65\x2e\x53\x28\xfb\xf9\x44\xf2\xcd\xf9\x96\x2d\xc9\x7d\x0a\xd0\x30\x03\xa6\xfb\x52\x51\xbb\xb5\xe1\x9a\x64\xd4\xea\x80\x0e\x6e\x5f\x1d\x31\x9b\xc0\xf1\x84\x7f\x38\x83\x19\xfe\xf2\xe1\x1a\xad\xfd\x9b\x94\x67\xc2\xf3\xd8\x02\xa2\xb3\x3f\x4f\xff\x92\x5d\xb2\x7f\x03\x00\x00\xff\xff\xe0\x03\xe3\x4c\x28\x07\x00\x00" +var _transactionsSetup_account_to_receive_royaltyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x54\x4d\x8f\xdb\x36\x10\xbd\xeb\x57\x4c\x7d\x48\x6c\xc0\x90\xee\x8b\x6e\x80\xd4\xc5\x02\x01\x5a\x34\xd8\x4d\xb6\xd7\x1d\x53\x23\x69\x10\x9a\x24\xc8\xe1\x3a\xea\xc2\xff\xbd\x20\xf5\x61\xa9\x49\x16\x8d\x6f\x16\x67\xde\x3c\xbe\x79\x8f\x55\x55\xc1\xa7\x8e\x03\x88\x47\x13\x50\x09\x5b\x03\x1c\x00\x41\xe8\xe4\x34\x0a\x41\x63\x7d\xfa\x7b\x3d\x2f\x52\x93\x58\x50\x9e\xd2\x39\x82\xa1\x33\x68\x36\x5f\x80\x0d\x48\x47\xec\x01\x95\xb2\xd1\x48\xaa\x3a\x12\xc4\x40\x75\x86\xf1\xa4\x88\x9f\xd9\xb4\xe0\x6d\x8f\x5a\x98\x42\xf1\x5d\x06\x0a\xcd\xaa\x11\x4d\x0f\x4d\x34\x2d\x1f\x35\x81\xd8\x2f\x64\xf6\x70\xee\x58\x75\x89\x6b\x70\xa4\xb8\x61\xaa\xe1\xd8\xa7\xf9\xf0\xf4\x8c\x51\xcb\x47\x94\xee\x09\xd0\xb7\xf1\x44\x46\xd2\x9c\x3c\xeb\x43\x93\x6b\x26\x86\x67\x34\x12\x12\xcf\x81\x1b\x5d\x99\xa5\xdb\xdc\xfd\xf1\xd7\xdf\xfb\x54\xdf\xbf\xd5\x3a\xd1\x81\xa7\x2a\x88\xf5\xd8\x52\xd5\x68\x7b\xfe\x94\xa8\x3c\xa6\x69\x4f\x0b\xf0\x3e\xa3\x2e\x41\x59\x12\xda\xe7\x87\xdf\x0f\xfb\xb1\xc0\x46\x5d\x67\xc0\x3b\x46\xc9\x30\x65\xc6\x79\x18\xd0\x13\xf9\x8c\x88\xa6\x86\x60\xc1\x9a\x72\x54\x8a\xc0\xa1\x74\x57\x69\xd2\x65\x5c\x3c\x6a\x56\xe3\x0e\xc2\xb8\x91\x5c\x26\x1d\xca\xb8\x16\x68\xa2\x44\x4f\xfb\x54\x41\x5f\x1d\x29\xa1\x7a\xc1\x71\x9e\xd6\x92\x21\xcf\x6a\x2d\xb3\xca\x7c\x8f\xd9\x0d\x67\xf4\xf5\xd0\x9a\x85\x74\xce\x5b\xe7\x39\x59\x21\xeb\x5e\x14\x7c\x72\xd6\x0b\x6c\xee\xc6\x8d\xe5\xeb\x6d\xe6\xcf\x7f\x92\x60\x8d\x82\x8f\x4c\xe7\xb0\x29\x8a\xc5\xe2\xb7\xf3\xe6\x6e\x60\xa1\xc4\x0e\x5e\x8a\x02\x00\xc0\x79\x72\xe8\x69\x1b\xb8\x35\xe4\x6f\x00\xa3\x74\xdb\xdf\xac\xf7\xf6\xfc\x88\x3a\xd2\x1e\x3e\x84\x10\x69\x6c\x3d\xa0\xc3\x23\x6b\x96\xfe\x60\x8d\x78\xab\x35\xf9\x3d\x7c\x4c\x62\x85\xee\x7a\xb8\x87\xcf\xc6\xfd\xf7\xe3\x0e\xde\xbc\x1f\x2c\x32\x0f\x4f\xbf\xaa\x82\x7b\x92\xe8\x0d\x10\x7a\xdd\x03\xaf\xdd\x54\x5b\x0a\xe6\xad\x40\x87\xcf\x29\x18\x2b\x01\x20\xef\x77\x46\xe2\x06\x86\x5b\x94\xa3\xa1\xca\x63\xbe\xc7\xaf\x6f\x5e\x56\x6d\x83\x2d\x2e\xef\xb6\x8d\xb7\xa7\x1b\x98\x05\xda\xc1\xed\x2d\x18\xd6\xf0\x32\x43\x66\x85\xd0\xb0\xda\x6e\x0e\x68\x8c\x15\x08\x24\xd1\x65\x86\xc3\xac\x65\x30\xbf\x31\xfc\x0d\xbc\x1f\xe0\x67\x5f\x5d\x93\xb5\x0e\xdf\xe0\xad\xcd\x6a\xf0\xf8\x2b\x95\x35\x0a\xe5\xba\xc8\x52\xec\x83\x78\x36\xed\x76\xb7\x7b\xad\x61\x93\xc5\x83\xc4\x9a\xbe\x72\x90\x32\x7b\x7d\xe2\x1b\xba\x6c\x40\x36\x2c\x8c\x9a\xff\xa1\xc1\xd9\x93\x52\x30\x28\x3c\xbf\x3f\xa3\xa4\xd0\xb0\x0f\xf2\xcb\x66\x31\xf9\x52\xbc\xb2\x01\xe9\x1d\x6d\x51\xfe\xb7\xca\x3f\xa9\xd7\x0f\xaf\xfa\x03\x82\x55\x05\x87\xe9\x8d\x1d\x23\xae\x66\x83\x4e\xf9\xcb\xf6\x18\xd4\xb0\x46\xf7\x29\xda\x36\x50\x58\x82\xa4\xb2\x9a\x9c\x0d\x2c\x89\xd8\xf0\xc4\x4a\xe7\x6d\x6c\xbb\x7c\x78\x3f\x58\xc1\x03\x1b\x21\xdf\xa0\xa2\xb9\x7d\x54\x68\x9e\xcb\x14\xca\x38\xc5\x65\xbb\x8a\x72\xd9\x92\xdc\x67\x33\xf5\x13\x60\xce\x9a\x4a\x42\x2e\xb7\xaf\x49\x06\xe1\x0e\xe8\xe0\xf6\xbb\x23\xa6\x8d\x70\x8a\xf3\x37\x91\x98\xe0\x2f\xef\xae\x3e\xdb\xbd\x4a\x79\x22\x3c\x8d\xdd\x43\x5a\xf3\xcf\xd3\xbf\x14\x97\xe2\xdf\x00\x00\x00\xff\xff\x66\xc3\xd1\xc7\x34\x07\x00\x00" func transactionsSetup_account_to_receive_royaltyCdcBytes() ([]byte, error) { return bindataRead( @@ -571,7 +571,7 @@ func transactionsSetup_account_to_receive_royaltyCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/setup_account_to_receive_royalty.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0x1f, 0xb3, 0x40, 0xa3, 0x25, 0x68, 0x24, 0x23, 0x6e, 0xd5, 0x80, 0x59, 0x1e, 0xbd, 0xfa, 0x52, 0xac, 0x7a, 0x23, 0x7a, 0xd, 0x3b, 0xc8, 0xd1, 0x56, 0x91, 0xcb, 0xdb, 0x56, 0x7, 0xf1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0xa5, 0xed, 0x7, 0xc1, 0xc2, 0x45, 0x4f, 0xc3, 0x82, 0x98, 0xf6, 0xc9, 0xe9, 0x18, 0x5a, 0x93, 0xed, 0x6, 0xf2, 0x61, 0xb7, 0xb5, 0x69, 0x81, 0xd0, 0xab, 0xca, 0x23, 0x3f, 0x84, 0x83}} return a, nil } diff --git a/tests/example_nft_test.cdc b/tests/example_nft_test.cdc index c47e450..926121c 100644 --- a/tests/example_nft_test.cdc +++ b/tests/example_nft_test.cdc @@ -202,7 +202,7 @@ fun testTransferNFT() { Test.expect(txResult, Test.beFailed()) Test.assertError( txResult, - errorMessage: "The NFT that was withdrawn to transfer is not the type that was requested!" + errorMessage: "The NFT that was withdrawn to transfer is not the type that was requested ." ) txResult = executeTransaction( @@ -213,7 +213,7 @@ fun testTransferNFT() { Test.expect(txResult, Test.beFailed()) Test.assertError( txResult, - errorMessage: "The NFT that was withdrawn to transfer is not the type that was requested!" + errorMessage: "The NFT that was withdrawn to transfer is not the type that was requested ." ) } @@ -232,7 +232,7 @@ fun testTransferMissingNFT() { Test.expect(txResult, Test.beFailed()) Test.assertError( txResult, - errorMessage: "ExampleNFT.Collection.withdraw: Could not withdraw an NFT with the ID=10. Check the submitted ID to make sure it is one that this collection owns", + errorMessage: "ExampleNFT.Collection.withdraw: Could not withdraw an NFT with ID 10. Check the submitted ID to make sure it is one that this collection owns.", ) } @@ -271,7 +271,7 @@ fun testBorrowMissingNFT() { Test.expect(scriptResult, Test.beFailed()) Test.assertError( scriptResult, - errorMessage: "The NFT with id=10 does not exist in the collection!" + errorMessage: "The NFT with id 10 does not exist in the collection!" ) } @@ -326,7 +326,7 @@ fun testGetMissingContractStoragePath() { Test.expect(scriptResult, Test.beFailed()) Test.assertError( scriptResult, - errorMessage: "Could not borrow ViewResolver reference to the contract. Make sure the provided contract name (ContractOne) and address (0x0000000000000007) are correct!" + errorMessage: "Could not borrow ViewResolver reference to the contract. Make sure the provided contract name ContractOne and address 0x0000000000000007 are correct!" ) } diff --git a/tests/nft_forwarding_test.cdc b/tests/nft_forwarding_test.cdc index 001623f..f1a5616 100644 --- a/tests/nft_forwarding_test.cdc +++ b/tests/nft_forwarding_test.cdc @@ -23,7 +23,7 @@ access(all) fun setup() { access(all) fun testCreateForwarderFails() { - let expectedErrorMessage = "The Recipient has not configured their account with an NFT Collection at the given public path=/public/exampleNFTCollection" + let expectedErrorMessage = "The recipient with address 0x000000000000001b has not configured their account with an NFT Collection at the given public path /public/exampleNFTCollection." let expectedErrorType = ErrorType.TX_PANIC // Setup Collection in forwarder @@ -43,6 +43,7 @@ access(all) fun testCreateForwarderFails() { access(all) fun testCreateForwarder() { // Setup Collection in recipient let recipientSetupSuccess: Bool = txExecutor("setup_account.cdc", [recipient], [], nil, nil) + Test.assertEqual(true, recipientSetupSuccess) // Create forwarder in forwarding account let forwarderSetupSuccess: Bool = txExecutor( diff --git a/transactions/destroy_nft.cdc b/transactions/destroy_nft.cdc index ddeaa9d..de1b0ec 100644 --- a/transactions/destroy_nft.cdc +++ b/transactions/destroy_nft.cdc @@ -19,7 +19,7 @@ transaction(id: UInt64) { from: collectionData.storagePath ) ?? panic("The signer does not store an ExampleNFT.Collection object at the path " .concat(collectionData.storagePath.toString()) - .concat("The signer must initialize their account with this collection first!")) + .concat(". The signer must initialize their account with this collection first!")) } @@ -32,6 +32,6 @@ transaction(id: UInt64) { } post { - !self.collectionRef.getIDs().contains(id): "The NFT with the specified ID should have been deleted" + !self.collectionRef.getIDs().contains(id): "The NFT with the specified ID should have been deleted." } } diff --git a/transactions/generic_transfer_with_address.cdc b/transactions/generic_transfer_with_address.cdc index 6baf1a7..5918fc6 100644 --- a/transactions/generic_transfer_with_address.cdc +++ b/transactions/generic_transfer_with_address.cdc @@ -46,9 +46,9 @@ transaction(to: Address, id: UInt64, contractAddress: Address, contractName: Str from: self.collectionData.storagePath ) ?? panic("The signer does not store a " .concat(contractName) - .concat(".Collection object at the path ") + .concat(" Collection object at the path ") .concat(self.collectionData.storagePath.toString()) - .concat("The signer must initialize their account with this collection first!")) + .concat(". The signer must initialize their account with this collection first!")) self.tempNFT <- withdrawRef.withdraw(withdrawID: id) @@ -61,16 +61,17 @@ transaction(to: Address, id: UInt64, contractAddress: Address, contractName: Str let type = CompositeType(typeString) assert( type != nil, - message: "Could not create a type out of the contract name (" + message: "Could not create a type out of the contract name " .concat(contractName) - .concat(") and address (") + .concat(" and address ") .concat(addressString) - .concat(")!") + .concat("!") ) assert( self.tempNFT.getType() == type!, - message: "The NFT that was withdrawn to transfer is not the type that was requested!" + message: "The NFT that was withdrawn to transfer is not the type that was requested <" + .concat(typeString).concat(">.") ) } diff --git a/transactions/generic_transfer_with_address_and_type.cdc b/transactions/generic_transfer_with_address_and_type.cdc index a156642..8c9e9a5 100644 --- a/transactions/generic_transfer_with_address_and_type.cdc +++ b/transactions/generic_transfer_with_address_and_type.cdc @@ -32,8 +32,8 @@ transaction(to: Address, id: UInt64, contractAddress: Address, contractName: Str // Borrow a reference to the nft contract deployed to the passed account let resolverRef = getAccount(contractAddress) .contracts.borrow<&{NonFungibleToken}>(name: contractName) - ?? panic("Could not borrow NonFungibleToken reference to the contract. Make sure the provided contract name (" - .concat(contractName).concat(") and address (").concat(contractAddress.toString()).concat(") are correct!")) + ?? panic("Could not borrow NonFungibleToken reference to the contract. Make sure the provided contract name " + .concat(contractName).concat(" and address ").concat(contractAddress.toString()).concat(" are correct!")) // Use that reference to retrieve the NFTCollectionData view self.collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type()) as! MetadataViews.NFTCollectionData? @@ -45,7 +45,7 @@ transaction(to: Address, id: UInt64, contractAddress: Address, contractName: Str from: self.collectionData.storagePath ) ?? panic("The signer does not store a " .concat(contractName) - .concat(".Collection object at the path ") + .concat(" Collection object at the path ") .concat(self.collectionData.storagePath.toString()) .concat("The signer must initialize their account with this collection first!")) @@ -60,16 +60,17 @@ transaction(to: Address, id: UInt64, contractAddress: Address, contractName: Str let type = CompositeType(typeString) assert( type != nil, - message: "Could not create a type out of the contract name (" + message: "Could not create a type out of the contract name " .concat(contractName) - .concat(") and address (") + .concat(" and address ") .concat(addressString) - .concat(")!") + .concat("!") ) assert( self.tempNFT.getType() == type!, - message: "The NFT that was withdrawn to transfer is not the type that was requested!" + message: "The NFT that was withdrawn to transfer is not the type that was requested <" + .concat(typeString).concat(">.") ) } diff --git a/transactions/generic_transfer_with_paths.cdc b/transactions/generic_transfer_with_paths.cdc index a7cc79c..d1a54a1 100644 --- a/transactions/generic_transfer_with_paths.cdc +++ b/transactions/generic_transfer_with_paths.cdc @@ -33,7 +33,7 @@ transaction(to: Address, id: UInt64, senderPathIdentifier: String, receiverPathI // borrow a reference to the signer's NFT collection let withdrawRef = signer.storage.borrow( from: storagePath - ) ?? panic("The signer does not store a {NonFungibleToken.Collection} object at the path " + ) ?? panic("The signer does not store a NonFungibleToken Collection object at the path " .concat(storagePath.toString()) .concat("The signer must initialize their account with this collection first!")) @@ -42,9 +42,9 @@ transaction(to: Address, id: UInt64, senderPathIdentifier: String, receiverPathI execute { let publicPath = PublicPath(identifier: receiverPathIdentifier) - ?? panic("Could not construct a public path from the provided path identifier string (" + ?? panic("Could not construct a public path from the provided path identifier string \"" .concat(receiverPathIdentifier) - .concat(")")) + .concat("\".")) // get the recipients public account object let recipient = getAccount(to) diff --git a/transactions/mint_nft.cdc b/transactions/mint_nft.cdc index a35ad71..061cd02 100644 --- a/transactions/mint_nft.cdc +++ b/transactions/mint_nft.cdc @@ -62,9 +62,9 @@ transaction( if !beneficiaryCapability.check() { panic("The royalty beneficiary " .concat(beneficiary.toString()) - .concat(" does not have a FungibleToken Receiver configured at") + .concat(" does not have a FungibleToken Receiver configured at ") .concat(MetadataViews.getRoyaltyReceiverPublicPath().toString()) - .concat(". They should set up a FungibleTokenSwitchboard receiver at this path to receive any type of Fungible Token")) + .concat(". They should set up a FungibleTokenSwitchboard Receiver at this path to receive any type of Fungible Token")) } royalties.append( diff --git a/transactions/nft-forwarding/change_forwarder_recipient.cdc b/transactions/nft-forwarding/change_forwarder_recipient.cdc index 6b7c229..3b67079 100644 --- a/transactions/nft-forwarding/change_forwarder_recipient.cdc +++ b/transactions/nft-forwarding/change_forwarder_recipient.cdc @@ -14,7 +14,7 @@ transaction(newRecipientAddress: Address, collectionPublicPath: PublicPath) { // borrow reference to NFTForwarder resource self.forwarderRef = signer.storage.borrow( from: NFTForwarding.StoragePath - ) ?? panic("Could not borrow reference to NFTForwarder in the signer's account at path=".concat(NFTForwarding.StoragePath.toString())) + ) ?? panic("Could not borrow reference to NFTForwarder in the signer's account at path ".concat(NFTForwarding.StoragePath.toString())) // get Collection Capability from the recipientAddress account self.newRecipientCollection = getAccount(newRecipientAddress).capabilities.get<&{NonFungibleToken.Collection}>( diff --git a/transactions/nft-forwarding/create_forwarder.cdc b/transactions/nft-forwarding/create_forwarder.cdc index eb1a8e6..56ccd46 100644 --- a/transactions/nft-forwarding/create_forwarder.cdc +++ b/transactions/nft-forwarding/create_forwarder.cdc @@ -15,7 +15,9 @@ transaction(recipientAddress: Address, collectionPublicPath: PublicPath) { ) if !recipientCollectionCap.check() { - panic("The Recipient has not configured their account with an NFT Collection at the given public path=".concat(collectionPublicPath.toString())) + panic("The recipient with address ".concat(recipientAddress.toString()) + .concat(" has not configured their account with an NFT Collection at the given public path ") + .concat(collectionPublicPath.toString()).concat(".")) } // create a new NFTForwarder resource & save in storage, forwarding to the recipient's Collection diff --git a/transactions/nft-forwarding/transfer_nft_to_receiver.cdc b/transactions/nft-forwarding/transfer_nft_to_receiver.cdc index 05e393c..9c8d1d3 100644 --- a/transactions/nft-forwarding/transfer_nft_to_receiver.cdc +++ b/transactions/nft-forwarding/transfer_nft_to_receiver.cdc @@ -20,8 +20,8 @@ transaction( // get the collection data from the NFT contract let nftContract = getAccount(contractAddress).contracts.borrow<&{ViewResolver}>(name: contractName) - ?? panic("Could not borrow ViewResolver reference to the contract. Make sure the provided contract name (" - .concat(contractName).concat(") and address (").concat(contractAddress.toString()).concat(") are correct!")) + ?? panic("Could not borrow ViewResolver reference to the contract. Make sure the provided contract name " + .concat(contractName).concat(" and address ").concat(contractAddress.toString()).concat(" are correct!")) let collectionData = nftContract.resolveContractView(resourceType: nil, viewType: Type()) as MetadataViews.NFTCollectionData? ?? panic("Could not resolve NFTCollectionData view. The ".concat(contractName).concat(" contract needs to implement the NFTCollectionData Metadata view in order to execute this transaction")) diff --git a/transactions/scripts/borrow_nft.cdc b/transactions/scripts/borrow_nft.cdc index 1d8e1b2..cad1d4a 100644 --- a/transactions/scripts/borrow_nft.cdc +++ b/transactions/scripts/borrow_nft.cdc @@ -14,9 +14,9 @@ access(all) fun main(address: Address, id: UInt64) { collectionData.publicPath ) ?? panic("The account ".concat(address.toString()).concat(" does not have a NonFungibleToken Collection at ") .concat(collectionData.publicPath.toString()) - .concat("The account must initialize their account with this collection first!")) + .concat(". The account must initialize their account with this collection first!")) // Borrow a reference to a specific NFT in the collection let _ = collectionRef.borrowNFT(id) - ?? panic("The NFT with id=".concat(id.toString()).concat(" does not exist in the collection!")) + ?? panic("The NFT with id ".concat(id.toString()).concat(" does not exist in the collection!")) } diff --git a/transactions/scripts/get_collection_ids.cdc b/transactions/scripts/get_collection_ids.cdc index b0d90ff..fc0040f 100644 --- a/transactions/scripts/get_collection_ids.cdc +++ b/transactions/scripts/get_collection_ids.cdc @@ -9,7 +9,7 @@ access(all) fun main(address: Address, collectionPublicPath: PublicPath): [UInt6 collectionPublicPath ) ?? panic("The account ".concat(address.toString()).concat(" does not have a NonFungibleToken Collection at ") .concat(collectionPublicPath.toString()) - .concat("The account must initialize their account with this collection first!")) + .concat(". The account must initialize their account with this collection first!")) return collectionRef.getIDs() } diff --git a/transactions/scripts/get_collection_length.cdc b/transactions/scripts/get_collection_length.cdc index d1c2062..540eca2 100644 --- a/transactions/scripts/get_collection_length.cdc +++ b/transactions/scripts/get_collection_length.cdc @@ -12,7 +12,7 @@ access(all) fun main(address: Address): Int { collectionData.publicPath ) ?? panic("The account ".concat(address.toString()).concat(" does not have a NonFungibleToken Collection at ") .concat(collectionData.publicPath.toString()) - .concat("The account must initialize their account with this collection first!")) + .concat(". The account must initialize their account with this collection first!")) return collectionRef.getLength() } diff --git a/transactions/scripts/get_collection_length_from_storage.cdc b/transactions/scripts/get_collection_length_from_storage.cdc index e74b094..9639436 100644 --- a/transactions/scripts/get_collection_length_from_storage.cdc +++ b/transactions/scripts/get_collection_length_from_storage.cdc @@ -13,7 +13,7 @@ access(all) fun main(address: Address): Int { ) ?? panic("The account ".concat(address.toString()) .concat(" does not store an ExampleNFT.Collection object at the path ") .concat(collectionData.storagePath.toString()) - .concat("The account must initialize their account with this collection first!")) + .concat(". The account must initialize their account with this collection first!")) return collectionRef.getLength() } diff --git a/transactions/scripts/get_contract_storage_path.cdc b/transactions/scripts/get_contract_storage_path.cdc index f9568ee..1f87bef 100644 --- a/transactions/scripts/get_contract_storage_path.cdc +++ b/transactions/scripts/get_contract_storage_path.cdc @@ -4,8 +4,8 @@ import "ViewResolver" access(all) fun main(addr: Address, name: String): StoragePath? { let t = Type() let borrowedContract = getAccount(addr).contracts.borrow<&{ViewResolver}>(name: name) - ?? panic("Could not borrow ViewResolver reference to the contract. Make sure the provided contract name (" - .concat(name).concat(") and address (").concat(addr.toString()).concat(") are correct!")) + ?? panic("Could not borrow ViewResolver reference to the contract. Make sure the provided contract name " + .concat(name).concat(" and address ").concat(addr.toString()).concat(" are correct!")) let view = borrowedContract.resolveContractView(resourceType: nil, viewType: t) if view == nil { diff --git a/transactions/scripts/get_nft_metadata.cdc b/transactions/scripts/get_nft_metadata.cdc index 79ca366..42ae0a6 100644 --- a/transactions/scripts/get_nft_metadata.cdc +++ b/transactions/scripts/get_nft_metadata.cdc @@ -96,10 +96,10 @@ access(all) fun main(address: Address, id: UInt64): NFT { collectionData.publicPath ) ?? panic("The account ".concat(address.toString()).concat(" does not have a NonFungibleToken Collection at ") .concat(collectionData.publicPath.toString()) - .concat("The account must initialize their account with this collection first!")) + .concat(". The account must initialize their account with this collection first!")) let nft = collection.borrowNFT(id) - ?? panic("Could not borrow a reference to an ExampleNFT NFT with the id=".concat(id.toString())) + ?? panic("Could not borrow a reference to an ExampleNFT NFT with id ".concat(id.toString())) // Get the basic display information for this NFT let display = MetadataViews.getDisplay(nft)! diff --git a/transactions/scripts/get_nft_view.cdc b/transactions/scripts/get_nft_view.cdc index a682199..84d2120 100644 --- a/transactions/scripts/get_nft_view.cdc +++ b/transactions/scripts/get_nft_view.cdc @@ -73,10 +73,10 @@ access(all) fun main(address: Address, id: UInt64): NFTView { collectionData.publicPath ) ?? panic("The account ".concat(address.toString()).concat(" does not have a NonFungibleToken Collection at ") .concat(collectionData.publicPath.toString()) - .concat("The account must initialize their account with this collection first!")) + .concat(". The account must initialize their account with this collection first!")) let viewResolver = collection.borrowViewResolver(id: id) - ?? panic("Could not borrow resolver with given id") + ?? panic("Could not borrow resolver with given id ".concat(id.toString())) let nftView = MetadataViews.getNFTView(id: id, viewResolver : viewResolver) diff --git a/transactions/scripts/get_views.cdc b/transactions/scripts/get_views.cdc index 68bc22b..202c120 100644 --- a/transactions/scripts/get_views.cdc +++ b/transactions/scripts/get_views.cdc @@ -19,6 +19,6 @@ access(all) fun main(address: Address, id: UInt64): [Type] { // Borrow a reference to a specific NFT in the collection let nft = collectionRef.borrowNFT(id) - ?? panic("Could not get a reference to the ExampleNFT NFT with id=".concat(id.toString())) + ?? panic("Could not get a reference to the ExampleNFT NFT with id ".concat(id.toString())) return nft.getViews() } diff --git a/transactions/setup_account_from_nft_reference.cdc b/transactions/setup_account_from_nft_reference.cdc index 95c633d..44be989 100644 --- a/transactions/setup_account_from_nft_reference.cdc +++ b/transactions/setup_account_from_nft_reference.cdc @@ -10,14 +10,14 @@ transaction(address: Address, publicPath: PublicPath, id: UInt64) { prepare(signer: auth(IssueStorageCapabilityController, PublishCapability, SaveValue) &Account) { let collection = getAccount(address).capabilities.borrow<&{NonFungibleToken.Collection}>(publicPath) - ?? panic("Could not borrow a reference to the NonFungibleToken collection for the account with Address " + ?? panic("Could not borrow a reference to the NonFungibleToken Collection for the account with Address " .concat(address.toString()) .concat(" at path ") .concat(publicPath.toString()) .concat(". The account needs to set up their collection first")) let nftRef = collection.borrowNFT(id) - ?? panic("Could not borrow a reference to the desired NFT with id=" + ?? panic("Could not borrow a reference to the desired NFT with id " .concat(id.toString())) let collectionData = nftRef.resolveView(Type())! as! MetadataViews.NFTCollectionData diff --git a/transactions/setup_account_to_receive_royalty.cdc b/transactions/setup_account_to_receive_royalty.cdc index 67df362..ec45ae7 100644 --- a/transactions/setup_account_to_receive_royalty.cdc +++ b/transactions/setup_account_to_receive_royalty.cdc @@ -17,13 +17,13 @@ transaction(vaultPath: StoragePath) { // Return early if the account doesn't have a FungibleToken Vault if signer.storage.borrow<&{FungibleToken.Vault}>(from: vaultPath) == nil { - panic("Cannot setup the signer account to receive royalties: A vault for the specified fungible token path (" + panic("Cannot setup the signer account to receive royalties: A vault for the specified fungible token path " .concat(vaultPath.toString()) - .concat(") does not exist. The account should initialize that FungibleToken in their storage first!")) + .concat(" does not exist. The account should initialize that Fungible Token in their storage first!")) } if signer.storage.type(at: vaultPath) == nil { - panic("A vault for the specified fungible token path does not exist") + panic("A vault for the specified fungible token path ".concat(" does not exist.")) } // Create a public capability to the Vault that only exposes