From f90805445bfa6803a88bd48050d149c85f1d60f5 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 26 Jul 2023 13:39:18 -0500 Subject: [PATCH] remove AnyResource --- contracts/ExampleToken-v2.cdc | 2 +- contracts/FungibleToken-v2.cdc | 12 +++++------ contracts/FungibleTokenMetadataViews.cdc | 4 ++-- contracts/MultipleVaults.cdc | 2 +- lib/go/contracts/internal/assets/assets.go | 24 +++++++++++----------- 5 files changed, 22 insertions(+), 22 deletions(-) diff --git a/contracts/ExampleToken-v2.cdc b/contracts/ExampleToken-v2.cdc index 23a804b..e63d2a6 100644 --- a/contracts/ExampleToken-v2.cdc +++ b/contracts/ExampleToken-v2.cdc @@ -149,7 +149,7 @@ access(all) contract ExampleToken: ViewResolver, MultipleVaults { /// was a temporary holder of the tokens. The Vault's balance has /// been consumed and therefore can be destroyed. /// - access(all) fun deposit(from: @AnyResource{FungibleToken.Vault}) { + access(all) fun deposit(from: @{FungibleToken.Vault}) { let vault <- from as! @ExampleToken.Vault self.balance = self.balance + vault.balance vault.balance = 0.0 diff --git a/contracts/FungibleToken-v2.cdc b/contracts/FungibleToken-v2.cdc index 32a49b3..5902ebd 100644 --- a/contracts/FungibleToken-v2.cdc +++ b/contracts/FungibleToken-v2.cdc @@ -102,7 +102,7 @@ access(all) contract FungibleToken { /// capability that allows all users to access the provider /// resource through a reference. /// - access(Withdrawable) fun withdraw(amount: UFix64): @AnyResource{Vault} { + access(Withdrawable) fun withdraw(amount: UFix64): @{Vault} { post { // `result` refers to the return value result.getBalance() == amount: @@ -126,7 +126,7 @@ access(all) contract FungibleToken { /// deposit takes a Vault and deposits it into the implementing resource type /// - access(all) fun deposit(from: @AnyResource{Vault}) + access(all) fun deposit(from: @{Vault}) /// getSupportedVaultTypes optionally returns a list of vault types that this receiver accepts access(all) view fun getSupportedVaultTypes(): {Type: Bool} @@ -181,7 +181,7 @@ access(all) contract FungibleToken { access(all) view fun getSupportedVaultTypes(): {Type: Bool} { // Below check is implemented to make sure that run-time type would // only get returned when the parent resource conforms with `FungibleToken.Vault`. - if self.getType().isSubtype(of: Type<@AnyResource{FungibleToken.Vault}>()) { + if self.getType().isSubtype(of: Type<@{FungibleToken.Vault}>()) { return {self.getType(): true} } else { // Return an empty dictionary as the default value for resource who don't @@ -210,7 +210,7 @@ access(all) contract FungibleToken { /// withdraw subtracts `amount` from the Vault's balance /// and returns a new Vault with the subtracted balance /// - access(Withdrawable) fun withdraw(amount: UFix64): @AnyResource{Vault} { + access(Withdrawable) fun withdraw(amount: UFix64): @{Vault} { pre { self.getBalance() >= amount: "Amount withdrawn must be less than or equal than the balance of the Vault" @@ -226,7 +226,7 @@ access(all) contract FungibleToken { /// deposit takes a Vault and adds its balance to the balance of this Vault /// - access(all) fun deposit(from: @AnyResource{FungibleToken.Vault}) { + access(all) fun deposit(from: @{FungibleToken.Vault}) { // Assert that the concrete type of the deposited vault is the same // as the vault that is accepting the deposit pre { @@ -252,7 +252,7 @@ access(all) contract FungibleToken { /// createEmptyVault allows any user to create a new Vault that has a zero balance /// - access(all) fun createEmptyVault(): @AnyResource{Vault} { + access(all) fun createEmptyVault(): @{Vault} { post { result.getBalance() == 0.0: "The newly created Vault must have zero balance" } diff --git a/contracts/FungibleTokenMetadataViews.cdc b/contracts/FungibleTokenMetadataViews.cdc index d0a0c92..b80ff1c 100644 --- a/contracts/FungibleTokenMetadataViews.cdc +++ b/contracts/FungibleTokenMetadataViews.cdc @@ -139,7 +139,7 @@ access(all) contract FungibleTokenMetadataViews { /// Function that allows creation of an empty FT vault that is intended /// to store the funds. - access(all) let createEmptyVault: fun(): @AnyResource{FungibleToken.Vault} + access(all) let createEmptyVault: fun(): @{FungibleToken.Vault} view init( storagePath: StoragePath, @@ -149,7 +149,7 @@ access(all) contract FungibleTokenMetadataViews { receiverLinkedType: Type, metadataLinkedType: Type, providerLinkedType: Type, - createEmptyVaultFunction: fun(): @AnyResource{FungibleToken.Vault} + createEmptyVaultFunction: fun(): @{FungibleToken.Vault} ) { pre { receiverLinkedType.isSubtype(of: Type<&{FungibleToken.Receiver}>()): "Receiver public type must include FungibleToken.Receiver." diff --git a/contracts/MultipleVaults.cdc b/contracts/MultipleVaults.cdc index 5d36fed..f465ae1 100644 --- a/contracts/MultipleVaults.cdc +++ b/contracts/MultipleVaults.cdc @@ -16,7 +16,7 @@ access(all) contract interface MultipleVaults { /// createEmptyVault allows any user to create a new Vault that has a zero balance /// - access(all) fun createEmptyVault(vaultType: Type): @AnyResource{FungibleToken.Vault} { + access(all) fun createEmptyVault(vaultType: Type): @{FungibleToken.Vault} { post { result.getBalance() == 0.0: "The newly created Vault must have zero balance" } diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 7f21a8f..dc6cb6b 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,12 +1,12 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// ../../../contracts/ExampleToken-v2.cdc (10.65kB) +// ../../../contracts/ExampleToken-v2.cdc (10.639kB) // ../../../contracts/ExampleToken.cdc (12.028kB) -// ../../../contracts/FungibleToken-v2.cdc (11.284kB) +// ../../../contracts/FungibleToken-v2.cdc (11.218kB) // ../../../contracts/FungibleToken.cdc (10.016kB) -// ../../../contracts/FungibleTokenMetadataViews.cdc (7.507kB) +// ../../../contracts/FungibleTokenMetadataViews.cdc (7.485kB) // ../../../contracts/FungibleTokenSwitchboard.cdc (17.818kB) -// ../../../contracts/MultipleVaults.cdc (789B) +// ../../../contracts/MultipleVaults.cdc (778B) // ../../../contracts/utility/MetadataViews.cdc (26.308kB) // ../../../contracts/utility/NonFungibleToken.cdc (4.828kB) // ../../../contracts/utility/PrivateReceiverForwarder.cdc (2.592kB) @@ -81,7 +81,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _exampletokenV2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x5a\x5f\x6f\xdb\x38\x12\x7f\xcf\xa7\x98\xfa\x80\x3d\x1b\x4d\x9c\xb4\xdb\xf6\x76\x8d\xb8\x69\xb6\x6d\xee\x0e\xd8\x02\x45\x9b\xed\x3e\x14\x45\x43\x4b\x63\x9b\x17\x89\x14\x48\xca\x8e\x37\xc8\x77\x3f\xf0\x9f\x44\xca\x94\xe3\xa6\xdd\xbc\xc4\x96\x38\xc3\xf9\xf3\x9b\xe1\xcc\xd0\xb4\xac\xb8\x50\x70\x51\xb3\x05\x9d\x15\x78\xc9\xaf\x91\xc1\x5c\xf0\x12\x06\xd1\xb3\xa3\xd5\xd3\xc1\x81\x5b\xfc\x0e\x15\xc9\x89\x22\x9f\x28\xae\xa5\x5b\x1c\x3d\x6b\x56\x46\x2c\x52\x64\xfd\x0b\xda\xdd\xea\x42\xd1\xaa\xc0\x4f\xa4\x2e\x54\xb3\x5d\xf4\x70\x9c\xe5\x59\xb3\x5e\x53\x7f\x40\xc9\x8b\x15\x0a\xb7\x3a\x7c\x64\xd7\x1e\x90\x2c\x43\x29\x87\xa4\x28\x46\x90\x71\xa6\x04\xc9\x14\xbc\xbd\x21\x65\xe5\x84\x99\x44\x8c\x0e\xbb\x62\xdc\x1e\x1c\x00\x00\x1c\x1f\x1f\xc3\xe5\x12\x01\x57\xc8\x14\xa8\x25\x51\x40\x25\x60\x49\x95\xc2\x1c\xd6\x4b\x64\xc0\x70\x0d\x4a\x73\x94\x40\x04\x42\x49\x99\xc2\xdc\x10\x87\x32\x58\x06\x66\x67\xf9\xce\x2c\x19\x92\x92\xd7\x4c\x4d\xe0\x8f\x0b\x7a\xf3\xe2\xd9\x21\xa8\x4d\x85\x13\xf8\xa8\x04\x65\x8b\x51\xb0\x3d\x57\xa4\x00\x59\x57\x55\xb1\x01\x3e\x8f\x94\x90\x40\x19\xe0\x0d\x95\x0a\x59\x86\xe1\xa6\x5e\xe7\x11\xac\x88\x00\xa5\x79\x7c\x34\x2c\x26\x70\x7b\x69\x36\xb2\xdb\xde\xb5\x1b\x9d\xe7\x25\x65\xf0\x9e\xa8\xe5\x96\xf4\x05\x2a\xfb\xfa\xa3\xe2\x82\x2c\x50\x2f\xd2\xa2\x36\x5f\x5a\x2e\x17\x35\xcb\x14\xe5\x0c\x14\x07\x81\xaa\x16\x0c\xd4\x12\x8d\x72\xd2\x1a\x50\x7f\x6d\x5c\x42\xb5\x2e\x25\x32\x25\xb7\x36\x5d\x51\x5c\xc3\xbc\x66\xb0\x40\x65\xbc\xa2\xe5\x96\xc3\xd1\x04\x3e\xeb\x4f\x5f\xe0\xd6\x90\xe8\x3f\x2d\x9f\xde\xe1\x5c\x08\xb2\x69\xde\x4f\xed\x87\xd3\x57\xa1\xc9\xc6\x86\xd5\xcb\xe1\xe8\x4b\x43\xed\xc5\xf4\x0c\xcc\x8b\xc0\x30\x86\xc2\x7f\x6b\x9e\xbe\x25\xd9\x12\x6a\x89\x02\xa4\xe2\x02\x25\x10\x06\x94\x49\x45\x58\x86\xda\x4f\x9c\x15\x1b\xa3\xab\x21\xd7\x8e\x52\x4b\xa4\x76\x35\x59\x60\x04\xaf\xb9\x33\x9a\x74\xcb\x1c\x0d\x61\x39\x2c\xf8\x0a\x05\xc3\x1c\x66\x96\x5b\x25\xd0\x3c\xaf\xb8\x54\xda\x8c\x39\x35\x84\x0d\x3b\xca\x3a\xc1\x6e\x40\xaa\x96\xb8\x31\xf0\xcc\x48\x51\x60\x3e\x8e\x76\xcf\x96\x98\x5d\x4b\x58\x92\xaa\x42\x06\x44\x81\xa8\x99\xa2\x25\x1a\x52\xd4\x61\x46\x1a\x09\x35\xfc\x3b\x3c\x1a\x5e\x3a\x98\x6a\x91\xa1\x5e\xc1\xac\xfe\x33\x84\x4c\x20\xd1\xc1\xe2\x34\xd3\x9e\xc7\x1b\xa5\x2d\x14\x01\xc1\x43\x63\xd3\xb0\xd3\xe2\xe6\x38\xa7\xcc\x10\x1f\x82\xe4\xfa\xbd\x40\x2d\x02\xe3\xb0\x26\x1b\x98\x73\x2d\x5b\x49\x0a\x9a\x51\x5e\x4b\xeb\x0e\xc5\xdd\x9e\xd6\x8a\xad\x69\x78\xed\xb6\xa5\x0c\x08\x15\x63\x38\x07\x59\x61\x46\x49\x01\x26\x24\x05\x08\xa7\x01\x30\xc4\x5c\x6a\x4e\xb3\x56\x06\xc5\x4d\x70\x37\xec\xda\xc0\x8f\x4d\x11\x62\xb8\x61\x68\x44\x99\xc4\xae\xb1\x50\xf4\xa9\x26\xf4\x88\x89\x57\x98\x91\xc2\x83\x49\x2d\xa9\x84\x55\x83\xc3\xad\x50\x21\xc2\xaf\xf6\x81\x7d\xd0\x5d\x28\xb1\x98\xdb\x95\xb2\x2f\x88\x7b\x29\xaa\x7a\x56\xd0\xcc\x12\xbc\x6f\x3e\xc7\x72\x7f\x30\x51\x24\x8d\x57\xdd\x0e\x50\x11\xb5\xd4\x28\x12\x68\x1e\x1b\x05\x40\x2e\x79\x5d\xe4\x3a\xdc\xa8\x46\x92\x01\x89\x09\xa1\x3c\xad\x5b\x90\x06\xde\xe0\x5c\xb3\x08\x64\xd6\xe9\x20\xf8\x7a\x16\x24\x85\x20\xb4\xb5\x26\x63\x99\xd0\xf4\xae\x5f\x07\xab\x73\xac\x82\x77\x82\xd7\x61\x49\x56\x08\xc4\x2f\xcd\x48\x45\x66\xb4\xa0\x6a\xb3\xaf\x22\xad\x2d\xb5\x1e\xed\xb7\x5d\x6a\xb4\xbe\x48\x69\xd1\x9b\x40\xf5\x99\x9b\xcc\x9d\x01\x7f\x9b\x2e\xfb\xcf\xec\xf1\xc5\xa5\xfe\xff\x72\x38\x3a\x8c\xc8\xfd\xdf\xfd\xe4\x6f\xa8\xac\x0a\xb2\xf9\x0e\x0e\x26\x66\xde\x10\x45\xa2\x14\xde\x63\x01\xad\xbc\xb0\x47\xbc\xa6\x1f\x7e\x35\x36\x99\x98\x6d\x46\x13\x38\x67\x9b\x8f\x4a\xd4\x99\xea\xda\x5b\xae\xa9\xca\x96\xd6\x80\xb7\x5b\x82\x66\x44\xe2\x3e\x92\x5a\x53\x4d\x92\x8a\x3a\x8b\xdf\xcb\x60\x98\xa4\xd6\x7f\x73\xe5\x8c\x39\xb1\xb8\x08\xf5\xfc\x16\x47\x8c\x80\xc8\x47\xbb\x05\x71\x8b\xcf\xd2\x3e\xb3\xc2\x34\x7e\x79\x90\x38\xa1\x57\xf7\x10\xa8\x59\x7e\x96\x94\x68\xf4\x50\x97\xb5\x56\x49\x7b\x4d\xd7\x19\x25\xe6\x94\xc0\x34\xae\x92\xc7\xef\xf4\xd3\x7e\x67\x19\x1b\xd1\x02\x27\x1d\xb2\xff\x5c\x5e\xbe\xbf\xa0\x05\xee\xa6\xac\x45\x31\x81\xc1\x52\xa9\x4a\x4e\x8e\x8f\x89\x94\xa8\xe4\x78\x8d\x33\x49\x15\x1e\x69\xb6\x72\x9c\xf1\xf2\xf8\xf9\xfc\xc5\xd3\x5f\x9f\x65\x27\xd9\xbf\xc8\x2f\x59\x9e\xbf\x78\xf6\xf3\xec\x49\xf6\xcb\xd3\x93\xce\x0b\xf2\xfc\x79\x36\x7b\x92\xfd\xfa\xf3\x8b\xaf\x17\x05\x5f\x7f\xfd\x93\x8b\xbc\x24\xe2\x7a\x2c\x57\x8b\x41\xaf\x1c\x3d\x01\xab\xff\x8c\x45\x6c\x51\x39\xa0\x25\x59\xe0\xb1\x5c\x2d\x1e\xdf\x94\x45\x9a\xdb\xb6\x77\x22\xd3\xca\xb4\x6d\xe5\xf0\xb3\x79\xfd\x25\x4d\xbe\x4f\x3c\x39\xef\xf6\xdb\x9a\x91\x52\xeb\xe0\xca\xc5\x86\x99\x2d\xdb\x07\xfd\x06\x90\x9b\x72\xc6\xb5\x8b\xde\x5e\x5c\xee\x58\x96\xa3\xcc\x04\xad\x74\x19\x35\x81\xc1\xa5\x3e\x4d\xe6\x7e\x0b\x53\x48\xe8\xca\xa6\x96\x98\x03\x31\xd5\x24\x3a\x39\x14\x87\x25\x16\x15\x6c\x78\x0d\x39\xae\xb0\xe0\xe6\xb3\x00\xa6\x0b\xa9\x8b\x4b\xf8\x07\x67\xda\x93\xe3\x1d\x7b\xe3\x8d\x42\xc1\x48\xf1\xc7\x87\xdf\xbb\x18\x7c\xdb\xbe\x1a\x36\x20\x73\x7b\x1f\xcd\xd5\x98\xb3\xb9\x66\xce\xc5\x62\xb0\x03\x04\x05\x5f\x70\x39\x71\x2e\xdc\x61\x2a\xae\xeb\x2d\x39\x49\xa4\xd5\xf0\x6f\xa0\xd6\xba\xc5\x12\x83\xbd\x84\x75\x8b\x4d\x10\x68\x59\xbf\xce\x0a\x9e\x5d\x67\x4b\x42\xd9\x20\x0d\x17\x30\x67\x46\xea\xe9\x83\x73\x47\x98\xc2\xfa\xb3\x87\x29\x1f\x3e\xe0\x1c\xa6\x51\x23\x37\x26\x59\xa6\xbb\xc1\xf1\x8c\x0b\xc1\xd7\xa7\x3f\xa5\x5a\x16\xdd\xec\x4e\xb6\x6a\x99\x7e\x05\xcf\xce\xa0\x22\x8c\x66\xc3\xc1\x6b\x53\xad\x30\xae\xc0\xf2\x07\x02\x02\xe7\x28\x74\xd7\xa8\xe1\xe5\x6b\x36\xcc\xad\x80\x3d\x56\xdb\xeb\xd0\xf2\x66\xe8\x0f\xb3\xa8\xfe\xec\xaa\xd3\x0f\x1d\x81\x19\xd2\x15\x8a\x80\xae\xad\x85\x76\x65\x27\x2b\xe0\x37\x92\x55\x82\xaf\x68\xee\x77\x3b\xae\x04\x5d\x11\x85\x3e\x2e\x8c\xea\x46\xd5\xfb\xe5\xfd\x9d\xb2\x6b\xcc\x6d\x7e\x34\x30\x4a\x38\xf7\x36\x6e\x0c\x3e\x38\xd2\xbb\xde\x42\x29\xd4\xec\x01\x1b\xfc\x66\x9b\x85\xc3\x68\x08\x32\xf6\x1f\x76\x6f\xeb\x2d\xf3\x80\x6d\xdf\x3b\xd2\xdd\x1b\xd8\xee\xed\x6d\x59\xa9\x8d\x61\xe2\x47\x0a\x13\x18\xce\x6b\xa6\x8b\xd8\x44\x47\x7f\x9b\x68\xad\xee\xee\xc9\x32\x0e\xcf\xa7\x47\x3e\x2a\xc7\xdd\xad\x87\x3b\xd2\x47\xfa\x55\xfc\xf4\x2e\x55\x66\x33\x5a\xf4\x35\x20\x0b\x54\x1f\xeb\xaa\xe2\x42\x61\xde\xce\x3c\x80\x9b\x43\xc3\x34\x4b\xc2\xb5\x28\x04\x0a\x2a\x4d\x3f\x6b\x3b\x92\x68\xc0\x42\x65\x83\x3e\x53\x0f\x57\xae\x0b\x86\x1d\x1d\x42\x62\x5f\x6d\x6a\x37\x2d\xfa\x8d\xf3\xa2\x6b\x4e\x9d\xcf\xa4\xa7\x32\x04\x9d\xe5\x53\xb8\x8d\x0d\x10\xaf\xfe\x6c\x82\x71\x81\x66\xb3\xe1\xe8\x0b\x4c\x41\x89\x1a\x93\x9d\x4f\x44\xb8\x77\xe3\x43\xe5\xb6\x56\x43\xd5\x20\x76\x64\x05\xdd\xd1\x6c\xf5\xd9\xe5\xb3\x32\x5d\xd4\xd9\x19\xcc\x49\x21\x31\xed\x4e\xa0\x8c\x2a\x4a\x0a\xfa\x97\x6d\x7f\x7d\x3f\x4f\x54\x3b\x17\x30\x80\x33\xe3\x32\x5a\xb6\x6c\x34\xe1\xb0\xd3\xd0\x8f\xba\x3d\x8a\x96\xcf\xb3\x9c\x7a\xe6\x5b\x0e\xa2\x39\x32\x45\xe7\x14\x05\x4c\x61\xb0\x95\xbe\x06\xdb\x3c\x83\x64\x0c\xd3\xb0\xb9\x1e\xb6\xbc\x26\x01\xdf\xd1\xa3\x6d\x1e\x6d\x86\x85\x69\xd0\xd7\xde\xcf\xa1\x13\x0f\xff\x46\x15\x99\xce\x4d\x8d\x76\x4c\x42\x02\x44\xbb\x24\xa7\x51\x6c\x4d\xb8\xc3\xd1\x5d\xf3\x75\xe4\x58\x53\xb5\xcc\x05\x59\x87\x0f\xa3\x05\xed\xd8\xd3\x44\x20\xb9\xb6\x03\x41\x3b\xe3\x75\xf5\x1c\x11\x8b\xba\x44\xa6\x22\x42\xc2\xf2\x86\xbb\x8b\x5f\x47\x64\x66\xdb\xcd\x30\x70\xdc\xbb\xf5\x7f\x95\xcb\x98\x3a\x29\x98\xa1\x14\x96\x15\x17\x44\x6c\xdc\x18\xd1\x8f\xad\x4d\x69\xa9\x8b\x49\x5e\xe4\x11\x07\x33\xa0\xb5\xf3\x64\x2b\x80\x40\x98\x21\x65\x0b\x50\x82\x30\x39\x47\x21\x30\x1f\xeb\x8d\x44\x30\x20\x61\xb8\x2e\x36\x11\x1f\x3f\xea\x73\xdb\xf2\x68\xe0\x67\x38\xdb\xd1\x21\x48\x0e\x54\x99\x29\xa1\x99\xaf\x55\x5c\x77\x32\xb1\x4c\x58\x48\x34\x63\x97\xb4\xe2\xce\xe7\x71\xd2\xff\xd3\xd9\x91\xcc\x0a\xb4\xcd\xbf\xb7\x6c\x67\xd8\xfe\xf0\x23\xa4\x13\x75\xd1\xd7\x23\xe7\xb9\x14\xc8\x4e\x8f\xc2\x99\x64\x1b\xdb\x96\x62\xd4\x87\x3b\x67\x9b\x6f\x83\x9d\xb3\x3f\x9f\xfd\x0f\xb3\x2e\xf6\x0c\xde\x48\x9e\xcb\x88\x0d\x55\xb2\x09\x31\xe7\xb6\x4e\xc4\xf1\x35\x43\x21\xf7\x80\x22\x95\x40\x8a\x82\xaf\x2d\xd4\x72\x94\x4a\x70\x3b\xb9\x96\x7a\x7b\x2b\xda\x0c\x33\x52\x4b\x6c\xd1\x1d\x07\x9b\x16\x39\x40\xb1\xc6\x2b\x0a\x2f\x89\x1b\xb9\x9a\x39\xa9\xa1\xfd\x67\x2b\xfb\x92\xc4\x7a\xcd\x10\x99\x06\xa0\xac\x4b\xdd\x55\xb1\xdc\x4e\x90\xe7\xdc\x4c\xc2\x1d\xfa\x8c\x84\x7e\x9e\xdd\x83\xb3\x66\x9a\xe4\x1c\xe2\x6a\xf1\x57\xe7\x6c\xe3\xa7\xde\x49\xf4\x74\x93\x76\xd3\x02\xc0\xe9\x91\x0d\x70\x22\x1f\xa5\xb0\xb8\x37\xe8\x1e\x5b\x7e\x5b\x09\x4c\xff\x45\x6f\x60\x0a\x27\xe3\x93\xe8\xbd\xf7\x4e\x9c\x4e\x77\xcc\xd2\x7c\x3a\xd8\xba\xbb\xf2\xd5\xc6\x04\x5e\x37\x43\xd0\xd3\x9f\x7a\xab\xda\x94\x59\x3c\xef\x4f\xde\x3c\x46\xcd\xad\x00\xf6\x01\x13\xd1\xbb\x93\x22\xd1\xd5\x08\xcc\x68\x45\x91\x69\x94\xf8\xfd\xb7\xb6\xf6\xd2\xdb\xbe\xcc\x7f\x73\xbd\x58\xa2\x04\xdc\xd1\x58\x35\x65\xd7\x4e\x49\x3e\xb9\x26\xab\xab\xc4\x1b\x8b\x2e\xb3\xde\x6b\xce\x7c\x6a\x76\x17\x28\x21\x1f\x91\xd2\x28\xd0\x66\x1c\xc3\xf5\xf4\x28\x32\x72\x6f\xd6\xe9\x56\xc1\x7b\xa6\x9f\xf8\x14\xb2\x7e\xd4\x5a\x00\x09\xb3\xc9\x5f\x28\xf8\xd6\x09\xe8\xcf\x15\xda\x1e\x1b\xa4\x28\xf4\x09\xe4\x8e\x8f\x31\x9c\xdb\xdb\x9d\xb2\x96\xf6\x18\xb1\x65\xae\xbf\x97\xda\xe2\x68\xda\x59\x67\x30\xcd\xbb\x39\x96\xba\x17\x71\xfa\x01\x17\xb9\xbd\x38\x32\xa9\xcb\xbe\x8f\x39\xda\xf6\xdc\xdd\x08\x11\x3b\xb1\xf1\x96\xf6\x49\x41\x36\x37\x35\x76\x9a\xa3\x6b\xc4\xfd\xb2\xca\x76\xdb\xf1\xe0\x03\xea\x9e\xf3\xe6\x64\x7c\x92\x74\xbb\x4b\x05\xc3\x6e\x64\xd2\x79\x9c\x6e\x5e\x6a\x0e\x89\xb6\x2a\x12\x36\xb8\x6e\x4e\xd4\xf8\xfb\x2e\x7d\x04\x47\xe9\xda\x0c\xa2\xc6\xca\x7e\x0a\xae\x6b\xed\x5d\xde\x01\xf4\xdc\x4e\xfa\x73\xd1\x9e\x98\xc6\x51\xc4\xdc\x7c\x3b\x1f\xdb\xdb\x4b\x7d\xe6\xf8\x1b\xbf\x6f\xbb\xe9\x73\x57\x89\xb7\x11\x7e\x34\x1b\x7b\x63\xbf\x67\x2c\x69\x02\x19\x6c\x7c\x68\x0e\x6d\x8d\xcc\xd2\x47\x88\x0a\x7e\x18\x70\xd8\x1b\x51\x21\x45\x37\xa6\xf6\xc2\x66\x2b\xfa\x5e\x45\x54\x07\x1b\x7f\x0b\x2e\x1e\xa7\x0a\x2d\x2c\x69\xcf\x0f\x2c\xec\x7f\xff\x03\x8b\x98\xdb\x38\xe8\x42\xbe\xaf\x6e\xeb\xa0\x30\x99\x43\x43\x3c\x7e\x57\xee\xfc\xb1\x79\xf3\xc7\xe6\xcc\x1f\x90\x2f\x53\x01\x96\xcc\x93\x2b\xdf\x93\x37\x0d\xfd\xab\xfb\x92\xa4\xbf\xdb\xf3\x94\x1d\xc0\xb6\xd3\xde\xf4\xcf\x46\xb6\x47\xbb\x0d\x52\x60\x8f\x94\x0b\x26\xd7\x9a\xcb\xdf\xef\xe4\x14\x21\xce\x0c\x0c\xc2\xdc\x6d\x50\x1e\x04\x51\x3c\x8b\xe9\xbe\xdd\xf9\x3b\x19\x98\xc2\x93\x93\x13\x5d\x3b\xc6\xf4\xdd\x1f\x04\xc1\x14\x8e\x1d\x3e\xa2\x31\xa9\xfd\x5d\x51\x34\x18\x79\x6d\xd5\x6b\x7f\xe9\x62\xa0\xde\x4d\x6a\x06\x1e\xee\x97\x55\x1a\x9d\x64\x85\x1a\xe8\x94\x45\xbf\xa1\xb1\x2c\x9b\x8f\x51\x85\x9d\x36\xe3\x37\x69\xff\x68\x14\x6b\xed\x07\xf5\x5a\x9a\xa1\x9b\x1c\x1e\x82\xe2\x93\xb4\xf2\xae\xd0\x4a\x28\x9f\xf8\xd9\x40\x67\x14\x1f\x74\xef\x78\x53\x71\x89\xe1\xe1\x61\x16\x5e\xb9\x48\xba\x82\x12\xd5\x92\xdb\x16\x67\x81\xea\xdc\xcc\xfc\xdc\xb4\xcc\xbf\x53\x4b\xc1\xeb\x85\x35\xf3\x95\xaf\x85\xaf\xc0\x1c\x57\x73\x92\x85\xd6\xf4\xad\x12\x5c\x85\x63\x94\xab\x24\x27\xf7\x3a\xcd\x28\x6d\xbb\x82\xb2\xeb\xde\xee\xe0\x10\x92\xa3\xea\xbb\x97\xf1\x85\xc2\xb1\xb5\xde\x7d\x03\x79\x45\xc4\x02\xd5\x2e\xe7\x34\xcb\x03\x2f\x69\x10\xd9\xa2\xa0\x05\x91\x3d\xd7\x87\xbb\xe1\x60\x88\x2c\x1c\x92\x31\x32\x72\x41\x7b\x77\x00\xff\x0f\x00\x00\xff\xff\x69\x35\x17\x52\x9a\x29\x00\x00" +var _exampletokenV2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x5a\x6d\x6f\xdb\x38\xf2\x7f\x9f\x4f\x31\xf5\x1f\xd8\xbf\x8d\x4d\x94\xec\x53\x6f\xd7\x88\x9b\xcd\x6e\x9b\xbb\x03\xb6\x40\xd1\x66\xbb\x2f\x8a\xa2\xa1\xa5\xb1\xcd\x8b\x44\x0a\x24\x65\xc7\x1b\xe4\xbb\x1f\xf8\x24\x91\x32\xe5\xb8\x69\x2f\x6f\x62\x4b\x9c\xe1\x3c\xfc\x66\x38\x33\x34\xad\x6a\x2e\x14\x5c\x35\x6c\x49\xe7\x25\x5e\xf3\x5b\x64\xb0\x10\xbc\x82\x51\xf4\xec\x64\xfd\xfd\xe8\xc8\x2d\x7e\x8d\x8a\x14\x44\x91\xf7\x14\x37\xd2\x2d\x8e\x9e\xb5\x2b\x23\x16\x29\xb2\xe1\x05\xdd\x6e\x4d\xa9\x68\x5d\xe2\x7b\xd2\x94\xaa\xdd\x2e\x7a\x98\xe5\x45\xde\xae\xd7\xd4\x6f\x51\xf2\x72\x8d\xc2\xad\x0e\x1f\xd9\xb5\x47\x24\xcf\x51\xca\x31\x29\xcb\x09\xe4\x9c\x29\x41\x72\x05\xaf\xee\x48\x55\x3b\x61\xa6\x11\xa3\xe3\xbe\x18\xf7\x47\x47\x00\x00\xa7\xa7\xa7\x70\xbd\x42\xc0\x35\x32\x05\x6a\x45\x14\x50\x09\x58\x51\xa5\xb0\x80\xcd\x0a\x19\x30\xdc\x80\xd2\x1c\x25\x10\x81\x50\x51\xa6\xb0\x30\xc4\xa1\x0c\x96\x81\xd9\x59\xbe\x36\x4b\xc6\xa4\xe2\x0d\x53\x53\xf8\xf3\x8a\xde\x3d\xff\xf1\x18\xd4\xb6\xc6\x29\xbc\x53\x82\xb2\xe5\x24\xd8\x9e\x2b\x52\x82\x6c\xea\xba\xdc\x02\x5f\x44\x4a\x48\xa0\x0c\xf0\x8e\x4a\x85\x2c\xc7\x70\x53\xaf\xf3\x04\xd6\x44\x80\xd2\x3c\xde\x19\x16\x53\xb8\xbf\x36\x1b\xd9\x6d\x1f\xba\x8d\x2e\x8b\x8a\x32\x78\x43\xd4\x6a\x47\xfa\x12\x95\x7d\xfd\x4e\x71\x41\x96\xa8\x17\x69\x51\xdb\x2f\x1d\x97\xab\x86\xe5\x8a\x72\x06\x8a\x83\x40\xd5\x08\x06\x6a\x85\x46\x39\x69\x0d\xa8\xbf\xb6\x2e\xa1\x5a\x97\x0a\x99\x92\x3b\x9b\xae\x29\x6e\x60\xd1\x30\x58\xa2\x32\x5e\xd1\x72\xcb\xf1\x64\x0a\x1f\xf4\xa7\x8f\x70\x6f\x48\xf4\x9f\x96\x4f\xef\x70\x29\x04\xd9\xb6\xef\x67\xf6\xc3\xf9\xaf\xa1\xc9\x32\xc3\xea\xc5\x78\xf2\xb1\xa5\xf6\x62\x7a\x06\xe6\x45\x60\x18\x43\xe1\xbf\xb5\x4f\x5f\x91\x7c\x05\x8d\x44\x01\x52\x71\x81\x12\x08\x03\xca\xa4\x22\x2c\x47\xed\x27\xce\xca\xad\xd1\xd5\x90\x6b\x47\xa9\x15\x52\xbb\x9a\x2c\x31\x82\xd7\xc2\x19\x4d\xba\x65\x8e\x86\xb0\x02\x96\x7c\x8d\x82\x61\x01\x73\xcb\xad\x16\x68\x9e\xd7\x5c\x2a\x6d\xc6\x82\x1a\xc2\x96\x1d\x65\xbd\x60\x37\x20\x55\x2b\xdc\x1a\x78\xe6\xa4\x2c\xb1\xc8\xa2\xdd\xf3\x15\xe6\xb7\x12\x56\xa4\xae\x91\x01\x51\x20\x1a\xa6\x68\x85\x86\x14\x75\x98\x91\x56\x42\x0d\xff\x1e\x8f\x96\x97\x0e\xa6\x46\xe4\xa8\x57\x30\xab\xff\x1c\x21\x17\x48\x74\xb0\x38\xcd\xb4\xe7\xf1\x4e\x69\x0b\x45\x40\xf0\xd0\xd8\xb6\xec\xb4\xb8\x05\x2e\x28\x33\xc4\xc7\x20\xb9\x7e\x2f\x50\x8b\xc0\x38\x6c\xc8\x16\x16\x5c\xcb\x56\x91\x92\xe6\x94\x37\xd2\xba\x43\x71\xb7\xa7\xb5\x62\x67\x1a\xde\xb8\x6d\x29\x03\x42\x45\x06\x97\x20\x6b\xcc\x29\x29\xc1\x84\xa4\x00\xe1\x34\x00\x86\x58\x48\xcd\x69\xde\xc9\xa0\xb8\x09\xee\x96\x5d\x17\xf8\xb1\x29\x42\x0c\xb7\x0c\x8d\x28\xd3\xd8\x35\x16\x8a\x3e\xd5\x84\x1e\x31\xf1\x0a\x73\x52\x7a\x30\xa9\x15\x95\xb0\x6e\x71\xb8\x13\x2a\x44\xf8\xd5\x3e\xb0\x8f\xfa\x0b\x25\x96\x0b\xbb\x52\x0e\x05\xf1\x20\x45\xdd\xcc\x4b\x9a\x5b\x82\x37\xed\xe7\x58\xee\xb7\x26\x8a\xa4\xf1\xaa\xdb\x01\x6a\xa2\x56\x1a\x45\x02\xcd\x63\xa3\x00\xc8\x15\x6f\xca\x42\x87\x1b\xd5\x48\x32\x20\x31\x21\x54\xa4\x75\x0b\xd2\xc0\x4b\x5c\x68\x16\x81\xcc\x3a\x1d\x04\x5f\x2f\x82\xa4\x10\x84\xb6\xd6\x24\x93\x09\x4d\x1f\x86\x75\xb0\x3a\xc7\x2a\x78\x27\x78\x1d\x56\x64\x8d\x40\xfc\xd2\x9c\xd4\x64\x4e\x4b\xaa\xb6\x87\x2a\xd2\xd9\x52\xeb\xd1\x7d\xdb\xa7\x46\xe7\x8b\x94\x16\x83\x09\x54\x9f\xb9\xc9\xdc\x19\xf0\xb7\xe9\x72\xf8\xcc\xce\xae\xae\xf5\xff\x17\xe3\xc9\x71\x44\xee\xff\x1e\x27\x7f\x49\x65\x5d\x92\xed\x17\x70\x30\x31\xf3\x92\x28\x12\xa5\xf0\x01\x0b\x68\xe5\x85\x3d\xe2\x35\xfd\xf8\x93\xb1\xc9\xd4\x6c\x33\x99\xc2\x25\xdb\xbe\x53\xa2\xc9\x55\xdf\xde\x72\x43\x55\xbe\xb2\x06\xbc\xdf\x11\x34\x27\x12\x0f\x91\xd4\x9a\x6a\x9a\x54\xd4\x59\xfc\x51\x06\xe3\x24\xb5\xfe\x5b\x28\x67\xcc\xa9\xc5\x45\xa8\xe7\xe7\x38\x62\x02\x44\x3e\xdb\x2f\x88\x5b\x7c\x91\xf6\x99\x15\xa6\xf5\xcb\x93\xc4\x09\xbd\x7a\x80\x40\xed\xf2\x8b\xa4\x44\x93\xa7\xba\xac\xb3\x4a\xda\x6b\xba\xce\xa8\xb0\xa0\x04\x66\x71\x95\x9c\xbd\xd6\x4f\x87\x9d\x65\x6c\x44\x4b\x9c\xf6\xc8\xfe\x75\x7d\xfd\xe6\x8a\x96\xb8\x9f\xb2\x11\xe5\x14\x46\x2b\xa5\x6a\x39\x3d\x3d\x25\x52\xa2\x92\xd9\x06\xe7\x92\x2a\x3c\xd1\x6c\x65\x96\xf3\xea\xf4\xa7\xc5\xf3\xef\x7f\xf9\x31\x3f\xcb\xff\x41\x7e\xce\x8b\xe2\xf9\x8f\x3f\xcc\xbf\xcb\x7f\xfe\xfe\xac\xf7\x82\xfc\xf4\x53\x3e\xff\x2e\xff\xe5\x87\xe7\x9f\xae\x4a\xbe\xf9\xf4\x17\x17\x45\x45\xc4\x6d\x26\xd7\xcb\xd1\xa0\x1c\x03\x01\xab\xff\x8c\x45\x6c\x51\x39\xa2\x15\x59\xe2\xa9\x5c\x2f\xbf\xbd\xab\xca\x34\xb7\x5d\xef\x44\xa6\x95\x69\xdb\xca\xf1\x07\xf3\xfa\x63\x9a\xfc\x90\x78\x72\xde\x1d\xb6\x35\x23\x95\xd6\xc1\x95\x8b\x2d\x33\x5b\xb6\x8f\x86\x0d\x20\xb7\xd5\x9c\x6b\x17\xbd\xba\xba\xde\xb3\xac\x40\x99\x0b\x5a\xeb\x32\x6a\x0a\xa3\x6b\x7d\x9a\x2c\xfc\x16\xa6\x90\xd0\x95\x4d\x23\xb1\x00\x62\xaa\x49\x74\x72\x28\x0e\x2b\x2c\x6b\xd8\xf2\x06\x0a\x5c\x63\xc9\xcd\x67\x01\x4c\x17\x52\x57\xd7\xf0\x7f\x9c\x69\x4f\x66\x7b\xf6\xc6\x3b\x85\x82\x91\xf2\xcf\xb7\x7f\xf4\x31\xf8\xaa\x7b\x35\x6e\x41\xe6\xf6\x3e\x59\xa8\x8c\xb3\x85\x66\xce\xc5\x72\xb4\x07\x04\x25\x5f\x72\x39\x75\x2e\xdc\x63\x2a\xae\xeb\x2d\x39\x4d\xa4\xd5\xf0\x6f\xa4\x36\xba\xc5\x12\xa3\x83\x84\x75\x8b\x4d\x10\x68\x59\x3f\xcd\x4b\x9e\xdf\xe6\x2b\x42\xd9\x28\x0d\x17\x30\x67\x46\xea\xe9\x93\x73\x47\x98\xc2\x86\xb3\x87\x29\x1f\xde\xe2\x02\x66\x51\x23\x97\x91\x3c\xd7\xdd\x60\x36\xe7\x42\xf0\xcd\xf9\x37\xa9\x96\x45\x37\xbb\xd3\x9d\x5a\x66\x58\xc1\x8b\x0b\xa8\x09\xa3\xf9\x78\xf4\xbb\xa9\x56\x18\x57\x60\xf9\x03\x01\x81\x0b\x14\xba\x6b\xd4\xf0\xf2\x35\x1b\x16\x56\xc0\x01\xab\x1d\x74\x68\x79\x33\x0c\x87\x59\x54\x7f\xf6\xd5\x19\x86\x8e\xc0\x1c\xe9\x1a\x45\x40\xd7\xd5\x42\xfb\xb2\x93\x15\xf0\x33\xc9\x6a\xc1\xd7\xb4\xf0\xbb\x9d\xd6\x82\xae\x89\x42\x1f\x17\x46\x75\xa3\xea\xe3\xf2\xfe\x41\xd9\x2d\x16\x36\x3f\x1a\x18\x25\x9c\x7b\x1f\x37\x06\x6f\x1d\xe9\xc3\x60\xa1\x14\x6a\xf6\x84\x0d\x7e\xb3\xcd\xc2\x71\x34\x04\xc9\xfc\x87\xfd\xdb\x7a\xcb\x3c\x61\xdb\x37\x8e\x74\xff\x06\xb6\x7b\x7b\x55\xd5\x6a\x6b\x98\xf8\x91\xc2\x14\xc6\x8b\x86\xe9\x22\x36\xd1\xd1\xdf\x27\x5a\xab\x87\x47\xb2\x8c\xc3\xf3\xf9\x89\x8f\xca\xac\xbf\xf5\x78\x4f\xfa\x48\xbf\x8a\x9f\x3e\xa4\xca\x6c\x46\xcb\xa1\x06\x64\x89\xea\x5d\x53\xd7\x5c\x28\x2c\xba\x99\x07\x70\x73\x68\x98\x66\x49\xb8\x16\x85\x40\x49\xa5\xe9\x67\x6d\x47\x12\x0d\x58\xa8\x6c\xd1\x67\xea\xe1\xda\x75\xc1\xb0\xa7\x43\x48\xec\xab\x4d\xed\xa6\x45\xbf\x71\x5e\xf6\xcd\xa9\xf3\x99\xf4\x54\x86\xa0\xb7\x7c\x06\xf7\xb1\x01\xe2\xd5\x1f\x4c\x30\x2e\xd1\x6c\x36\x9e\x7c\x84\x19\x28\xd1\x60\xb2\xf3\x89\x08\x0f\x6e\x7c\xa8\xdc\xd5\x6a\xac\x5a\xc4\x4e\xac\xa0\x7b\x9a\xad\x21\xbb\x7c\x50\xa6\x8b\xba\xb8\x80\x05\x29\x25\xa6\xdd\x09\x94\x51\x45\x49\x49\xff\xb6\xed\xaf\xef\xe7\x89\xea\xe6\x02\x06\x70\x66\x5c\x46\xab\x8e\x8d\x26\x1c\xf7\x1a\xfa\x49\xbf\x47\xd1\xf2\x79\x96\x33\xcf\x7c\xc7\x41\xb4\x40\xa6\xe8\x82\xa2\x80\x19\x8c\x76\xd2\xd7\x68\x97\x67\x90\x8c\x61\x16\x36\xd7\xe3\x8e\xd7\x34\xe0\x3b\x79\xb6\xcb\xa3\xcb\xb0\x30\x0b\xfa\xda\xc7\x39\xf4\xe2\xe1\x9f\xa8\x22\xd3\xb9\xa9\xd1\x9e\x49\x48\x80\x68\x97\xe4\x34\x8a\xad\x09\xf7\x38\xba\x6f\xbe\x9e\x1c\x1b\xaa\x56\x85\x20\x9b\xf0\x61\xb4\xa0\x1b\x7b\x9a\x08\x24\xb7\x76\x20\x68\x67\xbc\xae\x9e\x23\x62\xd9\x54\xc8\x54\x44\x48\x58\xd1\x72\x77\xf1\xeb\x88\xcc\x6c\xbb\x1d\x06\x66\x83\x5b\xff\x5b\xb9\x8c\xa9\x93\x82\x19\x4a\x61\x55\x73\x41\xc4\xd6\x8d\x11\xfd\xd8\xda\x94\x96\xba\x98\xe4\x65\x11\x71\x30\x03\x5a\x3b\x4f\xb6\x02\x08\x84\x39\x52\xb6\x04\x25\x08\x93\x0b\x14\x02\x8b\x4c\x6f\x24\x82\x01\x09\xc3\x4d\xb9\x8d\xf8\xf8\x51\x9f\xdb\x96\x47\x03\x3f\xc3\xd9\x8e\x0e\x41\x72\xa0\xca\x4c\x09\xcd\x7c\xad\xe6\xba\x93\x89\x65\xc2\x52\xa2\x19\xbb\xa4\x15\x77\x3e\x8f\x93\xfe\x5f\xce\x8e\x64\x5e\xa2\x6d\xfe\xbd\x65\x7b\xc3\xf6\xa7\x1f\x21\xbd\xa8\x8b\xbe\x9e\x38\xcf\xa5\x40\x76\x7e\x12\xce\x24\xbb\xd8\xb6\x14\x93\x21\xdc\x39\xdb\x7c\x1e\xec\x9c\xfd\xf9\xfc\x3f\x98\xf7\xb1\x67\xf0\x46\x8a\x42\x46\x6c\xa8\x92\x6d\x88\x39\xb7\xf5\x22\x8e\x6f\x18\x0a\x79\x00\x14\xa9\x04\x52\x96\x7c\x63\xa1\x56\xa0\x54\x82\xdb\xc9\xb5\xd4\xdb\x5b\xd1\xe6\x98\x93\x46\x62\x87\xee\x38\xd8\xb4\xc8\x01\x8a\x35\x5e\x51\x78\x49\xdc\xc8\xd5\xcc\x49\x0d\xed\xff\x77\xb2\xaf\x48\xac\xd7\x1c\x91\x69\x00\xca\xa6\xd2\x5d\x15\x2b\xec\x04\x79\xc1\xcd\x24\xdc\xa1\xcf\x48\xe8\xe7\xd9\x03\x38\x6b\xa7\x49\xce\x21\xae\x16\xff\x35\x09\x99\x7e\xa6\x6e\xeb\x7e\x38\x3f\xb1\x51\x4d\xe4\xb3\x14\x00\x0f\x46\xda\xb7\x96\xdf\x4e\xd6\xd2\x7f\xd1\x1b\x98\xc1\x59\x76\x16\xbd\xf7\x2e\x89\x73\xe8\x9e\x01\x9a\xcf\x01\x3b\x17\x56\xbe\xc4\x98\xc2\xef\xed\xe4\xf3\xfc\x9b\xc1\x52\x36\x65\x16\xcf\xfb\xbd\x37\x8f\x51\x73\x27\x6a\x7d\x94\x44\xf4\xee\x78\x48\xb4\x32\x02\x73\x5a\x53\x64\x1a\x1a\x7e\xff\x9d\xad\xbd\xf4\xb6\x19\xf3\xdf\x5c\x03\x96\xa8\xfb\xf6\x74\x53\x6d\xad\xb5\x57\x92\xf7\xae\xb3\xea\x2b\xf1\xd2\x42\xca\xac\xf7\x9a\x33\x9f\x8f\xdd\xad\x49\xc8\x47\xa4\x34\x0a\xb4\xc9\x62\x8c\x9e\x9f\x44\x46\x1e\x4c\x35\xfd\xd2\xf7\xc0\x9c\x13\x1f\x3d\xd6\x8f\x5a\x0b\x20\x61\x0a\xf9\x1b\x05\xdf\x39\xf6\xfc\x61\x42\xbb\xb3\x82\x94\xa5\x3e\x76\xdc\x99\x91\xc1\xa5\xbd\xd2\xa9\x1a\x69\xcf\x0e\x5b\xdb\xfa\xcb\xa8\x1d\x8e\xa6\x87\x75\x06\xd3\xbc\xdb\xb3\xa8\x7f\xfb\xa6\x1f\x70\x51\xd8\xdb\x22\x93\xaf\xec\xfb\x98\xa3\xed\xc9\xdd\x35\x10\xb1\x63\x1a\x6f\x69\x9f\x09\x64\x7b\x3d\x63\x47\x38\xba\x30\x3c\x2c\x95\xec\xf6\x1a\x4f\x3e\x95\x1e\x39\x64\xce\xb2\xb3\xa4\xdb\x5d\x2a\x18\xf7\x23\x93\x2e\xe2\x74\xf3\x42\x73\x48\xf4\x52\x91\xb0\xc1\x1d\x73\xa2\xb0\x3f\x74\xe9\x33\x38\x49\x17\x64\x10\x75\x53\xf6\x53\x70\x47\x6b\x2f\xf0\x8e\x60\xe0\x4a\xd2\x1f\x86\xf6\x98\x34\x8e\x22\xe6\xba\xdb\xf9\xd8\x5e\x59\xea\x83\xc6\x5f\xf3\x7d\xde\xf5\x9e\xbb\x3f\xbc\x8f\xf0\xa3\xd9\xd8\x6b\xfa\x03\x63\x49\x13\xc8\x60\xe3\x63\x73\x52\x6b\x64\x56\x3e\x42\x54\xf0\x6b\x80\xe3\xc1\x88\x0a\x29\xfa\x31\x75\x10\x36\x3b\xd1\x0f\xaa\x9c\x7a\xd8\xf8\x9f\xe0\xe2\xdb\x54\x75\x85\x15\x1d\xf8\x55\x85\xfd\xef\x7f\x55\x11\x73\xcb\x82\xd6\xe3\xcb\x8a\xb5\x1e\x0a\x93\x39\x34\xc4\xe3\x17\xe5\xce\xaf\x9b\x37\xbf\x6e\xce\xfc\x0a\xf9\x32\x15\x60\xc9\x3c\xb9\xf6\x8d\x78\xdb\xc5\xa7\xeb\xb0\x00\x95\xfe\x42\xcf\x53\xf6\x00\xdb\x8d\x78\xd3\xbf\x15\xd9\x9d\xe7\xb6\x48\x81\x03\x52\x2e\x98\x5c\x6b\x6e\x7c\xbf\x90\x53\x84\x38\x33\x25\x08\x73\xb7\x41\x79\x10\x44\xf1\x00\xa6\xff\x76\xef\x8f\x63\x60\x06\xdf\x9d\x9d\xe9\xda\x31\xa6\xef\xff\x0a\x08\x66\x70\xea\xf0\x11\xcd\x46\xed\x8f\x89\xa2\x69\xc8\xef\x56\xbd\xee\xe7\x2d\x06\xea\xfd\xa4\x66\xe0\xe1\x7e\x4e\xa5\xd1\x49\xd6\xa8\x81\x4e\x59\xf4\xc3\x19\xcb\xb2\xfd\x18\x55\xd8\x69\x33\x7e\x96\xf6\xcf\x26\xb1\xd6\x7e\x3a\xaf\xa5\x19\xbb\x71\xe1\x31\x28\x3e\x4d\x2b\xef\x0a\xad\x84\xf2\x89\xdf\x0a\xf4\xe6\xef\x41\xcb\x8e\x77\x35\x97\x18\x1e\x1e\x66\xe1\x8d\x8b\xa4\x1b\xa8\x50\xad\xb8\xed\x6b\x96\xa8\x2e\xcd\xa0\xcf\x8d\xc8\xfc\x3b\xb5\x12\xbc\x59\x5a\x33\xdf\xf8\x5a\xf8\x06\xcc\x71\xb5\x20\x79\x68\x4d\xdf\x1f\xc1\x4d\x38\x3b\xb9\x49\x72\x72\xaf\xd3\x8c\xd2\xb6\x2b\x29\xbb\x1d\xec\x0e\x8e\x21\x39\x9f\x7e\x78\x11\xdf\x22\x9c\x5a\xeb\x3d\x36\x85\x57\x44\x2c\x51\xed\x73\x4e\xbb\x3c\xf0\x92\x06\x91\x2d\x0a\x3a\x10\xd9\x73\x7d\xbc\x1f\x0e\x86\xc8\xc2\x21\x19\x23\x13\x17\xb4\x0f\x47\xf0\xdf\x00\x00\x00\xff\xff\x4f\xf0\x46\x99\x8f\x29\x00\x00" func exampletokenV2CdcBytes() ([]byte, error) { return bindataRead( @@ -97,7 +97,7 @@ func exampletokenV2Cdc() (*asset, error) { } info := bindataFileInfo{name: "ExampleToken-v2.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x25, 0xa1, 0xa9, 0x9c, 0x5c, 0x55, 0x60, 0xff, 0x20, 0x7e, 0xf6, 0x8a, 0x13, 0x30, 0x4c, 0xb, 0x47, 0xe1, 0xe5, 0x16, 0x34, 0x21, 0xf1, 0x17, 0xe6, 0x0, 0xaf, 0xd3, 0x36, 0x43, 0xac, 0x1e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x89, 0x59, 0xa, 0x45, 0x26, 0x91, 0xe0, 0xfe, 0x35, 0xa1, 0x41, 0x6f, 0x55, 0xb6, 0xd5, 0xaa, 0x40, 0x62, 0xc4, 0x1d, 0xa0, 0x4d, 0xbd, 0x15, 0xfa, 0x1e, 0xba, 0x1, 0x7b, 0xed, 0xa7}} return a, nil } @@ -121,7 +121,7 @@ func exampletokenCdc() (*asset, error) { return a, nil } -var _fungibletokenV2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x5a\x5f\x8f\x1b\xb7\x11\x7f\xd7\xa7\x18\x5c\x80\x5a\x4a\x15\x9d\x1f\x8a\x3e\x08\xb1\x5d\xe7\x8f\x8b\x3c\x34\x08\xec\x6b\xfc\x50\x14\x15\xb5\x3b\xab\x65\x8e\x4b\x6e\x48\xae\x64\xf5\x70\xdf\xbd\x98\x21\xb9\xff\xb4\xba\xd3\x5d\x9c\xa2\xa8\x1f\xce\xd2\x2e\x39\x33\x1c\xfe\x38\xf3\x9b\xa1\xae\xbf\xfc\x72\x36\xfb\x02\x6e\x4a\x84\x77\xca\x1c\xe0\x5d\xa3\x77\x72\xab\x10\x6e\xcc\x2d\x6a\x70\x5e\xe8\x5c\xd8\x7c\x36\xfb\xe2\x0b\xd8\xa4\x97\xfc\x6e\x03\x99\xd1\xde\x8a\xcc\xcf\x66\x3c\x7d\x7a\x26\x48\x07\xda\x80\x32\x7a\x87\x16\x84\x06\xa9\x3d\xda\x42\x64\x38\xf3\xa5\xf0\x20\x94\x82\x22\x4d\xf5\x3c\x35\xc9\x75\x70\x30\x8d\xca\xa1\x14\x7b\x7a\x45\xcf\x0b\x63\x2b\xf0\x66\x35\x9b\xfd\x50\x80\x80\xc6\xa1\x75\x70\x10\xda\x3b\x1a\x90\x63\xad\xcc\x11\x04\x68\x3c\x8c\x64\x2d\xc1\x97\x28\x6d\x67\x73\x6e\x90\x0c\xf3\xa0\x11\x73\x9a\x2c\xab\x5a\x61\x85\xda\xd3\x48\x18\x2c\xb5\xb3\x79\x09\xdb\xc6\x47\x51\xac\xc0\xcd\x72\x73\x46\x44\x3b\xc9\x41\x8e\x85\xd4\x98\x83\xd4\xe0\x4b\xe9\x5a\x2b\x56\xc1\xaf\x3f\x8b\x46\xf9\x0d\x58\x74\xa6\xb1\x59\x6f\xe6\x6c\xf6\xbd\xc8\xca\xb1\x7f\xda\x71\xfe\x58\x23\x2b\x77\xa7\xda\xcf\x0b\x8d\x4a\x7f\xb2\x66\x2f\x73\xb4\x9b\x25\x6c\xde\x63\x86\x72\xcf\x9f\x85\xce\x61\xf3\x8d\x50\x42\x67\x38\x35\xdb\xf1\x6e\xbb\xd1\xf2\x32\x25\x2c\x42\x6d\xf1\xab\xcc\xe8\x5c\x7a\x69\xb4\x63\x51\xb5\x71\xbe\xff\x8c\xf7\xdc\xa2\xf3\x56\x66\x7e\x46\x86\xe2\x27\xcc\x1a\x7a\x09\xa6\x60\xcb\x8b\x46\x67\x61\x30\xbb\x0b\x81\x57\xb2\x62\xbd\x47\x20\x3d\x0e\x6b\x61\x85\x47\xd8\x62\x26\x1a\xb2\xc5\xc3\x4e\xee\xd1\xf1\x70\x02\x05\x7f\x10\x5b\xa9\xa4\x3f\x92\x6f\x5c\x29\x2c\xce\x04\x58\x2c\xd0\xa2\xce\x18\x4f\x61\x1b\x59\x7a\xb0\xcb\x68\x75\x04\xfc\x54\x1b\x17\x45\x15\x12\x55\xee\x3a\x8b\x66\x52\x83\xd1\x08\xc6\x42\x65\x2c\x26\x8b\x3b\x57\x10\x30\x09\xd3\xce\x44\x83\x02\x42\x47\xd6\x54\xe2\x16\x21\x6b\x9c\x37\x55\xeb\xe1\xe8\x9a\x76\x13\xc9\x37\x43\x2f\x13\xc0\x0d\xec\x85\x95\xa6\xa1\xd1\x52\xef\x1c\x1c\xa4\x2f\x59\x7c\x40\xe3\x6a\xf6\xce\x58\xc0\x4f\x82\xc4\x2c\x41\x40\x21\x9a\x0c\x3d\x64\x42\xc3\x16\x3b\xe9\x98\xc3\xf6\x98\x0e\x94\xd4\xbb\x59\x70\x07\x24\x50\x0c\xd0\xf2\xe5\xf5\x6c\x26\xab\xda\x58\x0f\x3f\x4b\x3c\xbc\x47\x67\xd4\x1e\x2d\x14\xd6\x54\x70\xd5\x7f\x74\x35\x9b\x5d\x5f\x5f\x0f\x0f\x0f\x3d\x19\x3c\x8d\x01\xa2\xb5\x45\x44\xb4\x58\xec\x05\x0a\x8b\xbf\x36\xd2\x4e\x1d\xab\xe1\x61\x60\xc9\x9d\xb1\xf0\x11\xc1\x79\xa9\x54\x08\x1a\xd2\x83\x70\x83\xa0\x03\x25\xda\x0e\x37\x9e\xbf\x31\xa4\x4c\xc5\xc8\x29\x1a\xc5\x22\x1b\x1f\x76\xab\x42\x5f\x9a\x3c\x6e\x4e\x25\xf4\x11\x6a\x6b\x7e\x41\x0e\x4e\xa4\x26\x28\xa3\x08\x44\x96\xb2\x52\xa3\x47\xb1\xc6\x2d\x59\x64\x8c\x1c\x01\xc2\xdb\x23\x2d\xb6\x42\xa1\x5d\xbb\xd6\x15\x07\xc3\x00\x83\xee\x29\x7d\xe6\x67\xed\x2e\x87\x35\x27\xa7\xb8\xc1\x71\xef\x42\x87\xc8\x32\x74\x6e\x2e\x94\x5a\xb4\x96\x8c\xc2\xda\xdd\x6c\x06\x00\x70\x7d\x0d\x6f\x35\xa0\xf6\xd2\x47\x3f\x17\xc6\x92\x2d\xe6\x20\xf5\x8e\xc5\x13\xcc\x72\x2b\x0e\x42\x31\xe6\x19\x6b\x61\xff\x45\x38\x40\x2c\xa8\xaf\xb2\x2f\xee\x63\x9a\xbd\x55\x98\x54\x5e\x73\xce\xc1\x7d\xd8\xd6\xb0\x64\xac\xa4\x27\x68\x1e\x4a\xd4\x49\x09\x39\x2b\x69\xd7\x8f\xa8\xdc\xf7\x95\xcd\x45\x65\x1a\xed\xd7\xf0\xf7\x77\xf2\xd3\x9f\xff\xb4\xe4\xb9\x6b\x78\x9b\xe7\x16\x9d\x7b\xb3\xe4\xe8\xb9\x86\x0f\xde\x4a\xbd\x5b\xf4\x85\x39\x54\xc5\x82\x70\xc6\x06\x25\x79\xdf\x93\xf4\xa7\x09\x5d\xc3\x37\xc6\x28\xb8\x63\xe1\xf4\x8f\xe4\x9d\x1a\x18\xfe\x4f\xb2\xe8\x6f\x92\x43\x7f\x17\xed\x6c\x8b\xbe\xb1\x1a\xbc\x6d\x90\x9f\xdd\x3f\xc7\x97\x39\xd6\xc6\x49\x1f\x4e\xd6\xc3\x9e\xfc\x2e\x0c\x3d\x59\xb3\x37\xcf\x70\x63\x14\x36\xed\xc5\x07\x24\x4e\xfb\x70\x6c\x5a\x72\x21\x09\xf2\xe6\x77\x74\x9f\xb7\x42\xbb\x02\x2d\x1d\x4c\x06\x23\xa5\x03\x91\x65\xa4\x9e\x3d\xaa\x0d\x05\x95\x33\x1e\xbd\x89\xb3\x1f\x87\xd1\x73\x5c\x9c\xa4\x5f\x88\xd4\xa7\xfa\xfc\xc4\xf8\x49\xdc\x3e\x6f\x03\xd8\xe4\x07\x30\xeb\xbc\x35\x47\xcc\xcf\xb8\xf5\x9b\xc6\xea\x53\x4c\x0d\x9c\x76\xde\x6b\x34\xf9\x0c\x2a\x1f\xf4\x89\x2c\xa2\x03\xe0\xf5\x2b\x78\xb9\x7a\xd9\x7b\xd5\xba\x6c\x60\x58\x8b\xd1\x09\xd7\xdc\x5f\xe2\xa4\x94\x9c\xd3\x83\x01\x7c\xbb\x0c\xc7\x10\x46\xca\xec\x59\xa4\x31\x31\x95\x84\x6c\x41\xb1\x3d\x05\x54\xca\xfc\x49\x48\x3f\xa8\x33\xa9\x49\x09\x86\x73\xc0\xb1\xc6\xd5\x89\xde\x1f\x3c\xb4\x34\x3a\x2a\x1c\xea\x32\x1a\x36\xdb\xc4\x25\x29\xd7\x2e\xdb\xb9\x3d\xea\xa6\x50\x10\x55\x32\x35\x06\xbe\x57\x1b\xe7\x64\x64\x4b\xa6\x80\xcc\xa2\x60\x23\x22\x63\xaa\xa3\x1b\x5c\x67\x3a\xad\x98\x78\x38\xd3\x79\xda\x63\x61\xa5\x3a\x46\x5e\xce\xb9\xd8\x1c\x34\x44\x4b\x86\xeb\xe8\xa3\xe9\x94\xed\x76\x84\x28\xe6\xca\xa4\x32\x79\x10\x5c\xb3\x8d\xc5\xca\xd8\x81\xe6\xa0\xd1\xbe\x70\xbd\x10\x9b\x26\x13\x31\x0e\xfb\xec\x52\x08\xee\x88\x9c\xc5\xca\xec\x39\x3c\x07\x42\xd7\x9b\x38\x10\x72\xd3\xa3\xca\x2f\x5c\x5c\x07\x28\xdc\xa3\xa2\x00\x56\x37\x5b\x25\xb3\x54\xaf\x48\x17\xea\x30\x0f\x82\xfc\xb7\x55\x58\x0d\x84\xa5\xdd\x60\x06\xdc\x1a\x0f\xce\x1b\x9b\x28\x40\xcf\x39\xd1\xa7\x31\xec\x0d\x04\x65\x4c\xb6\xa4\x97\x42\xa9\x23\x64\x81\xd0\xc8\x8e\x42\x3f\xbc\x9e\xa0\xb5\x12\x47\xd8\x59\xa2\x54\x1c\x4b\x93\x9e\x76\x8d\xc4\x5c\x13\x26\x68\x39\x72\x2f\x3c\x8e\xac\xa8\x5b\xba\x1d\x8b\x4c\x73\x70\xe0\x6a\xcc\x64\x21\xb3\x28\x37\x72\x73\x13\xe5\x0e\x24\x30\x0e\xd3\xde\x77\x05\x57\x69\x4d\xb3\x2b\xa1\x57\x48\x5c\xba\xa0\x50\x13\xf0\xaa\xc8\x29\x8f\xac\x89\x37\xef\x92\x25\x91\xac\xd1\x3a\x06\xb6\x0f\x64\x3c\x7d\x1d\xf1\x74\xf4\x09\x5c\x88\x9c\x87\x69\x96\xb5\x58\xc3\x5f\xde\xea\xe3\xfb\xa8\xe8\x8e\xb1\x7d\x3f\x0a\x8d\x54\x13\x8e\x1e\x05\xbd\xb0\xb1\xe8\x62\xd5\x5a\xc4\x35\x05\xe8\x71\x4c\xdc\x0b\xd5\xe0\xc9\xb4\x30\x65\xb5\x43\x1f\xab\xd6\xf9\x02\x5e\xbd\x8a\xd1\x76\x7d\x32\x9c\xfe\x5d\x7d\xec\xe8\x6c\x8c\xe1\x55\xe3\x3c\x55\x48\xa4\xce\x89\x0a\xa9\x6e\xa0\xcf\x31\x66\xa4\x4a\xaf\x63\xa2\xbc\xb2\xab\x89\x45\x0c\x28\xf6\xea\x3c\x83\x1c\x66\x4f\xca\x49\x2b\x46\xcb\x9b\x95\x08\x59\x39\x65\x0a\x7e\xb5\x43\x7f\x73\xac\x71\xbe\x58\xc9\x9c\x62\x72\x21\xd1\x2e\x06\xda\xef\x47\xc9\xa4\x97\x38\x52\x79\xff\xdb\x13\x47\x64\x8f\x13\x79\x43\xea\xb8\x59\x17\xe4\x8d\x8f\x98\xa2\xb5\xd4\x99\x6a\x72\x04\x01\x6d\x8f\x20\x98\x91\x95\x98\xdd\x0e\xb7\x20\xc6\xa8\x56\xca\x01\xdb\xba\x8b\x6a\xed\x4b\x4a\xed\xe0\x86\x50\x4f\xcd\xa0\x17\xb2\x72\x93\x06\x4d\xd7\xd5\x4b\x50\xf2\x16\xc1\xd5\x4a\x72\x21\x56\x41\x53\x53\x18\x6f\x85\x38\xd4\x79\x78\x41\x65\xba\x2c\xf8\x54\x79\xa8\x55\xe8\x0a\xc0\xe5\x19\x27\x6d\xd6\x38\xe3\x44\xd7\x83\x17\xb7\xd8\xa5\x0d\x4a\x25\xf1\x8d\xa3\x5c\x3a\xbd\x0d\x83\x8e\xd1\x43\x07\x9d\x8d\xa2\xf3\x1d\x65\xce\x03\x3a\x27\xce\xf4\x62\x68\xdd\x0e\xfd\x87\xa6\xae\x8d\xf5\x98\xf3\x00\x42\x2b\xe5\x74\xda\x52\xce\x05\x5d\xc2\x53\xd2\x79\x3a\x50\xfb\xd0\x79\xe1\x81\xb1\xc2\xe5\xba\x37\xae\x9f\x4c\xaa\xbd\x9b\x34\x71\x2f\xf1\xc0\x76\x4e\xeb\x9d\x2f\xd6\x70\x77\xc3\xa7\x87\x58\xdb\xfd\xd0\xd6\xf7\xd1\x92\x43\x89\x9c\x07\x8c\x65\x2c\x92\xd7\x08\x48\x3a\xf4\xd5\xa4\x8b\x16\x84\x5e\x09\xbd\x1d\x9c\xa3\x24\xed\x6d\x5a\x07\xc3\x56\xe8\x38\x0b\x84\x3e\x06\x41\xae\xe4\x2e\xe6\x2f\x14\x61\x7a\xec\x8e\x84\xe6\x58\x0c\xc8\xc1\xe4\x12\xa5\x3b\x5d\xe1\x3c\x84\x06\xfa\x18\x99\x69\xff\xcc\x3f\x82\xb0\x44\xe4\x8d\xed\x45\xe1\xd8\xa1\xe1\x24\x1d\xea\x7f\xc8\xa5\xc5\xcc\xb7\x25\x0f\x48\xed\x3c\x8a\x9c\xb6\xae\x14\x7b\x3e\xde\xdc\x92\x12\x2d\x36\x09\x8d\x5d\xab\xe0\x69\x19\xc5\x9f\xab\x8d\x12\x20\xd6\xf0\x6d\x9b\x03\xbf\xfe\xc3\xdd\x30\xce\xa6\xad\xb9\x7f\xbd\x18\x67\x1b\x8b\x13\xc9\x26\x09\x5d\x71\xa0\x21\xbc\x5c\x7d\xcb\xdb\x44\x48\xd8\x1a\x6b\xcd\x01\x4e\xdb\x85\xf0\xe3\xbb\x9b\x76\xea\xd5\xa5\xe1\x37\xe6\xa5\x89\xe8\x2b\x5d\x6f\x5b\x98\xa0\x91\xd6\x1d\x6a\xb4\x42\x41\xdd\xd8\xda\x38\x84\x0a\xbd\xc8\x85\x17\xbd\xb1\xe3\x58\x98\x28\xc3\x48\x1c\x62\x1e\x0a\xfd\x1d\xfa\x56\x4c\xe0\x84\x22\xcf\x03\xd7\x38\x94\x46\x21\x77\xcc\xbb\xde\x51\x12\x4b\x38\xc0\x3d\xda\x63\xbf\xc4\x6d\xea\x9d\x15\x39\xbb\x84\x78\xa6\x35\x5b\xb1\x25\xd6\x68\x0c\x54\x4d\x56\x12\x3c\x04\x6c\x2d\x8a\x5b\x26\xed\xa5\xd0\x3b\xbc\x04\x96\xd1\x4d\x70\x07\xd7\xd7\xeb\x41\xa7\x71\xd5\xb6\x1c\x47\x31\xf1\x6f\xdc\x9d\x4b\x0b\xec\x25\x8b\x13\x22\x96\x92\x48\xc6\x9b\xbc\x45\x06\xad\x95\x44\xb4\xb9\xc9\xbb\x1c\xcc\x70\x26\xb6\x06\xc3\xe5\x45\xea\xef\xc7\x74\x08\x42\x03\x7e\xaa\x95\xcc\xa4\x0f\xb3\x1f\x8d\x51\x2d\x35\x49\xb0\x9e\x7d\x96\xb0\xf6\x39\xe2\xc6\x60\xe1\x83\xfe\x6e\xf0\xae\x7b\x34\x5f\xf4\xad\x26\x01\x6c\xe7\x3f\x48\xc7\x3f\xcf\xe6\x17\x1b\x94\xd0\xf0\xf9\xbf\x58\x42\x6b\xd5\x5b\x7d\xfc\xe0\x6d\x93\xf9\x37\xe3\x83\xd4\x55\x52\x83\x2a\x34\x47\x4a\x30\xcb\x58\xe6\xb4\x78\x0a\x97\x47\xcc\xbb\xbb\x9b\xa3\x36\x86\x2f\x13\xde\x96\xbd\x78\xb8\x6c\xeb\xbd\x70\x11\x92\x5c\xd1\x55\xad\x4d\xd7\x22\xa2\x48\xe1\x92\x87\xe1\x88\xfe\x29\x59\x9e\x97\xb2\xbe\xdc\x9a\x8b\x8e\xc3\x5f\x87\x87\x20\x91\xd6\xfd\xe3\x39\xe6\x61\x88\xfe\xef\x27\xf8\x51\x84\xa7\xa0\x8b\xca\x1c\x02\x8d\xa4\xcd\xea\xdf\x7c\x24\x5a\xe8\x1a\x1b\x49\xaf\x6d\xf4\x57\x5e\x56\xf1\x46\x8d\x81\x33\x96\xc7\x95\x31\x45\x99\xb0\xcc\xb6\x4b\x45\xb5\x96\x60\xae\xd7\xee\x72\x44\x5b\x24\x91\xc3\x5b\xd3\x55\xe8\xd3\xaf\x60\x20\x5f\x16\x27\x2c\xdf\x7d\x68\xb6\x64\xcd\xdc\x14\xe1\x64\x7c\x3d\x20\x61\x13\x42\xef\x5f\xcf\x17\xe3\xe4\x07\x5d\x47\xe9\x6e\xa8\x61\xcd\x24\xe4\x7e\x98\xc3\x00\x95\x9b\xca\x96\x2d\x69\xe2\xd0\x57\xd5\xfe\x08\xb9\x64\xaa\x20\x28\x37\x04\xd6\x1d\xc9\x4c\x28\xd3\x38\x75\xb4\x1e\x39\x94\x44\x14\xf4\x0b\x3f\x25\xb9\xbb\xde\x99\x74\xd5\x12\x1c\x65\x15\xe1\x46\xaf\x3f\x1c\xa4\xcf\xca\xad\x11\x36\xdf\x2c\x61\xc3\xcf\xde\x19\x7b\x10\x36\x47\xbb\x01\xf4\xd9\xea\xac\x2b\xee\xcf\xa6\xee\xcf\x11\x52\x47\x0e\x8c\x4a\x0b\xa1\x1c\x4e\x69\xea\x53\x52\x2e\x3f\xbd\xb1\x62\x47\xb0\xf2\x25\x81\xcc\x62\x77\x8a\x13\x99\xf4\xc7\x5a\x66\x7c\xea\xb6\x61\x02\x3e\x9e\x83\xbe\x0b\xfb\xf3\x21\x88\xff\x49\xf8\x92\x50\xd0\xfb\xfa\x66\xda\x70\x2d\xd5\x25\x66\x47\x02\x32\xb0\x5a\xba\xa1\xd9\x7c\x3f\xd6\x72\x95\xae\xa5\x71\xa9\xed\x3f\xf1\xc4\x64\x7a\xf7\xed\x69\x96\xff\x77\x72\xd7\x63\xed\xc2\x4d\xe0\xb9\x9b\xae\x61\xc8\x90\x7a\xe1\x26\x39\xcc\xb0\x65\x48\x6c\x6d\xd4\x36\x4c\x82\xa9\x5a\x39\x9d\xff\x3b\x37\x74\x26\x29\x76\x8a\x37\x5d\x5b\xe6\xf5\x23\x6d\x99\xb7\xa1\x17\xd3\x35\x59\x52\x57\x46\x85\xb6\x96\xd0\x54\xab\xe1\xaf\x8d\x50\xe1\xdb\x44\xb2\x9b\xe8\xcb\xdc\x5f\xd8\x7d\x8a\x37\xc2\xa1\x4d\x28\x54\xdb\xb3\x84\xcd\x16\x0b\x63\x71\xd3\x27\x9a\x21\xca\x45\xa5\x5d\x93\x7b\x48\x07\x7b\xc2\xe3\x05\xee\x16\x77\x52\x6b\x22\xc6\xa3\x5f\x3b\x74\xbf\x83\x98\x98\x7d\x81\x6f\x5f\xbd\x82\x60\xe5\xfc\xe4\xdd\x02\xbe\x7a\xd8\xef\x3f\xb6\x70\x4a\xce\xec\xb7\xc3\x52\x37\xa3\xf3\x71\x6d\x71\xcf\x3f\x42\x48\xc3\x45\x68\x7e\x8c\xdb\x63\xe9\xfd\xf9\x4a\xe9\xc2\x0e\x87\xc8\x73\x07\xd2\x77\x0a\x63\x39\x36\xd8\x7b\x39\xd1\x6a\x7f\x4e\x7f\x63\x2a\xb5\x8e\xf3\x2a\xd5\xfd\xce\xa1\xf5\xdd\xd5\x7c\x66\x74\x66\xd1\x47\x0e\x11\x3d\xd5\xdd\xb6\x86\x38\x28\x5d\xdb\x61\x1c\xcb\x8b\x59\xb4\xd7\x4c\x68\x3b\x10\xa9\x05\x1f\xa5\x5d\x70\xf6\x68\x59\x2b\xe9\x7e\xd0\xce\x33\x06\x86\xb9\x7f\xb1\x86\x69\x20\x7c\x2b\x34\xb1\xda\xae\x9c\x07\xa9\x33\x53\xd5\xc2\xf7\x7e\x7e\x44\xeb\xbb\xac\xf1\x39\x79\xe7\xcb\xa6\xf5\xe1\x19\x2e\x0d\x1f\x68\x80\xa6\x19\x17\x37\x40\xe1\xfc\x31\x7f\xe2\xc1\xf9\x63\x7a\x77\x62\xf5\xe2\x59\x67\xc9\x35\xd5\xa3\x87\xa8\xc3\xcc\x83\xb1\x6c\x74\x78\xfe\x3f\x7b\x37\x9f\x65\x13\x9f\x1c\xfd\xda\x8c\xec\x50\xe7\x68\x7f\xd7\x68\x08\x67\xce\xce\xf4\x65\xfe\x25\x97\x06\x66\xdd\x75\xb7\x42\x27\x6b\xbe\x78\xf3\xf9\xee\x16\x06\xa8\xe3\x3b\x2b\xfc\x9e\x2a\x82\x18\xad\xe3\xb5\x94\x3e\xc6\xdf\xe1\x99\x38\x66\xc0\x5a\x38\xbc\x95\x82\x82\xfc\xbf\xd1\x9a\x4b\x18\x4b\x1b\xb9\xc7\x2a\xe7\xbf\xe5\xce\xe9\xcc\xe5\xd1\xcb\xd5\xcb\x35\x5c\xdd\x94\xdc\x17\x53\xf1\x6a\x2e\x1d\xc8\x00\x07\xa6\xb2\x7d\xe3\x2f\x38\xa7\xf1\x77\x0c\xf3\xcb\x5a\x94\x53\xa8\x38\xfd\xb1\xc2\x09\xde\x7f\xf3\xb5\xd1\xfd\x7f\x02\x00\x00\xff\xff\x34\x85\xe0\x48\x14\x2c\x00\x00" +var _fungibletokenV2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x5a\x4d\x8f\x1b\x37\xd2\xbe\xeb\x57\x14\x26\xc0\x6b\x29\xaf\xa2\xf1\x61\xb1\x07\x21\xb6\xe3\x7c\x78\x91\xc3\x06\x41\x66\x36\x3e\x2c\x16\x2b\xaa\xbb\x5a\xcd\x0c\x9b\xec\x90\x6c\xc9\xda\xc1\xfc\xf7\x45\x15\xc9\xfe\x52\x6b\x46\xe3\xd8\x8b\xc5\xfa\x30\x96\xba\xc9\xaa\x62\xf1\x61\xd5\x53\x45\x5d\x7f\xf9\xe5\x6c\xf6\x05\xdc\x96\x08\xef\x94\x39\xc0\xbb\x46\xef\xe4\x56\x21\xdc\x9a\x3b\xd4\xe0\xbc\xd0\xb9\xb0\xf9\x6c\xf6\xc5\x17\xb0\x49\x2f\xf9\xdd\x06\x32\xa3\xbd\x15\x99\x9f\xcd\x78\xfa\xf4\x4c\x90\x0e\xb4\x01\x65\xf4\x0e\x2d\x08\x0d\x52\x7b\xb4\x85\xc8\x70\xe6\x4b\xe1\x41\x28\x05\x45\x9a\xea\x79\x6a\x92\xeb\xe0\x60\x1a\x95\x43\x29\xf6\xf4\x8a\x9e\x17\xc6\x56\xe0\xcd\x6a\x36\xfb\xb1\x00\x01\x8d\x43\xeb\xe0\x20\xb4\x77\x34\x20\xc7\x5a\x99\x23\x08\xd0\x78\x18\xc9\x5a\x82\x2f\x51\xda\xce\xe6\xdc\x20\x19\xe6\x41\x23\xe6\x34\x59\x56\xb5\xc2\x0a\xb5\xa7\x91\x30\x58\x6a\x67\xf3\x12\xb6\x8d\x8f\xa2\x58\x81\x9b\xe5\xe6\x8c\x88\x76\x92\x83\x1c\x0b\xa9\x31\x07\xa9\xc1\x97\xd2\xb5\x56\xac\x82\x5f\x7f\x15\x8d\xf2\x1b\xb0\xe8\x4c\x63\xb3\xde\xcc\xd9\xec\x07\x91\x95\x63\xff\xb4\xe3\xfc\xb1\x46\x56\xee\x4e\xb5\x9f\x17\x1a\x95\xfe\x6c\xcd\x5e\xe6\x68\x37\x4b\xd8\xfc\x82\x19\xca\x3d\x7f\x16\x3a\x87\xcd\xb7\x42\x09\x9d\xe1\xd4\x6c\xc7\xbb\xed\x46\xcb\xcb\x94\xb0\x08\xb5\xc5\xaf\x32\xa3\x73\xe9\xa5\xd1\x8e\x45\xd5\xc6\xf9\xfe\x33\xde\x73\x8b\xce\x5b\x99\xf9\x19\x19\x8a\x1f\x30\x6b\xe8\x25\x98\x82\x2d\x2f\x1a\x9d\x85\xc1\xec\x2e\x04\x5e\xc9\x8a\xf5\x1e\x81\xf4\x38\xac\x85\x15\x1e\x61\x8b\x99\x68\xc8\x16\x0f\x3b\xb9\x47\xc7\xc3\x09\x14\xfc\x41\x6c\xa5\x92\xfe\x48\xbe\x71\xa5\xb0\x38\x13\x60\xb1\x40\x8b\x3a\x63\x3c\x85\x6d\x64\xe9\xc1\x2e\xa3\xd5\x11\xf0\x43\x6d\x5c\x14\x55\x48\x54\xb9\xeb\x2c\x9a\x49\x0d\x46\x23\x18\x0b\x95\xb1\x98\x2c\xee\x5c\x41\xc0\x24\x4c\x3b\x13\x0d\x0a\x08\x1d\x59\x53\x89\x3b\x84\xac\x71\xde\x54\xad\x87\xa3\x6b\xda\x4d\x24\xdf\x0c\xbd\x4c\x00\x37\xb0\x17\x56\x9a\x86\x46\x4b\xbd\x73\x70\x90\xbe\x64\xf1\x01\x8d\xab\xd9\x3b\x63\x01\x3f\x08\x12\xb3\x04\x01\x85\x68\x32\xf4\x90\x09\x0d\x5b\xec\xa4\x63\x0e\xdb\x63\x3a\x50\x52\xef\x66\xc1\x1d\x90\x40\x31\x40\xcb\x97\xd7\xb3\x99\xac\x6a\x63\x3d\xfc\x2a\xf1\xf0\x0b\x3a\xa3\xf6\x68\xa1\xb0\xa6\x82\xab\xfe\xa3\xab\xd9\xec\xfa\xfa\x7a\x78\x78\xe8\xc9\xe0\x69\x0c\x10\xad\x2d\x22\xa2\xc5\x62\x2f\x50\x58\xfc\xbd\x91\x76\xea\x58\x0d\x0f\x03\x4b\xee\x8c\x85\xf7\x08\xce\x4b\xa5\x42\xd0\x90\x1e\x84\x1b\x04\x1d\x28\xd1\x76\xb8\xf1\xfc\x8d\x21\x65\x2a\x46\x4e\xd1\x28\x16\xd9\xf8\xb0\x5b\x15\xfa\xd2\xe4\x71\x73\x2a\xa1\x8f\x50\x5b\xf3\x1b\x72\x70\x22\x35\x41\x19\x45\x20\xb2\x94\x95\x1a\x3d\x8a\x35\x6e\xc9\x22\x63\xe4\x08\x10\xde\x1e\x69\xb1\x15\x0a\xed\xda\xb5\xae\x38\x18\x06\x18\x74\x4f\xe9\x33\x3f\x6b\x77\x39\xac\x39\x39\xc5\x0d\x8e\x7b\x17\x3a\x44\x96\xa1\x73\x73\xa1\xd4\xa2\xb5\x64\x14\xd6\xee\x67\x33\x00\x80\xeb\x6b\x78\xab\x01\xb5\x97\x3e\xfa\xb9\x30\x96\x6c\x31\x07\xa9\x77\x2c\x9e\x60\x96\x5b\x71\x10\x8a\x31\xcf\x58\x0b\xfb\x2f\xc2\x01\x62\x41\x7d\x95\x7d\x71\xef\xd3\xec\xad\xc2\xa4\xf2\x9a\x73\x0e\xee\xc3\xb6\x86\x25\x63\x25\x3d\x41\xf3\x50\xa2\x4e\x4a\xc8\x59\x49\xbb\x7e\x42\xe5\xbe\xaf\x6c\x2e\x2a\xd3\x68\xbf\x86\xbf\xbd\x93\x1f\xfe\xfc\xa7\x25\xcf\x5d\xc3\xdb\x3c\xb7\xe8\xdc\x9b\x25\x47\xcf\x35\xdc\x78\x2b\xf5\x6e\xd1\x17\xe6\x50\x15\x0b\xc2\x19\x1b\x94\xe4\xfd\x40\xd2\x9f\x27\x74\x0d\xdf\x1a\xa3\xe0\x9e\x85\xd3\x3f\x92\x77\x6a\x60\xf8\x3f\xc9\xa2\xbf\x49\x0e\xfd\x5d\xb4\xb3\x2d\xfa\xc6\x6a\xf0\xb6\x41\x7e\xf6\xf0\x31\xbe\xcc\xb1\x36\x4e\xfa\x70\xb2\x1e\xf7\xe4\xf7\x61\xe8\xc9\x9a\xbd\xf9\x08\x37\x46\x61\xd3\x5e\x7c\x44\xe2\xb4\x0f\xc7\xa6\x25\x17\x92\x20\x6f\x3e\xa3\xfb\xbc\x15\xda\x15\x68\xe9\x60\x32\x18\x29\x1d\x88\x2c\x23\xf5\xec\x51\x6d\x28\xa8\x9c\xf1\xe8\x6d\x9c\xfd\x34\x8c\x3e\xc6\xc5\x49\xfa\x85\x48\x7d\xae\xcf\x4f\x8c\x9f\xc4\xed\xc7\x6d\x00\x9b\xfc\x08\x66\x9d\xb7\xe6\x88\xf9\x19\xb7\x7e\xdb\x58\x7d\x8a\xa9\x81\xd3\xce\x7b\x8d\x26\x9f\x41\xe5\xa3\x3e\x91\x45\x74\x00\xbc\x7e\x05\x2f\x57\x2f\x7b\xaf\x5a\x97\x0d\x0c\x6b\x31\x3a\xe1\x9a\x87\x4b\x9c\x94\x92\x73\x7a\x30\x80\x6f\x97\xe1\x18\xc2\x48\x99\x3d\x8b\x34\x26\xa6\x92\x90\x2d\x28\xb6\xa7\x80\x4a\x99\x3f\x09\xe9\x07\x75\x26\x35\x29\xc1\x70\x0e\x38\xd6\xb8\x3a\xd1\xfb\xa3\x87\x96\x46\x47\x85\x43\x5d\x46\xc3\x66\x9b\xb8\x24\xe5\xda\x65\x3b\xb7\x47\xdd\x14\x0a\xa2\x4a\xa6\xc6\xc0\xf7\x6a\xe3\x9c\x8c\x6c\xc9\x14\x90\x59\x14\x6c\x44\x64\x4c\x75\x74\x83\xeb\x4c\xa7\x15\x13\x0f\x67\x3a\x4f\x7b\x2c\xac\x54\xc7\xc8\xcb\x39\x17\x9b\x83\x86\x68\xc9\x70\x1d\x7d\x34\x9d\xb2\xdd\x8e\x10\xc5\x5c\x99\x54\x26\x0f\x82\x6b\xb6\xb1\x58\x19\x3b\xd0\x1c\x34\xda\x17\xae\x17\x62\xd3\x64\x22\xc6\x61\x9f\x5d\x0a\xc1\x1d\x91\xb3\x58\x99\x3d\x87\xe7\x40\xe8\x7a\x13\x07\x42\x6e\x7b\x54\xf9\x85\x8b\xeb\x00\x85\x7b\x54\x14\xc0\xea\x66\xab\x64\x96\xea\x15\xe9\x42\x1d\xe6\x41\x90\xff\xb6\x0a\xab\x81\xb0\xb4\x1b\xcc\x80\x5b\xe3\xc1\x79\x63\x13\x05\xe8\x39\x27\xfa\x34\x86\xbd\x81\xa0\x8c\xc9\x96\xf4\x52\x28\x75\x84\x2c\x10\x1a\xd9\x51\xe8\xc7\xd7\x13\xb4\x56\xe2\x08\x3b\x4b\x94\x8a\x63\x69\xd2\xd3\xae\x91\x98\x6b\xc2\x04\x2d\x47\xee\x85\xc7\x91\x15\x75\x4b\xb7\x63\x91\x69\x0e\x0e\x5c\x8d\x99\x2c\x64\x16\xe5\x46\x6e\x6e\xa2\xdc\x81\x04\xc6\x61\xda\xfb\xae\xe0\x2a\xad\x69\x76\x25\xf4\x0a\x89\x4b\x17\x14\x6a\x02\x5e\x15\x39\xe5\x89\x35\xf1\xe6\x5d\xb2\x24\x92\x35\x5a\xc7\xc0\xf6\x81\x8c\xe7\xaf\x23\x9e\x8e\x3e\x81\x0b\x91\xf3\x30\xcd\xb2\x16\x6b\xf8\xe6\x9e\x01\xfd\x30\x8a\x87\x54\x08\x8e\x1e\x05\x65\xb0\xb1\xe8\x62\xa9\x5a\xc4\x85\x04\xbc\x71\x20\xdc\x0b\xd5\xe0\xc9\xb4\x30\x65\xb5\x43\x1f\x4b\xd5\xf9\x02\x5e\xbd\x8a\x21\x76\x7d\x32\x9c\xfe\x5d\xbd\xef\x38\x6c\x0c\xdc\x55\xe3\x3c\x95\x45\xa4\xce\x89\x0a\xa9\x58\xa0\xcf\x31\x50\xa4\xf2\xae\xa3\x9f\xbc\xb2\xab\x89\x45\x0c\x78\xf5\xea\x3c\x6d\x1c\xa6\x4c\x4a\x44\x2b\x86\xc8\x9b\x95\x08\xa9\x38\xa5\x07\x7e\xb5\x43\x7f\x7b\xac\x71\xbe\x58\xc9\x9c\x02\x71\x21\xd1\x2e\x06\xda\x1f\x46\x19\xa4\x97\x2d\x52\x4d\xff\xc7\xb3\x45\xa4\x8c\x13\xc9\x42\xea\xb8\x59\x17\x24\x8b\xf7\x98\x42\xb4\xd4\x99\x6a\x72\x04\x01\x6d\x63\x20\x98\x91\x95\x98\xdd\x0d\xb7\x20\x06\xa6\x56\xca\x01\xdb\x62\x8b\x0a\xec\x4b\xea\xeb\xe0\x86\x50\x44\xcd\xa0\x17\xa7\x72\x93\x06\x4d\x17\xd3\x4b\x50\xf2\x0e\xc1\xd5\x4a\x72\xf5\x55\x41\x53\x53\xec\x6e\x85\x38\xd4\x79\x78\x41\xb5\xb9\x2c\xf8\x28\x79\xa8\x55\x68\x05\xc0\xe5\x69\x26\x6d\xd6\x38\xcd\x44\xd7\x83\x17\x77\xd8\xe5\x0a\xca\x1f\xf1\x8d\xa3\x04\x3a\xbd\x0d\x83\x36\xd1\x63\xa7\x9b\x8d\xa2\x43\x1d\x65\xce\x03\x3a\xd3\x41\x5e\x0c\x4d\xda\xa1\xbf\x69\xea\xda\x58\x8f\x39\x0f\x20\x88\x52\xf6\xa6\x7d\xe4\xa8\xdf\xa5\x36\x25\x9d\xa7\x53\xb4\x0f\x3d\x16\x1e\x18\x6b\x59\xae\x70\xe3\xa2\xc9\x8e\xda\xbb\x49\xbb\xf6\x12\x0f\x6c\xdc\xb4\xde\xf9\x62\x0d\xf7\xb7\x7c\x64\x88\x9f\x3d\x0c\x6d\xfd\x25\x5a\x72\x28\x91\x23\xbe\xb1\x0c\x40\x72\x15\xa1\x47\x87\x0e\x9a\x74\xd1\x82\xd0\x15\xa1\xb7\x83\xc3\x93\xa4\xbd\x4d\xeb\x60\xac\x0a\x1d\x67\x81\xd0\xc7\x20\xc8\x95\xdc\xaf\xfc\x8d\xc2\x4a\x8f\xc7\x91\xd0\x1c\x8b\x01\x0d\x98\x5c\xa2\x74\xa7\x2b\x9c\x87\x78\x40\x1f\x23\x07\xed\x1f\xf4\x27\x60\x95\x28\xbb\xb1\xbd\xd0\x1b\x7b\x31\x9c\x8e\x43\xa5\x0f\xb9\xb4\x98\xf9\xb6\xb8\x01\xa9\x9d\x47\x91\xd3\xd6\x95\x62\xcf\x67\x9a\x9b\x4f\xa2\x05\x24\x41\xb0\x6b\x0a\x3c\x2f\x77\xf8\x73\x55\x50\x02\xc4\x1a\xbe\x6b\xb3\xdd\xd7\xff\x77\x3f\x0c\xae\x69\x6b\x1e\x5e\x2f\xc6\x29\xc6\xe2\x44\x86\x49\x42\x57\x1c\x5d\x08\x2f\x57\xdf\xf1\x36\x11\x12\xb6\xc6\x5a\x73\x80\xd3\xc6\x20\xfc\xf4\xee\xb6\x9d\x7a\x75\x69\xcc\x8d\xc9\x68\x22\xe4\x4a\xd7\xdb\x16\xa6\x62\xa4\x75\x87\x1a\xad\x50\x50\x37\xb6\x36\x0e\xa1\x42\x2f\x72\xe1\x45\x6f\xec\x38\x00\x26\x72\x30\x12\x87\x98\x87\x92\x7e\x87\xbe\x15\x13\xd8\x9f\xc8\xf3\xc0\x2a\x0e\xa5\x51\xc8\xbd\xf1\xae\x4b\x94\xc4\x12\x0e\x70\x8f\xf6\xd8\x2f\x66\x9b\x7a\x67\x45\xce\x2e\x21\x46\x69\xcd\x56\x6c\x89\x1f\x1a\x03\x55\x93\x95\x04\x0f\x01\x5b\x8b\xe2\x8e\xe9\x79\x29\xf4\x0e\x2f\x81\x65\x74\x13\xdc\xc3\xf5\xf5\x7a\xd0\x53\x5c\xb5\xcd\xc5\x51\x20\xfc\x2b\xf7\xe1\xd2\x02\x7b\x19\xe2\x84\x72\xa5\xcc\x91\xf1\x26\x6f\x91\x41\x6b\x25\x51\x6a\x6e\xe7\x2e\x07\x33\x9c\x89\x4d\xc0\x70\x4d\x91\x3a\xf9\x31\x07\x82\xd0\x80\x1f\x6a\x25\x33\xe9\xc3\xec\x27\x63\x54\xcb\x47\x12\xac\x67\x9f\x24\xac\x7d\x8a\xb8\x31\x58\xf8\xa0\x93\x1b\xbc\xeb\x9e\x4c\x12\x7d\xab\x49\x00\xdb\xf9\x77\xd2\xf1\x8f\xb3\x49\xc5\x06\x25\x34\x7c\xfe\x4f\x96\xd0\x5a\xf5\x56\x1f\x6f\xbc\x6d\x32\xff\x66\x7c\x90\xba\x9a\x69\x50\x6f\xe6\x48\x09\x66\x19\x0b\x9a\x16\x4f\xe1\x9a\x88\x19\x76\x77\x47\xd4\xc6\xf0\x65\xc2\xdb\xb2\x17\x0f\x97\x6d\x65\x17\xae\x3c\x92\x2b\xba\xfa\xb4\xe9\x9a\x41\x14\x29\x5c\xf2\x30\x1c\xd1\x3f\x27\xb5\xf3\x52\xd6\x97\x5b\x73\xd1\x71\xf8\xcb\xf0\x10\x24\xa6\xba\x7f\x3a\xc7\x3c\x0e\xd1\xff\xfe\x04\x3f\x8a\xf0\x14\x74\x51\x99\x43\xe0\x8e\xb4\x59\xfd\x3b\x8e\xc4\x05\x5d\x63\x23\xd3\xb5\x8d\xfe\xca\xcb\x2a\xde\x9d\x31\x70\xc6\xf2\xb8\x06\xa6\x28\x13\x96\xd9\xf6\xa3\xa8\xaa\x12\x4c\xf0\xda\x5d\x8e\x68\x8b\xcc\x71\x78\x3f\xba\x0a\x1d\xf9\x15\x0c\xe4\xcb\xe2\x84\xda\xbb\x9b\x66\x4b\xd6\xcc\x4d\x11\x4e\xc6\xd7\xdf\xdc\x4f\x48\x7a\x78\x3d\x5f\x8c\x33\x1e\x74\x0d\xa3\xfb\xa1\xd8\x35\x33\x8f\x87\x61\xe2\x02\x54\x6e\x2a\x45\xb6\x4c\x89\xe3\x5d\x55\xfb\x23\xe4\x92\xf9\x81\xa0\x84\x10\xf8\x75\x64\x30\xa1\x20\xe3\x7c\xd1\xba\xe1\x50\x12\x3b\xd0\x2f\xfc\x94\xe4\xee\xf6\x66\xd2\x3f\x4b\x70\x94\x4a\x84\x1b\xbd\xbe\x39\x48\x9f\x95\x5b\x23\x6c\xbe\x59\xc2\x86\x9f\xbd\x33\xf6\x20\x6c\x8e\x76\x03\xe8\xb3\xd5\x59\x57\x3c\x9c\xcd\xd7\x9f\x22\x8e\x8e\x1c\x18\x95\x16\x42\x39\x9c\xd2\xd4\xe7\xa1\x5c\x68\x7a\x63\xc5\x8e\xb0\xe4\x4b\x42\x96\xc5\xee\xe8\x26\x06\xe9\x8f\xb5\xcc\xf8\xa8\x6d\xc3\x04\x7c\x3a\xf1\x7c\x1f\xf6\xe7\x26\x88\xff\x59\xf8\x92\x50\xd0\xfb\xfa\x66\xda\x70\x2d\xd5\x25\x66\x47\xd6\x31\xb0\x5a\xba\xa1\xd9\x7c\xfd\xd5\x12\x94\xae\x63\x71\xa9\xed\x3f\xf3\xc4\x64\x7a\xf7\xed\x79\x96\xff\x67\x12\xd6\x53\xdd\xc0\x4d\x20\xb7\x9b\xae\x1f\xc8\x90\x7a\xe1\x26\x89\xcb\xb0\x23\x48\x14\x6d\xd4\x15\x4c\x82\xa9\x44\x39\x9d\xff\x39\xfa\x35\x93\x64\x3a\x05\x99\xae\xeb\xf2\xfa\x89\xae\xcb\xdb\xd0\x6a\xe9\x7a\x28\xa9\xe9\xa2\x42\xab\x4a\x68\xaa\xca\xf0\xf7\x46\xa8\xf0\x6d\x22\xad\x4d\xb4\x5d\x1e\x2e\x6c\x2e\xc5\x5b\xde\xd0\xfa\x13\xaa\xed\x43\xc2\x66\x8b\x85\xb1\xb8\xe9\x53\xca\x10\xda\xa2\xd2\xae\x71\x3d\x24\x7e\x3d\xe1\xf1\x52\x76\x8b\x3b\xa9\x35\x51\xe0\xd1\x2f\x18\xba\xdf\x36\x4c\xcc\xbe\xc0\xb7\xaf\x5e\x41\xb0\x72\x7e\xf2\x6e\x01\x5f\x3d\xee\xf7\x9f\x5a\x0c\x25\x67\xf6\xbb\x5d\xa9\x59\xd1\xf9\xb8\xb6\xb8\xe7\x1f\x16\xa4\xe1\x22\xf4\x36\xc6\xdd\xaf\xf4\xfe\x7c\x4d\x74\x61\x03\x43\xe4\xb9\x03\xe9\x3b\x85\xb1\xf0\x1a\xec\xbd\x9c\x68\x9f\x5f\xdc\xbe\x98\x4a\xa2\xe3\x0c\x4a\x65\xbd\x73\x68\x7d\x77\xc7\x9e\x19\x9d\x59\xf4\x91\x22\x44\xf7\x74\xd7\xa6\x21\xe2\x49\xd7\x76\x0d\xc7\xf2\x62\xbe\xec\xf5\x0a\xda\x06\x43\xea\xa5\x47\x69\x17\x1c\x38\x5a\xcb\x4a\xba\x1f\xb5\xf3\xbc\xf1\xc3\x2c\xbf\x58\xc3\xf4\xee\x7f\x27\x34\x91\xd6\xae\x5a\x07\xa9\x33\x53\xd5\xc2\xf7\x7e\x47\x44\xeb\xbb\xac\x99\x39\x79\x79\xcb\xa6\xf5\x31\x19\x6e\xff\x1e\x69\x6a\xa6\x19\x17\x37\x35\xe1\xfc\xd9\x7e\xe6\x69\xf9\xff\xf4\xee\xc4\xea\xc5\x47\x1d\x20\xd7\x54\x4f\x9e\x9c\x0e\x33\x8f\x06\xb0\xd1\x89\xf9\xdf\x6c\xcd\x7c\x92\x4d\x7c\x76\xc8\x6b\x73\xaf\x43\x9d\xa3\xfd\xac\x21\x10\xce\x9c\x9d\xe9\x5b\xf9\x4b\x2e\x02\xcc\xba\x6b\x5e\x85\x46\xd5\x7c\xf1\xe6\xd3\xdd\x17\x0c\x50\xc7\x97\x4f\xf8\x03\x71\xff\x18\xa2\xe3\xfd\x92\x3e\xc6\x1f\xd4\x99\x38\x66\xc0\x4f\x38\xbc\x95\x82\x22\xfb\xbf\xd0\x9a\x4b\xb8\x49\x1b\xae\xc7\x2a\xe7\xcf\xbe\x3c\x3a\x73\x0b\xf4\x72\xf5\x72\x0d\x57\xb7\x25\xf7\xba\x54\xbc\x58\x4b\xa7\x30\x60\x80\x99\x6a\xdf\xe2\x0b\x0e\x67\xfc\x15\xc2\xfc\xb2\xb6\xe3\x14\x14\x4e\x7f\x6a\x70\x02\xf2\x3f\x7c\xff\xf3\xf0\xef\x00\x00\x00\xff\xff\xfa\x81\xfb\x0e\xd2\x2b\x00\x00" func fungibletokenV2CdcBytes() ([]byte, error) { return bindataRead( @@ -137,7 +137,7 @@ func fungibletokenV2Cdc() (*asset, error) { } info := bindataFileInfo{name: "FungibleToken-v2.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x4f, 0xd7, 0xc8, 0xab, 0xa1, 0x86, 0xae, 0xe7, 0xe, 0xd7, 0xf2, 0x2a, 0x7a, 0xbe, 0x3a, 0xf0, 0x13, 0x8b, 0x7c, 0x50, 0xf8, 0x3b, 0x50, 0x21, 0x38, 0xc7, 0x29, 0xeb, 0x15, 0x67, 0x3e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x31, 0xc1, 0x8c, 0x85, 0x92, 0x59, 0x7a, 0x54, 0x81, 0x9d, 0xeb, 0x8c, 0x56, 0x3e, 0xbd, 0xb0, 0xd5, 0x24, 0x85, 0xd0, 0x69, 0x30, 0xfd, 0xd9, 0xcd, 0x26, 0x66, 0x3b, 0xd4, 0xe9, 0xd4, 0xb0}} return a, nil } @@ -161,7 +161,7 @@ func fungibletokenCdc() (*asset, error) { return a, nil } -var _fungibletokenmetadataviewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x59\x5f\x6f\x1b\xb9\x11\x7f\xd7\xa7\x98\xea\xe1\xce\x06\x1c\x29\x09\x8a\xf6\x20\x9c\x9a\xcb\xe1\x6c\xb4\x80\x83\x18\x8e\x73\x7d\xac\xa9\xdd\x59\x8b\x30\x97\xdc\x92\x5c\x29\x82\xe1\xef\x5e\x0c\xc9\xdd\x25\xf7\x8f\x2c\xdf\xf5\x80\xd3\x43\x22\x91\xc3\x99\xdf\xfc\xe5\x0c\xcd\xcb\x4a\x69\x0b\x57\xb5\x7c\xe0\x1b\x81\x77\xea\x11\x25\x14\x5a\x95\x30\x4f\xd6\xe6\xb3\x40\xf9\x09\x2d\xcb\x99\x65\xbf\x72\xdc\x9b\x40\x99\xac\xb5\x94\xf4\xeb\x16\x8d\x12\x3b\xd4\x81\x30\x5e\x9a\xcf\x66\xcb\xe5\x12\xee\xb6\xdc\x40\xa6\xa4\xd5\x2c\xb3\xc0\xcb\x4a\x60\x89\xd2\x1a\xb0\x5b\x84\x32\x30\x06\x63\x99\xcc\x99\xce\xa1\xd2\xaa\x52\x06\x73\x77\x96\x4b\xb8\xba\xfe\xd7\xcd\x9b\x77\x6f\x7f\xf8\xfb\xc2\xad\xb8\x7f\x6e\xb1\x58\xc1\xd6\xda\xca\xac\x96\xcb\x07\x6e\xb7\xf5\x66\x91\xa9\x72\xa9\x64\x21\xd4\x7e\x59\x08\x5e\x99\xe5\x46\xa8\xcd\xb2\x64\x5c\x2e\x59\x55\x09\x9e\x31\xcb\x95\x5c\xbe\x7f\xfb\xfe\xfd\xdb\x1f\xde\xbd\x7b\x53\x04\xe5\xdf\x58\xd2\xde\xbc\x69\x90\x2c\xca\xbc\x13\xf4\xc5\xea\x3a\xb3\x06\x98\xcc\x41\xa3\x51\xb5\xce\xd0\x40\xc6\x64\xa7\x07\x28\x89\xa0\x34\x94\x4a\xa3\x3b\xd3\xaa\x64\x0f\x15\x9a\x0b\xc8\x98\x10\x98\xc3\x8e\x4c\xb7\x80\x4b\x96\x6d\xdd\x77\xb7\x0d\x1a\x2b\x8d\x86\xcc\xe1\xce\x32\xc8\x79\x51\xa0\x26\xbe\x8f\x5c\xe6\xa0\x8a\x96\x9f\xd3\x7f\xc6\xb2\x0c\x8d\x39\x63\x42\x9c\x77\x46\x4d\x1c\x99\xfa\xef\x69\x36\x03\x00\x20\xe6\x57\x77\xb4\x04\x7b\xcd\x2a\x03\x57\x77\xbf\x70\x53\x09\x76\x70\xba\x5d\xdd\xfd\xca\x6a\x61\x7f\x61\x96\x5d\xb8\x05\x6e\xa0\x36\x98\x83\x55\xf0\xc0\x77\x08\x0c\x32\x45\x1a\x5b\x84\x96\x5f\xc5\x33\x5b\x6b\x24\x8c\xac\x85\x00\x0e\xc3\x02\x3e\x29\x63\x7b\x8b\x2d\x5e\x03\x66\xab\x6a\x91\x77\xac\x3a\x6b\x5a\x8a\x16\xb2\xcf\xa2\xd9\x74\xff\xc7\x6a\x1b\xe7\x94\x46\x9d\x27\xb7\xdf\xa7\x11\x68\xa1\xb0\x41\xc5\x55\xa7\xed\x07\x47\x79\xe4\x48\x6b\x87\x55\x6c\x94\x0f\xed\x09\xe7\x3a\x2e\xb9\x3d\x6b\x97\xe8\x33\x2a\xeb\xa2\x47\xf2\x12\xef\xf3\x48\x19\xfa\x18\x14\xc5\xa2\xe5\x0c\xeb\x4e\xca\x18\x59\xcb\xd0\x11\xb6\xbf\x5a\xd2\xe7\x99\xff\xb7\x35\xfa\x3f\x51\x54\xa8\x9d\x8b\xd1\x92\x0b\xef\x46\x0c\x4f\x84\x3f\x55\x4c\xb3\xd2\x6d\x36\xb9\xbd\x82\x8f\xa0\xd1\x45\x6a\x86\xc4\x82\x92\x59\x37\xb5\xa0\x49\x95\x8e\x83\x46\x5b\x6b\x09\x1f\x1b\xaf\x79\x1f\x4e\xba\xb8\xa8\x25\x81\xf2\xc4\x67\xa9\xe0\xef\x9e\xe2\x22\xb3\x68\xbe\x3c\x9f\xaf\x86\x21\x41\x3e\x2d\xd9\x61\x83\x61\x67\x9d\x28\xb1\x08\x80\x9d\x90\xbb\x43\x85\x3f\x7a\xb2\x7f\x9c\x9d\x9f\xb7\x2c\x78\xd1\x44\x86\x67\x10\xb3\x4b\xdd\x15\x74\x0c\x94\xcc\xfc\x25\xe0\xe9\x79\x20\x22\x0d\xfa\x4d\x45\x92\x73\xac\x33\x43\x58\x4a\x2c\x71\x7e\x24\xbc\xba\x93\xed\x62\x7a\xb6\x8b\xb9\x7e\x54\x38\xf0\x56\x01\x7e\xa3\x32\xec\xfc\xca\x65\xa1\x74\xe9\xea\x27\x48\xc4\xdc\xd7\x05\xb3\x55\xfb\x8c\x39\x12\x4e\xf5\x64\xd1\xa5\xb3\x2f\xf9\x4c\xc2\x06\x7d\x19\xd9\x1c\x20\x2a\xc2\xa6\x2b\x2b\x12\xd4\x0e\xb5\x4b\x2a\x2a\x3b\x2d\x87\x07\xcd\xaa\x2d\xcf\x0c\x15\x17\x82\x70\x75\x77\x42\x3d\x68\x12\xa5\x73\x8b\x07\x83\x90\x87\x1d\xc9\x4a\x84\x42\x69\x8f\xd9\x55\xfe\x45\x4c\x9c\x1c\xbc\xfc\xc6\xa8\x2c\xad\x60\x7e\x25\xd4\x7e\x3e\x4a\xd7\x2f\x20\x24\x60\x45\xd7\x06\x97\x0f\xb3\x01\x0c\xb6\xd9\x68\xdc\x71\x66\x31\x07\x73\x28\x37\x4a\xfc\x16\x30\xd7\x9f\xff\x3d\x9f\x04\xe0\xd9\x8e\x43\xf8\x08\x39\x9a\x4c\xf3\xca\x79\x92\xcc\x5a\x69\xb5\xe3\x39\x9a\xc4\x11\xce\xe4\xaf\x41\x44\xaa\x11\x2a\x7f\x82\xee\x0e\xe2\x2d\x99\x25\x17\x67\xb5\xa6\x22\x71\x68\x3d\x29\xd4\x1e\x24\xda\xbd\xd2\x8f\x8b\x69\x3d\x22\xa4\xe3\xca\x5c\x7e\xb3\xa8\x25\x13\x20\xb8\x7c\xa4\x80\x62\xf0\xf5\xf6\x9a\xbe\x38\x25\xe8\x3a\x4e\x02\x97\x6d\x54\x6d\x1d\x82\xe6\xe6\xef\x2b\xd8\x87\x80\x41\xc2\xd7\xdb\xeb\x55\xda\x15\x2d\x2e\xbb\xad\x14\xd5\xe7\xae\x19\x80\x1d\x6a\xe3\xa2\x3d\x68\x9e\xca\x05\xa1\x1e\xd4\xb4\x70\xda\x35\x7d\xb1\x9f\x30\xe7\xcc\xa4\x12\xbf\xa8\x8c\x07\x2b\xb8\xbc\xd2\x48\x1d\xc6\x50\xde\xf7\x06\x8c\x27\xdd\xaa\x12\x2b\xf6\x80\x26\xf1\x2d\xdc\x28\x63\x1c\xf9\x23\x1e\x0c\x95\x39\xca\xde\x39\x97\xc6\xb2\x07\xcd\xca\xf9\x05\xcc\xed\x9e\x5b\x8b\x9a\xbe\xe6\xdc\x64\x4a\xe7\xf3\x0b\x40\x9b\x4d\xab\xe1\x45\x9a\x15\x3c\x79\x1f\x1e\x31\xe4\xf3\xec\xa5\x4b\x36\x4e\xae\xb4\xf8\xa5\x51\x9f\xee\x8d\x44\x52\x4a\x70\x9a\x9f\xd3\x33\x47\xdc\xd3\x43\xf6\x1a\x03\x34\x87\x46\x1b\x01\x57\xbb\xd6\xce\x08\xc3\xcd\x50\x4d\xd6\xc1\x12\x43\x82\x38\xf3\xd7\xb1\x4d\x86\xa4\x91\x3d\x60\x1d\x5b\x67\x48\xea\xcc\x00\x6b\x6f\x8e\x11\x54\x5e\x79\x82\xe5\xbf\x9d\xda\x8c\x74\xb5\x9c\x4b\x60\xb0\x67\x07\xb0\x5b\x66\x61\xcf\x85\x68\x2e\x4f\xdf\x60\xe7\xa0\x9c\x1a\x4c\xb4\x17\x04\xfc\x11\x8d\x8b\x6c\xe5\x44\xe0\x4e\xed\x62\x9a\xeb\xfb\x3f\xf0\x8a\x56\xa6\xed\x58\x9f\xfa\xbd\x88\x6b\x41\xc2\xf6\x89\x6d\x4d\xa0\xa6\xce\xa6\x17\x5b\x81\x67\x9e\xb0\x1b\x48\x60\xe6\xc3\xe8\x05\xdb\x7c\x82\x99\x22\x2e\x09\xc9\xf3\x74\x0f\x24\xb9\xf8\x6d\x2d\x88\xb1\x54\x64\xdd\xb0\x22\x2d\xba\x39\x68\xcf\xed\x36\x34\xb2\xd4\xf6\x2c\x5e\xd5\x90\x18\xb4\x75\x15\x9d\xf6\xdc\x68\x1c\x45\xdd\x85\x14\x49\x65\x0f\x5e\x6e\x55\x6f\x04\xcf\x20\x63\x15\xdb\x70\xc1\x2d\x6f\x4a\xea\xf1\xa9\xa5\xed\xd3\xd3\x3e\xe5\x86\xd9\x2d\x85\x7b\x23\x61\xbf\x45\xdd\x36\x57\x01\x12\x37\xa0\x31\x53\x65\x89\x32\x74\x61\x1b\xf4\x86\xc8\x8f\xd4\x60\xcf\x90\xf8\x53\x01\x6c\x7f\xa4\xf7\xc8\x8d\x57\xa6\x22\x14\xfb\x2d\xcf\xb6\x50\xd6\xc6\x12\x7f\xba\x5a\xbc\xb0\xc8\x21\x41\x77\x8d\x19\x72\xca\x9c\xd6\x08\x87\x69\x20\x0d\xb1\x47\xe2\x05\xfe\x6e\x20\x1b\x26\x18\xa5\x72\x33\xa2\xbb\x3c\x9e\xf4\xcc\x18\xac\x66\xc0\x7e\x01\x96\xe6\x3b\x66\x31\xc6\x15\xa6\xd8\x49\x13\xf9\xe6\x2a\xb6\x0d\x51\x50\x58\xe5\x9a\xed\xa9\x3c\xe4\x06\x12\x21\xee\x11\x85\xce\x46\xf1\x3b\x06\xb9\x61\x1d\x20\x7b\x68\x43\xcc\x94\xfc\xbe\x70\x0e\xa0\x32\xdf\x0b\xdd\xc7\x3e\xb9\x5f\xf8\x44\xe1\x06\x18\xd9\xd2\x6a\x9e\x51\xab\x1a\x5e\x2a\xfe\x5b\x73\xba\xc1\x52\xc4\x8e\x49\xf2\xfe\xb0\xb8\x0d\x2c\xef\x7d\x62\x16\x2c\xc3\x97\x63\xe2\xda\xc1\x22\xc0\x2b\x07\xfb\xcf\xa0\xc8\xcf\x3e\xb4\xee\x5d\x6c\xdd\x8f\x96\xea\x48\xc7\x13\x22\xec\xf7\x2a\xc9\x0a\xa5\xdd\x33\x09\x57\x12\x73\xa8\xa2\x90\x0c\x1a\x27\x0c\xb9\x01\x49\x55\x53\x88\xc3\x88\x1d\x7c\xb1\xa4\xc1\xbf\xe4\x92\x97\x75\x39\x66\x82\x9b\x10\x68\x27\xf9\xb2\x89\xca\xe3\x6a\x5e\xd5\x32\x0b\x03\x08\x49\x17\x42\xed\x0d\x64\x1a\x7d\x71\x57\x05\xcd\x22\x58\x56\xf6\xd0\x95\x3d\x47\x49\xfe\x94\xd6\x15\xbe\xd4\x71\x2a\x5c\x05\xa1\xe7\xcd\x8f\x38\xc2\x89\xc1\x4b\xe2\xee\xca\xf0\x8a\x0e\x9c\x9d\xaf\xe0\xa7\x8f\xf2\x70\x1b\x2e\xff\xa7\xd4\x04\x8e\xf0\xe5\xe6\x74\xaa\xca\x5e\xf4\xde\x08\xc6\x4b\x60\x4a\x35\x55\x91\x52\xaa\xc9\x22\x30\x2e\xb2\xef\x95\x71\x91\xc7\xa9\xa6\x3c\x9c\x52\xf5\xad\xdc\x78\xfc\x15\xd6\x6e\x58\xf5\xbb\x95\x4a\xe3\x68\xf7\xd1\x57\x71\xc1\xcd\x97\x7a\x43\x71\x7e\xa6\x0a\x8f\xf1\xc7\xef\x9e\xc6\xeb\xd4\x33\x75\x45\x2b\x98\x37\xbf\x9b\xdb\xc3\x65\x89\xbb\x7b\xb8\xcc\x44\x9d\x23\x8c\x9f\x8f\xa6\xd8\x69\x6b\x9e\x02\x28\xd4\x9b\x0b\x18\xef\x0a\x03\xcc\x66\x7e\x38\x15\xe6\xcf\xd1\x05\x39\xca\x38\x2e\x61\x43\x55\x86\x2e\x3f\x45\x95\xa6\x6e\x34\xa0\x9b\xdf\x2f\xa2\x6d\x09\xbb\x7a\x33\x9f\x68\x25\xa1\x1d\x33\xba\x6c\xa3\x51\x23\xea\x70\x06\xa4\x71\xfe\xc1\x3a\x49\xc7\x21\x71\x9c\x86\xd4\x14\x47\x3f\x87\xc4\x71\x36\xc2\x3a\x49\xce\x69\x18\x9d\x51\x23\x30\xdd\xe2\x34\xa4\xe4\xe0\x70\x71\x1a\x5e\x72\x70\xb8\x38\x3c\xd8\x4f\x66\x58\x4f\xe6\xf7\xe9\xd3\x5d\xd7\x03\xbf\x3c\xdf\x7d\xee\xcf\x77\x7f\xc8\xbb\x74\x34\xdd\x75\xe0\x4e\x7e\xa5\x6e\x1f\x59\x5f\x35\xe1\x75\x7f\x02\x18\xce\x78\xbb\x13\x9f\xab\x1b\x16\xd3\x93\xdd\x2e\xb0\x09\x33\xdc\xd8\xf8\xd1\x7c\x82\x35\x76\xff\xdf\xd9\xcd\x2a\xcb\x04\x98\xba\xaa\x44\xfb\x0a\xe8\x50\x7c\x1f\xde\x18\xa7\x66\xa5\x3b\x3a\xf8\xc5\x9f\x9b\xfe\x33\x8f\x67\xbc\x82\xaf\x57\xfc\xdb\xdf\xfe\x3a\x76\x4f\xdb\x8e\x4f\x43\x36\xfa\xc2\x12\x20\xae\x21\x3a\x30\x88\xe9\xe7\x19\xfc\x2f\x00\x00\xff\xff\x87\x41\x46\xa9\x53\x1d\x00\x00" +var _fungibletokenmetadataviewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x59\x5f\x6f\x1b\xb9\x11\x7f\xd7\xa7\x98\xea\xe1\xce\x06\x1c\x29\x09\x8a\xf6\x20\x9c\x9a\xcb\xe1\x6c\xb4\x80\x83\x18\x8e\x73\x7d\xac\xa9\xdd\x59\x8b\x30\x97\xdc\x92\x5c\x29\x82\xe1\xef\x5e\x0c\xc9\xdd\x25\xf7\x8f\x2c\xdf\xf5\x80\xd3\x83\x23\x91\xc3\x99\xdf\xfc\xe5\x0c\xc3\xcb\x4a\x69\x0b\x57\xb5\x7c\xe0\x1b\x81\x77\xea\x11\x25\x14\x5a\x95\x30\x4f\xd6\xe6\xb3\x40\xf9\x09\x2d\xcb\x99\x65\xbf\x72\xdc\x9b\x40\x99\xac\xb5\x94\xf4\xeb\x16\x8d\x12\x3b\xd4\x81\x30\x5e\x9a\xcf\x66\xcb\xe5\x12\xee\xb6\xdc\x40\xa6\xa4\xd5\x2c\xb3\xc0\xcb\x4a\x60\x89\xd2\x1a\xb0\x5b\x84\x32\x30\x06\x63\x99\xcc\x99\xce\xa1\xd2\xaa\x52\x06\x73\x77\x96\x4b\xb8\xba\xfe\xd7\xcd\x9b\x77\x6f\x7f\xf8\xfb\xc2\xad\xb8\x3f\xb7\x58\xac\x60\x6b\x6d\x65\x56\xcb\xe5\x03\xb7\xdb\x7a\xb3\xc8\x54\xb9\x54\xb2\x10\x6a\xbf\x2c\x04\xaf\xcc\x72\x23\xd4\x66\x59\x32\x2e\x97\xac\xaa\x04\xcf\x98\xe5\x4a\x2e\xdf\xbf\x7d\xff\xfe\xed\x0f\xef\xde\xbd\x29\x82\xf2\x6f\x2c\x69\x6f\xde\x34\x48\x16\x65\xde\x09\xfa\x62\x75\x9d\x59\x03\x4c\xe6\xa0\xd1\xa8\x5a\x67\x68\x20\x63\xb2\xd3\x03\x94\x44\x50\x1a\x4a\xa5\xd1\x9d\x69\x55\xb2\x87\x0a\xcd\x05\x64\x4c\x08\xcc\x61\x47\xa6\x5b\xc0\x25\xcb\xb6\xee\xbb\xdb\x06\x8d\x95\x46\x43\xe6\x70\x67\x19\xe4\xbc\x28\x50\x13\xdf\x47\x2e\x73\x50\x45\xcb\xcf\xe9\x3f\x63\x59\x86\xc6\x9c\x31\x21\xce\x3b\xa3\x26\x8e\x4c\xfd\xf7\x34\x9b\x01\x00\x10\xf3\xab\x3b\x5a\x82\xbd\x66\x95\x81\xab\xbb\x5f\xb8\xa9\x04\x3b\x38\xdd\xae\xee\x7e\x65\xb5\xb0\xbf\x30\xcb\x2e\xdc\x02\x37\x50\x1b\xcc\xc1\x2a\x78\xe0\x3b\x04\x06\x99\x22\x8d\x2d\x42\xcb\xaf\xe2\x99\xad\x35\x12\x46\xd6\x42\x00\x87\x61\x01\x9f\x94\xb1\xbd\xc5\x16\xaf\x01\xb3\x55\xb5\xc8\x3b\x56\x9d\x35\x2d\x45\x0b\xd9\x67\xd1\x6c\xba\x7f\x63\xb5\x8d\x73\x4a\xa3\xce\x93\xdb\xef\xd3\x08\xb4\x50\xd8\xa0\xe2\xaa\xd3\xf6\x83\xa3\x3c\x72\xa4\xb5\xc3\x2a\x36\xca\x87\xf6\x84\x73\x1d\x97\xdc\x9e\xb5\x4b\xf4\x19\x95\x75\xd1\x23\x79\x89\xf7\x79\xa4\x0c\x7d\x0c\x8a\x62\xd1\x72\x86\x75\x27\x65\x8c\xac\x65\xe8\x08\xdb\x5f\x2d\xe9\xf3\xcc\xff\x6d\x8d\xfe\x4f\x14\x15\x6a\xe7\x62\xb4\xe4\xc2\xbb\x11\xc3\x13\xe1\x4f\x15\xd3\xac\x74\x9b\x4d\x6e\xaf\xe0\x23\x68\x74\x91\x9a\x21\xb1\xa0\x64\xd6\x4d\x2d\x68\x52\xa5\xe3\xa0\xd1\xd6\x5a\xc2\xc7\xc6\x6b\xde\x87\x93\x2e\x2e\x6a\x49\xa0\x3c\xf1\x59\x2a\xf8\xbb\xa7\xb8\xc8\x2c\x9a\x2f\xcf\xe7\xab\x61\x48\x90\x4f\x4b\x76\xd8\x60\xd8\x59\x27\x4a\x2c\x02\x60\x27\xe4\xee\x50\xe1\x8f\x9e\xec\x1f\x67\xe7\xe7\x2d\x0b\x5e\x34\x91\xe1\x19\xc4\xec\x52\x77\x05\x1d\x03\x25\x33\x7f\x09\x78\x7a\x1e\x88\x48\x83\x7e\x53\x91\xe4\x1c\xeb\xcc\x10\x96\x12\x4b\x9c\x1f\x09\xaf\xee\x64\xbb\x98\x9e\xed\x62\xae\x1f\x15\x0e\xbc\x55\x80\xdf\xa8\x0c\x3b\xbf\x72\x59\x28\x5d\xba\xfa\x09\x12\x31\xf7\x75\xc1\x6c\xd5\x3e\x63\x8e\x84\x53\x3d\x59\x74\xe9\xec\x4b\x3e\x93\xb0\x41\x5f\x46\x36\x07\x88\x8a\xb0\xe9\xca\x8a\x04\xb5\x43\xed\x92\x8a\xca\x4e\xcb\xe1\x41\xb3\x6a\xcb\x33\x43\xc5\x85\x20\x5c\xdd\x9d\x50\x0f\x9a\x44\xe9\xdc\xe2\xc1\x20\xe4\x61\x47\xb2\x12\xa1\x50\xda\x63\x76\x95\x7f\x11\x13\x27\x07\x2f\xbf\x31\x2a\x4b\x2b\x98\x5f\x09\xb5\x9f\x8f\xd2\xf5\x0b\x08\x09\x58\xd1\xb5\xc1\xe5\xc3\x6c\x00\x83\x6d\x36\x1a\x77\x9c\x59\xcc\xc1\x1c\xca\x8d\x12\xbf\x05\xcc\xf5\xe7\x7f\xcf\x27\x01\x78\xb6\xe3\x10\x3e\x42\x8e\x26\xd3\xbc\x72\x9e\x24\xb3\x56\x5a\xed\x78\x8e\x26\x71\x84\x33\xf9\x6b\x10\x91\x6a\x84\xca\x9f\xa0\xbb\x83\x78\x4b\x66\xc9\xc5\x59\xad\xa9\x48\x1c\x5a\x4f\x0a\xb5\x07\x89\x76\xaf\xf4\xe3\x62\x5a\x8f\x08\xe9\xb8\x32\x97\xdf\x2c\x6a\xc9\x04\x08\x2e\x1f\x29\xa0\x18\x7c\xbd\xbd\xa6\x2f\x4e\x09\xba\x8e\x93\xc0\x65\x1b\x55\x5b\x87\xa0\xb9\xf9\xfb\x0a\xf6\x21\x60\x90\xf0\xf5\xf6\x7a\x95\x76\x45\x8b\xcb\x6e\x2b\x45\xf5\xb9\x6b\x06\x60\x87\xda\xb8\x68\x0f\x9a\xa7\x72\x41\xa8\x07\x35\x2d\x9c\x76\x4d\x5f\xec\x27\xcc\x39\x33\xa9\xc4\x2f\x2a\xe3\xc1\x0a\x2e\xaf\x34\x52\x87\x31\x94\xf7\xbd\x01\xe3\x49\xb7\xaa\xc4\x8a\x3d\xa0\x49\x7c\x0b\x37\xca\x18\x47\xfe\x88\x07\x43\x65\x8e\xb2\x77\xce\xa5\xb1\xec\x41\xb3\x72\x7e\x01\x73\xbb\xe7\xd6\xa2\xa6\xaf\x39\x37\x99\xd2\xf9\xfc\x02\xd0\x66\xd3\x6a\x78\x91\x66\x05\x4f\xde\x87\x47\x0c\xf9\x3c\x7b\xe9\x92\x8d\x93\x2b\x2d\x7e\x69\xd4\xa7\x7b\x23\x91\x94\x12\x9c\xe6\xe7\xf4\xcc\x11\xf7\xf4\x90\xbd\xc6\x00\xcd\xa1\xd1\x46\xc0\xd5\xae\xb5\x33\xc2\x70\x33\x54\x93\x75\xb0\xc4\x90\x20\xce\xfc\x75\x6c\x93\x21\x69\x64\x0f\x58\xc7\xd6\x19\x92\x3a\x33\xc0\xda\x9b\x63\x04\x95\x57\x9e\x60\xf9\x6f\xa7\x36\x23\x5d\x2d\xe7\x12\x18\xec\xd9\x01\xec\x96\x59\xd8\x73\x21\x9a\xcb\xd3\x37\xd8\x39\x28\xa7\x06\x13\xed\x05\x01\x7f\x44\xe3\x22\x5b\x39\x11\xb8\x53\xbb\x98\xe6\xfa\xfe\x0f\xbc\xa2\x95\x69\x3b\xd6\xa7\x7e\x2f\xe2\x5a\x90\xb0\x7d\x62\x5b\x13\xa8\xa9\xb3\xe9\xc5\x56\xe0\x99\x27\xec\x06\x12\x98\xf9\x30\x7a\xc1\x36\x9f\x60\xa6\x88\x4b\x42\xf2\x3c\xdd\x03\x49\x2e\x7e\x5b\x0b\x62\x2c\x15\x59\x37\xac\x48\x8b\x6e\x0e\xda\x73\xbb\x0d\x8d\x2c\xb5\x3d\x8b\x57\x35\x24\x06\x6d\x5d\x45\xa7\x3d\x37\x1a\x47\x51\x77\x21\x45\x52\xd9\x83\x97\x5b\xd5\x1b\xc1\x33\xc8\x58\xc5\x36\x5c\x70\xcb\x9b\x92\x7a\x7c\x6a\x69\xfb\xf4\xb4\x4f\xb9\x61\x76\x4b\xe1\xde\x48\xd8\x6f\x51\xb7\xcd\x55\x80\xc4\x0d\x68\xcc\x54\x59\xa2\x0c\x5d\xd8\x06\xbd\x21\xf2\x23\x35\xd8\x33\x24\xfe\x54\x00\xdb\x1f\xe9\x3d\x72\xe3\x95\xa9\x08\xc5\x7e\xcb\xb3\x2d\x94\xb5\xb1\xc4\x9f\xae\x16\x2f\x2c\x72\x48\xd0\x5d\x63\x86\x9c\x32\xa7\x35\xc2\x61\x1a\x48\x43\xec\x91\x78\x81\xbf\x1b\xc8\x86\x09\x46\xa9\xdc\x8c\xe8\x2e\x8f\x27\x3d\x33\x06\xab\x19\xb0\x5f\x80\xa5\xf9\x8e\x59\x8c\x71\x85\x29\x76\xd2\x44\xbe\xb9\x8a\x6d\x43\x14\x14\x56\xb9\x66\x7b\x2a\x0f\xb9\x81\x44\x88\x7b\x44\xa1\xb3\x51\xfc\x8e\x41\x6e\x58\x07\xc8\x1e\xda\x10\x33\x25\xbf\x2f\x9c\x03\xa8\xcc\xf7\x42\xf7\xb1\x4f\xee\x17\x3e\x51\xb8\x01\x46\xb6\xb4\x9a\x67\xd4\xaa\x86\x97\x8a\xff\xd6\x9c\x6e\xb0\x14\xb1\x63\x92\xbc\x3f\x2c\x6e\x03\xcb\x7b\x9f\x98\x05\xcb\xf0\xe5\x98\xb8\x76\xb0\x08\xf0\xca\xc1\xfe\x33\x28\xf2\xb3\x0f\xad\x7b\x17\x5b\xf7\xa3\xa5\x3a\xd2\xf1\x84\x08\xfb\xbd\x4a\xb2\x42\x69\xf7\x4c\xc2\x95\xc4\x1c\xaa\x28\x24\x83\xc6\x09\x43\x6e\x40\x52\xd5\x14\xe2\x30\x62\x07\x5f\x2c\x69\xf0\x2f\xb9\xe4\x65\x5d\x8e\x99\xe0\x26\x04\xda\x49\xbe\x6c\xa2\xf2\xb8\x9a\x57\xb5\xcc\xc2\x00\x42\xd2\x85\x50\x7b\x03\x99\x46\x5f\xdc\x55\x41\xb3\x08\x96\x95\x3d\x74\x65\xcf\x51\x92\x3f\xa5\x75\x85\x2f\x75\x9c\x0a\x57\x41\xe8\x79\xf3\x23\x8e\x70\x62\xf0\x92\xb8\xbb\x32\xbc\xa2\x03\x67\xe7\x2b\xf8\xe9\x29\xd5\xdb\xed\xbe\xdc\x91\x4e\x95\xd6\x8b\xde\xc3\xc0\x78\xdd\x4b\xa9\xa6\xca\x50\x4a\x35\x99\xf9\xe3\x22\xfb\xae\x18\x17\x79\x9c\x6a\xca\xad\x29\x55\xdf\xb4\x8d\x9b\x5f\x32\x71\x73\xbe\xdf\x97\x54\x1a\x47\xfb\x8c\xbe\x5e\x0b\x6e\xbe\xd4\x1b\x8a\xe8\x33\x55\x78\x60\x3f\x7e\xf7\x34\x5e\x91\x9e\xa9\xff\x59\xc1\xbc\xf9\xdd\xdc\x13\x2e\x1f\xdc\x2d\xc3\x65\x26\xea\x1c\x61\xfc\x7c\x34\xaf\x4e\x9b\xf0\x14\x40\xa1\xb2\x5c\xc0\x78\xff\x17\x60\x36\x93\xc2\xa9\x30\x7f\x8e\xae\xc2\x51\xc6\x71\xb1\x1a\xaa\x32\xf4\xf3\x29\xaa\x34\x15\xa2\x01\xdd\xfc\x7e\x11\x6d\x4b\xd8\x55\x96\xf9\x44\xd3\x08\xed\x40\xd1\xa5\x18\x0d\x15\x51\x2f\x33\x20\x8d\x93\x0e\xd6\x49\x0e\x0e\x89\xe3\xdc\xa3\xf6\x37\xfa\x39\x24\x8e\x53\x10\xd6\x49\x46\x4e\xc3\xe8\x8c\x1a\x81\xe9\x16\xa7\x21\x25\x07\x87\x8b\xd3\xf0\x92\x83\xc3\xc5\xe1\xc1\x7e\x06\xc3\x7a\x32\xa9\x4f\x9f\xe3\xba\x6e\xf7\xe5\x49\xee\x73\x7f\x92\xfb\x43\x5e\xa0\xa3\x39\xae\x03\x77\xf2\x7b\x74\xfb\x9c\xfa\xaa\x59\xae\x7b\xec\x1f\x4e\x73\xbb\x13\x1f\xa6\x1b\x16\xd3\x33\xdc\x2e\xb0\x09\xd3\xda\xd8\xa0\xd1\x7c\x82\x35\x76\xff\xdf\x29\xcd\x2a\xcb\x04\x98\xba\xaa\x44\xfb\xde\xe7\x50\x7c\x1f\x5e\x13\xa7\xa6\xa2\x3b\x3a\xf8\xc5\x9f\x9b\xfe\x0f\x1d\xcf\x78\x05\x5f\xaf\xf8\xb7\xbf\xfd\x75\xec\x72\xb6\x1d\x9f\x86\x6c\xf4\x2d\x25\x40\x5c\x43\x74\x60\x10\xd3\xcf\x33\xf8\x5f\x00\x00\x00\xff\xff\x4a\xf6\x46\xcb\x3d\x1d\x00\x00" func fungibletokenmetadataviewsCdcBytes() ([]byte, error) { return bindataRead( @@ -177,7 +177,7 @@ func fungibletokenmetadataviewsCdc() (*asset, error) { } info := bindataFileInfo{name: "FungibleTokenMetadataViews.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1, 0xf6, 0xa8, 0xb6, 0xf5, 0xc2, 0x65, 0x5c, 0xf0, 0xee, 0x2d, 0xf, 0xb4, 0x89, 0x2, 0xad, 0xcd, 0xb8, 0x52, 0xf6, 0x5c, 0xb0, 0xc5, 0xd1, 0xd8, 0xe6, 0xd5, 0x84, 0x17, 0x52, 0x8a, 0xc0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0x14, 0xb0, 0x9d, 0x1c, 0x34, 0x34, 0xca, 0xfc, 0x55, 0x46, 0xa0, 0x9a, 0xb8, 0xa, 0x9c, 0x19, 0x32, 0x1, 0x50, 0x13, 0xa8, 0xf2, 0x6c, 0xe2, 0x24, 0xfb, 0x15, 0x19, 0xb1, 0x9e, 0x49}} return a, nil } @@ -201,7 +201,7 @@ func fungibletokenswitchboardCdc() (*asset, error) { return a, nil } -var _multiplevaultsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x3d\xaf\xd3\x30\x14\x86\xf7\xfc\x8a\x57\x9d\x9a\x81\xf6\x0a\x21\x86\x48\x17\xf1\x21\xba\xdd\x05\x0a\x0b\x62\x38\xd7\x3d\x69\x2c\x1c\xdb\xb2\x8f\x53\x42\xd5\xff\x8e\xec\xa4\xbd\x2d\x5d\xf0\x60\xc5\x47\xf6\xfb\xf1\x28\x55\xa5\x7b\xef\x82\x60\x93\xec\x5e\x3f\x1b\xde\xba\x5f\x6c\xd1\x06\xd7\x63\x71\x33\x7b\x35\xbc\x5e\x54\x15\x29\xc5\x31\x2e\xc9\x98\x1a\xca\x59\x09\xa4\x04\xda\x0a\x87\x96\x14\xe3\x29\x19\xd1\xde\xf0\x77\x4a\x46\x22\x8e\x55\x05\x00\xeb\xf5\x1a\x9f\x9c\x15\xd2\x36\x42\x3a\x86\x38\x21\x83\x98\xbc\x37\x23\x5c\x5b\x66\xed\x6c\x06\xc9\x6e\x11\x3b\x6e\xb5\xe5\x1d\xb4\x85\x74\x3a\x5e\xdc\x8a\xe2\x1c\xe3\x3c\xab\x31\x50\x98\x54\xbf\x16\xd1\x06\xc7\xed\xe8\xb9\xc1\xb7\x8d\xfe\xfd\xf6\xcd\xe9\x25\xc7\x26\x59\x25\xda\x59\x88\x43\x60\x49\xc1\x4e\x89\x46\xcf\x39\x1b\x49\x39\xbe\x54\xeb\xbd\xe1\x9e\xad\xc4\x6b\xdf\x52\x7f\xd0\x7c\xc8\xa9\xb1\x67\x29\x7d\xb3\x63\x5c\xd6\x0d\x7e\xe4\xaf\x9f\x38\x96\x27\x79\x79\x17\xe5\xea\x98\x57\xe0\x98\x8c\xac\x0c\xdb\xbd\x74\x78\x87\x87\x06\x8b\xa7\x14\x33\xcc\x9d\x56\x24\x8c\x43\x0e\x73\x4b\xe5\x12\xf3\x8a\xc7\x0c\x2a\x2e\x2e\xf2\xa7\x6a\xda\x2f\x9d\x55\x60\x12\xfe\xdc\x7b\x19\x4b\x50\x90\x31\xee\x10\x41\x76\x44\x8a\x9c\xc9\xcd\x77\x40\xb0\x7c\xc0\x74\xab\xd0\xe8\x28\x82\xf0\x87\x83\xc3\x33\x19\xb2\x8a\xcf\xb2\x77\x40\x32\x8b\x7f\xad\x96\xc3\x99\x4c\x83\xbc\xd7\x0d\xde\x7f\xb0\xe3\x17\x8e\x2e\x05\xc5\xc7\x9b\x5f\x6c\x55\x9e\x9c\xfe\x0b\xdc\x9e\xe5\xe3\x94\x67\x59\xe3\xf1\x11\x0f\xab\x4c\x70\xdb\x71\x2e\x60\xc6\x39\xc8\x6e\xae\xd2\x67\xb2\x1d\x0d\x7c\xd3\xe4\x1e\x59\xde\xab\xd3\xdf\x00\x00\x00\xff\xff\x04\xad\xff\x8d\x15\x03\x00\x00" +var _multiplevaultsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xc1\x8e\xd3\x30\x10\x86\xef\x79\x8a\x5f\x3d\x35\x07\xda\x15\x42\x1c\x22\x2d\x42\x20\x7a\xdb\x13\x85\x0b\xe2\x30\xeb\x4e\x1a\x0b\xc7\xb6\xec\x71\x4a\xa8\xfa\xee\xc8\x4e\xda\x6d\xd8\x0b\x3e\x58\xf5\x68\x3a\xff\x37\x9f\x52\x55\xba\xf7\x2e\x08\x76\xc9\x1e\xf5\xb3\xe1\xbd\xfb\xc5\x16\x6d\x70\x3d\x56\x8b\xda\x9b\xe1\xed\xaa\xaa\x48\x29\x8e\x71\x4d\xc6\xd4\x50\xce\x4a\x20\x25\xd0\x56\x38\xb4\xa4\x18\x4f\xc9\x88\xf6\x86\xbf\x53\x32\x12\x71\xae\x2a\x00\xd8\x6e\xb7\xf8\xec\xac\x90\xb6\x11\xd2\x31\xc4\x09\x19\xc4\xe4\xbd\x19\xe1\xda\x52\x6b\xe7\x30\x48\x4e\x8b\x38\x70\xab\x2d\x1f\xa0\x2d\xa4\xd3\xf1\x96\x56\x26\xce\x18\xd7\x5a\x8d\x81\xc2\x34\xf5\x6b\x19\xda\xe0\xbc\x1f\x3d\x37\xf8\xb6\xd3\xbf\xdf\xbf\xbb\xbc\x70\xec\x92\x55\xa2\x9d\x85\x38\x04\x96\x14\xec\x44\x34\x7a\xce\x6c\x24\xe5\xf9\xb2\x5a\xef\x0d\xf7\x6c\x25\xde\xe7\x96\xf5\x07\xcd\xa7\x4c\x8d\x23\x4b\xd9\x37\x27\xc6\x75\xdd\xe0\x47\xfe\xf5\x13\xe7\xf2\x97\x7c\xbc\x8b\x72\xf7\xcc\x27\x70\x4c\x46\x36\x86\xed\x51\x3a\x7c\xc0\x43\x83\xd5\x53\x8a\x59\xe6\x41\x2b\x12\xc6\x29\xc3\x2c\xad\xdc\x30\xef\x7c\xcc\xa2\xe2\xea\x36\xfe\x52\x4d\xf7\x6d\x67\x15\x98\x84\xbf\xf4\x5e\xc6\x02\x0a\x32\xc6\x9d\x22\xc8\x8e\x48\x91\xb3\xb9\xb9\x07\x04\xcb\x27\x4c\x5d\xc5\x46\x47\x11\x84\x3f\x1c\x1c\x9e\xc9\x90\x55\x7c\x1d\xfb\x4a\x48\x76\xf1\x6f\xd4\x7a\xb8\x9a\x69\x90\xef\xba\xc1\xc7\xf3\xe2\xbb\xda\x94\xbe\xcb\x7f\xd9\x3a\xb2\x7c\x9a\x20\xd6\x35\x1e\x1f\xf1\xb0\xc9\xda\xf6\x1d\x67\x6a\x33\xce\xe9\x87\x99\xbf\xcf\x3a\x3b\x1a\x78\x81\xff\xda\x53\xbe\xab\xcb\xdf\x00\x00\x00\xff\xff\xfb\xe4\x4c\x60\x0a\x03\x00\x00" func multiplevaultsCdcBytes() ([]byte, error) { return bindataRead( @@ -217,7 +217,7 @@ func multiplevaultsCdc() (*asset, error) { } info := bindataFileInfo{name: "MultipleVaults.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa9, 0xb8, 0xb4, 0x8, 0xf9, 0x9b, 0x7, 0x1f, 0xfa, 0xda, 0xf2, 0x90, 0xe1, 0xa9, 0xa7, 0x6c, 0x4e, 0x82, 0x35, 0xce, 0x8b, 0xad, 0x4f, 0x9e, 0xce, 0x3b, 0xa4, 0xef, 0xce, 0xa8, 0xdd, 0xd2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0x4c, 0x8d, 0x93, 0x20, 0xfa, 0x5, 0xa0, 0xbd, 0x75, 0xac, 0x28, 0x2e, 0x9b, 0xa9, 0x15, 0x0, 0x51, 0xe1, 0x30, 0xcb, 0xde, 0x95, 0x17, 0x68, 0x5, 0x80, 0x7c, 0x52, 0xd1, 0x7d, 0x9c}} return a, nil }