diff --git a/contracts/ExampleNFT.cdc b/contracts/ExampleNFT.cdc index a8ee072..0e4d763 100644 --- a/contracts/ExampleNFT.cdc +++ b/contracts/ExampleNFT.cdc @@ -134,7 +134,7 @@ access(all) contract ExampleNFT: NonFungibleToken { access(all) resource Collection: NonFungibleToken.Collection, ExampleNFTCollectionPublic { /// dictionary of NFT conforming tokens /// NFT is a resource type with an `UInt64` ID field - access(contract) var ownedNFTs: @{UInt64: {NonFungibleToken.NFT}} + access(all) var ownedNFTs: @{UInt64: {NonFungibleToken.NFT}} init () { self.ownedNFTs <- {} @@ -150,11 +150,7 @@ access(all) contract ExampleNFT: NonFungibleToken { /// Returns whether or not the given type is accepted by the collection /// A collection that can accept any type should just return true by default access(all) view fun isSupportedNFTType(type: Type): Bool { - if type == Type<@ExampleNFT.NFT>() { - return true - } else { - return false - } + return type == Type<@ExampleNFT.NFT>() } /// withdraw removes an NFT from the collection and moves it to the caller diff --git a/contracts/NonFungibleToken.cdc b/contracts/NonFungibleToken.cdc index f1edefc..bc1a1a3 100644 --- a/contracts/NonFungibleToken.cdc +++ b/contracts/NonFungibleToken.cdc @@ -172,6 +172,7 @@ access(all) contract interface NonFungibleToken: ViewResolver { access(all) fun deposit(token: @{NFT}) access(all) view fun getLength(): Int access(all) view fun getIDs(): [UInt64] + access(all) fun forEachID(_ f: fun (UInt64): Bool): Void access(all) view fun borrowNFT(_ id: UInt64): &{NFT}? } @@ -180,6 +181,10 @@ access(all) contract interface NonFungibleToken: ViewResolver { /// access(all) resource interface Collection: Provider, Receiver, CollectionPublic, ViewResolver.ResolverCollection { + /// Cadence allows implementing types to specify less restrictive access + /// so implementing contracts can have this as `access(all)` with no problem + access(contract) var ownedNFTs: @{UInt64: {NonFungibleToken.NFT}} + /// deposit takes a NFT as an argument and stores it in the collection /// @param token: The NFT to deposit into the collection access(all) fun deposit(token: @{NonFungibleToken.NFT}) { @@ -194,7 +199,16 @@ access(all) contract interface NonFungibleToken: ViewResolver { /// Gets the amount of NFTs stored in the collection /// @return An integer indicating the size of the collection - access(all) view fun getLength(): Int + access(all) view fun getLength(): Int { + return self.ownedNFTs.length + } + + /// Allows a given function to iterate through the list + /// of owned NFT IDs in a collection without first + /// having to load the entire list into memory + access(all) fun forEachID(_ f: fun (UInt64): Bool): Void { + self.ownedNFTs.forEachKey(f) + } /// Borrows a reference to an NFT stored in the collection /// If the NFT with the specified ID is not in the collection, diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 58971c8..4df9600 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,8 +1,8 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// ExampleNFT.cdc (14.089kB) +// ExampleNFT.cdc (14.005kB) // MetadataViews.cdc (25.495kB) -// NonFungibleToken.cdc (10.595kB) +// NonFungibleToken.cdc (11.251kB) // ViewResolver.cdc (2.71kB) package assets @@ -73,7 +73,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _examplenftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5b\x6f\x73\x1b\x37\x8f\x7f\xef\x4f\x81\xea\x45\x47\xea\x39\x72\xd2\xa7\xcd\x3d\x8f\x26\x6a\xda\xda\x75\xcf\x33\xa9\xdb\x49\xd4\xf6\x45\xc6\x93\x52\xbb\x58\x8b\xe7\x5d\x72\x4b\x72\x25\x6b\x72\xfe\xee\x37\x00\xf7\x1f\xf7\x8f\x2c\x27\x73\x37\x77\x7e\x91\x48\xbb\x20\x08\xfc\x08\x02\x20\x40\x9d\x7d\x75\xf2\xd5\xc9\x57\x00\xab\x8d\xb4\x20\x2d\x08\x05\x78\x2f\xb2\x3c\x45\x90\xf4\x6f\x86\xca\x09\x27\xb5\x02\x9d\x80\x80\xcb\x54\xef\xe0\x5a\xab\x67\x97\x85\xba\x95\xeb\x14\x61\xa5\xef\x50\x11\x87\xc2\x4a\x75\x0b\x6e\x83\xf0\xc7\xd7\x60\x9d\x50\xb1\x30\xf1\x9c\xde\x5c\x39\xe2\xac\xb4\x83\x5c\x18\x47\x8c\x88\x4a\x27\x89\x8c\xa4\x48\x6b\x5a\x58\x17\x0e\xa4\x03\x61\x6d\x91\x61\x0c\x4e\xc3\x1a\x69\xbc\x95\x99\x4c\x85\xa1\x07\x1b\xbd\x83\x4c\xa8\x3d\x5c\x5f\xae\x2c\xec\x74\x91\xc6\x8d\x9c\xcc\x36\xd2\x06\x21\x29\x54\x44\x42\x8b\x54\xba\xfd\xbc\xa5\x61\xa4\x95\x33\x22\x72\x10\x6b\xf4\x22\x35\xa3\x89\xad\xd5\xf9\x46\x5a\x27\x23\xe1\x30\x86\x28\x15\xd6\xca\x84\xbe\x49\xcd\x4a\xda\xbd\x75\x98\x41\xa2\x0d\x48\x67\x59\x8a\x39\xe9\x17\x63\x22\x15\x5a\x10\x24\x2c\x81\x77\x7d\xb9\x82\x9d\x74\x1b\xc8\xa4\x92\x99\x48\x21\x43\x27\x62\xe1\x04\x4b\x73\x76\x72\x22\xb3\x5c\x1b\x07\x93\x6b\xad\x2a\x2c\x19\xca\x49\xfd\xe6\x0f\x89\xbb\xb7\x68\x75\xba\x45\xd3\x3c\xfd\xa5\xe4\x43\x6f\xed\xe4\xe4\x44\x44\x11\x5a\x3b\x15\x69\x3a\x6b\xb4\xfb\xc9\x2f\xe1\xf5\xe5\x6a\x01\xdd\x09\xe0\xe3\xc9\x09\x00\xc0\xd9\xd9\x19\xbc\xab\xa0\xff\x4d\xb8\x8d\xe5\xc7\x6d\x7e\x29\x3a\x38\xd7\x69\x8a\x0c\xe6\x3b\xa7\x8d\xb8\x45\x22\x5d\x40\xeb\xcb\x23\xc3\x7e\x2b\xd6\xa9\x8c\xfc\xa8\xe6\x73\x23\x03\x7d\x83\xdd\x06\x0d\xf2\xfa\x65\x52\x39\x34\x60\x37\xbc\xb6\x6b\x04\xeb\xb4\xc1\xb8\x26\x5f\x6d\xb0\xb1\x98\x9c\xc4\xe6\xd5\xf0\x4b\x5f\xcd\x09\xc2\x54\x03\x41\xaa\xee\x4b\x83\x56\x17\x26\x42\x70\xfb\x1c\x07\xa5\xff\x85\x85\x18\x55\xb8\x16\xe6\x4f\x84\x68\xa3\xb5\xf5\xa2\x2b\x91\xf9\x85\x27\x65\x4e\xd9\x9c\x1d\x19\x1d\x4d\x03\x91\x50\xb0\x11\x5b\x64\x33\x63\x4a\xa5\x77\x35\xa3\x35\x46\xa2\x28\xd9\xf0\xdc\x89\x88\xb0\x31\x52\x83\x7f\x17\xd2\x20\xed\x0e\xda\x04\xcc\x06\x6c\x8e\x11\x19\xa7\xe7\x46\x6c\x33\x6d\xfa\xfa\xd4\xda\x0e\x5a\xc3\x9c\xe4\x2d\x2d\x62\x08\x09\x19\x2f\xe0\xf7\x2b\xe5\x5e\x7e\xd3\xd0\x90\xc0\x97\x46\x67\x2c\xed\x85\xb4\x79\x2a\xf6\xb5\x7d\xc3\x56\xe2\x6e\x94\x1d\x89\x4a\x58\x1a\xa9\x6e\x47\x89\x62\xb4\x91\x91\x39\xad\xd5\xa3\xb4\x6e\x53\x64\x6b\x25\x64\x5a\x53\x86\x62\x96\xa6\xf1\x56\xef\x45\xea\x24\xda\xc3\x72\x5a\x4c\x13\xcf\xd7\x54\x03\x16\xf0\x3e\xd8\x72\x73\xcf\x6a\x7f\x13\x4e\xf4\x33\x2a\x34\x32\x82\x58\x7a\xc7\x63\xf6\xec\xe7\x8c\x20\x37\x41\x12\xb0\x5d\x08\x3b\x3e\x63\x25\xd8\x02\x3e\x7a\x4d\x16\xf0\x83\xda\xbf\x73\xa6\x88\xdc\x43\x33\x99\x54\xd2\x4d\xeb\x6f\xf4\xd7\xc6\xf4\x34\x78\x33\x00\x64\x48\xd0\x43\x2f\x7c\xfd\x38\x08\x21\xfd\x41\x15\x1a\xd2\x19\x7c\x0c\x86\x11\x06\x73\x19\xc3\xd2\x7f\x2a\x0a\x19\xf7\xdf\xb3\x91\x2f\x59\xd9\xfe\xcb\x96\xa2\xb0\x6c\xab\xdd\x27\xad\x55\x86\x65\xa3\x7e\x9f\xac\x56\x1d\x96\x0d\x0c\x7d\xb2\xda\x9a\x96\xb5\xf2\x35\xd1\x43\x68\x21\x91\x41\xe1\xf0\xa7\x2c\x77\xfb\xc6\x39\x96\x4f\x7d\xdc\xa5\x57\x2d\xc7\x19\x8c\x16\x2a\x06\x83\xae\x30\xca\x96\x5e\x80\x9d\x9a\x48\x53\x72\x96\xf4\x4d\x70\xfc\xdb\xb3\xa3\xd1\x3b\xc5\xb1\x29\x60\xf1\xfd\xc7\xde\xe6\x6f\x26\x7b\x18\xdc\x61\x49\xa1\x86\xe5\x9e\xce\x16\x8f\xf0\xeb\xac\xb1\x97\x1d\x5e\x3d\x6b\x42\xd3\x7c\x98\xb3\x4a\xdc\x6a\x9f\xe3\x02\xe8\xdf\x57\xdf\xb7\xe8\xaf\x2f\x57\xdf\x4d\x67\xb3\x21\x80\xdb\x42\xd3\xc6\x66\xc9\x6f\xd1\xb1\xb5\x92\xb0\xef\x89\xdb\xcd\xb0\x50\xef\x83\x87\xf4\xc7\x53\x87\x16\x5f\xfa\xb9\xef\xa6\xb3\xd3\x63\xc8\x6b\x87\x73\xec\x80\x9f\x62\x49\xea\x1f\x4f\x7f\xef\xd0\x28\x91\xfe\xfe\xf6\xcd\xb1\x43\xae\x2f\x57\x0d\xce\x17\xc2\x89\x4f\x1b\xf8\x34\x20\xde\xa1\x91\x22\x3d\x96\x7a\xc5\x0e\xf3\xbb\xe9\x2c\x20\xbe\x79\x6c\xc9\x69\xb5\x8d\x4f\x95\x88\xcf\xf4\x03\x1b\x81\x37\xa1\x59\xcb\x09\xbd\xee\x7a\x9e\x9d\x74\xd1\xc6\x5b\xcc\xc7\x9e\x7c\x91\xb0\x78\xd8\x14\x16\xbd\x31\xd0\x98\xd5\xe0\xa0\xe9\xe0\x08\xa8\xdd\x78\xed\xeb\xfa\x70\x55\x7f\x81\x57\xef\xba\xbf\xf1\x61\x2d\x5f\x1f\x4a\xf6\x1f\xab\xd5\x6f\x97\x32\xc5\x71\xd1\xe8\xaf\x30\xe9\xa2\xe3\x41\x47\xe9\x67\x83\x6f\xfa\x4f\xc7\x00\x6e\xed\x85\x61\x84\x7d\x1e\x48\x09\x11\xe5\x47\x90\x89\x7b\x50\x45\xb6\x46\x43\x41\x97\x8f\x06\xec\x0f\xc9\x15\xae\xcb\x94\x32\x86\xc4\xa7\x2c\xad\x53\xc0\x18\x6f\xeb\xbd\x2b\xb1\x45\x2f\x0a\x24\x12\xd3\x18\xb6\x22\x2d\x78\x52\x8b\xec\x83\xd5\x08\x08\x14\xcf\xcb\x91\x57\x2a\xd1\xb0\x84\x41\x05\xa7\x7e\xcd\x27\xa5\x8f\xe3\x1c\xa1\x7c\x35\x39\x2d\x35\x5a\x54\xe1\xf1\x94\xe4\x59\xd0\x94\xc3\xf0\xb6\xe6\x7c\x23\xad\xeb\x85\xec\x92\xf1\x0d\x2c\xe1\x7d\x4b\xb6\x9b\xe3\x4d\xb8\x5a\x96\x71\x43\x69\xcd\xff\x99\x26\x50\xbb\x8d\x27\x6c\x31\x3f\x66\x5c\xba\x12\xc8\xcf\x94\xac\xed\xd9\x9f\x20\x5c\x3d\xec\x11\xf9\x86\x93\x8d\xa7\x8b\x19\xc6\x87\x27\x08\xda\x1a\x38\x9d\x6c\x9c\xcb\xed\xe2\xec\xac\xac\x09\x3c\x53\x89\x9b\x6b\x95\xa4\x7a\x37\xd7\xe6\xf6\x6c\x32\x8f\xb4\x8a\x84\x9b\x96\xd0\xce\x9d\xf6\x89\xdf\x74\x36\x3b\x5e\xd4\xa1\xb8\x74\x50\xe0\x56\x4e\x50\x7a\xfd\xf3\x72\x47\xb3\xf7\xaf\x4e\x3c\x07\xd3\x88\x53\xf6\xfa\x2d\x92\xc7\x65\xfa\x54\x8d\x8e\x0b\x17\xff\xeb\x4a\xd5\x62\x1d\xaf\x57\x1d\x9e\x47\xdd\x32\xde\x47\x69\x11\x57\x3e\x77\x25\xf9\x64\x1a\x43\xa2\x35\xf9\x4b\xbb\xd1\x3b\xd0\x6e\x83\x06\x0a\x8b\x96\xbc\xb5\x67\x39\xee\xd1\x3c\xbf\xd8\x93\x91\xef\x9a\x34\xac\x27\xa7\x30\x49\xb4\x9e\x0c\xfb\x30\x3e\x1e\xf2\x30\x12\xbe\xe7\x83\xe9\xa4\xb6\xd2\x9e\xef\x94\xbe\x2c\xc2\x94\xfe\xb4\x9e\xfb\x5a\x64\x74\x04\x0a\x45\x99\x9d\x8c\x41\xd0\x52\x5d\x5a\x10\x50\x28\x79\x0f\x4e\x66\x68\x9d\xc8\xf2\x53\xd8\x61\x55\xdd\xc8\x84\xb9\xa3\x6c\x9e\x0b\x45\x02\x62\xbf\x22\x84\x3b\x85\xa0\x3c\x15\x2e\xd1\x26\xb3\x70\xa7\xf4\x8e\x4b\x5f\x15\x84\xd2\xcd\x47\x55\x6e\xa6\x67\x41\x7b\x7a\xf3\xd3\x2a\xf2\x04\x58\x72\x74\xeb\xa0\x10\xc0\x7d\xf3\xc5\x69\x5b\xc8\x05\x4c\x2e\x84\xa3\x91\x46\x18\xe9\xf6\x07\x82\x53\xb3\x0e\x73\x11\x7b\x04\xa7\x1d\x41\xc7\x01\x25\xe3\x61\x24\x99\x8b\x47\x8b\x8c\x81\x4e\x39\x7e\xe6\x51\x30\x12\xed\x57\xf8\x2d\x93\xf5\xb0\xf0\x8f\xa7\x36\xd2\x06\x17\xf0\xe2\xf9\xfc\x79\x19\x65\x5f\x3c\xe7\xcf\x41\xaa\x35\x39\xd7\x59\xa6\xd5\x64\x3c\xfc\x56\xb3\x1d\xc6\x9c\x2c\x76\x0c\x6c\xb6\xe6\x0e\xc8\x4a\xa6\x0d\xc2\xa1\x42\xc7\x83\x5d\x8d\x1b\x41\xb9\xf4\x41\xcd\xc8\x80\xea\x61\xe8\xd4\xd4\xce\x7d\x3c\xc1\x43\x55\x18\x83\x0b\xcc\x0d\x72\x0d\x75\x01\xbf\xaa\x74\xcf\x15\x31\xae\xd3\xad\x45\x74\xb7\x13\x26\x86\x48\x67\xb9\x70\x72\x2d\x7d\x89\x16\xc6\xaa\x56\x4d\x35\xac\xf1\x76\xdd\xe2\x22\x7c\x2c\xa7\x1e\xe4\xd0\x50\x0f\x94\xbf\x9a\x97\xa7\x07\x27\x08\x4e\xd2\x61\x91\x87\xb2\xb6\x48\x2b\xda\xaa\x5c\x01\x27\xbe\xe1\xc9\x9b\x28\xd8\x80\x83\xca\x63\xb9\xed\x15\xfc\xe5\x0b\x6c\x7f\xc1\xd5\x85\xcf\x33\xbb\x67\x9c\x2a\x5f\x9d\xc1\x56\x18\x32\x7b\x8c\x29\xc9\xa5\x23\xb8\x1f\xba\x80\xfe\x59\xfc\xfa\x72\xf5\xd0\xa9\x1b\xc1\x74\xb0\xf4\x52\x33\x84\x57\xcf\x08\xca\x66\x55\x03\x2d\x6e\xd1\xbd\x2b\xf2\x5c\x1b\xc7\xd4\x64\x9c\xb6\xae\x49\x08\x48\xa5\x75\x15\x1c\x8e\xdf\x95\x35\x09\x49\x54\x11\xca\x2d\x1a\x56\x28\x77\xbd\x2a\x58\xef\xdc\xde\x9b\x88\xce\xf0\x1f\xfd\x7e\xf8\x51\xeb\xb4\x5b\x5e\xa0\xdd\x67\xab\x31\x3c\xa0\x43\xbe\x6c\x2b\xc6\x9a\x07\xd4\xef\x47\x02\x2a\x65\xcb\xce\x14\x38\xb4\x01\x42\x0e\x63\xa8\xbd\x2d\x01\xda\x6d\x90\xe3\x9e\x36\x5c\xd1\xa5\xf3\xc5\xad\xdc\xa2\xf2\xa6\x40\xd6\xc1\xd0\x60\x0c\xeb\x7d\xa7\x60\x1d\xf0\xfb\xa1\x5d\xc9\xae\x4f\x39\x7e\x30\x17\x81\x99\x5f\x19\x60\xfe\xb3\xb0\xae\xd9\xdb\x05\x12\xef\x18\x13\x51\xa4\xee\xf0\x12\x48\xdb\x5d\x81\xa9\xab\xb3\x8a\x99\x07\x35\x5c\x02\x99\xf8\x99\x97\xcb\xb1\xe4\x64\xb8\xf8\xd2\x45\xf7\x01\x30\xb5\x38\x4c\x9b\x88\xd4\x86\xc4\x63\xa8\xd3\xd6\x8a\x8d\xd8\x81\xc1\x4c\x6f\x7d\x7d\x8d\x0c\x33\xa9\xca\xd6\xed\x5e\x81\x8a\xc1\x13\x75\x0b\x6b\x5d\x8c\x7a\x7b\xec\xcf\x6a\x9a\xff\xea\x7b\x96\x5f\x77\x0a\x8d\x2f\x4d\x54\xd2\x4c\xab\x0f\x57\x17\x55\x55\x7d\xb8\x8e\x46\x7b\x77\xc0\xc2\xd9\xb5\xd0\x26\x0d\xb7\xed\xdc\x2b\x39\xbd\xc3\xfd\x02\x9a\x29\xfa\xc1\xe1\xf5\x6b\xc8\x85\x92\xd1\x74\x72\xce\xe6\x41\x86\x58\x23\x55\x22\xc4\x4e\x89\x20\xc8\x8d\xde\xca\x18\x63\xf6\x4a\x7d\xd8\x26\x9d\x48\x52\x17\xf8\x58\xc8\xb1\x75\x89\x31\xd7\x96\x60\x16\x77\xdc\x2d\xa3\x19\x09\x7f\x11\xc7\x01\xfc\xf5\x34\xb6\xe5\x6c\x7b\x05\x51\x1e\x45\xf4\x57\x17\xd5\x48\x19\x83\x30\x46\xec\x47\xcb\x44\xa5\x04\x53\x16\x73\x14\xfc\xae\xb1\x06\xe8\xfb\x0f\xc2\x7e\x01\x1d\x23\xef\x0d\xe1\xa2\x36\x93\xd3\xb9\x33\x78\x4d\x2a\xc4\xb1\xef\x1b\xe1\xae\xe4\x59\x2a\xd1\x8a\x2f\xbb\x8d\x8c\x36\xb5\x15\x73\xdf\x34\x8d\x41\x2b\xec\xcd\xa5\xd3\x78\x35\x6c\x1f\xef\x2b\x09\x6e\x6a\xe9\x4f\xba\x7d\x02\x67\xf4\xbe\x66\xd1\x93\xb4\xec\x9d\xc6\xec\xa8\xb8\xdd\x86\xd6\x51\xb0\xcb\x0b\x93\x6b\xce\xe4\x55\xba\xef\x8e\xba\xd0\x6c\x61\xac\xa6\x86\xbd\x2e\x4c\xd3\xa1\x2c\x54\x8a\xd6\xd2\xc3\x6e\x3b\xab\xcb\xc5\xa0\xb0\x9a\xa1\xd9\x09\xc5\x16\x82\x99\x74\x55\x4f\xe5\xf7\x3c\xe6\x56\x2d\x6e\x51\x39\xb0\x3a\x43\x6e\x25\x76\x99\x48\x15\xce\xdf\x43\x4f\x14\x6e\xc3\xba\xbf\xc5\x04\x96\x30\xfd\xb2\x03\x21\x81\x27\x2c\x93\xf5\xdd\x40\xb9\xd5\xbf\x1c\xb6\xa5\xd7\xb3\x2f\x3a\xe2\xb4\x27\x9b\x17\xac\xc1\xca\x08\x65\x13\x34\x94\x50\x4f\xe9\xc1\x82\xc2\xe0\x79\x61\x0c\x2a\xf7\x63\xaa\xa3\xbb\xe9\x6c\x5e\x1f\x22\xc2\xad\xdd\x32\x42\x82\xa6\x41\x65\xda\x9e\x68\xb0\x6e\x5e\xc6\xf5\xab\x8b\x56\x24\x57\x7e\x07\x55\x7d\x7a\x7a\xc7\x71\x46\x18\xec\x37\x53\x1f\x8d\xe4\x57\x17\xbe\xfe\xee\xdd\xdd\x48\x05\xbe\xe3\xcf\xee\x70\x3f\x1a\x4f\x7f\xc6\xb2\xa1\x26\x32\x5d\x28\x57\x17\xfc\xc6\xba\xbd\x8f\x0a\xf8\x06\xd5\xad\xdb\x90\x8c\x57\xca\x1d\x25\x5e\xca\x23\x8e\x6e\x43\xac\xb5\x31\x7a\x77\x7d\xb9\x9a\x7e\x68\xb5\x53\x67\x8b\x51\x7b\x19\x16\x62\xcc\x24\x47\xad\x6e\x0c\xc1\x1f\x59\x1e\x86\x89\x65\x2c\xab\x0d\xa6\xee\xa3\x97\x3b\x11\x63\x76\xcf\x57\x17\xc7\xa8\xd7\xbe\xac\x30\xed\x68\xd9\x7e\x37\xaf\x3e\xf4\xd4\x94\x89\xef\x10\x27\x74\x7c\x7a\xa2\xae\x03\xc5\xfb\xea\x94\x92\x38\x3f\x70\x58\x88\xa7\x1e\x73\x02\x20\x9f\xdc\xd1\xab\xb6\x94\x15\x59\xeb\xf2\x01\x1c\xd1\xe2\x0b\x08\xbf\x2f\x45\xfb\xa1\x99\x23\x3a\x62\x8e\xff\x4f\x8d\x3d\x68\x1f\x27\x3f\x05\xe9\x61\x5b\xae\xf1\xf8\xcc\x96\xea\x71\x50\x06\x0a\x3f\x05\xd7\x1a\xd3\x92\x31\xb4\xd7\xa7\x8b\xcd\x65\x79\xd7\xc9\xcb\x5b\x7b\xf1\x34\x65\x75\xaa\x3a\x04\x70\x21\xa2\xb9\xed\xe4\xcf\x19\x82\xd2\x56\xe8\xdc\xe5\x2a\x19\x9f\xf4\xcc\xad\x15\x18\xfc\xe1\x8f\x6f\x3d\x55\xb7\xbe\xda\xac\xb7\x5c\xf5\xf0\x69\x83\xef\x99\xec\x64\x9a\xc2\x1a\xa1\xb0\x3c\x73\xcd\xbc\xfa\x8b\x71\x8b\xa9\xce\xd1\x58\x5a\x08\x2e\x78\xf9\xd4\x27\x17\x46\x64\xe8\x90\xaf\x7f\xe5\xc2\xda\x6a\xa1\xda\xfd\xbe\x19\x64\xe8\x36\x3a\x9e\x07\xc2\x8f\x79\xfc\x76\x5d\xd5\x0e\x14\x56\x5f\x0f\xf5\x8b\x07\x7b\xc5\x9f\xd4\x64\x3d\xbe\x30\x5b\x0f\xbb\x79\x6c\xd1\x19\x0a\x4a\xa8\x83\xeb\x2d\xe5\x2e\x68\x75\xbc\xe6\xfd\xd5\x65\x80\xab\x7e\xe9\xc6\x97\x7d\x2b\x27\x12\xa3\x95\xa6\x5c\xcf\x79\xdf\x20\xc0\x72\x57\xb5\x30\xb4\x1a\xb9\x41\x8b\xca\x55\xe6\x60\xf0\xef\x02\xad\xeb\x0e\x1e\xdc\x3e\xc7\xd5\xbb\x5f\x77\xab\xdb\x63\x9d\xdd\x56\x57\x97\x95\x09\x1d\xd6\xe7\x75\x21\x28\x44\x45\x01\x59\xaf\xd8\xd7\x63\x34\xdc\xf1\xb1\xed\xdb\x65\x1c\xee\x06\xaf\xda\x0d\x37\x74\xf3\xd6\xa5\xba\xce\xd8\xe6\x8e\xdd\xa1\xa1\xed\xa2\x18\x83\xf1\x65\xcb\x1f\x37\x2f\x07\xfb\xf6\x0d\x97\x37\x52\xdd\xf9\xfa\xc7\xa7\x71\x19\xf4\x9b\x95\x6d\x2f\x60\x9a\x14\x4f\x0f\x48\xed\xbf\xff\x89\xe0\xd4\xfe\x7b\xe8\x3f\xee\x3f\x29\x85\x08\xad\xe6\x13\x4c\xf2\x40\x1b\xc9\xdf\x1f\x8b\x65\xdf\x18\x7f\xa1\xa7\xc3\x06\x98\xc8\x14\x9f\x7e\x17\x80\xef\x01\xd4\x7d\x41\x61\x2d\x3a\x3b\xdf\xe1\xda\x4a\x87\xcf\x88\xa5\x9d\x47\x3a\x3b\xfb\x36\x79\xf9\xf5\xbf\xbe\x89\x9e\x47\xff\x2e\xfe\x19\xc5\xf1\xcb\x6f\xfe\xb1\x7e\x11\xfd\xf3\xeb\xe7\x9d\x17\xe2\xdb\x6f\xa3\xf5\x8b\xe8\x5f\xff\x78\xf9\xe1\x32\xd5\xbb\x0f\x7f\x6a\x13\x67\xc2\xdc\xcd\xed\xf6\x76\x32\x28\xc3\x88\x25\xb1\xf6\x65\x53\x42\x66\xe2\x16\xcf\xec\xf6\xf6\xdf\xee\xb3\xb4\xcf\x65\x74\x85\x1e\x07\x7f\x18\x96\xb2\xae\x4f\xce\xb3\xea\xe4\x37\x23\x27\xc3\xf2\x86\x9d\x85\xf2\x7c\x5d\x67\x2f\xd2\xfa\x40\x29\x82\x0b\xd9\x4e\xc3\x06\xd3\x9c\x0f\xcd\x65\xbc\xf4\xa7\x5a\x85\xf7\xae\xbc\x9a\x7d\xb9\x9a\x8f\xcc\x88\x4d\x5f\xb7\xbb\xea\x4f\x68\xf9\x4e\x46\xf0\xb7\x7f\x17\xc2\xe0\x15\x21\xbf\xf0\x8b\x31\x4c\xb7\x16\x4a\xa1\x79\x9c\xce\xea\x48\x8a\xd4\x2e\x0e\x6c\xee\x89\xdb\x49\xe7\xd0\x4c\x8e\x52\xa7\x24\x66\xe3\x24\x65\x3e\xac\xe9\x50\x1d\x6d\x84\x1c\xeb\xe8\x3c\x1c\xb0\x9c\x87\x6e\x5e\x50\x1d\x13\x5a\x31\xfa\x6d\x5d\xec\xe7\xd3\xb3\x02\x11\x67\x52\x81\x36\x5c\xa6\x70\x1b\x8a\x94\xd5\xd5\x76\x7f\x93\x9d\x72\x4c\x7f\xeb\xbd\xe2\x21\xd6\x7e\xdd\x33\xa9\x1c\xd7\x89\xea\x14\x74\x28\x96\xb6\xaf\xfa\xfa\x2b\xcc\xed\xab\xbd\x67\x65\x6f\x92\x12\x61\xfa\x9f\xd2\x85\x92\x65\xd5\x81\xa4\xaf\xad\xf3\xde\xe1\x2c\x99\xe4\xa7\xbc\x02\xef\x87\x8b\xc9\x14\xd9\xcb\xf9\xfe\xef\x5c\x58\xad\xc9\x29\xac\x84\x5e\xbe\x8d\x15\xd4\x4e\xf5\xc0\x8d\xd6\x7e\x53\x81\xb3\x83\x56\xcd\x06\x96\xfd\x2a\x4e\x30\xa0\xdb\x66\x65\x9a\xc9\x0d\x2c\x03\x36\xf3\x0d\xca\xdb\x8d\x3b\x38\xd2\x37\x68\xbb\x03\xeb\x8a\x51\xaf\xa4\xc7\x69\x61\x2e\x31\xe2\x64\xaf\x4e\x1b\x83\x3c\xbd\x6a\x37\x63\xb6\xc6\x38\xa6\xf5\xf6\x6d\x48\x90\xca\xe9\xaa\x1f\x3b\x22\x15\x77\x32\x61\x09\x93\xb5\x30\x93\xde\xec\xe5\xb9\xa6\x36\xc0\xe0\xfd\x56\x90\x4b\xdb\xd1\x92\x34\x47\xa0\x9e\x15\x35\x96\x34\x7c\x5d\x2e\xb0\xa5\x83\x37\xe4\x5a\x46\x55\x7f\xec\x53\xb5\x6c\xab\xfe\xd8\xa7\x6a\x0c\xa6\xbe\x47\x10\xd0\x8c\x55\xcd\xbd\xbe\xc3\x27\x60\xbe\xf2\x3d\x0b\xb7\x32\xbc\x43\x57\xff\xe8\xa0\xfc\x21\x44\x93\x00\x8f\x66\x93\xb0\x84\xb3\x32\xf1\xac\x1c\x7c\x10\xe7\xc6\x58\x34\x49\x25\x71\xf0\xc9\xdf\x11\x0c\x7a\xbf\xa3\x18\x9e\xdf\x93\x05\xea\x9d\x57\x06\x72\x3e\xf0\xbb\x0d\xf2\x49\x56\x6c\xab\xdf\x43\x94\x0c\xeb\xe1\x61\x8e\x7e\xe8\x18\x5d\x0b\x2a\xa2\x48\x17\xca\xcd\x4b\x56\x73\xe2\x3e\x7d\xf5\x2c\x6a\x75\x87\x9d\x3e\x94\xa6\xcf\x02\xe9\x6b\xf3\xf6\x48\x41\x24\x72\xe1\x3b\xdd\x03\x3f\x56\x19\x91\xfb\x5c\xe4\xd5\x8d\xf8\x4a\xba\x9a\x8d\x44\x5b\x8b\x2a\xad\x2d\xc6\x13\xef\x43\x12\x0f\x22\x10\xcc\xc1\xe2\xdb\xcd\x34\x90\xea\x14\x84\x3b\x70\xea\x98\x0d\xaf\x63\x19\x8f\x9e\xb2\x86\xe5\x4f\x81\x02\x1f\xe0\xd9\x1c\xb9\x7c\x9e\x41\x6b\xe9\x7a\xf6\x58\x55\x53\x1e\x4e\xfe\x3b\x00\x00\xff\xff\x9a\x83\x72\xc2\x09\x37\x00\x00" +var _examplenftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5b\xdd\x73\x1b\x37\x0e\x7f\xf7\x5f\x81\xea\xa1\x23\xf5\x1c\x39\xe9\x47\xae\xd5\x44\x4d\x5b\xbb\xee\x79\x26\x75\x3b\x89\xda\x3e\x64\x3c\x29\xb5\x8b\xb5\x78\xde\x25\xb7\x24\xd7\xb2\x26\xe7\xff\xfd\x06\xe0\x7e\x71\x3f\x64\x39\x99\xbb\xb9\xf3\x43\x22\xed\x82\x20\xf0\x23\x08\x80\x00\x75\xf2\xd9\xd1\x67\x47\x9f\x01\xac\x36\xd2\x82\xb4\x20\x14\xe0\x9d\xc8\xf2\x14\x41\xd2\xbf\x19\x2a\x27\x9c\xd4\x0a\x74\x02\x02\xce\x53\xbd\x85\x4b\xad\x9e\x9c\x17\xea\x5a\xae\x53\x84\x95\xbe\x41\x45\x1c\x0a\x2b\xd5\x35\xb8\x0d\xc2\xef\x9f\x83\x75\x42\xc5\xc2\xc4\x73\x7a\x73\xe1\x88\xb3\xd2\x0e\x72\x61\x1c\x31\x22\x2a\x9d\x24\x32\x92\x22\xad\x69\x61\x5d\x38\x90\x0e\x84\xb5\x45\x86\x31\x38\x0d\x6b\xa4\xf1\x56\x66\x32\x15\x86\x1e\x6c\xf4\x16\x32\xa1\x76\x70\x79\xbe\xb2\xb0\xd5\x45\x1a\x37\x72\x32\xdb\x48\x1b\x84\xa4\x50\x11\x09\x2d\x52\xe9\x76\xf3\x96\x86\x91\x56\xce\x88\xc8\x41\xac\xd1\x8b\xd4\x8c\x26\xb6\x56\xe7\x1b\x69\x9d\x8c\x84\xc3\x18\xa2\x54\x58\x2b\x13\xfa\x26\x35\x2b\x69\x77\xd6\x61\x06\x89\x36\x20\x9d\x65\x29\xe6\xa4\x5f\x8c\x89\x54\x68\x41\x90\xb0\x04\xde\xe5\xf9\x0a\xb6\xd2\x6d\x20\x93\x4a\x66\x22\x85\x0c\x9d\x88\x85\x13\x2c\xcd\xc9\xd1\x91\xcc\x72\x6d\x1c\x4c\x2e\xb5\xaa\xb0\x64\x28\x27\xf5\x9b\xdf\x25\x6e\x5f\xa3\xd5\xe9\x2d\x9a\xe6\xe9\xcf\x25\x1f\x7a\x6b\x27\x47\x47\x22\x8a\xd0\xda\xa9\x48\xd3\x59\xa3\xdd\x8f\x7e\x09\x2f\xcf\x57\x0b\xe8\x4e\x00\xef\x8f\x8e\x00\x00\x4e\x4e\x4e\xe0\x4d\x05\xfd\xaf\xc2\x6d\x2c\x3f\x6e\xf3\x4b\xd1\xc1\xa9\x4e\x53\x64\x30\xdf\x38\x6d\xc4\x35\x12\xe9\x02\x5a\x5f\x1e\x18\xf6\x6b\xb1\x4e\x65\xe4\x47\x35\x9f\x1b\x19\xe8\x1b\x6c\x37\x68\x90\xd7\x2f\x93\xca\xa1\x01\xbb\xe1\xb5\x5d\x23\x58\xa7\x0d\xc6\x35\xf9\x6a\x83\x8d\xc5\xe4\x24\x36\xaf\x86\x5f\xfa\x6a\x4e\x10\xa6\x1a\x08\x52\x75\x5f\x1a\xb4\xba\x30\x11\x82\xdb\xe5\x38\x28\xfd\xcf\x2c\xc4\xa8\xc2\xb5\x30\x7f\x20\x44\x1b\xad\xad\x17\x5d\x89\xcc\x2f\x3c\x29\x73\xcc\xe6\xec\xc8\xe8\x68\x1a\x88\x84\x82\x8d\xb8\x45\x36\x33\xa6\x54\x7a\x5b\x33\x5a\x63\x24\x8a\x92\x0d\xcf\x9d\x88\x08\x1b\x23\x35\xf8\x57\x21\x0d\xd2\xee\xa0\x4d\xc0\x6c\xc0\xe6\x18\x91\x71\x7a\x6e\xc4\x36\xd3\xa6\xaf\x4f\xad\xed\xa0\x35\xcc\x49\xde\xd2\x22\x86\x90\x90\xf1\x02\x7e\xbb\x50\xee\xf9\x97\x0d\x0d\x09\x7c\x6e\x74\xc6\xd2\x9e\x49\x9b\xa7\x62\x57\xdb\x37\xdc\x4a\xdc\x8e\xb2\x23\x51\x09\x4b\x23\xd5\xf5\x28\x51\x8c\x36\x32\x32\xa7\xb5\x7a\x90\xd6\x6d\x8a\x6c\xad\x84\x4c\x6b\xca\x50\xcc\xd2\x34\x5e\xeb\x9d\x48\x9d\x44\xbb\x5f\x4e\x8b\x69\xe2\xf9\x9a\x6a\xc0\x02\xde\x06\x5b\x6e\xee\x59\xed\xae\xc2\x89\x7e\x42\x85\x46\x46\x10\x4b\xef\x78\xcc\x8e\xfd\x9c\x11\xe4\x26\x48\x02\xb6\x0b\x61\xc7\x67\xac\x04\x5b\xc0\x7b\xaf\xc9\x02\xbe\x57\xbb\x37\xce\x14\x91\xbb\x6f\x26\x93\x4a\xba\x69\xfd\x8d\xfe\xda\x98\x1e\x07\x6f\x06\x80\x0c\x09\x7a\xe8\x85\xaf\x1f\x06\x21\xa4\xdf\xab\x42\x43\x3a\x83\xf7\xc1\x30\xc2\x60\x2e\x63\x58\xfa\x4f\x45\x21\xe3\xfe\x7b\x36\xf2\x25\x2b\xdb\x7f\xd9\x52\x14\x96\x6d\xb5\xfb\xa4\xb5\xca\xb0\x6c\xd4\xef\x93\xd5\xaa\xc3\xb2\x81\xa1\x4f\x56\x5b\xd3\xb2\x56\xbe\x26\xba\x0f\x2d\x24\x32\x28\x1c\xfe\x98\xe5\x6e\xd7\x38\xc7\xf2\xa9\x8f\xbb\xf4\xaa\xe5\x38\x83\xd1\x42\xc5\x60\xd0\x15\x46\xd9\xd2\x0b\xb0\x53\x13\x69\x4a\xce\x92\xbe\x09\x8e\x7f\x3b\x76\x34\x7a\xab\x38\x36\x05\x2c\xbe\x7b\xdf\xdb\xfc\xcd\x64\xf7\x83\x3b\x2c\x29\xd4\xb0\xdc\xd3\xd9\xe2\x01\x7e\x9d\x35\xf6\xb2\xc3\x8b\x27\x4d\x68\x9a\x0f\x73\x56\x89\x5b\xed\x72\x5c\x00\xfd\xfb\xe2\xbb\x16\xfd\xe5\xf9\xea\xdb\xe9\x6c\x36\x04\x70\x5b\x68\xda\xd8\x2c\xf9\x35\x3a\xb6\x56\x12\xf6\x2d\x71\xbb\x1a\x16\xea\x6d\xf0\x90\xfe\x78\xea\xd0\xe2\x4b\x3f\xf7\xed\x74\x76\x7c\x08\x79\xed\x70\x0e\x1d\xf0\x63\x2c\x49\xfd\xc3\xe9\xef\x1c\x1a\x25\xd2\xdf\x5e\xbf\x3a\x74\xc8\xe5\xf9\xaa\xc1\xf9\x4c\x38\xf1\x61\x03\x1f\x07\xc4\x1b\x34\x52\xa4\x87\x52\xaf\xd8\x61\x7e\x3b\x9d\x05\xc4\x57\x0f\x2d\x39\xad\xb6\xf1\xa9\x12\xf1\x99\xbe\x63\x23\xf0\x26\x34\x6b\x39\xa1\x97\x5d\xcf\xb3\x95\x2e\xda\x78\x8b\x79\xdf\x93\x2f\x12\x16\xf7\x9b\xc2\xa2\x37\x06\x1a\xb3\x1a\x1c\x34\x1d\x1c\x01\xb5\x1b\xaf\x7d\x5d\x1f\xae\xea\x2f\xf0\xea\x5d\xf7\x37\x3e\xac\xe5\xeb\x43\xc9\xfe\xb1\x5a\xfd\x7a\x2e\x53\x1c\x17\x8d\xfe\x0a\x93\x2e\x3a\x1e\x74\x94\x7e\x36\xf8\xa6\xff\x74\x0c\xe0\xd6\x5e\x18\x46\xd8\xe7\x81\x94\x10\x51\x7e\x04\x99\xb8\x03\x55\x64\x6b\x34\x14\x74\xf9\x68\xc0\xfe\x90\x5c\xe1\xba\x4c\x29\x63\x48\x7c\xca\xd2\x3a\x05\x8c\xf1\xb6\xde\xbb\x12\x5b\xf4\xa2\x40\x22\x31\x8d\xe1\x56\xa4\x05\x4f\x6a\x91\x7d\xb0\x1a\x01\x81\xe2\x79\x39\xf2\x42\x25\x1a\x96\x30\xa8\xe0\xd4\xaf\xf9\xa4\xf4\x71\x9c\x23\x94\xaf\x26\xc7\xa5\x46\x8b\x2a\x3c\x1e\x93\x3c\x0b\x9a\x72\x18\xde\xd6\x9c\xaf\xa4\x75\xbd\x90\x5d\x32\xbe\x82\x25\xbc\x6d\xc9\x76\x75\xb8\x09\x57\xcb\x32\x6e\x28\xad\xf9\x3f\xd2\x04\x6a\xb7\xf1\x88\x2d\xe6\xc7\x8c\x4b\x57\x02\xf9\x91\x92\xb5\x3d\xfb\x23\x84\xab\x87\x3d\x20\xdf\x70\xb2\xf1\x78\x31\xc3\xf8\xf0\x08\x41\x5b\x03\xa7\x93\x8d\x73\xb9\x5d\x9c\x9c\x94\x35\x81\x27\x2a\x71\x73\xad\x92\x54\x6f\xe7\xda\x5c\x9f\x4c\xe6\x91\x56\x91\x70\xd3\x12\xda\xb9\xd3\x3e\xf1\x9b\xce\x66\x87\x8b\x3a\x14\x97\xf6\x0a\xdc\xca\x09\x4a\xaf\x7f\x5a\xee\x68\xf6\xfe\xd5\x89\x67\x6f\x1a\x71\xcc\x5e\xbf\x45\xf2\xb0\x4c\x1f\xaa\xd1\x61\xe1\xe2\xbf\xae\x54\x2d\xd6\xe1\x7a\xd5\xe1\x79\xd4\x2d\xe3\x5d\x94\x16\x71\xe5\x73\x57\x92\x4f\xa6\x31\x24\x5a\x93\xbf\xb4\x1b\xbd\x05\xed\x36\x68\xa0\xb0\x68\xc9\x5b\x7b\x96\xe3\x1e\xcd\xf3\x8b\x3d\x19\xf9\xae\x49\xc3\x7a\x72\x0c\x93\x44\xeb\xc9\xb0\x0f\xe3\xe3\x21\x0f\x23\xe1\x7b\x3e\x98\x4e\x6a\x2b\xed\xf9\x4e\xe9\xcb\x22\x4c\xe9\x8f\xeb\xb9\x2f\x45\x46\x47\xa0\x50\x94\xd9\xd1\x18\x04\x2d\xd5\xa5\x05\x01\x85\x92\x77\xe0\x64\x86\xd6\x89\x2c\x3f\x86\x2d\x56\xd5\x8d\x4c\x98\x1b\xca\xe6\xb9\x50\x24\x20\xf6\x2b\x42\xb8\x53\x08\xca\x53\xe1\x12\x6d\x32\x0b\x37\x4a\x6f\xb9\xf4\x55\x41\x28\xdd\x7c\x54\xe5\x66\x7a\x16\xb4\xa7\x37\x3f\xad\x22\x4f\x80\x25\x47\xb7\x0e\x0a\x01\xdc\x57\x9f\x1c\xb7\x85\x5c\xc0\xe4\x4c\x38\x1a\x69\x84\x91\x6e\xb7\x27\x38\x35\xeb\x30\x17\xb1\x47\x70\xda\x11\x74\x1c\x50\x32\x1e\x46\x92\xb9\x78\xb4\xc8\x18\xe8\x94\xe3\x67\x1e\x05\x23\xd1\x7e\x85\x5f\x33\x59\x0f\x0b\xff\x78\x6a\x23\x6d\x70\x01\xcf\x9e\xce\x9f\x96\x51\xf6\xd9\x53\xfe\x1c\xa4\x5a\x93\x53\x9d\x65\x5a\x4d\xc6\xc3\x6f\x35\xdb\x7e\xcc\xc9\x62\xc7\xc0\x66\x6b\xee\x80\xac\x64\xda\x20\x1c\x2a\x74\x38\xd8\xd5\xb8\x11\x94\x4b\x1f\xd4\x8c\x0c\xa8\xee\x87\x4e\x4d\xed\xdc\xc7\x13\xdc\x57\x85\x31\x38\xc3\xdc\x20\xd7\x50\x17\xf0\x8b\x4a\x77\x5c\x11\xe3\x3a\xdd\x5a\x44\x37\x5b\x61\x62\x88\x74\x96\x0b\x27\xd7\xd2\x97\x68\x61\xac\x6a\xd5\x54\xc3\x1a\x6f\xd7\x2d\x2e\xc2\xfb\x72\xea\x41\x0e\x0d\xf5\x40\xf9\xab\x79\x79\xbc\x77\x82\xe0\x24\x1d\x16\x79\x28\x6b\x8b\xb4\xa2\xad\xca\x15\x70\xe2\x1b\x9e\xbc\x89\x82\x0d\x38\xa8\x3c\x96\xdb\x5e\xc1\x9f\xbe\xc0\xf6\x27\x5c\x9c\xf9\x3c\x73\xf8\x58\x2b\x0c\x59\x3c\xc6\x94\xdf\xd2\xe9\xdb\x8f\x5a\x40\xff\x18\x7e\x79\xbe\xba\xef\x94\x8c\x60\x3a\x58\x75\xa9\x19\xc2\x8b\x27\x84\x62\xb3\xa0\x81\x02\xd7\xe8\xde\x14\x79\xae\x8d\x63\x6a\xb2\x4b\x5b\x97\x23\x04\xa4\xd2\xba\x0a\x09\xc7\xef\xca\x72\x84\x24\xaa\x08\xe5\x2d\x1a\xd6\x25\x77\xbd\x02\x58\xef\xc8\xde\x9b\x88\x8e\xef\xef\xfd\x56\xf8\x41\xeb\xb4\x5b\x59\xa0\x8d\x67\xab\x31\x3c\xa0\x43\xbe\x6c\x2b\xc6\x9a\x07\xd4\x6f\x47\x62\x29\x25\xca\xce\x14\x38\x64\xfb\x21\x87\x31\xd4\x5e\x97\x00\x6d\x37\xc8\x21\x4f\x1b\x2e\xe6\xd2\xd1\xe2\x5a\xde\xa2\xf2\x56\x40\x86\xc1\xd0\x60\x0c\xeb\x5d\xa7\x56\x1d\xf0\xfb\xbe\x5d\xc4\xae\x0f\x38\x7e\x30\xd7\x7f\x99\x5f\x19\x5b\xfe\x59\x58\xd7\x6c\xeb\x02\x89\x77\x8c\x89\x28\x52\xb7\x7f\x09\xa4\xed\xae\xc0\xd4\xd5\x09\xc5\xcc\x83\x3a\x5c\x47\xe1\xe9\x97\xcb\xb1\xe4\x64\x0c\x26\xda\x06\xb1\x11\x5b\x30\x98\xe9\x5b\x5f\x0b\x23\x4b\x4a\xaa\x12\x73\xbb\xae\xaf\x62\xf0\x44\xdd\x22\x58\x57\xa9\xde\xa6\xf8\xa3\x9a\xe6\x5f\x7d\x2f\xf0\xcb\x56\xa1\xf1\x65\x84\x4a\x9a\x69\xf5\xe1\xe2\xac\xaa\x80\x0f\xd7\xbc\x68\xb3\x0d\x98\x24\xbb\x01\xda\x55\xe1\x3e\x9b\x7b\x25\xa7\x37\xb8\x5b\x40\x33\x45\xdf\x91\xbf\x7c\x09\xb9\x50\x32\x9a\x4e\x4e\x79\x3d\xc9\x72\x6a\xa4\x4a\x84\xd8\x81\x10\x04\xb9\xd1\xb7\x32\xc6\x98\x3d\x48\x1f\xb6\x49\xc7\xeb\xd7\xc5\x38\x16\x72\x6c\x5d\x62\xcc\xb5\x25\x98\xc5\x0d\x77\xb6\x68\x46\xc2\x5f\xc4\x71\x00\x7f\x3d\x8d\x6d\x39\xc6\x5e\xf1\x92\x47\x11\xfd\xc5\x59\x35\x52\xc6\x20\x8c\x11\xbb\xd1\x92\x4e\x29\xc1\x94\xc5\x1c\x05\xbf\xeb\xd8\x02\xf4\xfd\x07\x61\x3f\x81\x8e\x41\xf6\x86\x70\x01\x9a\xc9\xe9\x8c\x18\xbc\x26\x15\xe2\xd8\xf7\x78\x70\x5b\xf2\x2c\x95\x68\xc5\x82\xed\x46\x46\x9b\xda\x8a\xb9\xc7\x99\xc6\xa0\x15\xf6\xe6\xd2\x69\xbc\x1a\xb6\x8f\xb7\x95\x04\x57\xb5\xf4\x47\xdd\x9a\xbe\x33\x7a\x57\xb3\xe8\x49\x5a\xf6\x39\x63\xf6\x2c\xdc\x1a\x43\xeb\x28\x30\xe5\x85\xc9\x35\x67\xdd\x2a\xdd\x75\x47\x9d\x69\xb6\x30\x56\x53\xc3\x4e\x17\xa6\xe9\x26\x16\x2a\x45\x6b\xe9\x61\xb7\xf5\xd4\xe5\x62\x50\x58\xcd\xd0\x6c\x85\x62\x0b\xc1\x4c\xba\xaa\xff\xf1\x5b\x1e\x73\x5b\x15\x6f\x51\x39\xb0\x3a\x43\x6e\xfb\x75\x99\x48\x15\xce\xdf\x43\x4f\x14\x6e\xc3\xba\xbf\xc6\x04\x96\x30\xfd\xb4\x03\x21\x81\x27\x2c\x93\xf5\xdd\x40\xb9\xd5\x3f\x1d\xb6\xa5\x97\xb3\x4f\x3a\xe2\xb4\x27\x9b\x17\xac\xc1\xca\x08\x65\x13\x34\x94\xfc\x4e\xe9\xc1\x82\xe2\xd6\x69\x61\x0c\x2a\xf7\x43\xaa\xa3\x9b\xe9\x6c\x5e\x27\xfc\xe1\xd6\x6e\x19\x21\x41\xd3\xa0\x32\x6d\x4f\x34\xea\x2b\xaf\xd1\x5d\x9c\xb5\x42\xaf\xf2\x3b\xa8\xea\xa9\xd3\x3b\x0e\x0c\xc2\x60\xbf\xf1\xf9\x60\xe8\xbd\x38\xf3\xb5\x72\xef\xee\x46\xaa\xe5\x1d\x7f\x76\x83\xbb\xd1\x00\xf8\x13\x96\xcd\x2f\x91\xe9\x42\xb9\xba\x38\x37\xd6\x99\x7d\x50\xc0\x57\xa8\xae\xdd\x86\x64\xbc\x50\xee\x20\xf1\x52\x1e\x71\x70\xcb\x60\xad\x8d\xd1\xdb\xcb\xf3\xd5\xf4\x5d\xab\xf5\x39\x5b\x8c\xda\xcb\xb0\x10\x63\x26\x39\x6a\x75\x63\x08\xfe\xc0\xf2\x30\x4c\x2c\x63\x59\x19\x30\x75\xcf\xbb\xdc\x89\x18\xb3\x7b\xbe\x38\x3b\x44\xbd\xf6\xc5\x82\x69\x47\xcb\xf6\xbb\x79\xf5\xa1\xa7\xa6\x4c\x7c\x37\x37\xa1\xa3\xce\x23\x75\x1d\x28\xb4\x57\x27\x8a\xc4\xf9\x81\xc3\x42\x3c\xf6\x48\xf2\x71\xdd\xb7\x6a\x4b\x59\x91\xb5\x2e\x0a\xc0\x01\xed\xb8\xb0\xe9\x56\x8a\xf6\x7d\x33\x47\x74\xc0\x1c\xff\x4f\x4d\x38\x68\x1f\xfd\x3e\x04\xe9\x61\x5b\xae\xf1\xf8\xc8\xf6\xe7\x61\x50\x06\x0a\x3f\x06\xd7\x1a\xd3\x92\x31\xb4\xd7\xa7\x8b\xcd\x79\x79\x2f\xc9\xcb\x5b\x7b\xf1\x34\x65\x75\xaa\x9a\x01\x70\xd1\xa0\xb9\x99\xe4\x0f\x06\x82\xd2\x56\xe8\xdc\xbb\x2a\x19\x1f\xf5\xcc\xad\x15\x18\xfc\x69\x8d\x6f\x28\x55\x37\xb4\xda\xac\x6f\xb9\x42\xe1\xd3\x06\xdf\xdf\xd8\xca\x34\x85\x35\x42\x61\x79\xe6\x9a\x79\xf5\x17\xe3\x2d\xa6\x3a\x47\x63\x69\x21\xb8\x38\xe5\x53\x9f\x5c\x18\x91\xa1\x43\xbe\xaa\x95\x0b\x6b\xab\x85\x6a\xf7\xe6\x66\x90\xa1\xdb\xe8\x78\x1e\x08\x3f\xe6\xf1\xdb\x35\x50\x3b\x50\x04\x7d\x39\xd4\xdb\x1d\xec\xeb\x7e\x50\x43\xf4\xf0\x22\x6a\x3d\xec\xea\xa1\x45\x67\x28\x28\xa1\x0e\xae\xa2\x94\xbb\xa0\xd5\x9d\x9a\xf7\x57\x97\x01\xae\x7a\x9b\x1b\x5f\xa2\xad\x9c\x48\x8c\x56\x9a\x72\x3d\xe7\x7d\x83\x00\xcb\x1d\xd0\xc2\xd0\x6a\xe4\x06\x2d\x2a\x57\x99\x83\xc1\xbf\x0a\xb4\xae\x3b\x78\x70\xfb\x1c\x56\x9b\x7e\xd9\xad\x44\x8f\x75\x61\x5b\x1d\x58\x56\x26\x74\x58\x1f\xd7\x31\xa0\x10\x15\x05\x64\xbd\xc2\x5c\x8f\xd1\x70\x77\xc6\xb6\x6f\x82\x71\xb8\x1b\xbc\x16\x37\xdc\x7c\xcd\x5b\x17\xe0\x3a\x63\x9b\xfb\x70\xfb\x86\xb6\x0b\x58\x0c\xc6\xa7\x2d\x7f\xdc\xbc\x1c\xec\xb1\x37\x5c\x5e\x49\x75\xe3\x0b\x16\x1f\xc6\x65\xd0\x6f\x56\xb6\xbd\x80\x69\x52\x3c\x3e\x20\xb5\xff\xfe\x13\xc1\xa9\xfd\x77\xdf\x7f\xdc\x7f\x52\x0a\x11\x5a\xcd\x07\x98\xe4\x9e\x96\x8f\xbf\xeb\x15\xcb\xbe\x31\xfe\x4c\x4f\x87\x0d\x30\x91\x29\x3e\xbe\x6f\xcf\x3d\xfb\xba\x87\x27\xac\x45\x67\xe7\x5b\x5c\x5b\xe9\xf0\x09\xb1\xb4\xf3\x48\x67\x27\x5f\x25\xcf\x3f\xff\xe6\xcb\xe8\x69\xf4\x77\xf1\x75\x14\xc7\xcf\xbf\xfc\x62\xfd\x2c\xfa\xfa\xf3\xa7\x9d\x17\xe2\xab\xaf\xa2\xf5\xb3\xe8\x9b\x2f\x9e\xbf\x3b\x4f\xf5\xf6\xdd\x1f\xda\xc4\x99\x30\x37\x73\x7b\x7b\x3d\x19\xee\x56\x0e\x5b\x12\x6b\x5f\x36\x10\x64\x26\xae\xf1\xc4\xde\x5e\xff\xed\x2e\x4b\xfb\x5c\x46\x57\xe8\x61\xf0\x87\x61\x29\x6b\xf0\xe4\x3c\xab\xae\x7b\x33\x72\x32\x2c\x6f\xd8\x05\x28\xcf\xd7\x75\xf6\x22\xad\x0f\x94\x22\xb8\x3c\xed\x34\x6c\x30\xcd\xf9\xd0\x5c\xc6\x4b\x7f\xaa\x55\x78\xe7\xca\x6b\xd4\xe7\xab\xf9\xc8\x8c\xd8\xf4\x60\xbb\xab\xfe\x88\xf6\xec\x64\x04\x7f\xfb\x57\x21\x0c\x5e\x10\xf2\x0b\xbf\x18\xc3\x74\x6b\xa1\x14\x9a\x87\xe9\xac\x8e\xa4\x48\xed\x62\xcf\xe6\x9e\xb8\xad\x74\x0e\xcd\xe4\x20\x75\x4a\x62\x36\x4e\x52\xe6\xdd\x9a\x0e\xd5\xd1\x46\xc8\xb1\xee\xcb\xfd\x1e\xcb\xb9\xef\xe6\x05\xd5\x31\xa1\x15\xa3\x5f\xd7\x85\x79\x3e\x3d\x2b\x10\x71\x26\x15\x68\xc3\x65\x0a\xb7\xa1\x48\x59\x5d\x43\xf7\xb7\xce\x29\xc7\xf4\x37\xd4\x2b\x1e\x62\xed\xd7\x3d\x93\xca\x71\x9d\xa8\x4e\x41\x87\x62\x69\xfb\x5a\xae\xbf\x6e\xdc\xbe\x86\x7b\x52\xf6\x11\x29\x11\xa6\xff\x29\x5d\x28\x59\x56\xdd\x42\xfa\xda\x3a\xef\xed\xcf\x92\x49\x7e\xca\x2b\xf0\x6e\xb8\xfa\x4b\x91\xbd\x9c\xef\x7f\xe7\x72\x69\x4d\x4e\x61\x25\xf4\xf2\x6d\xac\xa0\x76\xaa\x7b\x6e\x9f\xf6\xbb\x00\x9c\x1d\xb4\x6a\x36\xb0\xec\x57\x71\x82\x01\xdd\x96\x28\xd3\x4c\xae\x60\x19\xb0\x99\x6f\x50\x5e\x6f\xdc\xde\x91\xbe\x99\xda\x1d\x58\x57\x8c\x7a\x25\x3d\x4e\x0b\x73\x89\x11\x27\x7b\x75\xda\x18\xe4\xe9\x55\x6b\x18\xb3\x35\xc6\x31\xad\xb7\x6f\x19\x82\x54\x4e\x57\xbd\xd3\x11\xa9\xb8\xeb\x08\x4b\x98\xac\x85\x99\xf4\x66\x2f\xcf\x35\xb5\x01\x06\xef\x6f\x05\xb9\xb4\x2d\x2d\x49\x73\x04\xea\x59\x51\x63\x49\xc3\x57\xdb\x02\x5b\xda\x7b\x9b\xad\x65\x54\xf5\xc7\x3e\x55\xcb\xb6\xea\x8f\x7d\xaa\xc6\x60\xea\x9e\x7f\x40\x33\x56\x35\xf7\xfa\x0e\x9f\x80\xf9\x7a\xf6\x2c\xdc\xca\xf0\x06\x5d\xfd\x03\x81\xf2\x47\x0b\x4d\x02\x3c\x9a\x4d\xc2\x12\x4e\xca\xc4\xb3\x72\xf0\x41\x9c\x1b\x63\xd1\x24\x95\xc4\xc1\x27\x7f\x07\x30\xe8\xfd\xe6\x61\x78\x7e\x4f\x16\xa8\x77\x5a\x19\xc8\xe9\xc0\x6f\x2c\xc8\x27\x59\x71\x5b\xfd\x76\xa1\x64\x58\x0f\x0f\x73\xf4\x7d\xc7\xe8\x5a\x50\x11\x45\xba\x50\x6e\x5e\xb2\x9a\x13\xf7\xe9\x8b\x27\x51\xab\x93\xeb\xf4\xbe\x34\x7d\x16\x48\x5f\x9b\xb7\x47\x0a\x22\x91\x0b\xdf\x95\x1e\xf8\x61\xc9\x88\xdc\xa7\x22\xaf\x6e\xaf\x57\xd2\xd5\x6c\x24\xda\x5a\x54\x69\x6d\x31\x9e\x78\xef\x93\x78\x10\x81\x60\x0e\x16\xdf\x6e\xa6\x81\x54\xc7\x20\xdc\x9e\x53\xc7\x6c\x78\x1d\xcb\x78\xf4\x98\x35\x2c\x7f\xb6\x13\xf8\x00\xcf\xe6\xc0\xe5\xf3\x0c\x5a\x4b\xd7\xb3\xc7\xaa\x9a\x72\x7f\xf4\xef\x00\x00\x00\xff\xff\xf6\xf7\xa9\xca\xb5\x36\x00\x00" func examplenftCdcBytes() ([]byte, error) { return bindataRead( @@ -89,7 +89,7 @@ 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{0xa5, 0xad, 0xe1, 0x9a, 0x5a, 0xf, 0x71, 0x7e, 0x56, 0xe5, 0xd0, 0xdc, 0x3b, 0x5e, 0x2f, 0x7d, 0xd8, 0x24, 0xaa, 0x9a, 0x8, 0x20, 0xb3, 0x65, 0x82, 0xe7, 0xe5, 0xe4, 0xe5, 0xc, 0x7e, 0x62}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcf, 0x9f, 0x7c, 0x26, 0xb9, 0xed, 0x9, 0x74, 0xbb, 0xac, 0x9a, 0x67, 0x2e, 0x74, 0xba, 0xfa, 0x81, 0xec, 0xc3, 0x70, 0xa0, 0xc4, 0x43, 0x2, 0xef, 0x56, 0x55, 0x38, 0x44, 0x53, 0xc1, 0x83}} return a, nil } @@ -113,7 +113,7 @@ func metadataviewsCdc() (*asset, error) { return a, nil } -var _nonfungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5a\x5f\x8f\x1b\xb7\x11\x7f\xd7\xa7\x98\x3a\x40\x7d\x17\xc8\xba\x3e\x14\x7d\x38\x20\x70\x9c\x38\x57\x1c\x5a\x5c\x02\x5b\x4e\x1e\x8a\x22\xa2\x76\x47\x12\x6b\x2e\xb9\x26\xb9\x52\x54\xe7\xbe\x7b\x31\xc3\x3f\xcb\x95\x76\xef\x4f\x12\xf4\x1e\xec\xd3\x6a\x39\x1c\xce\xfc\x66\xe6\x37\xc3\xbb\xfa\xf2\xcb\xd9\xec\x8b\x2f\x60\xb9\x43\xb8\x51\xe6\x00\x77\x46\xbf\xba\xe9\xf4\x56\xae\x15\xc2\xd2\x7c\x44\x0d\xce\x0b\x5d\x0b\x5b\xf3\x8b\xab\x3b\xa3\xd3\xf7\xfc\xf5\x0a\x2a\xa3\xbd\x15\x95\x9f\xcd\x48\x8a\xd4\x1e\xed\x46\x54\x08\x7e\x27\x3c\x08\xa5\xc6\x64\xa6\x35\x0e\xdc\xce\x74\xaa\xa6\x07\x1b\x63\x1b\xf0\x66\x31\xbb\xdd\x80\x80\xce\xa1\x85\x83\xd0\xde\x81\x37\x50\x63\xab\xcc\x11\x04\x68\x3c\xc0\xdd\xcd\x32\x0b\x98\x83\xdf\xa1\xb4\xf9\x73\x92\x27\x9b\x56\x61\x83\xda\xb3\x52\xfe\xd8\xa2\x83\x1a\x37\x52\x63\x0d\x3b\xb4\x18\x0f\x73\xb3\x5c\x81\x45\x67\x3a\x5b\x15\xaa\x87\x93\x54\xc6\x62\xff\x25\x89\x08\x47\xb2\xd8\x5a\x74\x48\x9a\x09\xcd\xca\x48\x4d\x5a\x80\x6b\x84\xf5\x59\x93\x45\xd8\xe2\x5b\xa3\x14\x56\x5e\x1a\xbd\x82\x77\x13\x3b\xf5\x9b\x90\x7c\xe7\x8d\x45\x17\x4d\xf0\xd2\xc5\xe3\x26\x29\x8b\xd9\xad\x07\xa9\x2b\xd5\xd5\xfc\xd2\x06\x0f\xb0\xe9\x34\x7f\xc7\xa6\x12\x8a\xfc\x48\xfa\x98\x83\x46\x4b\x8f\x50\x38\xa9\x8e\xb3\xc6\xec\x11\x3c\xd9\xdf\x91\xca\x42\xd7\x60\x3a\x0f\x66\xc3\x6f\x97\x5b\xb0\xe6\x3f\x58\xb3\x97\x35\xda\x15\xbf\xb9\x7a\x87\x15\xca\x3d\x7d\x3c\x37\x98\xe3\x73\xb8\xf2\x09\xd4\x58\x29\x61\xb1\x50\xee\x20\xfd\x0e\x9c\x69\x10\x5a\x8b\x2c\xb4\x35\x8e\x0d\x56\x4b\x7e\x63\x16\xed\xfb\xa9\x93\x16\x59\xa9\xde\x7a\x74\x8e\x8d\xe1\xb3\x55\x68\xbd\x90\x1a\xb4\x68\xa4\xde\xb2\xa0\x35\xee\xc4\x5e\x1a\x9b\xc1\xea\x16\xac\xd2\x11\x48\x05\x87\xad\xb0\xc2\x23\xac\xb1\x12\x1d\xa9\xe9\x61\x2b\xf7\xac\xe4\x1e\x95\x69\xd1\x3a\xde\x4e\xac\xa5\x92\xfe\x18\x10\x47\x60\xe9\xb5\x0f\xba\x55\x42\x93\x5b\x40\xe8\x63\x81\x88\x0c\x36\x96\xe2\x86\x86\xf9\xe6\x08\x9d\x23\x3d\x93\xd9\x1c\x6b\xdc\xbf\x32\x67\x47\x3b\xf2\x03\xb9\x7a\x88\x22\xc7\x5b\x3a\xd4\xf5\x8c\x56\xd9\xe0\x84\xe4\xc5\x16\xd1\xbe\xf2\xe6\x15\xfd\x3f\x67\xfb\x92\x43\xc9\x14\x7a\x4b\x87\xe0\x4d\x28\x2a\xd8\xf4\x02\x2a\x24\xa9\x0a\x14\xd6\x5b\xb4\xb3\x33\xc0\x2e\x0d\x6f\x95\x70\x4d\x68\xd2\xc6\xef\xd0\xb2\x8a\xf3\x1c\x96\x1c\x62\x8e\x8e\x7d\x64\xd1\xb5\x15\x01\x72\x77\x37\xcb\xd9\xc6\x9a\x26\x46\x65\xef\x3e\x8e\x53\x0d\x15\xe5\x03\x7a\xb1\xc6\xd6\x38\xe9\xb3\x7d\xc1\xe8\xc1\x5e\x2f\xdd\x6c\xe8\xfb\xca\x90\x91\x7d\x80\x85\xb7\x42\xbb\x0d\xda\xc5\x6c\xf6\xe5\xd5\x6c\x26\x9b\xd6\x58\x0f\x2f\x7e\x94\x78\xa0\x18\x53\x7b\xb4\x2f\x66\xb3\xab\xab\x2b\x4e\x6c\x0d\x81\xa5\x4c\x1a\x0b\xf8\x9e\x37\x2a\x9f\x11\x3c\x95\xe2\x35\x51\x1c\x7b\x29\x79\x96\xb7\x1d\xa0\x3b\xe4\x12\x0e\x7d\xe9\xfa\x24\x78\x75\x75\x35\x13\x55\x85\xce\x5d\x08\xa5\x2e\xfb\xc4\xd4\x27\xc6\xd3\x14\x7a\x0d\xa5\xe2\xf0\x79\x36\x03\x00\x20\x4d\xde\x68\x40\xed\xa5\x8f\x3a\x6c\x8c\x0d\xe1\xcd\xee\xdd\x61\xb6\xbd\x50\x1c\xc5\x01\x14\x6c\x7f\x01\x3f\x8a\x4e\x79\x96\x54\xaa\x53\x8a\xfb\x29\xae\x7e\xda\x7e\x5d\x5b\x0b\x1f\xc1\x1b\x7e\x07\xdc\x33\xe6\xf9\x35\xb6\xf0\x83\xdb\x7d\xe0\x45\xfd\x66\xa7\x3b\xc5\x74\x45\x01\xb5\xb5\x9c\xf8\x93\x82\xbc\x67\x5c\xfe\xd0\x0e\xdf\x93\x84\x7e\x83\xef\xf6\xc1\x71\xc2\x9f\xd7\x1b\x6c\xa4\x87\x03\x41\x92\xec\xd8\xa0\x17\xb5\xf0\x82\xac\x98\x72\xba\x8b\xa7\xac\xb3\xbc\xdb\x10\xff\x46\xab\x23\xac\x91\x45\x78\xac\x61\x7d\x64\x58\x27\x9f\xac\xe8\xf9\xdd\xcd\x32\xe8\x5b\xaf\x32\xc4\xb3\x9c\x10\x8c\x1a\x56\xfc\x8a\x58\x2b\x5c\xa5\x63\x50\x84\x6f\xd0\xa2\xa6\x62\x60\x52\x48\x85\x33\x1c\xc4\xb9\x4a\x04\xef\xd2\x02\xad\x8d\x3e\x71\xad\x68\x1a\xca\x2a\x8c\x86\x5e\x3f\x19\x9f\xf4\x91\xe6\x5e\x16\xa9\xdf\x65\xc9\x29\x55\xf2\x69\x2b\x53\x07\xb0\x51\xd9\x28\x5e\x07\x13\x1d\xb6\x13\xb4\x25\x56\x52\xa8\xfe\x28\xc1\x4d\x59\x62\x3c\x4f\xb1\x19\xd9\x7d\x67\xea\x10\x7a\x64\x52\xb2\x05\xbd\xb7\xc5\x10\x70\xe7\x56\xc9\xd2\x86\x26\x60\x4f\x37\xe2\x23\x3a\xca\xed\xce\x04\xad\xfc\x4e\xda\xfa\x55\x2b\xac\x3f\x82\xd4\x35\xfe\x42\x06\x21\x17\x36\x46\x4b\xcf\xba\x27\x10\x67\x71\x04\xb5\x4f\x1d\xda\x23\x7f\x19\xed\xdd\x03\x24\x25\xb7\x80\xd6\xa1\xed\x16\x49\xc8\x39\x48\xf7\x7d\x00\xd4\x17\x54\x38\xae\xe1\xbd\xb7\x52\x6f\xe7\x20\xeb\x6b\xf8\x70\xab\xfd\xdf\xfe\x3a\x87\xae\x2b\x3f\xf1\x16\xd7\xf0\xa6\xae\x2d\x3a\xf7\xfa\xf2\x4c\xec\x5e\x86\xe2\x0f\x43\xc8\x5d\xfc\x0c\x7a\xe3\xdf\xe1\xe6\x1a\x44\xe7\x77\x17\xe1\x31\xfc\x1a\xe2\xe3\x12\xfe\xfc\xf9\x34\x03\x2d\xee\x6e\x96\xf7\x41\xfe\x67\xfe\x97\x7e\x38\x44\x86\x3a\x07\xb1\x8b\x2d\xfa\xe5\xb1\xc5\x8b\xcb\x85\xac\xc9\x45\x1b\x49\xc5\x81\x54\x8f\x2f\xc8\x3a\x9d\x25\x3e\xa0\x0f\xf9\x40\xf1\x19\x7f\x7a\xbd\x10\xe1\x78\x61\xf7\xfb\xd9\x68\xf8\x4a\x97\xa3\x8d\x63\x56\x84\x5c\x47\xcf\x53\x0a\xd4\xf3\xbc\x50\xea\x5a\x56\xc2\xa7\x80\x24\xd5\x49\xbb\xa0\xd2\xbc\xa0\x46\x67\xcc\x27\xee\x16\x62\x2d\x4b\x66\xa7\xcf\x07\x08\xa1\x65\x1f\x3e\xdc\xbe\x4d\x22\x7a\x4a\x34\xba\x16\x3a\xd7\x09\xa5\x8e\x83\xe0\x19\xc2\x85\x13\xcc\x99\x3e\xd2\x81\x36\x3e\xb0\x35\x72\xbd\xe9\xb4\x7f\xe9\x98\x22\x8a\x2d\xce\x61\x45\xe2\x57\x39\x7e\x56\x5a\xaa\xd5\x63\x30\x4c\x59\x55\x3f\x19\x88\xb4\x49\x8f\xc3\x39\xb4\x91\x19\x92\x05\xd2\x5b\x97\xa3\x8e\x9b\xf2\x5a\x2c\xff\x58\x33\xc7\x18\x33\x0a\xdc\x06\x2f\xa2\xfb\x5d\x4e\x2c\x37\x7a\xd8\x85\xa5\xd5\xcf\xd7\xfe\x61\xbe\x9a\x3f\xcf\x59\x6f\x93\x0e\x4f\x76\x96\x37\xa5\xab\x7a\xfd\x26\x9c\x75\x3b\xec\xd7\x62\xc5\x71\xd0\x74\x81\x9a\xc7\xae\x6c\x52\xcd\xf3\x66\x80\xd6\x0f\x29\xcd\xe2\x94\xdb\xa4\xcd\x3b\x2d\x3f\x75\x08\xb7\x6f\x99\x00\x24\x02\x99\xde\x28\xb7\x51\xe8\x8b\x33\x0f\xa5\x8c\x27\x0a\xd1\x79\xd3\x08\x2f\x2b\x0e\x3c\xdc\x73\x4a\x97\x0d\x82\x28\x74\x26\x27\x3b\x6f\xcd\x31\xd6\xd4\xb2\xa8\x30\xbf\x97\x6c\x00\x91\x1c\x1c\x1b\xaf\x3a\xb5\x7c\xb9\x2e\x04\x6f\x39\x43\xd8\x89\x40\xd0\x88\xf4\xa6\xe0\x36\x51\xd8\x6d\xc7\xed\xe8\xd8\xe1\xc2\xe2\xd4\x1d\xbe\x4d\x1a\x5d\xf4\x07\x86\xaf\xc0\xa1\x2a\x13\xeb\xf0\x39\x3d\xbb\x1c\x5a\xa5\xb2\x28\x3c\x7e\xd7\xb4\xfe\x58\x30\xe9\xf0\x94\x55\x42\xfa\x6a\xd0\x61\x45\x0b\xa6\x2a\xcc\x8d\xe8\x99\x57\x52\xfc\x58\xf4\x9d\xd5\x5c\x6f\x53\x65\x17\x4a\xa1\x2d\xaa\x2f\x1e\x03\x61\x3a\x30\xa5\x72\x03\x11\x5f\x87\xf5\xf0\xa6\x57\xe5\x34\x84\xb9\xf3\x89\x3a\x48\x37\x09\x0d\x2a\x80\xa3\x87\xbd\xb8\xbc\x86\xaf\x3f\xf7\x9f\xef\x8b\xe2\x46\x3f\xdc\x7d\x0e\x1f\xd1\x8f\x45\xd7\x29\x4f\x45\xee\x9f\xa8\xb7\x7e\x77\x71\x09\x5f\x7d\x05\x7f\xb9\x86\x17\x3c\x15\xe0\x9d\xea\x52\x59\x0e\x15\x26\x84\xad\x3f\xfe\xe9\xc5\x94\x40\xe9\xde\x77\x2d\x75\x16\x58\xdf\xdd\x2c\xb9\x80\x86\x98\x66\x0f\xe6\x9a\x7a\xf9\xc8\x46\x2e\x08\xc9\x36\x61\x9c\x0e\x37\xbd\x9f\xf5\xbf\x0d\x8c\xfe\x77\xf4\x0e\x52\x0b\xc6\x61\x9e\x78\x52\x10\x55\x4b\x8b\x95\x57\x47\x72\xd9\x94\xbb\x6a\xc9\xca\x08\x7b\x64\xb6\xac\x14\xb8\x6e\x7d\x77\xb3\x7c\x0f\x1f\xf1\x18\xe8\x30\x69\x34\xea\xaa\x4c\x58\xb6\xe8\xdf\xec\x85\x54\x04\xb5\xf7\x61\x39\x79\xeb\xf3\x92\x0d\x12\xb0\x7d\xea\xae\xa8\xc1\xe7\x87\x4e\xc7\xc1\x5d\x10\xe8\xd4\xc8\x0e\x4e\x79\x76\xb8\x6f\x0c\x11\xf2\x18\xa1\x8e\x47\x06\xa6\xe5\x43\xaa\xe1\x44\x25\x36\xc5\xd5\xce\x18\x87\x03\x11\x3b\x73\xa0\x48\x48\x41\xe1\xba\x75\xb0\x6f\x8d\x2d\xea\x9a\xa8\x88\xd1\x70\xe0\x89\xd8\x60\x9f\x58\x4a\x87\xd9\xe7\xc6\x58\xc0\x5f\x04\xf5\x9e\x73\x90\x1b\x58\x91\x41\x57\x4c\xb2\x05\xec\x85\xea\x70\x0e\xeb\xce\xc3\x4a\xd6\x2b\xa8\x0d\x3a\xfd\x32\x0c\xc2\x58\xc1\x61\x16\x10\x3a\xaa\x0b\x87\x9d\xac\x76\xc1\x00\x9b\x68\x11\x9e\x60\x98\x64\x59\xc9\x25\xcd\x72\x5a\x14\xf0\xa2\xc6\x0d\xb5\x90\x2f\x06\xf2\x6e\x37\xb0\x0e\xd6\x8a\x05\x2c\x36\xf6\x3d\x98\xb8\x61\x08\x61\x2b\xc0\x49\xbd\x55\x41\x2d\xd2\xe4\x3f\x04\xe0\xb0\xdb\x40\x2a\x2d\x5c\xc0\x92\x1c\xb4\x43\xd5\xba\x98\x4a\x1c\x1c\x76\x86\xb6\xd2\x2f\x09\xf7\x16\x83\x05\x7d\x9a\xeb\x28\x63\x3e\x92\x69\xa9\x78\x94\xf2\x86\xc8\x6d\x85\x15\x0d\x84\x50\xa3\xc0\x22\x8c\xa5\xa2\x5f\xa3\x93\x16\xeb\xb3\x04\x17\x17\x51\xa2\xe5\xa1\x66\x9d\x16\x44\x04\xac\x8d\xb5\xe6\x30\xbd\x67\x8e\x16\xe7\x6d\x57\xf9\x8e\x27\x89\x71\x6c\x98\x78\xa9\xc5\x4f\x1d\x3a\x0a\x71\x0a\x8b\xc5\x64\x6e\xdb\xa2\x0f\x21\x12\xd3\xc5\x32\x52\xa1\x5c\xcc\xe1\x7a\x8a\xd2\xbf\x1e\x0f\x21\x2d\xd5\x6c\x98\x2b\xee\x47\x09\x81\x81\x06\x6b\x49\xbd\x43\x3f\x68\xc8\xf3\x85\x54\x44\x4b\x72\xdb\xe7\xda\xe7\xf0\x85\x34\x68\x1c\xb2\x03\xf8\x09\x63\x97\x9e\xa6\x00\x69\xdc\x90\x5a\xb0\x44\x43\x0b\x51\xa9\x6b\x25\xe2\x42\x79\x4a\x6f\xf3\xf2\x52\x74\x94\x14\x91\x25\x78\x7c\xb3\x09\x53\x3a\x6f\x62\x39\x56\xd2\x79\xa4\x1e\x2f\x7d\xaf\xa2\xc0\x34\xba\x8a\x8d\xe3\xc0\xf1\x59\x57\x8b\x8d\xd9\x63\x9e\x10\x67\x9d\x8b\x6c\x4e\x45\x34\xbc\x74\x5a\x42\x87\x11\xe7\x39\xc4\x99\x52\x70\x8b\xbd\x39\x12\x9d\xe6\xfe\x9d\x96\xdc\xbe\xa5\x78\x0d\x4c\xd6\xd2\x5b\x63\x40\x4e\x7a\x11\x05\x1c\x05\x74\x56\x7c\x44\xd3\x53\x64\xe6\xb1\x4c\xee\x28\x09\xa6\x49\xc2\x45\xb9\x57\x44\x28\xd5\x61\xc2\xe3\xb3\x0a\xb0\xac\xa9\xee\x96\xd2\xb8\x2e\xf6\x8c\xbd\x6f\xb2\x42\x5f\x91\xea\x30\xcf\xe2\x05\x31\x3d\x77\x12\x68\xb7\x6f\xcf\xab\x33\x63\xec\xb4\x27\xea\x39\xc0\x44\xa3\x9b\x75\x4c\x7c\x2c\x3e\x08\xdd\x49\x68\x98\xb8\xae\x0f\xbb\xdc\xd3\xde\xa9\x20\x6f\xa5\x4e\xf7\xcf\x0c\xcf\x08\x49\x97\x60\xf4\xdb\xe2\x30\x4d\xf8\x4f\x59\x7a\x02\xbc\xe7\xf9\x4a\x44\xf4\x90\xd6\x32\x98\x45\x5d\x97\x58\xfe\xf6\x1c\x40\x65\x3e\x0e\x93\xcf\x65\x0f\xc1\xb8\xcd\x64\x1e\x8c\xdf\x5f\xc4\x95\x01\x51\x27\xa4\x97\x73\xe5\x90\x64\xb9\x5c\x94\x05\xc7\x74\x9a\xb3\x87\x3b\xa1\x9e\x19\xd8\x74\x7a\xda\xb7\xf5\x4f\xa3\x3f\x41\x48\x23\xda\x36\xb4\xb2\x6b\x63\x14\x0a\xbe\x5f\xc9\x33\x08\x2e\xab\x72\x28\xaf\x87\x7a\x25\xa9\x35\x49\xac\x8e\xec\xf7\x28\x73\x3a\x3b\x61\x41\x9d\xbe\x31\x46\x9d\xd0\xa2\x77\xf1\xf8\x29\x69\x84\x2c\xc1\x2e\xda\xca\x3d\xea\xd8\xe8\xb8\x78\xf0\x48\xe1\xc6\x33\x00\x0f\x89\x47\x89\x7a\x58\xdc\x5f\x8c\xc4\x39\x6b\x51\xf1\xc1\xdb\x0e\x49\x76\x24\x16\xd3\x55\xfa\x8d\xce\x1e\x9a\xf0\x42\xb4\xf3\x88\x99\x7b\x3f\x92\x56\xd1\xbe\xa7\xb5\xfe\x09\x0c\x75\x92\xad\xd3\xaf\x97\xc1\xd0\xa7\xb1\xf9\x0f\xb2\x00\x91\x91\xb5\xa8\x3e\x1e\x84\xad\xdd\xab\xca\x34\xad\xf0\x32\xde\x2b\x59\x14\x2e\x0d\x59\x1f\x09\xc6\x3e\x7a\x7e\xe8\xd6\x4a\x56\x45\x9e\x7c\x62\x60\x3c\x06\xa3\xd4\xdd\x5c\x53\x4e\x79\xf4\xed\xdb\xb7\x0c\xb3\x7f\x85\x8c\xfe\xef\x87\xdf\x0f\xf4\x88\x28\xcb\xcf\x25\x51\x61\x9e\x42\xb4\xe4\xd4\x70\xef\xc2\x95\x5f\xbe\x0a\x08\xe8\xd3\x95\x45\x7f\x72\x05\x5b\x4e\x93\xd7\x98\x2e\x19\x73\x3f\x9e\xef\x6b\x08\x11\xf9\x4e\xe6\x19\x39\xb0\x37\xfb\x75\xe6\x25\xf3\x9c\x19\xe7\x67\x6e\x99\x8f\x0f\x3a\x8a\xae\xfa\xe1\x64\x3a\x95\x4b\xe3\x25\xb0\xf4\xe9\x64\x13\xc1\xf8\x58\x36\xa5\xa3\x9d\xce\xdd\x9f\x01\xa4\xd1\x39\xf1\x69\x15\xb7\x38\x52\xc4\x0b\x02\x57\xde\xf7\x05\x6e\x15\xcf\x34\xb8\x1c\xef\xef\xc4\x47\x44\x25\x5e\x37\xbd\x8a\x13\x98\x6a\x88\x51\x08\x75\x10\xc7\x50\xfa\x37\x92\x7a\xb8\x1a\x9d\x97\x5a\x0c\xce\x5e\x08\xef\xaf\xce\xc8\xf2\x59\xd3\x46\x3a\xc7\xb7\x14\xe1\x0a\xa5\x73\xde\x34\x39\xbb\x10\x25\xa4\xfc\xb6\xc6\x9e\x3b\x8e\xc9\x26\x89\x3b\x61\xeb\xd0\x66\x11\xa6\x65\x18\xae\x9c\x90\xcc\x71\x5a\x72\x3a\xfd\x63\x35\x1f\x60\x25\xe1\xfb\x9e\x94\x84\xcf\x71\x62\x6a\x26\x18\xc9\xe9\x88\xf0\x09\x9c\xe4\x7c\xa8\xc0\xb7\xe7\x8d\xe9\x74\xaa\xaf\x61\xf0\xd9\x47\xe6\x14\x7e\x53\x4a\xd7\xec\xca\x2d\xb3\xf9\xc1\xf8\xde\xc9\xff\xe2\xf9\x8c\xf6\x99\xd9\xed\xa4\xdd\xa7\xec\xe4\x26\x66\x05\x4f\x52\xfb\xb6\x27\xcf\x7c\x9b\xc7\x8a\x32\x39\x97\x4c\x33\x8b\x61\xf0\x50\xca\xfc\xa4\xef\xed\xff\xc2\x20\x55\xcc\x68\x10\x6e\xae\x19\x3e\x24\xa7\x15\x5a\x56\x8b\xc7\x7a\xdc\xd4\xae\xa6\x4a\xa7\x37\x9e\x98\xfe\x99\x12\x45\xcf\x9f\x6c\x50\x21\x25\xde\xc5\x94\x6f\xf2\x38\x64\xec\x7a\xf2\xb7\xd7\x82\xa7\xf4\xac\x13\x4d\xc2\x45\x20\xdc\xd4\x22\x68\xa9\x2e\xe1\xd7\x5f\xd3\xa3\xd7\xb1\x73\x90\xf5\xe5\x35\x9c\xad\xa3\x9f\x17\xdf\x0a\x4d\x56\x0d\xaa\xb1\x17\xf3\xb9\x82\x05\xcb\x9b\x1d\xb2\xc1\xe0\x62\x36\xb7\x63\x8d\xf0\xd5\x2e\x35\x61\xf9\x8e\x36\xe3\xe0\x89\x43\xb9\xe7\x0f\x6a\xa3\x6a\xdc\xe3\x9c\x91\xa4\x87\x66\xb3\xcf\x98\xc0\x4e\xee\xf1\xff\x19\xbd\x86\x04\x47\x6e\x1c\x4e\x47\xa7\x87\xa3\xd9\x2b\x3b\xb1\xc7\xa1\xee\xa1\x11\xe4\xbf\xd2\x48\xaf\x4f\x4e\x69\xff\x98\xb1\xef\x03\x0d\xdc\xf3\xdd\x9d\x18\x51\x9f\x60\x06\x14\xf6\x77\x0e\xe4\x8b\xfc\xa1\x37\x7e\x99\xc7\x64\x65\x12\x39\x19\x14\x0e\xfe\x04\x20\xa7\x8d\x93\x94\x21\xac\x15\xc7\xd4\x6c\x2d\xcb\x66\x6b\x82\xa6\xc5\xbf\xa9\x89\xd7\xe8\x4f\x83\x59\xaf\x71\x60\xe5\x23\x94\x65\x1c\x84\x23\x00\xec\x01\xc0\x5c\x77\xa1\x18\x06\xbf\x11\x04\xc9\xed\xf7\xb3\xff\x05\x00\x00\xff\xff\x8e\x70\x7e\x03\x63\x29\x00\x00" +var _nonfungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5a\xdf\x8f\xdb\x36\xf2\x7f\xf7\x5f\xc1\x6f\x0a\x7c\xb3\x2e\x1c\xef\x3d\x1c\xee\xc1\x40\x91\x26\xd9\xee\xc1\xe8\x61\x5b\x24\x4e\xfb\x70\x38\xd4\xb4\x34\xb2\x79\xa1\x48\x85\xa4\xec\xfa\xd2\xfd\xdf\x0f\x33\xfc\x21\x4a\x96\xf6\x47\x5b\xdc\x3e\xb4\xb1\x44\xce\x0c\xe7\xe7\x67\x86\xba\xfe\xfa\xeb\xd9\xec\xab\xaf\xd8\xe6\x00\xec\x56\xea\x13\xbb\xd3\xea\xd5\x6d\xab\xf6\x62\x27\x81\x6d\xf4\x27\x50\xcc\x3a\xae\x4a\x6e\x4a\x5a\xb8\xbd\xd3\x2a\xbe\xa7\xd7\x5b\x56\x68\xe5\x0c\x2f\xdc\x6c\x86\x54\x84\x72\x60\x2a\x5e\x00\x73\x07\xee\x18\x97\x72\x8c\x66\xdc\x63\x99\x3d\xe8\x56\x96\xf8\xa0\xd2\xa6\x66\x4e\x2f\x67\xeb\x8a\x71\xd6\x5a\x30\xec\xc4\x95\xb3\xcc\x69\x56\x42\x23\xf5\x99\x71\xa6\xe0\xc4\xee\x6e\x37\x89\xc0\x82\xb9\x03\x08\x93\x7e\x47\x7a\xa2\x6e\x24\xd4\xa0\x1c\x09\xe5\xce\x0d\x58\x56\x42\x25\x14\x94\xec\x00\x06\xc2\x61\x6e\x37\x5b\x66\xc0\xea\xd6\x14\x99\xe8\xfe\x24\x85\x36\xd0\xbd\x44\x12\xfe\x48\x06\x1a\x03\x16\x50\x32\xae\x48\x18\xa1\x50\x0a\x66\x6b\x6e\x5c\x92\x64\xe9\x59\xbc\xd3\x52\x42\xe1\x84\x56\x5b\xf6\x7e\x82\x53\xc7\x04\xe9\x5b\xa7\x0d\xd8\xa0\x82\x97\x36\x1c\x37\x52\x59\xce\xd6\x8e\x09\x55\xc8\xb6\xa4\x45\x15\x9c\x58\xd5\x2a\x7a\x47\xaa\xe2\x12\xed\x88\xf2\xe8\x93\x02\x83\x8f\x80\x5b\x21\xcf\xb3\x5a\x1f\x81\x39\xd4\xbf\x45\x91\xb9\x2a\x99\x6e\x1d\xd3\x15\xad\xce\x59\x90\xe4\x3f\x1a\x7d\x14\x25\x98\x2d\xad\xdc\xbe\x87\x02\xc4\x11\x7f\x5e\x2a\xcc\xd2\x39\x6c\xfe\x84\x95\x50\x48\x6e\x20\x13\xee\x24\xdc\x81\x59\x5d\x03\x6b\x0c\x10\xd1\x46\x5b\x52\x58\x29\x68\xc5\x2c\xe8\xf7\x73\x2b\x0c\x90\x50\x9d\xf6\xf0\x1c\x95\xa6\xb3\x15\x60\x1c\x17\x8a\x29\x5e\x0b\xb5\x27\x42\x3b\x38\xf0\xa3\xd0\x26\x39\xab\x5d\x92\x48\x67\x86\x22\x58\x68\xb8\xe1\x0e\xd8\x0e\x0a\xde\xa2\x98\x8e\xed\xc5\x91\x84\x3c\x82\xd4\x0d\x18\x4b\xec\xf8\x4e\x48\xe1\xce\xde\xe3\xd0\x59\x3a\xe9\xbd\x6c\x05\x57\x68\x16\xc6\xd5\x39\xf3\x88\xe4\x6c\x44\xc5\xf6\x15\xf3\xf6\xcc\x5a\x8b\x72\x46\xb5\x59\x92\xb8\x5b\xb2\x20\x43\x5b\xb4\x03\x9a\xba\xef\x45\x96\x58\x5a\x50\xe5\x0c\x77\x19\x6f\x84\x68\xc5\x06\xc0\xbc\x72\xfa\x15\xfe\x7f\x41\xfa\x45\x83\xa2\x2a\xd4\x1e\x0f\x41\x4c\x30\x2a\x48\xf5\x9c\x15\x80\x54\x25\x93\x50\xee\xc1\xcc\x2e\x1c\x76\xa3\x89\x55\xf4\x6b\xf4\x26\xa5\xdd\x01\x0c\x89\xb8\x48\x61\x49\x21\x66\xf1\xd8\x67\x22\x5d\x1a\xee\x5d\xee\xee\x76\x33\xab\x8c\xae\x43\x54\x76\xe6\xa3\x38\x55\xac\xc0\x7c\x80\x0b\x4b\x68\xb4\x15\x2e\xe9\x97\x69\xd5\xe3\xf5\xd2\xce\xfa\xb6\x2f\x34\x2a\xd9\x79\xb7\x70\x86\x2b\x5b\x81\x59\xce\x66\x5f\x5f\xcf\x66\xa2\x6e\xb4\x71\xec\xc5\x4f\x02\x4e\x18\x63\xf2\x08\xe6\xc5\x6c\x76\x7d\x7d\x4d\x89\xad\x46\x67\xc9\x93\xc6\x92\xfd\x40\x8c\xf2\x67\xe8\x9e\x52\xd2\x9e\x40\x8e\xac\x14\x2d\x4b\x6c\x7b\xde\xed\x73\x09\x85\xbe\xb0\x5d\x12\xbc\xbe\xbe\x9e\xf1\xa2\x00\x6b\xaf\xb8\x94\xf3\x2e\x31\x75\x89\x71\x98\x42\x57\x2c\x17\x9c\x7d\x99\xcd\x18\x63\x0c\x25\x79\xa3\x18\x28\x27\x5c\x90\xa1\xd2\xc6\x87\x37\x99\xf7\x00\x49\xf7\x5c\x52\x14\x7b\xa7\x20\xfd\x73\xf6\x13\x6f\xa5\x23\x4a\xb9\x38\x39\xb9\x9f\xc3\xee\xa7\xf1\x6b\x9b\x92\xbb\xe0\xbc\xfe\xdf\x0c\x8e\xe4\xf3\xb4\x8c\x34\xfc\x20\xbb\x8f\xb4\xa9\x63\x36\xe4\x14\xd2\x15\x06\xd4\xde\x50\xe2\x8f\x02\x12\xcf\xb0\xfd\x21\x0e\x3f\x20\x85\x8e\xc1\x77\x47\x6f\x38\xee\x2e\xeb\x0d\xd4\xc2\xb1\x13\xba\x24\xea\xb1\x06\xc7\x4b\xee\x38\x6a\x31\xe6\x74\x1b\x4e\x59\x26\x7a\x6b\x1f\xff\x5a\xc9\x33\xdb\x01\x91\x70\x50\xb2\xdd\x99\xdc\x3a\xda\x64\x8b\xcf\xef\x6e\x37\x5e\xde\x72\x9b\x5c\x3c\xd1\xf1\xc1\xa8\xd8\x96\x96\xf0\x9d\x84\x6d\x3c\x06\x46\x78\x05\x06\x14\x16\x03\x1d\x43\xca\x9f\xe1\xc4\x2f\x45\x42\xf7\xce\x35\xd0\x98\x60\x13\xdb\xf0\xba\xc6\xac\x42\xde\xd0\xc9\x27\xc2\x93\x2e\xd2\xec\xcb\x2c\xf5\xdb\x44\x39\xa6\x4a\x3a\x6d\xa1\x4b\xef\x6c\x58\x36\xb2\xe5\x4c\x07\x83\x1d\x38\xb2\x84\x42\x70\xd9\x1d\xc5\x9b\x29\x51\x0c\xe7\xc9\x98\xa1\xde\x0f\xba\xf4\xa1\x87\x2a\x45\x5d\xe0\xba\x3d\xf8\x80\xbb\xd4\x4a\xa2\xd6\x57\x01\x59\xba\xe6\x9f\xc0\x62\x6e\xb7\xda\x4b\xe5\x0e\xc2\x94\xaf\x1a\x6e\xdc\x99\x09\x55\xc2\xaf\xa8\x10\x34\x61\xad\x95\x70\x24\x7b\x74\xe2\x44\x0e\x5d\xed\x73\x0b\xe6\x4c\x2f\x83\xbe\x3b\x07\x89\xc9\xcd\x7b\x6b\x5f\x77\xcb\x48\xe4\xd2\x49\x8f\x5d\x00\x94\x57\x58\x38\x56\xec\x83\x33\x42\xed\x17\x4c\x94\x2b\xf6\x71\xad\xdc\xdf\xfe\xba\x60\x6d\x9b\xff\x22\x16\x2b\xf6\xa6\x2c\x0d\x58\xfb\x7a\x7e\x41\xf6\x28\x7c\xf1\x67\x7d\x97\xbb\xfa\x85\xa9\xca\xbd\x87\x6a\xc5\x78\xeb\x0e\x57\xfe\x31\xfb\xcd\xc7\xc7\x9c\xfd\xff\x97\x61\x06\x5a\xde\xdd\x6e\xee\x3d\xfd\x2f\xf4\x5f\xfc\xa3\x10\xe9\xcb\xec\xc9\x2e\xf7\xe0\x36\xe7\x06\xae\xe6\x4b\x51\xa2\x89\x2a\x81\xc5\x01\x45\x0f\x0b\x44\x19\xcf\x12\x1e\xe0\x8f\x74\xa0\xf0\x8c\x7e\xbd\x5e\x72\x7f\x3c\xcf\xfd\x7e\x36\x1a\xbe\xc2\xa6\x68\xa3\x98\xe5\x3e\xd7\xe1\xf3\x98\x02\xd5\x22\x6d\x14\xaa\x14\x05\x77\x31\x20\x51\x74\x94\xce\x8b\xb4\xc8\xa0\xd1\x05\xf2\x09\xdc\x7c\xac\x25\xca\x64\xf4\x45\xcf\x43\x70\xdb\xc7\x8f\xeb\x9b\x48\xa2\x83\x44\xa3\x7b\x59\x6b\x5b\x2e\xe5\xb9\x17\x3c\x7d\x77\xa1\x04\x73\x21\x8f\xb0\x4c\x69\xe7\xd1\x1a\x9a\x5e\xb7\xca\xbd\xb4\x04\x11\xf9\x1e\x16\x6c\x8b\xe4\xb7\x29\x7e\xb6\x4a\xc8\xed\x63\x6e\x18\xb3\xaa\x7a\xb2\x23\x22\x93\xce\x0f\x17\xac\x09\xc8\x10\x35\x10\x57\xcd\x47\x0d\x37\x65\xb5\x50\xfe\xa1\x24\x8c\x31\xa6\x14\xb6\xf6\x56\x04\xfb\x87\x8c\x98\x33\x7a\xd8\x84\xb9\xd6\x2f\xf7\xfe\x69\xb6\x5a\x3c\xcf\x58\x37\x51\x86\x27\x1b\xcb\xe9\xdc\x54\x9d\x7c\x13\xc6\x5a\xf7\xfb\xb5\x50\x71\x2c\xab\x5b\x0f\xcd\x43\x57\x36\x29\xe6\x65\x33\x80\xfb\xfb\x90\x66\x39\xc4\x36\x91\x79\xab\xc4\xe7\x16\xd8\xfa\x86\x00\x40\x04\x90\x71\x45\xce\x46\x82\xcb\xce\xdc\xa7\x32\x9e\x28\x78\xeb\x74\xcd\x9d\x28\x28\xf0\xe0\x48\x29\x5d\xd4\xc0\x78\x26\x33\x1a\xd9\x3a\xa3\xcf\xa1\xa6\xe6\x45\x85\xf0\xbd\x20\x05\xf0\x68\xe0\xd0\x78\x95\xb1\xe5\x4b\x75\xc1\x5b\xcb\x6a\xf4\x9d\xe0\x08\x0a\x00\x57\x72\x6a\x13\xb9\xd9\xb7\xd4\x8e\x8e\x1d\xce\x6f\x8e\xdd\xe1\x4d\x94\xe8\xaa\x3b\x30\xfb\x86\x59\x90\x79\x62\xed\x3f\xc7\x67\xf3\xbe\x56\x0a\x03\xdc\xc1\x77\x75\xe3\xce\x19\x92\xf6\x4f\x49\x24\xc0\x57\xbd\x0e\x2b\x68\x30\x56\x61\x6a\x44\x2f\xac\x12\xe3\xc7\x80\x6b\x8d\xa2\x7a\x1b\x2b\x3b\x97\x12\x4c\x56\x7d\xe1\xec\x01\xd3\x89\x20\x95\xed\x91\xf8\xd6\xef\x67\x6f\x3a\x51\x86\x21\x4c\x9d\x4f\x90\x41\xd8\x49\xd7\xc0\x02\x38\x7a\xd8\xab\xf9\x8a\x7d\xfb\xa5\xfb\x7d\x9f\x15\x37\xfc\xa3\xee\xb3\xff\x08\xff\x0c\xd8\x56\x3a\x2c\x72\xff\x00\xb5\x77\x87\xab\x39\xfb\xe6\x1b\xf6\x97\x15\x7b\x41\x53\x01\xe2\x54\xe6\xc2\x52\xa8\x10\x20\x6c\xdc\xf9\xff\x5e\x4c\x11\x14\xf6\x43\xdb\x60\x67\x01\xe5\xdd\xed\x86\x0a\xa8\x8f\x69\xb2\x60\xaa\xa9\xf3\x47\x18\x59\x4f\x24\xe9\x84\xfc\xb4\xcf\xf4\x7e\xd6\xfd\xab\xa7\xf4\xbf\x83\xb3\x2c\xb6\x60\x14\xe6\x11\x27\x79\x52\xa5\x30\x50\x38\x79\x46\x93\x4d\x99\xab\x14\x24\x0c\x37\x67\x42\xcb\x52\x32\xdb\xee\xee\x6e\x37\x1f\xd8\x27\x38\x7b\x38\x8c\x12\x8d\x9a\x2a\x01\x96\x3d\xb8\x37\x47\x2e\x24\xba\xda\x07\xbf\x1d\xad\xf5\x65\x43\x0a\xf1\xbe\x3d\x34\x57\x90\xe0\xcb\x43\xa7\xa3\xe0\xce\x00\x74\x6c\x64\x7b\xa7\xbc\x38\xdc\x5b\x8d\x80\x3c\x44\xa8\xa5\x91\x81\x6e\xe8\x90\xb2\x3f\x51\x09\x4d\x71\x71\xd0\xda\x42\x8f\xc4\x41\x9f\x30\x12\x62\x50\xd8\x76\xe7\xf5\x5b\x42\x03\xaa\x44\x28\xa2\x15\x3b\xd1\x44\xac\xc7\x27\x94\xd2\x7e\xf6\xb9\xd5\x86\xc1\xaf\x1c\x7b\xcf\x05\x13\x15\xdb\xa2\x42\xb7\x04\xb2\x39\x3b\x72\xd9\xc2\x82\xed\x5a\xc7\xb6\xa2\xdc\xb2\x52\x83\x55\x2f\xfd\x20\x8c\x04\xec\x67\x01\xae\x82\xb8\xec\x74\x10\xc5\xc1\x2b\xa0\x0a\x1a\xa1\x09\x86\x8e\x9a\x15\x54\xd2\x0c\xa5\x45\xce\x5e\x94\x50\x61\x0b\xf9\xa2\x47\x6f\x5d\xb1\x9d\xd7\x56\x28\x60\xa1\xb1\xef\x9c\x89\x1a\x06\x1f\xb6\x9c\x59\xa1\xf6\xd2\x8b\x85\x92\xfc\x1b\x1d\xd8\x73\xeb\x51\xc5\x8d\x4b\xb6\x41\x03\x1d\x40\x36\x36\xa4\x12\xcb\x4e\x07\x8d\xac\xd4\x4b\xf4\x7b\x03\x5e\x83\x2e\xce\x75\xa4\xd6\x9f\x50\xb5\x58\x3c\x72\x7a\x7d\xcf\x6d\xb8\xe1\x35\xf3\xa1\x86\x81\x85\x3e\x16\x8b\x7e\x09\x56\x18\x28\x2f\x12\x5c\xd8\x84\x89\x96\x86\x9a\x65\xdc\x10\x3c\x60\xa7\x8d\xd1\xa7\x69\x9e\x29\x5a\xac\x33\x6d\xe1\x5a\x9a\x24\x86\xb1\x61\xc4\xa5\x06\x3e\xb7\x60\x31\xc4\x31\x2c\x96\x93\xb9\x6d\x0f\xce\x87\x48\x48\x17\x9b\x00\x85\x52\x31\x67\xab\x29\x48\xff\x7a\x3c\x84\x94\x90\xb3\x7e\xae\xb8\x1f\x05\x04\x9a\xd5\x50\x0a\xec\x1d\xba\x41\x43\x9a\x2f\xc4\x22\x9a\x83\xdb\x2e\xd7\x3e\x07\x2f\xc4\x41\x63\x1f\x1d\xb0\x9f\x21\x74\xe9\x71\x0a\x10\xc7\x0d\xb1\x05\x8b\x30\x34\x23\x15\xbb\x56\x04\x2e\x98\xa7\xd4\x3e\x6d\xcf\x49\x07\x4a\xc1\xb3\x38\x8d\x6f\x2a\x3f\xa5\x73\x3a\x94\x63\x29\xac\x03\xec\xf1\xe2\x7b\x19\x08\xc6\xd1\x55\x68\x1c\x7b\x86\x4f\xb2\x1a\xa8\xf5\x11\xd2\x84\x38\xc9\x9c\x65\x73\x2c\xa2\x7e\xd1\xb0\x84\xf6\x23\xce\x51\x88\x13\xa4\xa0\x16\xbb\x3a\x23\x9c\xa6\xfe\x1d\xb7\xac\x6f\x30\x5e\x3d\x92\x35\xb8\x6a\xcc\x91\xa3\x5c\x08\x01\x47\x1d\x3a\x09\x3e\x22\xe9\xd0\x33\xd3\x58\x26\x75\x94\xe8\xa6\x91\xc2\x55\xce\x2b\x78\x28\xd6\x61\xf4\xc7\x67\x15\x60\x51\x62\xdd\xcd\xa9\x51\x5d\xec\x10\x7b\xd7\x64\xf9\xbe\x22\xd6\x61\x9a\xc5\x73\x44\x7a\x76\x10\x68\xeb\x9b\xcb\xea\x4c\x3e\x36\xec\x89\x3a\x0c\x30\xd1\xe8\x26\x19\x23\x1e\x0b\x0f\x7c\x77\xe2\x1b\x26\xaa\xeb\xfd\x2e\x77\xd8\x3b\x65\xe0\x2d\x97\xe9\xfe\x99\xe1\x19\x5c\xd2\x46\x37\xfa\x7d\x71\x18\x27\xfc\x43\x94\x1e\x1d\xde\xd1\x7c\x25\x78\x74\x1f\xd6\x92\x33\xf3\xb2\xcc\x7d\xf9\xdd\xa5\x03\xe5\xf9\xd8\x4f\x3e\x37\x9d\x0b\x06\x36\x93\x79\x30\xbc\xbf\x0a\x3b\xbd\x47\x0d\x40\x2f\xe5\xca\x3e\xc8\xb2\xa9\x28\x73\x8a\xe9\x38\x67\xf7\x77\x42\x1d\x32\x30\xf1\xf4\xc8\xb7\x71\x4f\x83\x3f\x9e\x48\xcd\x9b\xc6\xb7\xb2\x3b\xad\x25\x70\xba\x5f\x49\x33\x08\x2a\xab\xa2\x4f\xaf\x73\xf5\x42\x60\x6b\x12\x51\x1d\xea\xef\x51\xe4\x74\x71\xc2\x0c\x3a\xbd\xd5\x5a\x0e\x60\xd1\xfb\x70\xfc\x98\x34\x7c\x96\x20\x13\xed\xc5\x11\x54\x68\x74\x6c\x38\x78\x80\x70\xe3\x19\x80\x86\xc4\xa3\x40\xdd\x6f\xee\x2e\x46\xc2\x9c\x35\xab\xf8\xcc\x99\x16\x90\x76\x00\x16\xd3\x55\xfa\x8d\x4a\x16\x9a\xb0\x42\xd0\xf3\x88\x9a\x3b\x3b\xa2\x54\x41\xbf\xc3\x5a\xff\x04\x84\x3a\x89\xd6\xf1\x9f\x73\xaf\xe8\x61\x6c\x7e\x8f\x1a\x40\x30\xb2\xe3\xc5\xa7\x13\x37\xa5\x7d\x55\xe8\xba\xe1\x4e\x84\x7b\x25\x03\xdc\xc6\x21\xeb\x23\xc1\xd8\x45\xcf\x8f\xed\x4e\x8a\x22\xcb\x93\x4f\x0c\x8c\xc7\xdc\x28\x76\x37\x2b\xcc\x29\x8f\xae\x5e\xdf\x90\x9b\xfd\xd3\x67\xf4\x7f\x4d\x0a\x53\x69\xf3\x1d\x2f\x0e\xeb\x9b\xab\x5f\x58\xb5\xa2\x47\x57\xa9\x0a\xa0\xd2\xe6\x2b\xf6\x93\x16\xe5\xc3\x0c\x3d\xbe\x42\xcc\xf3\x4b\x8e\x74\x08\xe8\x20\xae\x19\x6a\xfe\xbd\xbf\x33\x4c\x77\x09\xde\x7d\x55\x61\xc0\x0d\xee\x70\xf3\x71\xf4\x0e\xe2\x2d\x65\x6a\xe8\xd3\x85\x0f\xba\x54\xba\xd4\x79\x46\x12\xed\xec\xb6\x4a\xc0\x66\x91\x52\xeb\xe2\xc2\xae\x8b\xf1\x49\x49\xd6\x96\x0f\xb2\xf1\x3b\x5e\x52\x77\x43\x5d\x89\xed\x0b\x1c\x72\x9a\x4e\x40\x41\x82\xc5\x88\xb0\xce\x60\xda\x3a\x42\x3e\x93\x8f\x04\xad\x1e\x3f\xb5\x1f\x95\x1f\xf8\x31\xf4\xdf\xdc\xb2\x6d\x76\xf8\xad\xbf\xc7\x50\x1a\x4b\xda\x4e\x42\x3d\xb4\x68\xa4\x33\x67\x47\xee\x6f\x77\x30\x92\x2c\x3a\xa8\x37\xe7\x8a\x8d\xa3\xd6\xfb\x07\xcb\xcf\x54\xf5\x09\xd7\xe6\xc2\x45\x53\x4e\xa4\xaf\xc7\xea\x0f\xda\x72\x78\x53\xf1\x8c\xd0\x1b\x9d\xac\x0f\x71\x8f\x81\x11\xd8\x93\x41\xde\xfc\x86\xd4\xa3\xd1\x70\xa6\xde\xe7\x04\xdd\x57\x04\x23\xa4\x22\x12\x9e\xde\x45\x29\x5f\xd6\x88\xc1\xb8\x3c\xf1\xb3\x07\x4b\x95\xc0\xae\xb7\x04\xeb\x84\xe2\xbd\xb3\x67\xc4\xbb\xcb\x46\xd4\x7c\x92\xb4\x16\xd6\xd2\xbd\x8e\xbf\x74\x6a\xad\xd3\x75\xca\xc7\x08\xa2\xb1\x22\xec\xa0\x43\xdb\x63\xb4\x91\xe2\x81\x9b\xd2\x37\xa6\x18\xc4\xc2\x8f\xa3\x06\xb0\x7c\x1c\xc8\x0d\xe7\xa5\x24\xe6\x03\x38\xce\xbf\xef\x60\x9c\xff\x1d\x66\xcc\x7a\x02\xc3\x0d\x87\xaa\x4f\x40\x71\x97\x63\x18\xfa\xde\xa0\xd6\xad\x8a\x88\xc4\x8f\x8a\xbb\x54\x34\xe5\xbf\xb1\x08\x2a\x32\xe5\x9e\xfa\x9f\xde\x85\x87\x15\xff\x81\xcb\xa9\xf6\xf3\xea\xc1\x78\xe3\x98\xb4\x41\x91\xbc\x94\xb4\x63\xea\x94\x6f\x7c\x82\xe2\x01\x65\xa4\x9b\x7e\xa7\x99\x70\x40\xdf\x63\xb8\x83\xd1\xed\xfe\x40\x92\xa2\x61\x7b\xfb\x75\xe5\x93\x06\xc5\xe7\xfa\xc6\x7f\xb3\x92\x63\x8f\xf8\xbd\x43\x25\xcc\x60\x6b\xf7\x05\x84\xd4\xbc\x4c\x57\x89\xc6\x73\xf1\x11\x5e\x43\xad\xcd\xf9\x0f\xd7\xb1\x81\xa2\x06\x1a\x0a\x54\xbe\x87\xf3\x55\x35\x9f\x52\xd4\x5b\x2a\x76\x76\x62\x76\xf5\x24\xa7\x58\x77\xcd\x1c\x65\x65\x72\x03\xaa\x01\x82\xda\x9e\xec\x72\xa2\x4f\x65\x31\x98\xc3\x74\x5f\xbc\x44\x04\x17\x4c\x4f\xc3\x1e\x0a\x4e\xa4\xd3\x70\x25\x8a\xe5\x63\x33\x97\x38\x3e\x89\xc8\x4b\x55\x0e\x3b\xcf\x0b\x21\xb2\x19\x54\xd4\x41\x01\x68\x81\xe5\x94\xe7\xa7\xf1\xdc\xd8\x75\xf9\xef\x87\x16\x4f\x99\xa1\x4c\x34\xad\x57\xbe\x01\xc4\x96\x55\x09\x39\x67\xbf\xfd\x16\x1f\xbd\x0e\x9d\xac\x28\xe7\x2b\x76\xb1\x0f\xff\x5e\xbc\xe3\x0a\xb5\xea\x45\x23\x2b\xa6\x73\x79\x0d\xe6\x37\x8d\xa8\x83\xde\x87\x02\x69\x3c\x50\x73\x57\x1c\xe2\x50\x20\x7d\x33\x90\xfc\xe0\x89\x43\xe2\xe7\x5f\x1c\x04\xd1\xa8\xe7\xbe\x00\xed\x0f\xdd\x15\x3c\xe3\x46\x60\x92\xc7\xff\xe6\x2a\xc0\x97\x0f\x34\x63\x7f\x5a\x3f\x3d\xac\x4f\x56\x09\x08\x2a\x93\xdd\x0f\x26\xe8\xab\xa1\xb8\x7c\xf2\xd6\xe0\xcf\xb9\x86\x78\x60\xa0\xf0\x7c\x73\x47\x80\xdd\x25\x98\x5e\x4b\xf5\x07\x2f\x88\xb2\xfc\xa1\x2a\xb7\x49\x63\xdb\x3c\x89\x0c\x06\xd7\xbd\xaa\x90\xd2\xc6\x20\x65\x70\x63\xf8\x39\x36\xff\x9b\xbc\xf9\x9f\x40\xfd\xe1\x1b\xaf\xf0\x59\xc7\xd3\xdc\xac\x93\xd8\x77\x89\x23\x80\x70\xdc\x09\x47\x1c\xb0\x73\x00\xea\xbd\x42\xb5\xfd\x9d\x4e\x10\xcd\x7e\x3f\xfb\x6f\x00\x00\x00\xff\xff\x2e\x08\x9b\xaf\xf3\x2b\x00\x00" func nonfungibletokenCdcBytes() ([]byte, error) { return bindataRead( @@ -129,7 +129,7 @@ func nonfungibletokenCdc() (*asset, error) { } info := bindataFileInfo{name: "NonFungibleToken.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0x1d, 0x84, 0xd5, 0xca, 0x2a, 0x89, 0xd9, 0xf0, 0x64, 0xef, 0xc4, 0xa, 0x8f, 0x18, 0x21, 0xa, 0x91, 0xdf, 0x39, 0x44, 0x89, 0x74, 0x8d, 0x6f, 0x7f, 0x74, 0xb9, 0x32, 0xe4, 0xcc, 0xd3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0x2b, 0x6d, 0x2, 0x8f, 0x22, 0x5a, 0x4f, 0x7, 0x9b, 0x41, 0x0, 0x70, 0xe1, 0x2e, 0x1, 0x54, 0xa2, 0x35, 0xdb, 0x35, 0x18, 0xfe, 0xae, 0x26, 0x56, 0xa0, 0x50, 0xd3, 0x6e, 0x66, 0x57}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 5fdcf67..b26e707 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -1,8 +1,8 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: // transactions/destroy_nft.cdc (1.22kB) -// transactions/generic_transfer_with_address.cdc (2.18kB) -// transactions/generic_transfer_with_paths.cdc (1.888kB) +// transactions/generic_transfer_with_address.cdc (2.061kB) +// transactions/generic_transfer_with_paths.cdc (1.769kB) // transactions/mint_nft.cdc (2.884kB) // transactions/nft-forwarding/change_forwarder_recipient.cdc (1.257kB) // transactions/nft-forwarding/create_forwarder.cdc (1.534kB) @@ -18,6 +18,7 @@ // transactions/scripts/get_nft_metadata.cdc (5.632kB) // transactions/scripts/get_nft_view.cdc (4.367kB) // transactions/scripts/get_views.cdc (890B) +// transactions/scripts/iterate_ids.cdc (794B) // transactions/setup_account.cdc (1.326kB) // transactions/setup_account_from_address.cdc (1.593kB) // transactions/setup_account_from_nft_reference.cdc (1.374kB) @@ -113,7 +114,7 @@ func transactionsDestroy_nftCdc() (*asset, error) { 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\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" +var _transactionsGeneric_transfer_with_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x6f\xea\x38\x10\xbf\xf3\x29\x66\x39\xb4\x89\xd4\xa6\x97\xd5\x1e\x22\x4a\xb7\x4b\x85\xd4\xc3\xa2\x55\x97\xf6\x9d\x1d\x7b\x02\x7e\x2f\xd8\x91\x3d\x81\x87\x2a\xbe\xfb\x93\xff\x24\x4d\x80\x96\x97\x03\x0a\xf1\xcc\xf8\xf7\x67\x66\xe4\xa6\xd6\x86\x60\xbc\xd0\x6a\xde\xa8\x95\x2c\x2a\x5c\xea\x1f\xa8\xc6\xa3\xf6\xe4\x5f\x24\x26\x18\xb1\x37\x89\x3b\x3b\x1e\x8d\xee\xee\xee\x60\xc6\x14\xd4\xcc\x5a\x90\x0a\x98\xda\x03\xd7\x8a\x0c\xe3\x04\x4c\x08\x83\xd6\x02\x53\x02\x14\xdb\xa0\x8f\x5e\xae\xa5\x85\x0a\xc9\xc2\x5e\x37\xc0\xd7\x5a\x5b\x04\x5a\x23\x90\xbb\xc9\x7f\xdc\x31\x45\x40\x1a\x2c\x2a\x01\x05\x72\xd6\xd8\x90\xeb\xc3\x0c\x53\x96\x71\x92\x5a\xc1\xca\x95\x71\x1f\x37\x11\x16\x94\x46\x6f\xfc\x97\xda\xe8\xad\x14\x28\x3a\x34\x99\xab\x30\xea\x65\x27\xa4\x73\x78\x0c\x10\x6f\x40\x8a\x1c\x5e\x9f\x15\xfd\xf5\xe7\x4d\x97\x12\x0f\x7b\x51\xed\xc9\x82\x6d\x30\x87\xff\xc9\x48\xb5\x4a\xe1\x7d\x34\x02\x00\xf0\xe4\x10\x16\xf3\x25\x18\xb4\xba\x31\xdc\x91\x82\x22\x62\x2e\xd1\x18\x14\x3e\xb2\x42\x02\xc2\x4d\xbd\x98\x2f\x73\xf8\xfb\xfd\x58\xee\x6c\x31\x5f\x1e\xba\x9a\x8b\xf9\x72\xa6\xab\x0a\x3d\xe8\x27\x47\xd2\x92\x69\xb8\x57\x68\x85\x04\x35\xa3\xb5\xf5\xc4\xbb\xda\x7c\x10\x9f\xc3\xc0\xb5\xec\xa4\x60\xb8\xaa\x36\x58\x33\x83\x89\x95\x2b\x85\x26\x07\xd6\xd0\x3a\xf9\x47\x1b\xa3\x77\x6f\xac\x6a\x30\x85\xab\x47\xce\x75\xa3\xa8\x63\x1c\x11\x86\x20\x60\x60\xb0\x44\x83\x2a\xf0\x76\x2e\xa8\x92\x3e\xda\x41\x60\x5d\xe9\x3d\x8a\xf6\xd0\xf5\x0c\x0a\x60\xa1\x68\x57\xd0\x11\x70\xfa\x55\x5b\x34\x2f\x58\xc2\xbd\x63\x19\x6f\x4e\x8e\xac\x49\xbb\x2c\xf7\x64\xed\xa9\xcd\x0a\x0f\x69\x72\x75\xa2\xed\x61\x9a\x28\x6f\x5e\xdf\xca\x61\x99\x87\x07\xa8\x99\x92\x3c\x19\xcf\x74\x53\x09\x50\x9a\xa0\xf8\x9c\xa2\x56\xb7\x65\xbc\x21\xf6\x70\x5b\x7a\x9c\x0e\x64\x7a\xf5\x8d\xce\x68\x58\xc3\x20\x19\x89\xdb\x30\x03\xa7\x5e\x6f\x25\xee\xa0\xab\x62\xb1\x2a\xb3\xa1\xbb\x70\xdf\x57\x2b\x8b\xef\xb3\x08\xc1\x39\x9e\xb4\xdd\xb8\xdc\xd7\x98\x83\x92\xd5\x8d\x2f\x1b\xfe\xba\xdf\xc9\x85\x06\x99\x26\x69\x0a\xcc\xfe\x71\xa9\x91\x1e\x2e\xea\x18\xe1\x7d\x45\xb6\xd4\xc6\x1f\xaf\xe4\x16\xd5\x25\x79\xfb\xfa\x7e\xee\x51\x68\xe9\x6b\xeb\x67\xf3\x43\xbe\x41\xcb\xed\x24\xad\x85\x61\xbb\xd0\x72\x21\x23\xb3\xa4\x0d\x5b\x61\xdb\x4e\x7e\x24\x4e\xa6\xf5\x5b\xcc\x4c\xe1\xb4\xdd\xb2\x0f\x86\x87\x69\x32\x90\xc7\x3d\x6e\x6a\xf3\x73\xae\xb6\x37\xff\xc7\x68\x3d\xc8\x4a\x7b\xb2\xc6\xa1\x00\xa1\xd1\x7a\x75\x5d\x12\x02\xeb\x51\x04\x5d\x7c\x47\xb7\x8a\x29\x08\x51\x23\x97\xa5\x44\xe1\xb7\x46\xbf\x3f\x3d\x86\xb8\x93\x60\x72\xdb\x97\x23\x6b\xdf\x93\xf6\xe5\xf9\x29\x07\x29\xc2\xd4\xc4\x45\x85\x3f\x91\x37\x84\xf0\xde\x77\xc4\xad\x27\x77\xad\x41\x2e\x6b\x89\x8a\x2c\xd4\x4d\x51\x49\xde\x0e\x7d\x84\x77\x34\xfb\x31\x78\x38\xf9\xa4\xd3\xf3\x6e\xc7\x8a\x27\xa6\x1b\xe4\x28\xb7\x68\xec\x67\x8e\xb7\x01\xc1\xf1\xee\xda\x8c\xb3\x9a\x15\xb2\x92\x24\xf1\x8b\x45\x92\xbd\xc4\xf4\xc3\x34\x39\x67\x60\x80\xe5\xfc\xfb\xed\xed\x72\x8e\x42\xc0\x74\x6d\x3b\xb4\x47\x4b\xe5\x09\x6b\x6d\x25\xb5\x03\x75\x4c\xbe\x0b\xed\x91\xcd\x44\xc8\x49\xfc\x38\xe5\x30\xb9\xed\x9b\xdf\xba\x7a\xf8\x15\x00\x00\xff\xff\x12\x96\x2e\xb2\x0d\x08\x00\x00" func transactionsGeneric_transfer_with_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -129,11 +130,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{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}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x10, 0xad, 0x8b, 0x10, 0xaa, 0xe5, 0xf0, 0x8c, 0xdd, 0xf6, 0xfd, 0xad, 0xd4, 0x30, 0xda, 0xe3, 0x64, 0xd8, 0x3f, 0xba, 0x56, 0x6e, 0xe3, 0x3e, 0xe6, 0xff, 0x84, 0xe2, 0xc0, 0x31, 0x8e}} return a, nil } -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" +var _transactionsGeneric_transfer_with_pathsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x94\x4b\x6f\xda\x40\x10\xc7\xef\x7c\x8a\x11\x87\xc4\x48\xc4\x5c\xaa\x1e\x50\x1e\x4d\x13\x21\xe5\x82\xa2\x84\xb6\xe7\x65\x77\x8c\x37\x31\xbb\xd6\xce\x38\x14\x45\x7c\xf7\x6a\x1f\x36\x26\x10\x55\x55\x7d\x5a\xdb\xf3\xfa\xff\xe6\x6f\xeb\x75\x6d\x1d\xc3\x70\x6e\xcd\xac\x31\x2b\xbd\xac\x70\x61\x5f\xd1\x0c\x07\x83\xc9\x64\x02\x77\xc2\x40\x2d\x88\x40\x1b\x10\x66\x0b\xc4\xd6\x89\x15\x42\x2d\xb8\x04\x61\x14\x38\x94\xa8\xdf\xd0\xc5\x27\xda\x10\xa3\x50\x60\x0b\x78\x69\x88\x81\x4b\x04\x85\x85\x68\x2a\xce\x43\xbd\x45\xa9\x09\x2a\x64\x82\xad\x6d\x40\x96\xd6\x12\x86\x28\xf6\x4d\xc3\xc3\x8d\x30\x0c\x6c\x81\xd0\x28\x10\x04\x1b\xac\xaa\x10\x22\x45\x2d\x96\xba\xd2\xbc\x3d\x8e\xd3\xfe\x18\x5a\x84\x36\xb7\x66\x9b\x2a\x86\xb1\xa4\x30\xb0\xc4\x20\x04\x43\x4d\x61\x40\xb8\x55\xb3\x46\xc3\x50\xa2\xc3\x31\x90\x85\x8d\xa8\xc2\x64\x54\xda\xa6\x52\xa1\x4e\x3c\x82\x2c\x51\xbe\xee\x33\xde\x44\xd5\x20\xf9\xde\x6b\xf1\x8a\x40\x8d\x8b\x1a\xb4\x61\x34\x0a\x55\xbf\xb5\xa6\xb6\xad\x36\x61\x3c\x76\xc2\x90\x90\xac\xad\xc9\xd8\x4e\xe1\x56\x29\x87\x44\x63\xd0\x6a\x0a\x3f\x1e\x0c\x7f\xfd\x32\x0e\x9a\xd0\x3d\x0a\x2e\x1f\x14\x1a\xd6\x85\x46\x37\x85\x67\x76\xda\xac\xc6\x1d\xf3\xd3\xef\x47\xf0\x3e\x18\x00\x00\x04\xdc\x08\xf3\xd9\x02\x1c\x92\x6d\x9c\xf4\x98\x3d\x88\x30\x43\x81\xce\xa1\x0a\x91\x15\x32\x30\xae\xeb\xf9\x6c\x31\x85\x6f\xef\x1f\xbd\x90\xcf\x67\x8b\x5d\xac\x59\x3b\xac\x85\xc3\x8c\xf4\xca\xf8\x96\xa2\xe1\x32\xfb\x6e\x9d\xb3\x9b\x9f\x9e\xca\x08\xce\x6e\xa5\xb4\x8d\xe1\x6e\x8c\xb6\x41\xb2\x8e\x1f\x1a\xae\xe0\x79\x7f\x97\xe9\x9e\x86\x53\xca\x47\x5d\x1d\x7f\xdd\xdc\x40\x2d\x8c\x96\xd9\xf0\x2e\x2c\xc7\x58\x06\x69\x0d\xb1\x6b\x24\x83\x38\xb4\x68\xe1\xec\x3a\xec\xa6\x76\xf6\x4d\xfb\xdd\xc4\xad\x74\xb5\x81\x02\xb4\xe1\x68\x3f\xec\x64\x02\xcb\xa0\x08\x04\x38\x2c\xd0\xa1\x89\xe4\x7c\x9d\x28\xfc\x9c\x02\x56\x69\xab\x0a\xc3\x2a\x0f\x94\x6e\x34\x97\xca\x89\xcd\x13\x16\x70\x95\x32\xf2\x34\x56\x1e\x4b\x5f\x06\x70\x47\xa0\x7f\xa5\xcc\x11\x9c\x1d\x6f\xe1\xae\xeb\xb6\xbb\xce\x0e\x90\xf8\xcb\x2b\x9d\xf6\x21\x1f\x44\x8c\x7a\xd8\xd2\x82\x40\x59\xa4\x40\xcf\x27\x21\x88\x9e\x1c\xb0\xcb\x17\xf4\x34\xe3\x27\x4c\x35\x4a\x4f\x2b\xd2\xeb\xb3\x22\xac\x8a\x3c\x59\x07\x2e\x2f\xfa\xd2\xf3\xf6\x9c\xb5\x87\x87\xfb\x29\x68\x15\xb7\x99\xfc\x84\xbf\x51\x36\x8c\xf0\x7e\x00\xb0\x6e\x96\x95\x96\xc9\x29\x8f\xdd\xcd\x81\x51\x4e\x7f\x04\xff\x66\x95\xd8\xe7\xbf\x9c\xb2\xc2\x88\xc8\xa1\xd4\xb5\x46\xc3\xd4\x56\x15\x09\x73\x44\x79\xa0\xaf\x0b\x86\x2b\x5f\x20\x2d\x24\x63\xfb\x89\x0b\x53\xc5\x23\x33\xb6\x0c\xe8\x33\x27\xb6\x01\xd1\x89\x5d\xdb\xbc\xfb\x95\x6a\xa4\xd6\x91\x27\x1c\xf7\x94\xd2\x77\xd7\xd9\x7e\x25\x7f\x47\x9c\xe6\x3e\x35\x6e\xec\x7f\x4e\xdd\x64\x1f\x70\xde\x63\x6d\x49\x47\xa4\xde\x52\x1f\x84\x76\xa1\x3d\x61\xb9\x8a\x39\x59\xf8\xeb\x4e\xe1\xf2\xa2\x6f\xca\xd6\x6d\xbb\x3f\x01\x00\x00\xff\xff\x6c\xca\xb1\x6c\xe9\x06\x00\x00" func transactionsGeneric_transfer_with_pathsCdcBytes() ([]byte, error) { return bindataRead( @@ -149,7 +150,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{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}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0x65, 0x69, 0x6b, 0x98, 0x37, 0xef, 0x86, 0xc4, 0x16, 0x94, 0x5, 0x98, 0xad, 0x68, 0x69, 0x48, 0x0, 0xdb, 0xd6, 0xb7, 0xda, 0x10, 0x95, 0xcc, 0x52, 0x85, 0x67, 0x6b, 0xbd, 0x3e, 0xa8}} return a, nil } @@ -453,6 +454,26 @@ func transactionsScriptsGet_viewsCdc() (*asset, error) { return a, nil } +var _transactionsScriptsIterate_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6b\xe3\x30\x10\x85\xef\xfe\x15\xd3\x1e\x8a\x05\xc5\xa7\x65\x0f\x22\x29\x9b\xee\x6e\x20\x97\xb0\x90\xec\x5e\x4a\x0f\x8a\x3d\x8e\xc5\x2a\x33\x46\x1a\x51\x4a\xc9\x7f\x5f\x54\x25\x75\xb2\xf6\xa1\x3a\x18\x21\xbf\x79\x33\xef\x93\xec\xa1\x67\x2f\x70\xbb\x66\x5a\x46\xda\xdb\x9d\xc3\x2d\xff\x45\xba\x2d\x0a\x53\xd7\x18\x42\x69\x9c\x53\xd0\x46\x82\x83\xb1\x54\xf2\x0b\xa1\x5f\x34\x8d\xc7\x10\x34\x9c\x36\xf7\xe0\xec\xc1\x8a\x86\x15\x89\x7a\xff\xc2\x5b\x51\x00\x00\x38\x14\xf0\x18\x7a\xa6\x80\x1a\x9e\xee\xde\xfe\xef\x53\xad\x97\xdb\xe3\x33\xcc\xe1\xe9\x79\xa8\x30\x75\xcd\x91\x04\xe6\xb0\x47\x59\x44\xe9\x16\xf9\x60\x66\xa2\x74\xe5\x23\x7b\xcf\x2f\x7f\x8c\x8b\xa8\xe0\xee\xf4\xeb\xe1\x6a\x32\x95\xbd\x4e\x3e\x55\x10\xf6\x66\x8f\x55\xcb\xfe\xa7\xa9\xbb\x8d\xb0\xc7\xa6\x4c\x99\xca\xde\x48\xa7\x61\x93\x05\xbf\x8c\x74\xf7\x20\xaf\x3d\x6a\xd8\xbe\xf6\xa8\x34\x3c\x32\xbb\x73\x98\xb4\x6c\x0b\x37\x49\x50\xd9\xb0\x89\xbb\xb4\x2b\xb9\xcd\xea\xd9\xb7\x71\xba\xef\xec\x1c\xd6\x62\x99\x8e\x0f\xa5\x52\x97\x4e\x69\x79\x94\xe8\x09\xc4\x47\xfc\x38\x3f\x0e\x92\xc4\xe2\x34\xfb\x60\x04\xf3\x51\xae\xdd\x3b\x91\xd9\x04\xdd\xab\xfe\xad\xe7\x83\x86\x94\x58\xdd\x0c\x4d\x46\x0d\xce\x98\x56\x3f\x32\x22\x6a\x65\xd5\x68\xf8\xbd\x22\xf9\xfa\x65\x02\xc9\x79\x52\x6a\xd3\x8d\x8d\xed\xf2\x74\xeb\xe5\x36\x3b\x5d\xf6\xce\x0c\xf2\xf3\xa8\x4c\xdf\x23\x35\x49\xa4\x26\x29\x7d\x08\x1d\xd2\x5e\x3a\x98\xe5\x57\x37\x80\xbb\x28\xfb\x44\xc9\x59\x3e\x2d\x2d\x8e\xff\x02\x00\x00\xff\xff\xcd\x8e\xcf\xa2\x1a\x03\x00\x00" + +func transactionsScriptsIterate_idsCdcBytes() ([]byte, error) { + return bindataRead( + _transactionsScriptsIterate_idsCdc, + "transactions/scripts/iterate_ids.cdc", + ) +} + +func transactionsScriptsIterate_idsCdc() (*asset, error) { + bytes, err := transactionsScriptsIterate_idsCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "transactions/scripts/iterate_ids.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0xbe, 0x46, 0xc6, 0xde, 0x52, 0x17, 0x1b, 0xfb, 0x8f, 0x29, 0xcc, 0x73, 0xa, 0x29, 0x5d, 0xd4, 0xe9, 0xc8, 0x90, 0xb2, 0xc0, 0xbc, 0xeb, 0xb4, 0xd7, 0x92, 0xd3, 0xa1, 0x9f, 0x25, 0xa7}} + return a, nil +} + var _transactionsSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x41\x6f\x1a\x31\x10\x85\xef\xfb\x2b\x5e\x38\x44\x8b\x44\xe0\x1e\x91\xa4\x2d\x0d\x52\x0f\x45\x51\xb2\xcd\x7d\x58\x86\xac\x55\x63\x5b\xf6\x18\x8a\xa2\xfc\xf7\xca\xbb\x61\xd9\x25\x34\xf5\x01\xb1\xf6\xcc\xf8\x9b\xf7\xc6\x93\xc9\x04\x45\xa5\x02\xc4\x93\x09\x54\x8a\xb2\x06\x2a\x60\x57\x91\x80\x0c\xa8\x2c\x6d\x34\x82\x9d\x8d\x7a\x05\x1f\x4d\x96\x32\xc4\x22\xb0\x40\x49\x60\xbd\x46\x74\x69\xc3\x73\xc9\x6a\xcb\x58\xcc\x8b\x90\x65\x6a\xe3\xac\x17\x0c\x16\xd6\xcc\xa3\x79\x51\x4b\xcd\x85\xfd\xcd\x66\xd0\x9e\xdc\xff\xa1\x8d\xd3\xbc\x98\x17\xc7\xbd\x9f\x2c\xb4\x22\xa1\x67\xc5\xbb\x30\xc8\xb2\x2e\xd4\x6b\x96\x01\x80\xf3\xec\xc8\x73\x1e\xd4\x8b\x61\x7f\x0d\x8a\x52\xe5\xdf\xac\xf7\x76\xf7\x4c\x3a\xf2\x08\x3f\x42\x88\xfc\x24\xd6\xd3\x0b\xcf\xc8\xd1\x52\x69\x25\xfb\x99\x35\xe2\xad\xd6\xec\x47\x78\x88\x4b\xad\x42\x75\x3c\x1c\xe1\x89\xb6\xfc\x9e\xff\xcb\xb8\xd3\xf3\x21\x2e\xbf\x36\x42\x0c\xf1\x5a\x63\xa4\xd5\xfe\xd1\x2c\x28\x53\xed\x9a\xf4\x3b\x09\xe1\x06\xc7\xfe\xc6\x9e\x83\xd5\x5b\xae\x11\xa8\x94\xd4\x5d\x9e\xf6\xa2\x2f\xb9\xd8\x3b\xbe\x86\x51\x7a\x84\xad\xe2\x5d\xf3\x99\x7e\xa7\x3d\x31\xc6\x8b\x79\x31\xeb\x5d\x71\x9b\x0f\x87\xa0\x70\x81\xff\xc4\xdd\xb5\x98\x69\xdd\xdd\xc1\x91\x51\x65\x3e\x48\xe1\x8f\x0d\x98\xc7\xca\x72\x80\xb1\x82\x77\x54\x7c\x28\x53\xd3\x0d\x86\x59\x5b\x6d\x32\xc1\x23\x4b\xf4\x06\x4c\x5e\xef\xa1\xd6\x90\x8a\xdb\x81\x21\xed\x99\x56\x7b\x54\x14\x40\x1d\x75\xda\x7c\xb5\x46\xe3\xe1\x38\x34\x5e\x8d\x97\xb5\x8b\xd3\xcb\x8e\x72\x47\x86\xdb\x7c\xed\xed\xe6\xfa\x44\xe7\x43\xee\x03\x49\x35\xc4\xc5\x4d\x12\xb2\xe3\x50\x5a\xbe\x86\x6c\xb7\xde\x7a\x1d\xcc\x3c\x93\x30\x08\x86\x77\xe0\x8d\x93\xfd\x39\xd4\xbe\xbf\x98\x5e\x75\xcd\x2d\xeb\x12\xf7\x29\xf7\x48\x9b\x9b\xb5\x74\xac\xfc\xd2\x89\x5f\xcc\x8b\x64\x5d\x0f\x23\xd0\x96\xa1\x24\x3d\xa3\x8e\x86\x6d\xc4\x89\x4e\x29\x3a\x9f\x5e\x1d\x89\x46\x10\xfb\xa9\x32\xbd\xcb\xca\x43\xcf\xf5\x98\x97\x28\xdb\x31\xc7\xda\xfa\x1a\xe0\x8c\x06\xef\x0c\x6d\xb0\xe2\x30\x8e\x87\x97\x92\x9f\xdc\xdd\x54\x6e\xae\x3e\x2f\xe2\x8c\x1c\x6e\xce\x16\x3d\x74\xa9\xd2\x33\xfe\xe7\x30\x7c\xd6\xec\x67\xc8\x1f\x81\x67\xe4\x46\x20\xf9\xa0\xdf\x69\x0f\x6f\xd9\x5b\xf6\x37\x00\x00\xff\xff\xa7\x28\x04\xb0\x2e\x05\x00\x00" func transactionsSetup_accountCdcBytes() ([]byte, error) { @@ -682,6 +703,7 @@ var _bindata = map[string]func() (*asset, error){ "transactions/scripts/get_nft_metadata.cdc": transactionsScriptsGet_nft_metadataCdc, "transactions/scripts/get_nft_view.cdc": transactionsScriptsGet_nft_viewCdc, "transactions/scripts/get_views.cdc": transactionsScriptsGet_viewsCdc, + "transactions/scripts/iterate_ids.cdc": transactionsScriptsIterate_idsCdc, "transactions/setup_account.cdc": transactionsSetup_accountCdc, "transactions/setup_account_from_address.cdc": transactionsSetup_account_from_addressCdc, "transactions/setup_account_from_nft_reference.cdc": transactionsSetup_account_from_nft_referenceCdc, @@ -756,6 +778,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "get_nft_metadata.cdc": {transactionsScriptsGet_nft_metadataCdc, map[string]*bintree{}}, "get_nft_view.cdc": {transactionsScriptsGet_nft_viewCdc, map[string]*bintree{}}, "get_views.cdc": {transactionsScriptsGet_viewsCdc, map[string]*bintree{}}, + "iterate_ids.cdc": {transactionsScriptsIterate_idsCdc, map[string]*bintree{}}, }}, "setup_account.cdc": {transactionsSetup_accountCdc, map[string]*bintree{}}, "setup_account_from_address.cdc": {transactionsSetup_account_from_addressCdc, map[string]*bintree{}}, diff --git a/tests/example_nft_test.cdc b/tests/example_nft_test.cdc index 5a2c5b1..93c97c0 100644 --- a/tests/example_nft_test.cdc +++ b/tests/example_nft_test.cdc @@ -247,6 +247,18 @@ fun testGetCollectionLength() { Test.assertEqual(1, collectionLength) } +access(all) +fun testGetIterator() { + let scriptResult = executeScript( + "../transactions/scripts/iterate_ids.cdc", + [admin.address, 10] + ) + Test.expect(scriptResult, Test.beSucceeded()) + + let nftRefArrayLength = scriptResult.returnValue! as! Int + Test.assertEqual(1, nftRefArrayLength) +} + access(all) fun testGetContractStoragePath() { let scriptResult = executeScript( diff --git a/transactions/generic_transfer_with_address.cdc b/transactions/generic_transfer_with_address.cdc index 9941136..781722b 100644 --- a/transactions/generic_transfer_with_address.cdc +++ b/transactions/generic_transfer_with_address.cdc @@ -38,10 +38,7 @@ transaction(to: Address, id: UInt64, contractAddress: Address, contractName: Str let recipient = getAccount(to) // borrow a public reference to the receivers collection - let receiverCap = recipient.capabilities.get<&{NonFungibleToken.Receiver}>(self.collectionData.publicPath) - ?? panic("Could not get the recipient's Receiver Capability") - - let receiverRef = receiverCap.borrow() + let receiverRef = recipient.capabilities.borrow<&{NonFungibleToken.Receiver}>(self.collectionData.publicPath) ?? panic("Could not borrow reference to the recipient's receiver") // Deposit the NFT to the receiver diff --git a/transactions/generic_transfer_with_paths.cdc b/transactions/generic_transfer_with_paths.cdc index f4efd3d..6e0f796 100644 --- a/transactions/generic_transfer_with_paths.cdc +++ b/transactions/generic_transfer_with_paths.cdc @@ -32,10 +32,7 @@ transaction(to: Address, id: UInt64, senderPathIdentifier: String, receiverPathI let recipient = getAccount(to) // borrow a public reference to the receivers collection - let receiverCap = recipient.capabilities.get<&{NonFungibleToken.Receiver}>(publicPath) - ?? panic("Could not get the recipient's Receiver Capability") - - let receiverRef = receiverCap.borrow() + let receiverRef = recipient.capabilities.borrow<&{NonFungibleToken.Receiver}>(publicPath) ?? panic("Could not borrow reference to the recipient's receiver") // Deposit the NFT to the receiver diff --git a/transactions/scripts/iterate_ids.cdc b/transactions/scripts/iterate_ids.cdc new file mode 100644 index 0000000..c457889 --- /dev/null +++ b/transactions/scripts/iterate_ids.cdc @@ -0,0 +1,31 @@ +import "NonFungibleToken" + +access(all) fun main(ownerAddress: Address, limit: Int): Int { + + let response: [&{NonFungibleToken.NFT}] = [] + + let account = getAuthAccount(ownerAddress) + + account.storage.forEachStored(fun (path: StoragePath, type: Type): Bool { + + if !type.isSubtype(of: Type<@{NonFungibleToken.Collection}>()) { + + return true + } + + let storageCollection = account.storage.borrow<&{NonFungibleToken.Collection}>(from: path)! + + storageCollection.forEachID(fun (nftId: UInt64): Bool { + + let nft = storageCollection.borrowNFT(nftId)! + + response.append(nft) + + return response.length < limit + }) + + return response.length < limit + }) + + return response.length +} \ No newline at end of file