From 938a91c71338fe1159d7f71f4402cc591e2cda23 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 5 Mar 2024 15:10:53 -0600 Subject: [PATCH] use latest import syntax update readme and use correct borrow syntax --- .github/workflows/ci.yml | 2 +- Makefile | 4 +- README.md | 102 ++++-------------- contracts/BasicNFT.cdc | 8 +- contracts/ExampleNFT.cdc | 6 +- contracts/MetadataViews.cdc | 8 +- contracts/NonFungibleToken.cdc | 2 +- contracts/utility/FungibleToken.cdc | 5 +- contracts/utility/NFTForwarding.cdc | 2 +- lib/go/contracts/contracts.go | 34 +++--- lib/go/contracts/internal/assets/assets.go | 24 ++--- lib/go/templates/internal/assets/assets.go | 72 ++++++------- lib/go/templates/templates.go | 15 ++- lib/go/test/go.mod | 98 ++++++++--------- lib/go/test/go.sum | 96 +++++++++++++++++ scripts/get_contract_storage_path.cdc | 2 +- transactions/destroy_nft.cdc | 6 +- .../generic_transfer_with_address.cdc | 6 +- transactions/generic_transfer_with_paths.cdc | 2 +- .../change_forwarder_recipient.cdc | 4 +- .../nft-forwarding/create_forwarder.cdc | 6 +- .../transfer_nft_to_receiver.cdc | 8 +- .../unlink_forwarder_link_collection.cdc | 6 +- transactions/setup_account_from_address.cdc | 6 +- .../setup_account_from_nft_reference.cdc | 4 +- transactions/transfer_nft.cdc | 2 +- transactions/unlink_collection.cdc | 4 +- 27 files changed, 293 insertions(+), 241 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9b9799a3..b3336905 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: restore-keys: | ${{ runner.os }}-go- - name: Install Flow CLI - run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)" -- v1.12.0-cadence-v1.0.0-M4-2 + run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/feature/stable-cadence/install.sh)" - name: Flow CLI Version run: flow version - name: Update PATH diff --git a/Makefile b/Makefile index 24a16cfd..a883ef2b 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,9 @@ test: $(MAKE) generate -C lib/go $(MAKE) test -C lib/go - flow test --cover --covercode="contracts" tests/test_*.cdc + flow-c1 test --cover --covercode="contracts" tests/test_*.cdc .PHONY: ci ci: $(MAKE) ci -C lib/go - flow test --cover --covercode="contracts" tests/test_*.cdc + flow-c1 test --cover --covercode="contracts" tests/test_*.cdc diff --git a/README.md b/README.md index 0524c0bc..35684315 100644 --- a/README.md +++ b/README.md @@ -56,60 +56,23 @@ Create a new collection using the `Token.createEmptyCollection()` function. This function MUST return an empty collection that contains no NFTs. Users typically save new collections to a contract-defined location in their account -and link the `NonFungibleToken.CollectionPublic` interface as a public capability. - -```cadence -let collection <- ExampleNFT.createEmptyCollection() - -account.save(<-collection, to: ExampleNFT.CollectionStoragePath) - -// create a public capability for the collection -account.link<&{NonFungibleToken.CollectionPublic}>( - ExampleNFT.CollectionPublicPath, - target: ExampleNFT.CollectionStoragePath -) -``` +and public a capability to their collection. ### Withdraw an NFT -Withdraw an `NFT` from a `Collection` using the [`withdraw()`](contracts/ExampleNFT.cdc#L36-L42) function. -This function emits the [`Withdraw`](contracts/ExampleNFT.cdc#L12) event. - -```cadence -let collectionRef = account.borrow<&ExampleNFT.Collection>(from: ExampleNFT.CollectionStoragePath) - ?? panic("Could not borrow a reference to the owner's collection") - -// withdraw the NFT from the owner's collection -let nft <- collectionRef.withdraw(withdrawID: 42) -``` +Withdraw an `NFT` from a `Collection` using the [`withdraw()`](contracts/ExampleNFT.cdc#L160-L165) function. +This function emits the [`NonFungibleToken.Withdrawn`](contracts/NonFungibleToken.cdc#L78) event automatically. ### Deposit an NFT -Deposit an `NFT` into a `Collection` using the [`deposit()`](contracts/ExampleNFT.cdc#L46-L57) function. -This function emits the [`Deposit`](contracts/ExampleNFT.cdc#L13) event. - -This function is available on the `NonFungibleToken.CollectionPublic` interface, -which accounts publish as public capability. -This capability allows anybody to deposit an NFT into a collection -without accessing the entire collection. - -```cadence -let nft: ExampleNFT.NFT - -// ... - -let collection = account.getCapability(ExampleNFT.CollectionPublicPath) - .borrow<&{NonFungibleToken.CollectionPublic}>() - ?? panic("Could not borrow a reference to the receiver's collection") - -collection.deposit(token: <-nft) -``` +Deposit an `NFT` into a `Collection` using the [`deposit()`](contracts/ExampleNFT.cdc#L169-L176) function. +This function emits the [`NonFungibleToken.Deposited`](contracts/NonFungibleToken.cdc#L86) event automatically. #### ⚠️ Important In order to comply with the deposit function in the interface, -an implementation MUST take a `@NonFungibleToken.NFT` resource as an argument. -This means that anyone can send a resource object that conforms to `@NonFungibleToken.NFT` to a deposit function. +an implementation MUST take a `@{NonFungibleToken.NFT}` resource as an argument. +This means that anyone can send a resource object that conforms to `{NonFungibleToken.NFT}` to a deposit function. In an implementation, you MUST cast the `token` as your specific token type before depositing it or you will deposit another token type into your collection. For example: @@ -120,18 +83,17 @@ let token <- token as! @ExampleNFT.NFT ### List NFTs in an account -Return a list of NFTs in a `Collection` using the [`getIDs`](contracts/ExampleNFT.cdc#L59-L62) function. +Return a list of NFTs in a `Collection` using the [`getIDs`](contracts/ExampleNFT.cdc#L179) function. -This function is available on the `NonFungibleToken.CollectionPublic` interface, -which accounts publish as public capability. +### Return the NFT type that a collection can accept in a deposit -```cadence -let collection = account.getCapability(ExampleNFT.CollectionPublicPath) - .borrow<&{NonFungibleToken.CollectionPublic}>() - ?? panic("Could not borrow a reference to the receiver's collection") +Return types of NFTs that a `Collection` can accept in a deposit +using the [`getSupportedNFTTypes`](contracts/ExampleNFT.cdc#L143-L157) functions. -let ids = collection.getIDs() -``` +### Get Available SubNFTs, if any + +Some NFTs can own other NFTs, the standard provides a [function](contracts/NonFungibleToken.cdc#L111-L131) that +projects can optionally implement to return information the owned NFTs. ## NFT Metadata @@ -157,29 +119,6 @@ including the name, description, image and owner. **Source: [get_nft_metadata.cdc](scripts/get_nft_metadata.cdc)** -```cadence -// Get the regular public capability -let collection = account.getCapability(ExampleNFT.CollectionPublicPath) - .borrow<&{ExampleNFT.ExampleNFTCollectionPublic}>() - ?? panic("Could not borrow a reference to the collection") - -// Borrow a reference to the NFT as usual -let nft = collection.borrowExampleNFT(id: 42) - ?? panic("Could not borrow a reference to the NFT") - -// Call the resolveView method -// Provide the type of the view that you want to resolve -// View types are defined in the MetadataViews contract -// You can see if an NFT supports a specific view type by using the `getViews()` method -if let view = nft.resolveView(Type()) { - let display = view as! MetadataViews.Display - - log(display.name) - log(display.description) - log(display.thumbnail) -} -``` - ### How to implement metadata The [example NFT contract](contracts/ExampleNFT.cdc) shows a basic example @@ -245,13 +184,18 @@ but without most of the downsides. ## How to test the standard If you want to test out these contracts, we recommend either testing them -with the [Flow Playground](https://play.onflow.org) +with the [Flow Playground](https://play.flow.com) or with the [Visual Studio Code Extension](https://github.com/onflow/flow/blob/master/docs/vscode-extension.md#cadence-visual-studio-code-extension). The steps to follow are: -1. Deploy `NonFungibleToken.cdc` -2. Deploy `ExampleNFT.cdc`, importing `NonFungibleToken` from the address you deployed it to. +1. Deploy `ViewResolver.cdc` +2. Deploy `NonFungibleToken.cdc`, importing `ViewResolver`. +3. Deploy `ExampleNFT.cdc`, importing `NonFungibleToken`. + +If you are not making any modifications to the standard contracts, +they are already deployed to the addresses listed above and you can just import +from those directly instead of deploying them yourself. Then you can experiment with some of the other transactions and scripts in `transactions/` or even write your own. You'll need to replace some of the import address placeholders with addresses that you deploy to, as well as some of the transaction arguments. diff --git a/contracts/BasicNFT.cdc b/contracts/BasicNFT.cdc index cd8a27ef..5b8a0a95 100644 --- a/contracts/BasicNFT.cdc +++ b/contracts/BasicNFT.cdc @@ -11,10 +11,10 @@ * */ -import NonFungibleToken from "NonFungibleToken" -import MetadataViews from "MetadataViews" -import ViewResolver from "ViewResolver" -import UniversalCollection from "UniversalCollection" +import "NonFungibleToken" +import "MetadataViews" +import "ViewResolver" +import "UniversalCollection" access(all) contract BasicNFT: NonFungibleToken { diff --git a/contracts/ExampleNFT.cdc b/contracts/ExampleNFT.cdc index 7d59d9d4..658db134 100644 --- a/contracts/ExampleNFT.cdc +++ b/contracts/ExampleNFT.cdc @@ -10,9 +10,9 @@ * */ -import NonFungibleToken from "NonFungibleToken" -import ViewResolver from "ViewResolver" -import MetadataViews from "MetadataViews" +import "NonFungibleToken" +import "ViewResolver" +import "MetadataViews" access(all) contract ExampleNFT: NonFungibleToken { diff --git a/contracts/MetadataViews.cdc b/contracts/MetadataViews.cdc index f8695bc0..580d85b7 100644 --- a/contracts/MetadataViews.cdc +++ b/contracts/MetadataViews.cdc @@ -1,6 +1,6 @@ -import FungibleToken from "FungibleToken" -import NonFungibleToken from "NonFungibleToken" -import ViewResolver from "ViewResolver" +import "FungibleToken" +import "NonFungibleToken" +import "ViewResolver" /// This contract implements the metadata standard proposed /// in FLIP-0636. @@ -665,7 +665,7 @@ access(all) contract MetadataViews { // Square-sized image to represent this collection. access(all) let squareImage: MetadataViews.Media - // Banner-sized image for this collection, recommended to have a size near 1200x630. + // Banner-sized image for this collection, recommended to have a size near 1400x350. access(all) let bannerImage: MetadataViews.Media // Social links to reach this collection's social homepages. diff --git a/contracts/NonFungibleToken.cdc b/contracts/NonFungibleToken.cdc index 1eba76ed..4f79d2cc 100644 --- a/contracts/NonFungibleToken.cdc +++ b/contracts/NonFungibleToken.cdc @@ -36,7 +36,7 @@ Collection to complete the transfer. */ -import ViewResolver from "ViewResolver" +import "ViewResolver" /// The main NFT contract. Other NFT contracts will /// import and implement the interfaces defined in this contract diff --git a/contracts/utility/FungibleToken.cdc b/contracts/utility/FungibleToken.cdc index c40dc23a..cd0193b1 100644 --- a/contracts/utility/FungibleToken.cdc +++ b/contracts/utility/FungibleToken.cdc @@ -31,8 +31,8 @@ to the Provider interface. */ -import ViewResolver from "ViewResolver" -//import Burner from "Burner" +import "ViewResolver" +//import "Burner" /// FungibleToken /// @@ -150,6 +150,7 @@ access(all) contract interface FungibleToken: ViewResolver { 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 optionally returns a list of vault types that this receiver accepts diff --git a/contracts/utility/NFTForwarding.cdc b/contracts/utility/NFTForwarding.cdc index 7136d32f..e34e149f 100644 --- a/contracts/utility/NFTForwarding.cdc +++ b/contracts/utility/NFTForwarding.cdc @@ -11,7 +11,7 @@ /// To create an NFTForwarder resource, an account calls the createNewNFTForwarder() /// function, passing the Collection Capability to which NFTs will be forwarded. /// -import NonFungibleToken from "NonFungibleToken" +import "NonFungibleToken" access(all) contract NFTForwarding { diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index 9ea255d9..a16511d2 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -15,11 +15,15 @@ import ( var ( placeholderNonFungibleToken = regexp.MustCompile(`"NonFungibleToken"`) + nonFungibleTokenImport = "NonFungibleToken from " placeholderMetadataViews = regexp.MustCompile(`"MetadataViews"`) + metadataViewsImport = "MetadataViews from " placeholderFungibleToken = regexp.MustCompile(`"FungibleToken"`) + fungibleTokenImport = "FungibleToken from " placeholderResolver = regexp.MustCompile(`"ViewResolver"`) - placeholderNFTMetadataViews = regexp.MustCompile(`"NFTMetadataViews"`) + viewResolverImport = "ViewResolver from " placeholderUniversalCollection = regexp.MustCompile(`"UniversalCollection"`) + universalCollectionImport = "UniversalCollection from " ) const ( @@ -48,7 +52,7 @@ func withHexPrefix(address string) string { // NonFungibleToken returns the NonFungibleToken contract interface. func NonFungibleToken(resolverAddress string) []byte { code := assets.MustAssetString(filenameNonFungibleToken) - code = placeholderResolver.ReplaceAllString(code, withHexPrefix(resolverAddress)) + code = placeholderResolver.ReplaceAllString(code, viewResolverImport+withHexPrefix(resolverAddress)) return []byte(code) } @@ -58,9 +62,9 @@ func NonFungibleToken(resolverAddress string) []byte { func ExampleNFT(nftAddress, metadataAddress, resolverAddress flow.Address) []byte { code := assets.MustAssetString(filenameExampleNFT) - code = placeholderNonFungibleToken.ReplaceAllString(code, withHexPrefix(nftAddress.String())) - code = placeholderMetadataViews.ReplaceAllString(code, withHexPrefix(metadataAddress.String())) - code = placeholderResolver.ReplaceAllString(code, withHexPrefix(resolverAddress.String())) + code = placeholderNonFungibleToken.ReplaceAllString(code, nonFungibleTokenImport+withHexPrefix(nftAddress.String())) + code = placeholderMetadataViews.ReplaceAllString(code, metadataViewsImport+withHexPrefix(metadataAddress.String())) + code = placeholderResolver.ReplaceAllString(code, viewResolverImport+withHexPrefix(resolverAddress.String())) return []byte(code) } @@ -68,9 +72,9 @@ func ExampleNFT(nftAddress, metadataAddress, resolverAddress flow.Address) []byt func MetadataViews(ftAddress, nftAddress, resolverAddress string) []byte { code := assets.MustAssetString(filenameMetadataViews) - code = placeholderFungibleToken.ReplaceAllString(code, withHexPrefix(ftAddress)) - code = placeholderNonFungibleToken.ReplaceAllString(code, withHexPrefix(nftAddress)) - code = placeholderResolver.ReplaceAllString(code, withHexPrefix(resolverAddress)) + code = placeholderFungibleToken.ReplaceAllString(code, fungibleTokenImport+withHexPrefix(ftAddress)) + code = placeholderNonFungibleToken.ReplaceAllString(code, nonFungibleTokenImport+withHexPrefix(nftAddress)) + code = placeholderResolver.ReplaceAllString(code, viewResolverImport+withHexPrefix(resolverAddress)) return []byte(code) } @@ -82,18 +86,18 @@ func ViewResolver() []byte { func UniversalCollection(nftAddress, resolverAddress, metadataAddress flow.Address) []byte { code := assets.MustAssetString(filenameUniversalCollection) - code = placeholderMetadataViews.ReplaceAllString(code, withHexPrefix(metadataAddress.String())) - code = placeholderNonFungibleToken.ReplaceAllString(code, withHexPrefix(nftAddress.String())) - code = placeholderResolver.ReplaceAllString(code, withHexPrefix(resolverAddress.String())) + code = placeholderMetadataViews.ReplaceAllString(code, metadataViewsImport+withHexPrefix(metadataAddress.String())) + code = placeholderNonFungibleToken.ReplaceAllString(code, nonFungibleTokenImport+withHexPrefix(nftAddress.String())) + code = placeholderResolver.ReplaceAllString(code, viewResolverImport+withHexPrefix(resolverAddress.String())) return []byte(code) } func BasicNFT(nftAddress, resolverAddress, metadataAddress, universalCollectionAddress flow.Address) []byte { code := assets.MustAssetString(filenameBasicNFT) - code = placeholderMetadataViews.ReplaceAllString(code, withHexPrefix(metadataAddress.String())) - code = placeholderNonFungibleToken.ReplaceAllString(code, withHexPrefix(nftAddress.String())) - code = placeholderResolver.ReplaceAllString(code, withHexPrefix(resolverAddress.String())) - code = placeholderUniversalCollection.ReplaceAllString(code, withHexPrefix(universalCollectionAddress.String())) + code = placeholderMetadataViews.ReplaceAllString(code, metadataViewsImport+withHexPrefix(metadataAddress.String())) + code = placeholderNonFungibleToken.ReplaceAllString(code, nonFungibleTokenImport+withHexPrefix(nftAddress.String())) + code = placeholderResolver.ReplaceAllString(code, viewResolverImport+withHexPrefix(resolverAddress.String())) + code = placeholderUniversalCollection.ReplaceAllString(code, universalCollectionImport+withHexPrefix(universalCollectionAddress.String())) return []byte(code) } diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index dc23bbad..6d549108 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,9 +1,9 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// BasicNFT.cdc (5.925kB) -// ExampleNFT.cdc (13.682kB) -// MetadataViews.cdc (25.552kB) -// NonFungibleToken.cdc (10.595kB) +// BasicNFT.cdc (5.841kB) +// ExampleNFT.cdc (13.623kB) +// MetadataViews.cdc (25.493kB) +// NonFungibleToken.cdc (10.577kB) // UniversalCollection.cdc (4.31kB) // ViewResolver.cdc (2.718kB) @@ -75,7 +75,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _basicnftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\x5b\x6f\xdb\x3a\x12\x7e\xf7\xaf\x98\xd5\xc3\xc2\xce\x3a\x76\x9a\xd3\x66\xcf\x11\xd2\xa6\xdd\x36\xc6\x16\x68\x8d\xa2\x75\xba\x0f\x45\x90\xd2\xd4\xc8\x26\x42\x91\x2e\x49\xd9\x31\x82\xfc\xf7\x05\xa9\xbb\x44\x3b\x4e\x8a\xa3\x07\xc3\x22\xe7\xf2\xcd\x95\x43\x8d\x8f\xa0\x77\xd4\x3b\x02\x98\x2d\x99\x06\xa6\x81\x08\x98\x13\xcd\x28\xb0\x64\xc5\x31\x41\x61\x88\x61\x52\x80\x8c\x81\xc0\x84\xcb\x0d\x4c\xa5\x38\x9e\xa4\x62\xc1\xe6\x1c\x61\x26\x6f\x51\x40\xaa\x99\x58\x80\x59\x22\x7c\x3f\x05\x6d\x88\x88\x88\x8a\x46\x56\xec\x47\x03\x7a\x29\x37\x1a\xcc\x92\x18\x20\xb9\xec\xe9\x64\x06\xd4\x6a\x42\x88\x30\x66\x02\x23\x60\x02\xd6\xa8\xb6\x10\xe3\x06\x38\x13\xa8\xad\x46\x2a\x23\x84\x3e\x47\xed\xf8\x05\xbc\x38\x39\x81\x25\x2a\x1c\x64\x98\xaf\x04\x67\xb7\xe8\xf4\xfe\xbc\xbc\x23\x16\xf0\x74\x32\x3b\x5e\x9f\xfe\x04\x2a\x85\x51\x84\x9a\x21\x18\x6b\x98\x55\xc8\x38\x4f\xb5\x51\xc4\xa0\x06\x02\x09\x13\x2c\x21\xbc\x65\xa6\x95\x6a\x2d\x15\x8e\xc3\x61\x66\x1a\x84\xdc\xc0\x4a\x6a\xed\x2c\xde\x30\xb3\x74\x2a\x2d\x45\x61\x2b\x68\x26\x28\xc2\xe5\x1a\x85\xd1\x43\xa0\x92\x73\xa4\x56\xa0\x1e\x5a\x91\x44\x44\x20\xcd\x12\x15\x48\x1e\x81\xc2\x5f\x29\x53\x4e\xa9\x06\xa2\x10\x84\x34\xc5\x62\x04\x44\x6c\x21\x91\x0a\xad\xfb\x72\x0f\x12\xae\x25\x30\x41\x79\x1a\xa1\x2e\x91\x27\x68\x48\x44\x0c\x01\x23\x9d\x8f\x29\xd1\x99\x2f\xb4\xb5\x89\x51\x66\xb6\x96\x1f\x7a\x47\xe3\x5e\x8f\x25\x2b\xa9\x8c\x8d\x5d\x11\xba\x2c\x72\xb1\x92\x09\x04\xed\xe5\xa0\xa0\xff\x9c\xeb\xf8\xce\x70\xa3\x73\xe2\xc6\x5a\x49\x69\xdf\xbe\xa2\x96\x7c\x8d\x2a\x27\xac\x2f\x95\x74\x57\x82\xad\x51\x69\xc2\xdf\x97\x3e\xca\xc9\x3d\x3b\x41\xaf\x47\x28\x45\xad\xfb\x84\xf3\x41\x19\x54\xf8\x8f\xcd\xa2\xe9\x64\x16\x76\x0d\xba\xef\xf5\x00\x00\xc6\xe3\x31\xcc\x96\x08\x52\xf0\xad\x4d\x01\x97\x9e\x36\x03\xb3\xc8\x2a\x24\x9c\x6f\x41\x20\x46\xda\xfa\x6f\x49\xd6\x68\x23\xed\x92\x45\xa1\x96\xa9\xa2\x79\x6e\x32\x97\x17\x56\x66\x1d\x4a\x49\xe3\x45\x31\xb2\x3a\xee\x1d\x53\x01\xe6\x9d\x9a\x33\xa3\x88\xda\x82\x51\x84\x19\x48\xc8\x6a\x65\x51\x15\x51\x2c\x89\x73\x2d\x1a\x79\x3c\x00\x8e\xa6\xa4\x08\xe1\xfe\x9b\x51\x4c\x2c\x42\x78\x27\xb6\xdf\x8c\x4a\xa9\x79\xe8\xb5\xf9\x1c\x3a\xcb\xc6\xa2\x10\xae\x3e\x0a\x73\xf6\xd2\x91\x94\x74\xd6\xa2\x7e\xf9\x66\x9f\xbd\x0a\x86\x25\xe9\xa0\x66\x91\x7d\x2c\xc2\x11\x8b\xe0\x75\xf6\x2f\x4d\x59\xd4\xdd\x2f\x93\xf4\x75\xd7\xd2\x1d\xe0\xe3\x54\x00\x55\x48\x0c\x5e\x26\x2b\xb3\xad\xb2\xa1\x3f\x08\xe1\xed\x7d\xc7\xd7\x15\xc1\x43\x0b\xa1\x42\x93\x2a\x01\xe7\xc7\x65\xc2\x8c\xfc\x82\x45\x6c\x66\xdb\x15\x86\x19\xe6\x05\xba\xb7\xfe\x60\x50\x83\xda\xf0\xa1\x0d\xe8\x95\x46\xed\xca\xad\x6a\x69\x6b\x5b\x11\x5e\x9b\xec\x8e\x33\x6c\x81\xc6\xd5\x8d\xb5\xe5\x87\xd5\x72\xed\xc7\xfc\xa3\xb1\x68\x1f\x4b\x7c\xde\xa8\xbd\xd1\x07\xa6\x57\x9c\x6c\xdf\xf4\x07\xc3\x43\xc8\xbf\xa1\x62\x84\x1f\x4a\x3d\xb3\x69\xaa\x0f\xa5\x9e\x4e\x66\x95\x3f\x3f\x10\x43\x9e\xc7\x58\x1a\xd4\x60\xbd\x3e\x24\x65\x54\xd6\x69\xac\xd4\xfe\x8d\x73\x78\xe8\xf4\x0d\x6a\xd9\x7c\xd1\x4e\xe1\x0d\x33\x74\x99\x45\xe7\xbe\x83\xd6\x35\xd4\xbd\x6e\x0f\x3b\x3c\xb5\x10\x7a\x99\xfa\x5e\x0e\xfb\x08\x92\x14\x09\x58\x54\xca\x8f\xc0\x2e\x06\xd7\x40\xf4\x3f\x20\x2b\xcd\xae\x4f\x8b\x27\x42\x4d\x15\x5b\x59\x37\x76\xc4\xd4\xf6\x0e\x94\x66\x96\x69\x32\x17\x84\xf1\xb0\x65\xc7\x7f\x67\xb3\x2f\x13\xc6\x71\xb7\x21\xf6\x49\x15\xef\x80\x28\x45\x36\x20\xec\x14\x33\xf0\xee\x74\x57\x77\x45\xa9\xcc\xf6\x27\x04\x29\xe3\xd9\x6d\x5a\xde\xf2\x7e\x13\x59\x59\x59\x4f\x40\x16\x31\x6a\x66\x32\xe3\xec\xdb\x97\x96\x7b\x87\x80\x77\x6e\x3e\x88\xa6\x24\x41\x1d\x82\x60\xfc\x70\x44\xbe\xea\xdd\x0b\xae\xec\xa7\x79\xd5\xbd\xcf\x4f\x66\x57\x7d\xc5\xd9\x98\xb5\x54\xc1\xf8\xd0\x55\x58\xf6\x7a\xa0\xf6\xe7\x62\x3f\xac\x34\xff\x46\xf8\x25\x80\xa6\x05\x0f\xbe\x26\x2f\x18\x6f\x9d\x30\x79\x7f\xdb\x75\x74\xd4\x71\xea\x16\x50\xfb\x7b\xe1\x3b\x55\xbc\x27\xca\xb3\x5a\xf8\x33\xda\xf7\xf5\x2e\xb3\x6a\x2d\x7b\x8f\xf7\x9d\x51\x6d\xff\xef\xea\xe8\xb5\x6e\x6e\xc9\x5a\x1d\xfd\xf7\x72\xdf\x4e\x54\xd5\x54\xff\x15\xe3\x62\xec\x21\x94\xca\x54\x98\x91\x36\x52\x91\x05\x8e\xe6\x52\x29\xb9\x39\xff\xa7\x67\x9a\xad\x4d\x2a\x6f\x76\xf7\x18\x3b\x0c\x87\x30\xce\xe5\x8d\x63\x2e\x37\x45\xba\x56\xfc\xfe\x0e\x04\x17\x17\xb0\x22\x82\xd1\x7e\xf0\x5e\xa6\x3c\x72\x17\x8b\x0c\x10\x10\x50\x18\xa3\x42\x7b\x4d\x31\x32\xbb\x27\x18\x69\x2f\x1c\x95\x59\x41\xb7\xea\x9a\x76\x7f\xc8\x26\xb9\x47\x1c\xe8\xb7\x2d\x37\xe8\x0b\x31\xcb\xb0\xe9\xca\x51\x6d\xcb\x7f\x22\xad\xd2\x39\x67\xd4\xc7\x5a\xed\xec\xe3\xac\xf0\xe5\x15\xfc\x68\x78\x3c\xc3\x4b\x25\xee\x13\x13\xb7\x18\xd5\x1a\xc2\x73\xc5\x79\xa7\xd1\x49\x2a\x72\xa8\xfd\x38\x7d\xfa\xd0\x5b\x7f\xca\x01\xf8\xd0\xf9\xd7\x59\xf3\xb6\xa4\x9e\x4e\x66\xde\x5e\x6c\x9f\x87\xee\x72\x77\x25\x07\xd0\xcc\xa0\x67\x94\xe5\x9e\xb6\x9e\x5d\x91\x22\xd6\x4d\xcc\xcf\x76\xd5\x9f\x8c\x31\xe3\xf8\xf4\xc9\xc6\x4d\x35\xc1\xd2\x98\x95\x0e\xc7\x63\xa2\x35\x1a\x3d\xda\xe0\x5c\x33\x83\xc7\x56\xa4\x1e\x51\x99\x8c\x5f\xc5\x67\xa7\x7f\xbd\xa4\x27\xf4\xdf\xe4\x4f\x1a\x45\x67\x2f\xff\x98\xbf\xa0\x7f\x9e\x9e\xb4\x36\xc8\xab\x57\x74\xfe\x82\xfe\xf5\xc7\xd9\xcd\x84\xcb\xcd\xcd\xff\xa4\x8a\x12\xa2\x6e\x47\x7a\xbd\x08\xfc\x05\xee\xcf\x22\x67\x7d\x16\xbf\x80\x25\xb6\x69\xe8\xf5\xe2\x5f\x77\x09\xef\x4a\xd9\x19\xa1\xc7\x9d\xef\x77\x4b\x36\xb5\x06\xf6\xaa\x9d\x7f\x81\x81\xda\xf5\xdd\x8f\xb7\x31\xa9\x06\xee\xc3\x53\x95\x20\xf6\x16\x9e\x6a\x8c\x80\xb8\x6f\x51\x98\x0b\xb5\x77\x74\xe4\x2b\xd8\xca\x14\x22\x5c\x23\x97\xee\xbf\x02\x81\x77\x26\xff\x2e\x35\x99\x8d\x76\x68\xc4\x3b\x83\x4a\x10\x7e\xf5\xf5\x53\x3b\xea\x97\xd5\x56\xbf\x0c\x6d\xae\xf5\x58\xc4\x66\x24\x85\x6d\xc1\x23\xa9\x16\xc1\x0e\xff\xeb\x5f\x29\x51\xf8\xd1\x7a\x3e\xcc\x82\xe1\xa7\x9b\x13\x21\x50\x3d\x4e\xa7\x25\x65\x84\xeb\x70\x4f\x61\x07\x66\xc3\x8c\x41\x15\x1c\x64\x4e\x4e\xec\x92\xd3\x1a\x73\x33\xe7\x92\xde\xd2\x25\x61\xbe\x96\x0f\x9d\x71\x05\x1a\x99\xf3\xd0\x9e\x2c\x8a\x31\xc6\x73\xca\xd7\x3f\x93\x7c\x66\xc2\xa0\xaa\x19\xd5\x1e\x07\x12\x26\xcc\x74\x32\xeb\xef\xfd\x1e\x61\xdb\x61\xbd\x3f\x35\x9d\x54\xdd\xf8\xb3\x46\x07\x4d\x79\xc5\xbf\xb6\x31\x3b\xe6\x93\x03\x9a\xe5\x53\xba\x73\x05\xce\x77\x5c\xf8\x95\xb1\x08\x85\x61\x31\x43\x15\x42\xe0\x9f\x05\x82\x21\x98\xc7\x9a\x77\x6e\xa0\xfb\xf6\x53\xff\x8e\xe3\x9a\x67\x16\x97\x86\xcf\xb2\x58\xd5\xe6\x38\xef\xac\xa3\xc9\x1a\xfb\xe7\xc7\x99\x80\x21\x18\xb9\x63\x6e\xc9\xa4\xd9\x43\x7a\xd0\x6b\xa8\xae\x95\xfd\xf9\x71\xa6\xe3\xf7\x0e\xa8\x7d\x30\x2b\x65\x7b\xa0\x56\x3a\x0b\xc7\x3d\xf4\xe0\xff\x01\x00\x00\xff\xff\xf9\xb7\x71\xbd\x25\x17\x00\x00" +var _basicnftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\x5b\x6f\xdb\x3a\x12\x7e\xf7\xaf\x98\xd5\xc3\xc2\xce\x3a\x76\x9a\xd3\x66\xcf\x11\xd2\xa6\xdd\x36\xc6\x16\x68\x8d\xa2\x55\xba\x0f\x45\x90\xd2\xd4\xc8\x26\x42\x91\x2e\x49\xd9\x31\x82\xfc\xf7\x05\x29\x59\x57\xda\x71\x52\x1c\x3d\x18\x16\x39\x97\x6f\xae\x1c\x6a\x7c\x04\xbd\xa3\xde\x11\x40\xb4\x60\x1a\x98\x06\x22\x60\x46\x34\xa3\xc0\xd2\x25\xc7\x14\x85\x21\x86\x49\x01\x32\x01\x02\x13\x2e\xd7\x30\x95\xe2\x78\x92\x89\x39\x9b\x71\x84\x48\xde\xa2\x80\x4c\x33\x31\x07\xb3\x40\xf8\x7e\x0a\xda\x10\x11\x13\x15\x8f\xac\xd8\x8f\x06\xf4\x42\xae\x35\x98\x05\x31\x40\x0a\xd9\xd3\x49\x04\xd4\x6a\x42\x88\x31\x61\x02\x63\x60\x02\x56\xa8\x36\x90\xe0\x1a\x38\x13\xa8\xad\x46\x2a\x63\x84\x3e\x47\xed\xf8\x05\xbc\x38\x39\x81\x05\x2a\x1c\xe4\x98\xaf\x04\x67\xb7\xe8\xf4\xfe\xbc\xbc\x23\x16\xf0\x74\x12\x1d\xaf\x4e\x7f\x02\x95\xc2\x28\x42\xcd\x10\x8c\x35\xcc\x2a\x64\x9c\x67\xda\x28\x62\x50\x03\x81\x94\x09\x96\x12\xde\x32\xd3\x4a\xb5\x96\x0a\xc7\xe1\x30\x33\x0d\x42\xae\x61\x29\xb5\x76\x16\xaf\x99\x59\x38\x95\x96\x62\x6b\x2b\x68\x26\x28\xc2\xe5\x0a\x85\xd1\x43\xa0\x92\x73\xa4\x56\xa0\x1e\x5a\x91\x44\xc4\x20\xcd\x02\x15\x48\x1e\x83\xc2\x5f\x19\x53\x4e\xa9\x06\xa2\x10\x84\x34\xdb\xc5\x18\x88\xd8\x40\x2a\x15\x5a\xf7\x15\x1e\x24\x5c\x4b\x60\x82\xf2\x2c\x46\x5d\x22\x4f\xd1\x90\x98\x18\x02\x46\x3a\x1f\x53\xa2\x73\x5f\x68\x6b\x13\xa3\xcc\x6c\x2c\x3f\xf4\x8e\xc6\xbd\x1e\x4b\x97\x52\x19\x08\xa6\x52\x6c\x63\xe7\x42\x17\x94\x3b\x9f\x0b\x71\xdf\x19\xae\x75\xb5\x6c\x5f\xbf\xa2\x96\x7c\x85\xaa\x5a\xbd\x12\x6c\x85\x4a\x13\xfe\xbe\xb4\x34\xe8\xf5\x08\xa5\xa8\x75\x9f\x70\x3e\x28\x03\x00\xff\xb1\x11\x9f\x4e\xa2\x10\xda\xba\xe1\xbe\xd7\x03\x00\x18\x8f\xc7\x10\x2d\x10\xa4\xe0\x1b\x1b\x2e\x97\x4a\x36\x5b\xf2\x28\x28\x24\x9c\x6f\x40\x20\xc6\xda\xda\xba\x20\x2b\xb4\x51\x71\x81\x55\xa8\x65\xa6\x68\x91\x47\xcc\xc5\xd0\xca\xac\x43\x29\x69\xbc\x28\x46\x56\xc7\xbd\x63\xda\x82\x79\xa7\x66\xcc\x28\xa2\x36\x60\x14\x61\x06\x52\xb2\x5c\x5a\x54\x5b\x8f\x97\xc4\x85\x16\x8d\x3c\x19\x00\x47\x53\x52\x84\x70\xff\xcd\x28\x26\xe6\x21\xbc\x13\x9b\x6f\x46\x65\xd4\x3c\xf4\xda\x7c\x0e\x9d\x65\x63\x71\x08\x57\x1f\x85\x39\x7b\xe9\x48\x4a\x3a\x6b\x51\xbf\x7c\xb3\xcf\x5e\x05\xc3\x92\x74\x50\xb3\xc8\x3e\x16\xe1\x88\xc5\xf0\x3a\xff\x97\x65\x2c\xee\xee\x97\x09\xf5\xba\x6b\xe9\x0e\xf0\x49\x26\x80\x2a\x24\x06\x2f\xd3\xa5\xd9\x54\xd9\xd0\x1f\x84\xf0\xf6\xbe\xe3\xeb\x8a\xe0\xa1\x85\x50\xa1\xc9\x94\x80\xf3\xe3\x32\x61\x46\x7e\xc1\x22\x31\xd1\x66\x89\x61\x8e\x79\x8e\xee\xad\x3f\x18\xd4\xa0\x36\x7c\x68\x03\x7a\xa5\x51\xbb\xd2\xa8\xda\xcf\xca\xa6\xb9\xd7\x26\xbb\xe3\x0c\x9b\xa3\x71\xc5\x60\x6d\xf9\x61\xb5\x5c\xfb\x31\xff\x68\x2c\xda\xc7\x12\x9f\x37\x0a\x6a\xf4\x81\xe9\x25\x27\x9b\x37\xfd\xc1\xf0\x10\xf2\x6f\xa8\x18\xe1\x87\x52\x47\x36\x4d\xf5\xa1\xd4\xd3\x49\x54\xf9\xf3\x03\x31\xe4\x79\x8c\xa5\x41\x0d\xd6\xeb\x43\x52\x46\xe5\x0d\xc5\x4a\xed\xdf\x38\x87\x87\x4e\xdf\xa0\x96\xcd\x17\xed\x14\x5e\x33\x43\x17\x79\x74\xee\x3b\x68\x5d\xf3\xdb\xeb\xf6\xb0\xc3\x53\x0b\xa1\x97\xa9\xef\xe5\xb0\x8f\x20\xe9\x36\x01\xb7\x95\xf2\x23\xb0\x8b\xc1\x35\x10\xfd\x0f\xc8\x4b\xb3\xeb\xd3\xed\x13\xa3\xa6\x8a\x2d\xad\x1b\x3b\x62\x6a\x7b\x07\x4a\x33\x8b\x2c\x9d\x09\xc2\x78\xd8\xb2\xe3\xbf\x51\xf4\x65\xc2\x38\xee\x36\xc4\x3e\x99\xe2\x1d\x10\xa5\xc8\x06\x84\x9d\x62\x06\xde\x9d\xee\xea\xae\x28\x95\xd9\xfe\x84\x20\xe5\x3c\xbb\x4d\x2b\x5a\xde\x6f\x22\x2b\x2b\xeb\x09\xc8\x62\x46\x4d\x24\x73\xce\xbe\x7d\x69\xb9\x77\x08\x78\xe7\xce\xf2\x78\x4a\x52\xd4\x21\x08\xc6\x0f\x47\xe4\xab\xde\xbd\xe0\xca\x7e\x5a\x54\xdd\xfb\xe2\x64\x76\xd5\xb7\x3d\x1b\xf3\x96\x2a\x18\x1f\xba\x0a\xcb\x5f\x0f\xd4\xfe\x5c\xec\x87\x95\xe6\xdf\x08\xbf\x04\xd0\xb4\xe0\xc1\xd7\xe4\x05\xe3\xad\x13\xa6\xe8\x6f\xbb\x8e\x8e\x3a\x4e\xdd\x02\x6a\x7f\x2f\x7c\xa7\x8a\xf7\x44\x79\x56\x0b\x7f\x46\xfb\xbe\xde\x65\x56\xad\x65\xef\xf1\xbe\x33\xaa\xed\xff\x5d\x1d\xbd\xd6\xcd\x2d\x59\xab\xa3\xff\x5e\xee\xdb\x89\xaa\x9a\xc0\xbf\x62\xb2\x1d\x7b\x08\xa5\x32\x13\x66\xa4\x8d\x54\x64\x8e\xa3\x99\x54\x4a\xae\xcf\xff\xe9\x99\x66\x6b\x93\xca\x9b\xdd\x3d\x26\x51\x32\x0d\x61\x5c\xc8\x1b\x27\x5c\xae\xb7\xe9\x5a\xf1\xfb\x3b\x10\x5c\x5c\xc0\x92\x08\x46\xfb\xc1\x7b\x99\xf1\xd8\x5d\x02\x72\x40\x40\x40\x61\x82\x0a\xed\x95\xc2\xc8\x7c\xa6\x37\xd2\x5e\x0e\x2a\xb3\x82\x6e\xd5\x35\xed\xfe\x90\x4f\x72\x8f\x38\xd0\x6f\x5b\x61\xd0\x17\x62\x16\x61\xd3\x95\xa3\xda\x96\xff\x44\x5a\x66\x33\xce\xa8\x8f\xb5\xda\xd9\xc7\x59\xe1\x2b\x2a\xf8\xd1\xf0\x78\x86\x97\x4a\xdc\x27\x26\x6e\x31\xae\x35\x84\xe7\x8a\xf3\x4e\xa3\x93\x4c\x14\x50\xfb\x49\xf6\xf4\xa1\xb7\xfe\x94\x03\xf0\xa1\xf3\xaf\xb3\xe6\x6d\x49\x3d\x9d\x44\xde\x5e\x6c\x9f\x87\xee\x72\x77\xa5\x00\xd0\xcc\xa0\x67\x94\xe5\x9e\xb6\x9e\x5f\x91\x62\xd6\x4d\xcc\xcf\x76\xd5\x9f\x8c\x09\xe3\xf8\xf4\xc9\xc6\x4d\x35\xc1\xc2\x98\xa5\x0e\xc7\x63\xa2\x35\x1a\x3d\x5a\xe3\x4c\x33\x83\xc7\x56\xa4\x1e\x51\x99\x8e\x5f\x25\x67\xa7\x7f\xbd\xa4\x27\xf4\xdf\xe4\x4f\x1a\xc7\x67\x2f\xff\x98\xbd\xa0\x7f\x9e\x9e\xb4\x36\xc8\xab\x57\x74\xf6\x82\xfe\xf5\xc7\xd9\xcd\x84\xcb\xf5\xcd\xff\xa4\x8a\x53\xa2\x6e\x47\x7a\x35\x0f\xfc\x05\xee\xcf\x22\x67\x7d\x1e\xbf\x80\xa5\xb6\x69\xe8\xd5\xfc\x5f\x77\x29\xef\x4a\xd9\x19\xa1\xc7\x9d\xef\x77\x4b\x3e\xb5\x06\xf6\xaa\x5d\x7c\x2d\x81\xda\xf5\xdd\x8f\xb7\x31\xa9\x06\xee\x23\x51\x95\x20\xf6\x16\x9e\x69\x8c\x81\xb8\xef\x46\x58\x08\xb5\x77\x74\xe4\x4b\xd8\xc8\x0c\x62\x5c\x21\x97\xee\xbf\x02\x81\x77\xa6\xf8\x86\x34\x89\x46\x3b\x34\xe2\x9d\x41\x25\x08\xbf\xfa\xfa\xa9\x1d\xf5\xcb\x6a\xab\x5f\x86\xb6\xd0\x7a\x2c\x12\x33\x92\xc2\xb6\xe0\x91\x54\xf3\x60\x87\xff\xf5\xaf\x8c\x28\xfc\x68\x3d\x1f\xe6\xc1\xf0\xd3\xcd\x88\x10\xa8\x1e\xa7\xd3\x92\x32\xc2\x75\xb8\xa7\xb0\x03\xb3\x66\xc6\xa0\x0a\x0e\x32\xa7\x20\x76\xc9\x69\x8d\xb9\x99\x71\x49\x6f\xe9\x82\x30\x5f\xcb\x87\xce\xb8\x02\x8d\xcc\x79\x68\x4f\x16\xdb\x31\xc6\x73\xca\xd7\x3f\x93\x7c\x66\xc2\xa0\xaa\x19\xd5\x1e\x07\x52\x26\xcc\x74\x12\xf5\xf7\x7e\x8f\xb0\xed\xb0\xde\x9f\x9a\x4e\xaa\x6e\xfc\x79\xa3\x83\xa6\xbc\xed\xbf\xb6\x31\x3b\xe6\x93\x03\x9a\xe5\x53\xba\x73\x05\xce\x77\x5c\xf8\x95\xb1\x18\x85\x61\x09\x43\x15\x42\xe0\x9f\x05\x82\x21\x98\xc7\x9a\x77\x61\xa0\xfb\xf6\x53\xff\x8e\xe3\x9a\x67\x1e\x97\x86\xcf\xf2\x58\xd5\xe6\x38\xef\xac\xa3\xc9\x0a\xfb\xe7\xc7\xb9\x80\x21\x18\xb9\x63\x6e\xc9\xa5\xd9\x43\x7a\xd0\x6b\xa8\xae\x95\xfd\xf9\x71\xae\xe3\xf7\x0e\xa8\x7d\x30\x2b\x65\x7b\xa0\x56\x3a\xb7\x8e\x7b\xe8\xc1\xff\x03\x00\x00\xff\xff\x86\x56\x7e\xd6\xd1\x16\x00\x00" func basicnftCdcBytes() ([]byte, error) { return bindataRead( @@ -91,11 +91,11 @@ func basicnftCdc() (*asset, error) { } info := bindataFileInfo{name: "BasicNFT.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0xd6, 0x4d, 0xc3, 0x8e, 0x12, 0xc8, 0x8d, 0xf9, 0x3f, 0x4a, 0x1d, 0x0, 0xf4, 0xa2, 0x4b, 0x61, 0x6b, 0xdb, 0x1f, 0xb0, 0x39, 0x2a, 0xf4, 0x2b, 0x89, 0x4b, 0xe1, 0x82, 0xe5, 0x19, 0xc9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xb4, 0x9e, 0xe3, 0x7e, 0xae, 0x31, 0xeb, 0xc2, 0x3a, 0x88, 0x6e, 0x13, 0x9a, 0xab, 0x24, 0x48, 0xc0, 0x2b, 0xfb, 0x20, 0x3f, 0x3e, 0x32, 0xa, 0xed, 0x30, 0x8c, 0x35, 0xc, 0x73, 0xae}} return a, nil } -var _examplenftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5b\x5f\x73\xdb\xb6\xb2\x7f\xf7\xa7\xd8\xea\xa1\x43\xe5\x3a\x72\xd2\x3f\xb9\xad\x26\x6a\xda\xc6\x75\xaf\x67\x52\xdf\x4c\xa2\xb6\x0f\x19\x4f\x0a\x91\x4b\x0b\xd7\x24\xa0\x02\xa0\x65\x8d\xaf\xbf\xfb\x99\x05\x48\x10\xe0\x1f\x59\x4e\xe6\x9c\x39\x47\x0f\x89\x44\xee\x2e\x76\x7f\x58\x2c\x16\xbb\xf0\xc9\x13\x38\x7a\x72\xf4\x04\x60\xb9\xe6\x1a\xb8\x06\x26\x00\x6f\x59\xb9\x29\x10\x38\xfd\x5b\xa2\x30\xcc\x70\x29\x40\xe6\xc0\xe0\xac\x90\x5b\xb8\x90\xe2\xe9\x59\x25\xae\xf8\xaa\x40\x58\xca\x6b\x14\x24\xa1\xd2\x5c\x5c\x81\x59\x23\xfc\xf1\x15\x68\xc3\x44\xc6\x54\x36\xa3\x37\xe7\x86\x24\x0b\x69\x60\xc3\x94\x21\x41\x44\x25\xf3\x9c\xa7\x9c\x15\x9e\x16\x56\x95\x01\x6e\x80\x69\x5d\x95\x98\x81\x91\xb0\x42\xe2\xd7\xbc\xe4\x05\x53\xf4\x60\x2d\xb7\x50\x32\xb1\x83\x8b\xb3\xa5\x86\xad\xac\x8a\xac\xd5\xd3\x8a\x4d\xa5\x42\xc8\x2b\x91\x92\xd2\xac\xe0\x66\x37\x0b\x2c\x4c\xa5\x30\x8a\xa5\x06\x32\x89\x4e\xa5\x96\x9b\xc4\x6a\xb9\x59\x73\x6d\x78\xca\x0c\x66\x90\x16\x4c\x6b\x9e\xd3\x2f\x2e\xad\x91\x7a\xa7\x0d\x96\x90\x4b\x05\xdc\x68\xab\xc5\x8c\xec\xcb\x30\xe7\x02\x35\x30\x52\x96\xc0\xbb\x38\x5b\xc2\x96\x9b\x35\x94\x5c\xf0\x92\x15\x50\xa2\x61\x19\x33\xcc\x22\x02\x47\x4f\x4e\x8e\x8e\x78\xb9\x91\xca\x10\x9c\x0d\x9a\x16\x4c\xc8\x95\x2c\x61\xd2\x7d\x3c\x69\xe8\xff\xe0\xb8\x7d\x87\x5a\x16\x37\xa8\x6a\xda\xf0\x91\xa7\xfb\xad\x1e\x91\x5e\xea\x9a\x30\x7a\x36\x39\x3a\x62\x69\x8a\x5a\x27\xac\x28\xa6\x2d\x36\xbf\x38\x07\xb8\x38\x5b\xce\xfb\xca\xdd\x1d\x1d\x01\x00\x9c\x9c\x9c\xc0\x5b\x66\xd6\xb0\x5d\xa3\x42\x8b\x7c\xc9\x85\x41\x05\x7a\x6d\x67\x65\x85\xa0\x8d\x54\x98\x79\xf2\xe5\x1a\xdb\xb9\xde\x30\xb3\xd6\x16\x47\x37\x69\x45\x81\x76\xc6\x80\xa9\x86\x11\xb8\xe8\xbe\x54\xa8\x65\xa5\x52\x04\xb3\xdb\xa0\x15\x1c\x1a\x50\xa0\x81\xdf\xac\x12\xef\x8d\x54\xec\x0a\x49\xc1\x39\x04\x3f\x5a\xdd\xff\x44\x48\xd7\x52\x6a\xa7\xba\x60\xa5\x9b\x32\x32\xe6\xd8\x3a\xa2\x21\x77\xa1\x61\x20\x65\x02\xd6\xec\x06\xad\x83\x58\x4a\x21\xb7\x5e\xd0\x0a\x53\x56\xd5\x62\xec\xd8\x39\x4b\xb1\x75\x2f\x85\x7f\x57\x5c\x21\xf9\x35\xb9\xaf\x15\x03\x7a\x83\x29\xb9\x95\x93\x46\x62\x4b\xa9\xfa\xf6\x78\x6b\x07\x67\x62\x76\x71\xb6\x3c\x8e\x9c\x61\xe6\xbd\xa2\x9e\xa4\x21\x80\x78\x36\x87\xdf\xcf\x85\x79\xf1\x4d\x4b\x43\x76\x9c\x91\x7f\x90\x11\xa7\x5c\x6f\x0a\xb6\xf3\x0e\x0b\x37\x1c\xb7\xa3\xe2\xc8\x02\x82\x58\x71\x71\x35\x4a\x94\xa1\x4e\x15\xdf\xd0\x14\x3e\x48\x6b\xd6\x55\xb9\x12\x8c\x17\x9e\x32\x56\xb3\xf6\x98\x77\x72\xc7\x0a\xc3\x51\xef\xd7\x53\x63\x91\x3b\xb9\xaa\x61\x98\xc3\x87\x68\x15\xcc\x9c\xa8\xdd\x65\x3c\xd0\xaf\x28\x50\xf1\x14\x32\xee\x22\x89\xda\xd9\xc0\xa5\x18\xad\x7b\xd2\xc0\xba\x0b\xd3\xe3\x23\x36\x8a\xcd\xe1\xce\x59\x32\x87\x9f\xc4\xee\xbd\x51\x55\x6a\xee\x2d\x9b\xe7\xe5\x82\x9b\xc4\xff\xa2\x4f\x88\xeb\x71\xf4\x66\x00\xcc\x98\xa0\x87\x60\xfc\xfa\x61\x20\x62\xfa\xbd\x66\xb4\xa4\x53\xb8\x8b\xd8\x08\x87\x19\xcf\x60\xe1\xbe\x55\x15\xcf\xfa\xef\xad\xff\x2f\xac\xb1\xfd\x97\x81\xa1\xb0\x08\xcd\xee\x93\x7a\x93\x61\xd1\x9a\xdf\x27\xf3\xa6\xc3\xa2\x85\xa1\x4f\xe6\x3d\x6a\xe1\x8d\xf7\x44\xf7\xb1\x97\xa4\x0a\x99\xc1\x5f\xca\x8d\xd9\xbd\x6e\xc3\x94\x7b\xea\x36\x53\x7a\x05\xed\xbb\x88\x9b\x89\x0c\x14\x9a\x4a\x09\x5d\x07\x08\x1b\xef\x58\x51\x50\x1c\xa5\x5f\xcc\x6e\x6a\x3b\x1b\x83\xe4\x56\xd8\x0d\x27\x12\xf1\xe3\x5d\x2f\x2e\xb4\x83\xdd\x0f\xae\xb2\xbc\x12\xc3\x7a\x27\xd3\xf9\x03\xf2\x3a\x73\xec\x74\x87\x97\x4f\xdb\x1d\x63\x36\x2c\x59\xe4\x66\xb9\xdb\xe0\x1c\xe8\xdf\x97\x3f\x06\xf4\x17\x67\xcb\x1f\x92\xe9\x34\x00\x18\xc2\x95\x11\x2a\x4e\x0b\xdc\x6a\x7f\x85\xc6\x7a\x2c\x29\xfc\x81\x24\x5e\x0e\x2b\xf6\x21\x7a\x48\x1f\x3b\x7c\xec\xf5\x75\xbc\xfb\x21\x99\x1e\x1f\x42\xee\x03\xcf\xa1\x0c\xbf\x64\x9c\x20\x38\x9c\xfe\xd6\xa0\x12\xac\xf8\xfd\xdd\x9b\x43\x59\x2e\xce\x96\x2d\xd6\xa7\xcc\xb0\x4f\x63\x7c\x1c\x10\xef\x51\x71\x56\x1c\x4a\xbd\xb4\x81\xf3\x87\x64\x1a\x11\x5f\x0e\xad\xab\xae\xaf\x2a\xb7\xab\x91\x9c\xe4\xa3\x75\x02\xe7\x46\xd3\x20\x10\xbd\xea\x46\x9f\x2d\x37\xe9\xda\x79\xcc\x5d\x4f\xbf\x94\x69\xdc\xef\x0a\xf3\x1e\x0f\xb4\x6e\x35\xc8\x94\x0c\x72\x80\x0f\xe5\x3e\xde\xf5\xe1\x6a\x3e\x51\x64\xef\x86\xc0\x71\xb6\x20\xde\xc7\x9a\xfd\xcf\x72\xf9\xf6\x8c\x17\x38\xae\x1a\x7d\x2a\x55\xcc\x3b\x51\x74\x94\x7e\x3a\xf8\xa6\xff\x74\x0c\xe0\x60\x2d\x0c\x23\xec\xd2\x44\xca\x97\x28\x7d\x82\x92\xdd\x82\xa8\xca\x15\x2a\xda\x7c\x6d\xce\x6f\x63\x22\x85\xc3\x55\x9d\x71\x66\x2e\xb5\x35\x61\x7a\x3f\x26\x5b\xbb\x08\x4b\x62\xd1\xa9\x02\x39\xc7\x22\x83\x1b\x56\x54\x76\x50\x8d\x36\x0e\x8b\x11\x10\x68\x5f\xaf\x39\xcf\x45\x2e\x61\x01\x83\x06\x26\x6e\xce\x27\x75\x9c\xb3\xb9\x42\xfd\x6a\x72\x5c\x5b\x34\x6f\xb6\xc8\x63\xd2\x67\x4e\x43\x0e\xc3\x1b\x8c\xf9\x86\x6b\xd3\xdb\xb6\x6b\xc1\x97\xb0\x80\x0f\x81\x6e\x97\x87\xbb\x70\x33\x2d\xe3\x8e\x12\x8c\xff\x99\x2e\xe0\xc3\xc6\x23\x96\x98\xe3\x19\xd7\xae\x06\xf2\x33\x35\x0b\x23\xfb\x23\x94\xf3\x6c\x0f\xe8\x37\x9c\x70\x3c\x5e\xcd\x78\x7f\x78\x84\xa2\x01\x63\x32\x59\x1b\xb3\xd1\xf3\x93\x93\xfa\xb0\xff\x54\xe4\x66\x26\x45\x5e\xc8\xed\x4c\xaa\xab\x93\xc9\x2c\x95\x22\x65\x26\xa9\xa1\x9d\x19\xe9\x92\xbf\x64\x3a\x3d\x5c\xd5\xa1\x7d\x69\xaf\xc2\x41\x5e\x50\x47\xfd\xd7\xf5\x8a\xb6\xd1\xbf\x39\x10\xed\x4d\x25\x8e\x6d\xd4\x0f\x48\x1e\xd6\xe9\x53\x2d\x3a\x6c\xbb\xf8\x97\x1b\xe5\xd5\x3a\xdc\x2e\xbf\x3d\x8f\x86\x65\xbc\x4d\x8b\x2a\x6b\x62\xee\x92\xdb\x83\x6b\x06\xb9\x94\x14\x2f\xf5\x5a\x6e\x41\x9a\x35\x2a\xa8\x34\x6a\x8a\xd6\x4e\xe4\x78\x44\x73\xf2\x32\x47\x46\xb1\x6b\xd2\x8a\x9e\x1c\xc3\x24\x97\x72\x32\x1c\xc3\xec\x31\xd1\xb2\x91\xf2\xbd\x18\x4c\x27\xb6\xa5\x74\x72\x13\xfa\x31\x8f\xd3\xfa\x63\x3f\xf6\x05\x2b\xe9\x18\x14\xab\x32\x3d\x1a\x83\x20\x30\x9d\x6b\x60\x50\x09\x7e\x0b\x86\x97\xa8\x0d\x2b\x37\xc7\xb0\xc5\xa6\xf8\x51\x32\x75\x4d\x19\xbd\xad\x00\x31\xc8\xdc\x8c\x10\xee\xb4\x05\x6d\x0a\x66\x72\xa9\x4a\x0d\xd7\x42\x6e\x6d\x4d\xab\x81\x90\x9b\xd9\xa8\xc9\xed\xf0\x56\xd1\x9e\xdd\xf6\x69\xb3\xf3\x44\x58\xda\xdd\xad\x83\x42\x04\xf7\xe5\x17\xc7\xa1\x92\x73\x98\x9c\x32\x43\x9c\x8a\x29\x6e\x76\x7b\x36\xa7\x76\x1e\x66\x2c\x73\x08\x26\x1d\x45\xc7\x01\x25\xe7\xb1\x48\x5a\x29\x0e\x2d\x72\x06\x3a\xe9\xb8\x91\x47\xc1\xc8\xa5\x9b\xe1\x77\x96\xac\x87\x85\x7b\x9c\xe8\x54\x2a\x9c\xc3\xf3\x67\xb3\x67\xf5\x2e\xfb\xfc\x99\xfd\x1e\xa5\x5a\x93\xd7\xb2\x2c\xa5\x98\x8c\x6f\xbf\xcd\x68\xfb\x31\x27\x8f\x1d\x03\xdb\x7a\x73\x07\x64\xc1\x8b\x16\xe1\xd8\xa0\xc3\xc1\x6e\xf8\x86\x39\xf6\xc5\xa5\x56\x5a\x44\x75\x3f\x74\x92\x0a\xf3\x21\x47\x50\x27\xec\x83\xf5\xaa\x36\x16\x0d\x94\xad\x82\x73\xf2\x5d\x74\x94\x8d\x2b\x2d\x94\x32\xa5\x52\xd0\x3a\xb1\x75\x65\xe2\x8d\x8f\xbe\x44\x61\xbd\x27\xaa\x0a\xd6\x6b\x4e\xc0\x5f\xae\xca\xf5\x17\x9c\x9f\xba\x24\xaf\x7b\xc0\x68\x92\xc5\x29\xdc\x30\x45\x3e\x87\x19\x65\x98\x74\x06\x76\xac\x73\x88\xe3\xf0\xc8\x19\x85\xb8\xf5\x58\xc1\x71\x8c\x61\x53\xad\x0a\x9e\x3a\xfa\xb7\xfe\xfb\x51\x54\x11\x82\x64\xb0\xa8\xe2\x35\x85\x97\x4f\xe1\x2e\x9e\x2e\x57\xe1\x43\x61\x78\xce\x51\xc1\x02\x26\x29\xcb\x50\xa4\xd8\x5a\xd2\xe2\x3f\xe9\xcb\x0e\xec\x80\x45\x68\x48\xd2\x4a\x9d\x07\x23\x4c\xbf\xe8\xcb\x68\x4d\x83\x45\x60\xdb\xc3\x12\x3a\xb5\x95\x2b\x34\xef\xab\xcd\x46\x2a\x63\xcd\xa5\x35\xa3\x7d\xb9\x84\x41\xc1\xb5\x69\x1c\xc5\xd8\x77\x75\xb9\x84\x13\x55\x8a\xfc\x06\x95\x85\x7d\x63\x7a\x45\xba\x5e\x39\xa1\x37\x50\x32\x9d\xc3\x9d\x5b\xa6\x3f\x4b\x59\x74\x2b\x1f\x84\xb3\x6e\x78\x2c\x43\x87\x7c\xd1\x9d\x99\x98\xfa\xc3\xc8\x3e\x4f\x49\xbc\x51\x15\x0e\xad\xc1\x58\xc2\x18\x6a\xef\x6a\x80\xb6\x6b\xb4\xdb\xb1\x54\xb6\x0e\x4d\xc7\x9e\x2b\x7e\x83\xc2\x2d\x12\x5a\x37\x16\x1a\xcc\x60\xb5\xeb\x94\xd9\x23\x79\x3f\x85\xf5\x77\x7f\xf8\x72\xcc\xb6\x74\x6d\xe5\xd5\xfb\xde\xff\x55\xda\xb4\xe1\xa5\x42\x92\x9d\x61\xce\xaa\xc2\xec\x9f\x02\xae\xbb\x33\x90\x18\x9f\xec\x4c\x1d\xa8\xf1\x14\xf0\xdc\x8d\xbc\x58\x8c\xe5\x4c\xc3\x35\xa1\x2e\xba\xf7\x80\x85\xc6\x61\xda\x9c\x15\x3a\x26\x1e\x43\x9d\x82\x4e\xa6\xd8\x16\x14\x96\xf2\xc6\x95\xfe\xc8\x31\xf3\xa6\xaa\x1e\x76\x38\x44\x06\x8e\xa8\x5b\xf3\xeb\x62\xd4\x8b\x9d\x7f\x36\xc3\xfc\x7f\x3f\xae\xfe\xef\x56\xa0\x72\x15\x93\x46\x9b\xa4\xf9\x72\x7e\xda\x14\xfd\x87\x4b\x7c\x14\xdc\x06\x3c\xdc\x06\x5d\x8a\x32\x71\xdc\x99\x39\x23\x93\x6b\xdc\xcd\xa1\x1d\xa2\xbf\x03\xbd\x7a\x05\x1b\x26\x78\x9a\x4c\x5e\x5b\xf7\x20\x47\xf4\x48\xd5\x08\xd9\x70\x4d\x10\x6c\x94\xbc\xe1\x19\x66\x36\x5e\xf7\x61\x9b\x74\xd2\x08\x5f\x7b\xb4\x4a\x8e\xcd\x4b\x86\x1b\xa9\x09\x66\x76\x6d\xbb\x73\x34\x22\xe1\xcf\xb2\x2c\x82\xdf\x0f\xa3\x83\x6d\xa8\x57\xab\xb5\x5c\x44\x7f\x7e\xda\x70\xf2\x0c\x98\x52\x6c\x37\x5a\xbd\xaa\x35\x48\xac\x9a\xa3\xe0\x77\x9d\x35\x42\xdf\x7d\x61\xfa\x0b\xe8\x38\x79\x8c\x08\x29\x99\x65\xae\x9f\x85\xdb\x9a\xab\x56\x33\xd8\x5b\xb7\x6b\x9e\xae\xbd\x9f\xda\x4e\x6c\x91\x81\x14\xd8\x53\x40\x16\xd9\x72\xd8\x03\x3e\x58\xe1\x33\x9e\x5d\x7a\xfd\x8e\xba\x4d\x0a\xa3\xe4\xce\x8b\xd8\x13\xe3\xcf\x4f\x83\xa8\x2e\x1c\x9a\x4d\x8f\x98\xde\xd9\x98\xc3\x14\xf6\xdb\x81\x0f\x46\xf5\xf3\x53\x57\x22\x76\xae\x3f\x52\x24\xee\xf8\xf6\x35\xee\x46\x63\xeb\xaf\x58\xf7\x7e\x58\x29\x2b\x61\x7c\x4d\x6a\xac\x5f\xf9\xa0\x82\x6f\x50\x5c\x99\x35\xe9\x78\x2e\xcc\xc1\xea\xcd\x0a\xcb\xf6\x50\xed\xd4\x0f\xb4\x92\x4a\xc9\xed\xc5\xd9\x32\xf9\x18\xb4\xff\xa6\x73\xf8\x72\xd8\x19\xbb\xc5\xd4\x5a\x93\xe4\xcb\x8e\x13\xd0\xf4\x33\x3d\x2a\x65\x3a\x06\xe3\xcf\x56\x1f\x8b\x95\xd5\x51\xf9\x66\x76\xdd\xdc\xab\xfb\xa3\x98\xd9\xf5\x7a\x7e\x7a\x88\x79\x61\x23\x34\xe9\x58\x39\xd8\x24\xed\x99\xc9\x73\xd7\xd1\xcc\x29\xcd\x1f\xb3\x35\x5e\x80\x5d\x11\x01\x5a\x24\xc6\x82\x33\x3c\xf8\x63\x53\xee\xcf\xeb\x3a\x35\xeb\x49\xb3\x32\xe8\x9d\xc3\x01\x6d\xa8\xb8\xd9\x54\xab\xf6\x53\x3b\x46\x7a\xc0\x18\xff\x69\xcd\xa7\xfb\xf6\x9a\xc0\xe3\x91\x1e\xf6\x61\x8f\xc7\x67\xb6\xfd\x0e\x83\x32\x32\xf8\x31\xb8\x7a\x4c\x6b\xc1\x10\xce\x4f\x17\x9b\xb3\xfa\x92\x8d\xd3\xd7\x87\xf0\xa2\xb0\xe6\x34\xe7\x64\x70\xd7\x4f\xfc\x35\x1b\x97\x70\x32\xca\x5f\xa0\x73\x89\xa8\x16\x7c\xd4\x73\xb7\x60\x57\x70\xa7\x00\x7b\xdd\xa6\xb9\x6e\x14\x8a\xbe\xb1\xa7\x72\x77\xd7\xc7\xd5\xf4\xb7\xbc\x28\x60\x85\x50\x69\x3b\xb2\x17\xde\x7c\x32\xbc\xc1\x42\x6e\x50\x69\x9a\x08\x5b\x90\x71\x3b\xe4\x86\x29\x56\xa2\x41\x7b\xef\x68\xc3\xb4\x6e\x26\x2a\xec\x47\x4d\xa1\x44\xb3\x96\xd9\x2c\x52\x7e\x2c\xdc\x87\x75\x3f\x3d\x50\xf8\x7b\x35\xd4\xcf\x1c\xec\x65\x7e\x52\x13\xf0\xf0\xc2\xa1\x67\xbb\x7c\x68\xd2\x2d\x14\x94\x59\x45\xd7\x30\xea\x55\x10\x74\x64\x66\xfd\xd9\xb5\x00\x37\xfd\xbc\xb5\x2b\x4b\x36\x41\x24\x43\xcd\x55\x3d\x9f\xb3\xbe\x43\x80\xb6\x5d\xbf\x4a\xd1\x6c\x6c\x14\x6a\x3a\x4d\xd6\xee\xa0\xf0\xef\x0a\xb5\xe9\x32\x0f\x2e\x9f\xc3\xea\xb1\xaf\xba\xd5\xd7\xb1\xce\x63\xd0\x75\xb4\xc6\xc4\x01\xeb\xf3\xaa\xe4\xb4\x35\xa5\x11\x59\xaf\x18\xd5\x13\x34\xdc\x91\x88\x6a\x15\x27\xf5\xaf\x93\x3d\x75\x82\xe1\xd6\x63\x58\xc1\x38\x71\x3f\x3e\x55\x48\x58\x2f\xb2\x00\x85\xdb\x6c\xfb\x72\xb0\xd7\xdc\x4a\x79\xc3\xc5\xb5\x3b\x1c\x7f\x9a\x94\xc1\x58\xda\xf8\xfb\x1c\x92\xbc\x7a\xfc\x26\x15\x7e\xfe\x19\x1b\x56\xf8\xb9\xef\x3f\xee\x3f\xa9\x95\x88\x3d\xe9\x13\xdc\x74\x4f\xeb\xc3\xdd\x7d\xca\x78\xdf\x41\x7f\xa3\xa7\xc3\x4e\x99\xf3\x02\x1f\xdf\xbf\xb6\xbd\x6b\xdf\xcb\x62\x5a\xa3\xd1\xb3\x2d\xae\x34\x37\xf8\x94\x44\xea\x59\x2a\xcb\x93\x6f\xf3\x17\x5f\x7d\xff\x4d\xfa\x2c\xfd\x6f\xf6\x5d\x9a\x65\x2f\xbe\xf9\x7a\xf5\x3c\xfd\xee\xab\x67\x9d\x17\xec\xdb\x6f\xd3\xd5\xf3\xf4\xfb\xaf\x5f\x7c\x3c\x2b\xe4\xf6\xe3\x9f\x52\x65\x25\x53\xd7\x33\x7d\x73\x35\x19\xee\xda\x0d\x7b\x92\xb5\xbe\x2e\xa4\xf3\x92\x56\x97\xbe\xb9\xfa\xaf\xdb\xb2\xe8\x4b\x19\x9d\xa1\x87\xc1\x1f\x86\xa5\xae\x45\x53\x40\x6d\xba\xcf\x41\xc5\x6f\x58\xdf\xb8\x1a\x5e\x5f\x94\xf5\x19\x0d\xd7\x6e\xf3\x64\xd1\xed\x60\x23\x61\x8d\xc5\x06\x76\xb2\x6a\xf6\x50\xfa\xae\x40\xe0\xad\xa9\xef\x09\x9f\x2d\x67\x23\x23\x62\xdb\x8b\xec\xce\xfa\x23\xda\x94\x93\x11\xfc\xf5\xdf\x15\x53\x78\x4e\xc8\xcf\xdd\x64\x0c\xd3\xad\x98\x10\xa8\x1e\xa6\xd3\x32\xe5\xac\xd0\xf3\x3d\x8b\x7b\x62\xb6\xdc\x18\x54\x93\x83\xcc\xa9\x89\xad\x73\x92\x31\x1f\x57\x85\x4c\xaf\xd3\x35\xe3\x63\x5d\x88\xfb\x3d\x9e\x73\xdf\xcd\x15\x9a\xa3\x43\xb0\x6f\xbf\xf3\x35\x72\x7b\x9c\x16\xc0\xb2\x92\x0b\x90\x94\x70\x52\x0a\x43\xbb\x67\x73\xcf\xda\x5d\xab\xa6\xbc\xd3\x5d\xc1\x6e\x64\xb0\x95\x9b\xf7\x92\x0b\x63\x4b\x0c\x3e\x2d\x1d\xda\x5f\xc3\xdb\xab\xee\x56\x6e\x78\x2d\xf5\xa4\xee\xa7\x51\x72\x4c\xff\x53\x0a\x51\x8b\x6c\xba\x66\xf4\x33\x38\xfb\xed\xcf\x9c\x49\x7f\xca\x35\xf0\x76\xb8\xd2\x48\xbb\x7d\x3d\xde\xbf\xcf\x45\x4b\x4f\x4e\xdb\x4a\x1c\xe5\x43\xac\xc0\x07\xd5\x3d\x37\x31\xfb\x15\x67\x9b\x31\x54\x4a\xa1\x30\x3f\x93\x7b\xc1\xc2\xe6\xa0\xc1\x93\xce\x6d\xac\x6e\x6b\xd0\xd2\x4c\x2e\x61\x11\x89\x99\xad\x91\x5f\xad\xcd\x5e\x4e\xd7\x54\xec\x32\xfa\x56\x69\xaf\x6e\x65\x53\xc5\x0d\xc7\xd4\x26\x80\x3e\x95\x8c\x72\xf7\xa6\x45\x8a\xe5\x0a\xb3\x8c\xe6\xdb\xb5\xce\x80\x0b\x23\x9b\x1e\xe2\x88\x56\xb6\xfb\x06\x0b\x98\xac\x98\x9a\xf4\x46\xaf\xcf\x3a\xde\x01\xa3\xf7\x37\x8c\x42\xda\x96\xa6\xa4\x3d\x16\xf5\xbc\xa8\xf5\xa4\xe1\x2b\x5e\x91\x2f\xed\xbd\xd5\x15\x38\x95\xff\xda\xa7\x0a\x7c\xcb\x7f\xed\x53\xb5\x0e\xe3\x7b\xdf\x11\xcd\x58\x49\xd5\xd9\x3b\x7c\x2a\xb6\x57\x95\xa7\xf1\x52\x86\xf7\x68\xfc\x3d\xfa\xfa\x6e\x7f\x9b\x14\x63\x91\xcf\x7a\xd7\xf2\x61\xb1\x27\xf5\x74\xd4\xd1\x08\xaf\x9b\x39\x7a\x3d\xf0\xd7\x00\x14\x16\x34\xbb\x69\x6e\xd9\xd7\x72\x3d\x7b\x9c\x3a\xef\x3b\xdd\x36\xd4\x75\xcf\x22\xd6\xb7\x15\x11\xb6\xc9\x86\xf8\xde\x86\x1d\xb0\x80\xad\x4d\x99\x63\x74\x58\x9a\xca\x4a\x98\x46\xec\x8c\x6c\x49\x5e\x3e\x6d\x39\x8f\xc1\xc8\xf9\x80\x56\xd3\x08\x23\xef\xc7\x6e\x1c\x48\xd9\x86\xad\x78\x41\x6b\xa4\xff\x87\x16\x23\xe8\xbc\x66\x9b\xe6\xca\x76\xa3\x95\x17\xc3\x51\x7b\x15\xb9\xd6\xd5\x78\x86\x3d\xa4\xe9\xa0\xc5\x91\x6c\xab\xb6\x5e\x27\x91\x36\xc7\xc0\xcc\xbc\x0f\xec\x74\xd8\x3b\xea\x8d\xe6\x31\x9e\x51\xff\xd9\x4a\xb4\xb8\x9d\x98\x64\x44\xe9\xce\x34\x39\x01\x6e\x8a\x86\x9d\xbd\x29\x9d\xdc\x1f\xc1\xd1\x3f\x02\x00\x00\xff\xff\x81\x20\x3f\xee\x72\x35\x00\x00" +var _examplenftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5b\xdd\x73\x1b\xb7\xae\x7f\xd7\x5f\x81\xea\xa1\xb3\xca\x75\xe4\xa4\x1f\xb9\xad\x26\x6a\xda\xc6\x75\xaf\x67\x52\xdf\x4c\xa2\xb6\x0f\x19\x4f\x4a\xed\x62\x2d\x5e\xef\x92\x5b\x92\x2b\x59\xe3\xeb\xff\xfd\x0c\xc8\xfd\x20\xf7\x43\x96\x93\x39\x67\xce\xd1\x43\x22\xed\x02\x20\xf0\x23\x08\x82\x00\x7d\xfa\x04\x26\x4f\x26\x4f\x00\x56\x1b\xae\x81\x6b\x60\x02\xf0\x96\xe5\x45\x86\xc0\xe9\xdf\x1c\x85\x61\x86\x4b\x01\x32\x05\x06\xe7\x99\xdc\xc1\xa5\x14\x4f\xcf\x4b\x71\xcd\xd7\x19\xc2\x4a\xde\xa0\x20\x09\xa5\xe6\xe2\x1a\xcc\x06\xe1\x8f\xaf\x40\x1b\x26\x12\xa6\x92\x39\xbd\xb9\x30\x24\x59\x48\x03\x05\x53\x86\x04\x11\x95\x4c\x53\x1e\x73\x96\x35\xb4\xb0\x2e\x0d\x70\x03\x4c\xeb\x32\xc7\x04\x8c\x84\x35\x12\xbf\xe6\x39\xcf\x98\xa2\x07\x1b\xb9\x83\x9c\x89\x3d\x5c\x9e\xaf\x34\xec\x64\x99\x25\xad\x9e\x56\x6c\x2c\x15\x42\x5a\x8a\x98\x94\x66\x19\x37\xfb\xb9\x67\x61\x2c\x85\x51\x2c\x36\x90\x48\x74\x2a\xb5\xdc\x24\x56\xcb\x62\xc3\xb5\xe1\x31\x33\x98\x40\x9c\x31\xad\x79\x4a\xbf\xb8\xb4\x46\xea\xbd\x36\x98\x43\x2a\x15\x70\xa3\xad\x16\x73\xb2\x2f\xc1\x94\x0b\xd4\xc0\x48\x59\x02\xef\xf2\x7c\x05\x3b\x6e\x36\x90\x73\xc1\x73\x96\x41\x8e\x86\x25\xcc\x30\x8b\x08\x4c\x9e\x9c\x4e\x26\x3c\x2f\xa4\x32\x30\xbd\x94\xa2\x86\xd3\xa2\x39\x6d\xde\xfc\xc1\x71\xf7\x0e\xb5\xcc\xb6\xa8\xda\xa7\xbf\x55\xa2\xe8\xad\x9e\x4e\x26\x2c\x8e\x51\xeb\x88\x65\xd9\xac\x35\xf0\x17\x37\x8b\x97\xe7\xab\x05\x74\x07\x80\xbb\xc9\x04\x00\xe0\xf4\xf4\x14\xde\x32\xb3\x81\xdd\x06\x15\x5a\xf8\x72\x2e\x0c\x2a\xd0\x1b\x0b\xed\x1a\x41\x1b\xa9\x30\x69\xc8\x57\x1b\x6c\x27\xac\x60\x66\xa3\x2d\x18\x0e\xf9\x2c\x43\x0b\x3b\x30\x55\x33\x02\x17\xdd\x97\x0a\xb5\x2c\x55\x8c\x60\xf6\x05\x5a\xc1\xbe\x01\x19\x1a\xf8\xcd\x2a\xf1\xde\x48\xc5\xae\x91\x14\x5c\x80\xf7\xa3\xd5\xfd\x4f\x84\x78\x23\xa5\x76\xaa\x0b\x96\x3b\xdc\xc9\x98\x13\xeb\x4d\x86\xe6\x9c\x86\x81\x98\x09\xd8\xb0\x2d\xda\x59\xb6\x94\x42\xee\x1a\x41\x6b\x8c\x59\x59\x89\xb1\x63\xa7\x2c\xc6\xd6\x47\x14\xfe\x5d\x72\x85\xe4\x9c\xe4\x83\x56\x0c\xe8\x02\x63\xf2\x0d\x27\x8d\xc4\xe6\x52\xf5\xed\x69\xac\x1d\x9c\x89\xf9\xe5\xf9\xea\x04\xfc\x69\x9e\xd7\x5f\xea\x49\x1a\x02\x88\x27\x0b\xf8\xfd\x42\x98\x17\xdf\xb4\x34\x64\xc7\xb9\x92\xb9\x35\xe2\x8c\xeb\x22\x63\xfb\xc6\xeb\x60\xcb\x71\x37\x2a\x8e\x2c\x20\x88\x15\x17\xd7\xa3\x44\x09\xea\x58\xf1\x82\xa6\xf0\x41\x5a\xb3\x29\xf3\xb5\x60\x3c\x6b\x28\x43\x35\x2b\x8f\x79\x27\xf7\x2c\x33\x1c\xf5\x61\x3d\x35\x66\xa9\x93\xab\x6a\x86\x05\x7c\x08\x56\xc1\xdc\x89\xda\x5f\x85\x03\xfd\x8a\x02\x15\x8f\x21\xe1\x2e\x1c\xa8\xbd\x8d\x3e\x8a\xd1\xe2\x25\x0d\xac\xbb\x30\x3d\x3e\x62\xad\xd8\x02\xee\x9c\x25\x0b\xf8\x49\xec\xdf\x1b\x55\xc6\xe6\xde\xb2\x35\xbc\x5c\x70\x13\x35\xbf\xe8\xe3\xe3\x7a\x12\xbc\x19\x00\x33\x24\xe8\x21\x18\xbe\x7e\x18\x88\x90\xfe\xa0\x19\x2d\xe9\x0c\xee\x02\x36\xc2\x61\xce\x13\x58\xba\x6f\x65\xc9\x93\xfe\x7b\xeb\xff\x4b\x6b\x6c\xff\xa5\x67\x28\x2c\x7d\xb3\xfb\xa4\x8d\xc9\xb0\x6c\xcd\xef\x93\x35\xa6\xc3\xb2\x85\xa1\x4f\xd6\x78\xd4\xb2\x31\xbe\x21\xba\x0f\xbd\x24\x56\xc8\x0c\xfe\x92\x17\x66\xff\xba\x0d\x53\xee\xa9\xdb\x11\xe9\x15\xb4\xef\x02\x6e\x26\x12\x50\x68\x4a\x25\x74\x15\x20\x6c\xbc\x63\x59\x46\x71\x94\x7e\x31\xbb\x33\xed\x6d\x0c\x92\x3b\x61\x77\x8d\x40\xc4\x8f\x77\xbd\xb8\xd0\x0e\x76\x3f\xb8\xca\xd2\x52\x0c\xeb\x1d\xcd\x16\x0f\xc8\xeb\xcc\xb1\xd3\x1d\x5e\x3e\x6d\x77\x8c\xf9\xb0\x64\x91\x9a\xd5\xbe\xc0\x05\xd0\xbf\x2f\x7f\xf4\xe8\x2f\xcf\x57\x3f\x44\xb3\x99\x07\x30\xf8\x2b\xc3\x57\x9c\x16\xb8\xd5\xfe\x1a\x8d\xf5\x58\x52\xf8\x03\x49\xbc\x1a\x56\xec\x43\xf0\x90\x3e\x76\xf8\xd0\xeb\xab\x78\xf7\x43\x34\x3b\x39\x86\xbc\x09\x3c\xc7\x32\xfc\x92\x70\x82\xe0\x78\xfa\x5b\x83\x4a\xb0\xec\xf7\x77\x6f\x8e\x65\xb9\x3c\x5f\xb5\x58\x9f\x31\xc3\x3e\x8d\xf1\x71\x40\xbc\x47\xc5\x59\x76\x2c\xf5\xca\x06\xce\x1f\xa2\x59\x40\x7c\x35\xb4\xae\xba\xbe\xaa\xdc\xae\x46\x72\xa2\x8f\xd6\x09\x9c\x1b\xcd\xbc\x40\xf4\xaa\x1b\x7d\x76\xdc\xc4\x1b\xe7\x31\x77\x3d\xfd\x62\xa6\xf1\xb0\x2b\x2c\x7a\x3c\xd0\xba\xd5\x20\x53\x34\xc8\x01\x4d\x28\x6f\xe2\x5d\x1f\xae\xfa\x13\x44\xf6\x6e\x08\x1c\x67\xf3\xe2\x7d\xa8\xd9\xff\xac\x56\x6f\xcf\x79\x86\xe3\xaa\xd1\xa7\x54\xd9\xa2\x13\x45\x47\xe9\x67\x83\x6f\xfa\x4f\xc7\x00\xf6\xd6\xc2\x30\xc2\x2e\x4d\xa4\x7c\x89\xd2\x27\xc8\xd9\x2d\x88\x32\x5f\xa3\xa2\xcd\xd7\x26\xee\x36\x26\x52\x38\x5c\x57\x19\x67\x02\xa9\x4b\x5d\xbc\x1c\x7d\x4c\xb6\x76\x11\x96\xc4\xa2\x53\x05\x52\x8e\x59\x02\x5b\x96\x95\x76\x50\x8d\x36\x0e\x8b\x11\x10\x68\x5f\xaf\x38\x2f\x44\x2a\x61\x09\x83\x06\x46\x6e\xce\xa7\x55\x9c\xb3\xb9\x42\xf5\x6a\x7a\x52\x59\xb4\xa8\xb7\xc8\x13\xd2\x67\x41\x43\x0e\xc3\xeb\x8d\xf9\x86\x6b\xd3\xdb\xb6\x2b\xc1\x57\xb0\x84\x0f\x9e\x6e\x57\xc7\xbb\x70\x3d\x2d\xe3\x8e\xe2\x8d\xff\x99\x2e\xd0\x84\x8d\x47\x2c\x31\xc7\x33\xae\x5d\x05\xe4\x67\x6a\xe6\x47\xf6\x47\x28\xd7\xb0\x3d\xa0\xdf\x70\xc2\xf1\x78\x35\xc3\xfd\xe1\x11\x8a\x7a\x8c\xd1\x74\x63\x4c\xa1\x17\xa7\xa7\xd5\x89\xfd\xa9\x48\xcd\x5c\x8a\x34\x93\xbb\xb9\x54\xd7\xa7\xd3\x79\x2c\x45\xcc\x4c\x54\x41\x3b\x37\xd2\x25\x7f\xd1\x6c\x76\xbc\xaa\x43\xfb\xd2\x41\x85\xbd\xbc\xa0\x8a\xfa\xaf\xab\x15\x6d\xa3\x7f\x7d\x20\x3a\x98\x4a\x9c\xd8\xa8\xef\x91\x3c\xac\xd3\xa7\x5a\x74\xdc\x76\xf1\x2f\x37\xaa\x51\xeb\x78\xbb\x9a\xed\x79\x34\x2c\xe3\x6d\x9c\x95\x49\x1d\x73\x57\xdc\x1e\x5c\x13\x48\xa5\xa4\x78\xa9\x37\x72\x07\xd2\x6c\x50\x41\xa9\x51\x53\xb4\x76\x22\xc7\x23\x9a\x93\x97\x38\x32\x8a\x5d\xd3\x56\xf4\xf4\x04\xa6\xa9\x94\xd3\xe1\x18\x66\x8f\x89\x96\x8d\x94\xef\xc5\x60\x3a\xb1\xad\xa4\x93\x1b\xd1\x8f\x45\x98\xd6\x9f\x34\x63\x5f\xb2\x9c\x8e\x41\xa1\x2a\xb3\xc9\x18\x04\x9e\xe9\x5c\x03\x83\x52\xf0\x5b\x30\x3c\x47\x6d\x58\x5e\x9c\xc0\x0e\xeb\xe2\x47\xce\xd4\x0d\x65\xf4\xb6\x8c\xc3\x20\x71\x33\x42\xb8\xd3\x16\x54\x64\xcc\xa4\x52\xe5\x1a\x6e\x84\xdc\xd9\xc2\x54\x0d\x21\x37\xf3\x51\x93\xdb\xe1\xad\xa2\x3d\xbb\xed\xd3\x7a\xe7\x09\xb0\xb4\xbb\x5b\x07\x85\x00\xee\xab\x2f\x4e\x7c\x25\x17\x30\x3d\x63\x86\x38\x15\x53\xdc\xec\x0f\x6c\x4e\xed\x3c\xcc\x59\xe2\x10\x8c\x3a\x8a\x8e\x03\x4a\xce\x63\x91\xb4\x52\x1c\x5a\xe4\x0c\x74\xd2\x71\x23\x8f\x82\x91\x4a\x37\xc3\xef\x2c\x59\x0f\x0b\xf7\x38\xd2\xb1\x54\xb8\x80\xe7\xcf\xe6\xcf\xaa\x5d\xf6\xf9\x33\xfb\x3d\x48\xb5\xa6\xaf\x65\x9e\x4b\x31\x1d\xdf\x7e\xeb\xd1\x0e\x63\x4e\x1e\x3b\x06\xb6\xf5\xe6\x0e\xc8\x82\x67\x2d\xc2\xa1\x41\xc7\x83\x5d\xf3\x0d\x73\x1c\x8a\x4b\xad\xb4\x80\xea\x7e\xe8\x24\xe5\xe7\x43\x8e\xa0\x4a\xd8\x07\xeb\x55\x6d\x2c\x1a\x28\x5b\x79\xe7\xe4\xbb\xe0\x28\x1b\x56\x5a\x28\x65\x8a\xa5\xa0\x75\x62\x8b\xc3\xc4\x1b\x1e\x7d\x89\xc2\x7a\x4f\x50\x15\xac\xd6\x9c\x80\xbf\x5c\x95\xeb\x2f\xb8\x38\x73\x49\x5e\xf7\x80\x51\x27\x8b\x33\xd8\x32\x45\x3e\x87\x09\x65\x98\x74\x06\x76\xac\x0b\x08\xe3\xf0\xc8\x19\x85\xb8\xf5\x58\xc1\x71\x8c\xa1\x28\xd7\x19\x8f\x1d\xfd\xdb\xe6\xfb\x24\xa8\x08\x41\x34\x58\x54\x69\x34\x85\x97\x4f\xe1\x2e\x9c\x2e\x57\xe1\x43\x61\x78\xca\x51\xc1\x12\xa6\x31\x4b\x50\xc4\xd8\x5a\xd2\xe2\x3f\xed\xcb\xf6\xec\x80\xa5\x6f\x48\xd4\x4a\x5d\x78\x23\xcc\xbe\xe8\xcb\x68\x4d\x83\xa5\x67\xdb\xc3\x12\x3a\xb5\x95\x6b\x34\xef\xcb\xa2\x90\xca\x58\x73\x69\xcd\xe8\xa6\x5c\xc2\x20\xe3\xda\xd4\x8e\x62\xec\xbb\xaa\x5c\xc2\x89\x2a\x46\xbe\x45\x65\x61\x2f\x4c\xaf\x48\xd7\x2b\x27\xf4\x06\x8a\x66\x0b\xb8\x73\xcb\xf4\x67\x29\xb3\x6e\xe5\x83\x70\xd6\x35\x8f\x65\xe8\x90\x2f\xbb\x33\x13\x52\x7f\x18\xd9\xe7\x29\x89\x37\xaa\xc4\xa1\x35\x18\x4a\x18\x43\xed\x5d\x05\xd0\x6e\x83\x76\x3b\x96\xca\xd6\xa1\xe9\xd8\x73\xcd\xb7\x28\xdc\x22\xa1\x75\x63\xa1\xc1\x04\xd6\xfb\x4e\x99\x3d\x90\xf7\x93\x5f\x7f\x6f\x0e\x5f\x8e\xd9\x96\xae\xad\xbc\x6a\xdf\xfb\xbf\x52\x9b\x36\xbc\x94\x48\xb2\x13\x4c\x59\x99\x99\xc3\x53\xc0\x75\x77\x06\x22\xd3\x24\x3b\x33\x07\x6a\x38\x05\x3c\x75\x23\x2f\x97\x63\x39\xd3\x70\x4d\xa8\x8b\xee\x3d\x60\xa6\x71\x98\x36\x65\x99\x0e\x89\xc7\x50\xa7\xa0\x93\x28\xb6\x03\x85\xb9\xdc\xba\xd2\x1f\x39\x66\x5a\x57\xd5\xfd\x0e\x87\x48\xc0\x11\x75\x6b\x7e\x5d\x8c\x7a\xb1\xf3\xcf\x7a\x98\xff\xef\xc7\xd5\xff\xdd\x09\x54\xae\x62\x52\x6b\x13\xd5\x5f\x2e\xce\xea\xa2\xff\x70\x89\x8f\x82\xdb\x80\x87\xdb\xa0\x4b\x51\x26\x8c\x3b\x73\x67\x64\x74\x83\xfb\x05\xb4\x43\xf4\x77\xa0\x57\xaf\xa0\x60\x82\xc7\xd1\xf4\xb5\x75\x0f\x72\xc4\x06\xa9\x0a\x21\x1b\xae\x09\x82\x42\xc9\x2d\x4f\x30\xb1\xf1\xba\x0f\xdb\xb4\x93\x46\x34\xb5\x47\xab\xe4\xd8\xbc\x24\x58\x48\x4d\x30\xb3\x1b\xdb\x62\xa3\x11\x09\x7f\x96\x24\x01\xfc\xcd\x30\xda\xdb\x86\x7a\xb5\x5a\xcb\x45\xf4\x17\x67\x35\x27\x4f\x80\x29\xc5\xf6\xa3\xd5\xab\x4a\x83\xc8\xaa\x39\x0a\x7e\xd7\x59\x03\xf4\xdd\x17\xa6\xbf\x80\x8e\x93\x87\x88\x90\x92\x49\xe2\xfa\x59\xb8\xab\xb8\x2a\x35\xbd\xbd\x75\xb7\xe1\xf1\xa6\xf1\x53\xdb\x4e\xcd\x12\x90\x02\x7b\x0a\xc8\x2c\x59\x0d\x7b\xc0\x07\x2b\x7c\xce\x93\xab\x46\xbf\x49\xb7\x49\x61\x94\xdc\x37\x22\x0e\xc4\xf8\x8b\x33\x2f\xaa\x0b\x87\x66\xdd\xe8\xa5\x77\x36\xe6\x30\x85\xfd\x76\xe0\x83\x51\xfd\xe2\xcc\x95\x88\x9d\xeb\x8f\x14\x89\x3b\xbe\x7d\x83\xfb\xd1\xd8\xfa\x2b\x56\xbd\x1f\x96\xcb\x52\x98\xa6\x26\x35\xd6\xaf\x7c\x50\xc1\x37\x28\xae\xcd\x86\x74\xbc\x10\xe6\x68\xf5\xe6\x99\x65\x7b\xa8\x76\xda\x0c\xb4\x96\x4a\xc9\xdd\xe5\xf9\x2a\xfa\xe8\xb5\xff\x66\x0b\xf8\x72\xd8\x19\xbb\xc5\xd4\x4a\x93\xe8\xcb\x8e\x13\xd0\xf4\x33\x3d\x2a\x65\x36\x06\xe3\xcf\x56\x1f\x8b\x95\xd5\x51\xd5\x6d\xcb\xba\x1d\x5c\xf5\x47\x31\xb1\xeb\xf5\xe2\xec\x18\xf3\xfc\x46\x68\xd4\xb1\x72\xb0\x49\xda\x33\x93\xa7\xae\xa3\x99\x52\x9a\x3f\x66\x6b\xb8\x00\xbb\x22\x3c\xb4\x48\x8c\x05\x67\x78\xf0\xc7\xa6\xdc\x9f\xd7\x75\xaa\xd7\x93\x66\xb9\xd7\x3b\x87\x23\xda\x50\x61\xb3\xa9\x52\xed\xa7\x76\x8c\xf8\x88\x31\xfe\xd3\x9a\x4f\xf7\xed\x35\x81\xc7\x23\x3d\xec\xc3\x0d\x1e\x9f\xd9\xf6\x3b\x0e\xca\xc0\xe0\xc7\xe0\xda\x60\x5a\x09\x06\x7f\x7e\xba\xd8\x9c\x57\x37\x65\x9c\xbe\x4d\x08\xcf\x32\x6b\x4e\x7d\x4e\xb6\x37\x14\x74\x7b\x57\xc6\x25\x9c\x8c\xf2\x17\xe8\xdc\x04\xaa\x04\x4f\x7a\xee\xe6\xed\x0a\xee\x14\x60\xef\xcc\xd4\x77\x86\x7c\xd1\x5b\x7b\x2a\x77\x17\x76\x5c\x4d\x7f\xc7\xb3\x0c\xd6\x08\xa5\xb6\x23\x37\xc2\xeb\x4f\x82\x5b\xcc\x64\x81\x4a\xd3\x44\xd8\x82\x8c\xdb\x21\x0b\xa6\x58\x8e\x06\xed\xe5\xa1\x82\x69\x5d\x4f\x94\xdf\x8f\x9a\x41\x8e\x66\x23\x93\x79\xa0\xfc\x58\xb8\xf7\xeb\x7e\x7a\xa0\xf0\xf7\x6a\xa8\x9f\x39\xd8\xcb\xfc\xa4\x26\xe0\xf1\x85\xc3\x86\xed\xea\xa1\x49\xb7\x50\x50\x66\x15\x5c\xc3\xa8\x56\x81\xd7\x91\x99\xf7\x67\xd7\x02\x5c\xf7\xf3\x36\xae\x2c\x59\x07\x91\x04\x35\x57\xd5\x7c\xce\xfb\x0e\x01\xda\x76\xfd\x4a\x45\xb3\x51\x28\xd4\x74\x9a\xac\xdc\x41\xe1\xdf\x25\x6a\xd3\x65\x1e\x5c\x3e\xc7\xd5\x63\x5f\x75\xab\xaf\x63\x9d\x47\xaf\xeb\x68\x8d\x09\x03\xd6\xe7\x55\xc9\x69\x6b\x8a\x03\xb2\x5e\x31\xaa\x27\x68\xb8\x23\x11\xd4\x2a\x4e\xab\x5f\xa7\x07\xea\x04\xc3\xad\x47\xbf\x82\x71\xea\x7e\x7c\xaa\x10\xbf\x5e\x64\x01\xf2\xb7\xd9\xf6\xe5\x60\xaf\xb9\x95\xf2\x86\x8b\x1b\x77\x38\xfe\x34\x29\x83\xb1\xb4\xf6\xf7\x05\x44\x69\xf9\xf8\x4d\xca\xff\xfc\x33\x36\x2c\xff\x73\xdf\x7f\xdc\x7f\x52\x29\x11\x7a\xd2\x27\xb8\xe9\x81\xd6\x87\xbb\xfb\x94\xf0\xbe\x83\xfe\x46\x4f\x87\x9d\x32\xe5\x19\x3e\xbe\x7f\x6d\x7b\xd7\x4d\x2f\x8b\x69\x8d\x46\xcf\x77\xb8\xd6\xdc\xe0\x53\x12\xa9\xe7\xb1\xcc\x4f\xbf\x4d\x5f\x7c\xf5\xfd\x37\xf1\xb3\xf8\xbf\xd9\x77\x71\x92\xbc\xf8\xe6\xeb\xf5\xf3\xf8\xbb\xaf\x9e\x75\x5e\xb0\x6f\xbf\x8d\xd7\xcf\xe3\xef\xbf\x7e\xf1\xf1\x3c\x93\xbb\x8f\x7f\x4a\x95\xe4\x4c\xdd\xcc\xf5\xf6\x7a\x3a\xdc\xb5\x1b\xf6\x24\x6b\x7d\x55\x48\xe7\x39\xad\x2e\xbd\xbd\xfe\xaf\xdb\x3c\xeb\x4b\x19\x9d\xa1\x87\xc1\x1f\x86\xa5\xaa\x45\x53\x40\xad\xbb\xcf\x5e\xc5\x6f\x58\xdf\xb0\x1a\x5e\xdd\x76\x6d\x32\x1a\xae\xdd\xe6\xc9\x82\x2b\xbe\x46\xc2\x06\xb3\x02\xf6\xb2\xac\xf7\x50\xfa\xae\x40\xe0\xad\xa9\x2e\xfb\x9e\xaf\xe6\x23\x23\x62\xdb\x8b\xec\xce\xfa\x23\xda\x94\xd3\x11\xfc\xf5\xdf\x25\x53\x78\x41\xc8\x2f\xdc\x64\x0c\xd3\xad\x99\x10\xa8\x1e\xa6\xd3\x32\xe6\x2c\xd3\x8b\x03\x8b\x7b\x6a\x76\xdc\x18\x54\xd3\xa3\xcc\xa9\x88\xad\x73\x92\x31\x1f\xd7\x99\x8c\x6f\xe2\x0d\xe3\x63\x5d\x88\xfb\x03\x9e\x73\xdf\xcd\x15\xea\xa3\x83\xb7\x6f\xbf\x6b\x6a\xe4\xf6\x38\x2d\x80\x25\x39\x17\x20\x29\xe1\xa4\x14\x86\x76\xcf\xfa\xb2\xb4\xbb\x1b\x4d\x79\xa7\xbb\x47\x5d\xcb\x60\x6b\x37\xef\x39\x17\xc6\x96\x18\x9a\xb4\x74\x68\x7f\xf5\x6f\xaf\xba\x5b\xb9\xfe\xb5\xd4\xd3\xaa\x9f\x46\xc9\x31\xfd\x4f\x29\x44\x25\xb2\xee\x9a\xd1\x4f\xef\xec\x77\x38\x73\x26\xfd\x29\xd7\xc0\xdb\xe1\x4a\x23\xed\xf6\xd5\x78\xff\x3e\x17\x2d\x1b\x72\xda\x56\xc2\x28\xef\x63\x05\x4d\x50\x3d\x70\x13\xb3\x5f\x71\xb6\x19\x43\xa9\x14\x0a\xf3\x33\xb9\x17\x2c\x6d\x0e\xea\x3d\xe9\xdc\xc6\xea\xb6\x06\x2d\xcd\xf4\x0a\x96\x81\x98\xf9\x06\xf9\xf5\xc6\x1c\xe4\x74\x4d\xc5\x2e\x63\xd3\x2a\xed\xd5\xad\x6c\xaa\x58\x70\x8c\x6d\x02\xd8\xa4\x92\x41\xee\x5e\xb7\x48\x31\x5f\x63\x92\xd0\x7c\xbb\xd6\x19\x70\x61\x64\xdd\x43\x1c\xd1\xca\x76\xdf\x60\x09\xd3\x35\x53\xd3\xde\xe8\xd5\x59\xa7\x71\xc0\xe0\xfd\x96\x51\x48\xdb\xd1\x94\xb4\xc7\xa2\x9e\x17\xb5\x9e\x34\x7c\xc5\x2b\xf0\xa5\x83\xb7\xba\x3c\xa7\x6a\xbe\xf6\xa9\x3c\xdf\x6a\xbe\xf6\xa9\x5a\x87\x69\x7a\xdf\x01\xcd\x58\x49\xd5\xd9\x3b\x7c\x2a\xb6\x57\x95\x67\xe1\x52\x86\xf7\x68\x9a\x7b\xf4\xd5\xdd\xfe\x36\x29\xc6\x2c\x9d\xf7\xae\xe5\xc3\xf2\x40\xea\xe9\xa8\x83\x11\x5e\xd7\x73\xf4\x7a\xe0\xaf\x01\x28\x2c\x68\xb6\xad\x6f\xd9\x57\x72\x1b\xf6\x30\x75\x3e\x74\xba\xad\xa9\xab\x9e\x45\xa8\x6f\x2b\xc2\x6f\x93\x0d\xf1\xbd\xf5\x3b\x60\x1e\x5b\x9b\x32\x87\xe8\xb0\x38\x96\xa5\x30\xb5\xd8\x39\xd9\x12\xbd\x7c\xda\x72\x9e\x80\x91\x8b\x01\xad\x66\x01\x46\x8d\x1f\xbb\x71\x20\x66\x05\x5b\xf3\x8c\xd6\x48\xff\x0f\x2d\x46\xd0\x79\xcd\x8a\xfa\xca\x76\xad\x55\x23\x86\xa3\x6e\x54\xe4\x5a\x97\xe3\x19\xf6\x90\xa6\x83\x16\x07\xb2\xad\xda\x7a\x13\x05\xda\x9c\x00\x33\x8b\x3e\xb0\xb3\x61\xef\xa8\x36\x9a\xc7\x78\x46\xf5\x67\x2b\xc1\xe2\x76\x62\xa2\x11\xa5\x3b\xd3\xe4\x04\xb8\x29\x1a\x76\xf6\xba\x74\x72\x3f\x81\xc9\x3f\x02\x00\x00\xff\xff\x3d\xf1\x13\x60\x37\x35\x00\x00" func examplenftCdcBytes() ([]byte, error) { return bindataRead( @@ -111,11 +111,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{0xb6, 0xd7, 0x35, 0xe8, 0xcd, 0xc6, 0x87, 0x70, 0x6d, 0xfd, 0x33, 0xda, 0x97, 0xdd, 0x33, 0x3e, 0x50, 0x1b, 0x26, 0xf3, 0xda, 0x87, 0x9a, 0x9d, 0x8b, 0xd5, 0xa, 0xdc, 0x1f, 0xb2, 0x64, 0x9d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd4, 0x60, 0x28, 0x18, 0xcf, 0x54, 0x84, 0x7c, 0xd7, 0xcd, 0xce, 0x18, 0x6e, 0xd1, 0xcd, 0x94, 0xd2, 0x9a, 0x5e, 0xb9, 0x83, 0xfc, 0xb5, 0x56, 0xb8, 0x93, 0x96, 0x5, 0xec, 0x95, 0xfa, 0x55}} return a, nil } -var _metadataviewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x7c\x6d\x73\xdb\x38\x92\xf0\xf7\xfc\x8a\x1e\x6f\xd5\xac\xfd\x3c\xb2\xe4\xcc\xce\x4d\xdd\xa9\x46\x3b\x9b\x49\xe2\xdd\x5c\xcd\xe4\x52\x89\x67\xf7\xaa\x52\x53\x31\x44\xb6\x24\xac\x49\x82\x0b\x80\x96\xb5\xa9\xfc\xf7\xab\x6e\xbc\x10\xa4\x28\x8b\xf6\x66\x36\xfe\x90\x50\x24\xd0\x68\x34\xfa\x1d\x0d\xc8\xb2\x56\xda\xc2\x65\x53\xad\xe5\xb2\xc0\x2b\x75\x83\x15\xac\xb4\x2a\xe1\xa4\xf3\xee\xe4\x89\x6f\xf9\x5a\x55\x43\x8d\xfb\xaf\x63\xfb\xbf\x4a\xdc\xbe\x45\xa3\x8a\x5b\xd4\xbe\x6d\xfa\xea\xe4\xc9\x93\xd9\x6c\x06\x57\x1b\x69\x20\x53\x95\xd5\x22\xb3\x20\xcb\xba\xc0\x12\x2b\x6b\xc0\x6e\x10\x4a\xb4\x22\x17\x56\x80\xb1\xa2\xca\x85\xce\xa1\xd6\xaa\x56\x06\x73\xee\x2b\x2b\xb8\xfc\xe9\xd5\x9b\xf3\x8b\xef\xfe\xf0\xdd\x94\xde\xf0\xdb\xb7\xb8\x9a\xc3\xc6\xda\xda\xcc\x67\xb3\xb5\xb4\x9b\x66\x39\xcd\x54\x39\x53\xd5\xaa\x50\xdb\xd9\xaa\x90\xb5\x99\x2d\x0b\xb5\x9c\x95\x42\x56\x33\x51\xd7\x85\xcc\x84\x95\xaa\x9a\x7d\x73\xf1\xcd\xd3\x8b\xff\x7a\xfa\xdd\x79\xb5\xb2\xe7\x61\xf0\x69\x99\x47\xd8\xef\xac\x6e\x32\x6b\x40\x54\x39\x68\x34\xaa\xd1\x19\x1a\xc8\x44\xd5\x62\x0e\xaa\x42\x50\x1a\x4a\xa5\x91\xfb\xc4\x49\xd8\x5d\x8d\x66\x02\x99\x28\x0a\xcc\xe1\x56\xe2\xd6\x4c\xe1\xa5\xc8\x36\xfc\xcc\x9f\x41\x63\xad\xd1\x10\x01\xb8\xaf\x80\x5c\xae\x56\xa8\x09\xee\x8d\xac\x72\x50\xab\x08\x6f\x02\xa6\xc9\x36\x20\x0c\x08\xc8\x34\x0a\xab\x34\x2c\xa5\x5a\x6b\x51\x6f\x76\xdc\x5b\x69\x10\xf0\xdf\x6f\x5e\xfe\x19\x64\x29\xd6\x08\x2b\x59\xa0\xa3\x93\xc8\x32\x34\xe6\x54\x14\xc5\x59\x4b\xfc\x9f\x3d\x60\x5a\x25\x03\x1f\x9f\x3c\x01\x00\x20\x38\x2f\xa4\xa9\x0b\xb1\x03\x49\x43\x2d\x85\x91\x99\xc7\x78\x23\x2c\xc8\x2a\x2b\x9a\x1c\xdd\x82\x55\xa2\xc4\x09\xe4\x68\x32\x2d\x6b\x22\x29\x51\x2a\xc2\xb1\x9b\xa6\x5c\x56\x42\x16\xb0\x22\xd4\x2a\x50\xcb\xbf\x63\x66\xa7\xf0\xb3\x32\xd6\xff\x30\x60\x36\xaa\x29\xf2\x84\xa0\x96\x58\x84\x06\x9c\x06\x48\xfc\x7f\x3a\x07\xc3\xeb\x12\x11\xf5\xb8\x87\x71\xaf\x3c\x66\x44\x3d\xc2\xd2\x0f\x9b\xb6\xe9\xb5\x97\x06\x56\x12\x8b\x1c\xb6\xb2\x28\x60\x89\x90\x3b\xc8\x98\x13\xd3\x15\xd2\x78\x1e\xb0\x1b\xd4\xb8\x52\x1a\x3d\xd6\x1d\x30\x4b\x7e\xab\x2d\xcd\x34\x53\x55\x26\x0d\x0e\x8f\x99\xce\xa4\x40\xcb\xb8\xce\x89\xd7\x64\xb5\xee\xce\xe4\x19\x6c\xb5\xb4\x16\xab\x0e\x8d\x3f\xd3\xb4\x04\xe4\x68\x85\x0c\xcc\xd9\x05\x3b\xe9\x80\x32\x8a\x99\x7e\x89\xcc\xe6\x70\x8b\x7a\xa9\x0c\xc2\x29\x4e\xd7\x53\x10\x50\x0b\x2d\x98\x0f\x41\x56\xc6\xa2\x60\xbe\x15\x60\x64\xb5\x2e\x10\x0a\x59\xe1\xd9\x38\x4a\x24\xb3\x3c\x44\x10\x53\x8a\xa2\x48\x58\x2b\x4a\x90\x78\x24\x6d\x3c\xff\x2d\x11\x04\x6c\x71\x79\xbe\xd2\x12\xab\xbc\xd8\xb1\xf8\xc0\xa9\x9c\x22\xcb\xd4\x04\xde\xbc\xfe\xf3\x59\x07\x08\xcb\x83\xa7\xcb\x3e\xc3\x4c\x68\xe2\x37\x50\x6b\x64\xd1\x9f\x00\xda\x6c\x1c\x15\xe2\xe4\xe6\xf0\xf1\x52\x16\xf8\xa9\xa5\x01\x2f\x94\xac\xa4\x3d\x8d\xaf\xe8\x2f\xe5\xa0\x49\xe7\xcb\x00\x45\xbb\x0d\xf6\x07\x0b\x5f\xce\xe0\x63\xa7\xa5\xc1\x62\x35\x65\xb9\x5a\xf0\x80\xfb\x1f\x53\x26\x5d\xa4\x43\xef\x37\x6d\x17\x70\xd1\xa2\x10\x9b\x39\x24\x3e\xb5\x2a\xe9\x2f\x58\xd4\xa8\xc1\x2a\x58\x63\x2b\xf7\xcc\xc4\xac\x66\xc5\x0a\x61\x2b\x76\x1d\x85\x41\xfd\xfe\x44\xac\x59\x32\xd9\x82\x21\x9a\xc3\x33\xd0\xc8\x4a\x36\x43\x82\x48\xfc\xa2\x83\xe1\x0a\x5a\xbe\x85\xa0\xd1\x36\xba\x82\x67\x15\x28\x9e\x8b\x28\xe2\xf8\x4e\x0d\x1d\xd4\x52\xab\xa6\x22\x74\x7d\xeb\xd3\x0f\x3d\x34\xbe\xfe\x98\xda\xc7\x69\x78\xf8\x74\x06\xf3\x30\xc2\x0f\xc9\x12\xc8\x15\x33\x07\x73\xc0\xa2\x03\x6a\xea\xb1\x27\x70\xa7\x57\xbb\x1a\xbf\xf7\xdd\xff\x78\x7a\xd6\x5f\xc4\x00\xc5\x83\x00\x61\x7e\x48\xd4\x28\xf4\xfe\xfc\xdc\x6f\x3b\x1f\x3e\x3d\xd9\x7f\xf2\x0d\x2b\xbf\x86\xc9\xca\xfd\x19\x2b\xd4\x32\x03\x59\x59\xd4\x2b\x41\x24\x27\xb1\x69\x0d\x1f\x08\x27\x69\xc6\x2a\x8d\x39\x90\x0c\x6b\x50\xab\x15\x64\x1b\x21\xab\x29\x10\x53\x9a\x08\xce\x8b\x5b\x63\x30\xa7\xb5\x8b\x0b\x69\x9c\xcd\x33\x13\xb8\x95\x39\x2a\xa7\xae\x15\xe9\x6b\x28\x31\x97\xe2\xa8\x2d\x69\xf1\xa3\x01\x13\x5a\xa4\x6d\x99\x64\xb4\xac\x8d\x96\xa7\x67\x51\x45\xf5\xa6\xfc\x57\x36\x96\x0a\xf0\x8e\x7c\x97\x30\x3f\x67\x3d\x8d\x87\x47\xfe\x13\x08\xb6\x15\x7f\xb9\xba\x7a\x03\xa7\x4a\xf3\xc3\xbb\x33\xf8\xe5\xed\x4f\x47\xb1\xa5\xa6\x84\xe7\xfc\x3e\x6c\x69\xa1\x1b\x5d\xec\x6b\xd2\x56\x8b\x24\x9f\x07\xc5\xbd\xd1\x24\xa0\x8d\x4e\x45\xf3\x01\x94\xe9\x81\xf4\x5c\x12\x20\x1f\x16\xf7\x61\x0a\xb6\x1c\xf2\xea\xcd\xe5\xbb\x48\x23\xfe\xe5\x97\x1f\x84\xc6\x96\x29\x72\x58\xee\x48\xbc\xa5\x66\xaf\x87\x9c\x0b\x99\x63\x65\xe5\x4a\xa2\x86\xd3\xe7\xaf\x5e\x9c\x45\x20\x5a\x30\xb3\xd8\x8d\x60\xcb\x28\x35\x66\x16\x7e\x79\xfb\x6a\x0a\xcf\x20\x2b\x24\xf5\x4d\x5c\x47\xe6\xc3\xc6\xa0\x73\x56\x9e\xbf\x7a\xd1\x3a\x3d\x0a\x56\xe4\xb9\x11\xff\x15\x4a\xb0\xcf\xe0\xfd\xb1\x5b\x29\x68\xbd\x19\xdd\xb5\xb0\xb8\x15\xbb\xa3\x0b\x4d\x8d\x3b\x0b\xdd\xb1\x40\xcf\x5f\xbd\x20\x96\xa2\x21\x06\x26\x48\x5e\x17\xe3\xc7\x23\x3a\x6f\x30\xe9\xdd\x81\xd4\xf1\xa2\x73\x95\x99\xa9\xac\x57\x66\x2a\xd5\x8c\x5c\x19\xac\xad\x99\xf9\x11\xce\x45\x9e\x6b\xe2\xe0\x6a\x3d\x1b\x65\xce\x32\x99\x0f\x1b\xf3\x37\xc2\x6e\x58\x22\x12\xd5\x5a\xd3\x3b\xaf\x94\x79\xd1\x83\x42\x66\x65\xef\x89\xe7\x56\x47\xe9\xdd\x28\x03\x2f\x0d\xa8\xaa\xd8\x41\x85\x98\x93\x7d\x5e\xb5\xc0\xa5\x21\x8f\x45\xe6\x18\x97\xfc\x5e\xa0\x23\x88\x44\x60\xcf\xcd\xce\x58\x2c\xcd\x38\xf2\xd0\x8c\x03\x7d\x7e\x18\x92\xd1\x84\x7e\x93\x6e\xeb\x41\x91\xcd\x64\x0e\x0b\x22\xfa\xfe\x27\x26\xee\x82\x61\x0c\xc9\x73\x4b\xb7\xa6\xca\x98\xcb\x9d\xc0\x3a\x06\x63\xca\x57\xc2\xca\x5b\x24\x15\xd5\x72\xd7\x1e\x63\xdd\x43\xa7\x8d\xda\x9e\x5b\x35\xf3\x2c\x74\x4e\xaf\xcf\x55\x75\xbe\xc5\xe5\xec\x77\x0e\xf6\x79\xa3\x0b\x73\x70\x05\x82\x35\x26\x17\xdf\x38\x15\x43\x6c\x29\x64\x45\x8f\x71\x5d\x1b\x2d\x8f\xd2\x7e\x94\xc6\xf2\xe6\xd2\x13\xae\x25\xe2\x41\x53\x79\x42\x53\x9a\xcf\x66\x27\x53\x62\x09\x61\x4f\xc3\x9a\x9c\x85\x17\x27\xb3\x93\xf8\x4c\xb0\xce\x7a\xc6\x75\x48\x63\x1e\x86\x7a\x5c\x87\x46\x4b\x1b\xd4\xe8\x56\xda\x8d\x8b\x51\xb4\x46\x53\x2b\x99\xd3\xbc\xd9\x4a\x92\xf3\x70\x54\x25\xfd\x4c\x2d\xfb\x9a\x88\xb5\x93\x63\x09\x74\xb0\x46\x31\xff\x8a\x55\x5b\xdf\xcb\x75\x61\x74\x2e\xc5\x39\x07\xc9\x99\x2a\x91\x64\xd8\xad\xaf\xd2\x25\x7b\xf9\xbb\x1a\x67\xa6\x59\x72\x0b\x61\xbc\xb7\xb9\xc4\x1c\x28\x46\x83\x0e\xac\xc8\x8a\x78\x8b\x85\xaa\x51\x4f\x4b\xf5\x4f\x59\x14\x62\xaa\xf4\x7a\x86\xd5\xf9\x2f\xef\x98\x4d\x67\x7f\xc3\xe5\x8c\x4c\xeb\xec\x47\x8a\x7a\xcd\x07\xb5\xfa\xc0\x3f\x7f\x7e\xf5\xf3\xcb\x0f\xec\x68\x8e\x9a\x55\xa4\xe5\x7d\xa6\x37\x9d\xfa\x64\xbf\x4b\x57\xb6\x79\xbd\xa9\xc7\x82\xfe\xe9\x7f\x88\x9d\x17\xf1\xe9\x30\x5f\xfc\x4d\x8b\x9a\x7c\x69\xc7\xff\x4a\x43\xd9\x14\x56\xd6\x85\x5f\x36\x97\xa8\x18\xc5\x03\xa6\xcf\x04\xcf\x2a\x10\x7a\x29\xad\x16\x7a\x77\x6e\xe4\x3f\x31\xe7\x50\xc8\x87\xff\x3b\xa8\x9a\x72\x89\xe4\xdc\x79\x1e\x92\xa4\x25\x0f\x52\x91\xbf\xce\xe1\x3d\xb7\xfd\x75\x88\x84\x1f\x7a\x6d\x06\xf5\x21\x37\x81\x45\x6f\xb0\x23\x11\x86\x9f\xdf\xbf\x35\xc0\x68\x8d\xa0\x1f\x7d\x5c\x78\xe1\x1a\x3f\x28\xba\x70\x5d\x1e\x1b\x5c\xb8\xde\x23\x63\x8b\xc8\x28\xd0\xfb\xfb\x0c\xa1\xc5\x90\x86\x2b\x64\x86\x15\xb9\x8c\x59\xa6\x34\x2b\x36\xab\xa2\xfc\x9b\x3a\xbf\x63\x91\xf7\xad\x4c\xbb\x8e\x57\x21\xe9\xd4\x89\x30\xbc\xaf\x10\x7c\x2b\xb5\x22\xbd\xf9\xfa\xf2\x8a\x1c\x07\x0f\x23\x3f\xaa\x2f\x7f\xf2\x28\x1d\x76\xd2\x09\xaf\x57\xd1\x6f\xbb\x4f\x69\x7c\x48\xfc\xbb\x7b\x1d\xf7\x2e\x48\x62\xff\xf8\x63\xac\x0c\x04\xbc\xbf\x90\x10\x84\xe1\xc7\x49\x81\x6f\xfd\x20\x31\xf0\x7d\x1e\x2b\x07\xbe\xfb\x48\x41\xd8\xe7\x82\xdf\x40\x12\x62\xbc\x44\x0e\x1a\x13\x9d\x3c\x5c\x8b\x25\x70\x6a\x16\xf0\xce\xa2\x26\xe2\x1a\x69\x5b\x43\xef\x93\xf2\x09\xdf\x2f\x77\x69\xb0\x43\xbc\x7e\x83\x30\x8d\x71\xcd\x8f\x85\xca\x08\xba\x0a\x71\x52\x63\x50\x1b\x48\x63\x20\x4e\xc2\x69\xb9\x96\x34\x1a\x27\xc2\x7c\x0e\x98\xa4\x87\x13\xd5\xb5\x56\x7f\xa7\xbe\x35\x85\x46\x1c\x1c\x07\x13\xee\xfc\x4d\x6a\x98\xa9\xa2\x40\x76\x45\x5b\x64\x71\x1d\xe5\x79\xbb\xdd\x4e\xcb\x1d\x67\xef\x3d\x34\x97\xf9\xbf\x45\x4d\x74\x3f\x57\x2b\xfe\xd6\x42\x39\x26\xaa\x2f\x3d\x7d\x88\x7c\x8f\x8e\xa9\x3f\xc0\x88\xa8\x7a\x71\x6f\xfc\xdb\x15\xc4\x14\xab\x2f\x24\x8c\x29\x0a\xe3\x04\x32\xe9\xf1\x20\xa1\x4c\xfa\x3d\x56\x30\x13\x10\x23\x85\x73\x78\xdd\x3f\xbb\x80\x3a\x26\x5f\xc9\x0a\x43\xcc\x5e\xd6\xca\x88\x25\x85\xb9\x6a\x27\x0a\xbb\x6b\x77\xbe\xb8\xf1\x5a\xde\xa2\x81\x52\xe8\x1b\xb4\x75\x21\x32\x34\x20\x5a\x31\x6b\x2a\xd2\xe7\x79\x9a\x5a\x53\x60\x9a\xda\x6d\xdf\x5d\x5e\x79\xa0\x12\xcd\x51\x1b\xf5\xd6\x0f\xdf\x73\xe8\x42\xf2\xae\xbb\x11\xf8\x16\x33\x94\xb7\x31\xc1\x80\xb0\xc4\x0a\x57\x32\x93\x42\xef\x42\x02\xde\xcf\xa7\x9b\xad\x10\xcc\x19\xc1\xa4\x66\x1a\x2d\xba\x6d\xb0\xd0\x29\x00\xe6\x10\x25\xfc\x9a\xae\xd1\xd2\xba\x9e\x9e\xf5\x82\xcc\x4c\x95\x25\x56\xb9\x4b\xc8\x9c\xc3\x2f\xac\x84\x7c\x3a\x9f\x77\xc8\x48\x13\x56\xb8\x4d\xf4\x0f\x5c\x16\x6a\xeb\x66\xd1\x01\xa6\xbb\x53\x92\x06\x1a\x43\xce\xc3\xf5\x1a\xad\xa7\x4d\x98\xf5\x9b\x66\x59\xc8\xec\x8d\xb0\x9b\xd3\xb3\xeb\x09\xeb\xc3\x4a\xd9\x2e\x38\x97\x19\x42\x5a\x6c\xd1\x14\x36\x19\x35\x4e\xca\x29\x5d\xde\x98\x11\x45\xa1\xb6\x5e\x87\x5a\x05\x4d\x9d\x13\xea\x1d\x80\x4c\x32\x51\x8b\xa5\x2c\xa4\xe5\xc4\x37\xc7\x42\x8d\x6d\x34\xaf\x7a\xc3\x5a\x9f\x37\x67\xd6\x7e\xcd\xda\xe6\x07\x15\x59\x40\x66\x0e\xcf\x63\xe3\xef\xbf\xfe\xd8\x59\xed\x69\x98\xf7\xa7\x3f\x76\x79\xe3\x67\x17\x36\x90\x77\x11\xb2\xb1\x99\x28\xb2\xa6\x20\xe4\x09\x3b\x51\xaa\xc6\x39\x4d\x46\x14\x08\xb7\xa2\x68\x10\xac\x16\x95\x59\xa1\xd6\xae\x47\x77\x11\x3c\x13\xb6\x34\x7a\xad\x2c\xc2\x39\xbc\xb2\xc9\x2e\xcd\x12\xed\x16\xb1\x82\x8b\xe9\x05\x13\xff\xe9\xf4\xa2\x0b\xe6\xe5\x1d\x75\x71\x1c\x95\x8c\x2c\x0d\xdc\x71\x87\xb2\x45\x5c\x1a\xb8\x98\xfe\xc7\x77\xd4\xb4\x4a\xd9\xb6\x0b\xd0\xf5\xdf\x06\x04\xb8\xc7\xff\x83\xbb\xe9\xbe\xa8\x88\xa2\xd8\x41\x8d\x3a\xc3\xca\x92\x59\x5b\x63\x92\xe9\x76\x7b\x43\x16\x75\x69\x88\x28\x4b\x61\xa4\x81\x5a\xc9\xca\x76\xa2\x4a\x6a\x64\x54\x21\x73\x5a\xe8\xa5\x20\xd2\x9a\x52\x68\x1b\x37\x6e\x0d\x6c\x37\x14\x6d\x67\x22\x67\x7d\xae\x56\x2b\xe2\x9c\xeb\x5f\x2e\xe5\xdd\x77\xdf\x5e\xf7\x19\x47\x58\x10\x85\x46\x91\xef\x82\x6e\x70\xca\x27\x1d\x9f\xf9\x27\x13\x86\xa8\x9b\x09\xfa\x21\xad\xe9\x02\xa2\xb0\xd9\x7b\x03\x42\x23\x90\x33\xa9\xb1\xd8\x41\x8e\x34\x23\x59\x49\x63\x7d\x96\x7f\x4d\x21\x5e\xd2\xba\xca\xa3\x52\xea\x0a\x49\x4d\x1c\xf0\x9f\x01\x05\xb5\x82\x5a\x63\x26\x4d\xb4\xf6\x43\x2c\x9b\x35\x76\x0e\x6e\xa6\x5d\x76\xfc\x9f\x60\xaa\x3a\x3b\x5e\xa9\x67\xe3\x64\x88\x26\x47\x43\x89\x5d\xc8\x18\xf9\x35\x9f\xec\x09\x9c\xc6\xc2\xcd\x61\x23\xeb\xc8\x76\xf4\xe1\x7a\x2b\x8a\x02\xed\x75\xd8\x13\x26\x65\x3b\x01\x17\xe4\xda\x0d\xc1\xc5\xc2\xe0\xfe\x3a\xb0\x53\xb4\xad\x50\x43\x29\xd7\x1b\x0b\x5b\x51\x59\xd6\xd9\x35\x66\x72\xb5\x3b\x3c\xeb\x7b\xf7\x45\x5b\xcf\xe3\x81\xf2\x3c\x49\xa9\x39\x19\x1a\xa4\x6f\x3b\x6b\x3d\xe4\xc0\x66\x8d\x85\x3f\x2e\x58\x20\xbf\xfe\x9a\x7f\x7d\xbf\x60\xb1\x9c\xc3\xc9\xf3\xc6\x7a\xf9\x69\x25\x58\x56\xf4\x4a\xe6\xa0\x45\xb5\x46\x90\x53\x84\xf7\x17\x93\xa7\xbf\x9e\x1c\x30\xb0\x10\xfc\xa6\xa8\xa5\x17\x51\x47\x0c\xe4\x3f\x1b\x0b\x0b\xc2\x62\xff\xd3\xf1\xfd\xc9\x07\x64\x4b\x82\xc9\x74\x85\x1d\xb1\xc3\xcf\xa9\xb1\x26\xce\xfb\x47\x83\x7a\xe7\x6c\xca\xf5\xdb\x60\x90\xaf\x83\xe1\xe5\x42\x99\xd7\x97\x57\x89\xf7\x4c\x4c\xc5\x22\x76\x57\x63\x66\x9d\x9e\xac\xc5\xae\xb5\xe6\x5e\x2b\xb8\x84\x18\x45\x48\xcc\x3e\xc1\x59\x1f\x69\xeb\x09\x4e\x3f\x7d\xa3\xb5\xd8\x79\x4e\xd5\x22\xbb\x71\x7a\x42\x56\xb9\xbc\x95\x79\x23\x8a\x16\x83\x3e\xa3\x12\x75\xa3\x7c\xbe\xaa\x56\xca\xcc\xe1\xbd\x27\xd0\xaf\xf7\x6c\x18\x79\x7f\x79\xa0\x53\x9f\xf3\xc8\x87\x22\x9e\x71\xc6\x45\x58\x30\x0d\xa7\x01\x45\x51\x30\xc7\xb5\x4a\x3d\xba\x00\x64\x95\x97\x08\x6b\xf6\x04\xfc\xce\xce\xd3\xe9\x45\x07\xec\xad\x20\x2f\xdb\x8a\xe2\x39\x73\xcd\x45\xef\x33\x2d\x78\x30\x09\xb2\x8a\x78\x0e\xc8\x40\x02\x24\x3e\xfe\xff\xd0\x77\xda\xe7\xc6\x2e\x6f\x0b\x63\x50\xdb\xd3\xd8\xcf\x49\xcf\x04\x4a\x34\x46\xac\x71\x0e\x27\xef\xdc\x64\xe3\xf8\xe3\x67\x7b\x72\xd6\x27\xe3\x33\x63\xe4\xda\xe9\xb1\x00\x6f\x50\x88\xdc\x48\x8b\xfd\x46\xbd\x44\xed\x5b\xe7\xf4\xa6\xf0\x38\xeb\x37\x98\x29\xed\xed\xa8\x0b\xe6\xb8\x24\x83\xef\x6a\x3b\x30\xe1\x75\xc7\xb4\xc7\xf3\xae\x31\x9d\x1f\x3d\x36\x89\xe6\xf4\x2c\x61\xa9\x7b\x36\x23\x07\xe6\x08\xf7\x45\x64\xad\x08\x7d\xa1\x78\xec\x6d\x8f\x3e\xc7\xa2\xb1\x96\x22\x0f\x89\xc5\x62\xaf\xc7\x46\x62\x11\xc0\xc8\x38\x2c\x55\x4d\x7d\x09\xfb\x2c\xb5\x08\xce\x06\xbb\x4d\x46\xd6\x22\xd1\x28\xb1\x0f\xcb\xf2\xce\x96\x85\x98\xb1\xab\xee\x62\xa2\x84\xcb\xe2\x5a\x10\xec\xc2\xe3\x2d\x56\xb6\x61\xf7\x2f\x85\x25\xa2\x37\x6e\xb6\xd2\x66\x9b\xa5\xa2\xd0\x2e\xd8\xae\x49\x84\xbb\x71\x8c\x10\xea\xd6\x96\x8d\x07\xcb\xfb\x96\x1d\xe4\x22\x81\xe8\x57\xa5\x7a\x35\x72\xfd\x2d\xb2\x36\x56\x89\xb1\x5a\x40\x88\xc2\xc3\xd4\x86\x0e\x31\xcf\xbe\x4c\x0d\x46\x41\xf3\x74\x9c\x8f\xfd\x75\x98\xd5\xfc\x71\xe6\x63\xc9\xcb\xab\xb7\xe9\xb0\x47\xd2\xb9\xbe\x84\xcc\x6d\xe4\x26\xc5\x90\x3e\x9f\xf5\xfa\xf2\x6a\xba\xb7\x38\x21\x1a\xe1\x50\x53\x0b\xe9\x7c\xcb\xc4\x8c\xdd\xe0\x6e\xe6\x7c\x92\x5a\x48\x6d\x40\x14\xaa\x5a\xbb\x98\xd3\xa8\xb2\x95\x3b\x4e\xfb\xde\xd1\xb2\xf2\x56\x06\x8f\x2b\x96\xaa\x71\x4c\xc4\xa0\x8f\xd9\xda\x2b\x6a\x94\xd0\x64\xa0\x3a\x91\xe1\x4c\xe1\x27\x79\x83\xf0\xa3\xc8\x6e\xd6\x5a\x35\x55\x3e\x81\x97\x3b\x34\x13\xf8\x8b\x90\xba\x57\x3a\x36\xb6\x7c\x90\x47\x6a\xaa\x1c\x75\xc1\xbe\xae\x9b\x72\x3a\xea\x24\x28\x1e\x1b\x5e\x33\xa1\x8d\x2b\xdf\xe3\x26\x50\x6b\x75\x2b\x73\x0c\xc4\x08\xda\x8a\x81\x1d\xc6\x89\x3f\xcf\xe1\x59\xb5\x73\x25\xb4\x1d\xbc\x7c\xad\x1c\x69\x88\x74\xbd\xcc\x46\x6d\x79\x01\xe2\x58\x8e\xd8\x5b\xe7\x3a\x4b\xe3\xc8\x46\xee\x91\x9b\x4a\x64\x94\x14\x38\xf1\xb9\xac\x8c\x15\x55\x86\x13\xd8\xa9\x06\x32\x16\x71\x13\xb0\xa2\xa1\x04\x34\x95\xbc\x03\x2b\x4b\x34\x56\x94\xb5\x0b\xe3\xbd\x1b\xde\xc1\x4f\x18\x38\x79\x21\x2c\x9e\xf0\xc4\xb1\x28\xd2\xb1\xea\x42\xd8\x95\xa2\x78\x8e\x82\x5f\x55\x99\xa6\xf4\x15\x21\x8e\x76\x5c\xab\xcb\x2e\x4b\xc8\x12\x08\xbf\x07\x76\xd8\xd3\x6f\xc7\x1e\x28\x0a\x20\x73\x2b\x34\x05\x86\xe4\x59\x8a\xc2\xa8\xa8\x1d\x5c\x26\xb6\xd8\x79\xc9\x10\xd6\x6a\xb9\x6c\x6c\x67\x67\xbe\xcb\x1c\x4e\x5a\xa2\x49\x09\x91\x1f\xa3\x59\x14\x2d\x04\xc3\x95\x13\x7e\x8a\xfe\x5d\x60\x83\xd7\x97\x57\xbf\x37\xa0\x19\xa7\xc3\xdc\xe0\xbe\xcf\x3d\xee\x83\x45\x0e\x9d\x0a\xc6\x3d\xf6\x99\x0c\xd2\x65\xd2\x07\xfc\xf0\x8a\x45\xc7\x11\x0b\x37\xe0\x40\xc0\x90\x70\xc2\x22\xc5\x61\x20\x36\x71\xeb\xb2\xf0\x38\x8d\x8c\x28\x58\xdd\xb1\x9a\x0c\x9e\x4f\xd0\x58\xc7\xf5\x9b\xef\xe8\x3b\xf0\x6e\xe5\x08\x15\x17\xc1\xa5\x92\x36\xa0\xe2\x50\x64\x1b\xaf\x9b\xee\x55\x6e\xe6\x9e\x44\xb9\x43\x6d\x0e\xef\xb9\xe5\x81\x2d\xdc\x5e\xa3\xc1\x35\xf4\x73\x5c\xf8\xc6\x03\x46\x9f\xfe\xba\xc1\x4c\x9e\x9b\xd6\x80\x38\x3d\xec\x99\xd6\xe3\x4d\x48\x74\xba\x74\xbd\x54\xe7\xb6\x71\xdb\x39\xab\x52\x27\xd3\x7e\xee\x96\x25\x4f\xe4\x39\xe6\x47\x5d\x53\xb2\xa0\x22\xcf\x19\x14\x4d\x78\xee\xa0\xde\x33\xd3\x29\xb1\x48\x95\x9f\xda\x7b\xea\x3b\xba\x1e\x69\x32\xa7\x2f\xe5\x93\x7a\x14\xc6\x39\xa4\xae\xf1\x83\xbc\x51\xd7\xe5\xb1\xae\xa8\xeb\x3d\xd2\x0f\xdd\xe3\xec\xf0\xf7\x19\x9c\x50\xbf\x6e\xb1\xc6\xca\x2a\x40\x61\x64\xc1\x71\xd0\x2d\x6a\xcb\xb5\x68\xfc\x4d\xe8\x1d\xaf\x84\xe3\x09\xb8\x54\x9a\xd3\xfa\x89\x83\x12\x36\xb6\x8c\xdf\x5c\x50\xac\xbe\x59\x5f\xa3\xe4\x82\xc6\x50\x10\x1f\x56\x89\xb5\x82\xb7\xf0\x57\xce\x09\x88\xf0\xd8\x74\x95\x68\x37\x2a\x96\xc5\x9b\x66\xb5\x92\x8e\x21\xd6\xf2\x96\x7d\xd4\x92\xed\x0b\x47\x6e\x6a\xe5\x33\x39\x1e\xc5\x43\x8c\x46\xf3\x71\x42\xd4\x9d\xd9\x12\xc3\xa4\x9d\x4a\xbb\x6a\xc5\x3b\xe9\x8d\x77\x7c\xe4\x24\x7f\x2d\x4a\x34\xf3\x4e\x25\xb6\x2f\xda\x72\xd8\x78\xfb\x1d\xf2\x7a\xd7\x34\xd6\x75\x04\x16\xfe\x6e\x70\xe7\xa9\x25\xb4\xb3\x76\x5b\x51\xf9\xf1\x97\x98\x91\x56\xbc\x76\x78\x5c\x0f\xfa\xd4\xec\x40\x0b\xea\xd0\xd7\x23\x87\xd8\x9d\xf0\xb8\x52\x9e\xe3\x1d\x29\x3e\x3a\xc4\x13\x13\xf7\x69\xd2\x9f\xe7\x7b\xd7\xe6\xd7\x1f\xce\xe6\xfb\x0c\x39\x9b\xc1\xf3\xb8\xfa\x2e\xa9\x68\x7c\x56\x31\x4c\x29\x9a\x14\xef\xd4\xb9\x4d\x03\xa9\x5b\x27\xda\x9f\xe5\xc9\xa7\x3d\xaf\x71\xd7\xcb\x4f\x6e\x44\x95\x17\xe8\x2c\x06\x13\x99\x02\x1d\x4e\x78\xda\xb6\xf1\xdf\x1b\x93\x8c\xcd\x7c\x12\xe0\x73\xa1\x73\x51\x4c\x53\xc1\xed\x4c\x16\xbe\x5a\x90\xa8\xf4\x04\x8e\x5c\xb9\x1b\x42\xbb\xd3\xf6\xab\x01\xb1\x24\xa2\x4e\x35\x96\xea\x16\x4f\x6f\x70\x37\x87\x9b\x7e\x55\x5d\xfb\x14\x1f\x07\x2c\x14\x2c\xe0\xfd\xaf\x4f\xf6\xc6\x67\xf0\xcc\x37\xdd\xa1\x23\x04\x58\xb8\x15\xf2\x6e\xcc\x4d\xf4\x60\xa8\xe7\xfb\x9b\x5f\xbf\xea\x39\x30\x95\x2c\x5a\xe7\xa5\x92\x45\x17\xdb\x9e\x0d\x60\x5b\x31\x34\x81\xc0\x94\x8e\xb1\x5c\xaf\xb3\xbe\xba\x89\x79\xf1\x98\xc1\xdc\xd3\x1a\xd2\x98\x06\xdb\xc4\xa6\x3f\x98\x15\x21\x70\x60\xe4\x36\x53\x4a\x3e\xea\x66\x64\x29\x0b\xa1\x93\x93\x69\x04\x16\xef\x44\x49\xdd\x45\x05\xff\x4b\x8a\xe1\xe9\xc5\x05\x39\xdd\x6e\xa3\x2b\x02\x93\x15\x39\xcc\x6e\xcb\xce\xf9\x32\xab\xc6\x9d\x0f\x73\x39\x75\xb7\x5f\x90\xee\x78\xb6\x0e\xd0\x33\x57\x3d\xe0\xd8\x6d\x49\xae\x8d\xe6\xc0\x25\x62\x8e\xb9\xe4\x69\x4d\x60\xbb\x91\x19\xd7\x16\x6f\x37\x5c\x01\x1e\x3e\x1d\xc2\xc3\x91\x92\x38\xd5\x38\xed\xe6\xab\xd8\xc0\x55\xb1\xb1\x7e\x39\x16\xeb\xbd\x74\x43\x1c\x3b\x8d\x96\x62\x12\xda\x5c\xb6\xf4\x9b\x38\x2d\x9c\x85\xbc\xc4\x3b\xb4\x13\x78\x53\x88\xdd\x04\xde\xa1\x96\x68\xba\xfb\x14\xbe\xb2\xce\x9d\x74\xd8\x8a\x5d\x52\x58\xe1\x40\x64\x85\x30\x86\xa2\x1a\xd2\x1f\x81\x40\xa3\x62\xc9\x1f\xf6\xe7\xe1\xfb\x27\x85\x7c\x07\x0e\x5b\xf1\x8c\x44\x05\x27\xdf\x7c\x1b\x78\xe1\xf4\x77\xdf\x7c\x3b\x7b\x7a\x71\x71\x76\xc2\x15\x29\x2e\xf6\xf4\x80\xa4\x81\x6f\xbe\xbd\x27\xc2\xe5\x56\x73\xf8\xe5\x55\x65\xfb\xfb\x3e\x84\x56\x29\xee\x06\x51\xa3\x40\xcc\x6f\x2f\x7b\xa6\x9e\xf6\xfa\xf6\x4f\x81\x85\x84\x8b\x8f\x7a\x5d\xd2\xa5\x90\xa5\xb4\x98\x9f\xfb\x21\x30\x1f\x86\x36\x62\xca\x84\xa8\x34\xf4\x6d\xb0\x2b\x57\xea\xb0\xb8\x35\x95\x1f\x34\xcc\xcb\xf5\x6d\xd3\x55\x14\xce\x5a\x45\xba\x63\xdc\x99\xb2\x52\xdc\x05\xfa\x1d\x8d\xbf\x7e\x98\xf4\x28\x3e\xe9\x74\x1f\x70\xa0\x08\xb7\x41\x15\x0e\x6d\x7a\xdb\x2f\xcc\xf7\x0b\x6a\xfd\x55\x9a\xdd\xbe\x6a\x19\x21\x13\xd5\x50\x22\xdb\xfa\x45\x76\xad\xbe\x3a\x39\xa4\xdd\x61\x54\xd0\xe7\xc7\x5a\xf4\x63\xf1\xd8\x80\x86\x62\x34\x47\x46\x71\x9d\x7d\xa1\xa0\x06\x46\xd5\xd1\xfa\xc6\xff\x42\x25\xed\x9e\x48\x77\x76\x1b\x3b\xfa\x52\x04\x8d\x79\x90\x4b\x48\x2b\xfe\x24\x8d\x9d\xc3\x7b\x8f\xd9\xa1\xba\xdb\xfd\x86\xc3\xc5\xb7\xbe\x1d\x2c\x62\x97\xb1\x11\x4d\x24\xcd\x97\x3a\xe5\x17\x11\x18\x59\xf0\xe4\x9b\x3f\xac\xda\xc9\x77\x7a\x74\xa9\x93\xef\x3f\xb6\xce\xa9\x65\xb7\xbe\x94\x7e\xae\x22\xa7\x98\x94\x63\xbf\x3c\x18\xa3\x73\x57\xf6\x94\x83\x41\x2d\x45\x11\xf8\xd7\xe5\xc8\xc3\xfe\x25\x71\x6b\x04\xf6\xc6\x75\x34\xb0\x11\xb7\x98\x1c\x8b\x67\x40\x7e\x16\xec\x36\xb0\x27\xdf\x83\x1b\xf5\x64\x04\xf7\x8e\x7c\xd7\x52\xec\x62\x69\x0e\xef\xb9\x6a\x5c\x37\xe4\xc9\xbc\x7a\xe1\x12\x80\x69\xa3\xe4\x2c\x7e\x1b\x70\x39\x63\x1a\x0e\x81\xb9\x73\x3e\x53\x77\x1a\xa5\x83\x80\x34\x9d\xed\xdb\x25\x42\x53\xc9\x7f\x34\x5c\x14\xe3\x0f\x0c\xb2\xf5\x66\xb3\xcd\xa8\x90\xda\x67\x0f\x5d\xd8\x40\xb4\x63\xca\xe3\x9d\x1b\xf2\x70\xfe\xe5\x90\xdd\x4c\x25\xb9\xdb\x66\x38\x83\x76\x40\x5f\x1e\x11\x60\x8f\xde\x97\x12\x5f\x3f\xfc\x38\xe1\x75\x8d\x1f\x24\xba\xae\xcb\x63\x05\xd7\xf5\x1e\x29\xb6\x7b\x0b\xfd\xb9\x85\xb6\x2d\x1d\xf6\x69\xcc\xd4\x3d\xf6\x42\xea\x12\x69\x49\x76\x93\x7a\x73\x81\x96\x0b\xa6\x43\xd7\x0a\x31\x37\x2e\x6a\xbc\xc5\x90\x85\x30\x99\xd2\x1c\x3b\xa4\x25\x18\xcb\xc6\x82\x74\x27\xe8\x23\x40\xee\xb4\x54\x6d\x9e\xf2\x10\xf3\xfb\x3c\xf8\xc7\x3d\x67\xd0\x0f\xe5\x2b\x0a\x5d\x2b\x4e\xc4\x1f\xc9\xbc\x73\xbf\x50\x0d\x33\xe0\xfb\x96\xe2\x4e\x96\x4d\xd9\x6e\xa3\x70\x87\x23\x0e\xd7\x21\x60\x03\xd7\x39\xa4\xa8\xba\xa3\x6d\x47\x4e\x37\xc6\x10\xe1\x27\x5c\x63\x95\x0b\xbd\x9b\xc0\xcb\x5a\x66\x13\xa2\x0d\x4e\xe0\x97\x2a\x53\x65\x49\xae\xe3\x73\xfe\xbf\x1b\x2b\xf8\xd3\x73\xdd\xc4\xf7\x88\xba\xa3\x41\xef\xb1\x4b\xbb\x49\x67\xf2\x83\x85\x45\x43\x4e\xa4\x5b\xb8\x85\x73\x23\xbf\xfe\xba\x43\xa3\xc5\x21\xe7\xb2\x16\x95\xcc\x4e\x4f\x9e\x05\x7e\x88\xdc\x67\xc2\x92\x76\xef\x27\x51\x9a\xb9\x6b\xcf\x83\xdc\xd7\x7a\x1e\x9d\xde\x32\xc3\x61\x1f\x11\xfe\x85\x32\xa3\x5e\x79\x81\x9b\xcb\x97\x4c\xe6\x7a\x14\x46\x56\x17\x70\xe3\x87\x95\x16\xb8\x1d\x9b\xc7\xd6\x15\x70\xef\xb1\x45\x05\x7d\x4d\x11\xfe\x3e\x83\xf6\x7c\x7d\x79\xc5\x0a\x74\xab\x45\x6d\x38\xe1\xf6\x9c\x2f\x48\xe1\x2b\x75\xdc\xa6\xcb\xb5\xcc\x5d\xa1\xe0\x75\xd3\xd0\xa3\xcb\xc6\xb9\x1d\xc7\xb0\x9b\x13\xe1\x85\x34\xab\xe0\xda\xf0\x02\x2d\x42\x2d\x33\xae\xf2\x8d\x87\x8f\xfc\xfd\x39\xec\x35\x0c\x5f\x9e\x13\xc1\x8d\xba\x45\x27\xcc\xe1\xb0\x1f\x21\xf3\xe8\x43\x1c\x6a\x42\x73\x3b\xda\xc8\xe7\xc0\xe6\xdd\xab\x87\xa6\xe1\xb2\x8b\x83\xfd\xb0\x2d\xcf\xef\xf7\x4d\x8f\x0b\x1c\xec\xdf\x66\xbc\x5e\x08\x2b\xe6\x34\xe3\xe7\x9d\x57\xa3\xba\x06\xe4\xbb\xbd\x8f\xe1\x1e\x2b\x36\xd2\x72\x9a\x83\xad\x43\x3e\xd2\xef\x75\x1c\xbd\xf8\x45\xe6\x10\x83\xf4\xce\x07\x5a\x8f\x03\x9f\xfc\x2a\xc0\xa1\x65\xe8\xb6\x4e\x68\xbf\xd7\x23\x25\x7e\xb7\x57\x97\xe2\x30\x44\xf2\x83\x1d\x22\x7a\x83\x84\xee\x76\x6b\xeb\x61\x52\xf2\xf6\x6e\xb8\xe9\xd1\x34\xbc\x1f\x0e\x58\x73\x3e\x2b\xb7\xff\x81\x09\xba\x60\xba\x0e\x68\x7c\x8f\x73\xdc\x23\xde\x6f\x92\xd2\x71\x91\x52\x75\xbf\x69\x8f\x78\x8b\x1e\x35\xef\xed\x10\x11\xd9\x7b\xb7\xdf\xad\x25\xde\x62\xa0\xb4\x13\xc6\x6d\xbe\x1e\x34\x62\xfe\xac\x17\x33\xee\x21\x9b\x45\x3a\xe3\xca\xa7\x29\x64\xfe\x9b\x58\xb4\xa0\xdd\xc6\x59\x32\xdf\xfa\xb4\x55\x66\x93\x07\x18\xb5\x7d\x4d\xca\x51\xd8\xca\xfe\x75\x8c\x51\xf3\xbd\xc9\xaa\xa5\x46\x31\x74\x1f\xcc\xaf\x05\xcb\xe4\xda\x7c\x05\xc2\x7c\x15\xb0\x48\xd6\xa9\x6f\xc8\xc2\x2c\xf7\x55\x89\xcc\xf7\xd5\xc8\xbc\x8b\x37\xbd\x1a\x54\x28\x7d\xed\x90\x5c\x7d\x94\x02\x38\x1b\xaf\x5f\x7a\xc7\xc8\xee\x81\xb2\xa7\x6f\x98\x73\xdd\x82\x76\xf5\xce\x48\x28\x51\x09\x0d\x03\x3a\x3e\xaf\x54\x33\x05\x18\x6d\x15\xe6\x3d\x1d\xbd\xb8\xb5\xbd\xfc\xfe\x4e\xa7\x4b\xab\xc4\x8e\xc4\x73\xae\x82\xbb\x0d\xe6\xfc\x25\x28\x7c\x95\x8e\xbf\xd6\xd0\x6a\x89\xb7\x38\x5c\x6e\x72\xdf\xa1\x50\xe7\x64\x37\x35\x88\xde\x59\x4d\x97\xc2\xae\xb5\x22\x6d\x10\xe1\xd1\x90\x62\xed\x06\x75\x25\x81\xed\x11\xa5\x31\x47\xd4\xf6\x56\xb2\x17\xfb\xb9\xdb\x64\xaa\x38\xce\x96\xef\x81\x60\x7f\xc8\x9f\xd8\xd6\xe1\xc4\x58\x4c\xca\xb8\x1b\x85\x0e\x6f\x3c\x78\x58\x6f\xfc\xa5\x2b\xf1\x47\xef\x1e\x1b\x37\x1b\x2e\x09\x75\x1b\x4f\x65\x63\x38\xe3\x5a\xc8\xea\xc6\x0d\xe6\x97\x63\x60\xe2\x71\xab\x22\x64\xbf\x20\x6e\x51\x65\x45\xc3\x47\xd8\xe3\xa1\x40\x9e\x48\x38\xed\xe7\xb7\xca\xbc\xc4\x38\x97\xb3\xfd\x78\x70\x4e\x75\xac\xd5\x4c\xeb\x36\xf7\x43\xd4\xc1\x13\x7a\xc9\x22\x87\xfb\xac\xdc\xcc\xf2\xa0\x93\x1d\xf8\x0e\xb4\x4a\xf9\xb3\x8f\x58\x59\x69\xc3\x85\x9f\x78\x27\x8d\x9d\x80\xb4\x50\x29\x20\x4f\x19\x75\x1b\xbd\x2d\x5d\x59\xa2\x96\x21\x83\x96\x64\x09\xe3\x1c\x8f\x4c\xb1\xe5\x96\x39\x70\xcd\x56\x77\x8a\x34\xab\x5e\x0d\xb0\x5f\x2e\x9f\x3b\x17\x2b\xa5\x19\x57\xb7\xe7\x53\xb7\xab\x7c\x64\xe0\x9f\x18\x8c\xdb\xe9\xdd\x1f\xf8\x32\x16\x7e\xb8\xa3\x59\x85\xda\x1a\x77\x5c\xd1\x27\x03\x44\x05\x58\xd6\x76\xd7\x97\xaa\x40\x70\x9a\x7f\xe0\x61\x66\xe0\x0e\xf8\xc0\x4a\xf7\x1c\xa1\xe2\x9d\x95\x97\x34\x44\x4a\xa2\x55\x53\x9d\x9e\xcd\xe1\x4f\x1f\xfb\x37\xbc\x4e\xdb\x56\xc7\x6f\x22\x3c\x24\x31\x5d\x1d\x37\xcc\x83\x43\x6d\xfa\x8b\x38\xd4\xa6\x4f\xef\x9e\x52\x1f\x9a\x6e\x58\x84\xb1\xd3\x8e\xea\x76\xd4\x81\xa8\x3e\x5a\x53\x69\xde\xb9\x9b\x6a\x4e\xd5\xca\xe1\xf8\xfd\xd7\xf7\x0e\x48\x4e\xc0\x1c\x4e\xbc\x66\x61\x09\x0c\x3a\x45\x40\xb8\xf5\x46\xad\xf6\x2e\xe9\x4d\x60\xb4\x72\x32\x3d\x7a\xb0\x2a\x59\xb5\x45\xf2\xbc\xdf\xb0\x5d\xb8\x45\xfb\x78\xa8\x59\x8b\xcb\xa2\xff\xe2\x50\x97\x96\x66\x8b\xfe\x8b\x01\xb7\x77\x68\x65\x17\xf7\xae\xf7\x58\xe7\x75\xdf\xd8\x70\x1e\x66\x1b\xce\x47\x71\x75\x7e\xa8\xdc\xac\x78\x81\xf2\x58\x6a\xf1\xef\xc9\xd0\xec\xa3\x38\xda\xc5\xed\x79\x44\x0f\xc9\xdb\xec\xc7\x71\x8f\x4c\xe1\xec\x01\x1a\x99\xcd\xb9\xcf\x0d\x08\x7f\x9f\x3f\x2d\x7e\xc0\x8d\xf2\x55\xeb\x7c\x72\x36\x28\xde\xdf\x27\x97\x55\xb6\xd7\x57\x8c\x72\xa7\x5c\xea\xa7\x82\x70\x81\x05\x1b\xf8\x08\x8d\x6f\xd8\x95\x99\x09\xb6\x78\xcf\x3c\x78\x4f\x67\x89\x64\x4d\x09\xe0\x03\x7d\xaa\xbd\x6b\x40\x67\x33\x78\x2d\xca\x3d\x33\xc9\xe8\x6f\x37\x58\x05\xcf\xdf\x55\xdc\xf9\xe1\xfb\x77\x76\xf4\x87\xbe\xf7\xc8\xc2\x8b\x24\x75\x3a\x34\xea\x10\x91\x82\xff\x34\x66\xe0\x23\x17\x0c\xc7\x8b\x20\xdc\x95\x01\xec\x77\xf8\xab\x54\x78\x28\x3e\x60\x9f\xf2\x41\x38\x0e\x32\x72\xf8\x71\x89\xac\x0e\x46\xef\xfe\xd1\x08\x8d\xbe\x06\xc0\xdd\x23\xd9\x39\x23\x33\x7a\x6c\xc3\x80\x5e\x95\x5c\x73\xd1\x1d\x9b\x2f\x69\xea\x8c\xfa\xa3\xa8\x2a\xd4\x9d\x51\xe3\xcd\x08\xed\x60\x93\xbe\x4b\xcd\xbb\x37\x82\x8b\xa6\xa0\x42\xa1\xe1\xe9\x37\x17\x17\x77\xdf\xfd\xe1\xe2\x30\x5a\x4b\x1e\x69\x24\x5a\xef\x54\x26\xfd\xe2\x18\x47\x06\xae\x52\xef\x62\xf5\x7b\x03\xc6\xb5\xdb\xa8\x12\x6b\xb1\xc6\x4e\xa1\x0e\xbc\x51\xfe\xfa\x55\xae\xe8\x2b\x05\x17\xfc\x9c\xf0\x99\x91\xb5\x16\xe5\xc9\x04\x4e\xec\x56\x5a\x8b\x9a\x1e\x73\x69\x32\xa5\xf3\x93\x23\x87\x70\xdc\x88\x26\xa9\xec\x3c\xb8\xbc\xbf\xe9\x75\xce\xe3\x38\xac\xdb\xe7\x18\x67\x74\x5b\x1f\x5b\xb0\x1e\xec\x87\xd0\x25\x74\xfa\x4d\x6f\x9e\x7e\x40\x22\x2e\x21\x0c\x2c\x52\x32\xed\x37\x4d\xa8\x02\x8b\x94\x46\x03\x50\x1d\x49\x08\xa2\x7b\x7a\x9c\x53\x92\xde\x81\x3d\xec\x97\x78\xb7\x24\x42\xfb\x82\xfe\xc9\xa3\x7c\x93\x47\xdc\x9b\x3d\x98\x32\xfe\x2c\x1e\xca\x83\x6e\xd4\x3e\x62\x57\xc3\xdf\xe3\xfd\x94\x4f\x4f\xfe\x2f\x00\x00\xff\xff\x89\xc0\x73\x3f\xd0\x63\x00\x00" +var _metadataviewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x7c\x7f\x73\xdb\xb8\xd1\xf0\xff\xf9\x14\x7b\xee\xcc\xd5\x7e\x5f\x59\x72\xae\xd7\x9b\xf7\xd5\x9c\x7a\xcd\x25\x71\x9b\x67\xee\xf2\x64\x12\x5f\xfb\xcc\x64\x6e\x62\x88\x5c\x49\xa8\x49\x82\x05\x40\xcb\x6a\x26\xdf\xfd\x99\x5d\xfc\x20\x48\x51\x16\xed\xe6\x1a\xff\x91\x50\x24\xb0\x58\x2c\xf6\x37\x16\x90\x65\xad\xb4\x85\x93\xcb\xa6\x5a\xcb\x65\x81\x57\xea\x06\xab\x93\x27\xe1\xf5\x6b\x55\x1d\xf8\xf2\x37\x89\xdb\xb7\x68\x54\x71\x8b\xfa\xe4\xc9\x93\xd9\x6c\x06\x57\x1b\x69\x20\x53\x95\xd5\x22\xb3\x20\xcb\xba\xc0\x12\x2b\x6b\xc0\x6e\x10\x4a\xb4\x22\x17\x56\x80\xb1\xa2\xca\x85\xce\xa1\xd6\xaa\x56\x06\x73\xee\x2b\x2b\xb8\xfc\xe9\xd5\x9b\xf3\x8b\xef\xfe\xf0\xdd\x94\xde\xf0\xdb\xb7\xb8\x9a\xc3\xc6\xda\xda\xcc\x67\xb3\xb5\xb4\x9b\x66\x39\xcd\x54\x39\x53\xd5\xaa\x50\xdb\xd9\xaa\x90\xb5\x99\x2d\x0b\xb5\x9c\x95\x42\x56\x33\x51\xd7\x85\xcc\x84\x95\xaa\x9a\x7d\x73\xf1\xcd\xd3\x8b\xff\xff\xf4\xbb\xf3\x6a\x65\xcf\xc3\xe0\xd3\x32\x8f\xb0\xdf\x59\xdd\x64\xd6\x80\xa8\x72\xd0\x68\x54\xa3\x33\x34\x90\x89\xaa\xc5\x1c\x54\x85\xa0\x34\x94\x4a\x23\xf7\x89\x93\xb0\xbb\x1a\xcd\x04\x32\x51\x14\x98\xc3\xad\xc4\xad\x99\xc2\x4b\x91\x6d\xf8\x99\x3f\x83\xc6\x5a\xa3\x21\x02\x70\x5f\x01\xb9\x5c\xad\x50\x13\xdc\x1b\x59\xe5\xa0\x56\x11\xde\x04\x4c\x93\x6d\x40\x18\x10\x90\x69\x14\x56\x69\x58\x4a\xb5\xd6\xa2\xde\xec\xb8\xb7\xd2\x20\xe0\xbf\xde\xbc\xfc\x0b\xc8\x52\xac\x11\x56\xb2\x40\x47\x27\x91\x65\x68\xcc\xa9\x28\x8a\xb3\x96\xf8\x3f\x7b\xc0\xb4\x4a\x06\x3e\x3e\x79\x02\x00\x40\x70\x5e\x48\x53\x17\x62\x07\x92\x86\x5a\x0a\x23\x33\x8f\xf1\x46\x58\x90\x55\x56\x34\x39\xba\x05\xab\x44\x89\x13\xc8\xd1\x64\x5a\xd6\x44\x52\xa2\x54\x84\x63\x37\x4d\xb9\xac\x84\x2c\x60\x45\xa8\x55\xa0\x96\xff\xc0\xcc\x4e\xe1\x67\x65\xac\xff\x61\xc0\x6c\x54\x53\xe4\x09\x41\x2d\xb1\x08\x0d\x38\x0d\x90\xf8\xff\x74\x0e\x86\xd7\x25\x22\xea\x71\x0f\xe3\x5e\x79\xcc\x88\x7a\x84\xa5\x1f\x36\x6d\xd3\x6b\x2f\x0d\xac\x24\x16\x39\x6c\x65\x51\xc0\x12\x21\x77\x90\x31\x27\xa6\x2b\xa4\xf1\x3c\x60\x37\xa8\x71\xa5\x34\x7a\xac\x3b\x60\x96\xfc\x56\x5b\x9a\x69\xa6\xaa\x4c\x1a\x1c\x1e\x33\x9d\x49\x81\x96\x71\x9d\x13\xaf\xc9\x6a\xdd\x9d\xc9\x33\xd8\x6a\x69\x2d\x56\x1d\x1a\x7f\xa6\x69\x09\xc8\xd1\x0a\x19\x98\xb3\x0b\x76\xd2\x01\x65\x14\x33\xfd\x12\x99\xcd\xe1\x16\xf5\x52\x19\x84\x53\x9c\xae\xa7\x20\xa0\x16\x5a\x30\x1f\x82\xac\x8c\x45\xc1\x7c\x2b\xc0\xc8\x6a\x5d\x20\x14\xb2\xc2\xb3\x71\x94\x48\x66\x79\x88\x20\xa6\x14\x45\x91\xb0\x56\x94\x20\xf1\x48\xda\x78\xfe\x5b\x22\x08\xd8\xe2\xf2\x7c\xa5\x25\x56\x79\xb1\x63\xf1\x81\x53\x39\x45\x96\xa9\x09\xbc\x79\xfd\x97\xb3\x0e\x10\x96\x07\x4f\x97\x7d\x86\x99\xd0\xc4\x6f\xa0\xd6\xc8\xa2\x3f\x01\xb4\xd9\x38\x2a\xc4\xc9\xcd\xe1\xe3\xa5\x2c\xf0\x53\x4b\x03\x5e\x28\x59\x49\x7b\x1a\x5f\xd1\x5f\xca\x41\x93\xce\x97\x01\x8a\x76\x1b\xec\x0f\x16\xbe\x9c\xc1\xc7\x4e\x4b\x83\xc5\x6a\xca\x72\xb5\xe0\x01\xf7\x3f\xa6\x4c\xba\x48\x87\xde\x6f\xda\x2e\xe0\xa2\x45\x21\x36\x73\x48\x7c\x6a\x55\xd2\x5f\xb1\xa8\x51\x83\x55\xb0\xc6\x56\xee\x99\x89\x59\xcd\x8a\x15\xc2\x56\xec\x3a\x0a\x83\xfa\xfd\x99\x58\xb3\x64\xb2\x05\x43\x34\x87\x67\xa0\x91\x95\x6c\x86\x04\x91\xf8\x45\xfb\x8f\x51\xcb\xb7\x10\x34\xda\x46\x57\xf0\xac\x02\xc5\x73\x11\x45\x1c\xdf\xa9\xa1\x83\x5a\x6a\xd5\x54\x84\xae\x6f\x7d\xfa\xa1\x87\xc6\xd7\x1f\x53\xfb\x38\x0d\x0f\x9f\xce\x60\x1e\x46\xf8\x21\x59\x02\xb9\x62\xe6\x60\x0e\x58\x74\x40\x4d\x3d\xf6\x04\xee\xf4\x6a\x57\xe3\xf7\xbe\xfb\x9f\x4e\xcf\xfa\x8b\x18\xa0\x78\x10\x20\xcc\x0f\x89\x1a\x85\xde\x9f\x9f\xfb\x6d\xe7\xc3\xa7\x27\xfb\x4f\xbe\x61\xe5\xd7\x30\x59\xb9\xbf\x60\x85\x5a\x66\x20\x2b\x8b\x7a\x25\x88\xe4\x24\x36\xad\xe1\x03\xe1\x24\xcd\x58\xa5\x31\x07\x92\x61\x0d\x6a\xb5\x82\x6c\x23\x64\x35\x05\x62\x4a\x13\xc1\x79\x71\x6b\x0c\xe6\xb4\x76\x71\x21\x8d\xb3\x79\x66\x02\xb7\x32\x47\xe5\xd4\xb5\x22\x7d\x0d\x25\xe6\x52\x1c\xb5\x25\x2d\x7e\x34\x60\x42\x8b\xb4\x2d\x93\x8c\x96\xb5\xd1\xf2\xf4\x2c\xaa\xa8\xde\x94\xff\xc6\xc6\x52\x01\xde\x91\xef\x12\xe6\xe7\xac\xa7\xf1\xf0\xc8\x5b\x02\xc1\xb6\xe2\xaf\x57\x57\x6f\xe0\x54\x69\x7e\x78\x77\x06\xbf\xbc\xfd\xe9\x28\xb6\xd4\x94\xf0\x9c\xdf\x87\x2d\x2d\x74\xa3\x8b\x7d\x4d\xda\x6a\x91\xe4\xf3\xa0\xb8\x37\x9a\x04\xb4\xd1\xa9\x68\x3e\x80\x32\x3d\x90\x9e\x4b\x02\xe4\xc3\xe2\x3e\x4c\xc1\x96\x43\x5e\xbd\xb9\x7c\x17\x69\xc4\xbf\xfc\xf2\x83\xd0\xd8\x32\x45\x0e\xcb\x1d\x89\xb7\xd4\xec\xf5\x90\x73\x21\x73\xac\xac\x5c\x49\xd4\x70\xfa\xfc\xd5\x8b\xb3\x08\x44\x0b\x66\x16\xbb\x11\x6c\x19\xa5\xc6\xcc\xc2\x2f\x6f\x5f\x4d\xe1\x19\x64\x85\xa4\xbe\x89\xeb\xc8\x7c\xd8\x18\x74\xce\xca\xf3\x57\x2f\x5a\xa7\x47\xc1\x8a\x3c\x37\xe2\xbf\x42\x09\xf6\x19\xbc\x3f\x76\x2b\x05\xad\x37\xa3\xbb\x16\x16\xb7\x62\x77\x74\xa1\xa9\x71\x67\xa1\x3b\x16\xe8\xf9\xab\x17\xc4\x52\x34\xc4\xc0\x04\xc9\xeb\x62\xfc\x78\x44\xe7\x0d\x26\xbd\x3b\x90\x3a\x5e\x74\xae\x32\x33\x95\xf5\xca\x4c\xa5\x9a\x91\x2b\x83\xb5\x35\x33\x3f\xc2\xb9\xc8\x73\x4d\x1c\x5c\xad\x67\xa3\xcc\x59\x26\xf3\x61\x63\xfe\x46\xd8\x0d\x4b\x44\xa2\x5a\x6b\x7a\xe7\x95\x32\x2f\x7a\x50\xc8\xac\xec\x3d\xf1\xdc\xea\x28\xbd\x1b\x65\xe0\xa5\x01\x55\x15\x3b\xa8\x10\x73\xb2\xcf\xab\x16\xb8\x34\xe4\xb1\xc8\x1c\xe3\x92\xdf\x0b\x74\x04\x91\x08\xec\xb9\xd9\x19\x8b\xa5\x19\x47\x1e\x9a\x71\xa0\xcf\x0f\x43\x32\x9a\xd0\x6f\xd2\x6d\x3d\x28\xb2\x99\xcc\x61\x41\x44\xdf\xff\xc4\xc4\x5d\x30\x8c\x21\x79\x6e\xe9\xd6\x54\x19\x73\xb9\x13\x58\xc7\x60\x4c\xf9\x4a\x58\x79\x8b\xa4\xa2\x5a\xee\xda\x63\xac\x7b\xe8\xb4\x51\xdb\x73\xab\x66\x9e\x85\xce\xe9\xf5\xb9\xaa\xce\xb7\xb8\x9c\xfd\xce\xc1\x3e\x6f\x74\x61\x0e\xae\x40\xb0\xc6\xe4\xe2\x1b\xa7\x62\x88\x2d\x85\xac\xe8\x31\xae\x6b\xa3\xe5\x51\xda\x8f\xd2\x58\xde\x5c\x7a\xc2\xb5\x44\x3c\x68\x2a\x4f\x68\x4a\xf3\xd9\xec\x64\x4a\x2c\x21\xec\x69\x58\x93\xb3\xf0\xe2\x64\x76\x12\x9f\x09\xd6\x59\xcf\xb8\x0e\x69\xcc\xc3\x50\x8f\xeb\xd0\x68\x69\x83\x1a\xdd\x4a\xbb\x71\x31\x8a\xd6\x68\x6a\x25\x73\x9a\x37\x5b\x49\x72\x1e\x8e\xaa\xa4\x9f\xa9\x65\x5f\x13\xb1\x76\x72\x2c\x81\x0e\xd6\x28\xe6\x5f\xb1\x6a\xeb\x7b\xb9\x2e\x8c\xce\xa5\x38\xe7\x20\x39\x53\x25\x92\x0c\xbb\xf5\x55\xba\x64\x2f\x7f\x57\xe3\xcc\x34\x4b\x6e\x21\x8c\xf7\x36\x97\x98\x03\xc5\x68\xd0\x81\x15\x59\x11\x6f\xb1\x50\x35\xea\x69\xa9\xfe\x25\x8b\x42\x4c\x95\x5e\xcf\xb0\x3a\xff\xe5\x1d\xb3\xe9\xec\xef\xb8\x9c\x91\x69\x9d\xfd\x48\x51\xaf\xf9\xa0\x56\x1f\xf8\xe7\xcf\xaf\x7e\x7e\xf9\x81\x1d\xcd\x51\xb3\x8a\xb4\xbc\xcf\xf4\xa6\x53\x9f\xec\x77\xe9\xca\x36\xaf\x37\xf5\x58\xd0\x3f\xfd\x0f\xb1\xf3\x22\x3e\x1d\xe6\x8b\xbf\x6b\x51\x93\x2f\xed\xf8\x5f\x69\x28\x9b\xc2\xca\xba\xf0\xcb\xe6\x12\x15\xa3\x78\xc0\xf4\x99\xe0\x59\x05\x42\x2f\xa5\xd5\x42\xef\xce\x8d\xfc\x17\xe6\x1c\x0a\xf9\xf0\x7f\x07\x55\x53\x2e\x91\x9c\x3b\xcf\x43\x92\xb4\xe4\x41\x2a\xf2\xd7\x39\xbc\xe7\xb6\xbf\x0e\x91\xf0\x43\xaf\xcd\xa0\x3e\xe4\x26\xb0\xe8\x0d\x76\x24\xc2\xf0\xf3\xfb\x8f\x06\x18\xad\x11\xf4\xa3\x8f\x0b\x2f\x5c\xe3\x07\x45\x17\xae\xcb\x63\x83\x0b\xd7\x7b\x64\x6c\x11\x19\x05\x7a\x7f\x9f\x21\xb4\x18\xd2\x70\x85\xcc\xb0\x22\x97\x31\xcb\x94\x66\xc5\x66\x55\x94\x7f\x53\xe7\x77\x2c\xf2\xbe\x95\x69\xd7\xf1\x2a\x24\x9d\x3a\x11\x86\xf7\x15\x82\x6f\xa5\x56\xa4\x37\x5f\x5f\x5e\x91\xe3\xe0\x61\xe4\x47\xf5\xe5\x4f\x1e\xa5\xc3\x4e\x3a\xe1\xf5\x2a\xfa\x6d\xf7\x29\x8d\x0f\x89\x7f\x77\xaf\xe3\xde\x05\x49\xec\x1f\x7f\x8c\x95\x81\x80\xf7\x17\x12\x82\x30\xfc\x38\x29\xf0\xad\x1f\x24\x06\xbe\xcf\x63\xe5\xc0\x77\x1f\x29\x08\xfb\x5c\xf0\x1b\x48\x42\x8c\x97\xc8\x41\x63\xa2\x93\x87\x6b\xb1\x04\x4e\xcd\x02\xde\x59\xd4\x44\x5c\x23\x6d\x6b\xe8\x7d\x52\x3e\xe1\xfb\xe5\x2e\x0d\x76\x88\xd7\x6f\x10\xa6\x31\xae\xf9\xb1\x50\x19\x41\x57\x21\x4e\x6a\x0c\x6a\x03\x69\x0c\xc4\x49\x38\x2d\xd7\x92\x46\xe3\x44\x98\xcf\x01\x93\xf4\x70\xa2\xba\xd6\xea\x1f\xd4\xb7\xa6\xd0\x88\x83\xe3\x60\xc2\x9d\xbf\x49\x0d\x33\x55\x14\xc8\xae\x68\x8b\x2c\xae\xa3\x3c\x6f\xb7\xdb\x69\xb9\xe3\xec\xbd\x87\xe6\x32\xff\xb7\xa8\x89\xee\xe7\x6a\xc5\xdf\x5a\x28\xc7\x44\xf5\xa5\xa7\x0f\x91\xef\xd1\x31\xf5\x07\x18\x11\x55\x2f\xee\x8d\x7f\xbb\x82\x98\x62\xf5\x85\x84\x31\x45\x61\x9c\x40\x26\x3d\x1e\x24\x94\x49\xbf\xc7\x0a\x66\x02\x62\xa4\x70\x0e\xaf\xfb\x67\x17\x50\xc7\xe4\x2b\x59\x61\x88\xd9\xcb\x5a\x19\xb1\xa4\x30\x57\xed\x44\x61\x77\xed\xce\x17\x37\x5e\xcb\x5b\x34\x50\x0a\x7d\x83\xb6\x2e\x44\x86\x06\x44\x2b\x66\x4d\x45\xfa\x3c\x4f\x53\x6b\x0a\x4c\x53\xf3\xe6\x1b\x89\x8f\x03\x2a\xd1\x1c\xb5\x51\x6f\xfd\xf0\x3d\x87\x2e\x24\xef\x3a\xfb\x7b\xf0\x16\x33\x94\xb7\x31\xc1\x80\xb0\xc4\x0a\x57\x32\x93\x42\xef\x42\x02\xde\xcf\xa7\x9b\xad\x10\xcc\x19\xc1\xa4\x66\x1a\x2d\xba\x6d\xb0\xd0\x29\x00\xe6\x10\x25\xfc\x9a\xae\xd1\xd2\xba\x9e\x9e\xf5\x82\xcc\x4c\x95\x25\x56\xb9\x4b\xc8\x9c\xc3\x2f\xac\x84\x7c\x3a\x9f\x77\xc8\x48\x13\x56\xb8\x4d\xf4\x0f\x5c\x16\x6a\xeb\x66\xd1\x01\xa6\xbb\x53\x92\x06\x1a\x43\xce\xc3\xf5\x1a\xad\xa7\x4d\x98\xf5\x9b\x66\x59\xc8\xec\x8d\xb0\x9b\xd3\xb3\xeb\x09\xeb\xc3\x4a\xd9\x2e\x38\x97\x19\x42\x5a\x6c\xd1\x14\x36\x19\x35\x4e\xca\x29\x5d\xde\x98\x11\x45\xa1\xb6\x5e\x87\x5a\x05\x4d\x9d\x13\xea\x1d\x80\x4c\x32\x51\x8b\xa5\x2c\xa4\xe5\xc4\x37\xc7\x42\x8d\x6d\x34\xaf\x7a\xc3\x5a\x9f\x37\x67\xd6\x7e\xcd\xda\xe6\x07\x15\x59\x40\x66\x0e\xcf\x63\xe3\xef\xbf\xfe\xd8\x59\xed\x69\x98\xf7\xa7\x3f\x75\x79\xe3\x67\x17\x36\x90\x77\x11\xb2\xb1\x99\x28\xb2\xa6\x20\xe4\x09\x3b\x51\xaa\xc6\x39\x4d\x46\x14\x08\xb7\xa2\x68\x10\xac\x16\x95\x59\xa1\xd6\xae\x47\x77\x11\x3c\x13\xb6\x34\x7a\xad\x2c\xc2\x39\xbc\xb2\xc9\x2e\xcd\x12\xed\x16\xb1\x82\x8b\xe9\x05\x13\xff\xe9\xf4\xa2\x0b\xe6\xe5\x1d\x75\x71\x1c\x95\x8c\x2c\x0d\xdc\x71\x87\xb2\x45\x5c\x1a\xb8\x98\xfe\xf1\x3b\x6a\x5a\xa5\x6c\xdb\x05\xe8\xfa\x6f\x03\x02\xdc\xe3\xff\xc0\xdd\x74\x5f\x54\x44\x51\xec\xa0\x46\x9d\x61\x65\xc9\xac\xad\x31\xc9\x74\xbb\xbd\x21\x8b\xba\x34\x44\x94\xa5\x30\xd2\x40\xad\x64\x65\x3b\x51\x25\x35\x32\xaa\x90\x39\x2d\xf4\x52\x10\x69\x4d\x29\xb4\x8d\x1b\xb7\x06\xb6\x1b\x8a\xb6\x33\x91\xb3\x3e\x57\xab\x15\x71\xce\xf5\x2f\x97\xf2\xee\xbb\x6f\xaf\xfb\x8c\x23\x2c\x88\x42\xa3\xc8\x77\x41\x37\x38\xe5\x93\x8e\xcf\xfc\x93\x09\x43\xd4\xcd\x04\xfd\x90\xd6\x74\x01\x51\xd8\xec\xbd\x01\xa1\x11\xc8\x99\xd4\x58\xec\x20\x47\x9a\x91\xac\xa4\xb1\x3e\xcb\xbf\xa6\x10\x2f\x69\x5d\xe5\x51\x29\x75\x85\xa4\x26\x0e\xf8\x7f\x01\x05\xb5\x82\x5a\x63\x26\x4d\xb4\xf6\x43\x2c\x9b\x35\x76\x0e\x6e\xa6\x5d\x76\xfc\xef\x60\xaa\x3a\x3b\x5e\xa9\x67\xe3\x64\x88\x26\x47\x43\x89\x5d\xc8\x18\xf9\x35\x9f\xec\x09\x9c\xc6\xc2\xcd\x61\x23\xeb\xc8\x76\xf4\xe1\x7a\x2b\x8a\x02\xed\x75\xd8\x13\x26\x65\x3b\x01\x17\xe4\xda\x0d\xc1\xc5\xc2\xe0\xfe\x3a\xb0\x53\xb4\xad\x50\x43\x29\xd7\x1b\x0b\x5b\x51\x59\xd6\xd9\x35\x66\x72\xb5\x3b\x3c\xeb\x7b\xf7\x45\x5b\xcf\xe3\x81\xf2\x3c\x49\xa9\x39\x19\x1a\xa4\x6f\x3b\x6b\x3d\xe4\xc0\x66\x8d\x85\x3f\x2d\x58\x20\xbf\xfe\x9a\x7f\x7d\xbf\x60\xb1\x9c\xc3\xc9\xf3\xc6\x7a\xf9\x69\x25\x58\x56\xf4\x4a\xe6\xa0\x45\xb5\x46\x90\x53\x84\xf7\x17\x93\xa7\xbf\x9e\x1c\x30\xb0\x10\xfc\xa6\xa8\xa5\x17\x51\x47\x0c\xe4\x3f\x1b\x0b\x0b\xc2\x62\xff\xd3\xf1\xfd\xc9\x07\x64\x4b\x82\xc9\x74\x85\x1d\xb1\xc3\xcf\xa9\xb1\x26\xce\xfb\x67\x83\x7a\xe7\x6c\xca\xf5\xdb\x60\x90\xaf\x83\xe1\x5d\x69\x55\x12\xfb\x24\xde\x33\x31\x15\x8b\xd8\x5d\x8d\x99\x75\x7a\xb2\x16\xbb\xd6\x9a\x7b\xad\xe0\x12\x62\x14\x21\x31\xfb\x04\x67\x7d\xa4\xad\x27\x38\xfd\xf4\x8d\xd6\x62\xe7\x39\x55\x8b\xec\xc6\xe9\x09\x59\xe5\xf2\x56\xe6\x8d\x28\x5a\x0c\xfa\x8c\x4a\xd4\x8d\xf2\xf9\xaa\x5a\x29\x33\x87\xf7\x9e\x40\xbf\xde\xb3\x61\xe4\xfd\xe5\x81\x4e\x7d\xce\x23\x1f\x8a\x78\xc6\x19\x17\x61\xc1\x34\x9c\x06\x14\x45\xc1\x1c\xd7\x2a\xf5\xe8\x02\x90\x55\x5e\x22\xac\xd9\x13\xf0\x3b\x3b\x4f\xa7\x17\x1d\xb0\xb7\x82\xbc\x6c\x2b\x8a\xe7\xcc\x35\x17\xbd\xcf\xb4\xe0\xc1\x24\xc8\x2a\xe2\x39\x20\x03\x09\x90\xf8\xf8\x7f\x43\xdf\x69\x9f\x1b\xbb\xbc\x2d\x8c\x41\x6d\x4f\x63\x3f\x27\x3d\x13\x28\xd1\x18\xb1\xc6\x39\x9c\xbc\x73\x93\x8d\xe3\x8f\x9f\xed\xc9\x59\x9f\x8c\xcf\x8c\x91\x6b\xa7\xc7\x02\xbc\x41\x21\x72\x23\x2d\xf6\x1b\xf5\x12\xb5\x6f\x9d\xd3\x9b\xc2\xe3\xac\xdf\x60\xa6\xb4\xb7\xa3\x2e\x98\xe3\x92\x0c\xbe\xab\xed\xc0\x84\xd7\x1d\xd3\x1e\xcf\xbb\xc6\x74\x7e\xf4\xd8\x24\x9a\xd3\xb3\x84\xa5\xee\xd9\x8c\x1c\x98\x23\xdc\x17\x91\xb5\x22\xf4\x85\xe2\xb1\xb7\x3d\xfa\x1c\x8b\xc6\x5a\x8a\x3c\x24\x16\x8b\xbd\x1e\x1b\x89\x45\x00\x23\xe3\xb0\x54\x35\xf5\x25\xec\xb3\xd4\x22\x38\x1b\xec\x36\x19\x59\x8b\x44\xa3\xc4\x3e\x2c\xcb\x3b\x5b\x16\x62\xc6\xae\xba\x8b\x89\x12\x2e\x8b\x6b\x41\xb0\x0b\x8f\xb7\x58\xd9\x86\xdd\xbf\x14\x96\x88\xde\xb8\xd9\x4a\x9b\x6d\x96\x8a\x42\xbb\x60\xbb\x26\x11\xee\xc6\x31\x42\xa8\x5b\x5b\x36\x1e\x2c\xef\x5b\x76\x90\x8b\x04\xa2\x5f\x95\xea\xd5\xc8\xf5\xb7\xc8\xda\x58\x25\xc6\x6a\x01\x21\x0a\x0f\x53\x1b\x3a\xc4\x3c\xfb\x32\x35\x18\x05\xcd\xd3\x71\x3e\xf6\xd7\x61\x56\xf3\xc7\x99\x8f\x25\x2f\xaf\xde\xa6\xc3\x1e\x49\xe7\xfa\x12\x32\xb7\x91\x9b\x14\x43\xfa\x7c\xd6\xeb\xcb\xab\xe9\xde\xe2\x84\x68\x84\x43\x4d\x2d\xa4\xf3\x2d\x13\x33\x76\x83\xbb\x99\xf3\x49\x6a\x21\xb5\x01\x51\xa8\x6a\xed\x62\x4e\xa3\xca\x56\xee\x38\xed\x7b\x47\xcb\xca\x5b\x19\x3c\xae\x58\xaa\xc6\x31\x11\x83\x3e\x66\x6b\xaf\xa8\x51\x42\x93\x81\xea\x44\x86\x33\x85\x9f\xe4\x0d\xc2\x8f\x22\xbb\x59\x6b\xd5\x54\xf9\x04\x5e\xee\xd0\x4c\xe0\xaf\x42\xea\x5e\xe9\xd8\xd8\xf2\x41\x1e\xa9\xa9\x72\xd4\x05\xfb\xba\x6e\xca\xe9\xa8\x93\xa0\x78\x6c\x78\xcd\x84\x36\xae\x7c\x8f\x9b\x40\xad\xd5\xad\xcc\x31\x10\x23\x68\x2b\x06\x76\x18\x27\xfe\x3c\x87\x67\xd5\xce\x95\xd0\x76\xf0\xf2\xb5\x72\xa4\x21\xd2\xf5\x32\x1b\xb5\xe5\x05\x88\x63\x39\x62\x6f\x9d\xeb\x2c\x8d\x23\x1b\xb9\x47\x6e\x2a\x91\x51\x52\xe0\xc4\xe7\xb2\x32\x56\x54\x19\x4e\x60\xa7\x1a\xc8\x58\xc4\x4d\xc0\x8a\x86\x12\xd0\x54\xf2\x0e\xac\x2c\xd1\x58\x51\xd6\x2e\x8c\xf7\x6e\x78\x07\x3f\x61\xe0\xe4\x85\xb0\x78\xc2\x13\xc7\xa2\x48\xc7\xaa\x0b\x61\x57\x8a\xe2\x39\x0a\x7e\x55\x65\x9a\xd2\x57\x84\x38\xda\x71\xad\x2e\xbb\x2c\x21\x4b\x20\xfc\x1e\xd8\x61\x4f\xbf\x1d\x7b\xa0\x28\x80\xcc\xad\xd0\x14\x18\x92\x67\x29\x0a\xa3\xa2\x76\x70\x99\xd8\x62\xe7\x25\x43\x58\xab\xe5\xb2\xb1\x9d\x9d\xf9\x2e\x73\x38\x69\x89\x26\x25\x44\x7e\x8c\x66\x51\xb4\x10\x0c\x57\x4e\xf8\x29\xfa\x77\x81\x0d\x5e\x5f\x5e\xfd\xde\x80\x66\x9c\x0e\x73\x83\xfb\x3e\xf7\xb8\x0f\x16\x39\x74\x2a\x18\xf7\xd8\x67\x32\x48\x97\x49\x1f\xf0\xc3\x2b\x16\x1d\x47\x2c\xdc\x80\x03\x01\x43\xc2\x09\x8b\x14\x87\x81\xd8\xc4\xad\xcb\xc2\xe3\x34\x32\xa2\x60\x75\xc7\x6a\x32\x78\x3e\x41\x63\x1d\xd7\x6f\xbe\xa3\xef\xc0\xbb\x95\x23\x54\x5c\x04\x97\x4a\xda\x80\x8a\x43\x91\x6d\xbc\x6e\xba\x57\xb9\x99\x7b\x12\xe5\x0e\xb5\x39\xbc\xe7\x96\x07\xb6\x70\x7b\x8d\x06\xd7\xd0\xcf\x71\xe1\x1b\x0f\x18\x7d\xfa\xeb\x06\x33\x79\x6e\x5a\x03\xe2\xf4\xb0\x67\x5a\x8f\x37\x21\xd1\xe9\xd2\xf5\x52\x9d\xdb\xc6\x6d\xe7\xac\x4a\x9d\x4c\xfb\xb9\x5b\x96\x3c\x91\xe7\x98\x1f\x75\x4d\xc9\x82\x8a\x3c\x67\x50\x34\xe1\xb9\x83\x7a\xcf\x4c\xa7\xc4\x22\x55\x7e\x6a\xef\xa9\xef\xe8\x7a\xa4\xc9\x9c\xbe\x94\x4f\xea\x51\x18\xe7\x90\xba\xc6\x0f\xf2\x46\x5d\x97\xc7\xba\xa2\xae\xf7\x48\x3f\x74\x8f\xb3\xc3\xdf\x67\x70\x42\xfd\xba\xc5\x1a\x2b\xab\x00\x85\x91\x05\xc7\x41\xb7\xa8\x2d\xd7\xa2\xf1\x37\xa1\x77\xbc\x12\x8e\x27\xe0\x52\x69\x4e\xeb\x27\x0e\x4a\xd8\xd8\x32\x7e\x73\x41\xb1\xfa\x66\x7d\x8d\x92\x0b\x1a\x43\x41\x7c\x58\x25\xd6\x0a\xde\xc2\x5f\x39\x27\x20\xc2\x63\xd3\x55\xa2\xdd\xa8\x58\x16\x6f\x9a\xd5\x4a\x3a\x86\x58\xcb\x5b\xf6\x51\x4b\xb6\x2f\x1c\xb9\xa9\x95\xcf\xe4\x78\x14\x0f\x31\x1a\xcd\xc7\x09\x51\x77\x66\x4b\x0c\x93\x76\x2a\xed\xaa\x15\xef\xa4\x37\xde\xf1\x91\x93\xfc\xb5\x28\xd1\xcc\x3b\x95\xd8\xbe\x68\xcb\x61\xe3\xed\x77\xc8\xeb\x5d\xd3\x58\xd7\x11\x58\xf8\xbb\xc1\x9d\xa7\x96\xd0\xce\xda\x6d\x45\xe5\xc7\x5f\x62\x46\x5a\xf1\xda\xe1\x71\x3d\xe8\x53\xb3\x03\x2d\xa8\x43\x5f\x8f\x1c\x62\x77\xc2\xe3\x4a\x79\x8e\x77\xa4\xf8\xe8\x10\x4f\x4c\xdc\xa7\x49\x7f\x9e\xef\x5d\x9b\x5f\x7f\x38\x9b\xef\x33\xe4\x6c\x06\xcf\xe3\xea\xbb\xa4\xa2\xf1\x59\xc5\x30\xa5\x68\x52\xbc\x53\xe7\x36\x0d\xa4\x6e\x9d\x68\x7f\x96\x27\x9f\xf6\xbc\xc6\x5d\x2f\x3f\xb9\x11\x55\x5e\xa0\xb3\x18\x4c\x64\x0a\x74\x38\xe1\x69\xdb\xc6\xff\x68\x4c\x32\x36\xf3\x49\x80\xcf\x85\xce\x45\x31\x4d\x05\xb7\x33\x59\xf8\x6a\x41\xa2\xd2\x13\x38\x72\xe5\x6e\x08\xed\x4e\xdb\xaf\x06\xc4\x92\x88\x3a\xd5\x58\xaa\x5b\x3c\xbd\xc1\xdd\x1c\x6e\xfa\x55\x75\xed\x53\x7c\x1c\xb0\x50\xb0\x80\xf7\xbf\x3e\xd9\x1b\x9f\xc1\x33\xdf\x74\x87\x8e\x10\x60\xe1\x56\xc8\xbb\x31\x37\xd1\x83\xa1\x9e\xef\x6f\x7e\xfd\xaa\xe7\xc0\x54\xb2\x68\x9d\x97\x4a\x16\x5d\x6c\x7b\x36\x80\x6d\xc5\xd0\x04\x02\x53\x3a\xc6\x72\xbd\xce\xfa\xea\x26\xe6\xc5\x63\x06\x73\x4f\x6b\x48\x63\x1a\x6c\x13\x9b\xfe\x60\x56\x84\xc0\x81\x91\xdb\x4c\x29\xf9\xa8\x9b\x91\xa5\x2c\x84\x4e\x4e\xa6\x11\x58\xbc\x13\x25\x75\x17\x15\xfc\x0f\x29\x86\xa7\x17\x17\xe4\x74\xbb\x8d\xae\x08\x4c\x56\xe4\x30\xbb\x2d\x3b\xe7\xcb\xac\x1a\x77\x3e\xcc\xe5\xd4\xdd\x7e\x41\xba\xe3\xd9\x3a\x40\xcf\x5c\xf5\x80\x63\xb7\x25\xb9\x36\x9a\x03\x97\x88\x39\xe6\x92\xa7\x35\x81\xed\x46\x66\x5c\x5b\xbc\xdd\x70\x05\x78\xf8\x74\x08\x0f\x47\x4a\xe2\x54\xe3\xb4\x9b\xaf\x62\x03\x57\xc5\xc6\xfa\xe5\x58\xac\xf7\xd2\x0d\x71\xec\x34\x5a\x8a\x49\x68\x73\xd9\xd2\x6f\xe2\xb4\x70\x16\xf2\x12\xef\xd0\x4e\xe0\x4d\x21\x76\x13\x78\x87\x5a\xa2\xe9\xee\x53\xf8\xca\x3a\x77\xd2\x61\x2b\x76\x49\x61\x85\x03\x91\x15\xc2\x18\x8a\x6a\x48\x7f\x04\x02\x8d\x8a\x25\x7f\xd8\x9f\x87\xef\x9f\x14\xf2\x1d\x38\x6c\xc5\x33\x12\x15\x9c\x7c\xf3\x6d\xe0\x85\xd3\xdf\x7d\xf3\xed\xec\xe9\xc5\xc5\xd9\x09\x57\xa4\xb8\xd8\xd3\x03\x92\x06\xbe\xf9\xf6\x9e\x08\x97\x5b\xcd\xe1\x97\x57\x95\xed\xef\xfb\x10\x5a\xa5\xb8\x1b\x44\x8d\x02\x31\xbf\xbd\xec\x99\x7a\xda\xeb\xdb\x3f\x05\x16\x12\x2e\x3e\xea\x75\x49\x97\x42\x96\xd2\x62\x7e\xee\x87\xc0\x7c\x18\xda\x88\x29\x13\xa2\xd2\xd0\xb7\xc1\xae\x5c\xa9\xc3\xe2\xd6\x54\x7e\xd0\x30\x2f\xd7\xb7\x4d\x57\x51\x38\x6b\x15\xe9\x8e\x71\x67\xca\x4a\x71\x17\xe8\x77\x34\xfe\xfa\x61\xd2\xa3\xf8\xa4\xd3\x7d\xc0\x81\x22\xdc\x06\x55\x38\xb4\xe9\x6d\xbf\x30\xdf\x2f\xa8\xf5\x57\x69\x76\xfb\xaa\x65\x84\x4c\x54\x43\x89\x6c\xeb\x17\xd9\xb5\xfa\xea\xe4\x90\x76\x87\x51\x41\x9f\x1f\x6b\xd1\x8f\xc5\x63\x03\x1a\x8a\xd1\x1c\x19\xc5\x75\xf6\x85\x82\x1a\x18\x55\x47\xeb\x1b\xff\x1b\x95\xb4\x7b\x22\xdd\xd9\x6d\xec\xe8\x4b\x11\x34\xe6\x41\x2e\x21\xad\xf8\x93\x34\x76\x0e\xef\x3d\x66\x87\xea\x6e\xf7\x1b\x0e\x17\xdf\xfa\x76\xb0\x88\x5d\xc6\x46\x34\x91\x34\x5f\xea\x94\x5f\x44\x60\x64\xc1\x93\x6f\xfe\xb0\x6a\x27\xdf\xe9\xd1\xa5\x4e\xbe\xff\xd8\x3a\xa7\x96\xdd\xfa\x52\xfa\xb9\x8a\x9c\x62\x52\x8e\xfd\xf2\x60\x8c\xce\x5d\xd9\x53\x0e\x06\xb5\x14\x45\xe0\x5f\x97\x23\x0f\xfb\x97\xc4\xad\x11\xd8\x1b\xd7\xd1\xc0\x46\xdc\x62\x72\x2c\x9e\x01\xf9\x59\xb0\xdb\xc0\x9e\x7c\x0f\x6e\xd4\x93\x11\xdc\x3b\xf2\x5d\x4b\xb1\x8b\xa5\x39\xbc\xe7\xaa\x71\xdd\x90\x27\xf3\xea\x85\x4b\x00\xa6\x8d\x92\xb3\xf8\x6d\xc0\xe5\x8c\x69\x38\x04\xe6\xce\xf9\x4c\xdd\x69\x94\x0e\x02\xd2\x74\xb6\x6f\x97\x08\x4d\x25\xff\xd9\x70\x51\x8c\x3f\x30\xc8\xd6\x9b\xcd\x36\xa3\x42\x6a\x9f\x3d\x74\x61\x03\xd1\x8e\x29\x8f\x77\x6e\xc8\xc3\xf9\x97\x43\x76\x33\x95\xe4\x6e\x9b\xe1\x0c\xda\x01\x7d\x79\x44\x80\x3d\x7a\x5f\x4a\x7c\xfd\xf0\xe3\x84\xd7\x35\x7e\x90\xe8\xba\x2e\x8f\x15\x5c\xd7\x7b\xa4\xd8\xee\x2d\xf4\xe7\x16\xda\xb6\x74\xd8\xa7\x31\x53\xf7\xd8\x0b\xa9\x4b\xa4\x25\xd9\x4d\xea\xcd\x05\x5a\x2e\x98\x0e\x5d\x2b\xc4\xdc\xb8\xa8\xf1\x16\x43\x16\xc2\x64\x4a\x73\xec\x90\x96\x60\x2c\x1b\x0b\xd2\x9d\xa0\x8f\x00\xb9\xd3\x52\xb5\x79\xca\x43\xcc\xef\xf3\xe0\x1f\xf7\x9c\x41\x3f\x94\xaf\x28\x74\xad\x38\x11\x7f\x24\xf3\xce\xfd\x42\x35\xcc\x80\xef\x5b\x8a\x3b\x59\x36\x65\xbb\x8d\xc2\x1d\x8e\x38\x5c\x87\x80\x0d\x5c\xe7\x90\xa2\xea\x8e\xb6\x1d\x39\xdd\x18\x43\x84\x9f\x70\x8d\x55\x2e\xf4\x6e\x02\x2f\x6b\x99\x4d\x88\x36\x38\x81\x5f\xaa\x4c\x95\x25\xb9\x8e\xcf\xf9\xff\x6e\xac\xe0\x4f\xcf\x75\x13\xdf\x23\xea\x8e\x06\xbd\xc7\x2e\xed\x26\x9d\xc9\x0f\x16\x16\x0d\x39\x91\x6e\xe1\x16\xce\x8d\xfc\xfa\xeb\x0e\x8d\x16\x87\x9c\xcb\x5a\x54\x32\x3b\x3d\x79\x16\xf8\x21\x72\x9f\x09\x4b\xda\xbd\x9f\x44\x69\xe6\xae\x3d\x0f\x72\x5f\xeb\x79\x74\x7a\xcb\x0c\x87\x7d\x44\xf8\x37\xca\x8c\x7a\xe5\x05\x6e\x2e\x5f\x32\x99\xeb\x51\x18\x59\x5d\xc0\x8d\x1f\x56\x5a\xe0\x76\x6c\x1e\x5b\x57\xc0\xbd\xc7\x16\x15\xf4\x35\x45\xf8\xfb\x0c\xda\xf3\xf5\xe5\x15\x2b\xd0\xad\x16\xb5\xe1\x84\xdb\x73\xbe\x20\x85\xaf\xd4\x71\x9b\x2e\xd7\x32\x77\x85\x82\xd7\x4d\x43\x8f\x2e\x1b\xe7\x76\x1c\xc3\x6e\x4e\x84\x17\xd2\xac\x82\x6b\xc3\x0b\xb4\x08\xb5\xcc\xb8\xca\x37\x1e\x3e\xf2\xf7\xe7\xb0\xd7\x30\x7c\x79\x4e\x04\x37\xea\x16\x9d\x30\x87\xc3\x7e\x84\xcc\xa3\x0f\x71\xa8\x09\xcd\xed\x68\x23\x9f\x03\x9b\x77\xaf\x1e\x9a\x86\xcb\x2e\x0e\xf6\xc3\xb6\x3c\xbf\xdf\x37\x3d\x2e\x70\xb0\x7f\x9b\xf1\x7a\x21\xac\x98\xd3\x8c\x9f\x77\x5e\x8d\xea\x1a\x90\xef\xf6\x3e\x86\x7b\xac\xd8\x48\xcb\x69\x0e\xb6\x0e\xf9\x48\xbf\xd7\x71\xf4\xe2\x17\x99\x43\x0c\xd2\x3b\x1f\x68\x3d\x0e\x7c\xf2\xab\x00\x87\x96\xa1\xdb\x3a\xa1\xfd\x5e\x8f\x94\xf8\xdd\x5e\x5d\x8a\xc3\x10\xc9\x0f\x76\x88\xe8\x0d\x12\xba\xdb\xad\xad\x87\x49\xc9\xdb\xbb\xe1\xa6\x47\xd3\xf0\x7e\x38\x60\xcd\xf9\xac\xdc\xfe\x07\x26\xe8\x82\xe9\x3a\xa0\xf1\x3d\xce\x71\x8f\x78\xbf\x49\x4a\xc7\x45\x4a\xd5\xfd\xa6\x3d\xe2\x2d\x7a\xd4\xbc\xb7\x43\x44\x64\xef\xdd\x7e\xb7\x96\x78\x8b\x81\xd2\x4e\x18\xb7\xf9\x7a\xd0\x88\xf9\xb3\x5e\xcc\xb8\x87\x6c\x16\xe9\x8c\x2b\x9f\xa6\x90\xf9\x6f\x62\xd1\x82\x76\x1b\x67\xc9\x7c\xeb\xd3\x56\x99\x4d\x1e\x60\xd4\xf6\x35\x29\x47\x61\x2b\xfb\xb7\x31\x46\xcd\xf7\x26\xab\x96\x1a\xc5\xd0\x7d\x30\xbf\x16\x2c\x93\x6b\xf3\x15\x08\xf3\x55\xc0\x22\x59\xa7\xbe\x21\x0b\xb3\xdc\x57\x25\x32\xdf\x57\x23\xf3\x2e\xde\xf4\x6a\x50\xa1\xf4\xb5\x43\x72\xf5\x51\x0a\xe0\x6c\xbc\x7e\xe9\x1d\x23\xbb\x07\xca\x9e\xbe\x61\xce\x75\x0b\xda\xd5\x3b\x23\xa1\x44\x25\x34\x0c\xe8\xf8\xbc\x52\xcd\x14\x60\xb4\x55\x98\xf7\x74\xf4\xe2\xd6\xf6\xf2\xfb\x3b\x9d\x2e\xad\x12\x3b\x12\xcf\xb9\x0a\xee\x36\x98\xf3\x97\xa0\xf0\x55\x3a\xfe\x5a\x43\xab\x25\xde\xe2\x70\xb9\xc9\x7d\x87\x42\x9d\x93\xdd\xd4\x20\x7a\x67\x35\x5d\x0a\xbb\xd6\x8a\xb4\x41\x84\x47\x43\x8a\xb5\x1b\xd4\x95\x04\xb6\x47\x94\xc6\x1c\x51\xdb\x5b\xc9\x5e\xec\xe7\x6e\x93\xa9\xe2\x38\x5b\xbe\x07\x82\xfd\x21\x7f\x62\x5b\x87\x13\x63\x31\x29\xe3\x6e\x14\x3a\xbc\xf1\xe0\x61\xbd\xf1\x97\xae\xc4\x1f\xbd\x7b\x6c\xdc\x6c\xb8\x24\xd4\x6d\x3c\x95\x8d\xe1\x8c\x6b\x21\xab\x1b\x37\x98\x5f\x8e\x81\x89\xc7\xad\x8a\x90\xfd\x82\xb8\x45\x95\x15\x0d\x1f\x61\x8f\x87\x02\x79\x22\xe1\xb4\x9f\xdf\x2a\xf3\x12\xe3\x5c\xce\xf6\xe3\xc1\x39\xd5\xb1\x56\x33\xad\xdb\xdc\x0f\x51\x07\x4f\xe8\x25\x8b\x1c\xee\xb3\x72\x33\xcb\x83\x4e\x76\xe0\x3b\xd0\x2a\xe5\xcf\x3e\x62\x65\xa5\x0d\x17\x7e\xe2\x9d\x34\x76\x02\xd2\x42\xa5\x80\x3c\x65\xd4\x6d\xf4\xb6\x74\x65\x89\x5a\x86\x0c\x5a\x92\x25\x8c\x73\x3c\x32\xc5\x96\x5b\xe6\xc0\x35\x5b\xdd\x29\xd2\xac\x7a\x35\xc0\x7e\xb9\x7c\xee\x5c\xac\x94\x66\x5c\xdd\x9e\x4f\xdd\xae\xf2\x91\x81\x7f\x62\x30\x6e\xa7\x77\x7f\xe0\xcb\x58\xf8\xe1\x8e\x66\x15\x6a\x6b\xdc\x71\x45\x9f\x0c\x10\x15\x60\x59\xdb\x5d\x5f\xaa\x02\xc1\x69\xfe\x81\x87\x99\x81\x3b\xe0\x03\x2b\xdd\x73\x84\x8a\x77\x56\x5e\xd2\x10\x29\x89\x56\x4d\x75\x7a\x36\x87\x3f\x7f\xec\xdf\xe7\x3a\x6d\x5b\x1d\xbf\x89\xf0\x90\xc4\x74\x75\xdc\x30\x0f\x0e\xb5\xe9\x2f\xe2\x50\x9b\x3e\xbd\x7b\x4a\x7d\x68\xba\x61\x11\xc6\x4e\x3b\xaa\xdb\x51\x07\xa2\xfa\x68\x4d\xa5\x79\xe7\x6e\xaa\x39\x55\x2b\x87\xe3\xf7\x5f\xdf\x3b\x20\x39\x01\x73\x38\xf1\x9a\x85\x25\x30\xe8\x14\x01\xe1\xd6\x1b\xb5\x82\x7b\x60\xb4\x72\x32\x3d\x7a\xb0\x2a\x59\xb5\x45\xf2\xbc\xdf\xb0\x5d\xb8\x45\xfb\x78\xa8\x59\x8b\xcb\xa2\xff\xe2\x50\x97\x96\x66\x8b\xfe\x8b\x01\xb7\x77\x68\x65\x17\xf7\xae\xf7\x58\xe7\x75\xdf\xd8\x70\x1e\x66\x1b\xce\x47\x71\x75\x7e\xa8\xdc\xac\x78\x81\xf2\x58\x6a\xf1\x9f\xc9\xd0\xec\xa3\x38\xda\xc5\xed\x79\x44\x0f\xc9\xdb\xec\xc7\x71\x8f\x4c\xe1\xec\x01\x1a\x99\xcd\xb9\xcf\x0d\x08\x7f\x9f\x3f\x2d\x7e\xc0\x8d\xf2\x55\xeb\x7c\x72\x36\x28\xde\xdf\x27\x97\x55\xb6\xd7\x57\x8c\x72\xa7\x5c\xea\xa7\x82\x70\x81\x05\x1b\xf8\x08\x8d\x6f\xd8\x95\x99\x09\xb6\x78\xcf\x3c\x78\x4f\x67\x89\x64\x4d\x09\xe0\x03\x7d\xaa\xbd\x6b\x40\x67\x33\x78\x2d\xca\x3d\x33\xc9\xe8\x6f\x37\x58\x05\xcf\xdf\x55\xdc\xf9\xe1\xfb\x77\x76\xf4\x87\xbe\xf7\xc8\xc2\x8b\x24\x75\x3a\x34\xea\x10\x91\x82\xff\x34\x66\xe0\x23\x17\x0c\xc7\x8b\x20\xdc\x95\x01\xec\x77\xf8\xab\x54\x78\x28\x3e\x60\x9f\xf2\x41\x38\x0e\x32\x72\xf8\x71\x89\xac\x0e\x46\xef\xfe\xd9\x08\x8d\xbe\x06\xc0\xdd\x23\xd9\x39\x23\x33\x7a\x6c\xc3\x80\x5e\x95\x5c\x73\xd1\x1d\x9b\x2f\x69\xea\x8c\xfa\xa3\xa8\x2a\xd4\x9d\x51\xe3\xcd\x08\xed\x60\x93\xbe\x4b\xcd\xbb\x37\x82\x8b\xa6\xa0\x42\xa1\xe1\xe9\xb7\x17\x17\x77\x7f\xf8\xe3\xc5\x61\xb4\x96\x3c\xd2\x48\xb4\xde\xa9\x4c\xfa\xc5\x31\x8e\x0c\x5c\xa5\xde\xc5\xea\xf7\x06\x8c\x6b\xb7\x51\x25\xd6\x62\x8d\x9d\x42\x1d\x78\xa3\xfc\xf5\xab\x5c\xd1\x57\x0a\x2e\xf8\x39\xe1\x33\x23\x6b\x2d\xca\x93\x09\x9c\xd8\xad\xb4\x16\x35\x3d\xe6\xd2\x64\x4a\xe7\x27\x47\x0e\xe1\xb8\x11\x4d\x52\xd9\x79\x70\x79\x7f\xd3\xeb\x9c\xc7\x71\x58\xb7\xcf\x31\xce\xe8\xb6\x3e\xb6\x60\x3d\xd8\x0f\xa1\x4b\xe8\xf4\x9b\xde\x3c\xfd\x80\x44\x5c\x42\x18\x58\xa4\x64\xda\x6f\x9a\x50\x05\x16\x29\x8d\x06\xa0\x3a\x92\x10\x44\xf7\xf4\x38\xa7\x24\xbd\x03\x7b\xd8\x2f\xf1\x6e\x49\x84\xf6\x05\xfd\x93\x47\xf9\x26\x8f\xb8\x37\x7b\x30\x65\xfc\x59\x3c\x94\x07\xdd\xa8\x7d\xc4\xae\x86\xbf\xc7\xfb\x29\x9f\x9e\xfc\x6f\x00\x00\x00\xff\xff\x9d\x76\xf9\xba\x95\x63\x00\x00" func metadataviewsCdcBytes() ([]byte, error) { return bindataRead( @@ -131,11 +131,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{0x6e, 0x29, 0x7, 0x59, 0xc, 0x86, 0x2d, 0x16, 0x76, 0x12, 0xef, 0x30, 0x5d, 0x87, 0xf7, 0xf2, 0x44, 0x60, 0x4d, 0xfa, 0x6f, 0x39, 0x6d, 0x70, 0xf8, 0x49, 0x21, 0x8c, 0xf2, 0x89, 0x9c, 0xb4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x21, 0x38, 0xa6, 0x72, 0x51, 0xbf, 0x52, 0xc0, 0x1d, 0xcb, 0x1d, 0x95, 0xf6, 0x3a, 0x7d, 0x8f, 0x87, 0x94, 0x93, 0xde, 0x43, 0x97, 0xd7, 0xe5, 0xd5, 0xe4, 0x9d, 0x1a, 0xc8, 0xf1, 0xfe}} return a, nil } -var _nonfungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5a\x4f\x8f\xe3\x36\xb2\xbf\xeb\x53\xd4\xeb\x00\x6f\xba\x03\x8f\xfb\x1d\x1e\xf6\xd0\x40\x30\x99\xa4\xd3\x0b\x63\x17\x9d\x60\xe2\x49\x0e\x8b\x45\x4c\x4b\x65\x9b\x3b\x14\xa9\x21\x29\x3b\xde\x4e\x7f\xf7\x45\x15\x49\x89\x92\xe5\xfe\x93\xec\xae\x0f\xc9\x58\x16\x8b\xc5\xaa\x5f\x55\xfd\xaa\xd8\xd7\x5f\x7e\x59\x14\x5f\x7c\x01\xcb\x1d\xc2\x9d\x32\x07\xb8\x37\xfa\xed\x5d\xab\xb7\x72\xad\x10\x96\xe6\x13\x6a\x70\x5e\xe8\x4a\xd8\x8a\x5f\x5c\xdd\x1b\x9d\x7e\xe7\x9f\x57\x50\x1a\xed\xad\x28\x7d\x51\x90\x14\xa9\x3d\xda\x8d\x28\x11\xfc\x4e\x78\x10\x4a\x4d\xc9\x4c\x6b\x1c\xb8\x9d\x69\x55\x45\x0f\x36\xc6\xd6\xe0\xcd\xbc\x58\x6c\x40\x40\xeb\xd0\xc2\x41\x68\xef\xc0\x1b\xa8\xb0\x51\xe6\x08\x02\x34\x1e\xe0\xfe\x6e\xd9\x09\x98\x81\xdf\xa1\xb4\xdd\xf7\x24\x4f\xd6\x8d\xc2\x1a\xb5\x67\xa5\xfc\xb1\x41\x07\x15\x6e\xa4\xc6\x0a\x76\x68\x31\x1e\xe6\x6e\xb9\x02\x8b\xce\xb4\xb6\xcc\x54\x0f\x27\x29\x8d\xc5\xfe\x47\x12\x11\x8e\x64\xb1\xb1\xe8\x90\x34\x13\x9a\x95\x91\x9a\xb4\x00\x57\x0b\xeb\x3b\x4d\xe6\x61\x8b\x6f\x8d\x52\x58\x7a\x69\xf4\x0a\x3e\x9c\xd9\xa9\xdf\x84\xe4\x3b\x6f\x2c\xba\x68\x82\x37\x2e\x1e\x37\x49\x99\x17\x0b\x0f\x52\x97\xaa\xad\xf8\xa5\x0d\x1e\x60\xd3\x6a\xfe\x8d\x4d\x25\x14\xf9\x91\xf4\x31\x07\x8d\x96\x1e\xa1\x70\x52\x1d\x8b\xda\xec\x11\x3c\xd9\xdf\x91\xca\x42\x57\x60\x5a\x0f\x66\xc3\x6f\xe7\x5b\xb0\xe6\x3f\x58\xb3\x97\x15\xda\x15\xbf\xb9\xfa\x80\x25\xca\x3d\x7d\x3d\x35\x98\xe3\x73\xb8\xfc\x09\x54\x58\x2a\x61\x31\x53\xee\x20\xfd\x0e\x9c\xa9\x11\x1a\x8b\x2c\xb4\x31\x8e\x0d\x56\x49\x7e\xa3\x88\xf6\xfd\xdc\x4a\x8b\xac\x54\x6f\x3d\x3a\xc7\xc6\xf0\xd9\x4a\xb4\x5e\x48\x0d\x5a\xd4\x52\x6f\x59\xd0\x1a\x77\x62\x2f\x8d\xed\xc0\xea\xe6\xac\xd2\x11\x48\x05\x87\x8d\xb0\xc2\x23\xac\xb1\x14\x2d\xa9\xe9\x61\x2b\xf7\xac\xe4\x1e\x95\x69\xd0\x3a\xde\x4e\xac\xa5\x92\xfe\x18\x10\x47\x60\xe9\xb5\x0f\xba\x95\x42\x93\x5b\x40\xe8\x63\x86\x88\x0e\x6c\x2c\xc5\x0d\x0d\xf3\xcd\x11\x5a\x47\x7a\x26\xb3\x39\xd6\xb8\x7f\x65\xc6\x8e\x76\xe4\x07\x72\xf5\x10\x45\x8e\xb7\x74\xa8\xab\x82\x56\xd9\xe0\x84\xe4\xc5\x06\xd1\xbe\xf5\xe6\x2d\xfd\x7f\xc6\xf6\x25\x87\x92\x29\xf4\x96\x0e\xc1\x9b\x50\x54\xb0\xe9\x05\x94\x48\x52\x15\x28\xac\xb6\x68\x8b\x13\xc0\x2e\x0d\x6f\x95\x70\x4d\x68\xd2\xc6\xef\xd0\xb2\x8a\xb3\x2e\x2c\x39\xc4\x1c\x1d\xfb\xc8\xa2\x2b\x2b\x02\xe4\xee\xef\x96\xc5\xc6\x9a\x3a\x46\x65\xef\x3e\x8e\x53\x0d\x25\xe5\x03\x7a\xb1\xc2\xc6\x38\xe9\x3b\xfb\x82\xd1\x83\xbd\xde\xb8\x62\xe8\xfb\xd2\x90\x91\x7d\x80\x85\xb7\x42\xbb\x0d\xda\x79\x51\x7c\x79\x5d\x14\xb2\x6e\x8c\xf5\xf0\x93\xc4\x03\x85\x98\xda\xa3\x05\xd6\xe2\x22\x7f\x74\x51\x14\xd7\xd7\xd7\x9c\xea\x6a\x82\x4f\x9e\x46\xe6\xf0\x3d\x6f\x9d\x3f\x23\xc0\x2a\xc5\x6b\xe2\x06\xec\xb7\xe4\x6b\x56\x64\x80\xf7\x90\x5d\x38\x19\x48\xd7\xa7\xc5\xeb\xeb\xeb\x42\x94\x25\x3a\x77\x29\x94\xba\xea\x53\x55\x9f\x2a\xc7\x49\xf5\x66\x78\x96\x87\xa2\x00\x00\x20\x4d\xde\x6b\x40\xed\xa5\x8f\x3a\x6c\x8c\x0d\x01\xcf\x0e\xdf\x61\xe7\x0d\xa1\x38\xae\x03\x4c\xd8\x16\x02\x7e\x12\xad\xf2\x2c\x29\x57\x27\x17\xf7\x73\x5c\xfd\xb2\xfd\xda\xa6\x12\x3e\xc2\x39\xfc\x1b\x70\xcf\x51\xc0\xaf\xb1\x85\x9f\xdc\xee\x23\x2f\xea\x37\x1b\xef\x14\x13\x18\x85\xd8\xd6\x72\x29\x48\x0a\xf2\x9e\x71\xf9\x53\x3b\x7c\x4f\x12\xfa\x0d\xbe\xdb\x07\xc7\x09\x7f\x5a\x81\xb0\x96\x1e\x0e\x04\x52\xb2\x63\x8d\x5e\x54\xc2\x0b\xb2\x62\xca\xf2\x2e\x9e\xb2\xea\xe4\x2d\x42\x46\x30\x5a\x1d\x61\x8d\x2c\xc2\x63\x05\xeb\x23\x03\x3d\xf9\x64\x45\xcf\xef\xef\x96\x41\xdf\x6a\xd5\x81\xbe\x93\x13\xc2\x53\xc3\x8a\x5f\x11\x6b\x85\xab\x74\x0c\x8a\xf9\x0d\x5a\xd4\x54\x1e\x4c\x0a\xb2\x70\x86\x83\x38\x55\x89\xe0\x9d\x5b\xa0\xb1\xd1\x27\xae\x11\x75\x4d\x79\x86\xd1\xd0\xeb\x27\xe3\x93\x3e\xf6\xdc\x9b\xac\x18\xb8\x4e\x72\x4a\x9e\x7c\xda\xd2\x54\x01\x6c\x54\x48\xb2\xd7\xc1\x44\x87\xed\x04\x6d\x89\xa5\x14\xaa\x3f\x4a\x70\x53\x27\x31\x9e\x27\xdb\x8c\xec\xbe\x33\x55\x08\x3d\x32\x29\xd9\x82\xde\xdb\x62\x08\xb8\x53\xab\x74\xd2\x86\x26\x60\x4f\xd7\xe2\x13\x3a\xca\xf6\xce\x04\xad\xfc\x4e\xda\xea\x6d\x23\xac\x3f\x82\xd4\x15\xfe\x4a\x06\x21\x17\xd6\x46\x4b\xcf\xba\x27\x10\x77\xe2\x08\x6a\x9f\x5b\xb4\x47\xfe\x31\xda\xbb\x07\x48\x4a\x77\x01\xad\x43\xdb\xcd\x93\x90\x53\x90\xee\xfb\x00\xa8\x2e\xa9\x94\xdc\xc0\x8f\xde\x4a\xbd\x9d\x81\xac\x6e\xe0\xe3\x42\xfb\x3f\xfd\xff\x0c\xda\x36\xff\xc6\x5b\xdc\xc0\xfb\xaa\xb2\xe8\xdc\xbb\xab\x5c\x6c\x02\xf4\x15\xec\x65\xe0\x04\x30\xc4\xdd\xe5\x2f\xa0\x37\xfe\x03\x6e\x6e\x40\xb4\x7e\x77\x19\x1e\xc3\x6f\x21\x48\xae\xe0\x7f\x1f\xc6\x69\x68\x7e\x7f\xb7\x7c\x0c\x9b\x3c\xf0\x7f\xe9\xc3\x71\x32\x54\x3c\x88\x9d\x6f\xd1\x2f\x8f\x0d\x5e\x5e\xcd\x65\x45\x7e\xda\x48\xaa\x19\xa4\x7f\x7c\x41\x56\xe9\x40\xf1\x01\x7d\xe9\x4e\x15\x9f\xf1\xb7\x77\x73\x11\xce\x18\x76\x7f\x2c\x26\x63\x58\xba\x2e\xe4\x38\x70\x45\x48\x78\xf4\x3c\xe5\x41\x3d\xeb\x16\x4a\x5d\xc9\x52\xf8\x14\x95\xa4\x3a\x69\x17\x54\x9a\x65\x8c\xe9\x84\x10\xc5\xdd\x42\xc0\x75\x92\xd9\xf3\xb3\x01\x4c\x68\xd9\xc7\x8f\x8b\xdb\x24\xa2\x67\x4a\x93\x6b\xa1\x75\xad\x50\xea\x38\x88\xa0\x21\x66\x38\xcb\x9c\xe8\x23\x1d\x68\xe3\x03\x89\x23\xff\x9b\x56\xfb\x37\x8e\x99\xa3\xd8\xe2\x0c\x56\x24\x7e\xd5\x05\xd1\x4a\x4b\xb5\x7a\x0e\x8b\x29\xb5\xea\x17\xa3\x91\x36\xe9\xc1\x38\x83\x26\x12\x46\xb2\x40\x7a\xeb\x6a\xd2\x71\xe7\xbc\x16\x59\x01\x56\x4c\x3d\xa6\x8c\x02\x8b\xe0\x45\x74\x7f\xc8\x89\xf9\x46\x4f\xbb\x30\xb7\xfa\xe9\xda\x7f\x9b\xaf\x66\xaf\x73\xd6\x6d\xd2\xe1\xc5\xce\xf2\x26\x77\x55\xaf\xdf\x19\x67\x2d\x42\x87\x51\x71\x1d\x5e\x8b\xf2\xd3\x81\x48\xf5\x5b\x62\x61\xc2\xcb\x40\x93\x4f\x74\x3b\x6d\x0c\x60\x71\x7f\xb7\xbc\xe1\x8a\xf5\xf0\x98\x4b\x1f\x34\x89\xb1\xa8\x39\xa8\xdb\xd0\x0f\xc4\x56\xf0\xac\x11\x26\x36\xe2\x7d\x72\xd6\x34\x1f\xd3\xa7\xb4\x79\xab\xe5\xe7\x16\x61\x71\xcb\x67\x4b\xac\x35\xbd\x91\x6f\xa3\xd0\x67\x16\x1d\x4a\x99\x4e\x43\xa2\xf5\xa6\x16\x5e\x96\x1c\xd6\xb8\xe7\xaa\x21\x6b\x04\x91\xe9\x4c\x10\x72\xde\x9a\x63\x2c\xdb\x79\xdd\xe2\xa6\x42\xb2\x01\x44\x82\x8f\x4c\xbe\x90\x23\x6e\x12\xb0\xe0\x0c\x21\x33\xc2\x4c\x23\xd2\x9b\x82\x7b\x53\x61\xb7\x2d\xf7\xc0\x53\x87\x0b\x8b\x53\x4b\x7a\x9b\x34\xba\xec\x0f\x0c\x5f\x81\x43\x95\xa7\xed\xe1\x73\x7a\x76\x35\xb4\x4a\x69\x51\x78\xfc\xae\x6e\xfc\x31\xa3\xef\xe1\x29\xab\x84\xf4\xd3\xa0\xad\x8b\x16\x4c\x85\x9e\xbb\xdf\x13\xaf\xa4\xe8\xb4\xe8\x5b\xab\xb9\xa4\x27\xf2\x20\x94\x42\x9b\x15\x78\x3c\x06\x4e\x76\x60\xd6\xe6\x06\x22\xbe\x0e\xeb\xe1\x7d\xaf\xca\x38\x41\x70\xbb\x15\x75\x90\xee\x2c\x34\xa8\xbc\x4e\x1e\xf6\xf2\xea\x06\xbe\x7e\xe8\xbf\x3f\x66\xa5\x93\x3e\xdc\xf2\x0e\x1f\xd1\xc7\xa2\x6b\x95\xa7\x12\xfa\x57\xd4\x5b\xbf\xbb\xbc\x82\xaf\xbe\x82\xff\xbb\x81\x0b\x1e\x45\xf0\x4e\x55\xae\x2c\x87\x0a\x73\xce\xc6\x1f\xff\xe7\x62\x20\xf0\xb1\xe8\xff\x35\x38\xff\x9f\xd1\x3b\x48\x2d\x18\x47\x5c\x62\x45\x61\xcc\x50\x49\x8b\xa5\x57\x47\xb2\xde\x39\xcb\x55\x92\x15\x10\xf6\xc8\xdc\x58\x29\x70\xed\xfa\xfe\x6e\xf9\x23\x7c\xc2\x63\x20\xbf\x04\xe2\x49\xab\x75\xcc\x64\x8b\xfe\xfd\x5e\x48\x45\x5e\xff\x31\x2c\x27\xc3\x3d\x2c\x39\x9b\x05\x98\x8d\x2d\x17\x35\x78\x78\xea\x74\x1c\x67\x19\x5d\x4e\x8d\xec\xe0\x94\x27\x87\xfb\xc6\x10\xfd\x8e\xc1\xe2\x78\x64\x60\x1a\x3e\xa4\x1a\x4e\x54\x62\x53\x5c\xee\x8c\x71\x38\x10\xb1\x33\x07\x02\x65\xc2\xa7\x6b\xd7\xc1\xbe\x15\x36\xa8\x2b\xe2\x1c\x46\xc3\x81\x27\x62\x83\x7d\x62\xcd\x1c\x26\x82\x3b\x63\x01\x7f\x15\xd4\x69\xce\x40\x6e\x60\x45\x06\x5d\x31\xa5\x16\xb0\x17\xaa\xc5\x19\xac\x5b\x0f\x2b\x59\xad\xa0\x32\xe8\xf4\x9b\x30\x08\x63\x05\x87\x01\x29\x74\x54\x17\x0e\x3b\x59\xee\x82\x01\x36\xd1\x22\x3c\xc1\x30\xc9\xb2\x92\x6b\x97\xe5\x0c\x25\xe0\xa2\xc2\x0d\x35\x8c\x17\x03\x79\x8b\x0d\xac\x83\xb5\x62\xa5\x8a\x8d\x7d\x0f\x26\x6e\x0f\x42\x04\x09\x70\x52\x6f\x55\x50\x8b\x34\xf9\x07\x81\x36\xec\x36\x90\x4a\x0b\xe7\xb0\x24\x07\xed\x50\x35\x2e\x46\xb5\x83\xc3\xce\xd0\x56\xfa\x8d\x07\xd7\x5a\x0c\x16\xf4\x69\xae\xa3\x8c\xf9\x44\xa6\xa5\x3c\x9e\xcb\x1b\x22\xb7\x11\x56\xd4\x10\xea\x24\x05\x13\x61\x2c\x55\xf7\x0a\x9d\xb4\x58\x9d\xe4\x9a\xb8\x88\x72\x1e\x0f\x35\xab\xb4\x20\x22\x60\x6d\xac\x35\x87\xf3\x7b\x76\xd1\xe2\xbc\x6d\x4b\xdf\xf2\x24\x31\x8e\x0d\x13\x01\xb5\xf8\xb9\x45\x47\x61\x4d\x61\x31\x3f\x9b\x66\xb6\xe8\x43\x88\xc4\x5a\xbf\x8c\x9c\xa7\xab\xda\x70\x73\x8e\xbb\xbf\x9b\x0e\x21\x2d\x55\x31\xcc\x15\xd3\xb5\xd9\x40\x8d\x95\xa4\x26\xa1\x1f\x2b\x74\xd3\x84\x54\xcf\x72\x16\xdb\xa7\xbd\xd7\x94\xee\x34\x68\x1c\x16\x6a\xf8\x19\x63\x4f\x9e\x7a\xfe\x34\x5c\x48\x0d\x57\xe2\x9b\x99\xa8\xd4\xa3\x12\x87\xa0\x3c\xa5\xb7\xdd\xf2\x5c\x74\x94\x14\x91\x25\x78\x58\xb3\x09\x53\x3a\x6f\x62\x65\x54\xd2\x79\xa4\x8e\x2e\xfd\xae\xa2\xc0\x34\xba\x8a\x6d\xe2\xc0\xf1\x9d\xae\x16\x6b\xb3\xc7\x6e\x42\xdc\xe9\x9c\x65\x70\xaa\x67\xe1\xa5\x71\x35\x1b\x46\x9c\xe7\x10\xe7\xea\xce\x0d\xf5\xe6\x48\xbc\x99\xbb\x75\x5a\xb2\xb8\xa5\x78\x0d\x94\xd5\xd2\x5b\x53\x40\x4e\x7a\x11\xd7\x9b\x04\x74\xa7\xf8\x84\xa6\x63\x64\x76\x43\x98\xae\x75\x24\x98\x26\x09\x97\xf9\x5e\x11\xa1\x54\x12\x09\x8f\xaf\xaa\x85\xb2\xa2\x12\x98\x4b\xe3\x5a\xd8\x53\xf3\xbe\x9b\x0a\x0d\x44\x2a\x89\x3c\x8b\x17\x44\xba\xdc\x28\xd0\x16\xb7\x17\x27\xbb\x31\xc6\xc6\xcd\x4f\x5f\x8e\xcf\x74\xb4\x9d\x8e\x89\x1a\xc5\x07\xa1\x0d\x09\x9d\x11\x93\xa4\x61\x3b\x3b\x6e\x92\x32\x1e\x95\xeb\xf4\xf8\xca\xf0\x8c\x90\x74\x09\x46\xbf\x2f\x0e\xd3\x84\x7f\x4c\x98\x13\xe0\x3d\x4f\x53\x22\xa2\x87\x0c\x93\xc1\x2c\xaa\x2a\xc7\xf2\xb7\xa7\x00\xca\xf3\x71\x98\x73\x2e\x7b\x08\xc6\x6d\xce\xe6\xc1\xf8\xfb\x65\x5c\x19\x10\x35\xe2\x9f\x9c\x2b\x9b\xc6\x58\x8f\xd5\xfd\xdd\x72\xc9\xf7\x3e\xa9\x28\x0b\x8e\xe9\x34\x67\x0f\x77\x42\x3d\x33\xb0\xe9\xf4\xb4\x6f\xe3\x5f\x46\x7f\x82\x90\x5a\x34\x4d\xe8\x59\xd7\xc6\x28\x14\x7c\xbf\xd2\x0d\x1b\xb8\xac\xca\xa1\xbc\x1e\xea\xa5\xa4\x2e\x01\x5c\xd0\x9a\xec\xf7\x2c\x73\x3a\x39\x61\x46\x9d\xbe\x31\x46\x8d\x68\xd1\x87\x78\xfc\x94\x34\x42\x96\x60\x17\x6d\xe5\x1e\x75\xec\x39\x5c\x3c\x78\xa4\x70\xd3\x19\x80\x47\xc2\x93\x9c\x39\x2c\xee\x2f\x46\xe2\x54\x35\xab\xf8\xe0\x6d\x8b\x24\x3b\x12\x8b\xf3\x55\xfa\xbd\xee\x3c\x74\xc6\x0b\xd1\xce\x13\x66\xee\xfd\x48\x5a\x45\xfb\x8e\x6b\xfd\x0b\x18\xaa\x74\x63\x33\x67\xe5\xf7\x2a\x18\x7a\x1c\x9b\x7f\x21\x0b\x3c\xd1\x30\x83\x45\xe1\xd2\x48\xf5\x99\x60\xec\xa3\xe7\x87\x76\xad\x64\x99\xe5\xc9\x17\x06\xc6\x73\x30\x4a\x8d\xc6\x0d\xe5\x94\x67\xdf\x5e\xdc\x32\xcc\xfe\x16\x32\xfa\xdf\x9f\x7e\x3f\xd0\x23\xa2\x2c\xbf\xe4\x44\x85\x79\x0a\xd1\x92\xb1\xe1\x3e\x84\x2b\xbf\x6e\xf0\x1f\xd0\xa7\x4b\x8b\x7e\x74\x05\x9b\xcf\x8e\xd7\x98\x2e\x19\xbb\xd6\xb8\xbb\x9d\x21\x44\x74\x37\x30\xaf\xc8\x81\xbd\xd9\x6f\x3a\x5e\x32\xeb\x32\xe3\xec\xc4\x2d\xb3\xe9\x99\x43\xd6\xe0\x3e\x9d\x4c\xcf\xe5\xd2\x78\x09\x2c\x7d\x3a\xd9\x99\x60\x7c\x2e\x9b\xd2\xd1\xc6\x53\xf6\x57\x00\x69\x72\x20\x3c\xae\xe2\x16\x27\x8a\x78\x46\xe0\xf2\xfb\xbe\xc0\xad\xe2\x99\x06\x97\xe3\xfd\x9d\xf8\x84\xa8\xc4\xeb\xce\xaf\xe2\x04\xa6\x6a\x62\x14\x42\x1d\xc4\x31\x94\xfe\x8d\xa4\x1e\xae\x42\xe7\xa5\x16\x83\xb3\x67\xc2\xfb\x8b\x32\xb2\x7c\xa7\x69\x2d\x9d\xe3\x3b\x89\x70\x61\xd2\x3a\x6f\xea\x2e\xbb\x10\x25\xa4\xfc\xb6\xc6\x9e\x3b\x4e\xc9\x26\x89\x3b\x61\xab\xd0\x66\x11\xa6\x65\x98\x73\x8c\x48\xe6\x34\x2d\x19\x8f\xf9\x58\xcd\x27\x58\x49\xf8\xbd\x27\x25\xe1\x7b\x1c\x8d\x9a\x33\x8c\x64\x3c\x0b\x7c\x01\x27\x39\x1d\x2a\xf0\xed\x79\x6d\x5a\x9d\xea\x6b\x98\x70\xf6\x91\x79\x0e\xbf\x29\xa5\x6b\x76\xe5\x96\xd9\xfc\x60\x4e\xef\xe4\x3f\xf1\x74\x18\xfb\xca\xec\x36\x6a\xf7\x29\x3b\xb9\x33\xb3\x82\x17\xa9\xbd\xe8\xc9\x33\xdf\xdd\xb1\xa2\x4c\xce\x25\xd3\xcc\x6c\xea\x3b\x94\x32\x1b\xf5\xbd\xfd\x5f\x18\xa4\x8a\x19\x0d\xc2\xcd\x35\xc3\x87\xe4\x34\x42\xcb\x72\xfe\x5c\x8f\x9b\xda\xd5\x54\xe9\xf4\xc6\x13\xd3\x3f\x51\x22\xeb\xf9\x93\x0d\x4a\xa4\xc4\x3b\x3f\xe7\x9b\x6e\x1c\x32\x75\x19\xf9\xfb\x6b\xc1\x4b\x7a\xd6\x33\x4d\xc2\x65\x20\xdc\xd4\x22\x68\xa9\xae\xe0\xb7\xdf\xd2\xa3\x77\xb1\x73\x90\xd5\xd5\x0d\x9c\xac\xa3\xcf\xc5\xb7\x42\x93\x55\x83\x6a\xec\xc5\xee\x5c\xc1\x82\xf9\x15\x0e\xd9\x60\x70\x0d\xdb\xb5\x63\xb5\xf0\xe5\x2e\x35\x61\xdd\x8d\x6c\x87\x83\x17\x0e\xe5\x5e\x3f\x33\x8d\xaa\x71\x8f\x73\x42\x92\x9e\x1a\x93\xbe\x62\x18\x7a\x76\x8f\xff\xce\x14\x34\x24\x38\x72\x23\xa7\xa3\xee\xc9\xf9\x81\x68\xe7\x95\x9d\xd8\xe3\x50\xf7\xd0\x08\xf2\xdf\x64\xa4\xd7\x4f\xfb\xc0\xff\xd8\x04\x16\x86\x5c\xe7\xf5\xee\x4e\x8c\xa8\x4f\x30\x03\x0a\xfb\x07\x67\xe3\x59\xfe\xd0\x1b\xbf\xec\xc6\x64\x79\x12\x19\x0d\x0a\x07\x17\xfe\x5d\xda\x18\xa5\x0c\x61\xad\x38\xa6\x66\x6b\x99\x37\x5b\x67\x68\x5a\xfc\x0b\x9a\x78\x69\xfe\x32\x98\xf5\x1a\x07\x56\x3e\x41\x59\xa6\x41\x38\x01\xc0\x1e\x00\xcc\x75\xe7\x8a\x61\xf0\x3b\x41\x90\xdc\xfe\x58\xfc\x2b\x00\x00\xff\xff\x5a\x46\xc7\x4c\x63\x29\x00\x00" +var _nonfungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5a\x4f\x8f\xe3\x36\xb2\xbf\xeb\x53\xd4\xeb\x00\x6f\xba\x03\x8f\xfb\x1d\x1e\xf6\xd0\x40\x30\x99\xa4\xd3\x0b\x63\x17\x9d\x60\xe2\x49\x0e\x8b\x45\x4c\x4b\x65\x9b\x3b\x14\xa9\x21\x29\x3b\xde\x4e\x7f\xf7\x45\x15\x49\x89\x92\xe5\xfe\x93\xec\xae\x0f\xc9\x58\x16\x8b\xc5\xaa\x5f\x55\xfd\xaa\xd8\xd7\x5f\x7e\x59\x14\x5f\x7c\x01\xcb\x1d\xc2\x9d\x32\x07\xb8\x37\xfa\xed\x5d\xab\xb7\x72\xad\x10\x96\xe6\x13\x6a\x70\x5e\xe8\x4a\xd8\x8a\x5f\x5c\xdd\x1b\x9d\x7e\xe7\x9f\x57\x50\x1a\xed\xad\x28\x7d\x51\x90\x14\xa9\x3d\xda\x8d\x28\x11\xfc\x4e\x78\x10\x4a\x4d\xc9\x4c\x6b\x1c\xb8\x9d\x69\x55\x45\x0f\x36\xc6\xd6\xe0\xcd\xbc\x58\x6c\x40\x40\xeb\xd0\xc2\x41\x68\xef\xc0\x1b\xa8\xb0\x51\xe6\x08\x02\x34\x1e\xe0\xfe\x6e\xd9\x09\x98\x81\xdf\xa1\xb4\xdd\xf7\x24\x4f\xd6\x8d\xc2\x1a\xb5\x67\xa5\xfc\xb1\x41\x07\x15\x6e\xa4\xc6\x0a\x76\x68\x31\x1e\xe6\x6e\xb9\x02\x8b\xce\xb4\xb6\xcc\x54\x0f\x27\x29\x8d\xc5\xfe\x47\x12\x11\x8e\x64\xb1\xb1\xe8\x90\x34\x13\x9a\x95\x91\x9a\xb4\x00\x57\x0b\xeb\x3b\x4d\xe6\x61\x8b\x6f\x8d\x52\x58\x7a\x69\xf4\x0a\x3e\x9c\xd9\xa9\xdf\x84\xe4\x3b\x6f\x2c\xba\x68\x82\x37\x2e\x1e\x37\x49\x99\x17\x0b\x0f\x52\x97\xaa\xad\xf8\xa5\x0d\x1e\x60\xd3\x6a\xfe\x8d\x4d\x25\x14\xf9\x91\xf4\x31\x07\x8d\x96\x1e\xa1\x70\x52\x1d\x8b\xda\xec\x11\x3c\xd9\xdf\x91\xca\x42\x57\x60\x5a\x0f\x66\xc3\x6f\xe7\x5b\xb0\xe6\x3f\x58\xb3\x97\x15\xda\x15\xbf\xb9\xfa\x80\x25\xca\x3d\x7d\x3d\x35\x98\xe3\x73\xb8\xfc\x09\x54\x58\x2a\x61\x31\x53\xee\x20\xfd\x0e\x9c\xa9\x11\x1a\x8b\x2c\xb4\x31\x8e\x0d\x56\x49\x7e\xa3\x88\xf6\xfd\xdc\x4a\x8b\xac\x54\x6f\x3d\x3a\xc7\xc6\xf0\xd9\x4a\xb4\x5e\x48\x0d\x5a\xd4\x52\x6f\x59\xd0\x1a\x77\x62\x2f\x8d\xed\xc0\xea\xe6\xac\xd2\x11\x48\x05\x87\x8d\xb0\xc2\x23\xac\xb1\x14\x2d\xa9\xe9\x61\x2b\xf7\xac\xe4\x1e\x95\x69\xd0\x3a\xde\x4e\xac\xa5\x92\xfe\x18\x10\x47\x60\xe9\xb5\x0f\xba\x95\x42\x93\x5b\x40\xe8\x63\x86\x88\x0e\x6c\x2c\xc5\x0d\x0d\xf3\xcd\x11\x5a\x47\x7a\x26\xb3\x39\xd6\xb8\x7f\x65\xc6\x8e\x76\xe4\x07\x72\xf5\x10\x45\x8e\xb7\x74\xa8\xab\x82\x56\xd9\xe0\x84\xe4\xc5\x06\xd1\xbe\xf5\xe6\x2d\xfd\x7f\xc6\xf6\x25\x87\x92\x29\xf4\x96\x0e\xc1\x9b\x50\x54\xb0\xe9\x05\x94\x48\x52\x15\x28\xac\xb6\x68\x8b\x13\xc0\x2e\x0d\x6f\x95\x70\x4d\x68\xd2\xc6\xef\xd0\xb2\x8a\xb3\x2e\x2c\x39\xc4\x1c\x1d\xfb\xc8\xa2\x2b\x2b\x02\xe4\xee\xef\x96\xc5\xc6\x9a\x3a\x46\x65\xef\x3e\x8e\x53\x0d\x25\xe5\x03\x7a\xb1\xc2\xc6\x38\xe9\x3b\xfb\x82\xd1\x83\xbd\xde\xb8\x62\xe8\xfb\xd2\x90\x91\x7d\x80\x85\xb7\x42\xbb\x0d\xda\x79\x51\x7c\x79\x5d\x14\xb2\x6e\x8c\xf5\x70\xf1\x93\xc4\x03\xc5\x98\xda\xa3\xbd\x28\x8a\xeb\xeb\x6b\x4e\x6c\x35\x81\x25\x4f\x1a\x73\xf8\x9e\x37\xca\x9f\x11\x3c\x95\xe2\x35\x51\x1c\x7b\x29\x79\x96\xb7\x1d\xa0\x3b\xe4\x12\x0e\x7d\xe9\xfa\x24\x78\x7d\x7d\x5d\x88\xb2\x44\xe7\x2e\x85\x52\x57\x7d\x62\xea\x13\xe3\x38\x85\xde\x40\xae\x38\x3c\x14\x05\x00\x00\x69\xf2\x5e\x03\x6a\x2f\x7d\xd4\x61\x63\x6c\x08\x6f\x76\xef\x0e\x3b\xdb\x0b\xc5\x51\x1c\x40\xc1\xf6\x17\xf0\x93\x68\x95\x67\x49\xb9\x3a\xb9\xb8\x9f\xe3\xea\x97\xed\xd7\x36\x95\xf0\x11\xbc\xe1\xdf\x80\x7b\xc6\x3c\xbf\xc6\x16\x7e\x72\xbb\x8f\xbc\xa8\xdf\x6c\xbc\x53\x4c\x57\x14\x50\x5b\xcb\x89\x3f\x29\xc8\x7b\xc6\xe5\x4f\xed\xf0\x3d\x49\xe8\x37\xf8\x6e\x1f\x1c\x27\xfc\x69\xbd\xc1\x5a\x7a\x38\x10\x24\xc9\x8e\x35\x7a\x51\x09\x2f\xc8\x8a\x29\xa7\xbb\x78\xca\xaa\x93\xb7\x08\xf1\x6f\xb4\x3a\xc2\x1a\x59\x84\xc7\x0a\xd6\x47\x86\x75\xf2\xc9\x8a\x9e\xdf\xdf\x2d\x83\xbe\xd5\xaa\x83\x78\x27\x27\x04\xa3\x86\x15\xbf\x22\xd6\x0a\x57\xe9\x18\x14\xe1\x1b\xb4\xa8\xa9\x18\x98\x14\x52\xe1\x0c\x07\x71\xaa\x12\xc1\x3b\xb7\x40\x63\xa3\x4f\x5c\x23\xea\x9a\xb2\x0a\xa3\xa1\xd7\x4f\xc6\x27\x7d\xa4\xb9\x37\x59\xea\x77\x9d\xe4\x94\x2a\xf9\xb4\xa5\xa9\x02\xd8\xa8\x6c\x64\xaf\x83\x89\x0e\xdb\x09\xda\x12\x4b\x29\x54\x7f\x94\xe0\xa6\x4e\x62\x3c\x4f\xb6\x19\xd9\x7d\x67\xaa\x10\x7a\x64\x52\xb2\x05\xbd\xb7\xc5\x10\x70\xa7\x56\xe9\xa4\x0d\x4d\xc0\x9e\xae\xc5\x27\x74\x94\xdb\x9d\x09\x5a\xf9\x9d\xb4\xd5\xdb\x46\x58\x7f\x04\xa9\x2b\xfc\x95\x0c\x42\x2e\xac\x8d\x96\x9e\x75\x4f\x20\xee\xc4\x11\xd4\x3e\xb7\x68\x8f\xfc\x63\xb4\x77\x0f\x90\x94\xdc\x02\x5a\x87\xb6\x9b\x27\x21\xa7\x20\xdd\xf7\x01\x50\x5d\x52\xe1\xb8\x81\x1f\xbd\x95\x7a\x3b\x03\x59\xdd\xc0\xc7\x85\xf6\x7f\xfa\xff\x19\xb4\x6d\xfe\x8d\xb7\xb8\x81\xf7\x55\x65\xd1\xb9\x77\x57\xb9\xd8\x04\xe8\x2b\xd8\xcb\xc0\x00\x60\x88\xbb\xcb\x5f\x40\x6f\xfc\x07\xdc\xdc\x80\x68\xfd\xee\x32\x3c\x86\xdf\x42\x90\x5c\xc1\xff\x3e\x8c\xd3\xd0\xfc\xfe\x6e\xf9\x18\x36\x79\xe0\xff\xd2\x87\xe3\x64\xa8\x78\x10\x3b\xdf\xa2\x5f\x1e\x1b\xbc\xbc\x9a\xcb\x8a\xfc\xb4\x91\x54\x21\x48\xff\xf8\x82\xac\xd2\x81\xe2\x03\xfa\xd2\x9d\x2a\x3e\xe3\x6f\xef\xe6\x22\x9c\x31\xec\xfe\x58\x4c\xc6\xb0\x74\x5d\xc8\x71\xe0\x8a\x90\xf0\xe8\x79\xca\x83\x7a\xd6\x2d\x94\xba\x92\xa5\xf0\x29\x2a\x49\x75\xd2\x2e\xa8\x34\xcb\xf8\xd1\x09\xfd\x89\xbb\x85\x80\xeb\x24\xb3\xe7\x67\x03\x98\xd0\xb2\x8f\x1f\x17\xb7\x49\x44\xcf\x8b\x26\xd7\x42\xeb\x5a\xa1\xd4\x71\x10\x41\x43\xcc\x70\x96\x39\xd1\x47\x3a\xd0\xc6\x07\xca\x46\xfe\x37\xad\xf6\x6f\x1c\xf3\x44\xb1\xc5\x19\xac\x48\xfc\xaa\x0b\xa2\x95\x96\x6a\xf5\x1c\x16\x53\x6a\xd5\x2f\x46\x23\x6d\xd2\x83\x71\x06\x4d\xa4\x87\x64\x81\xf4\xd6\xd5\xa4\xe3\xce\x79\x2d\x72\x00\xac\x98\x68\x4c\x19\x05\x16\xc1\x8b\xe8\xfe\x90\x13\xf3\x8d\x9e\x76\x61\x6e\xf5\xd3\xb5\xff\x36\x5f\xcd\x5e\xe7\xac\xdb\xa4\xc3\x8b\x9d\xe5\x4d\xee\xaa\x5e\xbf\x33\xce\x5a\x84\x7e\xa2\xe2\x3a\xbc\x16\xe5\xa7\x03\x51\xe8\xb7\xc4\xb9\x84\x97\x81\x14\x9f\xe8\x76\xda\x06\xc0\xe2\xfe\x6e\x79\xc3\x15\xeb\xe1\x31\x97\x3e\x68\x09\x63\x51\x73\x50\xb7\x81\xfd\xc7\xc6\xef\xac\x11\x26\x36\xe2\x7d\x72\xd6\x34\x1f\xd3\xa7\xb4\x79\xab\xe5\xe7\x16\x61\x71\xcb\x67\x4b\x1c\x35\xbd\x91\x6f\xa3\xd0\x67\x16\x1d\x4a\x99\x4e\x43\xa2\xf5\xa6\x16\x5e\x96\x1c\xd6\xb8\xe7\xaa\x21\x6b\x04\x91\xe9\x4c\x10\x72\xde\x9a\x63\x2c\xdb\x79\xdd\xe2\x16\x42\xb2\x01\x44\x82\x8f\x4c\xbe\x90\x23\x6e\x12\xb0\xe0\x0c\x21\x33\xc2\x4c\x23\xd2\x9b\x82\x3b\x51\x61\xb7\x2d\x77\xbc\x53\x87\x0b\x8b\x53\x03\x7a\x9b\x34\xba\xec\x0f\x0c\x5f\x81\x43\x95\xa7\xed\xe1\x73\x7a\x76\x35\xb4\x4a\x69\x51\x78\xfc\xae\x6e\xfc\x31\x23\xeb\xe1\x29\xab\x84\xf4\xd3\xa0\x89\x8b\x16\x4c\x85\x9e\x7b\xdd\x13\xaf\xa4\xe8\xb4\xe8\x5b\xab\xb9\xa4\x27\xf2\x20\x94\x42\x9b\x15\x78\x3c\x06\x4e\x76\x60\xd6\xe6\x06\x22\xbe\x0e\xeb\xe1\x7d\xaf\xca\x38\x41\x70\x73\x15\x75\x90\xee\x2c\x34\xa8\xbc\x4e\x1e\xf6\xf2\xea\x06\xbe\x7e\xe8\xbf\x3f\x66\xa5\x93\x3e\xdc\xe0\x0e\x1f\xd1\xc7\xa2\x6b\x95\xa7\x12\xfa\x57\xd4\x5b\xbf\xbb\xbc\x82\xaf\xbe\x82\xff\xbb\x81\x0b\x1e\x3c\xf0\x4e\x55\xae\x2c\x87\x0a\x73\xce\xc6\x1f\xff\xe7\x62\x20\xf0\xb1\xe8\xff\x35\x38\xff\x9f\xd1\x3b\x48\x0d\x17\x47\x5c\x62\x45\x61\xa8\x50\x49\x8b\xa5\x57\x47\xb2\xde\x39\xcb\x55\x92\x15\x10\xf6\xc8\xdc\x58\x29\x70\xed\xfa\xfe\x6e\xf9\x23\x7c\xc2\x63\x20\xbf\x04\xe2\x49\xab\x75\xcc\x64\x8b\xfe\xfd\x5e\x48\x45\x5e\xff\x31\x2c\x27\xc3\x3d\x2c\x39\x9b\x05\x98\x8d\x2d\x17\x35\x78\x78\xea\x74\x1c\x67\x19\x5d\x4e\x6d\xeb\xe0\x94\x27\x87\xfb\xc6\x10\xfd\x8e\xc1\xe2\x78\x40\x60\x1a\x3e\xa4\x1a\xce\x4f\x62\x0b\x5c\xee\x8c\x71\x38\x10\xb1\x33\x07\x02\x65\xc2\xa7\x6b\xd7\xc1\xbe\x15\x36\xa8\x2b\xe2\x1c\x46\xc3\x81\xe7\x5f\x83\x7d\x62\xcd\x1c\x26\x82\x3b\x63\x01\x7f\x15\xd4\x69\xce\x40\x6e\x60\x45\x06\x5d\x31\xa5\x16\xb0\x17\xaa\xc5\x19\xac\x5b\x0f\x2b\x59\xad\xa0\x32\xe8\xf4\x9b\x30\xf6\x62\x05\x87\x01\x29\x74\x54\x17\x0e\x3b\x59\xee\x82\x01\x36\xd1\x22\x3c\xaf\x30\xc9\xb2\x92\x6b\x97\xe5\x0c\x25\xe0\xa2\xc2\x0d\x35\x8c\x17\x03\x79\x8b\x0d\xac\x83\xb5\x62\xa5\x8a\x6d\x7c\x0f\x26\x6e\x0f\x42\x04\x09\x70\x52\x6f\x55\x50\x8b\x34\xf9\x07\x81\x36\xec\x36\x90\x4a\x0b\xe7\xb0\x24\x07\xed\x50\x35\x2e\x46\xb5\x83\xc3\xce\xd0\x56\xfa\x8d\x07\xd7\x5a\x0c\x16\xf4\x69\x8a\xa3\x8c\xf9\x44\xa6\xa5\x3c\x9e\xcb\x1b\x22\xb7\x11\x56\xd4\x10\xea\x24\x05\x13\x61\x2c\x55\xf7\x0a\x9d\xb4\x58\x9d\xe4\x9a\xb8\x88\x72\x1e\x8f\x30\xab\xb4\x20\x22\x60\x6d\xac\x35\x87\xf3\x7b\x76\xd1\xe2\xbc\x6d\x4b\xdf\xf2\xdc\x30\x0e\x09\x13\x01\xb5\xf8\xb9\x45\x47\x61\x4d\x61\x31\x3f\x9b\x66\xb6\xe8\x43\x88\xc4\x5a\xbf\x8c\x9c\xa7\xab\xda\x70\x73\x8e\xbb\xbf\x9b\x0e\x21\x2d\x55\x31\xcc\x15\xd3\xb5\xd9\x40\x8d\x95\xa4\x26\xa1\x1f\x2b\x74\xd3\x84\x54\xcf\x72\x16\xdb\xa7\xbd\xd7\x94\xee\x34\x56\x1c\x16\x6a\xf8\x19\x63\x4f\x9e\x7a\xfe\x34\x5c\x48\x0d\x57\xe2\x9b\x99\xa8\xd4\xa3\x12\x87\xa0\x3c\xa5\xb7\xdd\xf2\x5c\x74\x94\x14\x91\x25\x78\x58\xb3\x09\x33\x39\x6f\x62\x65\x54\xd2\x79\xa4\x8e\x2e\xfd\xae\xa2\xc0\x34\xa8\x8a\x6d\xe2\xc0\xf1\x9d\xae\x16\x6b\xb3\xc7\x6e\x1e\xdc\xe9\x9c\x65\x70\xaa\x67\xe1\xa5\x71\x35\x1b\x46\x9c\xe7\x10\xe7\xea\xce\x0d\xf5\xe6\x48\xbc\x99\xbb\x75\x5a\xb2\xb8\xa5\x78\x0d\x94\xd5\xd2\x5b\x53\x40\x4e\x7a\x11\xd7\x9b\x04\x74\xa7\xf8\x84\xa6\x63\x64\x76\x43\x98\xae\x75\x24\x98\x26\x09\x97\xf9\x5e\x11\xa1\x54\x12\x09\x8f\xaf\xaa\x85\xb2\xa2\x12\x98\x4b\xe3\x5a\xd8\x53\xf3\xbe\x9b\x0a\x0d\x44\x2a\x89\x3c\x79\x17\x44\xba\xdc\x28\xd0\x16\xb7\x17\x27\xbb\x31\xc6\xc6\xcd\x4f\x5f\x8e\xcf\x74\xb4\x9d\x8e\x89\x1a\xc5\x07\xa1\x0d\x09\x9d\x11\x93\xa4\x61\x3b\x3b\x6e\x92\x32\x1e\x95\xeb\xf4\xf8\xca\xf0\x8c\x90\x74\x09\x46\xbf\x2f\x0e\xd3\x3c\x7f\x4c\x98\x13\xe0\x3d\x4f\x53\x22\xa2\x87\x0c\x93\xc1\x2c\xaa\x2a\xc7\xf2\xb7\xa7\x00\xca\xf3\x71\x98\x73\x2e\x7b\x08\xc6\x6d\xce\xe6\xc1\xf8\xfb\x65\x5c\x19\x10\x35\xe2\x9f\x9c\x2b\x9b\xc6\x58\x8f\xd5\xfd\xdd\x72\xc9\xb7\x3c\xa9\x28\x0b\x8e\xe9\x34\x55\x0f\x37\x40\x3d\x33\xb0\xe9\xf4\xb4\x6f\xe3\x5f\x46\x7f\x82\x90\x5a\x34\x4d\xe8\x59\xd7\xc6\x28\x14\x7c\x9b\xd2\x0d\x1b\xb8\xac\xca\xa1\xbc\x1e\xea\xa5\xa4\x2e\x01\x5c\xd0\x9a\xec\xf7\x2c\x73\x3a\x39\x61\x46\x9d\xbe\x31\x46\x8d\x68\xd1\x87\x78\xfc\x94\x34\x42\x96\x60\x17\x6d\xe5\x1e\x75\xec\x39\x5c\x3c\x78\xa4\x70\xd3\x19\x80\x47\xc2\x93\x9c\x39\x2c\xee\xaf\x41\xe2\x54\x35\xab\xf8\xe0\x6d\x8b\x24\x3b\x12\x8b\xf3\x55\xfa\xbd\xee\x3c\x74\xc6\x0b\xd1\xce\x13\x66\xee\xfd\x48\x5a\x45\xfb\x8e\x6b\xfd\x0b\x18\xaa\x74\x63\x33\x67\xe5\xf7\x2a\x18\x7a\x1c\x9b\x7f\x21\x0b\x3c\xd1\x30\x83\x45\xe1\xd2\x48\xf5\x99\x60\xec\xa3\xe7\x87\x76\xad\x64\x99\xe5\xc9\x17\x06\xc6\x73\x30\x4a\x8d\xc6\x0d\xe5\x94\x67\xdf\x5e\xdc\x32\xcc\xfe\x16\x32\xfa\xdf\x9f\x7e\x3f\xd0\x23\xa2\x2c\xbf\xe4\x44\x85\x79\x0a\xd1\x92\xb1\xe1\x3e\x84\x0b\xbe\x6e\xf0\x1f\xd0\xa7\x4b\x8b\x7e\x74\xe1\x9a\xcf\x8e\xd7\x98\xae\x14\xbb\xd6\xb8\xbb\x9d\x21\x44\x74\x37\x30\xaf\xc8\x81\xbd\xd9\x6f\x3a\x5e\x32\xeb\x32\xe3\xec\xc4\x2d\xb3\xe9\x99\x43\xd6\xe0\x3e\x9d\x4c\xcf\xe5\xd2\x78\xe5\x2b\x7d\x3a\xd9\x99\x60\x7c\x2e\x9b\xd2\xd1\xc6\x53\xf6\x57\x00\x69\x72\x20\x3c\xae\xe2\x16\x27\x8a\x78\x46\xe0\xf2\xdb\xbd\xc0\xad\xe2\x99\x06\x57\xe1\xfd\x0d\xf8\x84\xa8\xc4\xeb\xce\xaf\xe2\x04\xa6\x6a\x62\x14\x42\x1d\xc4\x31\x94\xfe\x8d\xa4\x1e\xae\x42\xe7\xa5\x16\x83\xb3\x67\xc2\xfb\x8b\x32\xb2\x7c\xa7\x69\x2d\x9d\xe3\x3b\x89\x70\x61\xd2\x3a\x6f\xea\x2e\xbb\x10\x25\xa4\xfc\xb6\xc6\x9e\x3b\x4e\xc9\x26\x89\x3b\x61\xab\xd0\x66\x11\xa6\x65\x98\x73\x8c\x48\xe6\x34\x2d\x19\x8f\xf9\x58\xcd\x27\x58\x49\xf8\xbd\x27\x25\xe1\x7b\x1c\x8d\x9a\x33\x8c\x64\x3c\x0b\x7c\x01\x27\x39\x1d\x2a\xf0\x5d\x79\x6d\x5a\x9d\xea\x6b\x98\x70\xf6\x91\x79\x0e\xbf\x29\xa5\x6b\x76\xe5\x96\xd9\xfc\x60\x4e\xef\xe4\x3f\xf1\x74\x18\xfb\xca\xec\x36\x6a\xf7\x29\x3b\xb9\x33\xb3\x82\x17\xa9\xbd\xe8\xc9\x33\xdf\xdd\xb1\xa2\x4c\xce\x25\xd3\xcc\x6c\xea\x3b\x94\x32\x1b\xf5\xbd\xfd\xdf\x13\xa4\x8a\x19\x0d\xc2\xcd\x35\xc3\x87\xe4\x34\x42\xcb\x72\xfe\x5c\x8f\x9b\xda\xd5\x54\xe9\xf4\xc6\x13\xd3\x3f\x51\x22\xeb\xf9\x93\x0d\x4a\xa4\xc4\x3b\x3f\xe7\x9b\x6e\x1c\x32\x75\x19\xf9\xfb\x6b\xc1\x4b\x7a\xd6\x33\x4d\xc2\x65\x20\xdc\xd4\x22\x68\xa9\xae\xe0\xb7\xdf\xd2\xa3\x77\xb1\x73\x90\xd5\xd5\x0d\x9c\xac\xa3\xcf\xc5\xb7\x42\x93\x55\x83\x6a\xec\xc5\xee\x5c\xc1\x82\xf9\x15\x0e\xd9\x60\x70\x0d\xdb\xb5\x63\xb5\xf0\xe5\x2e\x35\x61\xdd\x8d\x6c\x87\x83\x17\x0e\xe5\x5e\x3f\x33\x8d\xaa\x71\x8f\x73\x42\x92\x9e\x1a\x93\xbe\x62\x18\x7a\x76\x8f\xff\xce\x14\x34\x24\x38\x72\x23\xa7\xa3\xee\xc9\xf9\x81\x68\xe7\x95\x9d\xd8\xe3\x50\xf7\xd0\x08\xf2\xdf\x64\xa4\xd7\x4f\xfb\xc0\xff\xd8\x04\x16\x86\x5c\xe7\xf5\xee\x4e\x8c\xa8\x4f\x30\x03\x0a\xfb\x07\x67\xe3\x59\xfe\xd0\x1b\xbf\xec\xc6\x64\x79\x12\x19\x0d\x0a\x07\x17\xfe\x5d\xda\x18\xa5\x0c\x61\xad\x38\xa6\x66\x6b\x99\x37\x5b\x67\x68\x5a\xfc\x0b\x9a\x78\x69\xfe\x32\x98\xf5\x1a\x07\x56\x3e\x41\x59\xa6\x41\x38\x01\xc0\x1e\x00\xcc\x75\xe7\x8a\x61\xf0\x3b\x41\x90\xdc\xfe\x58\xfc\x2b\x00\x00\xff\xff\xee\x5d\xf5\x18\x51\x29\x00\x00" func nonfungibletokenCdcBytes() ([]byte, error) { return bindataRead( @@ -151,7 +151,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{0x7f, 0x6f, 0x32, 0x53, 0xae, 0xd1, 0xcc, 0xc6, 0xe, 0xf5, 0x94, 0x1e, 0x4d, 0xdb, 0x89, 0xe3, 0xec, 0xbf, 0xef, 0x5f, 0x1d, 0x88, 0x7f, 0x91, 0x69, 0x2a, 0xac, 0xaa, 0x25, 0x1b, 0x66, 0xda}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x45, 0x41, 0xe6, 0x8c, 0xc7, 0xc4, 0xf2, 0x8, 0x8f, 0x10, 0x73, 0xca, 0xee, 0x3, 0x22, 0x4b, 0xca, 0x4e, 0x9e, 0x38, 0xda, 0xd, 0x25, 0x77, 0xa5, 0xb8, 0x53, 0x62, 0x6a, 0x17, 0xf}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 7e0250fd..1c505b94 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -5,24 +5,24 @@ // scripts/get_collection_ids.cdc (464B) // scripts/get_collection_length.cdc (628B) // scripts/get_collection_length_from_storage.cdc (722B) -// scripts/get_contract_storage_path.cdc (518B) +// scripts/get_contract_storage_path.cdc (520B) // scripts/get_nft_metadata.cdc (5.622kB) // scripts/get_nft_view.cdc (4.367kB) -// transactions/destroy_nft.cdc (1.277kB) -// transactions/generic_transfer_with_address.cdc (2.219kB) -// transactions/generic_transfer_with_paths.cdc (1.91kB) +// transactions/destroy_nft.cdc (1.22kB) +// transactions/generic_transfer_with_address.cdc (2.18kB) +// transactions/generic_transfer_with_paths.cdc (1.888kB) // transactions/mint_nft.cdc (2.885kB) -// transactions/nft-forwarding/change_forwarder_recipient.cdc (1.298kB) -// transactions/nft-forwarding/create_forwarder.cdc (1.594kB) -// transactions/nft-forwarding/transfer_nft_to_receiver.cdc (2.091kB) -// transactions/nft-forwarding/unlink_forwarder_link_collection.cdc (1.104kB) +// transactions/nft-forwarding/change_forwarder_recipient.cdc (1.257kB) +// transactions/nft-forwarding/create_forwarder.cdc (1.534kB) +// transactions/nft-forwarding/transfer_nft_to_receiver.cdc (2.034kB) +// transactions/nft-forwarding/unlink_forwarder_link_collection.cdc (1.044kB) // transactions/setup_account.cdc (1.326kB) -// transactions/setup_account_from_address.cdc (1.632kB) -// transactions/setup_account_from_nft_reference.cdc (1.415kB) +// transactions/setup_account_from_address.cdc (1.593kB) +// transactions/setup_account_from_nft_reference.cdc (1.374kB) // transactions/setup_account_to_receive_royalty.cdc (1.477kB) // transactions/test/upgrade_nft_contract.cdc (172B) -// transactions/transfer_nft.cdc (2.169kB) -// transactions/unlink_collection.cdc (555B) +// transactions/transfer_nft.cdc (2.171kB) +// transactions/unlink_collection.cdc (520B) package assets @@ -192,7 +192,7 @@ func scriptsGet_collection_length_from_storageCdc() (*asset, error) { return a, nil } -var _scriptsGet_contract_storage_pathCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\xcd\x6a\xc3\x30\x0c\xbe\xfb\x29\xd4\x1c\x46\x02\x25\x0f\x50\x9a\x96\xd2\xb1\xdb\xc6\xd8\xca\xee\xaa\xac\x76\x06\xd7\x2e\xb2\xd2\x32\x46\xdf\x7d\x38\xee\xdf\xd8\x61\x3a\x84\xe8\x8b\xbe\x1f\x29\x6e\xb7\x8f\xa2\x50\x3d\xb3\xa2\x45\xc5\x0f\xc7\xc7\x54\x99\x0b\x9c\xdb\x37\x4e\xd1\x1f\x58\x2a\x63\x90\x88\x53\xaa\xd1\xfb\x06\x36\x7d\x80\x1d\xba\x50\xa3\xb5\x32\x81\x85\xb5\xc2\x29\x8d\x21\xe0\x8e\x27\xf0\xae\xe2\xc2\xb6\xc9\x2f\x51\x70\xcb\xaf\xa8\x9f\x73\xf8\x36\x00\x00\x9e\x15\x14\x3a\x58\x7d\xed\x79\xfa\xcb\xb8\x7d\x79\x5a\x2d\xa3\xf7\x4c\xea\x62\x78\x44\xc5\x59\xdd\x5c\x39\xeb\x28\x12\x8f\x6c\x97\x31\xa8\x20\x65\x89\x2d\xeb\x82\x28\xf6\x41\x87\x18\x4d\x4b\xe7\x6f\xa9\x2d\xd3\xd3\x87\xfb\x15\x66\x75\x49\x97\x9f\x45\x37\xd7\x7c\x0e\x7b\x0c\x8e\xea\xea\xc2\x06\x8a\xbd\xb7\x10\xa2\xc2\x9a\xaf\xbe\x55\x63\xae\x59\x0e\x8e\x8f\xd0\xfd\x89\xd4\x4a\x71\xba\xf4\xd9\xbc\xce\x58\x2f\xc4\x79\xdf\x09\x04\xe7\xc7\x03\xbd\xb4\x5a\x72\xb8\xcd\x59\xb2\xcb\x03\xe7\x43\xe5\x12\xd6\x5e\x42\x06\x07\xe8\x74\x8b\x40\x16\xba\x81\x34\x02\x4c\x23\xf8\xe7\x90\xe6\x4e\x8c\x6c\x9b\x6e\xbf\xc5\x9c\xcc\x4f\x00\x00\x00\xff\xff\x4c\xda\xcc\xe8\x06\x02\x00\x00" +var _scriptsGet_contract_storage_pathCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\x4d\x6b\xf3\x30\x0c\xbe\xfb\x57\xa8\x39\xbc\x24\x50\xf2\x03\x4a\xd3\x52\xfa\xb2\xdb\xc6\xd8\xca\xee\xaa\xac\x76\x06\xd7\x2e\xb2\xd2\x32\x4a\xff\xfb\x70\xdc\xaf\xb1\xc3\x74\x08\xd1\x13\x3d\x1f\x52\xdc\x6e\x1f\x45\xa1\x7a\x66\x45\x8b\x8a\x1f\x8e\x8f\xa9\x32\x57\x38\xb7\x6f\x9c\xa2\x3f\xb0\x54\xc6\x20\x11\xa7\x54\xa3\xf7\x0d\x6c\xfa\x00\x3b\x74\xa1\x46\x6b\x65\x02\x0b\x6b\x85\x53\x1a\x43\xc0\x1d\x4f\xe0\x5d\xc5\x85\x6d\x93\x5f\xa2\xe0\x96\x5f\x51\x3f\xe7\x70\x32\x00\x00\x9e\x15\x14\x3a\x58\x7d\xed\x79\xfa\xc3\xb8\x7d\x79\x5a\x2d\xa3\xf7\x4c\xea\x62\xf8\x8f\x8a\xb3\xba\xb9\x71\xd6\x51\x24\x1e\xd9\x2e\x63\x50\x41\xca\x12\x5b\xd6\x05\x51\xec\x83\x0e\x31\x9a\x96\x2e\xdf\x52\x5b\xa6\xa7\xff\x4e\x8f\x3b\x9c\x67\x75\xc9\x97\x9f\x45\x39\xd7\x7c\x0e\x7b\x0c\x8e\xea\xea\xca\x07\x8a\xbd\xb7\x10\xa2\xc2\x9a\x6f\xce\x55\x63\x6e\x69\x0e\x8e\x8f\xd0\xfd\x0a\xd5\x4a\xb1\xba\xf6\xd9\xbd\xce\x58\x2f\xc4\x79\xe3\x09\x04\xe7\xc7\x03\xbd\xb4\x5a\x72\xb8\xcd\x45\xb2\xcb\x03\x97\x53\xe5\x12\xd6\x5e\x42\x06\x07\xe8\x7c\x8f\x40\x16\xba\x81\x34\x02\x4c\x23\xf8\xe3\x94\xe6\x41\x8c\x6c\x9b\xee\x3f\xc6\x9c\xcd\x77\x00\x00\x00\xff\xff\x67\xf6\xa7\x43\x08\x02\x00\x00" func scriptsGet_contract_storage_pathCdcBytes() ([]byte, error) { return bindataRead( @@ -208,7 +208,7 @@ func scriptsGet_contract_storage_pathCdc() (*asset, error) { } info := bindataFileInfo{name: "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{0x9e, 0x33, 0x1, 0xe9, 0x3e, 0x8c, 0xe, 0x3e, 0x11, 0x74, 0xf0, 0x70, 0x27, 0x6e, 0xba, 0x39, 0x7, 0xd5, 0xca, 0xc3, 0x6, 0x4d, 0x2b, 0x56, 0x8b, 0x6e, 0xd5, 0x1b, 0x9, 0x11, 0xc6, 0x3c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0xf9, 0xcc, 0x3a, 0xae, 0xcb, 0x3c, 0x60, 0x5c, 0x28, 0x64, 0xe7, 0x97, 0xe1, 0xfe, 0xeb, 0x6, 0xbb, 0xf6, 0x60, 0xd4, 0xb2, 0x7, 0xd6, 0x1b, 0x52, 0x8b, 0x8d, 0x18, 0x66, 0x14, 0x91}} return a, nil } @@ -252,7 +252,7 @@ func scriptsGet_nft_viewCdc() (*asset, error) { return a, nil } -var _transactionsDestroy_nftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4f\x6f\xdb\x3e\x0c\xbd\xfb\x53\xbc\xfa\xd0\x9f\x0d\xfc\xe6\x5c\x86\x1d\x82\xfe\xc1\xd6\xac\x40\x0e\x2b\x86\x22\xeb\xce\x8c\x45\xc7\xda\x54\xc9\x90\xe8\xb8\xc5\xd0\xef\x3e\x28\x76\x12\x3b\x2b\x3a\x60\x3c\x24\x11\x41\x3e\x3e\x3e\x92\x99\xcd\x66\x58\xd5\x3a\x40\x3c\xd9\x40\xa5\x68\x67\xd1\x69\xa9\x95\xa7\x2e\x80\x2c\xee\x6e\x57\xa8\xbc\x7b\x84\xd4\x8c\xa0\x37\x96\x7d\x40\xe9\x8c\xe1\x3e\x98\xac\x82\xe2\x20\xde\x3d\x07\x68\x49\x12\xfd\xd8\x38\x2f\xb8\x73\xf6\xb6\xb5\x1b\xbd\x36\xbc\x72\x3f\xd9\xf6\x20\xe9\xa9\x3b\xdd\xc7\x7f\x61\x21\x45\x42\x0f\x9a\xbb\x30\x04\x4f\x7c\x87\xc8\xcf\x4f\xf4\xd8\x18\x3e\x10\x4b\x8f\x8e\x34\x49\x46\x8d\x64\x5a\xcd\xf1\x6d\x69\xe5\xc3\xfb\x1c\xbf\x92\x04\x00\x62\xc3\xf7\x5c\xb1\x67\x5b\x32\xa4\x26\x41\xa7\x8d\xc1\x9a\xd1\x06\x56\xa8\x9c\xdf\x75\xea\x3a\xcb\xfe\xbf\x71\xa7\xbb\x74\xc3\x32\x72\xdd\x73\x35\x07\xb5\x52\x67\xa7\x6d\x15\xdf\x07\x0d\x73\x9c\x1f\xe9\x15\x37\x47\xb4\x1d\x5c\xe3\xb9\x21\xcf\x59\xaf\xeb\x80\xf5\xc9\x79\xef\xba\x07\x32\x2d\xe7\x38\xff\x58\x96\xae\xb5\x12\x1b\xc0\x60\x53\x12\x0b\x12\xc2\xe5\x48\x95\xc2\x73\x70\x66\xcb\x37\xce\x8a\xa7\x52\xa2\x7a\x59\xf4\xb5\xbe\xe4\xd5\x73\xc3\x73\x58\x6d\xfe\xc7\x56\x73\xd7\x3f\xe3\xe7\xc5\x44\xec\xe2\xee\x76\x75\x33\x29\x71\x95\xe5\x39\x28\x9c\xe1\x2f\x71\xd7\x07\x9a\xd1\xae\xaf\xd1\x90\xd5\x65\x96\xc6\xf0\xfb\x9e\x98\x87\x72\x1c\x60\x9d\x60\xa0\x8a\x3f\x60\x76\xec\xd2\x7c\x02\x76\x78\xcc\x66\x58\xef\x44\x02\xc1\x1f\x87\xe9\xde\x9a\x5c\xb4\xc0\xa6\x2a\x26\xe3\xc3\xe5\xb0\xd3\x45\x10\xe7\x69\xc3\x45\x0f\x7c\xf1\x6f\x53\xbd\xca\x26\x84\xa3\xc5\x15\x9d\x9f\x8c\x6b\x5f\xec\x2b\x49\x3d\x49\xc8\x47\x82\x0d\x83\x3f\x6a\x15\x93\x38\x9e\xa4\x5b\xff\xe0\x52\x40\xd2\xdf\x64\xc3\xa5\xae\x34\x2b\x34\x24\x75\x9a\xf7\x9b\xf5\xd2\x7f\xf1\x13\x97\xad\xf0\x7e\xfb\x07\xf1\xf6\x07\xbe\xcb\x9f\x1c\xf8\x1b\xe2\xc5\xad\xb3\x95\xe0\xe2\xdd\x2b\x3a\x16\x7b\xc8\x6c\xff\x63\xb9\x98\x43\xab\xfc\x58\x77\xf8\x93\x88\x18\x63\x86\x8d\x0b\x32\xda\xed\xb3\x57\xb0\x37\x2c\xcb\x45\xc8\xf2\xa2\x74\x56\x48\xdb\x90\x69\x95\xcf\x91\xae\x06\xf6\xb1\xe4\x89\x14\xcb\x05\x42\xed\x5a\xa3\x50\xd3\x96\xb1\x66\xb6\x50\x6c\x58\x58\xa5\x43\xf5\x97\xe4\x77\x00\x00\x00\xff\xff\x8a\xb2\x98\xa2\xfd\x04\x00\x00" +var _transactionsDestroy_nftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x93\x4f\x6f\xdb\x38\x10\xc5\xef\xfa\x14\x2f\x3a\x64\x25\x60\x57\xbe\x2c\xf6\x60\xe4\x0f\xb6\x71\x0d\xf8\x50\xa3\x08\xd4\xf4\x3c\x16\x47\x16\x5b\x86\x14\xc8\x51\x94\xa0\xc8\x77\x2f\x68\xc9\xb1\x94\x06\x29\xd0\x39\xd8\x16\xcd\x79\xf3\xd3\x9b\x99\xc5\x62\x81\xb2\xd1\x01\xe2\xc9\x06\xaa\x44\x3b\x8b\x5e\x4b\xa3\x3c\xf5\x01\x64\xb1\x5d\x97\xa8\xbd\xbb\x87\x34\x8c\xa0\xf7\x96\x7d\x40\xe5\x8c\xe1\xe1\x32\x59\x05\xc5\x41\xbc\x7b\x0a\xd0\x92\x24\xfa\xbe\x75\x5e\x90\x6e\x9d\x5d\x77\x76\xaf\x77\x86\x4b\xf7\x9d\x6d\xfa\xf2\xcf\x27\x16\x52\x24\x74\xa7\xb9\x0f\xa7\xe3\x8f\x8f\x74\xdf\x1a\xde\xae\xcb\x34\x49\x26\x3c\x99\x56\x4b\x7c\xd9\x58\xf9\xef\xdf\x1c\x3f\x92\x04\x00\x22\xf7\x2d\xd7\xec\xd9\x56\x0c\x69\x48\xd0\x6b\x63\xb0\x63\x74\x81\x15\x6a\xe7\x0f\xc0\xae\xb7\xec\xff\x9a\x02\x1f\xd2\x0d\xcb\xe4\xe8\x96\xeb\x25\xa8\x93\x26\x7b\xcd\x5c\x7c\x1d\xad\xc8\x71\x7e\xc2\x2b\x6e\x4e\x6a\x07\xb9\xd6\x73\x4b\x9e\xb3\xc1\x9e\x51\xeb\x83\xf3\xde\xf5\x77\x64\x3a\xce\x71\xfe\x7f\x55\xb9\xce\x4a\x7c\x01\x8c\x31\x87\x58\x91\x10\x2e\x31\xa9\xe2\x39\x38\xf3\xc0\x37\xce\x8a\xa7\x4a\xa2\x5b\x59\x3c\xeb\x7c\xc5\xe5\x53\xcb\x4b\x58\x6d\xfe\xc6\x83\xe6\x7e\x78\x8c\x9f\x17\x33\x73\x8b\xed\xba\xbc\x99\x95\xb8\xca\xf2\x1c\x14\xce\xf0\x9b\x7b\xd7\x2f\x98\x31\xae\xaf\xd1\x92\xd5\x55\x96\xc6\xeb\xb7\x03\x98\x87\x72\x1c\x60\x9d\x60\x44\xc5\x2f\x32\x07\xba\x34\x9f\x89\xbd\x3c\x2c\x16\xd8\x1d\x4c\x02\xc1\x9f\x9a\xe9\xde\xeb\x5c\x8c\xc0\xa6\x2e\x66\xed\xc3\xe5\x38\x9a\x45\x10\xe7\x69\xcf\xc5\x20\x7c\xf1\x67\x5d\xbd\xca\x66\xc0\x31\xe2\x0a\x2c\x5f\xb5\xeb\x58\xec\x33\x49\x33\x4b\xc8\x27\x86\x8d\x8d\x3f\x79\x15\x93\x38\x6e\x96\xdb\x7d\xe3\x4a\x40\x32\xac\x56\xcb\x95\xae\x35\x2b\xb4\x24\x4d\x9a\x0f\x93\xf5\x3c\x7c\xf1\x23\x57\x9d\xf0\x71\xfa\x47\xf3\x8e\x7b\x7a\xc8\x9f\xed\xe9\x3b\xe6\xc5\xa9\xb3\xb5\xe0\xe2\x9f\x37\x7c\x2c\x8e\x92\xd9\xf1\xc7\x66\xb5\x84\x56\xf9\xa9\xee\xb8\xeb\x51\x63\x4a\xd8\xba\x20\x93\xd9\x3e\x7b\x43\x7b\xcf\xb2\x59\x85\x2c\x2f\x2a\x67\x85\xb4\x0d\x99\x56\xf9\x12\x69\x39\xd2\xc7\x92\xaf\xac\xd8\xac\x10\x1a\xd7\x19\x85\x86\x1e\x18\x3b\x66\x0b\xc5\x86\x85\x55\x3a\x56\x7f\x4e\x7e\x06\x00\x00\xff\xff\xab\x4a\x43\x7d\xc4\x04\x00\x00" func transactionsDestroy_nftCdcBytes() ([]byte, error) { return bindataRead( @@ -268,11 +268,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{0xe2, 0xc4, 0xe0, 0xc2, 0xae, 0x67, 0x72, 0x60, 0x17, 0x3a, 0x73, 0x43, 0x52, 0xe6, 0xe5, 0x55, 0xd0, 0x45, 0x1f, 0x13, 0x1a, 0x2e, 0x2a, 0xb1, 0xb0, 0x47, 0xbb, 0x79, 0x52, 0x4c, 0x88, 0x96}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0xcd, 0x49, 0x22, 0xae, 0x5c, 0xae, 0xdf, 0xe, 0xfd, 0x4b, 0x49, 0xb5, 0xce, 0x2a, 0x9e, 0xd, 0x9a, 0xb2, 0x9f, 0x3a, 0x38, 0xdb, 0x4, 0x47, 0x5c, 0x12, 0x71, 0xbe, 0x1f, 0xdb, 0x7b}} return a, nil } -var _transactionsGeneric_transfer_with_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x6f\xe3\x36\x10\xbd\xfb\x57\x4c\x7d\xc8\x4a\x40\xa2\x5c\x8a\x1e\x04\x6f\xd2\xad\x03\x03\x7b\xa8\x51\x6c\xbd\xe9\x99\x26\x47\x36\x5b\x99\x24\xc8\x91\x5d\x23\xf0\x7f\x2f\xf8\xa5\x48\xb6\x53\xaf\x0f\x81\x42\xce\x0c\xdf\xbc\xf7\x66\xe4\xce\x68\x4b\xb0\xd4\x6a\xd1\xa9\x8d\x5c\xb7\xb8\xd2\xff\xa0\x82\xc6\xea\x1d\x4c\xcf\x8f\xa7\x93\x14\xff\x3b\x12\x13\x8c\xd8\xab\xc4\x83\x4b\xc1\xa3\xb3\xe9\x64\xf2\xf8\xf8\x08\x73\xa6\xc0\x30\xe7\x40\x2a\x60\xea\x08\x5c\x2b\xb2\x8c\x13\x30\x21\x2c\x3a\x07\x4c\x09\x50\x6c\x87\x21\x7a\xb5\x95\x0e\x5a\x24\x07\x47\xdd\x01\xdf\x6a\xed\x10\x68\x8b\x40\x01\x93\x3f\x3c\x30\x45\x40\x1a\x1c\x2a\x01\x6b\xe4\xac\x73\x31\x37\x84\x59\xa6\x1c\xe3\x24\xb5\x82\x8d\x2f\xe3\x0f\x77\x09\x56\x44\xe9\x4f\x8c\xd5\x7b\x29\x50\xf4\x68\x2a\x5f\x61\x32\xc8\x2e\x48\xd7\xf0\x25\x42\xbc\x07\x29\x6a\xf8\xfe\x55\xd1\x2f\x3f\xdf\xf7\x29\xe9\x72\x10\x95\x6f\x96\x6c\x87\x35\xfc\x49\x56\xaa\x4d\x09\x6f\x93\x09\x00\x40\x68\x0e\x61\xb9\x58\x81\x45\xa7\x3b\xcb\x7d\x53\xb0\x4e\x98\x1b\xb4\x16\x45\x88\x6c\x91\x80\x70\x67\x96\x8b\x55\x0d\xbf\xbe\x9d\x2b\x50\x2d\x17\xab\x53\x5f\x73\xb9\x58\xcd\x75\xdb\x62\x00\xfd\xe2\x9b\x74\x64\x3b\x1e\x18\xda\x20\x81\x61\xb4\x8d\xf2\xf4\xb5\xf9\x28\xbe\x1e\x2b\x59\x5d\x14\x8c\x4f\x19\x8b\x86\x59\x2c\x9c\xdc\x28\xb4\x35\xb0\x8e\xb6\xc5\x6f\xda\x5a\x7d\x78\x65\x6d\x87\x25\xdc\x7d\xe1\x5c\x77\x8a\xfa\x8e\x13\xc2\x18\x04\x0c\x2c\x36\x68\x51\xc5\xbe\xbd\x0a\xaa\xa1\x77\x3b\x08\x34\xad\x3e\xa2\xc8\x97\xde\x33\x28\x80\xc5\xa2\x7d\x41\xdf\x80\xe7\xaf\xdd\xa3\xfd\x86\x0d\x7c\xf6\x5d\xa6\x97\x8b\x33\x69\xca\x3e\xcb\xff\xaa\x7c\xeb\xaa\x75\x80\x34\xbb\x3b\xa7\xf6\xa9\x50\x41\xba\xa1\x90\xe3\x22\xcf\xcf\x60\x98\x92\xbc\x98\xce\x75\xd7\x0a\x50\x9a\x60\xfd\x71\x83\x5a\x3d\x34\xe9\x81\xe4\xe0\x5c\x7a\x5a\x8e\x48\xfa\x1e\x6c\xce\x68\x5c\xc3\x22\x59\x89\xfb\x38\x01\x97\x4a\xef\x25\x1e\xa0\xaf\xe2\xb0\x6d\xaa\xb1\xb6\xf0\x79\xc8\x55\x95\xbe\xe7\x09\x82\xd7\xbb\xc8\x5e\x5c\x1d\x0d\xd6\xa0\x64\x7b\x1f\xca\xc6\x7f\xfd\xdf\xd9\x0d\x7b\x3c\x15\x65\x09\xcc\xfd\x74\xcb\x46\xcf\x37\x79\x4c\xf0\xfe\xaf\xd9\x46\xdb\x70\xbd\x91\x7b\x54\xb7\xe8\x1d\xf2\xfb\xb1\x46\xd1\xd0\x9f\x5c\x98\xcc\x77\xfa\x46\x86\x3b\x48\xda\x0a\xcb\x0e\xd1\x70\x31\xa3\x72\xa4\x2d\xdb\x60\x36\x53\x18\x88\x8b\x59\xfd\x2b\x65\x96\x70\x77\x39\xc8\xef\x1d\x9e\x9e\x8a\x11\x3d\xfe\xe7\x67\xb6\xbe\xa6\x6a\x7e\xf9\x0f\x46\xdb\x51\x56\x39\xa0\x35\x8d\x04\x08\x8d\x2e\xb0\xeb\x93\x10\xd8\xa0\x45\xd0\xeb\xbf\xd1\x2f\x62\x8a\x44\x18\xe4\xb2\x91\x28\xc2\xce\x18\xfa\x33\x60\x48\x1b\x09\x66\x0f\x43\x3a\xaa\xfc\x5d\xe4\x8f\xaf\x2f\x35\x48\x11\xa7\x26\xad\x29\xfc\x17\x79\x47\x08\x6f\x43\x45\xfc\x72\xf2\xcf\x5a\xe4\xd2\x48\x54\xe4\xc0\x74\xeb\x56\xf2\x3c\xf2\x09\xde\xd9\xe4\xa7\xe0\xf1\xdc\x93\x2e\xaf\xab\x9d\x2a\x5e\x88\x6e\x91\xa3\xdc\xa3\x75\x1f\x29\x9e\x03\xe6\xcc\x84\x21\x4a\xcf\x56\x9c\x19\xb6\x96\xad\x24\x89\xae\xda\x20\xcd\xae\xc8\xfa\x2d\xe5\x9e\x9e\x8a\x6b\xea\x45\x4c\x5e\xbc\xdb\xab\xe5\x82\xa4\x4f\x0e\x72\x79\x98\x67\x2c\xc7\xa1\x58\x43\xf4\xd1\xaf\x83\x5e\x92\x59\x8b\x1f\x5e\x6a\xd7\x98\xeb\x91\xe4\xc2\x67\xbb\xec\x05\x8d\x76\x92\xf2\x1c\x9f\x73\xde\x87\x0e\x50\x56\x22\xe6\x14\x61\x8a\x6b\x98\x3d\x0c\x3d\x97\xcd\x74\xfa\x2f\x00\x00\xff\xff\xac\x6b\x83\x3c\xab\x08\x00\x00" +var _transactionsGeneric_transfer_with_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x6f\xe3\x36\x10\xbd\xfb\x57\x4c\x7d\xd8\x95\x80\x44\xb9\x14\x3d\x08\xd9\xa4\x5b\x07\x06\xf6\x50\xa3\xd8\x7a\xb7\x67\x9a\x1c\xc9\x6c\x65\x92\x20\x47\x76\x8d\xc0\xff\xbd\xe0\x97\x22\xd9\x4e\xbd\x3a\x18\xb2\x38\x33\x7c\xf3\xde\x9b\x91\x3b\xa3\x2d\xc1\x7c\xa5\xd5\xb2\x57\xad\xdc\x74\xb8\xd6\xff\xa0\x9a\xcf\xf2\xc9\xef\x48\x4c\x30\x62\xdf\x25\x1e\xdc\x7c\x36\x7b\x78\x78\x80\x05\x53\x60\x98\x73\x20\x15\x30\x75\x04\xae\x15\x59\xc6\x09\x98\x10\x16\x9d\x03\xa6\x04\x28\xb6\xc3\x10\xbd\xde\x4a\x07\x1d\x92\x83\xa3\xee\x81\x6f\xb5\x76\x08\xb4\x45\x20\x7f\x53\xf8\x78\x60\x8a\x80\x34\x38\x54\x02\x36\xc8\x59\xef\x62\x6e\x08\xb3\x4c\x39\xc6\x49\x6a\x05\xad\x2f\xe3\x3f\xee\x12\x2c\x68\xac\xde\x85\x2f\xc6\xea\xbd\x14\x28\x06\x34\x95\xaf\x30\x1b\x65\x17\xa4\x6b\xf8\x1c\x21\xde\x81\x14\x35\x7c\xfb\xa2\xe8\x97\x9f\xef\x86\x94\x74\x38\x8a\xca\x27\x2b\xb6\xc3\x1a\xfe\x24\x2b\x55\x5b\xc2\xeb\x6c\x06\x00\x10\x9a\x43\x58\x2d\xd7\x60\xd1\xe9\xde\x72\xdf\x14\x6c\x12\xe6\x06\xad\x45\x11\x22\x3b\x24\x20\xdc\x99\xd5\x72\x5d\xc3\xaf\xaf\xe7\x74\x57\xab\xe5\xfa\x34\xd4\x5c\x2d\xd7\x0b\xdd\x75\x18\x40\xbf\xf8\x26\x1d\xd9\x9e\x07\x86\x5a\x24\x30\x8c\xb6\x2e\x34\x3e\xd4\xe6\x93\xf8\x1a\x26\xaa\x55\x17\x05\xe3\x55\xc6\xa2\x61\x16\x0b\x27\x5b\x85\xb6\x06\xd6\xd3\xb6\xf8\x4d\x5b\xab\x0f\xdf\x59\xd7\x63\x09\x1f\x3e\x73\xae\x7b\x45\x43\xc7\x09\x61\x0c\x02\x06\x16\x1b\xb4\xa8\x62\xdf\x5e\x05\xd5\xd0\x9b\x1d\x04\x9a\x4e\x1f\x51\xe4\x43\xef\x19\x14\xc0\x62\xd1\xa1\xa0\x6f\xc0\xf3\xd7\xed\xd1\x7e\xc5\x06\x3e\xf9\x2e\xd3\xcd\xc5\x99\x34\xe5\x90\xe5\x9f\x2a\x9f\xba\x6a\x13\x20\x3d\x7e\xb8\xe0\xf6\xf4\x54\xa8\x20\xde\x58\xca\x69\x99\xe7\x67\x30\x4c\x49\x5e\xcc\x17\xba\xef\x04\x28\x4d\xb0\x79\xbf\x45\xad\xee\x9b\x74\x43\xf2\x70\x2e\x3d\x2f\x27\x34\x7d\x0b\x46\x67\x34\xad\x61\x91\xac\xc4\x7d\x9c\x81\x4b\xad\xf7\x12\x0f\x30\x54\x71\xd8\x35\xd5\x54\x5d\xf8\x34\x66\xab\x4a\xef\x8b\x04\xc1\x2b\x5e\x64\x37\xae\x8f\x06\x6b\x50\xb2\xbb\x0b\x65\xe3\x5f\xff\xfb\x78\xc3\x20\x4f\x45\x59\x02\x73\x3f\xdd\x32\xd2\xf3\x4d\x1e\x13\xbc\xff\x6b\xb6\xd1\x36\x1c\xb7\x72\x8f\xea\x16\xbd\x63\x7e\xdf\xd7\x28\x5a\xfa\xa3\x0b\xb3\xf9\x46\xdf\xc4\x72\x07\x49\x5b\x61\xd9\x21\x5a\x2e\x66\x54\x8e\xb4\x65\x2d\x66\x3b\x85\x91\xb8\x98\xd6\xbf\x52\x66\x09\x97\x76\xab\xde\x3a\x3c\x3d\x15\x13\x7a\xfc\xe3\xa7\xb6\xbe\xa6\x6a\xbe\xf9\x0f\x46\xdb\x49\x56\x39\xa2\x35\x0d\x05\x08\x8d\x2e\xb0\xeb\x93\x10\xd8\xa8\x45\xd0\x9b\xbf\xd1\xaf\x62\x8a\x44\x18\xe4\xb2\x91\x28\xc2\xd6\x18\xfb\x33\x60\x48\x3b\x09\x1e\xef\xc7\x74\x54\xf9\xbd\xc8\x2f\x5f\x5e\x6a\x90\x22\x4e\x4d\x5a\x54\xf8\x2f\xf2\x9e\x10\x5e\xc7\x8a\xf8\xf5\xe4\xaf\xb5\xc8\xa5\x91\xa8\xc8\x81\xe9\x37\x9d\xe4\x79\xe8\x13\xbc\xb3\xd9\x4f\xc1\xd3\xc9\x27\x5d\x5e\x57\x3b\x55\xbc\x10\xdd\x22\x47\xb9\x47\xeb\xde\x53\x3c\x07\x2c\x98\x09\x43\x94\xae\xad\x38\x33\x6c\x23\x3b\x49\x12\x5d\xd5\x22\x5d\xd9\x22\xd5\xd7\x94\x7b\x7a\x2a\xae\xa9\x17\x31\x79\xf1\x6e\xaf\x96\x0b\x92\x3e\x3a\xc8\xe5\x61\x91\xb1\x1c\xc7\x62\x8d\xd1\x47\xbf\x8e\x7a\x49\x66\x2d\x7e\x78\xa9\x5d\x63\x6e\x40\x92\x0b\x9f\xed\xb2\x17\x34\xda\x49\xca\x73\x7c\xce\xf9\x10\x3a\x42\x59\x89\x98\x53\x84\x29\xae\xe1\xf1\x7e\xec\xb9\x6c\xa6\xd3\x7f\x01\x00\x00\xff\xff\xd2\x1e\x30\x30\x84\x08\x00\x00" func transactionsGeneric_transfer_with_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -288,11 +288,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{0x6e, 0xee, 0x51, 0x11, 0xb, 0x27, 0xf4, 0x86, 0xee, 0xc3, 0xe1, 0xcc, 0x36, 0x8a, 0x58, 0x4b, 0x52, 0x82, 0x19, 0xd, 0xa9, 0x3c, 0x87, 0xd9, 0x33, 0x30, 0x7, 0xd7, 0xeb, 0xfd, 0x42, 0xc8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x81, 0x69, 0x13, 0xdb, 0x36, 0x99, 0x48, 0xac, 0x14, 0x8d, 0x50, 0x30, 0xc8, 0xe1, 0x2e, 0x7, 0xb1, 0x46, 0x28, 0x78, 0x3c, 0xe9, 0x61, 0x45, 0x70, 0xae, 0x65, 0xa0, 0xde, 0x99, 0x70, 0x82}} return a, nil } -var _transactionsGeneric_transfer_with_pathsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x94\x4f\xaf\xda\x38\x14\xc5\xf7\x7c\x8a\x23\x16\x6d\x90\x68\xd8\x8c\x66\x81\xa0\x9d\x37\x54\x48\x6f\x83\xaa\x96\x99\x59\x1b\xfb\x86\xb8\x2f\xd8\x91\x7d\xf3\x18\xf4\xc4\x77\x1f\xd9\x4e\x42\xf8\x53\x55\xa3\xb2\x72\x82\x7d\xee\xb9\xbf\x7b\x1c\x7d\xa8\xad\x63\x6c\xac\x59\x37\x66\xaf\x77\x15\x6d\xed\x0b\x19\x14\xce\x1e\x30\xbe\x7d\x3d\x1e\x8d\x66\xb3\x19\x56\xc2\xa0\x16\xde\x43\x1b\x08\x73\x82\x67\xeb\xc4\x9e\x50\x0b\x2e\x21\x8c\x82\x23\x49\xfa\x95\x5c\x7a\xa3\x8d\x67\x12\x0a\xb6\xc0\xf7\xc6\x33\xb8\x24\x28\x2a\x44\x53\x71\x1e\xf5\xb6\xa5\xf6\xa8\x88\x3d\x4e\xb6\x81\x2c\xad\xf5\x14\x77\x71\xf4\x12\x5e\x1e\x85\x61\xb0\x85\x27\xa3\x20\x3c\x8e\x54\x55\x71\x8b\x14\xb5\xd8\xe9\x4a\xf3\xe9\x7e\x9f\x0e\xcb\x58\x22\x96\x79\x32\xa7\x56\x31\xda\x92\xc2\x60\x47\xb1\x11\x8a\x9a\xc2\x40\xb8\x7d\x73\x20\xc3\x28\xc9\xd1\x14\xde\xe2\x28\xaa\xe8\xcc\x97\xb6\xa9\x54\xd4\x49\x4b\xc8\x92\xe4\xcb\xe5\xc4\xab\xa8\x1a\xf2\xa1\xf6\x41\xbc\x10\x7c\xe3\x52\x0f\xda\x30\x19\x45\x6a\x58\x5a\xfb\xae\xac\x36\xd1\x1e\x3b\x61\xbc\x90\xac\xad\xc9\xd8\xce\xf1\xa4\x94\x23\xef\xa7\xd0\x6a\x8e\xbf\x9e\x0d\xff\xfe\xdb\x34\xf6\x44\xee\x8b\xe0\xf2\x59\x91\x61\x5d\x68\x72\x73\x7c\x63\xa7\xcd\x7e\xda\x33\x7f\xfc\xff\x04\x6f\xa3\x11\x00\x44\xdc\x84\xcd\x7a\x0b\x47\xde\x36\x4e\x06\xcc\x01\x44\xf4\x50\x90\x73\xa4\xe2\xce\x8a\x18\x4c\x87\x7a\xb3\xde\xce\xf1\xc7\xdb\x6d\x16\xf2\xcd\x7a\x7b\x4e\x9a\xb5\xa3\x5a\x38\xca\xbc\xde\x9b\x50\x52\x34\x5c\x66\x7f\x5a\xe7\xec\xf1\xef\x40\x65\x82\x77\x4f\x52\xda\xc6\x70\x6f\xa3\x2b\xd0\x46\x27\x98\xc6\x12\xdf\x2e\x4f\x99\x1e\xf4\xf0\xa8\xf3\x49\xaf\x13\x7e\x9f\x3e\xa1\x16\x46\xcb\x6c\xbc\x8a\xc3\x31\x96\x21\xad\xf1\xec\x1a\xc9\x10\xd7\x11\x8d\xe1\x0e\xb3\xa9\x9d\x7d\xd5\x61\x36\x69\x2a\xbd\x36\x7c\x84\x36\x9e\x5c\xcc\xce\x66\xd8\xc5\x8e\x20\xe0\xa8\x20\x47\x26\x91\x0b\x3a\xa9\xf1\xf7\x3e\x62\x95\xb6\xaa\x28\x8e\xf2\xaa\xd3\xa3\xe6\x52\x39\x71\xfc\x4a\x05\x96\xed\x89\xbc\xb5\x95\x27\xe9\x45\x04\x77\x07\xfa\x9f\xf6\xe4\x04\xef\xee\xa7\xb0\xea\xab\x9d\x3f\x66\x57\x48\xc2\x2f\x74\x3a\x1f\x42\xbe\xda\x31\x19\x60\x6b\x07\x04\x65\xc9\x47\x7a\xe1\x10\x41\x0c\xda\x81\xdd\x7d\xa7\x40\x33\x5d\x61\x5f\x93\x0c\xb4\x12\xbd\x21\x2b\x4f\x55\x91\xb7\xd1\xc1\xe2\xc3\xb0\xf5\xbc\x5b\x67\xdd\xe2\xf9\xf3\x1c\x5a\xa5\x69\xb6\x79\xa2\x7f\x49\x36\x4c\x78\xbb\x02\x58\x37\xbb\x4a\xcb\x36\x29\x5f\xfa\x87\xab\xa0\x3c\xbe\x04\xff\x2f\x2a\xa9\xce\x2f\x25\x65\x4f\x09\x91\x23\xa9\x6b\x4d\x86\x7d\xa7\x2a\x5a\xcc\x09\xe5\x55\x7f\xfd\x66\x2c\x83\x40\x3b\x90\x8c\xed\x0f\x52\xd8\x2a\xde\x85\xb1\x63\xe0\x7f\x94\xc4\x6e\xc3\x4a\xd4\x58\x5e\xca\xe6\xfd\xa7\x54\x93\xcf\xf7\xc4\x8b\x07\x71\xfb\xda\x9e\x3d\x7f\xcc\x2e\xf3\xf8\x39\xdf\x3b\x20\xef\x3d\x3a\x29\xac\xfa\x4f\xf8\x10\xe3\xd0\x69\xba\x33\x03\xdf\xed\x85\xc9\x7e\x5e\xb9\xc5\xf5\x88\x52\xef\xa4\x13\xbe\x99\xe2\x67\xaa\xad\xd7\xc9\x78\x48\xf2\x0d\xdf\x7e\xeb\xc0\x65\xae\xd2\x99\x2c\x7e\xec\xe7\x58\x7c\x18\xde\x85\x2e\xe4\xe7\xff\x02\x00\x00\xff\xff\x33\x88\xdb\xe7\x76\x07\x00\x00" +var _transactionsGeneric_transfer_with_pathsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x94\x41\x8f\xe2\x38\x10\x85\xef\xfc\x8a\x27\x0e\x33\x41\x62\xc2\x65\xb5\x07\x04\x33\xdb\xcb\x08\xa9\x2f\x68\x34\xc3\xee\x9e\x8d\x5d\x21\x9e\x0e\x76\x64\x57\x9a\x45\x2d\xfe\xfb\xca\x76\x12\x42\x43\xab\xb5\x1a\x4e\x4e\xa8\x7a\x55\xf5\xd5\x73\xf4\xa1\xb6\x8e\x31\xde\x58\xb3\x6e\xcc\x5e\xef\x2a\xda\xda\x27\x32\xe3\xd1\x68\x36\x9b\x61\x25\x0c\x6a\xe1\x3d\xb4\x81\x30\x27\x78\xb6\x4e\xec\x09\xb5\xe0\x12\xc2\x28\x38\x92\xa4\x9f\xc9\xa5\x37\xda\x78\x26\xa1\x60\x0b\xfc\x6c\x3c\x83\x4b\x82\xa2\x42\x34\x15\xe7\x51\x6f\x5b\x6a\x8f\x8a\xd8\xe3\x64\x1b\xc8\xd2\x5a\x4f\x31\x8a\x43\xd1\xf8\xf2\x28\x0c\x83\x2d\x3c\x19\x05\xe1\x71\xa4\xaa\x8a\x21\x52\xd4\x62\xa7\x2b\xcd\xa7\xdb\x38\x1d\x8e\xb1\x44\x2c\xf3\x60\x4e\xad\x62\x6c\x4b\x0a\x83\x1d\xc5\x41\x28\x6a\x0a\x03\xe1\xf6\xcd\x81\x0c\xa3\x24\x47\x53\x78\x8b\xa3\xa8\x62\x67\xbe\xb4\x4d\xa5\xa2\x4e\x3a\x42\x96\x24\x9f\x2e\x19\xcf\xa2\x6a\xc8\x87\xda\x07\xf1\x44\xf0\x8d\x4b\x33\x68\xc3\x64\x14\xa9\x61\x69\xed\xbb\xb2\xda\xc4\xf6\xd8\x09\xe3\x85\x64\x6d\x4d\xc6\x76\x8e\x07\xa5\x1c\x79\x3f\x85\x56\x73\xfc\xf5\x68\xf8\xf7\xdf\xa6\x71\x26\x72\xdf\x04\x97\x8f\x8a\x0c\xeb\x42\x93\x9b\xe3\x07\x3b\x6d\xf6\xd3\x9e\xf9\xfd\xff\x27\x78\x19\x8d\x00\x20\xe2\x26\x6c\xd6\x5b\x38\xf2\xb6\x71\x32\x60\x0e\x20\x62\x0f\x05\x39\x47\x2a\x46\x56\xc4\x60\x3a\xd4\x9b\xf5\x76\x8e\x3f\x5e\x5e\x7b\x21\xdf\xac\xb7\xe7\xa4\x59\x3b\xaa\x85\xa3\xcc\xeb\xbd\x09\x25\x45\xc3\x65\xf6\xa7\x75\xce\x1e\xff\x0e\x54\x26\xf8\xf0\x20\xa5\x6d\x0c\xf7\x6d\x74\x05\x5a\xeb\x84\xa6\xb1\xc4\x8f\xcb\x53\xa6\x07\x33\xdc\x9b\x7c\xd2\xeb\x84\xdf\x97\x2f\xa8\x85\xd1\x32\x1b\xaf\xe2\x72\x8c\x65\x48\x6b\x3c\xbb\x46\x32\xc4\xb5\x45\x0b\x67\x0f\x71\x37\xb5\xb3\xcf\x3a\xec\x26\x6d\xa5\xd7\x86\x8f\xd0\xc6\x93\x4b\xb3\xb3\x19\x76\x71\x22\x08\x38\x2a\xc8\x91\x49\xe4\x82\x4e\x1a\xfc\xa3\x8f\x58\xa5\xad\x2a\x8a\xab\xbc\x9a\xf4\xa8\xb9\x54\x4e\x1c\xbf\x53\x81\x65\x9b\x91\xb7\x6d\xe5\x49\x7a\x11\xc1\xdd\x80\xfe\xa7\xcd\x9c\xe0\xc3\xed\x16\x56\x7d\xb5\xf3\xe7\xec\x0a\x49\xf8\x85\x49\xe7\x43\xc8\x57\x11\x93\x01\xb6\x76\x41\x50\x96\x7c\xa4\x17\x92\x08\x62\x30\x0e\xec\xee\x27\x05\x9a\xe9\x0a\xfb\x9a\x64\xa0\x95\xe8\x0d\x59\x79\xaa\x8a\xbc\xb5\x0e\x16\x9f\x86\xa3\xe7\xdd\x39\xeb\x0e\x8f\x5f\xe7\xd0\x2a\x6d\xb3\xf5\x13\xfd\x4b\xb2\x61\xc2\xcb\x15\xc0\xba\xd9\x55\x5a\xb6\x4e\xf9\xd6\x3f\x5c\x19\xe5\xfe\x25\xf8\x7f\x56\x49\x75\x7e\xc9\x29\x7b\x4a\x88\x1c\x49\x5d\x6b\x32\xec\x3b\x55\xd1\x62\x4e\x28\xaf\xe6\xeb\x83\xb1\x0c\x02\xed\x42\x32\xb6\x6f\xb8\xb0\x55\xbc\x31\x63\xc7\xc0\xbf\xe5\xc4\x2e\x60\x25\x6a\x2c\x2f\x65\xf3\xfe\x53\xaa\xc9\xe7\x7b\xe2\xc5\x1d\xbb\x7d\x6f\x73\xcf\x9f\xb3\xcb\x3e\xde\xe7\x7b\x03\xe4\xa3\x47\x27\x85\x55\xff\x09\x1f\x62\x1c\x76\x9a\xee\xcc\xa0\xef\xf6\xc2\x64\xef\x57\x6e\x71\xdd\xa3\xd4\x77\xd2\x09\xbf\xda\xe2\x57\xaa\xad\xd7\xa9\xf1\xe0\xe4\x57\x7c\xfb\xd0\x41\x97\xb9\x4a\x39\x59\xfc\xd8\xcf\xb1\xf8\x34\xbc\x0b\x9d\xc9\xcf\xff\x05\x00\x00\xff\xff\xae\x06\x20\x3f\x60\x07\x00\x00" func transactionsGeneric_transfer_with_pathsCdcBytes() ([]byte, error) { return bindataRead( @@ -308,7 +308,7 @@ 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{0x30, 0x1d, 0xa9, 0x84, 0x79, 0x42, 0x4d, 0x42, 0xfa, 0xc2, 0xe6, 0x67, 0xab, 0x93, 0x3a, 0x47, 0x58, 0xbd, 0xb8, 0xec, 0x23, 0xe4, 0xea, 0xc4, 0x8f, 0x40, 0x7b, 0x2a, 0xf7, 0xf6, 0xf0, 0xc2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf0, 0x9e, 0xda, 0x7b, 0x66, 0x69, 0x94, 0x12, 0xa5, 0x59, 0xef, 0xe0, 0x2, 0xba, 0x45, 0xea, 0x2, 0x92, 0xe5, 0xf9, 0x7f, 0x32, 0x12, 0xb8, 0x17, 0x4b, 0x2a, 0xb0, 0xd7, 0xec, 0x53, 0xc6}} return a, nil } @@ -332,7 +332,7 @@ func transactionsMint_nftCdc() (*asset, error) { return a, nil } -var _transactionsNftForwardingChange_forwarder_recipientCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x93\x4f\x8f\x9b\x30\x10\xc5\xef\x7c\x8a\x11\x87\x15\x48\x15\xdc\xd1\xfe\xd1\x36\x52\x6e\xad\x56\x69\xd4\xbb\x31\x03\x58\xf5\xda\xc8\x1e\x97\x56\xab\x7c\xf7\xca\x80\x89\xa1\x51\xb7\x5a\x5f\x12\x99\xd1\xbc\x79\xbf\x79\x16\xaf\x83\x36\x04\x5f\xb5\x3a\x3a\xd5\x89\x5a\xe2\x59\xff\x40\x05\xad\xd1\xaf\x90\xee\xaf\xd3\x24\xd4\x1f\xcf\x47\x6d\x46\x66\x1a\xa1\xba\x50\x1c\xdf\xa5\x49\x52\x96\x25\x9c\x7b\x61\x81\x0c\x53\x96\x71\x12\x5a\x81\x1b\x1a\x46\x68\x81\x7a\x8c\x9a\xa0\x01\x83\x5c\x0c\x02\x15\x01\xe9\xe9\xab\x56\x08\x9d\xf8\x89\x0a\x18\x4d\x17\x76\x40\x2e\x5a\x81\x0d\xbc\xb8\x5a\x0a\xfe\xc2\xa8\xf7\x22\x49\xd4\x3f\x53\x38\x9e\x42\xa7\xe7\xa6\x31\x68\x6d\x05\xcb\x9f\x4f\xc0\xb5\x94\x38\x15\x5e\x5b\x54\x51\xbb\x1c\xde\x92\x04\x00\xa0\x2c\xc1\x60\x8b\x06\x15\xc7\x30\xd0\x34\xee\x32\xed\x09\xad\x76\x86\xe3\x54\x2c\x91\xa0\x0d\x46\x4e\xd8\x56\xc0\x1c\xf5\xd9\x86\x47\xf1\xc5\x11\xab\x25\xe6\x70\xb7\xbd\x8f\x21\x04\xe9\xc3\x3a\x26\x8c\x08\xa3\x90\x12\x1a\xb4\xa2\x53\x8c\x10\x98\x0d\x62\x1e\xfd\x8a\x6d\x9d\x24\x26\x70\x6d\x54\xc1\x81\x0d\xac\x16\x52\xd0\xef\xfb\xbb\xb7\xfd\x62\x8b\x6b\xe5\xe5\x71\x46\x30\x18\x1c\x98\xc1\xcc\xeb\xa2\x59\x3c\x7d\xd6\xc6\xe8\xf1\x3b\x93\xce\x3b\x79\xe6\x5c\x3b\x45\x9e\x1a\x2c\xa7\x2c\xa1\x9e\x6a\xb6\xfc\x76\xab\x8e\xe0\xf9\x63\x51\xb6\x45\x4c\x10\x1e\x60\x96\x2d\x2c\x69\xc3\x3a\x2c\xe6\xa6\xf7\x1f\x04\xfb\x98\xad\x5a\xe1\xf8\xcc\x56\xdb\x1c\x17\xdf\x66\xb1\x29\x58\x71\x6d\x0e\x4f\x4f\x30\x30\x25\x78\x96\x1e\xb4\x93\x0d\x28\x4d\xef\xfa\x4c\xf3\x24\xc6\xd2\x21\xc5\x8b\xbd\xae\x63\x7e\x3e\x3e\x61\x66\x97\x5c\x60\x33\xe0\x2d\xa8\xdb\x0b\x86\x07\xaf\xb0\x6c\xe4\xd6\x33\xc8\x0b\x1e\x24\x05\xda\xa2\x43\x7a\x2f\x07\x7f\x43\xbb\xf5\x7e\xfe\x83\xd4\xce\x3a\xdf\x59\x5f\x6d\x07\x62\x97\xf9\x07\x7f\x21\x77\x84\xdb\x74\xd9\x39\xe2\xbb\xe0\xdf\x4c\x51\xc1\x7b\xa6\x3a\x5c\x41\x64\xff\xc0\x97\x2f\xc2\x97\xe4\x4f\x00\x00\x00\xff\xff\x3b\x07\xa6\x67\x12\x05\x00\x00" +var _transactionsNftForwardingChange_forwarder_recipientCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x93\xcb\x8b\xdb\x30\x10\xc6\xef\xfe\x2b\x86\x1c\x16\x1b\x8a\x7d\x0f\xfb\x60\x1b\xc8\xad\x65\x49\x43\xef\x8a\xfc\xd9\x16\xd5\x4a\x46\x1a\xd5\x2d\x4b\xfe\xf7\xe2\xf7\xa3\xa1\x5b\x56\x17\x1b\x69\x34\xdf\xcc\x6f\x3e\xa9\xd7\xda\x3a\xa6\xdd\x57\x6b\x8e\xc1\x94\xea\xa2\x71\xb6\x3f\x60\x76\xd1\x74\x72\x3c\x1f\xad\x6b\x84\xcb\x95\x29\x77\x51\x94\x65\x19\x9d\x2b\xe5\x89\x9d\x30\x5e\x48\x56\xd6\x50\xa8\x73\xc1\xf0\xc4\x15\x68\xbe\x00\x47\x0e\x52\xd5\x0a\x86\x89\x6d\x77\x6a\x0d\xa8\x54\x3f\x61\x48\x70\xb7\xe1\x6b\x48\x55\x28\xe4\xf4\x12\x2e\x5a\xc9\x17\xc1\x55\x2b\x12\x2d\xf2\xc7\x06\xcd\x69\xcc\xf4\x9c\xe7\x0e\xde\xef\x69\xf8\xf9\x44\xd2\x6a\x8d\x2e\x70\x4e\xb1\x5f\xa4\x4b\xe8\x2d\x8a\x88\x88\xb2\x8c\x1c\x0a\x38\x18\x89\xb1\xa0\xae\xdc\xa1\xda\x13\xbc\x0d\x4e\xa2\x0b\xd6\x60\x2a\xc6\x46\x4e\x28\xf6\x24\x02\x57\xf1\x8a\x47\xfa\x25\xb0\xb8\x68\x24\x74\xb7\xde\x5f\x42\x18\xa5\x0f\x53\x99\xd4\x80\x1a\xa5\x35\xe5\xf0\xaa\x34\x82\x41\xc2\x8f\x62\xca\x94\x33\xb6\xa9\x92\x25\x81\x39\xd1\x9e\x0e\xa2\x16\x17\xa5\x15\xff\xbe\xbf\x7b\xdb\x4e\x31\x9d\x23\xaf\x8f\x3d\x82\xda\xa1\x16\x0e\x71\xab\x0b\x37\xf4\xf4\xd9\x3a\x67\x9b\xef\x42\x87\xb6\x93\x67\x29\x6d\x30\xdc\x52\xa3\x61\x65\x19\x5d\xba\x98\x35\xbf\xcd\xa8\x17\xf0\xda\xe5\xa1\x8b\x74\x49\x90\x1e\xa8\x97\x4d\x3d\x5b\x27\x4a\xa4\x7d\xd2\xfb\x0f\x82\x7d\x8c\x27\xad\x71\x15\xce\xbe\xee\x69\x7d\xe5\x5b\x2f\xd6\x19\x6b\x19\x9b\xd0\xd3\x13\xd5\xc2\x28\x19\xef\x0e\x36\xe8\x9c\x8c\xe5\x77\xfb\xdc\x25\xd1\x12\x4b\x09\x5e\x0e\x76\x1e\x47\x57\x4a\xe7\x30\xb7\x71\x2e\x89\x1e\xf0\x1a\xd4\xed\x01\xd3\x43\xab\x30\x4c\xe4\xd6\x33\x48\x52\x39\x4a\x2a\xf8\xb4\x04\xbf\xe7\x83\xbf\xa1\xdd\x7a\x3f\xff\x41\x6a\xd3\xba\xdc\xb4\x3e\xb5\x3d\x12\xbb\xf6\x1f\xfc\x82\x0c\x8c\xb5\xbb\x7c\x6f\xf1\x8d\xf1\x6f\xba\x28\x95\x95\x30\x25\x26\x10\xf1\x3f\xf0\x25\x83\xf0\x35\xfa\x13\x00\x00\xff\xff\x8e\x0f\xef\x7d\xe9\x04\x00\x00" func transactionsNftForwardingChange_forwarder_recipientCdcBytes() ([]byte, error) { return bindataRead( @@ -348,11 +348,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{0xa, 0x22, 0x7d, 0x1, 0xf3, 0x90, 0xde, 0xec, 0xd2, 0x6a, 0xb0, 0x4f, 0xb7, 0xe5, 0xa0, 0xa9, 0x97, 0xf6, 0x8f, 0x22, 0xbe, 0xa7, 0xf9, 0x69, 0x69, 0x4c, 0x74, 0x1, 0xcf, 0x7f, 0x60, 0x8d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0xe2, 0x59, 0x6c, 0x7b, 0x8c, 0x95, 0x17, 0x90, 0x2a, 0x5b, 0x30, 0xb9, 0x17, 0xf7, 0xe9, 0x1d, 0xad, 0x7f, 0x87, 0x88, 0xb6, 0x48, 0x6d, 0xa3, 0xad, 0x8a, 0xac, 0x4a, 0xbf, 0xa2, 0x70}} return a, nil } -var _transactionsNftForwardingCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4d\x6f\xe2\x30\x10\xbd\xe7\x57\x8c\x38\xd0\x20\xa5\x70\x47\xdd\x56\x5d\x24\xa4\x3d\x2c\xaa\x5a\xb6\xf7\x21\x19\x12\x6b\x83\x1d\x8d\xc7\x64\xab\x8a\xff\xbe\x32\xf9\x72\xd8\x6c\x73\x32\xf6\xf8\xbd\xe7\x37\x6f\x50\xa7\xca\xb0\xc0\xce\xe8\xad\xd3\xb9\x3a\x94\xb4\x37\xbf\x49\xc3\x91\xcd\x09\x66\xb7\xdb\xb3\xa8\xad\xff\x49\x82\x19\x0a\xbe\x2b\xaa\x6d\x5b\x3c\xda\xeb\x2b\x77\xdb\xfd\xd6\x70\x8d\x9c\x29\x9d\x77\xb0\xe1\xde\x2c\x8a\x56\xab\x15\xec\x0b\x65\x41\x18\xb5\xc5\x54\x94\xd1\xa0\x2c\xd4\x05\x0a\xa0\x06\x4c\x53\xe3\xb4\x40\x6d\x5c\x99\x01\x3b\x0d\x62\xc0\x92\x80\x12\x4b\xe5\x11\x5c\xe5\x37\x8e\x0d\xa4\x67\xb4\xfe\x37\x42\x46\x56\xe5\x1a\x85\x32\x60\x4a\x55\xa5\x48\xcb\x9d\x85\x2b\xdf\x6e\xbb\x5f\x6e\x4c\x59\x52\xc3\x86\xd6\xba\x93\x57\x28\x05\x0d\xc5\x5e\x44\x6a\xf4\x51\xe5\x8e\x29\xf3\x0c\xd7\xf3\x5c\x9d\x49\x7b\x04\x18\x10\x3c\x68\x14\xe8\x8f\x7b\x90\xe7\x2c\x63\xb2\x76\x0d\xed\x22\x81\xb4\xbf\xf5\xe2\x0e\xa5\x4a\x5f\x50\x8a\x35\x0c\xeb\x05\x7c\x46\x11\x00\x40\xc5\x54\x21\x53\xec\x9f\x41\xbc\x06\x74\x52\xc4\xdf\x0d\xb3\xa9\xdf\xb1\x74\x94\xc0\x0f\x6b\x1d\xbd\x89\x61\xcc\x69\x83\x15\x1e\x54\xa9\xe4\x63\x63\xb4\xb0\x27\xe1\xa4\x81\xb5\xc5\x70\x98\xc0\x1b\x9e\xa9\xbd\xff\x4b\x57\xb7\xe7\x0b\x98\x3f\x37\x86\x7b\x1d\xd0\x7e\xfd\x62\xb5\x82\x9c\x24\x78\x39\x0c\x57\x9b\xfe\x8e\x2c\x6c\x1f\xdd\xf5\xb0\x87\x29\x49\x86\xa2\x01\x6c\x83\x15\x7c\xf3\x04\xad\x84\x7f\x6c\x5c\x2c\xd3\x8e\x4e\x91\x5d\xe6\x24\x0f\xf3\xcf\xdb\x9c\x06\x9d\xbd\x3c\xc6\x3d\x67\xf7\x4d\xf9\x3f\x2a\x5a\xc0\xd3\x13\x54\xa8\x55\x1a\xcf\x5e\xc3\x30\x68\x23\x61\x20\x6a\x25\xc5\x4d\x0e\x00\x25\xc8\x48\x85\x52\xcc\x16\x51\x68\x5e\xca\x84\x42\x80\xa0\xa9\x0e\xa6\x83\x18\x98\xac\x71\x9c\x12\xcc\xc1\xe2\x99\x40\x69\xb0\x4d\x67\x93\x2e\xdc\xd7\x84\x9a\xb1\xc3\x77\x36\x8c\x61\xe8\xef\xb1\x87\x7e\xb8\x1f\x0f\xe2\xb2\x51\xb1\xa3\x3a\x54\x30\x98\xbd\xfe\x4f\x6f\x16\x3d\x7e\x13\xc9\x65\x2b\x70\xe9\x05\xc7\x0f\xf7\x3d\x63\x02\x62\xd6\x37\x9c\x6d\x4c\xaf\x09\x1f\x59\xe2\xba\x10\x02\xfd\x51\x56\xfc\x23\x03\x43\xc3\x7e\x37\x01\x9b\xe8\x5a\x2b\x67\x94\x8d\x1e\x36\x9e\x6a\xf8\x64\x57\xe6\xd0\x29\xc1\x81\xf7\xa3\x1f\xfc\xc1\xd0\xba\x20\xa6\xeb\xde\x80\xdd\xfe\x3f\x69\xc3\x27\x2c\xcb\x0f\x38\xd0\x74\x37\x5e\x29\x25\x75\x26\x6e\xb2\x3e\xa5\xbc\x73\x55\xf9\xe9\x9e\xca\x77\x07\x71\x79\x8c\xbf\xf0\xf8\x2b\x73\x3a\x6b\xa6\x54\x25\x80\xb2\x9e\x9c\x92\xd6\xb4\x4b\x74\x89\xfe\x06\x00\x00\xff\xff\xca\x59\xbf\x49\x3a\x06\x00\x00" +var _transactionsNftForwardingCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4d\x6f\xe2\x30\x14\xbc\xe7\x57\x8c\x38\xd0\x20\x51\xb8\xa3\x6e\xab\x2e\x12\xd2\x1e\x16\x55\x2d\xdb\xfb\x23\x79\x24\xd6\x06\x3b\xb2\x5f\xc8\x56\x15\xff\x7d\x65\xf2\xe1\xc0\x66\x9b\x93\xf1\xc7\xcc\x78\x66\x8c\x3a\x96\xc6\x0a\x26\x5b\xa3\x37\x95\xce\xd4\xbe\xe0\x9d\xf9\xcd\x7a\x12\x75\x2b\x3f\x59\x28\x25\xa1\x77\xc5\xb5\x0b\xd3\xdb\xcd\x6e\x63\x6c\x4d\x36\x55\x3a\x9b\x44\xd1\x72\xb9\xc4\x2e\x57\x0e\x62\x49\x3b\x4a\x44\x19\x0d\xe5\x50\xe7\x24\x20\x0d\x4a\x12\x53\x69\x41\x6d\xaa\x22\x85\xad\x34\xc4\xc0\xb1\x40\x89\xe3\xe2\x80\xaa\xf4\x13\x87\x06\x12\xdb\xcd\xce\xf9\xdf\x84\x94\x9d\xca\x34\x09\xa7\xb0\x9c\xa8\x52\xb1\x96\x3b\x87\x0b\xdf\x76\xb3\x5b\xac\x4d\x51\x70\xc3\x46\xce\x55\x47\xa5\x33\x48\xce\x61\xb3\x17\x91\x18\x7d\x50\x59\x65\x39\xf5\x0c\x97\xf5\x4c\x9d\x58\x7b\x04\x04\x04\x0f\x1a\x0d\xf4\xc7\x3d\xc8\x73\x9a\x5a\x76\x6e\x85\x76\x30\x47\xd2\x9f\x7a\xa9\xf6\x85\x4a\x5e\x48\xf2\x15\xc2\x78\x86\xcf\x28\x02\x80\xd2\x72\x49\x96\x63\x7f\x0d\xb6\x2b\x50\x25\x79\xfc\xdd\x58\x6b\xea\x77\x2a\x2a\x9e\xe3\x87\x73\x15\xbf\x89\xb1\x94\xf1\x9a\x4a\xda\xab\x42\xc9\xc7\xda\x68\xb1\x9e\xc4\xce\x1b\x58\x97\x87\xc5\x39\xde\xe8\xc4\xed\xf9\x5f\xba\xbc\x5d\x9f\x61\xfa\xdc\x18\xee\x75\xa0\xfd\xfa\xc1\x72\x89\x8c\x65\x70\x73\x84\xa3\x38\x58\x73\xbc\xb6\xb0\xbd\x74\x97\x61\x0f\x53\xb0\x84\x4d\x01\x6c\x4d\x25\xbe\x79\x82\x56\xc2\x3f\x36\xce\x16\x49\x47\xa7\xd8\x2d\x32\x96\x87\xe9\xe7\x6d\x03\x07\xc9\x9e\x1f\xe3\x9e\xb3\xfb\xc6\xfc\xbf\xda\x34\xc3\xd3\x13\x4a\xd2\x2a\x89\x27\xaf\xc3\x32\x68\x23\xc3\x42\xd4\x4a\xf2\x9b\x1e\x80\x64\xd0\x91\x92\x24\x9f\xcc\xa2\xa1\x79\x89\x65\x12\x06\x41\x73\x8d\xf0\x12\xd8\xc2\xb2\x33\x95\x4d\x18\x53\x38\x3a\x31\x94\x86\x6b\x92\x9d\x77\xe5\xbe\x34\xd4\x5c\x3b\x7c\xe7\x86\x35\x1c\xfa\x7b\xe8\xa1\x1f\xee\x71\xf5\xe8\x16\x8d\x8a\x2d\xd7\x43\x05\xc1\xec\xd5\x7f\xb2\x99\xf5\xf8\x4d\x25\x17\xad\xc0\x85\x17\x1c\x3f\xdc\xf7\x8c\x73\x88\x59\xdd\x70\xb6\x35\xbd\x34\xfc\xca\x92\xaa\x2b\x21\xf8\x8f\x72\xe2\x2f\x39\x30\x74\x98\x77\x53\xb0\x91\xd4\x5a\x39\x57\xdd\xe8\x61\xe3\xb1\xc0\x47\x53\x99\xa2\x53\x42\x81\xf7\xa3\x7f\xf8\xc1\xd0\x3a\x67\xcb\x97\xb9\x80\xdd\xfe\x3f\x69\x63\x8f\x54\x14\x1f\xd8\xf3\x78\x1a\xaf\x9c\xb0\x3a\xb1\x6d\xba\x3e\xa6\xbc\x73\x55\xf9\xd7\x3d\xd6\xef\x0e\xe2\xfc\x18\x7f\xe1\xf1\x57\xe6\x74\xd6\x8c\xa9\x9a\x83\x64\x35\xfa\x4a\x5a\xd3\xce\xd1\x39\xfa\x1b\x00\x00\xff\xff\xb7\x88\xc7\x7e\xfe\x05\x00\x00" func transactionsNftForwardingCreate_forwarderCdcBytes() ([]byte, error) { return bindataRead( @@ -368,11 +368,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, 0xcd, 0x9a, 0xe9, 0x55, 0x66, 0xe1, 0x94, 0x74, 0x4d, 0xcd, 0xd1, 0x64, 0xbe, 0x45, 0x10, 0x96, 0x3f, 0xb5, 0xe0, 0x7b, 0xf7, 0xf, 0x62, 0x13, 0x17, 0xa5, 0xf1, 0x80, 0xb0, 0xa2, 0x76}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x5c, 0xd7, 0xb2, 0xc0, 0xd1, 0xfd, 0x3a, 0xc2, 0x66, 0x5, 0x1, 0x5e, 0xea, 0x7e, 0x61, 0xbe, 0x75, 0xce, 0xe7, 0xb1, 0xf5, 0xb1, 0xe, 0x88, 0x85, 0xf5, 0x34, 0xf5, 0x3f, 0x3b, 0x40}} return a, nil } -var _transactionsNftForwardingTransfer_nft_to_receiverCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\x3f\x6f\xfb\x36\x10\xdd\xf5\x29\xae\x1a\x12\x09\x48\xe4\xa5\xe8\x20\x38\x09\x52\x1b\x01\x32\xd4\x2d\x52\x37\x9d\x69\xea\x64\xb1\x95\x49\x81\x3c\xd9\x0d\x82\x7c\xf7\x82\x12\x45\x8b\x92\x93\x0c\x3f\x0d\x06\x4d\xde\x9f\x77\xef\xdd\x9d\x38\x34\x4a\x13\x6c\x94\x7c\x6a\xe5\x5e\xec\x6a\xdc\xaa\x7f\x51\x42\xa9\xd5\x01\xe2\xe9\x75\x1c\x39\xfb\x57\x81\xa7\x17\x34\xaa\x3e\xa2\x76\xb6\xe3\x2b\x6f\xf7\x1b\x12\x2b\x18\x31\xfb\x68\x9c\x61\x70\x17\x47\xd1\x62\xb1\x80\x6d\x25\x0c\x90\x66\xd2\x30\x4e\x42\x49\x10\x06\x4a\xa5\xfb\xab\x12\xb5\x16\x72\x0f\x4c\xc2\xe6\x69\xdb\x47\x51\x12\x81\x71\xae\x5a\x49\x40\x0a\xa8\x42\xd0\xc8\x45\x23\x50\xd2\xb5\x81\x17\xe4\x28\x8e\xa8\x6d\xf0\x68\x14\x37\x89\x00\x00\xb8\x92\xa4\x19\xa7\xc7\xa2\xd0\x68\x4c\x0e\xee\x70\x13\xbc\x6e\xd8\x01\x73\xf8\x93\x6c\xee\xfe\xc5\x67\x98\x78\x9c\x04\x55\x85\x66\xa7\xe7\x75\x0e\x7f\x3d\x4b\xfa\xe5\xe7\x28\x85\xf7\xa8\x7b\x5b\x2c\x40\x63\x89\x1a\x25\xc7\x01\xe9\x60\x8f\xfa\xda\x00\x57\x75\x8d\x1d\xb8\xce\xbe\x46\xf2\xef\x2f\x58\xe6\xc0\x5a\xaa\x92\xa9\x10\xd9\xdf\xce\x24\x85\xab\xf7\xd9\xe3\xca\x87\xfc\x98\x63\x50\x65\x87\x61\x60\xc8\x62\x2a\xb0\x51\x46\x50\x77\x6f\x19\x26\xe5\xa1\xb8\xa7\x0e\xc9\x85\x4c\x43\x94\x8f\xbe\xd8\x46\x63\xc3\x34\x26\x46\xec\x25\x6a\x87\xfd\x57\xa5\xb5\x3a\xbd\xb2\xba\xc5\x14\xae\x1e\x7b\xd1\x3c\x3f\x0e\xdf\x1e\xfb\xf4\x67\x36\xc0\xf6\x48\x2f\xf6\x80\x6b\x50\xc6\x3b\x5a\x84\xb2\xa4\x95\xbb\x87\x3b\x1b\xc7\x65\x48\x26\x2a\xa7\xd9\x70\x61\xb2\x5d\x07\x69\x79\x35\xee\xd9\xfb\x44\x76\x82\x8f\xe5\x4f\x7d\x26\xfb\x3d\x3c\x40\xc3\xa4\xe0\x49\xbc\x52\x6d\x5d\x80\x54\x04\x7d\xa4\x70\x1e\x66\x7a\x0f\x21\xe3\x30\x5e\x50\xc6\xb9\xf0\xb5\xad\xfb\x6e\x5c\x57\xa6\xfb\xd0\xc3\x7f\x9b\x2d\xb1\x77\xad\xe6\xb8\x7d\x6b\x30\x07\x29\xea\x1b\x38\x0a\x3c\xf5\x7f\xed\xef\x32\x18\xb4\x6c\xf3\xb4\x5d\x05\x39\xee\x93\x34\x05\x66\xe0\x1b\xb3\x87\x6f\x39\x70\xe8\x60\xe6\xda\x01\x8a\xd3\x40\x68\x47\x18\x9b\xb3\xd4\x37\xcd\xb5\x71\x52\x07\x53\x61\x3f\x83\x75\x99\x8d\x46\x03\xee\x9c\x4b\x66\x48\x69\xb6\xc7\x41\xd6\x1f\x9b\x98\xfb\x24\x28\xd8\x7e\xb6\x09\xf3\x89\x42\x43\xd2\x3f\x18\x55\x81\x43\x3a\xe2\xc8\xb5\x22\x14\x0a\x4d\x47\x95\x75\x42\xbb\xc8\xd4\xee\x1f\xe4\x04\xac\xef\x7a\xd3\x20\x17\xa5\xc0\x02\x1a\x46\xd5\x67\x8c\x35\xed\xae\x16\x7c\x4e\xdc\xc5\xc5\x17\xb0\x76\x9e\xe2\x70\x44\xbc\x67\x9a\x71\xd6\xb0\x9d\xa8\x05\x09\x3c\xcf\xc7\x17\x03\x7f\x81\xa6\x09\x41\x3d\xdc\x2f\xf9\x99\xcd\xd1\x85\xb6\xb8\x54\x9d\x1b\x24\xb7\x75\xf0\x3f\xe4\x2d\xe1\x64\xa3\x0c\x9d\xe2\xb7\x87\x5f\x25\xea\x24\x2f\x6d\xde\xd1\x42\x81\xe5\xed\xac\xdd\xfc\x39\x19\xaf\xfb\xf3\x39\x14\x6d\x3d\x59\xa9\x42\x86\xc5\x7c\xa6\xcf\x70\x4c\xc8\xd2\x9d\xc3\xf2\x56\x96\x14\x54\xdb\x28\x43\xf0\xee\xfd\x7f\x9a\xe1\xdc\x23\x3d\xaf\x4d\xd2\xef\x3b\x26\xa4\x19\x01\x4e\x73\x88\x7f\xd7\x62\x2f\x24\xab\x7b\x1e\xc0\x54\x5e\x84\x8a\x1d\xd1\x23\x66\xf2\xed\xa0\x34\xc6\x2e\xf7\x47\xf4\x7f\x00\x00\x00\xff\xff\x18\xb7\x04\x80\x2b\x08\x00\x00" +var _transactionsNftForwardingTransfer_nft_to_receiverCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\x41\x6f\xdb\x3a\x0c\xbe\xfb\x57\xf0\xf9\xd0\xda\x40\xeb\x5c\x1e\xde\xc1\x48\x5b\xf4\x25\x28\xd0\xc3\xb2\xa1\xcb\xba\xb3\x22\xd3\xb1\x36\x47\x32\x24\x3a\x59\x11\xe4\xbf\x0f\xb2\x65\xc7\xb2\xd3\xf5\x30\x1f\x02\x45\x14\xc9\x8f\xdf\x47\x52\xec\x2a\xa5\x09\xc2\x95\x92\x4f\xb5\xdc\x8a\x4d\x89\x6b\xf5\x13\x65\x18\x74\x96\x57\x81\x87\x17\x34\xaa\xdc\xa3\x3e\xdf\x7e\x42\x62\x19\x23\x66\xad\x26\x0c\x82\xd9\x6c\x06\xeb\x42\x18\x20\xcd\xa4\x61\x9c\x84\x92\x20\x0c\xe4\x4a\xb7\x57\x39\x6a\x2d\xe4\x16\x98\x84\xd5\xd3\x1a\x72\xad\x76\xa0\x24\x02\xe3\x5c\xd5\x92\x80\x14\x50\x81\xa0\x91\x8b\x4a\xa0\xa4\x6b\x03\x2f\xc8\x51\xec\x51\xdb\xe0\xc1\x20\x6e\x14\x00\x00\x70\x25\x49\x33\x4e\x8f\x59\xa6\xd1\x98\x14\xdc\xe1\xc6\xb3\xae\xd8\x0e\x53\xf8\x4a\x36\x77\x6b\xe9\x33\x8c\x3c\x0e\x82\x8a\x4c\xb3\xc3\xf3\x32\x85\x6f\xcf\x92\xfe\xfb\x37\x88\xe1\x18\x34\xb6\xd9\x0c\x34\xe6\xa8\x51\x72\xec\x90\x76\xef\x51\x5f\x1b\xe0\xaa\x2c\xb1\x01\xd7\xbc\x2f\x91\x7a\xfb\x0b\xe6\x29\xb0\x9a\x8a\x68\xcc\x71\xf2\xdd\x3d\x89\xe1\xea\x38\x31\x2e\xfa\x90\xa7\x29\x06\x95\x37\x18\x3a\x86\x2c\xa6\x0c\x2b\x65\x04\x35\xf7\x96\x61\x52\x3d\x14\x67\x6a\x90\x5c\xc8\xd4\x45\x39\xb5\xc5\x56\x1a\x2b\xa6\x31\x32\x62\x2b\x51\x3b\xec\xff\x2b\xad\xd5\xe1\x95\x95\x35\xc6\x70\xf5\xd8\x8a\xd6\xf3\xe3\xf0\x6d\xb1\x4d\x7f\x66\x03\x6c\x8f\xb4\x62\x77\xb8\x3a\x65\x7a\x47\x8b\x50\xe6\xb4\x70\xf7\x70\x67\xe3\xb8\x0c\xd1\x48\xe5\x38\xe9\x2e\x4c\xb2\x69\x20\xcd\xaf\x8e\xc3\x0e\x3d\xdd\x47\xb2\x91\x7c\xd8\x00\x71\x9f\xcb\x7e\x0f\x0f\x50\x31\x29\x78\x14\x2e\x54\x5d\x66\x20\x15\x41\x1b\x0b\x86\x91\xa6\x8a\x77\x21\x43\x3f\x9e\x57\xc8\xb9\xf4\xa5\xad\xfc\x6e\x58\x59\xa2\xdb\xd0\xdd\x7f\x9b\x2d\xb2\x77\xb5\xe6\xb8\x7e\xab\x30\x05\x29\xca\x1b\xd8\x0b\x3c\xb4\x7f\xed\xef\xdc\x1b\xb5\x64\xf5\xb4\x5e\x78\x39\xee\xa3\x38\x06\x66\xe0\x83\x67\x0f\x1f\x72\xe0\xd0\xc1\xc4\xb5\x01\x14\xc6\x9e\xd4\x8e\x30\x36\x65\xa9\x6d\x9b\x6b\xe3\xc4\xf6\xe6\xc2\x7e\x06\xcb\x3c\x19\x0c\x07\xdc\x39\x97\xc4\x90\xd2\x6c\x8b\x9d\xb0\x7f\x37\x33\xf7\x91\x57\xb0\xfd\x6c\x1b\xa6\x23\x85\xba\xa4\x5f\x18\x15\x9e\x43\x3c\xe0\xc8\x35\x23\x64\x0a\x4d\x43\x95\x75\x42\xbb\xca\xd4\xe6\x07\x72\x02\xd6\xf6\xbd\xa9\x90\x8b\x5c\x60\x06\x15\xa3\xe2\x3d\xc6\xaa\x7a\x53\x0a\x3e\x25\xee\xe2\xea\xf3\x58\x3b\xcf\xb1\x3f\x24\xbd\x67\x9c\x70\x56\xb1\x8d\x28\x05\x09\x1c\x4c\xc8\xfb\x23\x7f\x81\xa6\x11\x41\x2d\xdc\x3f\xf2\x33\x99\xa3\x0b\x6d\x71\xa9\x3a\x37\x48\x6e\xef\xe0\x2f\xe4\x35\xe1\x68\xa7\x74\x9d\xd2\xef\x8f\x7e\x99\xa8\x83\xbc\xb4\x7b\x07\x2b\x05\xe6\xb7\x93\x76\xeb\xcf\xd1\x70\xe1\x9f\xcf\xbe\x68\xcb\xd1\x52\x15\xd2\x2f\xe6\x3d\x7d\xba\x63\x44\x96\xee\x14\xe6\xb7\x32\x27\xaf\xda\x4a\x19\x82\x63\xef\xff\xcf\x04\xe7\x16\xe9\x79\x69\xa2\x76\xe3\x31\x21\xcd\x00\x70\x9c\x42\xf8\x59\x8b\xad\x90\xac\x6c\x79\x00\x53\xf4\x22\x14\x6c\x8f\x3d\x62\x26\xdf\x76\x4a\x63\xe8\x72\x9f\x82\xdf\x01\x00\x00\xff\xff\xe1\xac\x8f\x54\xf2\x07\x00\x00" func transactionsNftForwardingTransfer_nft_to_receiverCdcBytes() ([]byte, error) { return bindataRead( @@ -388,11 +388,11 @@ 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{0x72, 0xd4, 0xac, 0xf7, 0xd6, 0xbf, 0x2f, 0xbe, 0x56, 0x1a, 0xb4, 0xfc, 0x34, 0x8c, 0x26, 0x75, 0x32, 0x99, 0x16, 0xf1, 0x31, 0x2f, 0xb8, 0x11, 0x59, 0x7f, 0xc2, 0x6b, 0xb6, 0xcf, 0x7c, 0x1b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x98, 0x47, 0x5f, 0x6b, 0xc0, 0x65, 0x27, 0xe1, 0x83, 0x20, 0xc9, 0xf6, 0x49, 0xd9, 0x76, 0xc8, 0xe2, 0x47, 0xff, 0x95, 0xd0, 0xec, 0xd4, 0x4a, 0x4e, 0xf7, 0x4b, 0xa9, 0xed, 0xc8, 0x0, 0x96}} return a, nil } -var _transactionsNftForwardingUnlink_forwarder_link_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\xcd\xaa\xda\x50\x10\xde\xe7\x29\xbe\xba\x10\x85\x34\xd9\x4b\x6f\xa1\x08\x42\x17\x95\x4b\x6b\xbb\x1f\x93\x31\x19\x1a\xcf\x09\x73\x26\x57\xe4\xe2\xbb\x97\x68\xfe\xb4\xd2\x66\x75\x1c\x67\xbe\xbf\x99\x48\x8e\xb5\x57\xc3\xd6\xbb\x4d\xe3\x0a\xd9\x57\xbc\xf3\xbf\xd9\xe1\xa0\xfe\x88\xd9\x63\x79\xd6\xf7\x7f\x63\xa3\x9c\x8c\x7e\x09\x9f\x42\xd7\x7c\x57\x1b\x3a\xb7\x9b\xdd\xc6\xeb\x89\x34\x17\x57\xf4\xb0\xd3\xda\x2c\x8a\xd2\x14\xbb\x52\x02\x4c\xc9\x05\xca\x4c\xbc\x83\x72\x5d\x51\xc6\x61\x02\xc0\x8a\xef\x9c\xb1\xbc\xb1\x62\x4d\x35\xed\xa5\x12\x13\x0e\x38\x89\x95\x20\x64\xbe\xaa\xf8\x36\x6d\x1e\x62\x01\x75\xb3\xaf\x24\x43\x30\xaf\x54\x30\xe8\x60\xac\x28\xe9\xad\x95\x92\x79\x77\x90\xa2\x51\xce\x5b\xfe\xb6\x7b\xca\x14\xa5\x69\x1a\x4d\xf4\x2c\x46\xf0\x1f\x37\xb4\x57\xb2\x72\x85\xc9\x8f\x18\xda\xa9\x7b\xbd\xd2\xde\x1a\xc6\xf7\x12\xef\x51\x04\x00\xb5\x72\x4d\xca\x8b\x20\x85\x63\x5d\x81\x1a\x2b\x17\x5f\x43\x68\xb8\x43\x1b\xcc\x9d\xd7\xde\x99\xb6\xcc\x1a\xdf\x90\x42\x39\xfe\x19\xe3\xa7\xab\x1f\x8b\x4b\xcc\xbf\x64\x99\x6f\x9c\xb5\x7c\xe8\xbe\xe1\x91\xa6\xf7\x41\x49\x00\x55\xca\x94\x9f\xd1\x41\x71\x1e\x23\xf7\x70\xde\xca\x36\xa6\x8f\x50\x3e\xf2\x71\xcf\x8a\xe4\x6e\x15\xde\x55\xe7\x6b\x88\x5e\x8f\xa1\x0d\x7c\xbb\xd9\x25\xfd\x7e\x06\x3e\x39\xe0\x66\x33\xc9\x26\x1b\x4b\x0a\xb6\x4f\xf3\xf7\xc7\xf3\x4a\xd6\x83\xb0\xcb\xe7\xc5\xdf\x69\x2e\xf1\xe1\x05\x4e\xaa\x89\xb1\xf6\x53\xb6\x46\xdd\x50\xba\x44\x53\xb7\xde\x4a\xd6\x93\x04\x8e\xd1\xf4\x69\xc1\x4a\x1e\xed\x8e\xb7\x74\x1e\x06\x9f\x69\x1e\xc6\x9f\x29\xbb\xe3\xcc\x94\xc9\x18\xf3\x9e\xa3\x8d\x7c\xe0\xc0\xc1\xeb\x55\xc0\xb8\x85\x61\xb6\x62\x9b\x94\xd7\x54\xe3\xe5\xa9\x94\xee\xa0\x13\x69\x8f\xe6\xbf\x41\x3e\x3d\xdd\xe5\x3f\xbd\xf6\x4e\xef\xc4\xc4\x20\x5b\x3d\x39\xf2\xce\xfc\x25\xba\x44\x7f\x02\x00\x00\xff\xff\x87\x72\xab\xef\x50\x04\x00\x00" +var _transactionsNftForwardingUnlink_forwarder_link_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x4d\x8b\xdb\x40\x0c\xbd\xfb\x57\xbc\xee\x21\x24\xe0\xda\xf7\xd0\x2d\x94\x40\xa0\x87\x86\xa5\x4d\x7b\x57\x6c\xc5\x16\x75\x66\x8c\x46\xde\x10\x96\xfc\xf7\xe2\xc4\x19\x3b\xdb\xd0\xfa\x34\xd6\x8c\xf4\x3e\xf4\x12\x39\xb4\x5e\x0d\x4f\x1b\xef\xd6\x9d\xab\x64\xd7\xf0\xd6\xff\x66\xf7\x14\x6f\xbe\xb1\x51\x49\x46\xbf\x84\x8f\x61\x2c\x6f\xd6\xdb\xb5\xd7\x23\x69\x29\xae\x7a\x4a\x92\x3c\xc7\xb6\x96\x00\x53\x72\x81\x0a\x13\xef\xa0\xdc\x36\x54\x70\xc0\xf8\x98\x15\xdf\xb9\x60\x79\x65\xc5\x8a\x5a\xda\x49\x23\x26\x1c\x70\x14\xab\x41\x28\x7c\xd3\xf0\xb5\xdb\x3c\xc4\x02\xda\x6e\xd7\x48\x81\x60\x5e\xa9\x62\xd0\xde\x58\x51\xd3\xab\xb8\x0a\x85\x77\x7b\xa9\x3a\xe5\xb2\xc7\xef\x5f\x4f\x91\x92\x3c\xcf\x93\x09\x9f\xf9\x38\xfc\xc7\x75\xda\x0b\x59\xbd\xc4\xe4\x27\x85\x0e\xec\x5e\x2e\xb0\xd7\x07\xe3\x79\x81\xb7\x24\x01\x80\x56\xb9\x25\xe5\x79\x90\xca\xb1\x2e\x41\x9d\xd5\xf3\xaf\x21\x74\x3c\x4c\x8b\xe2\x4e\x2b\xef\x4c\x7b\x64\x4d\xaf\x93\x42\x3d\x5e\xa6\xf8\xe9\xda\xf7\xc5\x05\x66\x5f\x8a\xc2\x77\xce\x7a\x3c\x0c\x5f\x3c\xe4\xf9\xbd\x51\x12\x40\x8d\x32\x95\x27\x0c\xa3\xb8\x4c\x51\x7a\x38\x6f\x75\x6f\xd3\x47\x28\x1f\xf8\xb0\x63\x45\x76\xb7\x0a\xef\x9a\xd3\xc5\x44\xaf\x87\xd0\x1b\xbe\x59\x6f\xb3\xdb\x7e\x22\x9e\xec\x71\x95\x99\x15\x93\x8d\x65\x15\xdb\xa7\xd9\xdb\xfb\xe0\x64\xab\x48\xec\xfc\x79\xfe\xb7\x9b\x0b\x7c\x78\x86\x93\x66\x22\xac\xff\x94\xad\x53\x17\x4b\xe7\x64\xaa\xd6\x5b\xcd\x7a\x94\xc0\x29\xba\x9b\x5b\xb0\x9a\x47\xb9\x63\x96\x4e\xb1\xf1\x11\xe7\xd8\xfe\x88\xd9\x1d\x66\xa1\x4c\xc6\x98\xdd\x30\x7a\xcb\x23\x06\xf6\x5e\x2f\x04\xc6\x2d\xc4\xde\x86\x6d\x52\x5e\x51\x8b\xe7\x87\x54\x86\x40\x67\xd2\x87\xe6\xbf\x46\x3e\x8c\xee\xe2\x9f\x5a\x6f\x4a\xef\xc8\xa4\x20\x5b\x3e\x08\xf9\x20\xfe\x9c\x9c\x93\x3f\x01\x00\x00\xff\xff\xdd\xe5\x14\x40\x14\x04\x00\x00" func transactionsNftForwardingUnlink_forwarder_link_collectionCdcBytes() ([]byte, error) { return bindataRead( @@ -408,7 +408,7 @@ func transactionsNftForwardingUnlink_forwarder_link_collectionCdc() (*asset, err } info := bindataFileInfo{name: "transactions/nft-forwarding/unlink_forwarder_link_collection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x37, 0xe1, 0x63, 0x7e, 0x52, 0x13, 0xf8, 0xde, 0x62, 0x42, 0x10, 0x97, 0x8b, 0x96, 0x25, 0x17, 0x7f, 0xd, 0xd5, 0xa6, 0x9b, 0x28, 0x1b, 0x9c, 0x40, 0x78, 0x73, 0x9a, 0x74, 0x70, 0x1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0x55, 0x81, 0x16, 0x4b, 0x2b, 0xae, 0x53, 0xd2, 0x2f, 0x9b, 0x5c, 0x19, 0x9, 0x86, 0x50, 0x66, 0x56, 0xeb, 0xd0, 0x5a, 0xd6, 0x75, 0x68, 0x9e, 0x78, 0xa2, 0x43, 0x74, 0xe7, 0x8e, 0x6}} return a, nil } @@ -432,7 +432,7 @@ func transactionsSetup_accountCdc() (*asset, error) { return a, nil } -var _transactionsSetup_account_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x54\x4d\x6f\xdb\x30\x0c\xbd\xfb\x57\x70\x39\x14\x36\x90\x3a\xf7\x20\x6d\xd1\x79\x2b\xb0\xc3\x82\x62\xcd\x7a\x67\x64\x3a\x16\xea\x48\x86\x44\xdb\x08\x8a\xfe\xf7\x41\xf2\x47\x22\x77\x5d\x31\x1d\x02\x47\x24\x1f\x1f\x1f\x49\xad\x56\x2b\xd8\x95\xd2\x02\x1b\x54\x16\x05\x4b\xad\x40\x5a\xe8\x4a\x64\x40\x05\x28\x84\x6e\x14\x43\xa7\x9b\x2a\x07\xd3\xa8\xc8\x45\xb0\x06\x4b\x0c\x92\x2d\x55\x05\x34\xb5\xbb\x30\x24\x48\xb6\x04\xdb\x87\x9d\x4d\x7b\xcc\xa2\x51\x1e\xd0\xc7\x34\x96\x2c\xb4\x92\x3a\xeb\xbc\x5f\x94\xee\xa0\x2b\xc9\xd0\x08\xe6\x50\x4a\x02\xa1\xab\x8a\xce\x51\x52\x81\x65\x6d\xf0\x40\x80\x2a\x77\xbe\xc2\x10\x32\x79\x5f\x3a\xd6\x7c\xba\x88\x48\xa3\x48\x1e\x6b\x6d\x18\xb6\x5a\x3d\x34\xea\x20\xf7\x15\xed\xf4\x0b\x29\x28\x8c\x3e\xc2\x62\x7e\xbd\x18\xfd\x7f\x12\x63\x8e\x8c\xcf\x9e\x5f\xef\x1c\xdc\x2d\xa2\xe8\x42\xa1\x58\x68\xc5\x06\x05\xdf\xe7\xb9\x21\x6b\xd7\x30\x7c\x2c\x61\xb4\x6c\xf1\x48\x6b\x78\x62\x23\xd5\x21\x81\xd7\x28\x02\x00\xa8\x0d\xd5\x68\x28\xb6\xf2\xa0\xc8\xac\x01\x1b\x2e\xe3\x1f\xd6\x36\xf4\xd4\x17\x99\x61\x8d\x7b\x59\x49\x3e\x65\x0e\xc7\x55\x66\x96\xf0\xd8\xec\x2b\x69\xcb\xb3\x71\x09\x4f\xd8\xd2\x33\x56\x0d\x25\x70\x75\xdf\xf7\xc8\x65\x81\xe1\xac\x56\xf0\x55\x1b\xa3\x3b\x40\x30\x54\x90\x21\x25\xbc\xd2\x4e\x36\x55\xf0\x44\x13\x72\xaa\x2b\x7d\xa2\x7c\x34\xd6\x68\x2d\xe5\x63\xdf\x27\xc0\x8a\x18\x0c\x59\x5d\xb5\x64\x7e\x51\x01\x37\x70\x20\x1e\x12\xcf\xd5\x48\xa6\x28\x77\xd2\xd1\x6a\xd3\xbd\xa7\xb4\xb9\x9a\xb7\xe1\x36\x56\x5e\xad\x4b\xed\x42\x90\xbb\x3b\xa8\x51\x49\x11\x2f\x32\x3f\x88\x4a\x33\xec\x3f\x2e\x50\xab\xeb\x62\x48\x00\xec\xfb\x3f\x42\x2f\x92\xe8\x52\xa4\xdf\xd6\x4d\x12\x72\x88\x61\x88\x8d\xa4\xb6\x1f\xb2\xed\xc3\x2e\x9b\x26\xec\x1b\x32\xfa\x21\x86\x40\x19\x11\x3a\xdc\x5c\x4a\x95\x0e\xdf\xd9\xc0\xc0\x8d\x53\xec\xee\x1a\x23\x68\x77\xaa\x69\x0d\x4a\x56\x4b\x8f\xda\xff\x75\xbf\x9b\x60\xfa\xd2\x77\x24\x6e\xe3\x24\x01\xb4\x5f\xe0\x13\xbf\xbb\x4f\x65\x1c\xe8\xfd\xab\xd6\x42\x1b\x6f\x3e\xc8\x96\xd4\x7f\xa8\x9b\xf5\xab\x8a\xa0\xa8\x7b\xb7\xac\x36\x50\xd0\x5b\xcf\xb9\x61\x73\x3d\x13\x35\xed\xf7\xfe\x7b\xe8\x17\x87\x09\x2d\xb6\x04\x92\xc7\x39\x98\x0f\x71\xbf\x76\xe9\xf0\xa0\xa4\xce\x3b\xde\x5c\xcf\x52\x2f\x81\xf5\x7a\x9e\x7c\x08\x79\x44\x2e\xc3\x8c\x62\x2c\xb1\x76\x3b\x2a\x40\x4c\x3b\x3a\xa9\x76\xf1\xa2\xfd\x7d\x66\x32\xac\xe1\x66\x24\x37\x01\x48\xb2\x13\x53\xe9\x9e\x88\xcd\xd5\xeb\x7c\x71\xd2\x33\xed\xb7\xdb\x38\x68\xb5\x3b\x1f\x17\x11\xb8\x26\x73\x81\x02\x0e\x75\xff\xf8\xc4\x01\xdf\x25\x20\xbf\x13\xa9\x97\xa0\xd7\xc8\xa1\xbd\x45\x6f\xd1\x9f\x00\x00\x00\xff\xff\xcc\x48\xc9\x43\x60\x06\x00\x00" +var _transactionsSetup_account_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x54\x4f\x6f\xdb\x3e\x0c\xbd\xfb\x53\xf0\x97\x43\x61\x03\xa9\x73\x0f\xd2\x16\xfd\x79\x2b\xb0\xc3\x82\x62\xcd\x7a\x67\x64\x3a\x16\xea\x4a\x82\x44\xdb\x08\x8a\x7c\xf7\x41\xfe\x97\xc8\x6d\x57\x4c\x87\xc0\x31\xc9\xc7\xc7\xe7\x47\xad\x56\x2b\xd8\x95\xd2\x01\x5b\x54\x0e\x05\x4b\xad\x40\x3a\x68\x4b\x64\x40\x05\x28\x84\xae\x15\x43\xab\xeb\x2a\x07\x5b\xab\xc8\x57\xb0\x06\x47\x0c\x92\x1d\x55\x05\xd4\xc6\xbf\xb0\x24\x48\x36\x04\xdb\x87\x9d\x4b\x7b\xcc\xa2\x56\x1d\x60\x57\x53\x3b\x72\xd0\x48\x6a\x9d\xcf\x7e\x51\xba\x85\xb6\x24\x4b\x23\x98\x47\x29\x09\x84\xae\x2a\x3a\x57\x49\x05\x8e\xb5\xc5\x03\x01\xaa\xdc\xe7\x0a\x4b\xc8\xd4\xe5\xd2\xab\xe1\xe3\x45\x45\x1a\x45\xf2\xd5\x68\xcb\xb0\xd8\x6a\xf5\x50\xab\x83\xdc\x57\xb4\xd3\x2f\xa4\x16\x53\xe4\x27\x31\xe6\xc8\xf8\xec\xa9\x2c\xa2\xe8\x62\xf0\x58\x68\xc5\x16\x05\xdf\xe7\xb9\x25\xe7\xd6\x30\x3c\x2c\x61\x8c\x6c\xf1\x95\xd6\xf0\xc4\x56\xaa\x43\x02\x6f\x51\x04\x00\x60\x2c\x19\xb4\x14\x3b\x79\x50\x64\xd7\x80\x35\x97\xf1\x0f\xe7\x6a\x7a\xea\xb9\x67\x68\x70\x2f\x2b\xc9\xc7\xcc\xe3\x78\xc2\x76\x09\x8f\xf5\xbe\x92\xae\x3c\x07\x97\xf0\x84\x0d\x3d\x63\x55\x53\x02\x57\xf7\xbd\xf4\xbe\x0b\x0c\x67\xb5\x82\xff\xb5\xb5\xba\x05\x04\x4b\x05\x59\x52\xa2\x13\xd0\xab\xa1\x0a\x9e\x68\x42\x4e\xa6\xd2\x47\xca\xc7\xa0\x41\xe7\x28\x1f\x3f\xe7\x04\x58\x11\x83\x25\xa7\xab\x86\xec\x2f\x2a\xe0\x06\x0e\xc4\x43\xe3\xb9\x1a\xc9\x54\xe5\x4f\x3a\x46\x5d\xba\xef\x28\x6d\xae\xde\xe6\xa2\x9f\x6e\x63\xd5\xe9\x75\xa9\x5e\x08\x73\x77\x07\x06\x95\x14\xf1\x22\xeb\x1c\xa6\x34\xc3\xfe\xf3\x11\xb5\xba\x2e\x86\x0e\xc0\xbe\xc5\x04\xbd\x48\xa2\x4b\x99\x7e\x3b\x6f\x11\xe4\x10\xc3\x12\x5b\x49\x4d\xef\x9e\xed\xc3\x2e\x9b\xac\xf3\x0d\x19\x3b\x77\x42\xa0\x8d\x08\x13\x6e\x2e\xc5\x4a\x87\xe7\x6c\x60\xe0\x0d\x15\xfb\x77\xb5\x15\xb4\x3b\x1a\x5a\x83\x92\xd5\xb2\x43\xed\xff\xfa\xdf\x4d\xe0\xbf\xf4\x1d\x89\xdb\x38\x49\x00\xdd\x7f\xf0\x45\xde\xdd\x97\x32\x0e\xf4\xfe\x36\x6b\xa1\x6d\x17\x3e\xc8\x86\xd4\x3f\xa8\x9b\xf5\x3b\x88\xa0\xa8\x7d\xb7\x85\x2e\x50\xb0\x8b\x9e\x7b\xc3\xe6\x7a\x26\x6a\xda\x2f\xf4\xf7\x30\x2f\x0e\x1b\x3a\x6c\x08\x24\x8f\x3e\x98\xdb\xb8\x5f\xbc\x74\xb8\x29\x52\x9f\x1d\x6f\xae\x67\xad\x97\xc0\x7a\x3d\x6f\x3e\x94\x3c\x22\x97\x61\x47\x31\x8e\x68\xfc\x96\x0a\x10\xd3\x96\x4e\xaa\x5d\x5c\x55\x1f\x7b\x26\x43\x03\x37\x23\xb9\x09\x40\x92\x9b\x98\x4a\x7f\x49\x7c\xb0\x39\xe9\x99\xf6\xe9\x36\x0e\x3e\xb5\x3f\x9f\x0f\x11\xa4\x26\x73\x81\x02\x0e\xa6\xbf\x7e\xe2\x80\xef\x12\x90\xdf\x89\xd4\x4b\xd0\x6b\xe4\xd1\x4e\xd1\x29\xfa\x13\x00\x00\xff\xff\xad\x8f\x80\x4c\x39\x06\x00\x00" func transactionsSetup_account_from_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -448,11 +448,11 @@ func transactionsSetup_account_from_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/setup_account_from_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x60, 0x6e, 0x5b, 0x1c, 0x5f, 0x86, 0x2f, 0x31, 0x93, 0x33, 0x23, 0x5a, 0x8a, 0x1f, 0x43, 0x2, 0xa8, 0x86, 0xc3, 0xb4, 0xb0, 0xe2, 0x90, 0x61, 0xaf, 0x85, 0xc3, 0x9, 0xe9, 0x64, 0x51, 0x8a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbd, 0xd5, 0xda, 0xc2, 0x14, 0x52, 0xcb, 0x3b, 0x70, 0xef, 0x90, 0xad, 0x19, 0x43, 0x47, 0x3b, 0x8f, 0x93, 0xf1, 0xf3, 0xa2, 0x8, 0x7d, 0x31, 0x89, 0xaf, 0x6f, 0xf8, 0xbb, 0x95, 0xd4, 0xb7}} return a, nil } -var _transactionsSetup_account_from_nft_referenceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\x41\x6f\x9b\x4c\x10\xbd\xf3\x2b\x5e\x7c\x88\x40\x72\xf0\xe5\xd3\x77\xb0\xec\x44\x11\xad\xa5\x1c\x6a\x45\x8d\x9b\xfb\x18\x06\xb3\x0a\xd9\x45\xbb\x83\x91\x15\xf9\xbf\x57\xb0\xc6\x36\xb4\x51\x0e\xdd\x13\xda\x7d\xf3\xe6\xcd\xcc\x1b\x66\xb3\x19\x36\x85\x72\x10\x4b\xda\x51\x2a\xca\x68\x28\x87\xa6\x20\x01\x69\x50\x9a\x9a\x5a\x0b\x1a\x53\x97\x19\x6c\xad\x83\x36\x42\x0c\x1c\x0b\x94\x38\x2e\x73\xd4\x55\x7b\x61\x39\x65\xb5\x67\xac\x57\x1b\x17\x7b\xce\xbc\xd6\x1d\x61\x17\x53\x3b\x76\xd8\x2b\x6e\x5c\x8b\x7e\xd3\xa6\x41\x53\xb0\xe5\x9e\xac\x65\x29\x18\xa9\x29\x4b\xbe\x44\x29\x0d\x27\xc6\xd2\x8e\x41\x3a\x6b\xb1\xa9\x65\x12\xee\xb0\xfc\x5e\xc9\xe1\x2a\x22\x0e\x02\xf5\x5e\x19\x2b\x58\x1b\xbd\xaa\xf5\x4e\x6d\x4b\xde\x98\x37\xd6\xc8\xad\x79\xc7\x64\x7c\x3d\xe9\xf1\x3f\x58\x28\x23\xa1\xd7\x4e\x9f\x07\x0f\xee\x26\x41\x70\xd5\xa1\x90\xb2\xcc\xb2\x73\x73\x3c\xfa\x8f\x29\xaa\x7a\x5b\xaa\xf4\x99\xa4\x98\xe3\xf9\xfc\x3d\x85\xca\xe6\xf8\xf5\xa4\xe5\xff\xff\x22\x7c\x04\x01\x00\x54\x96\x2b\xb2\x1c\x3a\xb5\xd3\x6c\xe7\xa0\x5a\x8a\xf0\xc9\xb9\x9a\x5f\x7c\xa9\x09\x55\xb4\x55\xa5\x92\x43\x62\xb4\xd8\xb6\x3e\x3b\xf5\xac\xae\xb8\x3c\x4e\xf1\x42\x7b\x7e\xa5\xb2\xe6\x08\xb7\x8f\x7e\x52\x6d\x16\x9c\x4e\xc9\x72\xd5\x1d\x2c\xb1\x63\x39\xc1\xfa\x0a\xa2\x38\xed\xf9\x14\xbb\x78\x6b\xac\x35\xcd\xe2\xf6\x63\xdc\xa9\x38\x39\xf3\x1c\xef\xc3\x4b\xb1\xd1\x39\x59\x7b\x1e\x1e\x50\x91\x56\x69\x38\x49\x3a\xbf\x68\x23\xf0\x94\x20\x58\xce\xd9\xb2\x4e\xbb\x89\x0f\x47\x3d\x89\x82\x81\x68\x9d\xcb\x4f\xce\xb1\xbc\x9e\xad\xe7\x59\xaf\x36\xa1\xca\xfe\x25\x6b\xc6\x4e\x59\xce\x5a\x9f\x4e\x2e\x3c\x9f\xf4\xec\x1b\x09\x61\x79\xd2\x13\x5b\x76\xa6\xdc\x73\x6b\x88\x70\x73\xa8\x78\x31\xb0\x48\xbc\x5e\x6d\x92\x41\xe4\x7d\x18\x45\x37\x20\x77\x83\x2f\x80\x97\xea\x67\x33\x24\xde\xe0\x04\xcd\xcd\x1f\x16\x77\x03\xa1\xdd\xeb\x85\x0a\x8b\xbb\x91\xf6\xd8\x6f\xcb\xf7\x21\x2e\x8c\x06\x09\x1d\xed\x19\x4a\xfa\x06\x9d\x56\xfe\x8c\xf0\x36\x8d\x4f\x6b\x18\xb7\xe8\x70\x71\x37\x4a\x3d\x85\x98\xf9\x38\xf9\x29\xc4\xfb\xe4\x3a\x63\xda\x97\xe8\x8d\x84\xb3\x07\x0f\xc8\x8d\x1d\xff\x07\xfe\x3e\x9a\x84\x2a\x2c\x7b\x71\x03\x13\xf7\x4a\x55\xbb\x52\x5f\x7a\x79\x60\xa5\xf6\x7c\x5e\xc4\x00\x1a\x8d\x1b\x34\xd0\x50\xf9\x65\x0d\x07\x7a\xa7\x20\x99\x63\xbc\x3c\xc7\xe0\x18\xfc\x0e\x00\x00\xff\xff\x9d\xf2\x7d\x21\x87\x05\x00\x00" +var _transactionsSetup_account_from_nft_referenceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x53\x41\x6f\xe2\x3c\x10\xbd\xe7\x57\xbc\x72\xa8\x12\x89\x86\xcb\xa7\xef\x80\xa0\x55\x95\x5d\xa4\x1e\x16\x55\x5b\xb6\xf7\x21\x19\x88\xd5\xd4\x8e\xec\x09\x11\xaa\xf8\xef\x2b\x63\x02\x24\xbb\x55\x0f\xeb\x53\x14\xbf\x79\xf3\x9e\xe7\xcd\x64\x32\xc1\xaa\x54\x0e\x62\x49\x3b\xca\x45\x19\x0d\xe5\xd0\x96\x24\x20\x0d\xca\x73\xd3\x68\x41\x6b\x9a\xaa\x80\x6d\x74\xe4\x2b\xc4\xc0\xb1\x40\x89\xe3\x6a\x83\xa6\xf6\x3f\x2c\xe7\xac\x76\x8c\xe5\x62\xe5\xd2\xc0\xb9\x69\xf4\x91\xf0\x58\xd3\x38\x76\xd8\x29\x6e\x9d\x47\xbf\x69\xd3\xa2\x2d\xd9\x72\x47\xe6\x59\x4a\x46\x6e\xaa\x8a\x2f\x55\x4a\xc3\x89\xb1\xb4\x65\x90\x2e\x3c\x36\xb7\x4c\xc2\x47\x2c\xbf\xd7\xb2\xbf\xaa\x48\xa3\x48\xbd\xd7\xc6\x0a\x46\x4b\xa3\x17\x8d\xde\xaa\x75\xc5\x2b\xf3\xc6\x7a\x74\xbe\xf9\xc1\x42\x05\x09\xbd\x7a\x29\xa3\x28\xba\x32\x1e\x53\x51\x58\x76\x6e\x8a\xc7\xf0\x31\x46\xdd\xac\x2b\x95\x3f\x93\x94\x53\x3c\x9f\xbf\xc7\x50\xc5\x14\xbf\x9e\xb4\xfc\xff\x5f\x82\x8f\x28\x02\x80\xda\x72\x4d\x96\x63\xa7\xb6\x9a\xed\x14\xd4\x48\x19\x3f\x39\xd7\xf0\x4b\x70\x90\x51\x4d\x6b\x55\x29\xd9\x67\x46\x8b\xf5\xb2\xed\x38\xb0\xba\xf2\x72\x39\xc6\x0b\xed\xf8\x95\xaa\x86\x13\xdc\x3e\x86\x01\xf8\x2e\x38\x9d\x8a\xe5\xca\x34\xe6\xd8\xb2\x9c\x60\x9d\x83\x24\xcd\x3b\x3e\xc5\x2e\x5d\x1b\x6b\x4d\x3b\xbb\xfd\x18\x3e\x4b\x9a\x9d\x79\x0e\xf7\xf1\xc5\x6c\x72\x6e\xe6\xcf\xc3\x03\x6a\xd2\x2a\x8f\x47\xd9\x31\x06\xda\x08\x02\x25\x08\x96\x37\x6c\x59\xe7\xc7\x41\xf6\x27\x38\x4a\xa2\x9e\x68\xbd\x91\x9f\xbc\xc1\xfc\x7a\x64\x81\x67\xb9\x58\xc5\xaa\xf8\x97\xae\x05\x3b\x65\xb9\xf0\xf1\x1b\x5d\x78\x3e\x79\xb3\x6f\x24\x84\xf9\x49\x4f\x6a\xd9\x99\x6a\xc7\x3e\x10\xf1\x6a\x5f\xf3\xac\x17\x91\x74\xb9\x58\x65\xbd\xca\xfb\x38\x49\x6e\x40\xee\x06\x5f\x00\x2f\xee\x27\x13\x64\x21\xb7\x04\xcd\xed\x1f\xc9\x75\x3d\xa1\xc7\xdb\x0b\x15\x66\x77\x03\xed\x69\x58\x82\xef\x7d\x5c\x9c\xf4\x1a\x3a\xda\x31\x94\x74\x0f\x74\xda\xe4\x33\x22\xc4\x34\x3d\x6d\x57\xea\xd1\xf1\xec\x6e\xd0\x7a\x0c\x31\xd3\x61\xf3\x53\x49\xc8\xc9\x75\xc7\xbc\xb3\x18\x82\x84\x73\x06\xf7\xd8\x18\x3b\x5c\xef\xbf\x8f\x26\xa3\x1a\xf3\x4e\x5c\x2f\xc4\x9d\x52\xe5\x57\xea\xcb\x2c\xf7\xa2\xe4\xcf\xe7\x26\x7a\xd0\x64\xf8\x40\x3d\x0d\x75\x58\xd6\xb8\xa7\x77\x0c\x92\x29\x86\xcb\x73\x88\x0e\xd1\xef\x00\x00\x00\xff\xff\xee\x86\x5e\x75\x5e\x05\x00\x00" func transactionsSetup_account_from_nft_referenceCdcBytes() ([]byte, error) { return bindataRead( @@ -468,7 +468,7 @@ 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{0x96, 0xcb, 0x4d, 0x1b, 0x65, 0x9, 0x82, 0xc9, 0xdb, 0x37, 0xa1, 0xf2, 0x15, 0x6a, 0x8d, 0xe8, 0x34, 0x28, 0x89, 0xc8, 0x61, 0x33, 0xe6, 0x4e, 0x84, 0x7f, 0x34, 0xfd, 0x3e, 0x6c, 0x7f, 0x3c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe0, 0x2d, 0xc8, 0x94, 0xcf, 0x69, 0x7a, 0x6b, 0xbb, 0x2b, 0x5f, 0x46, 0x34, 0x5f, 0x9f, 0xc1, 0xac, 0x46, 0x1a, 0x48, 0x2b, 0xda, 0xc1, 0x28, 0x52, 0xf0, 0x34, 0x6a, 0x30, 0x6b, 0xa0, 0xb0}} return a, nil } @@ -512,7 +512,7 @@ func transactionsTestUpgrade_nft_contractCdc() (*asset, error) { return a, nil } -var _transactionsTransfer_nftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x4d\x6f\xdb\x38\x10\xbd\xfb\x57\x4c\x7c\x48\x24\x20\x51\x2e\x8b\x3d\x08\xb6\x83\xac\xb3\x01\x72\xa8\x5b\xb8\x6e\x7a\xa6\xa5\x91\xc4\x56\x26\x05\x72\x64\x27\x08\xf2\xdf\x0b\x8a\x14\x4d\xc9\x49\x53\xa0\x3a\x18\x32\x39\x1f\x6f\xde\xcc\x3c\x5d\x5f\x5f\xc3\xa6\xe2\x1a\x48\x31\xa1\x59\x46\x5c\x0a\xe0\x1a\x0a\xa9\xec\x51\x81\x4a\x71\x51\x02\x13\xf0\xff\x13\xdb\x35\x35\xae\xee\x37\x50\x28\xb9\x03\x29\x10\x58\x96\xc9\x56\x10\x90\x04\x26\x24\x55\xa8\x26\x13\xbe\x6b\xa4\x22\x98\x3e\x72\x3c\xac\x51\xcb\x7a\x8f\x6a\xea\x4f\x3f\x21\xb1\x9c\x11\x33\xb7\xfa\x78\xbc\x92\xe2\xbe\x15\x25\xdf\xd6\xb8\x91\x3f\x51\x4c\x27\x93\x00\x52\x94\x49\x41\x8a\x65\x74\x9b\xe7\x0a\xb5\x4e\xc1\xbd\x5c\x42\x7f\xb3\x62\x3b\x4c\xe1\x2b\x19\xb4\x97\xa0\x30\xe3\x0d\x47\x41\x81\xe5\x81\x53\x95\x2b\x76\x78\xb8\x4b\xe1\xdb\x83\xa0\x7f\xff\x89\xe1\x65\x32\x01\x00\x30\x34\xac\xb1\x40\x85\x22\x43\x53\x0c\x55\xe8\xed\x51\x5d\x68\xc8\x64\x5d\x63\x87\xa5\x73\xa8\x91\xfc\xfd\x1a\x8b\x14\x58\x4b\x55\x34\x2e\x22\xf9\xee\x4c\x62\x38\x7f\x39\xb9\x5c\xfa\x90\xaf\x6f\xa1\x90\x45\x87\xe2\x98\xd8\xe0\xca\xb1\x91\x9a\x53\x77\x63\x1a\x41\xd2\xc3\x51\x98\x21\xdf\xa3\xea\xe0\xbc\x91\x6e\xed\xee\x5d\xb2\x46\x61\xc3\x14\x46\x9a\x97\x02\x95\x2b\xe0\x3f\xa9\x94\x3c\x3c\xb2\xba\xc5\x18\xce\x6f\x6d\x73\x3d\x4b\x16\x23\x6c\x3b\x23\x0f\xa1\x6f\x00\x30\x0d\x61\xcb\x41\xf5\xa5\x78\x67\x03\x73\x1f\x9a\xcc\xa1\x44\x72\x69\xc6\x3d\x8e\x93\xfe\x40\x27\x36\xe5\xec\x3c\x8c\xbf\x88\x44\xd7\xf2\x70\x00\x62\x9f\xca\x3c\x37\x37\xd0\x30\xc1\xb3\x68\xba\x94\x6d\x9d\x83\x90\xd4\x83\x1f\x00\x95\x05\x94\x7c\x8f\x02\x4c\x40\x3b\xdb\xcc\x62\x98\xc6\x83\xca\x95\xf5\x08\x4a\xf7\xbd\x31\x23\x6d\x5d\xc7\xbc\x0c\xaa\x3f\x7a\xdc\x19\x87\xf9\x80\x8e\xc4\xc5\x5f\x3a\x4f\x03\x32\x32\x67\xad\xca\x70\xf3\xdc\x60\x0a\x82\xd7\x97\x9d\x8f\xfd\x6b\x7e\x67\x83\x8d\x4a\x56\xf7\x9b\xe5\x20\xc9\x22\x8a\x63\x60\xfa\x0c\x3e\xb0\xbb\x79\x87\xbb\x01\x55\xb9\x44\xdd\xf1\xd8\x53\x71\x12\xa6\x43\x37\xe2\xcd\x91\xce\x8e\x23\xd1\xef\x98\x9d\xbe\x0b\x3d\xa2\xd3\x3b\x6b\xac\x8b\x24\x58\x34\x98\x3b\x97\x44\x93\x54\xac\xc4\x7e\x34\xfe\x6e\xff\x16\xd1\xa0\x78\xf3\x98\x5e\xa6\xa3\x7e\xf5\x49\xbf\x30\xaa\x06\x0e\x71\xc0\x97\x1b\xe7\x23\x55\xc6\x09\x8d\x80\xca\xed\x0f\x34\x7b\x62\xd7\x57\x37\x98\xf1\x82\x63\x0e\x0d\xa3\x6a\xc4\x58\x89\xd6\xc8\xeb\x98\x86\xa6\xdd\xd6\x3c\xf3\x8a\x6b\x83\x0d\x86\xcb\x1b\x0f\xf7\xca\x1f\xbf\xd3\x14\x17\xf8\xa4\x37\xbd\xa0\x9c\x88\xdf\x58\x71\x96\xac\x81\xf9\x31\x7b\x92\xb1\x86\x6d\x79\xcd\x89\xa3\x4e\x4a\xa4\xd9\xef\xd4\x68\x11\x8d\x38\xb6\x70\x0c\xc5\x1f\x6f\xf3\x09\x4d\x17\x1a\xfa\xc8\xb0\xec\x61\x3c\x87\xe4\x76\x13\x15\x68\xa5\x45\xde\xd7\xe1\xc6\x29\xfa\x63\x21\x79\x8b\x35\x0f\xa5\x0f\xdc\xe7\x77\xd2\x8b\x4f\x98\xb5\x84\xa1\xac\x1a\x3a\x45\x41\x30\xbb\x3a\x19\x79\xff\x1e\x85\x1f\xb0\xe3\x7b\xfc\x6e\x69\x89\xfb\x5a\x44\x64\x28\x4f\x61\x76\x25\x0a\x1a\x42\x69\xa4\x26\x78\xf1\x11\xce\x4e\x92\x97\x48\x0f\x77\x3a\xb2\x62\xcc\xb8\xd0\x01\x8a\x38\x85\xe9\x67\xc5\x4b\x2e\x58\x0d\xf2\x20\x50\x81\xae\x3c\x41\x15\x0b\x94\x92\x89\xe7\x9d\x54\x38\x75\xb9\x5f\x27\xbf\x02\x00\x00\xff\xff\x0d\xfa\xa9\xdb\x79\x08\x00\x00" +var _transactionsTransfer_nftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x4d\x6f\xe3\x36\x10\xbd\xfb\x57\x4c\x7c\x48\x24\x20\x51\x2e\x45\x0f\x82\xed\x20\x75\x1a\x20\x87\xba\x85\xeb\xcd\x9e\x69\x69\x24\x71\x57\x26\x05\x72\x64\x27\x30\xf2\xdf\x17\x14\x29\x9a\x92\x93\xcd\x02\xab\x83\x21\x93\xf3\xf1\xe6\xcd\xcc\xd3\xed\xed\x2d\x6c\x2a\xae\x81\x14\x13\x9a\x65\xc4\xa5\x00\xae\xa1\x90\xca\x1e\x15\xa8\x14\x17\x25\x30\x01\x7f\xbf\xb0\x5d\x53\xe3\xea\x71\x03\x85\x92\x3b\x90\x02\x81\x65\x99\x6c\x05\x01\x49\x60\x42\x52\x85\x6a\x32\xe1\xbb\x46\x2a\x82\xe9\x33\xc7\xc3\x1a\xb5\xac\xf7\xa8\xa6\xfe\xf4\x1f\x24\x96\x33\x62\xe6\x56\x9f\x8e\x57\x52\x3c\xb6\xa2\xe4\xdb\x1a\x37\xf2\x3b\x8a\xe9\x64\x12\x40\x8a\x32\x29\x48\xb1\x8c\xee\xf3\x5c\xa1\xd6\x29\xb8\x97\x6b\xe8\x6f\x56\x6c\x87\x29\xfc\x4f\x06\xed\x35\x28\xcc\x78\xc3\x51\x50\x60\x79\xe0\x54\xe5\x8a\x1d\x9e\x1e\x52\xf8\xf2\x24\xe8\xcf\x3f\x62\x38\x4e\x26\x00\x00\x86\x86\x35\x16\xa8\x50\x64\x68\x8a\xa1\x0a\xbd\x3d\xaa\x2b\x0d\x99\xac\x6b\xec\xb0\x74\x0e\x35\x92\xbf\x5f\x63\x91\x02\x6b\xa9\x8a\xc6\x45\x24\x5f\x9d\x49\x0c\x97\xc7\xb3\xcb\xa5\x0f\xf9\xf6\x1e\x0a\x59\x74\x28\x4e\x89\x0d\xae\x1c\x1b\xa9\x39\x75\x37\xa6\x11\x24\x3d\x1c\x85\x19\xf2\x3d\xaa\x0e\xce\x3b\xe9\xd6\xee\xde\x25\x6b\x14\x36\x4c\x61\xa4\x79\x29\x50\xb9\x02\xfe\x92\x4a\xc9\xc3\x33\xab\x5b\x8c\xe1\xf2\xde\x36\xd7\xb3\x64\x31\xc2\xb6\x33\xf2\x10\xfa\x06\x00\xd3\x10\xb6\x1c\x54\x5f\x8a\x77\x36\x30\xf7\xa1\xc9\x1c\x4a\x24\x97\x66\xdc\xe3\x38\xe9\x0f\x74\x62\x53\xce\x2e\x8f\x61\x82\xb7\x45\x24\xba\xa6\x87\x23\x10\xfb\x64\xe6\xb9\xbb\x83\x86\x09\x9e\x45\xd3\xa5\x6c\xeb\x1c\x84\xa4\x1e\xfe\x00\xaa\x2c\xa0\xe4\x7b\x14\x60\x02\xda\xe9\x66\x16\xc5\x34\x1e\xd4\xae\xac\x47\x50\xbc\xef\x8e\x19\x6a\xeb\x3a\x66\x66\x50\xff\xc9\xe3\xc1\x38\xcc\x07\x84\x24\x2e\xfe\xd2\x79\x1a\x90\x91\x39\x6b\x55\x86\x9b\xd7\x06\x53\x10\xbc\xbe\xee\x7c\xec\x5f\xf3\x3b\x1b\xec\x54\xb2\x7a\xdc\x2c\x07\x49\x16\x51\x1c\x03\xd3\x17\xf0\x89\xdd\xdd\x07\xdc\x0d\xa8\xca\x25\xea\x8e\xc7\x9e\x8a\xb3\x30\x1d\xba\x11\x6f\x8e\x74\x76\x1a\x8a\x7e\xcb\xec\xfc\x5d\xe9\x11\x9d\xde\x59\x63\x5d\x24\xc1\xaa\xc1\xdc\xb9\x24\x9a\xa4\x62\x25\xf6\xc3\xf1\x7b\x1b\xb8\x88\x06\xc5\x9b\xc7\xf4\x32\x1d\xf5\xab\x4f\xfa\x1f\xa3\x6a\xe0\x10\x07\x7c\xb9\x81\x3e\x51\x65\x9c\xd0\x48\xa8\xdc\x7e\x43\xb3\x29\x76\x81\x75\x83\x19\x2f\x38\xe6\xd0\x30\xaa\x46\x8c\x95\x68\x8d\xbc\x92\x69\x68\xda\x6d\xcd\x33\xaf\xb9\x36\xd8\x60\xb8\xbc\xf1\x70\xb3\xfc\xf1\x07\x4d\x71\x81\xcf\x7a\xd3\x4b\xca\x99\xfc\x8d\x35\x67\xc9\x1a\x98\x9f\xb2\x27\x19\x6b\xd8\x96\xd7\x9c\x38\xea\xa4\x44\x9a\xfd\x4c\x8f\x16\xd1\x88\x63\x0b\xc7\x50\xfc\xf9\x36\x9f\xd1\x74\xa5\xa1\x8f\x0c\xcb\x1e\xc6\x6b\x48\x6e\x37\x51\x81\x5a\x5a\xe4\x7d\x1d\x6e\x9c\xa2\x5f\x16\x92\xf7\x58\xf3\x50\xfa\xc0\x7d\x7e\x27\xbe\xf8\x82\x59\x4b\x18\x0a\xab\xa1\x53\x14\x04\xb3\x9b\xb3\x91\xf7\xef\x51\xf8\x09\x3b\xbd\xc7\x1f\x96\x96\xb8\xef\x45\x44\x86\xf2\x14\x66\x37\xa2\xa0\x21\x94\x46\x6a\x82\xa3\x8f\x70\x71\x96\xbc\x44\x7a\x7a\xd0\x91\x95\x63\xc6\x85\x0e\x50\xc4\x29\x4c\xff\x55\xbc\xe4\x82\xd5\x20\x0f\x02\x15\xe8\xca\x13\x54\xb1\x40\x29\x99\x78\xdd\x49\x85\x53\x97\xfb\x6d\xf2\x23\x00\x00\xff\xff\xc6\x80\x65\x85\x7b\x08\x00\x00" func transactionsTransfer_nftCdcBytes() ([]byte, error) { return bindataRead( @@ -528,11 +528,11 @@ func transactionsTransfer_nftCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/transfer_nft.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0x4d, 0x2c, 0x5f, 0xc4, 0xda, 0x8c, 0x18, 0x55, 0x6f, 0x23, 0x5d, 0x1c, 0x2c, 0xe4, 0x48, 0x4d, 0x35, 0x34, 0xaf, 0x6, 0x2a, 0xc3, 0xe5, 0x51, 0x69, 0x4, 0x4f, 0x5a, 0xfd, 0xa1, 0x7d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0xfb, 0xd0, 0x61, 0xa6, 0x14, 0x50, 0xcb, 0x4c, 0x96, 0x60, 0xc7, 0x61, 0xee, 0xec, 0x9e, 0xb1, 0xa4, 0xd4, 0x9, 0xf2, 0xd5, 0x47, 0xe6, 0xf3, 0x1, 0x98, 0xea, 0x7d, 0x18, 0xa3, 0x3d}} return a, nil } -var _transactionsUnlink_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xcd\x4e\xeb\x30\x10\x85\xf7\x7e\x8a\x73\xb3\xb8\x37\x91\xae\xd2\x7d\x05\x54\xa8\xd0\x1d\x55\x85\x02\xfb\xa9\x3b\x10\x0b\xd7\xb6\xec\x49\x4b\x85\xfa\xee\x28\x7f\xfd\x11\x0b\x66\x11\x29\xc7\xc7\xc7\xdf\xcc\x4c\x26\x13\x54\xb5\x49\x90\x48\x2e\x91\x16\xe3\x1d\x1a\x67\x8d\xfb\x48\x48\xe6\xdd\x71\xfc\x97\x10\x9a\xb5\x35\x1a\x73\x0a\xb4\x36\xd6\xc8\x01\x24\xd0\xe4\xbc\x33\x9a\xec\x78\x1c\x48\x6a\xa5\xcc\x36\xf8\x28\x78\x62\xa1\x0d\x09\xbd\x1a\xde\x27\xbc\x45\xbf\x45\x76\xa5\x65\xa3\xf3\xf1\x93\xb6\xc1\xf2\x72\x51\x0d\xb6\xb3\x90\x29\x75\xc9\xf5\xa5\x00\x20\x44\x0e\x14\x39\xef\xe9\xa6\xa0\x46\xea\xfc\xc5\x75\x10\xa9\x1e\x18\xe5\x50\xe0\xef\xbd\xd6\xbe\x71\x52\x0c\x17\xdb\xb2\x2c\xd0\xde\x5a\xee\x12\x1f\x48\x08\xb7\x17\x04\x65\xe4\xe4\xed\x8e\xe7\xde\x49\x24\x2d\x2d\x69\xde\x6a\x4d\xd4\x5c\x1d\x02\x4f\xe1\x8c\xfd\x8f\x9d\xe1\x7d\xff\xdb\x7e\x6f\xae\x1a\x2b\x97\x8b\x6a\x7e\xf5\xc4\x5d\x5e\x14\xa0\xf4\x07\xbf\xf8\x66\x27\xcc\xb6\x66\x33\x04\x72\x46\xe7\x59\x6b\x7f\xee\xc1\x22\x36\x9e\x13\x9c\x17\x0c\xa8\xf8\x11\xd3\xd1\x65\xc5\x29\xac\x1f\x54\xa9\xc7\xed\x19\x4e\x65\x33\xce\x2b\xbf\x68\xfe\x1c\xb3\xea\x36\xba\x22\xa9\xfb\x98\xa3\x3a\xaa\xef\x00\x00\x00\xff\xff\xb8\x62\x07\x63\x2b\x02\x00\x00" +var _transactionsUnlink_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x4f\x4f\xf3\x30\x0c\xc6\xef\xfd\x14\xcf\xdb\xc3\x4b\x2b\xa1\xee\x3e\x01\x13\x1a\xec\xc6\x34\xa1\xc2\xdd\xcb\x2c\x6a\x91\x25\x51\xe2\x6e\x4c\x68\xdf\x1d\xb5\xdd\x5f\x71\xc0\x87\x48\x71\x9c\xe7\xf9\xd9\x1e\x8d\x46\xa8\x1b\x49\xd0\x48\x2e\x91\x51\xf1\x0e\xad\xb3\xe2\x3e\x13\x92\x7c\x38\x8e\x37\x09\xa1\x5d\x5a\x31\x98\x52\xa0\xa5\x58\xd1\x1d\x48\x61\xc8\x79\x27\x86\xec\xf1\x39\x90\x36\x59\x26\xeb\xe0\xa3\x22\x7f\x61\xa5\x15\x29\xbd\x0b\x6f\x53\x7e\x4a\x3f\x7f\xd1\x3a\x58\x9e\xcf\xea\x3c\xcb\x2e\x4d\xbf\x33\x00\x08\x91\x03\x45\x2e\x06\xeb\x31\xa8\xd5\xa6\x78\x73\xbd\x43\x6a\x0e\x00\xba\x2b\xf1\xff\xd1\x18\xdf\x3a\x2d\x0f\x1f\xbb\xb0\xac\x30\xde\x5a\xee\x15\x9f\x48\x09\xf7\x38\x1b\x56\x91\x93\xb7\x1b\x9e\x7a\xa7\x91\x8c\x76\x64\x45\x97\x6b\xa3\xe1\x7a\x17\x78\x0c\x27\xf6\x16\x1b\xe1\xed\x70\xed\xce\xbb\xab\x46\xaa\xf9\xac\x9e\x5e\x59\x3c\x14\x65\x09\x4a\xff\xf0\x47\xdd\xe4\x84\xd9\xc5\x64\x82\x40\x4e\x4c\x91\x77\xe5\xaf\x03\x58\xc4\xca\x73\x82\xf3\x8a\x03\x2a\x7e\xc9\xf4\x74\x79\x79\x12\x1b\x06\x55\x99\xe3\x6a\x84\x53\xd5\x1e\xe7\x55\x5c\x34\x7f\x96\x59\xf4\xeb\x5a\x90\x36\x83\xcc\x3e\xdb\x67\x3f\x01\x00\x00\xff\xff\x1d\x92\x1e\x7f\x08\x02\x00\x00" func transactionsUnlink_collectionCdcBytes() ([]byte, error) { return bindataRead( @@ -548,7 +548,7 @@ func transactionsUnlink_collectionCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/unlink_collection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0xcf, 0x1c, 0x56, 0x78, 0x5e, 0xb1, 0x95, 0x11, 0xbd, 0x19, 0x9a, 0x7f, 0xc8, 0xa5, 0x74, 0x52, 0xc9, 0x7, 0xe9, 0x84, 0x6e, 0x34, 0x71, 0x29, 0x81, 0x84, 0x8b, 0x61, 0x72, 0x1d, 0xfa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbe, 0x37, 0x93, 0x6, 0xcd, 0xb3, 0xed, 0xa7, 0x85, 0x4f, 0xb4, 0x46, 0x6d, 0x76, 0x5b, 0x7c, 0x78, 0x34, 0xb, 0xc4, 0x3a, 0x8e, 0x6a, 0xb9, 0x4c, 0x5d, 0x87, 0xd0, 0xc2, 0x32, 0x7b, 0x12}} return a, nil } diff --git a/lib/go/templates/templates.go b/lib/go/templates/templates.go index bfba0457..f166d2db 100644 --- a/lib/go/templates/templates.go +++ b/lib/go/templates/templates.go @@ -18,14 +18,19 @@ var ( placeholderFungibleToken = regexp.MustCompile(`"FungibleToken"`) placeholderViewResolver = regexp.MustCompile(`"ViewResolver"`) placeholderFlowToken = regexp.MustCompile(`"FlowToken"`) + nonFungibleTokenImport = "NonFungibleToken from " + exampleNFTImport = "ExampleNFT from " + metadataViewsImport = "MetadataViews from " + fungibleTokenImport = "FungibleToken from " + viewResolverImport = "ViewResolver from " ) func replaceAddresses(code string, nftAddress, exampleNFTAddress, metadataAddress, ftAddress, viewResolverAddress flow.Address) []byte { - code = placeholderNonFungibleToken.ReplaceAllString(code, "0x"+nftAddress.String()) - code = placeholderExampleNFT.ReplaceAllString(code, "0x"+exampleNFTAddress.String()) - code = placeholderMetadataViews.ReplaceAllString(code, "0x"+metadataAddress.String()) - code = placeholderFungibleToken.ReplaceAllString(code, "0x"+ftAddress.String()) - code = placeholderViewResolver.ReplaceAllString(code, "0x"+viewResolverAddress.String()) + code = placeholderNonFungibleToken.ReplaceAllString(code, nonFungibleTokenImport+withHexPrefix(nftAddress.String())) + code = placeholderExampleNFT.ReplaceAllString(code, exampleNFTImport+withHexPrefix(exampleNFTAddress.String())) + code = placeholderMetadataViews.ReplaceAllString(code, metadataViewsImport+withHexPrefix(metadataAddress.String())) + code = placeholderFungibleToken.ReplaceAllString(code, fungibleTokenImport+withHexPrefix(ftAddress.String())) + code = placeholderViewResolver.ReplaceAllString(code, viewResolverImport+withHexPrefix(viewResolverAddress.String())) return []byte(code) } diff --git a/lib/go/test/go.mod b/lib/go/test/go.mod index df538cec..88180cde 100644 --- a/lib/go/test/go.mod +++ b/lib/go/test/go.mod @@ -4,11 +4,11 @@ go 1.18 require ( github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0 - github.com/onflow/cadence v1.0.0-M5 - github.com/onflow/flow-emulator v1.0.0-M3 - github.com/onflow/flow-go-sdk v1.0.0-M2 - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240205233530-86ee8c352fa6 - github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240125205553-d2b571fb3fad + github.com/onflow/cadence v1.0.0-M8 + github.com/onflow/flow-emulator v1.0.0-M8 + github.com/onflow/flow-go-sdk v1.0.0-M7 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240214230837-cd2c42e54b4a + github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240214230837-cd2c42e54b4a github.com/rs/zerolog v1.29.0 github.com/stretchr/testify v1.8.4 ) @@ -50,7 +50,7 @@ require ( github.com/fxamacker/circlehash v0.3.0 // indirect github.com/getsentry/sentry-go v0.18.0 // indirect github.com/glebarez/go-sqlite v1.22.0 // indirect - github.com/go-logr/logr v1.2.4 // indirect + github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/go-ole/go-ole v1.2.6 // indirect github.com/go-redis/redis/v8 v8.11.5 // indirect @@ -60,37 +60,37 @@ require ( github.com/golang/glog v1.1.2 // indirect github.com/golang/protobuf v1.5.3 // indirect github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect - github.com/google/uuid v1.5.0 // indirect + github.com/google/uuid v1.6.0 // indirect github.com/gorilla/websocket v1.5.0 // indirect - github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 // indirect + github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 // indirect github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/go-multierror v1.1.1 // indirect - github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d // indirect - github.com/hashicorp/golang-lru/v2 v2.0.2 // indirect + github.com/hashicorp/golang-lru v1.0.2 // indirect + github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect github.com/hashicorp/hcl v1.0.0 // indirect github.com/holiman/bloomfilter/v2 v2.0.3 // indirect github.com/holiman/uint256 v1.2.3 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/ipfs/bbloom v0.0.4 // indirect - github.com/ipfs/go-block-format v0.1.2 // indirect + github.com/ipfs/go-block-format v0.2.0 // indirect github.com/ipfs/go-cid v0.4.1 // indirect github.com/ipfs/go-datastore v0.6.0 // indirect github.com/ipfs/go-ipfs-blockstore v1.3.0 // indirect github.com/ipfs/go-ipfs-ds-help v1.1.0 // indirect - github.com/ipfs/go-ipfs-util v0.0.2 // indirect - github.com/ipfs/go-ipld-format v0.5.0 // indirect + github.com/ipfs/go-ipfs-util v0.0.3 // indirect + github.com/ipfs/go-ipld-format v0.6.0 // indirect github.com/ipfs/go-log v1.0.5 // indirect github.com/ipfs/go-log/v2 v2.5.1 // indirect github.com/ipfs/go-metrics-interface v0.0.1 // indirect github.com/jbenet/goprocess v0.1.4 // indirect github.com/k0kubun/pp v3.0.1+incompatible // indirect github.com/kevinburke/go-bindata v3.24.0+incompatible // indirect - github.com/klauspost/compress v1.16.5 // indirect - github.com/klauspost/cpuid/v2 v2.2.5 // indirect + github.com/klauspost/compress v1.17.4 // indirect + github.com/klauspost/cpuid/v2 v2.2.6 // 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/libp2p/go-libp2p v0.32.2 // indirect github.com/logrusorgru/aurora v2.0.3+incompatible // indirect github.com/logrusorgru/aurora/v4 v4.0.0 // indirect github.com/magiconair/properties v1.8.7 // indirect @@ -98,25 +98,27 @@ require ( github.com/mattn/go-isatty v0.0.20 // indirect github.com/mattn/go-runewidth v0.0.15 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect + github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect github.com/minio/sha256-simd v1.0.1 // indirect github.com/mitchellh/mapstructure v1.5.0 // indirect github.com/mmcloughlin/addchain v0.4.0 // indirect github.com/mr-tron/base58 v1.2.0 // indirect github.com/multiformats/go-base32 v0.1.0 // indirect github.com/multiformats/go-base36 v0.2.0 // indirect - github.com/multiformats/go-multiaddr v0.9.0 // indirect + github.com/multiformats/go-multiaddr v0.12.2 // indirect github.com/multiformats/go-multibase v0.2.0 // indirect github.com/multiformats/go-multicodec v0.9.0 // indirect github.com/multiformats/go-multihash v0.2.3 // indirect - github.com/multiformats/go-multistream v0.4.1 // indirect + github.com/multiformats/go-multistream v0.5.0 // indirect github.com/multiformats/go-varint v0.0.7 // indirect github.com/olekukonko/tablewriter v0.0.5 // indirect github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f // indirect github.com/onflow/crypto v0.25.0 // indirect - github.com/onflow/flow-core-contracts/lib/go/contracts v0.15.2-0.20240206003101-928bf99024d7 // indirect - github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240206003101-928bf99024d7 // indirect - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240205224107-320aa3cf09e0 // indirect - github.com/onflow/flow-go v0.33.2-0.20240206235622-50f8c81f1f43 // indirect + github.com/onflow/flow-core-contracts/lib/go/contracts v0.15.2-0.20240227190927-0e6ce7e3222b // indirect + github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240227190927-0e6ce7e3222b // indirect + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240213220156-959b70719876 // indirect + github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 // indirect + github.com/onflow/flow-go v0.34.0-crescendo-preview.5.0.20240228222755-c41bc8a25122 // indirect github.com/onflow/flow/protobuf/go/flow v0.3.7 // indirect github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba // indirect github.com/opentracing/opentracing-go v1.2.0 // indirect @@ -125,15 +127,15 @@ require ( github.com/pierrec/lz4 v2.6.1+incompatible // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - github.com/prometheus/client_golang v1.16.0 // indirect - github.com/prometheus/client_model v0.4.0 // indirect - github.com/prometheus/common v0.42.0 // indirect - github.com/prometheus/procfs v0.10.1 // indirect + github.com/prometheus/client_golang v1.18.0 // indirect + github.com/prometheus/client_model v0.5.0 // indirect + github.com/prometheus/common v0.45.0 // indirect + github.com/prometheus/procfs v0.12.0 // indirect github.com/psiemens/graceland v1.0.0 // indirect 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/rogpeppe/go-internal v1.10.0 // indirect github.com/sethvargo/go-retry v0.2.3 // indirect github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible // indirect github.com/slok/go-http-metrics v0.10.0 // indirect @@ -157,33 +159,33 @@ require ( github.com/vmihailenco/tagparser v0.1.1 // indirect github.com/x448/float16 v0.8.4 // indirect github.com/zeebo/blake3 v0.2.3 // indirect - go.opentelemetry.io/otel v1.16.0 // indirect + go.opentelemetry.io/otel v1.22.0 // indirect go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.16.0 // indirect - go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.16.0 // indirect - go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.14.0 // indirect - go.opentelemetry.io/otel/metric v1.16.0 // indirect - go.opentelemetry.io/otel/sdk v1.16.0 // indirect - go.opentelemetry.io/otel/trace v1.16.0 // indirect - go.opentelemetry.io/proto/otlp v0.19.0 // indirect + go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0 // indirect + go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0 // indirect + go.opentelemetry.io/otel/metric v1.22.0 // indirect + go.opentelemetry.io/otel/sdk v1.21.0 // indirect + go.opentelemetry.io/otel/trace v1.22.0 // indirect + go.opentelemetry.io/proto/otlp v1.0.0 // indirect go.uber.org/atomic v1.11.0 // indirect go.uber.org/multierr v1.11.0 // indirect - go.uber.org/zap v1.24.0 // indirect - golang.org/x/crypto v0.17.0 // indirect - golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect + go.uber.org/zap v1.26.0 // indirect + golang.org/x/crypto v0.18.0 // indirect + golang.org/x/exp v0.0.0-20240119083558-1b970713d09a // indirect golang.org/x/mod v0.14.0 // indirect - golang.org/x/net v0.19.0 // indirect - golang.org/x/sync v0.5.0 // indirect - golang.org/x/sys v0.15.0 // indirect + golang.org/x/net v0.20.0 // indirect + golang.org/x/sync v0.6.0 // indirect + golang.org/x/sys v0.16.0 // indirect golang.org/x/text v0.14.0 // indirect - golang.org/x/tools v0.16.1 // indirect + golang.org/x/tools v0.17.0 // indirect golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect - gonum.org/v1/gonum v0.13.0 // indirect - google.golang.org/appengine v1.6.7 // indirect - google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20231030173426-d783a09b4405 // indirect - google.golang.org/grpc v1.59.0 // indirect - google.golang.org/protobuf v1.31.0 // indirect + gonum.org/v1/gonum v0.14.0 // indirect + google.golang.org/appengine v1.6.8 // indirect + google.golang.org/genproto v0.0.0-20240102182953-50ed04b92917 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20240108191215-35c7eff3a6b1 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240108191215-35c7eff3a6b1 // indirect + google.golang.org/grpc v1.60.1 // indirect + google.golang.org/protobuf v1.32.0 // indirect gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect lukechampine.com/blake3 v1.2.1 // indirect diff --git a/lib/go/test/go.sum b/lib/go/test/go.sum index fc081129..f4c430f4 100644 --- a/lib/go/test/go.sum +++ b/lib/go/test/go.sum @@ -1288,6 +1288,8 @@ github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbV 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= github.com/go-logr/logr v1.2.4/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= +github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ= +github.com/go-logr/logr v1.4.1/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= github.com/go-martini/martini v0.0.0-20170121215854-22fa46961aab/go.mod h1:/P9AEU963A2AYjv4d1V5eVL1CQbEJq6aCNHDDjibzu8= @@ -1448,6 +1450,8 @@ github.com/google/uuid v1.4.0 h1:MtMxsa51/r9yyhkyLsVeVt0B+BGQZzpQiTQ4eHZ8bc4= github.com/google/uuid v1.4.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.5.0 h1:1p67kYwdtXjb0gL0BPiP1Av9wiZPo5A8z2cWkTZ+eyU= github.com/google/uuid v1.5.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= github.com/googleapis/enterprise-certificate-proxy v0.1.0/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= github.com/googleapis/enterprise-certificate-proxy v0.2.0/go.mod h1:8C0jb7/mgJe/9KK8Lm7X9ctZC2t60YyIpYEI16jx0Qg= @@ -1489,6 +1493,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/grpc-ecosystem/grpc-gateway/v2 v2.19.0 h1:Wqo399gCIufwto+VfwCSvsnfGpF/w5E9CNxSwbpD6No= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0/go.mod h1:qmOFXW2epJhM0qSnUUYpldc7gVz2KMQwJ/QYCDIa7XU= github.com/guptarohit/asciigraph v0.5.5/go.mod h1:dYl5wwK4gNsnFf9Zp+l06rFiDZ5YtXM6x7SRWZ3KGag= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= @@ -1505,8 +1511,12 @@ github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d h1:dg1dEPuWpEqDnvIw251EVy4zlP8gWbsGj4BsUKCRpYs= github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= +github.com/hashicorp/golang-lru v1.0.2 h1:dV3g9Z/unq5DpblPpw+Oqcv4dU/1omnb4Ok8iPY6p1c= +github.com/hashicorp/golang-lru v1.0.2/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= github.com/hashicorp/golang-lru/v2 v2.0.2 h1:Dwmkdr5Nc/oBiXgJS3CDHNhJtIHkuZ3DZF5twqnfBdU= github.com/hashicorp/golang-lru/v2 v2.0.2/go.mod h1:QeFd9opnmA6QUJc5vARoKUSoFhyfM2/ZepoAG6RGpeM= +github.com/hashicorp/golang-lru/v2 v2.0.7 h1:a+bsQ5rvGLjzHuww6tVxozPZFVghXaHOwFs4luLUK2k= +github.com/hashicorp/golang-lru/v2 v2.0.7/go.mod h1:QeFd9opnmA6QUJc5vARoKUSoFhyfM2/ZepoAG6RGpeM= github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= github.com/holiman/billy v0.0.0-20230718173358-1c7e68d277a7/go.mod h1:5GuXa7vkL8u9FkFuWdVvfR5ix8hRB7DbOAaYULamFpc= @@ -1546,6 +1556,8 @@ github.com/ipfs/bbloom v0.0.4/go.mod h1:cS9YprKXpoZ9lT0n/Mw/a6/aFV6DTjTLYHeA+gyq github.com/ipfs/boxo v0.10.0 h1:tdDAxq8jrsbRkYoF+5Rcqyeb91hgWe2hp7iLu7ORZLY= github.com/ipfs/go-block-format v0.1.2 h1:GAjkfhVx1f4YTODS6Esrj1wt2HhrtwTnhEr+DyPUaJo= github.com/ipfs/go-block-format v0.1.2/go.mod h1:mACVcrxarQKstUU3Yf/RdwbC4DzPV6++rO2a3d+a/KE= +github.com/ipfs/go-block-format v0.2.0 h1:ZqrkxBA2ICbDRbK8KJs/u0O3dlp6gmAuuXUJNiW1Ycs= +github.com/ipfs/go-block-format v0.2.0/go.mod h1:+jpL11nFx5A/SPpsoBn6Bzkra/zaArfSmsknbPMYgzM= github.com/ipfs/go-cid v0.0.5/go.mod h1:plgt+Y5MnOey4vO4UlUazGqdbEXuFYitED67FexhXog= github.com/ipfs/go-cid v0.4.1 h1:A/T3qGvxi4kpKWWcPC/PgbvDA2bjVLO7n4UeVwnbs/s= github.com/ipfs/go-cid v0.4.1/go.mod h1:uQHwDeX4c6CtyrFwdqyhpNcxVewur1M7l7fNU7LKwZk= @@ -1561,8 +1573,12 @@ github.com/ipfs/go-ipfs-ds-help v1.1.0 h1:yLE2w9RAsl31LtfMt91tRZcrx+e61O5mDxFRR9 github.com/ipfs/go-ipfs-ds-help v1.1.0/go.mod h1:YR5+6EaebOhfcqVCyqemItCLthrpVNot+rsOU/5IatU= github.com/ipfs/go-ipfs-util v0.0.2 h1:59Sswnk1MFaiq+VcaknX7aYEyGyGDAA73ilhEK2POp8= github.com/ipfs/go-ipfs-util v0.0.2/go.mod h1:CbPtkWJzjLdEcezDns2XYaehFVNXG9zrdrtMecczcsQ= +github.com/ipfs/go-ipfs-util v0.0.3 h1:2RFdGez6bu2ZlZdI+rWfIdbQb1KudQp3VGwPtdNCmE0= +github.com/ipfs/go-ipfs-util v0.0.3/go.mod h1:LHzG1a0Ig4G+iZ26UUOMjHd+lfM84LZCrn17xAKWBvs= github.com/ipfs/go-ipld-format v0.5.0 h1:WyEle9K96MSrvr47zZHKKcDxJ/vlpET6PSiQsAFO+Ds= github.com/ipfs/go-ipld-format v0.5.0/go.mod h1:ImdZqJQaEouMjCvqCe0ORUS+uoBmf7Hf+EO/jh+nk3M= +github.com/ipfs/go-ipld-format v0.6.0 h1:VEJlA2kQ3LqFSIm5Vu6eIlSxD/Ze90xtc4Meten1F5U= +github.com/ipfs/go-ipld-format v0.6.0/go.mod h1:g4QVMTn3marU3qXchwjpKPKgJv+zF+OlaKMyhJ4LHPg= github.com/ipfs/go-log v1.0.5 h1:2dOuUCB1Z7uoczMWgAyDck5JLb72zHzrMnGnCNNbvY8= github.com/ipfs/go-log v1.0.5/go.mod h1:j0b8ZoR+7+R99LD9jZ6+AJsrzkPbSXbZfGakb5JPtIo= github.com/ipfs/go-log/v2 v2.1.3/go.mod h1:/8d0SH3Su5Ooc31QlL1WysJhvyOTDCjcCZ9Axpmri6g= @@ -1638,6 +1654,8 @@ github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHU github.com/klauspost/compress v1.15.15/go.mod h1:ZcK2JAFqKOpnBlxcLsJzYfrS9X1akm9fHZNnD9+Vo/4= github.com/klauspost/compress v1.16.5 h1:IFV2oUNUzZaz+XyusxpLzpzS8Pt5rh0Z16For/djlyI= github.com/klauspost/compress v1.16.5/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE= +github.com/klauspost/compress v1.17.4 h1:Ej5ixsIri7BrIjBkRZLTo6ghwrEtHFk7ijlczPW4fZ4= +github.com/klauspost/compress v1.17.4/go.mod h1:/dCuZOvVtNoHsyb+cuJD3itjs3NbnF6KH9zAO4BDxPM= github.com/klauspost/cpuid v0.0.0-20170728055534-ae7887de9fa5/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= github.com/klauspost/cpuid v1.2.1/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= @@ -1645,6 +1663,8 @@ github.com/klauspost/cpuid/v2 v2.0.12/go.mod h1:g2LTdtYhdyuGPqyWyv7qRAmj1WBqxuOb github.com/klauspost/cpuid/v2 v2.2.0/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/qbZg= github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= +github.com/klauspost/cpuid/v2 v2.2.6 h1:ndNyv040zDGIDh8thGkXYjnFtiN02M1PVVF+JE/48xc= +github.com/klauspost/cpuid/v2 v2.2.6/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= github.com/klauspost/crc32 v0.0.0-20161016154125-cb6bfca970f6/go.mod h1:+ZoRqAPRLkC4NPOvfYeR5KNOrY6TD+/sAC3HXPZgDYg= github.com/klauspost/pgzip v1.0.2-0.20170402124221-0bf5dcad4ada/go.mod h1:Ch1tH69qFZu15pkjo5kYi6mth2Zzwzt50oCQKQE9RUs= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= @@ -1677,6 +1697,8 @@ github.com/libp2p/go-buffer-pool v0.1.0/go.mod h1:N+vh8gMqimBzdKkSMVuydVDq+UV5QT github.com/libp2p/go-cidranger v1.1.0 h1:ewPN8EZ0dd1LSnrtuwd4709PXVcITVeuwbag38yPW7c= github.com/libp2p/go-libp2p v0.28.1 h1:YurK+ZAI6cKfASLJBVFkpVBdl3wGhFi6fusOt725ii8= github.com/libp2p/go-libp2p v0.28.1/go.mod h1:s3Xabc9LSwOcnv9UD4nORnXKTsWkPMkIMB/JIGXVnzk= +github.com/libp2p/go-libp2p v0.32.2 h1:s8GYN4YJzgUoyeYNPdW7JZeZ5Ee31iNaIBfGYMAY4FQ= +github.com/libp2p/go-libp2p v0.32.2/go.mod h1:E0LKe+diV/ZVJVnOJby8VC5xzHF0660osg71skcxJvk= github.com/libp2p/go-libp2p-asn-util v0.3.0 h1:gMDcMyYiZKkocGXDQ5nsUQyquC9+H+iLEQHwOCZ7s8s= github.com/libp2p/go-libp2p-kbucket v0.6.3 h1:p507271wWzpy2f1XxPzCQG9NiN6R6lHL9GiSErbQQo0= github.com/libp2p/go-libp2p-pubsub v0.9.3 h1:ihcz9oIBMaCK9kcx+yHWm3mLAFBMAUsM4ux42aikDxo= @@ -1737,6 +1759,8 @@ github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5 github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo= github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= +github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 h1:jWpvCLoY8Z/e3VKvlsiIGKtc+UG6U5vzxaoagmhXfyg= +github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0/go.mod h1:QUyp042oQthUoa9bqDv0ER0wrtXnBruoNd7aNjkbP+k= github.com/mediocregopher/mediocre-go-lib v0.0.0-20181029021733-cb65787f37ed/go.mod h1:dSsfyI2zABAdhcbvkXqgxOxrCsbYeHCPgrZkku60dSg= github.com/mediocregopher/radix/v3 v3.3.0/go.mod h1:EmfVyvspXz1uZEyPBMyGK+kjWiKQGvsUt6O3Pj+LDCQ= github.com/mediocregopher/radix/v3 v3.4.2/go.mod h1:8FL3F6UQRXHXIBSPUs5h0RybMF8i4n7wVopoX3x7Bv8= @@ -1780,6 +1804,8 @@ github.com/multiformats/go-base36 v0.2.0 h1:lFsAbNOGeKtuKozrtBsAkSVhv1p9D0/qedU9 github.com/multiformats/go-base36 v0.2.0/go.mod h1:qvnKE++v+2MWCfePClUEjE78Z7P2a1UV0xHgWc0hkp4= github.com/multiformats/go-multiaddr v0.9.0 h1:3h4V1LHIk5w4hJHekMKWALPXErDfz/sggzwC/NcqbDQ= github.com/multiformats/go-multiaddr v0.9.0/go.mod h1:mI67Lb1EeTOYb8GQfL/7wpIZwc46ElrvzhYnoJOmTT0= +github.com/multiformats/go-multiaddr v0.12.2 h1:9G9sTY/wCYajKa9lyfWPmpZAwe6oV+Wb1zcmMS1HG24= +github.com/multiformats/go-multiaddr v0.12.2/go.mod h1:GKyaTYjZRdcUhyOetrxTk9z0cW+jA/YrnqTOvKgi44M= github.com/multiformats/go-multiaddr-dns v0.3.1 h1:QgQgR+LQVt3NPTjbrLLpsaT2ufAA2y0Mkk+QRVJbW3A= github.com/multiformats/go-multibase v0.0.1/go.mod h1:bja2MqRZ3ggyXtZSEDKpl0uO/gviWFaSteVbWT51qgs= github.com/multiformats/go-multibase v0.2.0 h1:isdYCVLvksgWlMW9OZRYJEa9pZETFivncJHmHnnd87g= @@ -1791,6 +1817,8 @@ github.com/multiformats/go-multihash v0.2.3 h1:7Lyc8XfX/IY2jWb/gI7JP+o7JEq9hOa7B github.com/multiformats/go-multihash v0.2.3/go.mod h1:dXgKXCXjBzdscBLk9JkjINiEsCKRVch90MdaGiKsvSM= github.com/multiformats/go-multistream v0.4.1 h1:rFy0Iiyn3YT0asivDUIR05leAdwZq3de4741sbiSdfo= github.com/multiformats/go-multistream v0.4.1/go.mod h1:Mz5eykRVAjJWckE2U78c6xqdtyNUEhKSM0Lwar2p77Q= +github.com/multiformats/go-multistream v0.5.0 h1:5htLSLl7lvJk3xx3qT/8Zm9J4K8vEOf/QGkvOGQAyiE= +github.com/multiformats/go-multistream v0.5.0/go.mod h1:n6tMZiwiP2wUsR8DgfDWw1dydlEqV3l6N3/GBsX6ILA= github.com/multiformats/go-varint v0.0.5/go.mod h1:3Ls8CIEsrijN6+B7PbrXRPxHRPuXSrVKRY101jdMZYE= 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= @@ -1817,32 +1845,48 @@ github.com/onflow/cadence v1.0.0-M4 h1:/nt3j7vpYDxuI0ghIgAJrb2R01ijvJYZLAkKt+zbp github.com/onflow/cadence v1.0.0-M4/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= github.com/onflow/cadence v1.0.0-M5 h1:vNG7x2KLLrt2yfVr1HtEXUlUi4GdNo+rkXnPkhSzsFA= github.com/onflow/cadence v1.0.0-M5/go.mod h1:a4mccDU90hmuxCLUFzs9J/ANG/rYbFa36h4Z0bBAqNU= +github.com/onflow/cadence v1.0.0-M8 h1:ioQ7TyhpsIaImAC7Xn2r8kIgIBdimvyuWeKlGfRxWB8= +github.com/onflow/cadence v1.0.0-M8/go.mod h1:a4mccDU90hmuxCLUFzs9J/ANG/rYbFa36h4Z0bBAqNU= github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= github.com/onflow/flow-core-contracts/lib/go/contracts v0.15.1-0.20240125214229-b7a95136dd0d h1:Afcfk/9jAQZ1v5PLGdP68FG/0yPPM60fn9Eq8ChBGS0= github.com/onflow/flow-core-contracts/lib/go/contracts v0.15.1-0.20240125214229-b7a95136dd0d/go.mod h1:Ts/HN+N0RaYJ6oPCqR1JPaMVFiVaMdKTSUH4OdSjjs0= github.com/onflow/flow-core-contracts/lib/go/contracts v0.15.2-0.20240206003101-928bf99024d7 h1:OI/4F2NK/X/4x3dTUFFDGtuOsSa9pX+jjBeSEcBrY/M= github.com/onflow/flow-core-contracts/lib/go/contracts v0.15.2-0.20240206003101-928bf99024d7/go.mod h1:GK+Ik1K3L3v8xmHmRQv5yxJz81lYhdYSNm0PQ63Xrws= +github.com/onflow/flow-core-contracts/lib/go/contracts v0.15.2-0.20240227190927-0e6ce7e3222b h1:oXHQft30sElpK7G3xWB5tEizI2G+S4p64iVh0LtX4E0= +github.com/onflow/flow-core-contracts/lib/go/contracts v0.15.2-0.20240227190927-0e6ce7e3222b/go.mod h1:At+gEXmy13wpvxHYlS8bqjKEBufL+UXMQpJyHQxiXY8= github.com/onflow/flow-core-contracts/lib/go/templates v0.15.1-0.20240125214229-b7a95136dd0d h1:IQJpP3VLLjT4R8ItBpr+Mmp0IOnC/8iBcM0/67JNB9c= github.com/onflow/flow-core-contracts/lib/go/templates v0.15.1-0.20240125214229-b7a95136dd0d/go.mod h1:MZ2j5YVTQiSE0B99zuaYhxvGG5GcvimWpQK1Fw/1QBg= github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240206003101-928bf99024d7 h1:WAx8ftVz1BeXiKvQ9gLKEf1J3NBWK26Pbczd0iH4C6I= github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240206003101-928bf99024d7/go.mod h1:MZ2j5YVTQiSE0B99zuaYhxvGG5GcvimWpQK1Fw/1QBg= +github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240227190927-0e6ce7e3222b h1:oiV9EbViI07FiO4rKeJ5/RGoQDCGd4c6SX/cdMwHbFE= +github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240227190927-0e6ce7e3222b/go.mod h1:cTE5NCp+Zk04yA24gCEjBdQIrzDU/iRICgLSx4LsGX0= github.com/onflow/flow-emulator v1.0.0-M1 h1:0hBEmvm73F+5HhN5ugkOP3UyN+Ea9yGWflEmoeGzgdw= github.com/onflow/flow-emulator v1.0.0-M1/go.mod h1:JFJCeQVyhCQVD2Tq4QhctIXK6j5U6aU15yoEwMJt5AQ= github.com/onflow/flow-emulator v1.0.0-M3 h1:+Rktq6OzQfJCLNVweJqtTUKZrHMc6eVVZn1tYI1PMMg= github.com/onflow/flow-emulator v1.0.0-M3/go.mod h1:iMQ7WbzrEa+xQL23P8zCxrXv8YhAWUds8SvEdERB14o= +github.com/onflow/flow-emulator v1.0.0-M8 h1:FE9OtyXh3tZLjszpznIfMyaTmIoX+maFBYd1mCY+ke0= +github.com/onflow/flow-emulator v1.0.0-M8/go.mod h1:mSp1JTXt1JGmriiG7Lc2VulQHG1tl6Oj1zGSr/h0ySk= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125205519-2e80d9b4bd01 h1:8iKk5RuFvhe7NQyAO3c+xiVvv38RB/yopHdWxp4AbL8= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125205519-2e80d9b4bd01/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240205224107-320aa3cf09e0 h1:u6/YcUvO8jU0f3Evb/6agzXqeOo+VbL2a3mmj/5ifRs= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240205224107-320aa3cf09e0/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240213220156-959b70719876 h1:mV3OXBTDJ+nP3sJkoEUgrBXG2bMGFqsDTDr0nVmj2ec= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240213220156-959b70719876/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= +github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 h1:fZj39XxayIL7uvKvonNI3MtQM3wsFJ8oRl/XW/0rn7A= +github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go v0.33.2-0.20240126002816-f0770a716d61 h1:Xq40zbxw9mDS1+Zz1p6DCzAxDYQwbHWLJ5B9HOp9Fk8= github.com/onflow/flow-go v0.33.2-0.20240126002816-f0770a716d61/go.mod h1:xdzERQeTalqsU0rHGSZgqQuE5krMfBQ4BA/4bgrLndY= github.com/onflow/flow-go v0.33.2-0.20240206235622-50f8c81f1f43 h1:KB10iF+6HIQ/hKykzBf8n3P8cDDRHL4ytfc0R4ApCZM= github.com/onflow/flow-go v0.33.2-0.20240206235622-50f8c81f1f43/go.mod h1:gWMjeDpt0YuJiwxtgdD8qxsM53PvUyoPHmjisZZmjR0= +github.com/onflow/flow-go v0.34.0-crescendo-preview.5.0.20240228222755-c41bc8a25122 h1:6R1L5Ji+lEWdTRcqeTLVLGPX1FqiWHeXHnRKAUsciSE= +github.com/onflow/flow-go v0.34.0-crescendo-preview.5.0.20240228222755-c41bc8a25122/go.mod h1:HSffipIVOyXvK3/gsYU13EwRMxbuK591hmjqF36nbEI= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= github.com/onflow/flow-go-sdk v1.0.0-M2 h1:YWeXTo112RF8s6swiOU5oW8JWbOOz392FCeAbGnm+W4= github.com/onflow/flow-go-sdk v1.0.0-M2/go.mod h1:mllhNw5WAEug59EWvW3TudcrtPmB5VfLA3iUx7mAA4s= +github.com/onflow/flow-go-sdk v1.0.0-M7 h1:5EhtgpupjdhJZoHpu8AhA7++AroGL6BFpb8D0AYIUQw= +github.com/onflow/flow-go-sdk v1.0.0-M7/go.mod h1:aXSavLzoRlz5FiMjcI7p5QhihWScGctxydzf4dv/avo= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231213135419-ae911cc351a2 h1:+rT+UsfTR39JZO8ht2+4fkaWfHw74SCj1fyz1lWuX8A= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231213135419-ae911cc351a2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= @@ -1905,6 +1949,8 @@ github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqr github.com/prometheus/client_golang v1.12.0/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= github.com/prometheus/client_golang v1.16.0 h1:yk/hx9hDbrGHovbci4BY+pRMfSuuat626eFsHb7tmT8= github.com/prometheus/client_golang v1.16.0/go.mod h1:Zsulrv/L9oM40tJ7T815tM89lFEugiJ9HzIqaAx4LKc= +github.com/prometheus/client_golang v1.18.0 h1:HzFfmkOzH5Q8L8G+kSJKUx5dtG87sewO+FoDDqP5Tbk= +github.com/prometheus/client_golang v1.18.0/go.mod h1:T+GXkCk5wSJyOqMIzVgvvjFDlkOQntgjkJWKrN5txjA= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= @@ -1913,6 +1959,8 @@ github.com/prometheus/client_model v0.2.1-0.20210607210712-147c58e9608a/go.mod h github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= github.com/prometheus/client_model v0.4.0 h1:5lQXD3cAg1OXBf4Wq03gTrXHeaV0TQvGfUooCfx1yqY= github.com/prometheus/client_model v0.4.0/go.mod h1:oMQmHW1/JoDwqLtg57MGgP/Fb1CJEYF2imWWhWtMkYU= +github.com/prometheus/client_model v0.5.0 h1:VQw1hfvPvk3Uv6Qf29VrPF32JB6rtbgI6cYPYQjL0Qw= +github.com/prometheus/client_model v0.5.0/go.mod h1:dTiFglRmd66nLR9Pv9f0mZi7B7fk5Pm3gvsjB5tr+kI= github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= @@ -1922,6 +1970,8 @@ github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9 github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= github.com/prometheus/common v0.42.0 h1:EKsfXEYo4JpWMHH5cg+KOUWeuJSov1Id8zGR8eeI1YM= github.com/prometheus/common v0.42.0/go.mod h1:xBwqVerjNdUDjgODMpudtOMwlOwf2SaTr1yjz4b7Zbc= +github.com/prometheus/common v0.45.0 h1:2BGz0eBc2hdMDLnO/8n0jeB3oPrt2D08CekT0lneoxM= +github.com/prometheus/common v0.45.0/go.mod h1:YJmSTw9BoKxJplESWWxlbyttQR4uaEcGyv9MZjVOJsY= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= @@ -1930,6 +1980,8 @@ github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1 github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= github.com/prometheus/procfs v0.10.1 h1:kYK1Va/YMlutzCGazswoHKo//tZVlFpKYh+PymziUAg= github.com/prometheus/procfs v0.10.1/go.mod h1:nwNm2aOCAYw8uTR/9bWRREkZFxAUcWzPHWJq+XBB/FM= +github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= +github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo= github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/protolambda/bls12-381-util v0.0.0-20220416220906-d8552aa452c7/go.mod h1:IToEjHuttnUzwZI5KBSM/LOOW3qLbbrHOEfp3SbECGY= github.com/psiemens/graceland v1.0.0 h1:L580AVV4Q2XLcPpmvxJRH9UpEAYr/eu2jBKmMglhvM8= @@ -1951,6 +2003,8 @@ github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTE github.com/rogpeppe/go-internal v1.8.1/go.mod h1:JeRgkft04UBgHMgCIwADu4Pn6Mtm5d4nPKWu0nJ5d+o= github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= +github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= +github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog= github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= github.com/rs/xid v1.4.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg= github.com/rs/zerolog v1.29.0 h1:Zes4hju04hjbvkVkOhdl2HpZa+0PmVwigmo8XoORE5w= @@ -2118,23 +2172,37 @@ go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= go.opentelemetry.io/otel v1.8.0/go.mod h1:2pkj+iMj0o03Y+cW6/m8Y4WkRdYN3AvCXCnzRMp9yvM= go.opentelemetry.io/otel v1.16.0 h1:Z7GVAX/UkAXPKsy94IU+i6thsQS4nb7LviLpnaNeW8s= go.opentelemetry.io/otel v1.16.0/go.mod h1:vl0h9NUa1D5s1nv3A5vZOYWn8av4K8Ml6JDeHrT/bx4= +go.opentelemetry.io/otel v1.22.0 h1:xS7Ku+7yTFvDfDraDIJVpw7XPyuHlB9MCiqqX5mcJ6Y= +go.opentelemetry.io/otel v1.22.0/go.mod h1:eoV4iAi3Ea8LkAEI9+GFT44O6T/D0GWAVFyZVCC6pMI= go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.16.0 h1:t4ZwRPU+emrcvM2e9DHd0Fsf0JTPVcbfa/BhTDF03d0= go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.16.0/go.mod h1:vLarbg68dH2Wa77g71zmKQqlQ8+8Rq3GRG31uc0WcWI= go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.16.0 h1:cbsD4cUcviQGXdw8+bo5x2wazq10SKz8hEbtCRPcU78= go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.16.0/go.mod h1:JgXSGah17croqhJfhByOLVY719k1emAXC8MVhCIJlRs= +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0 h1:cl5P5/GIfFh4t6xyruOgJP5QiA1pw4fYYdv6nc6CBWw= +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0/go.mod h1:zgBdWWAu7oEEMC06MMKc5NLbA/1YDXV1sMpSqEeLQLg= go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.14.0 h1:ap+y8RXX3Mu9apKVtOkM6WSFESLM8K3wNQyOU8sWHcc= go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.14.0/go.mod h1:5w41DY6S9gZrbjuq6Y+753e96WfPha5IcsOSZTtullM= +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0 h1:tIqheXEFWAZ7O8A7m+J0aPTmpJN3YQ7qetUAdkkkKpk= +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0/go.mod h1:nUeKExfxAQVbiVFn32YXpXZZHZ61Cc3s3Rn1pDBGAb0= go.opentelemetry.io/otel/metric v1.16.0 h1:RbrpwVG1Hfv85LgnZ7+txXioPDoh6EdbZHo26Q3hqOo= go.opentelemetry.io/otel/metric v1.16.0/go.mod h1:QE47cpOmkwipPiefDwo2wDzwJrlfxxNYodqc4xnGCo4= +go.opentelemetry.io/otel/metric v1.22.0 h1:lypMQnGyJYeuYPhOM/bgjbFM6WE44W1/T45er4d8Hhg= +go.opentelemetry.io/otel/metric v1.22.0/go.mod h1:evJGjVpZv0mQ5QBRJoBF64yMuOf4xCWdXjK8pzFvliY= go.opentelemetry.io/otel/sdk v1.16.0 h1:Z1Ok1YsijYL0CSJpHt4cS3wDDh7p572grzNrBMiMWgE= go.opentelemetry.io/otel/sdk v1.16.0/go.mod h1:tMsIuKXuuIWPBAOrH+eHtvhTL+SntFtXF9QD68aP6p4= +go.opentelemetry.io/otel/sdk v1.21.0 h1:FTt8qirL1EysG6sTQRZ5TokkU8d0ugCj8htOgThZXQ8= +go.opentelemetry.io/otel/sdk v1.21.0/go.mod h1:Nna6Yv7PWTdgJHVRD9hIYywQBRx7pbox6nwBnZIxl/E= go.opentelemetry.io/otel/trace v1.8.0/go.mod h1:0Bt3PXY8w+3pheS3hQUt+wow8b1ojPaTBoTCh2zIFI4= go.opentelemetry.io/otel/trace v1.16.0 h1:8JRpaObFoW0pxuVPapkgH8UhHQj+bJW8jJsCZEu5MQs= go.opentelemetry.io/otel/trace v1.16.0/go.mod h1:Yt9vYq1SdNz3xdjZZK7wcXv1qv2pwLkqr2QVwea0ef0= +go.opentelemetry.io/otel/trace v1.22.0 h1:Hg6pPujv0XG9QaVbGOBVHunyuLcCC3jN7WEhPx83XD0= +go.opentelemetry.io/otel/trace v1.22.0/go.mod h1:RbbHXVqKES9QhzZq/fE5UnOSILqRt40a21sPw2He1xo= go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= go.opentelemetry.io/proto/otlp v0.15.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= go.opentelemetry.io/proto/otlp v0.19.0 h1:IVN6GR+mhC4s5yfcTbmzHYODqvWAp3ZedA2SJPI1Nnw= go.opentelemetry.io/proto/otlp v0.19.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= +go.opentelemetry.io/proto/otlp v1.0.0 h1:T0TX0tmXU8a3CbNXzEKGeU5mIVOdf0oykP+u2lIVU/I= +go.opentelemetry.io/proto/otlp v1.0.0/go.mod h1:Sy6pihPLfYHkr3NkUbEhGHFhINUSI/v80hjKIs5JXpM= go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.6.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= @@ -2158,6 +2226,8 @@ go.uber.org/zap v1.16.0/go.mod h1:MA8QOfq0BHJwdXa996Y4dYkAqRKB8/1K1QMMZVaNZjQ= go.uber.org/zap v1.19.1/go.mod h1:j3DNczoxDZroyBnOT1L/Q79cfUMGZxlv/9dzN7SM1rI= go.uber.org/zap v1.24.0 h1:FiJd5l1UOLj0wCgbSE0rwwXHzEdAZS6hiiSnxJN/D60= go.uber.org/zap v1.24.0/go.mod h1:2kMP+WWQ8aoFoedH3T2sq6iJ2yDWpHbP0f6MQbS9Gkg= +go.uber.org/zap v1.26.0 h1:sI7k6L95XOKS281NhVKOFCUNIvv9e0w4BF8N3u+tCRo= +go.uber.org/zap v1.26.0/go.mod h1:dtElttAiwGvoJ/vj4IwHBS/gXsEu/pZ50mUIRWuG0so= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= @@ -2191,6 +2261,8 @@ golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf golang.org/x/crypto v0.16.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= +golang.org/x/crypto v0.18.0 h1:PGVlW0xEltQnzFZ55hkuX5+KLyrMYhHld1YHO4AKcdc= +golang.org/x/crypto v0.18.0/go.mod h1:R0j02AL6hcrfOiy9T4ZYp/rcWeMxM3L6QYxlOuEG1mg= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -2212,6 +2284,8 @@ golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df/go.mod h1:FXUEEKJgO7OQYeo8N0 golang.org/x/exp v0.0.0-20230905200255-921286631fa9/go.mod h1:S2oDrQGGwySpoQPVqRShND87VCbxmc6bL1Yd2oYrm6k= golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc h1:ao2WRsKSzW6KuUY9IWPwWahcHCgR0s52IfwutMfEbdM= golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc/go.mod h1:iRJReGqOEeBhDZGkGbynYwcHlctCvnjTYIamk7uXpHI= +golang.org/x/exp v0.0.0-20240119083558-1b970713d09a h1:Q8/wZp0KX97QFTc2ywcOE0YRjZPVIx+MXInMzdvQqcA= +golang.org/x/exp v0.0.0-20240119083558-1b970713d09a/go.mod h1:idGWGoKP1toJGkd5/ig9ZLuPcZBC3ewk7SzmH0uou08= golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= @@ -2346,6 +2420,8 @@ golang.org/x/net v0.16.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= golang.org/x/net v0.19.0 h1:zTwKpTd2XuCqf8huc7Fo2iSy+4RHPd10s4KzeTnVr1c= golang.org/x/net v0.19.0/go.mod h1:CfAk/cbD4CthTvqiEl8NpboMuiuOYsAr/7NOjZJtv1U= +golang.org/x/net v0.20.0 h1:aCL9BSgETF1k+blQaYUBx9hJ9LOGP3gAVemcZlf1Kpo= +golang.org/x/net v0.20.0/go.mod h1:z8BVo6PvndSri0LbOE3hAn0apkU+1YvI6E70E9jsnvY= golang.org/x/oauth2 v0.0.0-20170207211851-4464e7848382/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -2402,6 +2478,8 @@ golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= golang.org/x/sync v0.4.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= golang.org/x/sync v0.5.0 h1:60k92dhOjHxJkrqnwsfl8KuaHbn/5dl0lUPUklKo3qE= golang.org/x/sync v0.5.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.6.0 h1:5BMeUDZ7vkXGfEr1x9B4bRcTH4lpkTkpdh0T/J+qjbQ= +golang.org/x/sync v0.6.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -2528,6 +2606,8 @@ golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.16.0 h1:xWw16ngr6ZMtmxDyKyIgsE93KNKz5HKmMa3b8ALHidU= +golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= @@ -2660,6 +2740,8 @@ golang.org/x/tools v0.16.0 h1:GO788SKMRunPIBCXiQyo2AaexLstOrVhuAL5YwsckQM= golang.org/x/tools v0.16.0/go.mod h1:kYVVN6I1mBNoB1OX+noeBjbRk4IUEPa7JJ+TJMEooJ0= golang.org/x/tools v0.16.1 h1:TLyB3WofjdOEepBHAU20JdNC1Zbg87elYofWYAY5oZA= golang.org/x/tools v0.16.1/go.mod h1:kYVVN6I1mBNoB1OX+noeBjbRk4IUEPa7JJ+TJMEooJ0= +golang.org/x/tools v0.17.0 h1:FvmRgNOcs3kOa+T20R1uhfP9F6HgG2mfxDv1vrx1Htc= +golang.org/x/tools v0.17.0/go.mod h1:xsh6VxdV005rRVaS6SSAf9oiAqljS7UZUacMZ8Bnsps= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -2680,6 +2762,8 @@ gonum.org/v1/gonum v0.9.3/go.mod h1:TZumC3NeyVQskjXqmyWt4S3bINhy7B4eYwW69EbyX+0= gonum.org/v1/gonum v0.11.0/go.mod h1:fSG4YDCxxUZQJ7rKsQrj0gMOg00Il0Z96/qMA4bVQhA= gonum.org/v1/gonum v0.13.0 h1:a0T3bh+7fhRyqeNbiC3qVHYmkiQgit3wnNan/2c0HMM= gonum.org/v1/gonum v0.13.0/go.mod h1:/WPYRckkfWrhWefxyYTfrTtQR0KH4iyHNuzxqXAKyAU= +gonum.org/v1/gonum v0.14.0 h1:2NiG67LD1tEH0D7kM+ps2V+fXmsAnpUeec7n8tcr4S0= +gonum.org/v1/gonum v0.14.0/go.mod h1:AoWeoz0becf9QMWtE8iWXNXc27fK4fNeHNf/oMejGfU= gonum.org/v1/netlib v0.0.0-20181029234149-ec6d1f5cefe6/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= gonum.org/v1/plot v0.0.0-20190515093506-e2840ee46a6b/go.mod h1:Wt8AAjI+ypCyYX3nZBvf6cAIx93T+c/OS2HFAYskSZc= @@ -2761,6 +2845,8 @@ google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCID google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c= google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/appengine v1.6.8 h1:IhEN5q69dyKagZPYMSdIjS2HqprW324FRQZJcGqPAsM= +google.golang.org/appengine v1.6.8/go.mod h1:1jJ3jBArFh5pcgW8gCtRJnepW8FzD1V44FJffLiz/Ds= google.golang.org/genproto v0.0.0-20180518175338-11a468237815/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= @@ -2915,6 +3001,8 @@ google.golang.org/genproto v0.0.0-20231002182017-d307bd883b97/go.mod h1:t1VqOqqv google.golang.org/genproto v0.0.0-20231012201019-e917dd12ba7a/go.mod h1:EMfReVxb80Dq1hhioy0sOsY9jCE46YDgHlJ7fWVUWRE= google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b h1:+YaDE2r2OG8t/z5qmsh7Y+XXwCbvadxxZ0YY6mTdrVA= google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:CgAqfJo+Xmu0GwA0411Ht3OU3OntXwsGmrmjI8ioGXI= +google.golang.org/genproto v0.0.0-20240102182953-50ed04b92917 h1:nz5NESFLZbJGPFxDT/HCn+V1mZ8JGNoY4nUpmW/Y2eg= +google.golang.org/genproto v0.0.0-20240102182953-50ed04b92917/go.mod h1:pZqR+glSb11aJ+JQcczCvgf47+duRuzNSKqE8YAQnV0= google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go.mod h1:ts19tUU+Z0ZShN1y3aPyq2+O3d5FUNNgT6FtOzmrNn8= google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= @@ -2931,6 +3019,8 @@ google.golang.org/genproto/googleapis/api v0.0.0-20231002182017-d307bd883b97/go. google.golang.org/genproto/googleapis/api v0.0.0-20231012201019-e917dd12ba7a/go.mod h1:SUBoKXbI1Efip18FClrQVGjWcyd0QZd8KkvdP34t7ww= google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b h1:CIC2YMXmIhYw6evmhPxBKJ4fmLbOFtXQN/GV3XOZR8k= google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:IBQ646DjkDkvUIsVq/cc03FUFQ9wbZu7yE396YcL870= +google.golang.org/genproto/googleapis/api v0.0.0-20240108191215-35c7eff3a6b1 h1:OPXtXn7fNMaXwO3JvOmF1QyTc00jsSFFz1vXXBOdCDo= +google.golang.org/genproto/googleapis/api v0.0.0-20240108191215-35c7eff3a6b1/go.mod h1:B5xPO//w8qmBDjGReYLpR6UJPnkldGkCSMoH/2vxJeg= google.golang.org/genproto/googleapis/bytestream v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:ylj+BE99M198VPbBh6A8d9n3w8fChvyLK3wwBOjXBFA= google.golang.org/genproto/googleapis/bytestream v0.0.0-20230807174057-1744710a1577/go.mod h1:NjCQG/D8JandXxM57PZbAJL1DCNL6EypA0vPPwfsc7c= google.golang.org/genproto/googleapis/bytestream v0.0.0-20231030173426-d783a09b4405/go.mod h1:GRUCuLdzVqZte8+Dl/D4N25yLzcGqqWaYkeVOwulFqw= @@ -2951,6 +3041,8 @@ google.golang.org/genproto/googleapis/rpc v0.0.0-20231012201019-e917dd12ba7a/go. google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:swOH3j0KzcDDgGUWr+SNpyTen5YrXjS3eyPzFYKc6lc= google.golang.org/genproto/googleapis/rpc v0.0.0-20231030173426-d783a09b4405 h1:AB/lmRny7e2pLhFEYIbl5qkDAUt2h0ZRO4wGPhZf+ik= google.golang.org/genproto/googleapis/rpc v0.0.0-20231030173426-d783a09b4405/go.mod h1:67X1fPuzjcrkymZzZV1vvkFeTn2Rvc6lYF9MYFGCcwE= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240108191215-35c7eff3a6b1 h1:gphdwh0npgs8elJ4T6J+DQJHPVF7RsuJHCfwztUb4J4= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240108191215-35c7eff3a6b1/go.mod h1:daQN87bsDqDoe316QbbvX60nMoJQa4r6Ds0ZuoAe5yA= google.golang.org/grpc v0.0.0-20170208002647-2a6bf6142e96/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= google.golang.org/grpc v1.12.0/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= @@ -3003,6 +3095,8 @@ google.golang.org/grpc v1.58.2/go.mod h1:tgX3ZQDlNJGU96V6yHh1T/JeoBQ2TXdr43YbYSs google.golang.org/grpc v1.58.3/go.mod h1:tgX3ZQDlNJGU96V6yHh1T/JeoBQ2TXdr43YbYSsCJk0= google.golang.org/grpc v1.59.0 h1:Z5Iec2pjwb+LEOqzpB2MR12/eKFhDPhuqW91O+4bwUk= google.golang.org/grpc v1.59.0/go.mod h1:aUPDwccQo6OTjy7Hct4AfBPD1GptF4fyUjIkQ9YtF98= +google.golang.org/grpc v1.60.1 h1:26+wFr+cNqSGFcOXcabYC0lUVJVRa2Sb2ortSK7VrEU= +google.golang.org/grpc v1.60.1/go.mod h1:OlCHIeLYqSSsLi6i49B5QGdzaMZK9+M7LXN2FKz4eGM= google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= @@ -3023,6 +3117,8 @@ google.golang.org/protobuf v1.29.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqw google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.32.0 h1:pPC6BG5ex8PDFnkbrGU3EixyhKcQ2aDuBS36lqK/C7I= +google.golang.org/protobuf v1.32.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= diff --git a/scripts/get_contract_storage_path.cdc b/scripts/get_contract_storage_path.cdc index fa1029da..69131f9c 100644 --- a/scripts/get_contract_storage_path.cdc +++ b/scripts/get_contract_storage_path.cdc @@ -3,7 +3,7 @@ import "ViewResolver" access(all) fun main(addr: Address, name: String): StoragePath? { let t = Type() - let borrowedContract = getAccount(addr).contracts.borrow<&ViewResolver>(name: name) + let borrowedContract = getAccount(addr).contracts.borrow<&{ViewResolver}>(name: name) ?? panic("contract could not be borrowed") let view = borrowedContract.resolveContractView(resourceType: nil, viewType: t) diff --git a/transactions/destroy_nft.cdc b/transactions/destroy_nft.cdc index 446e4e33..dd7d28e5 100644 --- a/transactions/destroy_nft.cdc +++ b/transactions/destroy_nft.cdc @@ -1,8 +1,8 @@ /// This transaction withdraws an NFT from the signers collection and destroys it -import NonFungibleToken from "NonFungibleToken" -import MetadataViews from "MetadataViews" -import ExampleNFT from "ExampleNFT" +import "NonFungibleToken" +import "MetadataViews" +import "ExampleNFT" transaction(id: UInt64) { diff --git a/transactions/generic_transfer_with_address.cdc b/transactions/generic_transfer_with_address.cdc index 721cfe67..99411368 100644 --- a/transactions/generic_transfer_with_address.cdc +++ b/transactions/generic_transfer_with_address.cdc @@ -1,5 +1,5 @@ -import NonFungibleToken from "NonFungibleToken" -import MetadataViews from "MetadataViews" +import "NonFungibleToken" +import "MetadataViews" /// Can pass in any contract address and name /// This lets you choose the token you want to send because @@ -17,7 +17,7 @@ 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) + .contracts.borrow<&{NonFungibleToken}>(name: contractName) ?? panic("Could not borrow a reference to the non-fungible token contract") // Use that reference to retrieve the NFTCollectionData view diff --git a/transactions/generic_transfer_with_paths.cdc b/transactions/generic_transfer_with_paths.cdc index 73975891..f4efd3d8 100644 --- a/transactions/generic_transfer_with_paths.cdc +++ b/transactions/generic_transfer_with_paths.cdc @@ -1,4 +1,4 @@ -import NonFungibleToken from "NonFungibleToken" +import "NonFungibleToken" /// Can pass in any storage path and receiver path instead of just the default. /// This lets you choose the token you want to send as well the capability you want to send it to. diff --git a/transactions/nft-forwarding/change_forwarder_recipient.cdc b/transactions/nft-forwarding/change_forwarder_recipient.cdc index 6b2cb0ca..7305a8d8 100644 --- a/transactions/nft-forwarding/change_forwarder_recipient.cdc +++ b/transactions/nft-forwarding/change_forwarder_recipient.cdc @@ -1,5 +1,5 @@ -import NonFungibleToken from "NonFungibleToken" -import NFTForwarding from "NFTForwarding" +import "NonFungibleToken" +import "NFTForwarding" /// This transaction updates the NFTForwarder recipient to the one given at the specified PublicPath /// diff --git a/transactions/nft-forwarding/create_forwarder.cdc b/transactions/nft-forwarding/create_forwarder.cdc index 81342beb..a0603e3d 100644 --- a/transactions/nft-forwarding/create_forwarder.cdc +++ b/transactions/nft-forwarding/create_forwarder.cdc @@ -1,6 +1,6 @@ -import NonFungibleToken from "NonFungibleToken" -import MetadataViews from "MetadataViews" -import NFTForwarding from "NFTForwarding" +import "NonFungibleToken" +import "MetadataViews" +import "NFTForwarding" /// This transaction is what an account would run to set itself up to forward NFTs to a designated recipient's /// NFT.Collection assuming the recipient is configured for the given NFT Collection diff --git a/transactions/nft-forwarding/transfer_nft_to_receiver.cdc b/transactions/nft-forwarding/transfer_nft_to_receiver.cdc index b3258c52..68737cee 100644 --- a/transactions/nft-forwarding/transfer_nft_to_receiver.cdc +++ b/transactions/nft-forwarding/transfer_nft_to_receiver.cdc @@ -1,6 +1,6 @@ -import NonFungibleToken from "NonFungibleToken" -import ViewResolver from "ViewResolver" -import MetadataViews from "MetadataViews" +import "NonFungibleToken" +import "ViewResolver" +import "MetadataViews" /// This transaction is for transferring an NFT from one account to the recipient's Receiver /// @@ -19,7 +19,7 @@ transaction( prepare(signer: auth(BorrowValue) &Account) { // get the collection data from the NFT contract - let nftContract = getAccount(contractAddress).contracts.borrow<&ViewResolver>(name: contractName) + let nftContract = getAccount(contractAddress).contracts.borrow<&{ViewResolver}>(name: contractName) ?? panic("Could not borrow ViewResolver reference to the contract") let collectionData = nftContract.resolveContractView(resourceType: nil, viewType: Type()) as MetadataViews.NFTCollectionData? diff --git a/transactions/nft-forwarding/unlink_forwarder_link_collection.cdc b/transactions/nft-forwarding/unlink_forwarder_link_collection.cdc index d8667acd..0e05a61b 100644 --- a/transactions/nft-forwarding/unlink_forwarder_link_collection.cdc +++ b/transactions/nft-forwarding/unlink_forwarder_link_collection.cdc @@ -1,7 +1,7 @@ -import NonFungibleToken from "NonFungibleToken" -import MetadataViews from "MetadataViews" -import NFTForwarding from "NFTForwarding" +import "NonFungibleToken" +import "MetadataViews" +import "NFTForwarding" // This transaction replaces NFTForwarder Receiver Capabilities with a collection to its public storage after having configured // its NFTForwarder diff --git a/transactions/setup_account_from_address.cdc b/transactions/setup_account_from_address.cdc index cb34a885..d07a77a7 100644 --- a/transactions/setup_account_from_address.cdc +++ b/transactions/setup_account_from_address.cdc @@ -3,15 +3,15 @@ /// uses views to know where to set up the collection /// in storage and to create the empty collection. -import NonFungibleToken from "NonFungibleToken" -import MetadataViews from "MetadataViews" +import "NonFungibleToken" +import "MetadataViews" transaction(contractAddress: Address, contractName: String) { prepare(signer: auth(IssueStorageCapabilityController, PublishCapability, SaveValue) &Account) { // Borrow a reference to the nft contract deployed to the passed account let resolverRef = getAccount(contractAddress) - .contracts.borrow<&NonFungibleToken>(name: contractName) + .contracts.borrow<&{NonFungibleToken}>(name: contractName) ?? panic("Could not borrow a reference to the non-fungible token contract") // Use that reference to retrieve the NFTCollectionData view diff --git a/transactions/setup_account_from_nft_reference.cdc b/transactions/setup_account_from_nft_reference.cdc index 914cc437..970fc210 100644 --- a/transactions/setup_account_from_nft_reference.cdc +++ b/transactions/setup_account_from_nft_reference.cdc @@ -3,8 +3,8 @@ /// uses views to know where to set up the collection /// in storage and to create the empty collection. -import NonFungibleToken from "NonFungibleToken" -import MetadataViews from "MetadataViews" +import "NonFungibleToken" +import "MetadataViews" transaction(address: Address, publicPath: PublicPath, id: UInt64) { diff --git a/transactions/transfer_nft.cdc b/transactions/transfer_nft.cdc index 82046637..f612f58e 100644 --- a/transactions/transfer_nft.cdc +++ b/transactions/transfer_nft.cdc @@ -15,7 +15,7 @@ transaction(contractAddress: Address, contractName: String, recipient: Address, prepare(signer: auth(BorrowValue) &Account) { // borrow the NFT contract as ViewResolver reference - let viewResolver = getAccount(contractAddress).contracts.borrow<&ViewResolver>(name: contractName) + let viewResolver = getAccount(contractAddress).contracts.borrow<&{ViewResolver}>(name: contractName) ?? panic("Could not borrow ViewResolver of given name from address") // resolve the NFT collection data from the NFT contract diff --git a/transactions/unlink_collection.cdc b/transactions/unlink_collection.cdc index d5646073..909d985d 100644 --- a/transactions/unlink_collection.cdc +++ b/transactions/unlink_collection.cdc @@ -1,7 +1,7 @@ /// This transaction unlinks signer's public Capability at canonical public path -import MetadataViews from "MetadataViews" -import ExampleNFT from "ExampleNFT" +import "MetadataViews" +import "ExampleNFT" transaction { prepare(signer: auth(UnpublishCapabilty) &Account) {