diff --git a/contracts/FungibleToken-v2.cdc b/contracts/FungibleToken-v2.cdc index 5655f31..3703979 100644 --- a/contracts/FungibleToken-v2.cdc +++ b/contracts/FungibleToken-v2.cdc @@ -51,16 +51,6 @@ access(all) contract FungibleToken { /// The event that is emitted when tokens are deposited to a Vault access(all) event Deposit(amount: UFix64, to: Address?, type: String) - /// Event emitted when tokens are destroyed - access(all) event Burn(amount: UFix64, type: String) - - access(self) fun emitBurnEvent(amount: UFix64, type: String): Bool { - if amount >= 0.0 { - emit Burn(amount: amount, type: type) - } - return true - } - /// Provider /// /// The interface that enforces the requirements for withdrawing @@ -132,6 +122,8 @@ access(all) contract FungibleToken { /// access(all) resource interface Vault: Receiver, Provider, ViewResolver.Resolver { + //access(all) event ResourceDestroyed(balance: UFix64 = self.getBalance(), type: Type = self.getType().identifier) + /// Get the balance of the vault access(all) view fun getBalance(): UFix64 @@ -205,11 +197,5 @@ access(all) contract FungibleToken { result.getBalance() == 0.0: "The newly created Vault must have zero balance" } } - - destroy() { - // pre { - // FungibleToken.emitBurnEvent(amount: self.getBalance(), type: self.getType().identifier) - // } - } } } \ No newline at end of file diff --git a/contracts/utility/NonFungibleToken.cdc b/contracts/utility/NonFungibleToken.cdc index 85667a9..f2b8fb7 100644 --- a/contracts/utility/NonFungibleToken.cdc +++ b/contracts/utility/NonFungibleToken.cdc @@ -48,9 +48,29 @@ import ViewResolver from "ViewResolver" /// access(all) contract NonFungibleToken { - // An entitlement for allowing the withdrawal of tokens from a Vault + /// An entitlement for allowing the withdrawal of tokens from a Vault access(all) entitlement Withdrawable + /// An entitlement for allowing updates and update events for an NFT + access(all) entitlement Updatable + + /// Event that contracts should emit when the metadata of an NFT is updated + /// It can only be emitted by calling the `emitNFTUpdated` function + /// with an `Updatable` entitled reference to the NFT that was updated + /// The entitlement prevents spammers from calling this from other users' collections + /// because only code within a collection or that has special entitled access + /// to the collections methods will be able to get the entitled reference + /// + /// The event makes it so that third-party indexers can monitor the events + /// and query the updated metadata from the owners' collections. + /// + access(all) event Updated(id: UInt64, uuid: UInt64, owner: Address?, type: String) + access(all) view fun emitNFTUpdated(_ nftRef: auth(Updatable) &{NonFungibleToken.NFT}) + { + emit Updated(id: nftRef.getID(), uuid: nftRef.uuid, owner: nftRef.owner?.address, type: nftRef.getType().identifier) + } + + /// Event that is emitted when a token is withdrawn, /// indicating the owner of the collection that it was withdrawn from. /// @@ -58,82 +78,40 @@ access(all) contract NonFungibleToken { /// access(all) event Withdraw(id: UInt64, uuid: UInt64, from: Address?, type: String) - access(self) view fun emitNFTWithdraw(id: UInt64, uuid: UInt64, from: Address?, type: String): Bool - { - emit Withdraw(id: id, uuid: uuid, from: from, type: type) - return true - } - /// Event that emitted when a token is deposited to a collection. /// /// It indicates the owner of the collection that it was deposited to. /// access(all) event Deposit(id: UInt64, uuid: UInt64, to: Address?, type: String) - access(self) view fun emitNFTDeposit(id: UInt64, uuid: UInt64, to: Address?, type: String): Bool - { - emit Deposit(id: id, uuid: uuid, to: to, type: type) - return true - } - - /// Transfer - /// - /// The event that should be emitted when tokens are transferred from one account to another - /// - access(all) event Transfer(id: UInt64, uuid: UInt64, from: Address?, to: Address?, type: String) - - access(self) view fun emitNFTTransfer(id: UInt64, uuid: UInt64?, from: Address?, to: Address?, type: String?): Bool - { - // The transfer method can return false even if it didn't do a transfer - // in which case we don't want the event to be emitted - if uuid != nil && type != nil { - emit Transfer(id: id, uuid: uuid!, from: from, to: to, type: type!) - return true - } else { - return true - } - } - - /// Destroy - /// - /// The event that should be emitted when an NFT is destroyed - access(all) event Destroy(id: UInt64, uuid: UInt64, type: String) - - access(self) view fun emitNFTDestroy(id: UInt64, uuid: UInt64, type: String): Bool - { - emit Destroy(id: id, uuid: uuid, type: type) - return true - } - /// Interface that the NFTs must conform to /// access(all) resource interface NFT: ViewResolver.Resolver { /// The unique ID that each NFT has - access(all) view fun getID(): UInt64 { - return self.uuid - } + access(all) view fun getID(): UInt64 - // access(all) view fun getViews(): [Type] { - // return [] - // } - // access(all) fun resolveView(_ view: Type): AnyStruct? { - // return nil - // } + // access(all) event ResourceDestroyed(uuid: UInt64 = self.uuid, type: Type = self.getType().identifier) - destroy() { - pre { - NonFungibleToken.emitNFTDestroy(id: self.getID(), uuid: self.uuid, type: self.getType().identifier) - } + /// Get a reference to an NFT that this NFT owns + /// Both arguments are optional to allow the NFT to choose + /// how it returns sub NFTs depending on what arguments are provided + /// For example, if `type` has a value, but `id` doesn't, the NFT + /// can choose which NFT of that type to return if there is a "default" + /// If both are `nil`, then NFTs that only store a single NFT can just return + /// that. This helps callers who aren't sure what they are looking for + /// + /// @param type: The Type of the desired NFT + /// @param id: The id of the NFT to borrow + /// + /// @return A structure representing the requested view. + access(all) fun getSubNFT(type: Type, id: UInt64) : &{NonFungibleToken.NFT}? { + return nil } } /// Interface to mediate withdraws from the Collection /// access(all) resource interface Provider { - /// Function for projects to indicate if they are using UUID or not - access(all) view fun usesUUID(): Bool { - return false - } // We emit withdraw events from the provider interface because conficting withdraw // events aren't as confusing to event listeners as conflicting deposit events @@ -143,53 +121,9 @@ access(all) contract NonFungibleToken { access(Withdrawable) fun withdraw(withdrawID: UInt64): @{NFT} { post { result.getID() == withdrawID: "The ID of the withdrawn token must be the same as the requested ID" - NonFungibleToken.emitNFTWithdraw(id: result.getID(), uuid: result.uuid, from: self.owner?.address, type: result.getType().identifier) - } - } - - /// Alternate withdraw methods - /// The next three withdraw methods allow projects to have more flexibility - /// to indicate how their NFTs are meant to be used - /// With the v2 upgrade, some projects will be using UUID and others - /// will be using custom IDs, so projects can pick and choose which - /// of these withdraw methods applies to them - - /// TODO: These will eventually have optional return types, but don't right now - /// because of a bug in Cadence - - /// withdrawWithUUID removes an NFT from the collection, using its UUID, and moves it to the caller - access(Withdrawable) fun withdrawWithUUID(_ uuid: UInt64): @{NFT} { - post { - result == nil || result!.uuid == uuid: "The ID of the withdrawn token must be the same as the requested ID" - NonFungibleToken.emitNFTWithdraw(id: result.getID(), uuid: result.uuid, from: self.owner?.address, type: result.getType().identifier) + emit Withdraw(id: result.getID(), uuid: result.uuid, from: self.owner?.address, type: result.getType().identifier) } } - - /// withdrawWithType removes an NFT from the collection, using its Type and ID and moves it to the caller - /// This would be used by a collection that can store multiple NFT types - access(Withdrawable) fun withdrawWithType(type: Type, withdrawID: UInt64): @{NFT} { - post { - result == nil || result.getID() == withdrawID: "The ID of the withdrawn token must be the same as the requested ID" - NonFungibleToken.emitNFTWithdraw(id: result.getID(), uuid: result.uuid, from: self.owner?.address, type: result.getType().identifier) - } - } - - /// withdrawWithTypeAndUUID removes an NFT from the collection using its type and uuid and moves it to the caller - /// This would be used by a collection that can store multiple NFT types - access(Withdrawable) fun withdrawWithTypeAndUUID(type: Type, uuid: UInt64): @{NFT} { - post { - result == nil || result!.uuid == uuid: "The ID of the withdrawn token must be the same as the requested ID" - NonFungibleToken.emitNFTWithdraw(id: result.getID(), uuid: result.uuid, from: self.owner?.address, type: result.getType().identifier) - } - } - } - - /// Interface to mediate transfers between Collections - /// - access(all) resource interface Transferor { - /// transfer removes an NFT from the callers collection - /// and moves it to the collection specified by `receiver` - access(Withdrawable) fun transfer(id: UInt64, receiver: Capability<&{Receiver}>): Bool } /// Interface to mediate deposits to the Collection @@ -200,64 +134,37 @@ access(all) contract NonFungibleToken { /// access(all) fun deposit(token: @{NFT}) - // /// getSupportedNFTTypes returns a list of NFT types that this receiver accepts - // access(all) view fun getSupportedNFTTypes(): {Type: Bool} { - // return {} - // } + /// getSupportedNFTTypes returns a list of NFT types that this receiver accepts + access(all) view fun getSupportedNFTTypes(): {Type: Bool} - // /// Returns whether or not the given type is accepted by the collection - // /// A collection that can accept any type should just return true by default - // access(all) view fun isSupportedNFTType(type: Type): Bool { - // return false - // } + /// Returns whether or not the given type is accepted by the collection + /// A collection that can accept any type should just return true by default + access(all) view fun isSupportedNFTType(type: Type): Bool } /// Requirement for the concrete resource type /// to be declared in the implementing contract /// - access(all) resource interface Collection: Provider, Receiver, Transferor, ViewResolver.ResolverCollection { + access(all) resource interface Collection: Provider, Receiver, ViewResolver.ResolverCollection { /// Return the default storage path for the collection - access(all) view fun getDefaultStoragePath(): StoragePath? { - return nil - } + access(all) view fun getDefaultStoragePath(): StoragePath? /// Return the default public path for the collection - access(all) view fun getDefaultPublicPath(): PublicPath? { - return nil - } + access(all) view fun getDefaultPublicPath(): PublicPath? /// Normally we would require that the collection specify /// a specific dictionary to store the NFTs, but this isn't necessary any more /// as long as all the other functions are there - /// Returns the NFT types that this collection can store - /// If the collection can accept any NFT type, it should return - /// a one element dictionary with the key type as `@{NonFungibleToken.NFT}` - access(all) view fun getSupportedNFTTypes(): {Type: Bool} { - pre { true: "dummy" } - } - - /// Returns whether or not the given type is accepted by the collection - access(all) view fun isSupportedNFTType(type: Type): Bool { - pre { true: "dummy" } - } - /// createEmptyCollection creates an empty Collection /// and returns it to the caller so that they can own NFTs access(all) fun createEmptyCollection(): @{Collection} { post { - result.getIDs().length == 0: "The created collection must be empty!" + result.getLength() == 0: "The created collection must be empty!" } } - // access(all) view fun usesUUID(): Bool { - // return false - // } - - /// withdraw removes an NFT from the collection and moves it to the caller - access(Withdrawable) fun withdraw(withdrawID: UInt64): @{NonFungibleToken.NFT} - /// deposit takes a NFT and adds it to the collections dictionary /// and adds the ID to the id array access(all) fun deposit(token: @{NonFungibleToken.NFT}) { @@ -266,44 +173,14 @@ access(all) contract NonFungibleToken { // because the `Collection` interface is almost always the final destination // of tokens and deposit emissions from custom receivers could be confusing // and hard to reconcile to event listeners - NonFungibleToken.emitNFTDeposit(id: token.getID(), uuid: token.uuid, to: self.owner?.address, type: token.getType().identifier) + emit Deposit(id: token.getID(), uuid: token.uuid, to: self.owner?.address, type: token.getType().identifier) } } - /// Function for a direct transfer instead of having to do a deposit and withdrawal - /// This can and should return false if the transfer doesn't succeed and true if it does succeed - /// - access(Withdrawable) fun transfer(id: UInt64, receiver: Capability<&{NonFungibleToken.Receiver}>): Bool { - pre { - receiver.check(): "Could not borrow a reference to the NFT receiver" - self.getIDs().contains(id): "The collection does not contain the specified ID" - NonFungibleToken.emitNFTTransfer(id: id, uuid: self.borrowNFTSafe(id: id)?.uuid, from: self.owner?.address, to: receiver.borrow()?.owner?.address, type: self.borrowNFT(id).getType().identifier) - } - } - - /// getIDs returns an array of the IDs that are in the collection - access(all) view fun getIDs(): [UInt64] - /// Gets the amount of NFTs stored in the collection access(all) view fun getLength(): Int - /// getIDsWithTypes returns a list of IDs that are in the collection, keyed by type - /// Should only be used by collections that can store multiple NFT types - access(all) view fun getIDsWithTypes(): {Type: [UInt64]} - - /// Returns a borrowed reference to an NFT in the collection - /// so that the caller can read data and call methods from it - access(all) view fun borrowNFT(_ id: UInt64): &{NonFungibleToken.NFT} { - pre { true: "dummy" } - } - - /// From the ViewResolver Contract - /// borrows a reference to get metadata views for the NFTs that the contract contains - access(all) view fun borrowViewResolver(id: UInt64): &{ViewResolver.Resolver}? { - pre { true: "dummy" } - } - - access(all) view fun borrowNFTSafe(id: UInt64): &{NonFungibleToken.NFT}? { + access(all) view fun borrowNFT(_ id: UInt64): &{NonFungibleToken.NFT}? { post { (result == nil) || (result?.getID() == id): "Cannot borrow NFT reference: The ID of the returned reference does not match the ID that was specified" diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 4699b2d..9886ad1 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -2,13 +2,13 @@ // sources: // ../../../contracts/ExampleToken-v2.cdc (11.769kB) // ../../../contracts/ExampleToken.cdc (11.958kB) -// ../../../contracts/FungibleToken-v2.cdc (8.896kB) +// ../../../contracts/FungibleToken-v2.cdc (8.511kB) // ../../../contracts/FungibleToken.cdc (10.016kB) // ../../../contracts/FungibleTokenMetadataViews.cdc (7.408kB) // ../../../contracts/FungibleTokenSwitchboard.cdc (18.059kB) // ../../../contracts/MultipleVaults.cdc (775B) // ../../../contracts/utility/MetadataViews.cdc (26.648kB) -// ../../../contracts/utility/NonFungibleToken.cdc (13.408kB) +// ../../../contracts/utility/NonFungibleToken.cdc (8.173kB) // ../../../contracts/utility/PrivateReceiverForwarder.cdc (2.699kB) // ../../../contracts/utility/TokenForwarding.cdc (5.29kB) // ../../../contracts/utility/ViewResolver.cdc (1.749kB) @@ -121,7 +121,7 @@ func exampletokenCdc() (*asset, error) { return a, nil } -var _fungibletokenV2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x59\x4b\x93\xdb\x36\xf2\xbf\xf3\x53\x74\x4d\x0e\x96\xf2\x57\x24\x1f\xfe\xb5\x07\xd5\x3a\x8e\x9d\xc4\x5b\xb9\x6c\xa5\xe2\x59\xfb\xb0\xb5\x55\x82\xc8\xa6\x88\x18\x04\x18\x00\x94\xac\x9d\x9a\xef\xbe\xd5\x0d\x80\x2f\x51\x33\xb2\xb7\x72\xd8\x39\xd8\x14\x49\xf4\xfb\xf1\xeb\xe6\xe6\xdb\x6f\xb3\xec\x1b\xb8\xaf\x10\xde\x29\x73\x82\x77\xad\x3e\xc8\xbd\x42\xb8\x37\x9f\x50\x83\xf3\x42\x17\xc2\x16\x59\xf6\xcd\x37\xb0\x4b\x0f\xf9\xd9\x0e\x72\xa3\xbd\x15\xb9\xcf\x32\x3e\x3e\x7f\x12\xa4\x03\x6d\x40\x19\x7d\x40\x0b\x42\x83\xd4\x1e\x6d\x29\x72\xcc\x7c\x25\x3c\x08\xa5\xa0\x4c\x47\x3d\x1f\x4d\x74\x1d\x9c\x4c\xab\x0a\xa8\xc4\x91\x1e\xd1\xfd\xd2\xd8\x1a\xbc\x59\x67\xd9\x2f\x25\x08\x68\x1d\x5a\x07\x27\xa1\xbd\xa3\x17\x0a\x6c\x94\x39\x83\x00\x8d\xa7\x09\xad\x15\xf8\x0a\xa5\xed\x65\x2e\x0c\x92\x60\x1e\x34\x62\x41\x87\x65\xdd\x28\xac\x51\x7b\x7a\x13\x46\xaa\xf6\x32\xaf\x60\xdf\xfa\x48\x8a\x19\xb8\xac\x30\x57\x48\x74\x87\x1c\x14\x58\x4a\x8d\x05\x48\x0d\xbe\x92\xae\x93\x62\x1d\xec\xfa\x41\xb4\xca\xef\xc0\xa2\x33\xad\xcd\x07\x27\xb3\xec\x67\x91\x57\x53\xfb\x74\xef\xf9\x73\x83\xcc\xdc\x5d\x72\xbf\x4e\x34\x32\xfd\xd5\x9a\xa3\x2c\xd0\xee\x56\xb0\xfb\x0d\x73\x94\x47\xbe\x16\xba\x80\xdd\x5b\xa1\x84\xce\x71\xee\xb4\x63\x6f\xbb\x89\x7a\xb9\x12\x16\xa1\xb1\xf8\x5d\x6e\x74\x21\xbd\x34\xda\x31\xa9\xc6\x38\x3f\xbc\xc7\x3e\xb7\xe8\xbc\x95\xb9\xcf\x48\x50\xfc\x8c\x79\x4b\x0f\xc1\x94\x2c\x79\xd9\xea\x3c\xbc\xcc\xe6\x42\x60\x4d\xd6\xcc\xf7\x0c\xc4\xc7\x61\x23\xac\xf0\x08\x7b\xcc\x45\x4b\xb2\x78\x38\xc8\x23\x3a\x7e\x9d\x82\x82\x2f\xc4\x5e\x2a\xe9\xcf\x64\x1b\x57\x09\x8b\x99\x00\x8b\x25\x5a\xd4\x39\xc7\x53\x70\x23\x53\x0f\x72\x19\xad\xce\x80\x9f\x1b\xe3\x22\xa9\x52\xa2\x2a\x5c\x2f\x51\x26\x35\x18\x8d\x60\x2c\xd4\xc6\x62\x92\xb8\x37\x05\x05\x26\xc5\xb4\x33\x51\xa0\x10\xa1\x13\x69\x6a\xf1\x09\x21\x6f\x9d\x37\x75\x67\xe1\x68\x9a\xce\x89\x64\x9b\xb1\x95\x29\xc0\x0d\x1c\x85\x95\xa6\xa5\xb7\xa5\x3e\x38\x38\x49\x5f\x31\xf9\x10\x8d\xeb\xec\x9d\xb1\x80\x9f\x05\x91\x59\x81\x80\x52\xb4\x39\x7a\xc8\x85\x86\x3d\xf6\xd4\xb1\x80\xfd\x39\x25\x94\xd4\x87\x2c\x98\x03\x52\x50\x8c\xa2\xe5\xdb\x4d\x96\xc9\xba\x31\xd6\xc3\x07\x89\xa7\xdf\xd0\x19\x75\x44\x0b\xa5\x35\x35\xdc\x0d\x6f\xdd\x65\xd9\x66\xb3\x19\x27\x0f\xdd\x19\xdd\x8d\x05\xa2\x93\x45\xc4\x68\xb1\x38\x28\x14\x16\xff\x68\xa5\x9d\x4b\xab\x71\x32\x30\xe5\x5e\x58\xf8\x88\xe0\xbc\x54\x2a\x14\x0d\xe9\x41\xb8\x51\xd1\x81\x0a\x6d\x1f\x37\x9e\x7f\x71\x48\x99\x9a\x23\xa7\x6c\x15\x93\x6c\x7d\xf0\x56\x8d\xbe\x32\x45\x74\x4e\x2d\xf4\x19\x1a\x6b\x7e\x47\x2e\x4e\xc4\x26\x30\xa3\x0a\x44\x92\x32\x53\xa3\x27\xb5\xc6\xad\x98\x64\xac\x1c\x21\x84\xf7\x67\x52\xb6\x46\xa1\x5d\xa7\xeb\x9a\x8b\x61\x08\x83\xfe\x2e\x5d\xf3\xbd\xce\xcb\x41\xe7\x64\x14\x37\x4a\xf7\xbe\x74\x88\x3c\x47\xe7\x16\x42\xa9\x65\x27\xc9\xa4\xac\x3d\x64\x19\x00\xc0\x66\x03\x6f\x34\xa0\xf6\xd2\x47\x3b\x97\xc6\x92\x2c\xe6\x24\xf5\x81\xc9\x53\x98\x15\x56\x9c\x84\xe2\x98\xe7\x58\x0b\xfe\x17\x21\x81\x98\xd0\x90\xe5\x90\xdc\xc7\x74\x7a\xaf\x30\xb1\xdc\x70\xcf\xc1\x63\x70\x6b\x50\x19\x6b\xe9\x29\x34\x4f\x15\xea\xc4\x84\x8c\x95\xb8\xeb\x67\x58\x1e\x87\xcc\x16\xa2\x36\xad\xf6\x5b\xf8\xc7\x3b\xf9\xf9\x2f\xff\xbf\xe2\xb3\x5b\x78\x53\x14\x16\x9d\x7b\xbd\xe2\xea\xb9\x85\xf7\xde\x4a\x7d\x58\x7e\x8d\x58\x05\x36\xc6\x49\x1f\x82\xf4\x69\xa1\x7e\x0a\xaf\x5e\xc8\xe4\xcd\x0d\x12\xfd\xcc\x24\xae\x4b\xe1\xbc\x35\x67\x2c\xae\xb0\x7e\xdb\x5a\x7d\xc9\xf7\x92\x53\x3c\xe9\x50\x95\x4b\x4a\x32\x66\x48\x87\x99\xfd\xd3\x14\xb6\xf0\xd6\x18\x05\x0f\x4c\x88\xfe\x64\x09\xe1\x00\x7c\xff\x0a\x5e\xae\x5f\x0e\x1e\xd1\x1f\x91\x1e\x0b\x16\xfe\x4f\x64\xe9\xdf\x65\x77\xe2\xb1\xbb\xb2\xe8\x5b\xab\xc1\xdb\x16\xb3\xf0\xa4\x33\x52\xaa\x5c\xe9\xc6\xc8\x9f\x7d\xfa\xb3\x4f\x91\xca\x5e\x1e\x6b\x7c\xcc\xb3\x90\x4a\x14\xf8\x29\xda\xa8\x2c\x26\x22\xc3\x88\xe7\x8a\x9f\xb2\x8f\x13\xe4\xdc\xe0\xfa\x82\xef\x2f\x1e\x3a\x8c\x11\x19\x8e\x79\x19\x0d\xbb\x7d\x6a\xb4\x54\x88\x56\xdd\xd9\x41\x5f\x53\x28\xa8\x8f\x98\x06\x43\x33\x6c\x8c\x73\x32\xb6\x12\x53\x42\x6e\x51\xb0\x10\xb1\x9d\x34\xd1\x0c\xae\x17\x9d\x34\x26\x90\xc2\x58\x87\x7c\x2c\xac\x54\xe7\x08\x5a\xb8\x50\x99\x93\x86\x28\xc9\x58\x8f\x61\x34\x5d\x42\x81\xbe\x5b\xc4\x42\x92\x58\x26\x0b\x82\x6b\xf7\x11\xc9\x4d\x0d\x68\x4e\x1a\xed\x0b\x37\x48\x9a\x74\x98\x50\x43\xf0\xb3\x4b\x49\xd5\x77\x39\x8b\xb5\x39\x72\xc2\x85\x6e\x37\x38\x38\x22\x72\x3f\xc0\x11\x2f\x5c\xd4\x03\x14\x1e\x51\x51\x46\x37\xed\x5e\xc9\x3c\x81\x39\xe9\x02\x48\xf5\x20\xc8\x7e\x7b\x85\xf5\x88\x58\xf2\x06\xc3\x83\x4e\x78\x70\xde\xd8\x54\x1f\x07\xc6\x89\x36\x15\x79\x4e\x11\x3d\x22\x94\x73\x27\x92\x5e\x0a\xa5\xce\x90\x87\x6a\x2f\x7b\x7c\xf1\xb4\x3e\x81\x6b\x2d\xce\x70\xb0\xd4\x6f\x0c\x75\xaf\xc4\xa7\xd3\x91\xda\x7a\x8a\x09\x52\x47\x1e\x85\xc7\x89\x14\x4d\x87\x45\x22\x02\x37\x27\x07\xae\xc1\x5c\x96\x32\x8f\x74\x23\x70\x31\x91\xee\x88\x02\xc7\x61\xf2\x7d\x8f\x46\x2b\x6b\xda\x43\x05\x03\x94\x75\xab\x42\x01\x30\xb1\x56\x64\x94\x67\x74\x62\xe7\xdd\xa2\x12\xd1\x9a\xe8\x31\x92\x7d\x44\xe3\xcb\xf5\x88\xd9\x31\xec\x6e\xa1\x72\x9e\xe6\x5b\xd0\x72\x0b\x3f\x3c\x70\x40\x3f\x4e\xea\x21\xa1\xe4\xc9\xad\xc0\x0c\x76\x16\x5d\xc4\xf1\x65\x54\x24\xc4\x1b\x17\xc2\xa3\x50\x2d\x5e\x1c\x0b\x47\xd6\x07\xf4\x11\xc7\x2f\x96\xf0\xea\x55\x2c\xb1\xdb\x8b\xd7\xe9\xef\xee\x63\xdf\xe0\x63\xe1\xae\x5b\xe7\x09\x33\x12\x3b\x27\x6a\x24\x24\x45\xd7\xb1\x50\x24\xec\xdb\xf7\x66\xd6\xec\xee\x82\x3c\xd7\xfa\x8b\xa6\x9c\xea\x7d\x68\xca\xd4\x74\xd6\x1c\x0e\xaf\xd7\x22\xb4\xc3\xd4\x0a\xf8\xd1\x01\xfd\xfd\xb9\xc1\xc5\x72\x2d\x0b\x2a\xba\xa5\x44\xbb\x1c\x71\x7a\x9c\x74\x8b\x41\x67\x48\xc3\xcd\x7f\xdf\x19\x62\xc3\x9f\x69\x0c\x52\x47\xc7\xdc\xd0\x18\x3e\x62\x2a\xc7\x52\xe7\xaa\x2d\x10\x04\x74\x13\x52\x10\x23\xaf\x30\xff\x34\x36\x77\x2c\x42\x1d\x95\x13\x76\xa8\x93\x26\x8d\x5b\x06\x8d\x60\x86\x80\x26\x33\x18\xd4\xa4\xc2\xa4\x97\xe6\xa7\x8a\x15\x28\xf9\x09\xc1\x35\x4a\x32\x0c\xad\xa1\x6d\xa8\x4e\x77\x44\x1c\xea\x22\x3c\xa0\x21\x45\x96\x9c\x36\x1e\x1a\x15\x66\x22\xb8\xbd\xa5\x24\x67\x4d\x5b\x4a\x34\x3d\x78\xf1\x09\xfb\xbe\x40\xbd\x22\x3e\x71\xd4\x2c\xe7\xdd\x30\x9a\x97\x9f\xca\x64\x16\x8a\x12\x38\xd2\x5c\x84\xe8\x4c\x49\xbb\x1c\x8b\x74\x40\xff\xbe\x6d\x68\x2c\xc2\x82\x5f\xa0\x10\xa5\x4e\x4d\x7e\xe4\x0a\xdf\xb7\x31\x25\x9d\xa7\x8c\x39\x86\x61\x93\x5f\x8c\xa0\x9e\xa1\x7e\x54\x9a\xe4\x68\xbc\x9b\x95\xeb\x28\xf1\xc4\xc2\xcd\xf3\x5d\x2c\xb7\xf0\x70\xcf\x29\x43\x58\xec\xa2\xc2\x58\x84\x07\x06\x4e\x5b\xb8\x2b\xda\xba\x3e\xdf\x8d\x72\x66\xa4\xd9\x6f\x51\xee\x53\x85\xdc\x0b\x8c\xe5\x70\x25\xc3\x52\xac\xe9\xb0\x78\x90\x2e\xca\x1b\x86\x49\x7a\x3a\x4a\xb5\x44\xed\x4d\xd2\x9a\x23\x5b\xe8\x78\x0a\x68\x98\x62\x42\xae\xe2\x35\xcf\xef\x54\x70\x06\x08\x8f\x88\x16\x58\x8e\x00\xc2\xac\x41\xa4\xbb\xb4\xc7\x22\x54\x0f\xba\xbc\x44\xa7\xb7\x18\x64\x52\x44\x7a\x9c\x32\xc2\x78\x05\x92\xa3\x57\x11\x44\x74\x51\x1c\xf6\x56\xdc\xd5\xfa\xa5\x55\x67\x9d\x15\xc4\xba\xbc\x82\x7b\x2b\xb4\x2b\xd1\x1a\xbb\xea\xd0\x54\xd8\xc1\xa4\x91\xba\xc7\x84\x6d\x3f\x91\x90\x37\x5c\xd2\x19\xce\xe8\xbf\x24\xc5\x58\x95\xed\x40\x9a\x9e\xf1\x70\x96\x5f\x77\x73\xfe\x24\x15\xff\x86\x7e\xae\x11\x1c\x9f\x77\xd4\xb0\x23\xa5\xa6\xf8\x3f\x9c\x53\x9b\x0d\xbc\x45\x65\x4e\xa1\x5c\x93\x5f\x86\xfb\x95\x54\x7e\x5d\x6b\x63\x73\xb1\xad\xfe\xce\xcb\x3a\xee\xed\x38\x46\xa6\xf4\x18\x62\x1e\x30\xe5\x41\x37\xee\x11\x68\x11\x5c\x53\x3b\x87\xc6\xc0\x8a\xc5\x7a\xbc\x9b\x5d\x87\x6d\xc0\x1a\x46\xf4\x65\x79\xd1\x4d\xdd\xfb\x76\x4f\xd2\x2c\x4c\x19\x92\xe5\xaf\x3f\x3c\xcc\x50\x7a\xfc\x7e\xb1\x5c\xce\x00\x94\x98\xad\x0f\x63\xb2\x5b\x4e\xab\xc7\x71\x7f\x06\x54\x0e\xe7\x31\x4e\x28\x37\x20\x68\xe4\x6c\xfc\x19\x0a\xc9\x68\x58\xd8\x73\xc2\x1c\xb1\x0c\x04\xbc\xc3\xad\xb8\x33\xc3\xa9\x32\x50\x18\xfd\xc2\xcf\x51\xee\x37\x47\xb3\xf6\x59\x81\x6b\xf3\x8a\x98\x8c\x1f\xbf\x3f\x49\x9f\x57\x7b\x23\x6c\xb1\x5b\xc1\x8e\xef\xbd\x33\xf6\x24\x6c\x81\x76\x07\xe8\xf3\xf5\x55\x53\x3c\x5e\x85\x25\x7f\x42\x11\x8b\x4c\x93\xf9\x67\x43\xf8\x9f\x44\xe4\x5f\xf0\xfa\x35\x94\x42\x39\x7c\xae\xe6\x33\xdc\xf3\xc6\x8a\x03\x85\x9c\xaf\x28\x00\x2d\xf6\x19\x9e\xaa\xb5\x3f\x37\x32\xe7\x8c\xdc\x87\x03\x58\x3c\x9b\x62\x3f\x05\x37\xbe\x0f\xe4\x7f\x15\xbe\xa2\x60\x19\xfc\x7c\x7d\x5d\xa6\x80\xfa\xc7\x22\x49\x37\x96\x89\xd7\x6f\x69\x40\x18\x0c\x05\xb7\x0a\xf6\x2b\x1f\x4c\x72\xf5\xbf\xbe\x52\xac\x17\xae\x87\x33\xb7\x4a\xc8\xab\x0c\x7a\xea\xaa\x30\xed\x74\x14\x7e\xec\x67\x1c\x9a\x70\x86\x30\x8b\x98\xa3\xa6\xf9\x83\x66\x1e\x8f\x56\x0b\x3f\x80\x52\xd3\x4d\xab\x37\xe4\xb3\xd6\x0d\x3c\x16\xb6\xa8\x3d\xd6\xcf\x85\x36\x9a\xfc\x0b\x5a\xd4\xe8\x1a\xea\x1b\x31\x17\x5b\x5d\xa0\x55\x67\x92\x2e\x2e\xe6\x6f\xb4\x6e\x92\x67\xc6\xbe\xf3\x61\xad\xa5\xba\x16\xad\x33\x1b\x86\x5d\x18\x29\x76\xfd\x8e\xe1\x43\x74\x42\x6c\x54\x4f\x6c\x19\x34\x9e\xa6\x9b\x86\x44\x98\xc0\xcd\xe5\xf9\x3f\x63\x06\xb4\x73\xe5\x31\xa5\x76\x3f\xc9\x7d\xff\xcc\x24\xf7\x26\x8c\x6f\xfd\x5c\x96\x06\x39\x15\xc6\x5f\xa1\x09\xcf\xe1\x1f\xad\x50\xe1\xd7\x4c\x2f\x9f\x19\xe5\x1e\x6f\x1c\x58\xe3\x5a\x3d\xac\x13\x84\xea\x76\x1b\xb0\xdb\x63\x69\x2c\xee\x78\x62\x89\x10\x22\xd4\xf3\xc8\xb4\x5f\x86\xf1\x67\x97\x39\xe2\x71\x0b\xbe\xc7\x83\xd4\x9a\x22\x70\xf2\xc9\xa8\xff\x98\x34\x73\xfa\x06\xdb\xbe\x7a\x05\x41\xca\xc5\xc5\xb3\x25\x7c\xf7\xb4\xdd\xff\xde\xc5\x50\x32\xe6\x70\x82\x4e\xd9\xda\xdb\xb8\xb1\x78\xe4\x2f\x39\xe9\x75\x11\x66\xa8\xe9\x44\x9d\x9e\x5f\x73\xc7\xe3\xad\x83\x92\x28\x0a\x1a\x92\x7a\x86\x71\x56\x1a\xf9\x5e\xce\xac\xe4\x6e\x1e\x93\xe6\x90\xc3\x14\x36\xd0\x40\xe0\x1c\x5a\xdf\x7f\xd4\xc8\x8d\xce\x2d\xfa\x88\x8b\xa2\x79\xfa\xe5\x7a\x28\xf1\xd2\x75\xd5\x69\x4a\x2f\x16\xa6\xc1\x94\xd1\x8d\x26\x69\x3f\x17\xa9\xdd\x90\x70\xa4\xcb\x5a\xba\x5f\xb4\xf3\xec\xf8\x31\xb4\x59\x6e\x61\xde\xfb\x3f\x0a\x4d\xa0\x3c\x59\x9f\x17\x7d\xb9\xa9\x1b\xe1\x07\x1f\x6e\x49\xbf\x2b\x0b\x92\xe9\x07\x02\x16\x63\x18\x7f\xe1\x5b\xc1\x13\x8b\x92\x74\xe2\xe6\x45\x09\x5c\xcf\xe3\x2f\xcc\x8c\xff\x4b\xcf\x2e\xa4\x5e\x7e\x55\xb2\xb8\xb6\x7e\x36\x4b\xfa\xf8\x78\xb2\x58\x4d\xb2\x83\xd7\x88\xf8\x33\xc1\xcc\x98\x18\x71\x53\xa8\xcf\xf1\xbb\xb1\x89\xef\x8c\xba\x02\x07\x55\x25\x28\x9f\xfe\x8d\xd6\xdc\xd2\x11\xba\x24\x99\xb2\x5c\x7c\xf1\x1a\xf0\xca\x3e\xef\xe5\xfa\xe5\x16\xee\xee\x2b\x24\x41\x55\x5c\x91\x26\x7b\x04\x7b\x32\xdc\x18\x4a\x7c\x83\x99\xe2\xf7\xa4\xc5\x4c\xe2\x5e\x66\xcc\x66\xc3\xff\x8d\x13\x7f\xfe\xc3\xd1\x45\xdc\x7c\xe1\x86\x6f\xb3\x99\x99\xcf\x1f\xff\x13\x00\x00\xff\xff\x84\xc9\x59\xdc\xc0\x22\x00\x00" +var _fungibletokenV2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x59\x4b\x8f\xdb\x38\xf2\xbf\xeb\x53\x14\x3a\x87\xd8\xf9\x3b\xee\x39\xfc\xb1\x87\xc6\x66\x32\xc9\x64\xb2\xc8\x65\x11\x24\xbd\xc9\x61\xb1\x80\x69\xa9\x64\x71\x42\x91\x1a\x92\xb2\xe3\x6d\xf4\x77\x5f\x54\x91\xd4\xcb\x72\xb7\x3b\x8b\x39\x6c\x1f\x12\x5b\x22\xeb\xfd\xf8\x55\xf9\xfa\xc5\x8b\x2c\x7b\x06\xb7\x15\xc2\x7b\x65\x0e\xf0\xbe\xd5\x3b\xb9\x55\x08\xb7\xe6\x1b\x6a\x70\x5e\xe8\x42\xd8\x22\xcb\x9e\x3d\x83\x4d\x7a\xc9\xef\x36\x90\x1b\xed\xad\xc8\x7d\x96\xf1\xf5\xf9\x9b\x20\x1d\x68\x03\xca\xe8\x1d\x5a\x10\x1a\xa4\xf6\x68\x4b\x91\x63\xe6\x2b\xe1\x41\x28\x05\x65\xba\xea\xf9\x6a\xa2\xeb\xe0\x60\x5a\x55\x40\x25\xf6\xf4\x8a\x9e\x97\xc6\xd6\xe0\xcd\x3a\xcb\x3e\x94\x20\xa0\x75\x68\x1d\x1c\x84\xf6\x8e\x0e\x14\xd8\x28\x73\x04\x01\x1a\x0f\x13\x5a\x2b\xf0\x15\x4a\xdb\xcb\x5c\x18\x24\xc1\x3c\x68\xc4\x82\x2e\xcb\xba\x51\x58\xa3\xf6\x74\x12\x46\xaa\xf6\x32\xaf\x60\xdb\xfa\x48\x8a\x19\xb8\xac\x30\x67\x48\x74\x97\x1c\x14\x58\x4a\x8d\x05\x48\x0d\xbe\x92\xae\x93\x62\x1d\xec\xfa\x45\xb4\xca\x6f\xc0\xa2\x33\xad\xcd\x07\x37\xb3\xec\x37\x91\x57\x53\xfb\x74\xe7\xfc\xb1\x41\x66\xee\x4e\xb9\x9f\x27\x1a\x99\x7e\xb4\x66\x2f\x0b\xb4\x9b\x15\x6c\x3e\x61\x8e\x72\xcf\x9f\x85\x2e\x60\xf3\x56\x28\xa1\x73\x9c\xbb\xed\xd8\xdb\x6e\xa2\x5e\xae\x84\x45\x68\x2c\xbe\xcc\x8d\x2e\xa4\x97\x46\x3b\x26\xd5\x18\xe7\x87\xcf\xd8\xe7\x16\x9d\xb7\x32\xf7\x19\x09\x8a\xdf\x31\x6f\xe9\x25\x98\x92\x25\x2f\x5b\x9d\x87\xc3\x6c\x2e\x04\xd6\x64\xcd\x7c\x8f\x40\x7c\x1c\x36\xc2\x0a\x8f\xb0\xc5\x5c\xb4\x24\x8b\x87\x9d\xdc\xa3\xe3\xe3\x14\x14\xfc\x41\x6c\xa5\x92\xfe\x48\xb6\x71\x95\xb0\x98\x09\xb0\x58\xa2\x45\x9d\x73\x3c\x05\x37\x32\xf5\x20\x97\xd1\xea\x08\xf8\xbd\x31\x2e\x92\x2a\x25\xaa\xc2\xf5\x12\x65\x52\x83\xd1\x08\xc6\x42\x6d\x2c\x26\x89\x7b\x53\x50\x60\x52\x4c\x3b\x13\x05\x0a\x11\x3a\x91\xa6\x16\xdf\x10\xf2\xd6\x79\x53\x77\x16\x8e\xa6\xe9\x9c\x48\xb6\x19\x5b\x99\x02\xdc\xc0\x5e\x58\x69\x5a\x3a\x2d\xf5\xce\xc1\x41\xfa\x8a\xc9\x87\x68\x5c\x67\xef\x8d\x05\xfc\x2e\x88\xcc\x0a\x04\x94\xa2\xcd\xd1\x43\x2e\x34\x6c\xb1\xa7\x8e\x05\x6c\x8f\x29\xa1\xa4\xde\x65\xc1\x1c\x90\x82\x62\x14\x2d\x2f\xae\xb3\x4c\xd6\x8d\xb1\x1e\xbe\x48\x3c\x7c\x42\x67\xd4\x1e\x2d\x94\xd6\xd4\x70\x35\x7c\x74\x95\x65\xd7\xd7\xd7\xe3\xe4\xa1\x27\xa3\xa7\xb1\x40\x74\xb2\x88\x18\x2d\x16\x07\x85\xc2\xe2\x1f\xad\xb4\x73\x69\x35\x4e\x06\xa6\xdc\x0b\x0b\x5f\x11\x9c\x97\x4a\x85\xa2\x21\x3d\x08\x37\x2a\x3a\x50\xa1\xed\xe3\xc6\xf3\x37\x0e\x29\x53\x73\xe4\x94\xad\x62\x92\xad\x0f\xde\xaa\xd1\x57\xa6\x88\xce\xa9\x85\x3e\x42\x63\xcd\xef\xc8\xc5\x89\xd8\x04\x66\x54\x81\x48\x52\x66\x6a\xf4\xa4\xd6\xb8\x15\x93\x8c\x95\x23\x84\xf0\xf6\x48\xca\xd6\x28\xb4\xeb\x74\x5d\x73\x31\x0c\x61\xd0\x3f\xa5\xcf\xfc\xac\xf3\x72\xd0\x39\x19\xc5\x8d\xd2\xbd\x2f\x1d\x22\xcf\xd1\xb9\x85\x50\x6a\xd9\x49\x32\x29\x6b\x77\x59\x06\x00\x70\x7d\x0d\x6f\x34\xa0\xf6\xd2\x47\x3b\x97\xc6\x92\x2c\xe6\x20\xf5\x8e\xc9\x53\x98\x15\x56\x1c\x84\xe2\x98\xe7\x58\x0b\xfe\x17\x21\x81\x98\xd0\x90\xe5\x90\xdc\xd7\x74\x7b\xab\x30\xb1\xbc\xe6\x9e\x83\xfb\xe0\xd6\xa0\x32\xd6\xd2\x53\x68\x1e\x2a\xd4\x89\x09\x19\x2b\x71\xd7\x8f\xb0\xdc\x0f\x99\x2d\x44\x6d\x5a\xed\x6f\xe0\x1f\xef\xe5\xf7\xbf\xfc\xff\x8a\xef\xde\xc0\x9b\xa2\xb0\xe8\xdc\xeb\x15\x57\xcf\x1b\xf8\xec\xad\xd4\xbb\xe5\x8f\x88\x55\x60\x63\x9c\xf4\x21\x48\x1f\x16\xea\x5d\x38\x7a\x22\x93\x37\x17\x48\x94\x92\x32\x3d\x18\x89\xda\x47\x36\x8b\x8b\x94\xd1\x79\x2c\x5f\x31\x84\x42\x94\x90\x4f\x93\x21\x29\xe3\x13\x91\xa1\x33\xb9\x98\xa5\xc0\x62\xdf\x1f\x1b\x5c\x9f\xf0\xfd\xe0\xa1\x6b\x9f\x91\xe1\x98\x97\xd1\xb0\xd9\xa6\x1e\x42\x39\xb6\xea\xee\x0e\x4a\xb6\x42\x41\x25\xd2\x34\x18\xea\x7c\x63\x9c\x93\xb1\x4a\x9a\x12\x72\x8b\x82\x85\x88\x95\xb2\x89\x66\x70\xbd\xe8\xa4\x31\xf5\x5f\x6e\xe3\x64\x73\x61\xa5\x3a\xc6\x7e\xcc\x39\x68\x0e\x1a\xa2\x24\x63\x3d\x86\x3e\x3a\xed\x72\x7d\x21\x8c\x39\x92\x58\x26\x0b\x82\x6b\xb7\x11\xa4\x4c\x0d\x68\x0e\x1a\xed\x73\x37\x88\x87\x74\x99\x1a\xa2\x45\xdf\x5a\x0a\xa0\xd8\x78\xba\x02\x6e\xb1\x36\x7b\x8e\xa5\x50\xc8\x07\x17\x47\x44\x6e\x07\x2d\xf2\xb9\x8b\x7a\x80\xc2\x3d\x2a\x0a\xd6\xa6\xdd\x2a\x99\x27\x9c\x22\x5d\xc0\x5f\x1e\x04\xd9\x6f\xab\xb0\x1e\x11\x4b\xde\xe0\xce\xd7\x09\x0f\xce\x1b\x9b\x52\x7f\x60\x9c\x68\x53\x91\xe7\x14\xc5\x23\x42\x39\x17\x59\xe9\xa5\x50\xea\x08\x79\x28\x64\xb2\x6f\x9d\x0f\xeb\x13\xb8\xd6\xe2\x08\x3b\x4b\xa5\xd4\x50\x61\x4e\x7c\x3a\x1d\xa9\x63\xa5\x98\x20\x75\xe4\x5e\x78\x9c\x48\xd1\x74\x6d\x36\x82\x4b\x73\x70\xe0\x1a\xcc\x65\x29\xf3\x48\x37\xf6\x64\x13\xe9\x8e\x28\x70\x1c\x26\xdf\xf7\x40\xab\xb2\xa6\xdd\x55\x30\x00\x10\x97\x2a\x14\xb0\x00\x6b\x45\x46\x79\x44\x27\x76\xde\x25\x2a\x11\xad\x89\x1e\x23\xd9\x47\x34\x9e\xae\x47\xcc\x8e\x61\xe1\x5e\x92\x2f\xbb\xf8\x9f\x54\xb2\xe5\x0d\xfc\x72\xc7\x01\x7d\x0f\x77\x1d\x15\xfa\x23\x00\x38\x79\x14\x7b\xce\xc6\xa2\x8b\x10\xb5\x8c\x8a\x84\x78\xa3\x04\x81\xbd\x50\x2d\x9e\x5c\x0b\x57\xd6\x3b\xf4\x11\xa2\x2e\x96\xf0\xea\x15\x44\x61\x4e\x8e\xd3\xdf\xd5\xd7\xbe\x77\x85\x73\x50\xb7\xce\x13\x1c\x22\x76\x4e\xd4\x48\x20\x81\x3e\xc7\x42\x91\x60\x5d\xdf\x76\x58\xb3\xab\x13\xf2\xd4\x18\x4e\xfb\x4d\xf8\x3f\xf5\x1b\x87\xaa\x5c\x73\x38\xbc\x5e\x8b\x50\xe9\x53\xa1\xe7\x57\x3b\xf4\xb7\xc7\x06\x17\xcb\xb5\x2c\xa8\xe8\x96\x12\xed\x72\xc4\xe9\x3e\x1b\x7f\xba\xef\x3b\x43\xc2\xed\xff\x7d\x67\x88\xbd\x6c\xa6\x31\x48\x1d\x1d\x73\x41\x63\xf8\x8a\xa9\x1c\x4b\x9d\xab\xb6\x40\x10\xd0\x81\xff\x20\x46\x5e\x61\xfe\x6d\x6c\xee\x58\x84\x3a\x2a\x07\xec\x00\x15\x81\xe8\x4b\x30\x74\x30\x43\x00\x4a\x19\x0c\x6a\x52\x61\xd2\xa1\x79\xc0\xbc\x02\x25\xbf\x21\xb8\x46\x49\x46\x58\x35\xb4\x0d\xd5\xe9\x8e\x88\x43\x5d\x84\x17\x84\xbf\x65\xc9\x69\xe3\xa1\x51\x01\xee\xc3\xe5\x2d\x25\x39\x6b\xda\x52\xa2\xe9\xc1\x8b\x6f\xd8\xf7\x05\xea\x15\xf1\x8d\xa3\x66\x39\xef\x86\xd1\x28\xf8\x50\x26\xb3\x50\x94\xc0\x91\xe6\x22\x44\x67\x4a\xda\xe5\x58\xa4\x1d\xfa\xcf\x6d\x43\x88\x1f\x0b\x3e\x40\x21\x4a\x9d\x9a\xfc\xc8\x15\xbe\x6f\x63\x4a\x3a\x4f\x19\xb3\x0f\x73\x14\x1f\x8c\x78\x95\x51\x6c\x54\x9a\xe4\x68\xbc\x9b\x95\x6b\x2f\xf1\xc0\xc2\xcd\xf3\x5d\x2c\x6f\xe0\xee\x96\x53\xe6\xad\x31\xea\xa4\xc2\x58\x84\x3b\xf0\xb6\xc5\x1b\xb8\x2a\xda\xba\x3e\x5e\x8d\x72\x66\xa4\xd9\xa7\x28\xf7\xa1\x42\xee\x05\xc6\x72\xb8\x92\x61\x29\xd6\x74\x98\xa9\xa5\x8b\xf2\x86\x39\x89\xde\x8e\x52\x2d\x51\x7b\x93\xb4\xe6\xc8\x16\x3a\xde\x02\x9a\x13\x98\x90\xab\x78\x83\xf1\x3b\x15\x9c\x58\xd8\x48\x50\x22\x5a\x60\x39\x02\x08\xb3\x06\x91\xee\xd4\x1e\x8b\x50\x3d\xe8\xe3\x32\x58\xe4\x89\x06\x99\x14\x91\x1e\xa7\x8c\x30\x5e\x81\xe4\xe8\x55\x04\x11\x5d\x14\x87\x95\x0c\x77\xb5\x7e\x1f\xd3\x59\x67\x05\xb1\x2e\xaf\xe0\xd6\x0a\xed\x4a\xb4\xc6\xae\x3a\x34\x15\xd6\x0b\x69\x5a\xec\x31\x61\xdb\x83\x6d\xf2\x86\x4b\x3a\xc3\x11\xfd\x53\x52\x8c\x55\xb9\x19\x48\xd3\x33\x1e\x8e\xa9\xeb\x6e\x84\x1d\xa5\xe2\x29\x6c\xff\x14\x59\xbc\x43\xe7\xad\x39\x62\xb1\x88\x35\x2b\xf5\x3d\x78\xd5\x55\xf1\xae\x21\x4d\x72\xe9\x6f\xe8\xe7\x9a\xcb\xfe\x71\xe7\x0f\x89\x26\x86\xff\xc3\x79\x7a\x7d\x0d\x6f\x51\x99\x43\x68\x01\xe4\xeb\xe1\x3a\x22\x95\x74\xd7\xda\xd8\xb0\x6c\xab\x5f\x7a\x59\xc7\x35\x17\xc7\xdd\x94\x1e\xc3\xd6\x1d\xa6\xdc\xea\x66\x34\x02\x42\x82\xeb\x74\x17\x24\x31\x58\x63\x03\x18\xaf\x32\xd7\x61\x78\x5e\xc3\x88\xbe\x2c\x4f\x3a\xb4\xfb\xdc\x6e\x49\x9a\x85\x29\x43\x02\xfe\xf5\x97\xbb\x19\x4a\xf7\x3f\x2f\x96\xcb\x19\xd0\x13\x2b\xc0\xdd\x98\xec\x0d\xa7\xea\xfd\xb8\xe7\x03\x2a\x87\xf3\xb8\x29\x94\x30\x10\x1a\xb0\x6e\xfc\x11\x0a\xc9\x08\x5b\xd8\x63\xc2\x31\xb1\xb4\x04\x0c\xc5\xed\xbd\x33\xc3\xa1\x32\x50\x18\xfd\xdc\xcf\x51\xee\x17\x2d\xb3\xf6\x59\x81\x6b\xf3\x8a\x98\x8c\x5f\x7f\x3e\x48\x9f\x57\x5b\x23\x6c\xb1\x59\xc1\x86\x9f\xbd\x37\xf6\x20\x6c\x81\x76\x03\xe8\xf3\xf5\x59\x53\xdc\x9f\x85\x3a\x7f\x42\x61\x8c\x4c\x93\xf9\x67\x43\xf8\x9f\x44\xe4\x5f\xf0\xfa\x35\x94\x42\x39\x7c\xac\x8f\x30\x84\xf4\xc6\x8a\x1d\x85\x9c\xaf\x28\x00\x2d\xf6\x19\x9e\x3a\x80\x3f\x36\x32\xe7\x8c\xdc\x86\x0b\x58\x3c\x9a\x62\xef\x82\x1b\x3f\x07\xf2\x1f\x85\xaf\x28\x58\x06\x5f\x5f\x9f\x97\x29\x4c\x12\x63\x91\xa4\x1b\xcb\xc4\xdb\xaa\x34\x74\x0c\x06\x8d\x4b\x05\xfb\xc8\x17\x93\x5c\xfd\xb7\x1f\x14\xeb\xb9\xeb\x21\xd2\xa5\x12\xf2\x7a\x84\xde\xba\x2a\x4c\x50\x1d\x85\x5f\xfb\xb9\x89\xa6\xa6\x21\x74\x23\xe6\xa8\x69\xa6\xa1\x39\xca\xa3\xd5\xc2\x0f\xe0\xd9\x74\x31\xe9\x0d\xf9\xac\x75\x03\x8f\x85\xa5\x63\x3f\x3f\xe4\x42\x1b\x4d\xfe\x05\x2d\x6a\x74\x0d\xf5\xa2\x98\x8b\xad\x2e\xd0\xaa\x23\x49\x17\xf7\xd8\x17\x5a\x37\xc9\x33\x63\xdf\xf9\xb0\xd6\x52\x9d\x8b\xd6\x99\xad\xc5\x26\x8c\x29\x9b\x7e\x6f\xf1\x25\x3a\x21\x36\xaa\x07\x36\x17\x1a\x0f\xd3\xed\x45\x22\x4c\x80\xe9\xf4\xfe\x9f\x31\x57\xda\xb9\xf2\x78\xd2\x8c\xe1\xe7\x47\xa6\xc3\x37\x61\x24\xec\x67\xbd\x34\x1c\xaa\x30\x52\x0b\x4d\x18\x11\xff\x68\x85\x0a\xdf\x66\x7a\xf9\xcc\x78\x78\x7f\xe1\x10\x1c\xb7\xd0\x61\x45\x21\x54\xb7\x2f\x81\xcd\x16\x4b\x63\x71\xc3\x53\x50\x84\x10\xa1\x9e\x47\xa6\xfd\x82\x8d\x7f\xa5\x98\x23\x1e\x97\xc6\x5b\xdc\x49\xad\x29\x02\x27\xbf\xb0\xf4\xbf\xbd\xcc\xdc\xbe\xc0\xb6\xaf\x5e\x41\x90\x72\x71\x0a\x82\xe0\xe5\xc3\x76\xff\x7b\x17\x43\xc9\x98\xc3\xa9\x3c\x65\x6b\x6f\xe3\xc6\xe2\x9e\x7f\xf8\x48\xc7\x45\x98\xcb\xa6\x53\x7a\x7a\x7f\xce\x1d\xf7\x97\x0e\x5f\xa2\x28\x68\xf0\xea\x19\xc6\xf9\x6b\xe4\x7b\x39\xb3\xe6\xbb\x78\xf4\x9a\x43\x0e\x53\xd8\x40\x43\x86\x73\x68\x7d\xff\x1b\x40\x6e\x74\x6e\xd1\x47\x5c\x14\xcd\xd3\xef\xa2\x43\x89\x97\xae\xab\x4e\x53\x7a\xb1\x30\x0d\x26\x97\x6e\xdc\x49\x3b\xbf\x48\xed\x82\x84\x23\x5d\xd6\xd2\x7d\xd0\xce\xb3\xe3\xc7\xd0\x66\x79\x03\xf3\xde\xff\x55\x68\x02\xfa\xc9\xfa\xbc\x3c\xcc\x4d\xdd\x08\x3f\xf8\x9d\x93\xf4\x3b\xb3\x74\x99\xee\xd3\x59\x8c\x61\xfc\x85\xd5\xfa\x03\xcb\x97\x74\xe3\xe2\xe5\x0b\x9c\xcf\xe3\x27\x66\xc6\xff\xa5\x77\x27\x52\x2f\x7f\x28\x59\x5c\x5b\x3f\x9a\x25\x7d\x7c\x3c\x58\xac\x26\xd9\xc1\xab\x49\xfc\x8d\x60\x66\x4c\x8c\xb8\x7d\xd4\xc7\xf8\x33\xab\x89\x67\x46\x5d\x81\x83\xaa\x12\x94\x4f\xff\x46\x6b\x2e\xe9\x08\x5d\x92\x4c\x59\x2e\x9e\xbc\x5a\x3c\xb3\x23\xfc\x69\xfd\xd3\x0d\x5c\xdd\x56\x48\x82\xaa\xb8\x76\x4d\xf6\x08\xf6\x64\xb8\x31\x94\xf8\xbc\x99\xc2\xbf\xf7\xff\x09\x00\x00\xff\xff\xaa\x46\x21\xb3\x3f\x21\x00\x00" func fungibletokenV2CdcBytes() ([]byte, error) { return bindataRead( @@ -137,7 +137,7 @@ func fungibletokenV2Cdc() (*asset, error) { } info := bindataFileInfo{name: "FungibleToken-v2.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8e, 0x2f, 0x1b, 0x12, 0xfe, 0xee, 0xa5, 0x53, 0x94, 0x89, 0xb8, 0xf6, 0x76, 0xd9, 0x9c, 0x27, 0x77, 0xf5, 0x66, 0x97, 0x55, 0x82, 0x5d, 0x2f, 0x8b, 0x18, 0xe0, 0xa2, 0x0, 0x94, 0x41, 0xb5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0x38, 0x15, 0xb2, 0xa3, 0x2a, 0xcf, 0x4f, 0x15, 0x1e, 0x4b, 0x31, 0xdd, 0xcc, 0x96, 0xd0, 0xcd, 0xe8, 0xd4, 0x35, 0xbc, 0x76, 0xbc, 0xc, 0x91, 0x17, 0x70, 0xb2, 0x97, 0xdd, 0x19, 0x5f}} return a, nil } @@ -241,7 +241,7 @@ func utilityMetadataviewsCdc() (*asset, error) { return a, nil } -var _utilityNonfungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5a\x5f\x6f\xe3\xb6\xb2\x7f\xd7\xa7\x98\x4d\x81\xae\x5d\xb8\xce\xc5\xc5\xc5\x7d\x08\x6e\x6f\xba\xdd\x34\x07\x01\x0e\xd2\x62\xd7\x6d\x1f\x8a\xa2\x61\xa4\xb1\xcd\xae\x44\xaa\x24\x65\xd7\xc8\xe6\xbb\x1f\xcc\x90\x94\x28\x4b\x4e\xec\x4d\x0b\x1c\xe0\x74\x1f\xbc\xb1\x2c\xfe\x38\x9c\x3f\x3f\xce\x0c\x79\xfe\xc5\x17\x59\xf6\xd9\x67\xb0\x58\x23\x5c\x97\x7a\x0b\xb7\x5a\x7d\x79\xdd\xa8\x95\xbc\x2f\x11\x16\xfa\x03\x2a\xb0\x4e\xa8\x42\x98\x82\x5f\xbc\xbb\xd5\x2a\xfe\xce\x3f\xdf\x41\xae\x95\x33\x22\x77\x20\x95\x43\xb3\x14\x39\x66\x19\xe1\xb5\x5f\xc1\xad\x85\x03\x51\x96\x63\xe8\x71\xb4\x05\xbb\xd6\x4d\x59\xd0\x83\xa5\x36\x15\x38\x3d\xcf\x6e\x96\x20\xa0\xb1\x68\x60\x2b\x94\xb3\xe0\x34\x14\x58\x97\x7a\x07\x02\x14\x6e\xe1\xf6\x7a\xd1\x02\xcc\xc0\xad\x51\x9a\x4e\x9c\x2d\xc3\x29\xc4\x22\x73\x1a\x64\x55\x97\x58\xa1\x72\xf4\x1a\xec\xaf\xa2\x13\x76\xce\xc2\xa7\x38\x55\x63\x1d\x2c\x75\x49\xea\xa1\x45\xd0\x78\xd3\x94\x68\x41\xa8\x02\x94\xa8\xa4\x5a\x65\xbc\x44\xd7\x5b\xb5\xad\x31\x97\x4b\x89\x76\x1e\x34\x77\xbd\xb8\x03\x83\x56\x37\x26\xaa\x28\xd7\x06\xdb\x47\xe0\x76\x75\xd0\x95\xc1\xda\xa0\x45\x5a\xb2\x50\xbc\x4a\xa9\x18\xdd\x56\xc2\xb8\x56\xb4\x00\xfc\x56\x97\x25\xe6\x4e\x6a\x75\x07\xef\x7a\xf8\x1d\x34\xa1\x5a\xa7\x0d\x49\xcd\x1a\x7d\x6d\x83\xf6\xe2\xd8\x79\x76\x43\x26\xcc\xcb\xa6\xe0\x97\x96\xb8\x85\x65\xa3\xf8\x37\xd6\xbc\x60\x0d\x90\x14\x7a\xab\xd0\xd0\x23\x14\x56\x96\xbb\xac\xd2\x1b\x04\x47\x7a\xb4\x24\x28\xa9\x45\x37\x0e\xf4\x92\xdf\x4e\xa7\x60\x79\xbf\x37\x7a\x23\x0b\x34\x77\xfc\xe6\xdd\x3b\xcc\x51\x6e\xe8\x6b\x2b\x6e\xab\x44\xcb\xeb\xb0\xe9\x13\x28\x30\x2f\x85\xc1\x44\xb8\xad\x74\x6b\xb0\xba\x42\xa8\x0d\x32\x68\xad\x2d\xab\xa9\x90\xfc\x46\x16\xb4\xfa\x7b\x23\x0d\xb2\x50\x9d\xce\x68\x1d\xc1\xba\x39\x1a\x27\xa4\x0a\x36\x65\xa0\x7b\x5c\x8b\x8d\xd4\xa6\x8d\x02\xeb\x1d\x64\x07\x24\x82\xc5\x5a\x18\xe1\x10\xee\x31\x17\x0d\x89\xe9\x60\x25\x37\x68\x79\x0e\x76\x5c\xfa\x43\xdc\xcb\x52\xba\x1d\xcd\x64\xd7\x34\x4e\x80\xc1\x25\x1a\x54\x39\x92\x6f\x7a\xc7\x4d\x45\x22\x71\xb5\x2a\x77\x80\x7f\xd4\xda\x06\xbc\xa5\xc4\xb2\xf0\x5e\xd7\xad\x5d\x2a\xd0\x0a\x41\x1b\xa8\xb4\xc1\x2c\xe8\xbc\x53\xd7\x1c\x6e\x28\xf6\xac\x0e\x82\x91\x50\x76\x5f\xaa\x4a\x7c\x40\xc8\x1b\xeb\x74\xd5\x1a\x21\x28\xad\x17\x37\x7d\x43\x50\x34\x6a\xd8\x08\x23\x75\x43\x90\x52\xad\x82\x2d\x08\xde\xfb\xc3\x3c\xcb\xbe\xd9\x41\x63\x49\x9f\x2d\x32\x2f\xa1\x03\x9a\x05\xa1\xf4\x92\x5d\xb2\xef\xe3\x16\x72\xa1\xc0\xa2\x2a\x32\x1a\x65\xbc\xb3\x44\x6f\xab\x11\xcd\x97\x4e\x7f\x49\xff\xcf\x78\x6e\x72\x3c\x32\x99\x5a\x91\x7c\x3c\x09\x93\x01\x89\x25\x20\x47\x42\x2d\xa1\xc4\x62\x85\x26\x1b\x84\xd3\x42\xf3\x54\x31\xea\xc8\xeb\x95\x76\x6b\x34\x2c\xe2\xac\x65\x23\xa6\x16\x4b\xba\xd9\x31\x74\x61\x84\x0f\x8d\xdb\xeb\x45\xb6\x34\xba\x1a\xd8\x94\xe9\x49\x41\x1e\x19\xa4\xc0\x5a\x5b\xe9\x5a\x4b\x82\x56\xbd\xb9\x5e\xdb\xac\xef\xa3\xb9\x26\x4b\x38\xef\xbe\xce\x08\x65\x97\x68\xe6\x59\xf6\xc5\x79\x96\xc9\xaa\xd6\xc6\xc1\x8f\x12\xb7\x44\x00\xe5\x06\x0d\xb0\x14\x67\xe9\xa3\xb3\x2c\x3b\x3f\x3f\x67\xae\xaf\xc8\xcd\x53\xf6\x4c\x08\x10\xbe\x63\x21\xd2\x5f\xc9\xac\x65\xc9\xa3\xc3\x54\x6c\xc1\xc4\x35\xa4\x4d\xe8\xff\xfc\xfc\x3c\x13\x79\x8e\xd6\x4e\x44\x59\x4e\xbb\x49\x06\xb4\xfb\x90\x65\x00\x00\xe7\xe7\xf0\x46\x01\x2a\x27\x5d\x40\x5c\x6a\xe3\x09\x87\x0d\xb9\xc6\x56\xcb\xa2\x64\x5e\xf1\xe6\xe7\x35\x0a\xf8\x51\x34\xa5\x63\xa0\x74\xd6\x14\xee\xa7\x38\xfa\xbe\xc4\x38\xe5\x39\x7c\xbb\xf1\xc2\x93\x9b\x5b\xc0\x4a\x3a\x87\x05\x6c\xc9\x4e\xc2\x4f\x41\xcf\xe3\xcc\x6a\xd6\x0e\x94\xaa\x90\xb9\x70\x51\x36\xcf\x87\x03\xba\x0b\xc8\x0e\xb6\x22\x41\x61\xa1\xe7\x11\xaa\x85\xbc\x19\x8c\x96\x16\x94\x76\x9e\x50\x69\x61\xba\x51\xee\xb5\x65\x16\x17\x2b\x9c\xc1\x1d\x01\xdd\xb1\x65\xe0\x1e\xe1\x4e\xc9\xf2\xae\x8f\xdb\xd3\xc6\x26\xd5\xc3\x44\x16\x17\xf0\xc3\x8d\x72\xff\xfb\x3f\x33\x68\x9a\xf4\x1b\xa1\x5e\xc0\x9b\xa2\x30\x68\xed\xe5\x8c\x77\xa5\x0b\x78\xef\x8c\x54\xab\x69\x96\xe2\x5a\x2c\x97\x53\xd8\x48\xbf\x51\xb0\xfe\x6e\xaf\x17\x2f\x9d\xe2\x02\xbe\xd1\xba\xe4\x79\x1e\xf8\x93\xfe\x11\x76\x5f\x78\x59\x44\x54\xfa\x8c\x98\xf4\x19\xf1\xe8\x73\xda\x22\x18\x74\x8d\x51\xe0\x4c\x83\xfc\xec\x71\xd4\x0d\x0e\xf9\x40\x88\x56\x2c\x98\x12\x7a\x5b\xda\xc0\x90\x2e\xba\x47\xa0\xed\x63\xbc\x23\xc5\x7f\xce\x86\x57\xfe\xdd\x27\xf4\xeb\xf4\x4b\x0c\xf8\x22\xfc\xc3\xd6\x4b\x61\xf7\x8d\x47\x80\x4e\x9f\x6c\xb8\x45\x60\xc1\x81\x0d\x88\xe2\xb0\xb3\x6a\xc8\x2c\xef\xb1\x6f\xdf\x40\x22\xb4\x21\x47\x3e\x35\x58\x78\x52\xa1\x3d\x35\xc4\x5c\xb2\x0b\x3c\x63\x99\x28\xcf\x29\xae\xff\x22\x53\x3d\x3b\xe1\xe5\x29\x33\x5e\x8e\x5b\x2f\xe8\x33\xaa\x08\x2a\x74\x6b\x5d\xf0\xb6\x1c\x6c\xb3\x14\xa5\xf5\x0a\x07\xb9\x24\x97\x2e\x64\xa1\x5e\x3b\xca\x0e\x44\x3b\x2e\xc5\x93\x0a\xb6\x6b\x99\xaf\x21\x17\x16\x61\x8b\x50\x68\x7a\x9f\x92\x7c\x8e\x92\x60\x3b\x9d\x98\xac\x1d\x2e\x97\xbc\x42\x78\xf5\x15\x28\x59\xc2\xe7\x9f\xfb\xbc\x39\x7c\xed\xc4\x6e\x1d\xaf\xa7\xa4\xbe\xe7\xbd\xda\xe3\x8d\x81\x1b\xbe\x9a\xf6\xf0\xf6\x7d\x91\xfd\x11\x90\x56\xff\xf0\xfc\x8b\xfb\xee\x7b\x85\xd6\x19\xbd\xfb\x44\xef\x8d\x85\x01\x91\x07\xe3\x04\x1d\x8d\x11\x06\xff\xfe\x54\x40\x9f\x4c\x11\x27\x21\x3e\x45\x0a\x1d\xd0\x80\x14\x4e\x23\x83\x9b\x7e\xb9\x19\x92\x31\xeb\xcb\xb7\xae\xa8\x3c\x18\xc2\xc3\xe2\x83\xc6\x5f\xf4\x92\xaa\x79\x9b\x5d\xa5\xe1\xe1\x2d\xd6\x28\xf9\x7b\x83\x70\x73\x15\x76\x12\x91\xaf\xd9\x40\x6b\x61\xdb\x77\xd3\xf9\x5a\x9d\xae\xd0\xdd\x5c\x4d\xa6\x51\x77\xe3\x9e\x44\x76\x98\x93\x5e\x12\x77\x4a\x23\xea\x10\x32\x49\x6f\x09\xfc\xe7\xc5\xae\xc6\x5f\xfa\x61\x9d\xe0\xff\xfc\x4b\xfa\xc3\xe3\x21\x68\x42\x35\x5e\x07\x84\x3c\xf9\x95\x27\xbb\x00\x02\x9f\x5e\xc0\x1b\xb5\x7b\xef\x4c\x93\xbb\xcb\x83\x13\x29\x59\xf6\x67\x6a\xbf\x05\x37\x9e\x4c\xf7\x34\x40\x35\x5d\xff\x09\xfd\xdb\x4f\x25\xe7\x23\xae\xc9\x4a\x0b\xea\x8d\xbe\xd5\x2a\x32\x3a\x58\x7c\x89\x96\x30\x99\xce\x65\x41\x79\xe3\x52\xa2\xe9\x87\xfe\xe3\xe1\x38\x4e\x3c\x4f\x43\x85\x85\xa4\x8a\x30\xe6\x7b\x21\x49\xed\xd7\x9c\xa7\x38\x61\xac\x96\xf7\x5c\xee\x3a\xd6\x0d\x94\x29\xd7\x46\xff\x86\xb9\x6f\x90\xc4\xe4\x83\x88\xd2\xc5\x42\xd5\x17\x60\x3f\xfc\x70\x73\x45\x95\xa2\xd2\xee\x69\x97\x6c\x2c\x5a\x7a\x79\x12\x42\x77\xdc\x27\x99\xf6\x0f\xf8\xe3\x4f\x9e\xad\xba\xe2\x88\xa9\x28\x51\x46\x1d\x97\xd5\xad\x34\x16\xd1\x14\xac\x32\xe7\xec\x3a\x0e\x4f\xa1\x03\x92\x30\x48\x7b\x86\xb0\xfc\xbe\x5f\xa0\xd3\x81\xf2\x4a\x69\x1d\x2a\x2a\x2a\xc3\xef\x65\x00\x8c\x65\x97\x07\xc9\x7a\x2a\x6d\x65\x35\x58\xe9\x0d\xb6\xbd\x97\x56\xe6\x24\x79\xa3\xfa\xc7\xbf\x24\x79\xa3\xe2\x9f\x45\x59\xf6\xf6\x39\x4e\x06\x0b\x8d\x3e\x91\xf7\xfd\xa0\x1d\xb1\x37\x17\x58\x34\xe4\xe6\x8a\x08\xfc\x09\xbb\xa4\x85\x8b\x0f\xbf\x28\xe5\x24\xfe\x71\x73\x15\xa9\x63\x7a\x01\x5f\x3f\xdc\x5e\x2f\x1e\xf7\x23\x48\x5b\x37\x12\x42\x06\x6d\x53\xba\x18\x20\xf0\xd5\x57\x90\x42\x9e\x2d\xbc\x7c\x21\x71\xed\xea\x17\x9f\x14\x33\xad\xde\xfb\x6a\xd4\x8a\x0a\x49\xd1\xdc\x19\xc3\xdf\x1b\xb4\xb4\x4b\xdd\x5c\x9d\x1d\x1d\xb5\xbd\xd4\xbe\x2f\x57\x0c\xdc\xf0\x34\xcd\xf6\x39\x74\x39\xbd\xbe\x9c\x0b\x9f\xd2\xc4\xa8\xee\x30\x4e\x88\xeb\x9e\xe9\xde\x94\x0e\x8d\x4a\x43\x39\x64\x3e\x76\x40\xfd\x0a\xff\xa0\x0d\xc7\xe0\xf0\xdd\xd0\x35\x4b\x03\x74\x2d\x36\xc8\xcd\x1a\x58\x96\xf8\x87\xf4\x5d\x98\x1e\x66\x1a\xc5\x6b\xdf\x73\x93\xc6\xef\x66\x14\xcc\x15\x8a\x36\x3b\x6a\x6c\x92\x1a\xd1\xd8\x9f\x62\xff\x65\xf3\xdf\xd0\xd4\x2b\x23\x0a\x9c\xc5\xde\x58\x90\x21\x56\x8c\x09\x29\x70\xcb\x8e\xbc\xd2\xee\x45\x44\xfa\x66\x68\x10\xdd\x5c\x59\x42\xec\xf0\x28\x13\xac\x65\xfe\x81\x51\xf2\xb5\xd6\x94\xd3\x51\x7a\xd7\xc3\xf2\x7e\x64\xc7\x54\x54\xd7\xa5\xf4\xfd\x24\xb7\xc6\xaa\x6f\x86\xc5\x77\x57\xdf\x5d\xc0\x22\x8c\x2c\x4b\x1f\xb9\x8d\x28\xcb\x9d\xd7\xa4\xae\x29\x20\x45\xd9\xe6\x06\xbb\x1a\xed\x0c\xee\x1b\x17\xb2\x4a\x23\x57\x6b\x07\x4a\x6f\x7b\xb8\x91\x6c\xf4\x12\x04\xdc\x37\x2b\xca\x49\xdf\x8a\x82\x5b\x72\xa3\xac\x40\x8a\x65\x5d\x3d\xcf\x0e\xb3\xa0\x30\xe9\x7c\x6c\xcf\x8e\xa1\x8b\x67\x03\x3e\x0a\x30\xf9\xb5\x97\x6b\x7d\x52\xd0\x53\xb0\x53\xba\xfc\xf1\x63\x78\xf0\x8a\x03\x8b\x1e\x7b\xec\xff\xf4\xe8\x4f\x95\x4e\x18\x27\x5a\x9d\x87\x90\xd1\x43\x6c\x1d\xb1\x55\x2c\xd6\xd2\x86\xc6\x62\x88\x6b\xb8\xdf\xf5\x7a\x0d\x3e\xb1\xe4\x76\xa8\x23\xfa\xa8\x9a\xd2\xc9\xba\x44\xdf\xaa\x24\xb7\x3f\xcd\x99\x58\x37\x5e\x61\xf4\xe7\x0c\xfe\xa4\x1d\x65\xe0\x5c\x7f\x6f\x31\xc7\x39\xd9\x1b\x55\x1c\xc9\x30\x89\xab\xb9\xe8\x6a\x1c\xc0\xff\xd6\xce\x16\xd6\xd7\xf3\xb9\xbf\xa9\xec\x2f\xf0\x32\x38\xa2\x40\x89\x7d\x19\x0b\xf7\xe8\xb6\x88\x2a\xa9\x4f\xec\x29\x05\x4a\xec\xaf\xe8\xfd\x12\xa5\xed\x18\x1d\xf4\x67\x76\x4c\x9b\x78\x5d\x6f\xfc\xa8\x2f\x77\x0e\x1a\xcf\x57\xd9\x75\xef\x4c\x3c\x45\x7c\xde\x2d\xdd\x58\xd7\x2c\x8e\xbf\x80\xb7\xa2\x0e\x47\x63\xff\xf7\xf9\x43\x3c\x9c\x7c\xfc\xff\xb4\x8b\xf1\x9c\x6e\x43\x95\x11\x53\x9a\x4f\xac\xfc\xe2\xdc\xf1\x94\x24\x4e\x19\x6b\x18\x27\x3e\x74\x4a\x15\xfc\x97\x30\xab\x86\x0f\x3c\x48\x77\xa2\x28\x52\xd5\xbd\x1d\xd5\xf2\x68\x21\x48\x5a\x0a\xb3\x4c\x38\x4a\x62\x60\x4e\x7b\x45\x1e\x09\xb3\x42\xf7\xbe\xa9\x6b\x6d\x1c\x16\xb7\xd7\x0b\x72\x52\x1b\x52\x31\x0b\x82\x0b\xb1\x78\xb0\xc7\xac\x11\xbb\x33\xd2\xb6\x2a\xe7\xa9\x6b\x67\x8f\xe9\x67\x0c\xe6\xa2\x12\xf5\x61\xc1\xa1\x42\xe6\x79\x3c\xd8\x78\x78\x78\x3c\xd0\x77\x08\x0b\x79\x17\x64\x8e\xe5\x99\xaf\xc7\x58\x73\x2b\xb9\x41\x9f\x58\x52\xb5\xe6\xa5\xf5\x6e\xd7\x77\xc9\x7d\xc8\x37\xa3\x7c\xea\xc7\x83\x50\x3b\x0f\x19\xfa\x7b\xbf\x11\x0f\x25\xfd\x2d\x82\x2f\x70\xd9\x1e\x6d\x3d\xa5\x18\x69\xf7\xf5\x92\x70\xec\xb0\x86\xef\x2b\xa6\x5f\xc6\xb7\xdd\x9f\xc4\xc7\xdf\xf9\x83\xf3\xf6\x60\xce\xaf\x5a\xe5\x06\xdd\xde\xf5\x85\x76\x88\xaf\x4e\xc2\x51\x7d\x11\xaf\x2f\xb4\x27\x86\x5c\x4e\x84\x53\xc1\x53\x42\xa2\xf3\xe1\x8b\xb6\x31\x32\x6b\x03\x65\x96\x70\xd1\x6c\xbc\x71\x97\x9c\xa9\xee\x45\xd5\xbb\xa0\x7a\x3e\x9b\x65\xb5\xc7\xa3\x36\xa8\x85\x5b\x27\x0b\x1f\x98\xfb\x90\xb3\x5e\x79\x9c\xf7\x1e\xe6\x7b\xe1\xd6\xe4\xad\xc9\xd7\xcb\xf1\xc6\x4a\xda\x23\x7b\x7c\x56\xca\xba\xb9\x2f\x65\xfe\x52\x21\xbf\x67\x94\x28\x63\xf7\xed\x74\x11\x6f\xb5\xa9\xb8\x3c\xdb\x62\x48\x31\xba\x8b\x17\xa1\x31\x3b\x60\xf1\x7e\xfd\x2b\x22\xb7\xe7\x50\x48\x7e\x4d\x18\x7f\x7b\x82\x53\x91\xd8\xda\xf5\x45\x9e\x3f\x7b\xb6\x54\xe9\x29\xa4\x25\xd2\xbb\x14\x5c\x7c\x1f\xa2\x07\x6b\xa1\xd4\x6a\xc5\x54\x19\x4e\xe1\xfd\x79\x7b\x77\x9b\x42\x78\x78\x83\x63\x5a\xb7\x71\xe6\x01\x93\x25\xeb\x69\x33\xa6\x7e\x1f\x68\x70\xfa\xb7\xc7\x04\x11\x75\x46\x84\x1d\x18\xc1\xab\x7a\x4f\x33\x5a\x21\x60\x38\xd5\x4e\x94\xd3\x5e\xbb\xf8\x80\x81\x56\x84\x85\xbb\xaf\x1f\x06\x79\x0a\xb1\xf8\x60\x8f\x7c\x11\xcd\x42\xec\xd1\x32\x6d\x5d\xc0\x59\xd1\x54\xd5\xee\xec\x70\xda\xfb\x67\x32\xed\x9f\x41\x87\x27\x2f\x20\x37\x28\x1c\x7e\x5b\xd5\x6e\x97\xf0\x89\x7f\xca\xdb\x30\xd2\x4f\x07\x36\x5c\xf0\xd7\x58\xbc\x0a\xf6\x93\x74\xb0\xba\x8d\x92\x1d\xfb\x88\xde\xf2\xfe\x3e\x7e\x86\x40\x8b\x1d\x15\x66\xc2\xa9\x74\xf7\xfd\x13\x3a\x82\x76\x32\x9d\x97\xa8\x56\x6e\x4d\xa9\xf4\x7f\x85\x3c\xda\xcf\x56\xa4\x9e\x1c\x13\x68\x5e\xf4\xab\xb3\x63\x4a\x9f\x93\xbb\xce\xcf\xee\x58\x7f\x65\x23\xf7\xd3\x5b\xb1\x63\xc1\xf7\x64\x2e\xe7\x53\xb9\x61\xee\xd6\x09\x6c\x93\xa8\x1f\xb8\x15\x8f\x0a\x7d\xe5\x30\x92\x6a\x42\x63\xc4\xee\x84\x3c\x6f\x4c\xea\xe3\x0e\x65\x92\xc6\x7f\x7a\xc7\xc9\xf7\xe4\x43\x0e\xd0\xbb\xae\xd8\xdd\x19\x1a\x81\x8a\x2d\xba\xc3\xa3\x98\x24\xca\x8a\x9c\x59\x94\x5b\xb1\x8b\xf7\xe4\x94\x28\xf9\x38\x49\x2a\xd1\x0b\xbf\x04\xbc\xbb\x44\x44\x8a\x6b\x25\xad\xa4\xb5\xac\x65\xf6\x95\xf6\x4a\x9c\xcf\x2f\x88\xe8\x43\xc9\xdc\x9e\x39\x8c\x61\x13\xe2\x5a\x18\xbe\x2c\x62\x90\x32\x25\x59\xe2\xc8\xe1\xc4\x09\x87\x5a\xdd\xdd\x09\x96\x7a\xbf\xa6\xf4\x0f\xbb\xcb\x14\x4f\x14\x94\xed\xf8\x4f\xed\x5a\xf4\x4e\x9e\x04\x14\xd2\x60\xee\xba\x62\x4f\x2a\xeb\x50\x14\xa4\xe0\xee\x1e\x1e\xdf\x04\x88\x4a\x26\xf5\x74\xd7\xb9\x86\x7d\x09\xde\x1a\x55\xd1\xdf\x06\xc3\x25\x03\x7f\xa8\xd5\xcd\x56\x68\xe4\xad\xdf\x36\x79\x8e\xe8\xfb\x1f\x9c\x3d\x87\x8b\x08\x1a\x6d\xfc\xed\xa9\xaa\xe7\x65\x45\xe2\xc0\x6c\x83\xaa\xf1\xa8\xe8\x89\xe8\xf3\x7c\x8d\xf9\x07\x62\xc1\xb3\xb7\xfe\x0e\xb3\x76\x70\xaf\x8d\xd1\xdb\xf4\xe6\x68\x8c\x70\xa2\x8c\x38\x74\xd8\xa8\xe8\xce\x40\x89\xd0\x29\xe7\x16\x52\xd9\x89\x2c\xa6\x91\xd1\x3b\x2e\x6c\x8f\xaa\xc2\x6b\xbe\x27\xd2\x96\xd9\xa7\xf4\x41\x0e\x5c\xba\x60\x69\xfc\x52\x6e\xaf\x17\xef\xc5\x12\xc3\x0b\xd3\xcb\x23\x1a\x22\xfa\xa2\xd3\x91\x07\x99\x4c\x2f\x0f\xb8\x79\x7f\x26\x5a\xef\x4b\x7c\xde\x2b\xb0\xab\x6b\x95\x27\xd5\xd8\x53\xa2\xdf\xfc\x25\x77\x83\x91\xe7\x4e\x48\xc1\xd9\x36\x17\xf0\xb3\x77\xb3\x5f\xfa\x53\xff\x03\x5d\xb8\xaf\x5b\xf1\x6d\x24\x5f\x4c\xfb\x7b\x80\x5d\x65\x75\xc2\x6c\xff\xe4\x4d\x9d\x26\xbc\x51\x6e\x6c\x99\xb1\x5d\x37\x56\xc7\x3f\xbd\xd2\x19\xa5\x9f\x21\x5f\x8b\xd5\x60\xc4\x7e\xef\xa3\x99\x6f\x35\x27\x3d\xc7\x74\x67\x3b\xb9\xe5\x38\xa6\xc9\x56\xfa\x24\x65\x8d\x9a\x3d\x90\x88\x8a\x10\x5d\x58\xf4\xa3\xab\x7f\xf7\xfe\x40\x97\x2a\xc9\xd8\x62\x12\xe7\xaf\x46\x89\x02\x0a\xe1\x84\x3f\x15\xa3\x82\x23\x9e\x77\xf1\xd6\x22\x9f\x39\x82\xef\x5c\xf7\x57\xe8\x75\x48\x47\xe8\x66\xac\x65\x7a\x4a\x3e\x7b\x1d\xf3\xa2\xde\x05\xe2\xb7\x69\x7d\x1e\x5f\xf5\x62\xd9\x7d\x1e\x5a\xa1\xa3\xe5\x09\x5e\x30\xad\xc1\xb6\xa5\x28\x3b\x6b\x52\xf9\x85\xab\xc0\x91\x89\x8e\xd1\x42\x2a\xd6\x64\x4f\x19\xa3\x55\xfe\xe3\x7e\xd5\x7a\xb4\x3a\x9e\xb6\x45\x4b\x58\xcf\x59\x63\x30\xff\x78\xbe\x3d\xe9\xb5\xb0\xa7\xf0\xf1\x63\x7c\x74\x99\x9e\x99\x30\x59\x0f\x06\xd3\xbf\xb3\xb7\x42\x25\xbb\x83\xdf\x0a\x82\x5d\xf8\xd4\x34\x69\x7c\xfb\x60\xee\xf9\x78\x4b\xf8\x95\x70\xf9\xba\xcd\x1c\xc9\x58\x5b\x61\x3b\xea\x3f\x94\xd4\xc3\xa1\x86\x80\xff\x7c\xcc\xfe\x15\x00\x00\xff\xff\x41\xb5\x10\xb9\x60\x34\x00\x00" +var _utilityNonfungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x59\x5b\x6f\x23\xb7\x15\x7e\x9f\x5f\x71\xea\x00\xb5\x1d\x68\xe5\x3e\x14\x7d\x30\x10\x6c\x36\x71\x5c\x08\x28\xdc\x60\xa3\x4d\x1e\x23\x6a\x78\xa4\x61\xc3\x21\x67\x49\x8e\xb4\x82\xb3\xff\xbd\x38\x87\x97\x99\xd1\xc5\xbb\x6e\xf7\x21\xb1\x46\xc3\x8f\xe7\xf2\x9d\xab\xee\xbe\xfd\xb6\xaa\xbe\xf9\x06\x96\x0d\xc2\xa3\xb6\x7b\x78\xb2\xe6\xcd\x63\x6f\xb6\x6a\xad\x11\x96\xf6\x0f\x34\xe0\x83\x30\x52\x38\xc9\x2f\xae\x9e\xac\xc9\xdf\xf3\xd7\x2b\xa8\xad\x09\x4e\xd4\x01\x94\x09\xe8\x36\xa2\xc6\xaa\x22\xbc\xf2\x11\x42\x23\x02\x08\xad\xcf\xa1\xe7\xd3\x1e\x7c\x63\x7b\x2d\xe9\xc1\xc6\xba\x16\x82\x9d\x57\x8b\x0d\x08\xe8\x3d\x3a\xd8\x0b\x13\x3c\x04\x0b\x12\x3b\x6d\x0f\x20\xc0\xe0\x1e\x9e\x1e\x97\x05\x60\x06\xa1\x41\xe5\x06\x71\xf6\x0c\x67\x10\x65\x15\x2c\xa8\xb6\xd3\xd8\xa2\x09\xf4\x1a\x1c\x6b\x31\x08\x3b\x67\xe1\xc7\x38\x6d\xef\x03\x6c\xac\x26\xf3\x90\x12\x74\xde\xf5\x1a\x3d\x08\x23\xc1\x88\x56\x99\x6d\xc5\x2a\x86\x89\xd6\xbe\xc3\x5a\x6d\x14\xfa\x79\xb2\xdc\xe3\x72\x05\x0e\xbd\xed\x5d\x36\x51\x6d\x1d\x96\x47\x10\x0e\x5d\xb2\x95\xc3\xce\xa1\x47\x52\x59\x18\xd6\x52\x19\x46\xf7\xad\x70\xa1\x88\x96\x80\x7f\xb4\x5a\x63\x1d\x94\x35\x2b\x78\x3f\xc1\x1f\xa0\x09\xd5\x07\xeb\x48\x6a\xb6\xe8\xb5\x4f\xd6\xcb\x67\xe7\xd5\x82\x5c\x58\xeb\x5e\xf2\x4b\x1b\xdc\xc3\xa6\x37\xfc\x1d\x5b\x5e\xb0\x05\x48\x0a\xbb\x37\xe8\xe8\x11\x0a\xaf\xf4\xa1\x6a\xed\x0e\x21\x90\x1d\x3d\x09\x4a\x66\xb1\x7d\x00\xbb\xe1\xb7\xc7\x57\xb0\xbc\x3f\x3b\xbb\x53\x12\xdd\x8a\xdf\x5c\xbd\xc7\x1a\xd5\x8e\x3e\x16\x71\x8b\x11\x3d\xeb\xe1\xc7\x4f\x40\x62\xad\x85\xc3\x91\x70\x7b\x15\x1a\xf0\xb6\x45\xe8\x1c\x32\x68\x67\x3d\x9b\x49\x2a\x7e\xa3\x4a\x56\xfd\xd8\x2b\x87\x2c\xd4\x60\x33\xd2\x23\x79\xb7\x46\x17\x84\x32\xc9\xa7\x0c\xb4\xc6\x46\xec\x94\x75\x25\x0a\x7c\x24\xc8\x01\x48\x04\x8f\x9d\x70\x22\x20\xac\xb1\x16\x3d\x89\x19\x60\xab\x76\xe8\xf9\x0e\x26\x2e\xfd\x21\xd6\x4a\xab\x70\xa0\x9b\x7c\x43\xe7\x04\x38\xdc\xa0\x43\x53\x23\x71\x33\x12\x77\x2c\x12\x89\x6b\x8d\x3e\x00\x7e\xea\xac\x4f\x78\x1b\x85\x5a\x46\xd6\x0d\xba\x2b\x03\xd6\x20\x58\x07\xad\x75\x58\x25\x9b\x0f\xe6\x9a\xc3\x82\x62\xcf\xdb\x24\x18\x09\xe5\x8f\xa5\x6a\xc5\x1f\x08\x75\xef\x83\x6d\x8b\x13\x92\xd1\x26\x71\x33\x75\x04\x45\xa3\x85\x9d\x70\xca\xf6\x04\xa9\xcc\x36\xf9\x82\xe0\x23\x1f\xe6\x55\xf5\xc3\x01\x7a\x4f\xf6\x2c\xc8\xac\xc2\x00\x34\x4b\x42\xd9\x0d\x53\x72\xca\x71\x0f\xb5\x30\xe0\xd1\xc8\x8a\x4e\xb9\x48\x96\xcc\xb6\x0e\xd1\xbd\x09\xf6\x0d\xfd\x7f\xc6\x77\x13\xf1\xc8\x65\x66\x4b\xf2\xf1\x25\x9c\x0c\x48\x2c\x01\x35\x12\xaa\x06\x8d\x72\x8b\xae\x3a\x09\xa7\xa5\xe5\xab\x72\xd4\x11\xeb\x8d\x0d\x0d\x3a\x16\x71\x56\xb2\x11\xa7\x16\x4f\xb6\x39\x30\xb4\x74\x22\x86\xc6\xd3\xe3\xb2\xda\x38\xdb\x9e\xf8\x94\xd3\x93\x81\x3a\x67\x10\x89\x9d\xf5\x2a\x14\x4f\x82\x35\x93\xbb\xae\x7d\x35\xe5\x68\x6d\xc9\x13\x21\xd2\x37\x38\x61\xfc\x06\xdd\xbc\xaa\xbe\xbd\xab\x2a\xd5\x76\xd6\x05\xf8\x55\xe1\x9e\x12\x80\xde\xa1\x03\x96\xe2\x6a\xfc\xe8\xaa\xaa\xee\xee\xee\x38\xd7\xb7\x44\xf3\x71\xf6\x1c\x25\x40\xf8\x37\x0b\x31\xfe\x96\xdc\xaa\x35\x9f\x4e\x57\xb1\x07\x47\xd4\x50\x7e\x94\xfe\xef\xee\xee\x2a\x51\xd7\xe8\xfd\x8d\xd0\xfa\x76\xb8\xe4\x24\xed\x3e\x57\x15\x00\x00\x01\xbf\x33\x80\x26\xa8\x90\x20\x37\xd6\xc5\x8c\xc3\x9e\x6c\xb0\x98\x59\x68\x4e\x2c\xd1\xff\xac\xa4\x80\x5f\x45\xaf\x03\x23\x8d\xaf\x1d\xc3\xfd\x96\x4f\xaf\x35\x7e\xdd\x9d\x7d\x27\x45\x48\x5c\x8d\x7f\x03\xee\x38\x25\xf3\x6b\x6c\xbe\x17\xaf\xfc\x40\x87\xa6\xf7\xfd\xb4\x8b\xd6\x12\xe1\xb4\xee\x61\xab\x02\xec\x89\x23\xa4\x6d\x8b\x41\xd0\x71\xd2\x35\x97\x00\x9f\xe4\x90\x05\x6f\x11\x38\x3a\x38\x53\xac\x91\x21\x02\x4a\x58\x1f\x98\x67\xd9\x72\x2b\x7a\xfe\xf4\xb8\xfc\x10\x4f\xaf\x0a\xe7\x0a\x4e\x8c\x0e\x03\xab\x22\xf3\x2a\xab\x22\x87\x54\x05\x31\x55\xc5\xc8\x20\x1d\xf6\xe2\x54\x24\x62\xd7\xd8\x0a\x9d\x4b\x56\xf3\x9d\x68\x5b\x0a\x73\xf6\xd9\x20\x9f\x4a\x4f\x06\xea\xfb\xeb\x51\xcd\xf0\x05\x39\xe7\x58\xd6\xb6\xb6\x32\x52\x82\xea\xcd\xe8\x75\x4a\x84\x2c\x5b\x23\x7c\xac\xc0\x42\x0f\xaa\x44\x57\x15\xc4\xa4\xcf\xe8\x32\xb2\x7b\x63\x65\xe4\x3b\x99\x94\x6c\x41\xef\x6d\x31\x96\xf7\x53\xab\x14\xb4\xa9\x09\xd8\xd3\x94\x57\x3d\x15\x05\x6f\x21\x75\x08\xca\xc9\x37\x9d\x70\xe1\x00\xca\x48\xfc\x44\x06\x21\x17\xb6\xd6\xa8\x60\x63\xb9\x88\x06\x2b\x70\x44\xc0\x8f\x3d\xba\x43\x2c\x2a\xd1\xde\x03\x41\x72\xb6\x89\x55\x79\x6a\xbb\x79\x06\x39\x25\xea\xae\x50\x14\xe5\x8d\x92\xf7\xf0\x61\x61\xc2\x3f\xfe\x3e\x83\xbe\x1f\x7f\x62\xd0\x7b\x78\x27\xa5\x43\xef\xdf\xce\xb8\x49\xb9\x87\x5f\x82\x53\x66\x7b\x7b\x02\xbb\x53\xb1\x6b\x80\x29\xe5\x6e\x7e\x07\xb3\x09\xef\x71\x73\x0f\xa2\x0f\xcd\x4d\xa1\xd9\x2d\xfc\xf5\xf9\x38\x29\xcc\x9f\x1e\x97\x9f\x23\xf4\x33\xff\x97\xfe\x71\x74\x8c\xc5\x8d\x78\xf3\x2d\x86\xc5\xc3\xcd\x6d\x16\x3b\x3d\xa5\x0f\x45\xf6\xf4\x8c\x3f\xbd\x9d\x8b\xa8\x49\x56\x64\x80\x59\x1e\x3a\xbc\xb9\x9d\x2b\x49\x2e\xde\x28\x74\x51\x84\xcf\xd5\xd9\xf0\x55\xbe\x44\x1b\xc7\xac\x88\x19\x89\x9e\xe7\x44\x65\x66\xe5\xa0\x32\x52\xd5\x22\xe4\x80\x8c\xfd\xd3\x49\x7b\x94\x90\x63\x5c\x15\x14\x76\xf0\xd4\x91\x1c\xfa\x27\xa7\x95\x07\x63\x43\x6c\xc0\xc8\x29\xb6\x37\xe1\xda\x73\xd7\x27\xb6\x38\x83\x15\x01\xad\x0a\xb3\x57\x46\xe9\xd5\x97\x08\x92\xd3\xe6\x0b\x0c\x21\xd4\xcb\x04\x39\x67\xbb\x4b\x86\x4b\x25\x11\x25\xd7\xdd\x49\xdf\x78\xa2\x7d\xc8\x36\x4d\xbd\xd1\xd7\x98\x74\x8c\xff\x25\xc5\x1f\xe2\xbb\x2f\xe8\x1d\xec\x57\x68\xbd\x98\xce\x40\x29\x7b\xfa\x38\x53\x0c\x93\xce\x45\x61\x4e\x3b\x62\x3a\x7f\x3f\xa9\xf4\xf3\x52\xf2\x87\x70\xc9\x69\xa8\x37\xea\x63\x8f\xb0\x78\x48\x96\x17\x75\xc3\xe9\xbb\x11\xbe\xbc\x7b\x36\x7e\x53\x5c\x65\x75\xab\x11\xf2\x19\x6b\xe5\xa9\xe3\x01\x7d\x70\xf6\x30\xc9\x28\xf0\x1d\x78\xd4\x27\x91\x3a\xfd\x32\x06\x6c\x34\x62\x7e\xfb\x4c\x40\x4e\xf4\xfb\x27\x86\x71\x23\x1d\x9b\xb5\xa1\x38\x71\x65\xa1\x4f\x76\x6f\xfc\xe4\xe0\x0f\x96\xaa\x9d\xdb\xf6\x6d\x9c\xb0\x1c\x82\xed\x88\x2d\x42\x4f\xe7\x9c\xd4\x02\xd6\x8d\xb5\x1e\x27\x10\x8d\xdd\x13\xab\x1c\x86\xde\x19\x0f\xbe\x5f\x47\xbf\x4a\xec\xd0\x48\x8a\x73\x6b\x60\xcf\x63\xef\xe4\x9e\x2e\x8e\x3e\x72\x02\xf6\x68\x1d\xe0\x27\x41\xdd\xd4\x0c\xd4\x06\x56\x64\x87\x15\x57\x30\x01\x3b\xa1\x7b\x9c\xc1\xba\x0f\xb0\x52\x72\x05\xd2\xa2\x37\xd7\x71\xda\x65\x01\x27\x50\x54\x4a\xa2\xb8\xb0\x6f\x54\x72\x36\x47\x05\x59\x84\xe7\x4b\x9b\xa4\xa6\x9b\xa8\xe4\x22\x85\x9e\x80\x2b\x89\x1b\xea\xa2\xae\x26\x78\x8b\x0d\xac\xa3\xb5\x52\xc2\x48\x6d\x2c\x2b\x3b\x4c\x29\x3c\x59\x82\x00\x6a\xf3\x75\x14\x8b\x24\xf9\x0f\xb1\x3c\xde\x36\x41\xa5\x83\x73\x58\x92\x83\x1a\xd4\x9d\xe7\x6e\x80\x2a\xe1\xbe\xb1\x74\x95\xb9\x0e\xe0\x7b\x87\xd1\x82\x21\x4f\x5b\xda\xda\x3f\xc8\xb4\xd4\x7f\x8d\xf1\x26\xd8\xdf\xd3\x44\xd6\x26\x2a\x51\x08\x10\x8d\x72\x62\x90\xe8\x95\x43\x59\x5a\xb7\xa3\x43\xc4\x4b\xde\x5c\xc8\x7c\x20\x31\x60\x6d\x9d\xb3\xfb\xcb\x77\x26\x8b\xbe\x03\x1f\x5c\x5f\x87\x9e\xa7\xfa\x34\xc2\xe7\xa4\x4f\xd3\x27\x7a\xca\x3e\x14\x64\xf3\xb3\xe1\x97\x22\xef\x97\x7e\xfd\xf4\xb8\xbc\x49\x3a\x1c\x3a\xa2\x45\x09\x99\x5b\xb8\xbf\x54\x34\xdf\x8e\x32\x00\xfd\x4b\x62\x19\xa5\xcb\xe3\xcf\xb9\xa8\x9d\xc9\x50\x16\x5a\x94\x8a\x1a\xdd\x5c\x7c\xfc\xd0\x5d\x0c\xc3\xc8\x6b\x92\x55\x1e\xf5\x73\xa3\x9f\x32\xc8\x6f\x98\xda\xdd\x3c\x3a\xe5\xce\x3a\xdf\xd6\xe5\x73\x03\x54\x6e\xff\x28\x6b\xaa\x9a\xcd\x9a\x8f\x8f\xa1\x13\x52\x62\x91\xf0\xfc\x7e\x9c\x3f\x83\x4d\xe9\x4a\x2b\x1f\x90\x9a\xa5\xfc\xbd\x4e\x80\x79\x28\x4b\x1d\xd8\xc4\xc9\x45\x56\x87\xad\xdd\x61\xd9\xcc\x14\x99\x47\x55\x87\x5a\xb6\xf8\x92\x0a\xa5\xcb\x64\x8e\x4f\xa3\x2b\x70\x38\x73\xd9\x8e\xdb\xa2\x03\x15\x45\x6e\x84\xe9\xc8\xe2\x81\x62\xf3\xc3\x87\xc5\x03\xb5\xb5\xc6\x86\x63\xd2\x8c\xa7\x9a\xc8\x9e\x2c\xe5\x4d\xfe\x63\xf1\x50\x88\x73\x0f\xdf\x3f\x13\x4d\x8e\x58\xc2\xbb\x92\xe9\xa3\x48\x1e\xdf\xeb\x90\xd3\x36\x7c\xf7\x1d\x8c\x21\xaf\x96\x51\xbe\x14\x27\x43\xb7\x12\xab\x39\xd7\xb7\x75\x9c\x55\xbd\x68\x91\x0c\x3d\x0d\x82\xc5\xc3\xd5\xc9\x95\xcc\x89\x49\xcb\x31\x15\x22\xd7\x8e\xf4\x34\x16\x8d\xd8\x7f\x70\xd1\x38\xdf\xe2\x0d\x18\x17\x5a\xbc\x69\x6c\x7c\x7d\x94\x24\xb6\xf8\xec\xe1\xff\x2d\x44\xf2\xfa\x6b\x1a\x22\x77\x85\x8b\x81\x67\x88\x44\x36\xc1\x7f\xe5\x9a\xc2\x3c\x13\x52\x8e\x69\x76\x24\xc4\x71\xba\x3a\xce\x36\xe9\x96\x1b\x76\x5b\x26\xc8\x51\xa1\xe5\x8c\xd4\xd1\xd8\x8f\xf2\xe9\x71\x49\x56\xf4\xa5\xf4\x09\x8e\xa6\xbc\xbb\x09\xfc\xdd\x50\x7f\x5d\x56\x8e\xee\xed\xc2\x97\x9b\x8e\x93\x8b\xa8\x07\x79\x5e\xb2\x23\x7f\xb0\x56\x7f\x9e\x8a\xf6\x3e\x49\x91\xa3\x26\x86\x09\x1b\x62\xab\x76\x34\x4b\x53\xf6\xa7\x02\xc7\xf7\xc7\xd9\x78\x1a\xac\x13\xbc\x77\x27\xbd\x63\x1d\x9b\x69\xec\xc8\xda\x87\x88\x97\x26\xf6\x51\x79\x83\xe0\x7a\x24\xec\x54\x45\x5f\xd6\x53\xf9\x63\x35\x47\xb9\xfe\x36\x2a\x7a\xcc\xc0\xf7\x71\x79\x59\xf6\x14\x51\x09\x53\x3b\x0c\x47\x2b\xe4\xf1\x78\xbb\xc6\xbc\x2e\x95\x79\x85\x5c\xb6\x36\x94\xf0\xf2\x16\xe2\x35\x84\x1d\x18\x76\x5f\xf2\xfb\xac\xd0\x78\x76\xbe\x37\x1d\xed\xb2\x9e\xcf\xb9\x30\x95\x67\x36\x5e\x1e\x59\xa0\x13\xa1\x19\x29\x7b\xe2\xb1\x4b\x24\x7a\x88\x38\xbf\x44\x98\x9f\x45\x68\x88\x45\xa3\x8f\x6f\xbf\x28\x42\xd7\xaf\xb5\xaa\xff\x5f\x09\x7e\x66\x94\x2c\xc0\xf0\xe9\xe8\xfe\x27\xeb\x5a\xa1\xf5\x01\xf6\x98\x56\x8b\xc3\xaa\x3a\x4d\x0d\x23\x5a\xa6\x4a\x31\x41\x10\xf9\xd7\x86\x1a\xa4\xe2\xd7\x84\x8b\xfb\x66\xee\xcc\xf2\xdc\x11\xfb\xc8\xb8\xad\xa3\x2e\x12\x0c\x92\xfc\xf4\x2e\x91\x9b\x37\xc8\x13\x58\x0f\xda\x9a\x2d\xa7\x9d\xb4\xb7\x8c\x6b\x9a\x61\xff\x2c\x22\xbc\xc3\xa9\x4a\xb5\x43\x11\xf0\xa7\xb6\x0b\x87\x91\xeb\xe3\x53\xce\x61\x48\x5f\x5d\xc8\x56\x10\x37\xbd\x31\xb4\x8f\x2b\xe8\x68\x97\x82\x87\xb8\xfe\xda\xc7\x86\xf4\x62\x92\x3b\x2b\xcc\x0d\xd7\xc3\xe1\xf3\xab\xcb\xe2\xbf\xd0\x6c\xc9\xb1\x54\x1a\xff\x96\x2a\x62\xbc\x49\x8e\xdd\x95\x4b\x21\x2b\xfc\x97\xab\x8b\x15\xe7\xa5\xe4\x1f\x73\xff\x69\xb2\x1f\x6f\xae\x06\xbf\x9f\x98\x92\x4f\xa5\x86\x22\x9d\x54\x12\x84\x73\xe2\xf0\x8a\xc2\x70\x76\x4d\x73\x6c\x34\x87\x67\x6c\x36\xea\xf8\xc6\xab\xef\xd8\x8c\xa5\xb4\x34\xf9\x15\x6b\x58\x25\x9f\x81\xca\x8d\xe0\xe5\x53\x9c\xf0\x75\x4b\x0e\x14\x7a\x2f\x0e\xf9\xe7\x13\x1a\xf0\x24\xfa\xa0\x8c\x98\x50\x6e\x04\x3e\xac\x96\xc9\x70\x45\xd2\x56\x79\xcf\x56\x8e\xcb\xcb\xfc\x4b\x49\x4c\x79\xd4\x43\x52\xd0\xae\x71\x68\x36\xcf\x61\x13\x62\x23\x9c\x8c\x33\x18\x25\x6f\x15\x97\x8b\x47\x5d\xe9\xf9\xbe\x68\xbc\x91\x60\x11\x8f\xbb\xa2\xf8\x30\x4d\xd2\xf6\xc5\x96\xa8\x9c\x7f\x45\x47\x74\x3c\x7b\xa7\x1f\x91\x5a\xdb\x9b\x5c\xfe\xe3\xb2\x69\x28\x35\xaf\x48\x98\x39\x98\xee\xa9\xd5\xaa\x5e\x7e\x3d\x4e\x63\x34\x21\xfd\x3e\x9e\x8b\xbe\x7a\x2c\xba\x10\xd9\x37\x31\xb4\x29\x9c\x8d\xd2\xb7\xf0\xe7\x9f\xf9\xd1\xdb\x71\x17\xac\xe4\xed\x3d\x9c\x1c\xa6\x7f\x57\x3f\x0a\x43\xdd\x47\x94\x8f\x63\xb6\x6c\x27\xe2\x60\x39\x34\xcc\x31\xbb\x4d\xb6\xeb\x65\x14\x68\x45\xa8\x9b\x12\xaf\x79\xd1\x9e\x7f\x4e\x96\x97\x52\x08\xbc\x3c\xf1\x7d\xae\xfe\x1b\x00\x00\xff\xff\xda\x9e\x9c\x04\xed\x1f\x00\x00" func utilityNonfungibletokenCdcBytes() ([]byte, error) { return bindataRead( @@ -257,7 +257,7 @@ func utilityNonfungibletokenCdc() (*asset, error) { } info := bindataFileInfo{name: "utility/NonFungibleToken.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0x76, 0x73, 0xbe, 0x2, 0xac, 0x80, 0xd9, 0xd1, 0xe6, 0x1f, 0xe4, 0x94, 0x2d, 0xc8, 0xac, 0x28, 0x22, 0xd0, 0xf3, 0x1e, 0x47, 0xb3, 0x7e, 0x6f, 0xfb, 0xbe, 0x23, 0xb4, 0x3e, 0x7e, 0x6a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3c, 0x22, 0x37, 0x39, 0xbc, 0xc2, 0x40, 0xa8, 0xff, 0xbc, 0xbc, 0x37, 0x3f, 0xf0, 0x1f, 0xf1, 0x6a, 0x6b, 0xcc, 0xa3, 0x58, 0xd2, 0x68, 0x7f, 0x6a, 0x18, 0xf9, 0x69, 0x8d, 0xb8, 0x72, 0x6f}} return a, nil } diff --git a/lib/go/test/go.mod b/lib/go/test/go.mod index b1e4848..7ee545e 100644 --- a/lib/go/test/go.mod +++ b/lib/go/test/go.mod @@ -3,7 +3,7 @@ module github.com/onflow/flow-ft/lib/go/test go 1.18 require ( - github.com/onflow/cadence v1.0.0-preview.1 + github.com/onflow/cadence v1.0.0-preview.1.0.20231211223059-394691058b70 github.com/onflow/flow-emulator v0.54.1-0.20230919150501-db4da71c768b github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230913160646-09adc7d3b513 github.com/onflow/flow-ft/lib/go/templates v0.0.0-00010101000000-000000000000 @@ -67,6 +67,8 @@ require ( github.com/kevinburke/go-bindata v3.24.0+incompatible // indirect github.com/klauspost/compress v1.16.5 // indirect github.com/klauspost/cpuid/v2 v2.2.5 // indirect + github.com/kr/pretty v0.3.1 // indirect + github.com/kr/text v0.2.0 // indirect github.com/libp2p/go-buffer-pool v0.1.0 // indirect github.com/libp2p/go-libp2p v0.28.1 // indirect github.com/logrusorgru/aurora v2.0.3+incompatible // indirect @@ -107,6 +109,7 @@ require ( github.com/psiemens/sconfig v0.1.0 // indirect github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect github.com/rivo/uniseg v0.4.4 // indirect + github.com/rogpeppe/go-internal v1.9.0 // indirect github.com/sethvargo/go-retry v0.2.3 // indirect github.com/slok/go-http-metrics v0.10.0 // indirect github.com/spaolacci/murmur3 v1.1.0 // indirect diff --git a/lib/go/test/go.sum b/lib/go/test/go.sum index 66f93cc..1606b0f 100644 --- a/lib/go/test/go.sum +++ b/lib/go/test/go.sum @@ -732,6 +732,7 @@ github.com/go-latex/latex v0.0.0-20210823091927-c0d11ff05a81/go.mod h1:SX0U8uGpx github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= github.com/go-logfmt/logfmt v0.5.1 h1:otpy5pqBCBZ1ng9RQ0dPu4PN7ba75Y/aA+UpowDyNVA= +github.com/go-logfmt/logfmt v0.5.1/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs= github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= github.com/go-logr/logr v1.2.4 h1:g01GSCwiDw2xSZfjJ2/T9M+S6pFdcNtFYsp+Y43HYDQ= @@ -878,6 +879,8 @@ github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFb github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0/go.mod h1:hgWBS7lorOAVIJEQMi4ZsPv9hVvWI6+ch50m39Pf2Ks= github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 h1:lLT7ZLSzGLI08vc9cpd+tYmNWjdKDqyr/2L+f6U12Fk= github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3/go.mod h1:o//XUCC/F+yRGJoPO/VU0GSB0f8Nhgmxx0VIRUvaC0w= +github.com/gxed/hashland/keccakpg v0.0.1/go.mod h1:kRzw3HkwxFU1mpmPP8v1WyQzwdGfmKFJ6tItnhQ67kU= +github.com/gxed/hashland/murmur3 v0.0.1/go.mod h1:KjXop02n4/ckmZSnY2+HKcLud/tcmvhST0bie/0lS48= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= @@ -943,10 +946,13 @@ github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= +github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= +github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/julienschmidt/httprouter v1.1.1-0.20170430222011-975b5c4c7c21/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= +github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= github.com/jung-kurt/gofpdf v1.0.0/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 h1:uC1QfSlInpQF+M0ao65imhwqKnz3Q2z/d8PWZRMQvDM= @@ -984,6 +990,7 @@ github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfn github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= +github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= @@ -1062,6 +1069,8 @@ github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrk github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY= github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= github.com/mr-tron/base58 v1.1.0/go.mod h1:xcD2VGqlgYjBdcBLw+TuYLr8afG+Hj8g2eTVqeSzSU8= github.com/mr-tron/base58 v1.1.3/go.mod h1:BinMc/sQntlIE1frQmRFPUoPA1Zkr8VRgBdjWI2mNwc= github.com/mr-tron/base58 v1.2.0 h1:T/HDJBh4ZCPbU39/+c3rRvE0uKBQlU27+QI8LJ4t64o= @@ -1089,6 +1098,7 @@ github.com/multiformats/go-varint v0.0.5/go.mod h1:3Ls8CIEsrijN6+B7PbrXRPxHRPuXS github.com/multiformats/go-varint v0.0.7 h1:sWSGR+f/eu5ABZA2ZpYKBILXTTs9JWpdEM/nEGOHFS8= github.com/multiformats/go-varint v0.0.7/go.mod h1:r8PUYw/fD/SjBCiKOoDlGF6QawOELpZAu9eioSos/OU= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/naoina/go-stringutil v0.1.0/go.mod h1:XJ2SJL9jCtBh+P9q5btrd/Ylo8XwT/h1USek5+NqSA0= github.com/naoina/toml v0.1.2-0.20170918210437-9fafd6967416/go.mod h1:NBIhNtsFMo3G2szEBne+bO4gS192HuIYRqfvOWb4i1E= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= @@ -1101,6 +1111,8 @@ github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0/go.mod h1:Q5Up9Kt+J6zuAFmgrsiKz6t//E/hR5/iuVjH62pdztk= github.com/onflow/cadence v1.0.0-preview.1 h1:Y/q/43aDc93/1Atsxx3+e2V/dZiQuF1TqkXEVboA5pY= github.com/onflow/cadence v1.0.0-preview.1/go.mod h1:Q5Up9Kt+J6zuAFmgrsiKz6t//E/hR5/iuVjH62pdztk= +github.com/onflow/cadence v1.0.0-preview.1.0.20231211223059-394691058b70 h1:MOSvy30agrcUJzhY9Q3EHmSjvUtN3F2aIEBNjzsvWmg= +github.com/onflow/cadence v1.0.0-preview.1.0.20231211223059-394691058b70/go.mod h1:60RhxKY5V4DXFQfvXQa48eZZVN19O7Lu9cp53FM54vo= github.com/onflow/flow-core-contracts/lib/go/contracts v1.2.4-0.20230915224512-fa9343b5af21 h1:v6Orh4HCFzPr+z1WfC7WLHSfzH+hK3kJq1LQHgsTfJI= github.com/onflow/flow-core-contracts/lib/go/contracts v1.2.4-0.20230915224512-fa9343b5af21/go.mod h1:jynQxJ+wcEZ5LilKDUIUWY6IOO+CSYhcggWleswq20Y= github.com/onflow/flow-core-contracts/lib/go/templates v1.2.4-0.20230915224512-fa9343b5af21 h1:kfVOhI/hpyJeqicjedYzFjCofOQgGwY0wYA9Rh7GPy4= @@ -1291,6 +1303,7 @@ github.com/vmihailenco/msgpack/v4 v4.3.11/go.mod h1:gborTTJjAo/GWTqqRjrLCn9pgNN+ github.com/vmihailenco/tagparser v0.1.1 h1:quXMXlA39OCbd2wAdTsGDlK9RkOk6Wuw+x37wVyIuWY= github.com/vmihailenco/tagparser v0.1.1/go.mod h1:OeAg3pn3UbLjkWt+rN9oFYB6u/cQgqMEUPoW2WPyhdI= github.com/whyrusleeping/go-keyspace v0.0.0-20160322163242-5b898ac5add1 h1:EKhdznlJHPMoKr0XTrX+IlJs1LH3lyx2nfr1dOlZ79k= +github.com/whyrusleeping/go-logging v0.0.0-20170515211332-0457bb6b88fc/go.mod h1:bopw91TMyo8J3tvftk8xmU2kPmlrt4nScJQZU2hE5EM= github.com/wsddn/go-ecdh v0.0.0-20161211032359-48726bab9208/go.mod h1:IotVbo4F+mw0EzQ08zFqg7pK3FebNXpaMsRy2RT+Ees= github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM= github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg= @@ -2048,6 +2061,7 @@ gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= +gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=