From b87948956a84f94fa8539d7fea7abeb7c42f452f Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Fri, 19 Apr 2024 14:57:55 -0500 Subject: [PATCH 1/2] move withdraw event and add balance after params --- contracts/FungibleToken.cdc | 8 ++++---- lib/go/contracts/internal/assets/assets.go | 6 +++--- tests/example_token_test.cdc | 3 +++ 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/contracts/FungibleToken.cdc b/contracts/FungibleToken.cdc index 43280f2..15e56b7 100644 --- a/contracts/FungibleToken.cdc +++ b/contracts/FungibleToken.cdc @@ -44,10 +44,10 @@ access(all) contract interface FungibleToken: ViewResolver { access(all) entitlement Withdraw /// The event that is emitted when tokens are withdrawn from a Vault - access(all) event Withdrawn(type: String, amount: UFix64, from: Address?, fromUUID: UInt64, withdrawnUUID: UInt64) + access(all) event Withdrawn(type: String, amount: UFix64, from: Address?, fromUUID: UInt64, withdrawnUUID: UInt64, balanceAfter: UFix64) /// The event that is emitted when tokens are deposited to a Vault - access(all) event Deposited(type: String, amount: UFix64, to: Address?, toUUID: UInt64, depositedUUID: UInt64) + access(all) event Deposited(type: String, amount: UFix64, to: Address?, toUUID: UInt64, depositedUUID: UInt64, balanceAfter: UFix64) /// Event that is emitted when the global burn method is called with a non-zero balance access(all) event Burned(type: String, amount: UFix64, fromUUID: UInt64) @@ -94,7 +94,6 @@ access(all) contract interface FungibleToken: ViewResolver { // `result` refers to the return value result.balance == amount: "Withdrawal amount must be the same as the balance of the withdrawn Vault" - emit Withdrawn(type: self.getType().identifier, amount: amount, from: self.owner?.address, fromUUID: self.uuid, withdrawnUUID: result.uuid) } } } @@ -187,6 +186,7 @@ access(all) contract interface FungibleToken: ViewResolver { // self.balance == before(self.balance) - amount: "New Vault balance must be the difference of the previous balance and the withdrawn Vault balance" + emit Withdrawn(type: result.getType().identifier, amount: amount, from: self.owner?.address, fromUUID: self.uuid, withdrawnUUID: result.uuid, balanceAfter: self.balance) } } @@ -198,9 +198,9 @@ access(all) contract interface FungibleToken: ViewResolver { pre { from.isInstance(self.getType()): "Cannot deposit an incompatible token type" - emit Deposited(type: from.getType().identifier, amount: from.balance, to: self.owner?.address, toUUID: self.uuid, depositedUUID: from.uuid) } post { + emit Deposited(type: before(from.getType().identifier), amount: before(from.balance), to: self.owner?.address, toUUID: self.uuid, depositedUUID: before(from.uuid), balanceAfter: self.balance) self.balance == before(self.balance) + before(from.balance): "New Vault balance must be the sum of the previous balance and the deposited Vault" } diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 61f1706..fa9175f 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,7 +1,7 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: // ../../../contracts/ExampleToken.cdc (9.619kB) -// ../../../contracts/FungibleToken.cdc (9.927kB) +// ../../../contracts/FungibleToken.cdc (10.053kB) // ../../../contracts/FungibleTokenMetadataViews.cdc (6.596kB) // ../../../contracts/FungibleTokenSwitchboard.cdc (18.111kB) // ../../../contracts/utility/Burner.cdc (1.997kB) @@ -99,7 +99,7 @@ func exampletokenCdc() (*asset, error) { return a, nil } -var _fungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x5a\x4b\x73\x1b\xc7\x11\xbe\xe3\x57\x74\xd1\x07\x01\x0e\x04\xfa\x90\xca\x81\x15\x5b\x96\x6c\xab\x4a\x07\xa7\x52\x16\x65\x1f\x92\x54\x61\xb0\xdb\x0b\x8c\x39\x98\x59\xcf\xcc\x02\x42\x58\xfc\xef\xa9\xee\x79\xec\xce\x62\x41\x52\x96\xa2\x8b\xc8\xdd\x99\x7e\x3f\xbe\xee\xe5\xf5\xd7\x5f\xcf\x66\x5f\xc1\xed\x0e\xe1\xad\x32\x47\x78\xdb\xe9\xad\xdc\x28\x84\x5b\x73\x87\x1a\x9c\x17\xba\x16\xb6\x9e\xcd\xbe\xfa\x0a\xd6\xe9\x25\xbf\x5b\x43\x65\xb4\xb7\xa2\xf2\xb3\x19\x5f\x9f\xbe\x09\xd2\x81\x36\xa0\x8c\xde\xa2\x05\xa1\x41\x6a\x8f\xb6\x11\x15\xce\xfc\x4e\x78\x10\x4a\x41\x93\xae\x7a\xbe\x9a\xe8\x3a\x38\x9a\x4e\xd5\xb0\x13\x07\x7a\x45\xcf\x1b\x63\xf7\xe0\xcd\x6a\x36\x7b\xd7\x80\x80\xce\xa1\x75\x70\x14\xda\x3b\x3a\x50\x63\xab\xcc\x09\x04\x68\x3c\x8e\x68\x2d\xc1\xef\x50\xda\x5e\xe6\xda\x20\x09\xe6\x41\x23\xd6\x74\x59\xee\x5b\x85\x7b\xd4\x9e\x4e\x42\xa1\x6a\x2f\xf3\x12\x36\x9d\x8f\xa4\x98\x81\x9b\xd5\xe6\x02\x89\x7c\xc9\x41\x8d\x8d\xd4\x58\x83\xd4\xe0\x77\xd2\x65\x29\x56\xc1\xae\xbf\x8a\x4e\xf9\x35\x58\x74\xa6\xb3\xd5\xe0\xe6\x6c\xf6\x93\xa8\x76\x63\xfb\xe4\x73\xfe\xd4\x22\x33\x77\xe7\xdc\x2f\x13\x8d\x4c\xff\x69\xcd\x41\xd6\x68\xd7\x4b\x58\xff\x82\x15\xca\x03\xff\x2c\x74\x0d\xeb\x37\x42\x09\x5d\xe1\xd4\x6d\xc7\xde\x76\x23\xf5\x2a\x25\x2c\x42\x6b\xf1\x65\x65\x74\x2d\xbd\x34\xda\x31\xa9\xd6\x38\x3f\x7c\xc6\x3e\xb7\xe8\xbc\x95\x95\x9f\x91\xa0\xf8\x11\xab\x8e\x5e\x82\x69\x58\xf2\xa6\xd3\x55\x38\xcc\xe6\x42\x60\x4d\x56\xcc\xf7\x04\xc4\xc7\x61\x2b\xac\xf0\x08\x1b\xac\x44\x47\xb2\x78\xd8\xca\x03\x3a\x3e\x4e\x41\xc1\x3f\x88\x8d\x54\xd2\x9f\xc8\x36\x6e\x27\x2c\xce\x04\x58\x6c\xd0\xa2\xae\x38\x9e\x82\x1b\x99\x7a\x90\xcb\x68\x75\x02\xfc\xd8\x1a\x17\x49\x35\x12\x55\xed\x7a\x89\x66\x52\x83\xd1\x08\xc6\xc2\xde\x58\x4c\x12\xf7\xa6\xa0\xc0\xa4\x98\x76\x26\x0a\x14\x22\x74\x24\xcd\x5e\xdc\x21\x54\x9d\xf3\x66\x9f\x2d\x1c\x4d\x93\x9d\x48\xb6\x29\xad\x4c\x01\x6e\xe0\x20\xac\x34\x1d\x9d\x96\x7a\xeb\xe0\x28\xfd\x8e\xc9\x87\x68\x5c\xcd\xde\x1a\x0b\xf8\x51\x10\x99\x25\x08\x68\x44\x57\xa1\x87\x4a\x68\xd8\x60\x4f\x1d\x6b\xd8\x9c\x52\x42\x49\xbd\x9d\x05\x73\x40\x0a\x8a\x22\x5a\xbe\xbe\x9e\xcd\xe4\xbe\x35\xd6\xc3\xd5\xaf\x12\x8f\xbf\xa0\x33\xea\x80\xf6\x2a\x3f\x7d\xd3\x59\x4d\xbf\xcf\xae\xaf\xaf\xcb\xd4\xa1\x27\xc5\xd3\x58\x1e\xb2\x24\x22\xb8\xda\xed\x38\xd5\xcb\x18\x2e\xe3\x9e\xc9\x0c\xe4\x12\x55\x85\xce\xcd\x85\x52\x8b\x9c\x50\xfd\xfb\x52\x8c\x1b\x18\x0a\x0e\xf7\xb3\x19\x00\xc0\xf5\x35\xbc\xd6\x80\xda\x4b\x1f\xb9\x36\xc6\x52\x45\x32\x47\xa9\xb7\x2c\x02\xd9\xb7\xb6\xe2\x28\x14\x3b\x9b\x8d\x0c\x8d\x35\x7b\x10\x21\x72\x98\xd0\x50\x94\x21\xb9\xdf\xe2\xed\xc4\xee\x9a\x0b\x2d\x1e\x82\x82\xe4\x6e\x07\xb8\x97\x9e\xfc\x71\xdc\xa1\x4e\x0c\x28\xc8\x13\x67\xfd\x04\xbb\xc3\x90\x91\x9e\x53\x4d\xb8\x81\xf7\xde\x4a\xbd\x5d\x82\xd8\x9b\x4e\xfb\x1b\xf8\xf0\x56\x7e\xfc\xdb\x5f\x97\x4c\xea\x06\x5e\xd7\xb5\x45\xe7\x5e\x85\xdf\x3f\x7c\x78\xf7\xe3\x0d\x7c\x78\xa7\x3d\x9d\xc8\x6c\x87\x8f\x17\x7f\x46\x81\x1a\x5b\xe3\xa4\x0f\xa5\xf1\x71\xf1\x7f\x4c\x47\x9f\x10\xdf\x9b\xa1\xf0\xde\x94\xa2\x67\x86\x17\x44\xff\xe9\x11\xb1\x77\x08\x5b\x65\x36\x42\xc1\xa6\xb3\x1a\xf6\xe8\x77\x86\x7b\x57\x25\x94\xa2\x53\x94\x67\x02\xb4\xd1\x2f\xff\x8b\xd6\xc0\x26\x54\xc8\x0b\xfa\x70\x3e\x3c\xa5\xcc\xd8\xf6\x03\x49\xdf\x0c\xa8\x53\x02\x0d\x8d\xdf\x47\x38\x6b\xd2\x86\x8c\x75\x7d\xc3\xcd\xd5\xea\xdf\xf9\x1e\x85\xf5\x16\xbd\xa7\xa8\x8e\x92\x83\xe4\xdc\xe7\xf4\x2b\xf8\x0c\xb5\x39\x2f\xff\x49\x34\xb8\xe7\xc3\xe3\x0b\x07\x61\x13\x83\xa4\x28\x9f\x7b\xe8\x75\x4b\x25\xe6\x39\xca\x21\xc9\x58\xc5\x62\x6c\xf1\x8f\x4e\x5a\x4e\x2c\xc7\x1a\xa5\x50\xa5\xfa\x95\x88\x0c\x33\x94\x4b\x73\x2a\x28\x9c\xd0\xa7\x16\x57\x67\x7c\xdf\x79\xc8\x60\x20\x32\x2c\x79\x19\x0d\xeb\x4d\xea\x88\x3b\xb4\xb8\xcc\x77\x07\x0d\x48\xa1\xa0\x82\x6f\xda\x18\x4e\xad\x71\x4e\xc6\x9a\x6f\x1a\xa8\x2c\x0a\x16\x22\xd6\xfd\xe8\x37\xeb\x7a\xd1\x49\x63\x42\x13\x0c\x4a\xc8\xa6\xc2\x4a\x75\x8a\xe8\x82\x7b\x95\x39\xea\x64\xde\xd5\xa7\x38\x2d\x97\xf5\x58\xf8\x12\xcb\xb7\x31\x54\x38\x43\xdd\x1d\x88\x2c\x16\x48\xc2\x57\xae\xc5\x4a\x36\xb2\x8a\xb1\xdb\x97\xc0\x82\x8a\x74\x20\x0e\x42\x2a\x11\x4a\x35\x35\x9a\x5c\x45\x8a\x83\xb7\x01\xfb\x50\xa1\xdf\x70\x9f\x6e\x3a\xc5\xac\x0f\x46\xd6\xd0\x0a\x2d\x2b\xb2\x10\x67\x24\xe5\x1d\xff\x92\x4a\xe8\x90\x50\xce\xd9\x1c\xcc\x0e\x3a\x7d\xa7\xcd\x88\xe1\xeb\x3a\xe0\x0e\xa1\xd4\x69\x49\x2a\xb1\x63\xb2\x8a\x0e\xda\x2e\x70\xe1\x78\xd9\x77\xca\xcb\x56\x21\x1c\xa8\x54\x8d\x74\x8c\xe8\x20\xa3\xad\x6a\x87\xd5\x1d\x38\xb3\xcf\x28\x20\xdc\x82\x4e\x7b\xa9\xf8\x41\x8d\x4e\x5a\xac\xa3\xf1\xc6\x26\xb3\x28\xaa\x1d\xd6\x4b\x68\x8d\xa7\xf8\x24\x19\x61\x87\xaa\x4d\x5a\x43\x8b\x96\x53\x34\x7b\x3b\xdd\x9e\x4e\x3d\x89\x47\xca\x7d\x90\xee\x75\xf2\xc6\xad\x49\x8d\x61\x5e\x56\x9f\xc5\x0d\xbc\x31\x46\x95\xd1\x90\x4c\x0d\xae\xdb\x44\x00\xfe\x68\x3a\xa5\x40\x2b\x88\x10\xe8\xb3\xe8\x3b\x4b\x5d\x20\x82\xab\x0c\x52\x2c\xee\xcd\x81\x1b\x42\x00\x2b\x83\x8b\xa3\x40\xe9\x61\xe0\x0b\x17\xd5\x04\x85\x07\x54\x64\xba\x75\xd4\x3b\x29\xb7\x58\x17\xb7\xdf\x1b\x42\x8e\xc6\x92\x8f\x29\xba\xc2\x6d\xe9\x97\x8c\xdd\xc2\x4c\x81\xd2\xef\xd0\xe6\xdc\x02\xb3\xf9\x1d\x09\x3e\x78\x87\xaa\x29\xa8\x19\x9e\x5a\x62\x57\xaf\x07\x08\x92\xb5\x5a\x27\x19\xd6\xd3\xda\x8c\x25\x65\x0f\x1d\x2f\x3a\xe5\xfb\x7b\xb6\xd8\xc3\xa0\xbc\xd2\x3f\x42\xd1\xa3\x47\x81\x11\xac\x2d\xba\x88\xf3\x1b\x46\x9a\x26\x1a\x9a\x3c\x00\x07\xa1\x3a\x3c\xbb\x16\xae\xac\x52\xee\x7c\xfb\x6d\x6a\x4d\x67\x27\xe9\xdf\xd5\x6f\x3d\x04\x8a\x65\x60\xdf\x39\x4f\x19\x4c\x9c\x9c\xd8\x23\x08\x57\x64\x63\x4c\x88\x1e\xc1\xb0\x52\x57\x67\xe4\xa9\x05\x9f\x41\x17\x72\xc0\x6a\x8b\xfe\xf6\xd4\xe2\x7c\xb1\x92\x35\x99\xbe\x91\x68\xfb\x0e\x1a\xfe\x4f\x68\x86\x2f\x98\xa3\x46\xfb\x6a\x25\x02\x38\x18\x36\x57\x7e\xdd\x75\xb2\x3e\xc3\x36\xd1\x0e\xf4\x6e\x51\xc8\xf6\x30\x2b\x7f\x1a\x74\xaf\x34\x29\x7d\x7e\xf7\x8a\x68\x65\xa2\x79\x49\x1d\xbd\xf8\x8c\xe6\xf5\x1b\xa6\x96\x21\x75\xa5\xba\x1a\x41\x40\x1e\xb7\x82\x18\x5c\xa9\x4a\x07\xc5\xb6\x95\xa9\x1c\x91\x87\x68\x8a\x1e\x1a\x5b\x9e\x33\xb5\x04\x33\x84\xa9\x25\xd3\xa1\x31\xa3\x36\xe9\xd0\xf4\x88\xb2\x04\x25\xef\x10\x5c\xab\x24\xa3\xfc\x3d\x74\x2d\x55\x8d\x4c\xc4\xa1\xae\xc3\x0b\x9a\x78\x64\xc3\xf9\xe6\xa1\x55\x61\xc0\x82\xe7\xb7\xbd\xe4\xac\x71\xdb\x8b\xa6\x07\x2f\xee\xb0\xaf\x52\x54\xb9\xe2\x1b\xaa\x16\x17\xdc\x50\x0c\xdf\x8f\xa5\x3c\x0b\x45\xd9\x1e\x69\xce\x43\xb4\xa6\x0c\x5f\x94\x22\x6d\xd1\xbf\xef\x5a\x9a\xa6\xb0\xe6\x03\x14\xfe\x6e\x50\x49\x6b\xc9\xd5\x50\x58\x46\x13\x71\x68\xa5\x33\x67\xd5\xf7\xb8\x43\xae\x6d\x6c\xf2\x53\xcb\xcd\xb1\xea\x2c\x19\x51\x9d\xc0\x25\x2e\x34\x00\xf2\x32\xa2\x08\xe9\xb1\x02\xb9\xab\x4c\x0b\x38\x5f\xdc\xc0\xfd\x2d\xe7\x2d\xf5\x93\x87\x52\xa9\x5f\xa2\xf4\x49\x22\x63\x39\x52\x19\x6c\xcb\x03\xb5\xf0\x28\x1e\x71\x6c\xb3\x4c\x78\x2e\x12\x37\xf3\xd0\x61\x63\x50\x0b\x1d\x6f\x81\xd0\xa7\x40\x28\xce\x90\xbf\x53\x75\x8a\x05\xd0\xdb\x0e\x89\x68\x8d\x4d\x1e\x3f\x2e\xaa\x28\xdd\xb9\x86\xb1\x28\xd1\x8f\xa9\x67\x8e\x2a\x42\x3f\xd7\x14\xa0\xb2\xc6\x00\x3a\xd8\xc4\x7d\x48\x86\xee\xc3\x0b\x82\x7e\x9d\x95\xf5\x5d\x26\x78\xbd\x84\x5b\x2b\xb4\x6b\xd0\x1a\xbb\xcc\xf0\x2d\x6c\x67\xd2\x14\xdb\x83\xd0\xae\x9f\x6a\xc8\xbe\xbd\x8b\x4f\xe8\x3f\x25\x5f\x58\x95\x9b\x81\x34\x3d\xe3\x2c\xd7\x70\x8e\x5e\xa5\x1f\x96\x61\xe2\xb1\x2b\xfa\x8f\x61\xe0\x18\x68\x4a\x54\x75\x10\x92\x90\xc5\xdd\x59\xbf\x10\xc1\xb9\xcf\x1e\x2a\x0a\xea\x3f\xc4\x19\x8d\x50\xa1\x18\x6f\xcb\xa4\xe3\x91\x0e\x6b\x38\x48\x11\x56\x63\x51\x58\x7a\x3c\x5f\xac\xe3\xb0\x57\x50\x7c\x37\x5a\x4f\xc4\xc2\x46\xa1\xb6\x31\xe6\xee\x0e\x91\x61\x9a\xb1\xa1\x87\xd1\x73\x9e\xfc\xca\x6c\x64\x7d\x63\x54\x6e\xb0\x9c\x38\xa3\xc2\x24\x5e\x8d\xce\x5b\x73\xc2\xba\x44\x79\x3f\x13\xd5\xf1\x9e\xe4\x28\x95\xca\xb5\xba\x6b\x6b\xe1\xb1\xaf\xad\x2f\xa8\xff\x7b\xa1\x38\x02\xd4\xa9\x94\xc5\x10\x44\x50\x04\x72\x82\x1b\x72\x41\x0e\xfb\xd5\x0d\xa2\x4e\x86\x0a\x18\x2e\x40\xb5\x0c\xfd\x02\xcd\xd5\xa3\x66\xe2\xb8\x4e\xdb\x50\x87\xbe\xf0\xb2\x37\x10\x46\x67\x6c\x8c\x0d\x52\x53\xa5\x1f\x6d\xfd\xce\x07\x06\xc9\xa8\xa6\xb5\x61\xb4\x0e\x56\xe3\x76\x1f\x71\xa9\x6b\xc5\x7e\xcf\x20\x9e\x1a\x54\x18\xbd\xa3\x37\x56\xe3\x78\x4a\x7b\xa2\x50\x99\x49\x5d\x8a\x9d\x8d\xa8\xee\xe6\x8b\x31\xe6\xb2\x38\x01\xb9\xd8\xdd\xc5\x78\xff\x0c\xbc\xc2\x47\x36\x29\x83\x26\xa0\xc9\x25\xf8\x01\x97\xb1\xdf\x90\x26\x41\xb8\x6f\x56\xdf\xdc\xc0\xd5\xed\xc0\xde\x09\xa5\xb1\x1f\xa2\xed\xeb\xce\xa6\xcd\xd6\x50\xf9\xb4\xef\x70\x26\x16\x12\x2e\xb0\x54\x4b\xe8\x3e\xd9\x17\xeb\xab\x47\x64\x2c\x85\x21\x59\x06\x08\xea\x73\xfa\xdc\xa1\xef\x73\xa3\xde\xc6\x13\x54\x6c\xef\xa1\x11\xb8\xb8\x8b\xad\xf1\x23\x05\xe0\xa8\x3d\x33\x40\x8b\x6d\x60\x94\x55\xc0\x15\x9a\xd1\x53\xcd\xf3\x7d\x1e\xeb\xe3\x48\x27\x2c\x02\x7e\x6c\xb1\xf2\x58\x8f\x93\x8a\xa7\xc2\xdc\xbf\xfa\x31\x9d\xf8\x2f\x83\x41\xf1\x14\x52\x4c\xf7\xb9\x11\x67\x50\xfe\x1e\x52\xc8\x52\x90\x27\x98\xc8\x9a\x9e\x25\xc7\x67\xb4\xe8\x51\x2c\x5d\x5f\xc3\x1b\x54\xe6\x18\x07\x5a\x32\xc5\x60\x49\x9c\x60\x9f\xeb\x6c\x04\xb5\xb6\xd3\x2f\xbd\xdc\x47\x68\xc1\xed\x6c\x4c\x8f\x4d\xb2\xc5\xd4\x84\x87\x3b\xb6\x56\x30\x96\xcb\xbd\x27\xf6\xc0\x08\x12\xcb\x0f\x4c\xab\xf0\x05\x63\x05\x05\x7d\xd9\x9c\x65\x9c\x7b\xdf\x6d\x48\x9a\xb9\x69\x42\xa7\xfe\xfb\xf7\xf7\x13\x94\x1e\xbe\x9b\x2f\xc6\x49\x0e\x3c\x0e\x31\x54\xb8\x2f\xc9\xde\x30\x76\x28\xc3\xfc\x01\x50\xb9\xa9\xaa\x90\xb1\x0e\x8f\x8a\xfb\xd6\x9f\x86\x71\x1c\xa7\xa3\x14\x7c\x3c\x94\xb1\x6f\xb3\x19\x8e\x3b\x03\xb5\xd1\x2f\xfc\x14\xe5\x7e\x27\x3e\x69\x9f\x25\xb8\xae\xda\x11\x93\xf2\xf5\xfb\xa3\xf4\xd5\x6e\x63\x84\xad\xd7\x4b\x58\xf3\xb3\xb7\xc6\x1e\x05\xcd\xc5\x6b\x40\x5f\xad\x2e\x9a\xe2\xe1\xe2\x38\x54\xf6\xdd\x30\x59\xc4\xbd\x4a\x09\xe9\xce\x71\xe6\xaf\x5f\x0a\x81\x8d\x1c\x10\x85\x4e\xee\x9b\x4c\x81\x7f\x11\x91\xff\xc0\xab\x57\xd0\x08\xe5\xf0\x92\x42\x13\x1b\x90\x75\x28\xe2\xeb\xbe\x11\x32\xdd\x17\xae\x58\x01\xc3\xe4\xf6\x43\xe3\x71\xbc\x01\x49\x84\xc9\x2e\xe7\xf7\xbf\xf4\xda\x60\xb2\x85\x15\xc5\xfa\xbb\x27\x86\xff\xd7\x61\xe2\xef\x47\xf9\xd4\x55\x14\x3a\x1e\xfe\x34\x83\xa0\x3f\x3a\xa1\xc2\x6f\x13\x7b\x80\x89\xe9\xff\x59\x2d\x2e\xce\xe7\x39\x25\xa9\xcd\x8d\x93\xf4\xea\xe7\x21\xda\x4f\xfb\x88\xbe\x6d\x50\x5e\xd0\x9d\xf3\xe5\xc3\xf5\x35\x8d\xb9\xe1\x4e\x8b\x95\x14\x2a\x97\x59\x58\x07\x8c\xb2\xe6\x81\x38\xc2\x98\x90\xb6\x51\xa5\x7e\x1f\xcc\x9f\x08\xa7\x88\x47\x8c\xb5\xc1\xad\xd4\x9a\xc1\x62\x09\x74\xfa\x0f\x9f\x13\xb7\x9f\x6c\xf7\x41\xc0\xf9\xf0\xf1\x02\x5e\x3e\xee\xcb\x7f\xe4\x70\x1c\x43\x04\x2e\x4f\x71\xd2\xee\xfd\x46\x90\x8b\xbf\x35\xa6\xe3\x22\x0c\xe6\xe3\xc5\x4e\x7a\x7f\xc9\xc5\x0f\xcf\x9d\xbe\x45\x5d\xd3\xe4\xed\x86\x90\xf1\x2c\x9e\xce\x2a\xc9\xa7\xcc\xde\x53\x6d\x61\xdc\x13\x68\xd4\x74\x0e\xed\x00\x28\x57\x46\x57\x16\x7d\x6c\x7a\xd1\x3c\xfd\xf7\xad\x8c\xe4\x53\x00\x8e\xe9\xc5\x0e\x30\x98\x5f\xf3\xd0\x9b\xe0\x58\xa4\xf6\x8c\xfc\x25\x5d\x56\xd2\xbd\xd3\xce\x93\x55\xe6\x65\x4a\x2c\x6e\x60\xda\xfb\x3f\x04\x40\x97\xac\xcf\x7f\x89\x51\x99\x7d\x2b\xfc\x60\x58\x22\xfd\x2e\xec\xe9\xc6\xdf\xe8\x58\x8c\xc7\x71\x2f\x1f\xc9\xb8\xd7\x9b\x0b\xbb\xba\xf4\x1d\x6f\xb0\xa9\x1b\x7d\xca\x63\x42\x5f\x08\x28\x4f\x66\xce\x5f\xd2\xe3\xa1\xc8\x8b\x3f\x95\x47\xae\xdb\x3f\x99\x40\x7d\xe8\x3c\x5a\x1b\x47\x89\xc3\x9f\x90\xf0\x27\x82\x17\x31\x67\x94\x32\x47\xc7\xd3\x67\xf8\xa3\x07\x13\xcf\x14\xbd\x87\xe3\x6d\x27\x28\xd5\xce\x3e\x5d\xc2\x13\xf9\x33\x66\x39\xff\xe4\x1d\xf5\xf9\xb2\xb9\x9f\x54\x34\x1e\xd5\x29\xf2\x88\xa6\x08\xa6\x64\xb8\x3c\x14\xf6\x3c\x26\x9f\xd5\x1c\x9e\x66\x92\x5b\x46\x6a\x16\x9c\xee\xe9\x5b\xdd\xe1\x71\xef\x40\xb9\x09\xfa\x3f\xf8\x67\x6a\x71\x33\xe9\x97\x43\x02\x3b\x19\x29\x4d\x17\xbb\x81\x87\x26\x1c\x36\x65\xd4\x01\x65\xb6\x67\x06\xf5\xa1\x9a\xe5\x4f\xa7\x7b\xe1\xab\x5d\xf1\xdd\xeb\xbc\x98\x7c\xe9\x60\x48\x2e\x78\xf8\x5f\x00\x00\x00\xff\xff\x2f\x67\xab\xdf\xc7\x26\x00\x00" +var _fungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x5a\x4f\x73\xdb\x36\x16\xbf\xeb\x53\xbc\x71\x0f\xb1\xba\x8a\xdc\xc3\xce\x1e\x3c\xdb\xa6\x49\xdb\xcc\xe4\xd0\x9d\x9d\xc6\x69\x0f\xbb\x3b\x23\x88\x7c\x94\x50\x83\x00\x0b\x80\x52\xb4\x19\x7f\xf7\x9d\xf7\xf0\x87\x04\x45\xd9\x4e\xdb\xcd\x25\x36\x49\x3c\xbc\xff\xef\xf7\x03\x7c\xf3\xe5\x97\x8b\xc5\x17\x70\xb7\x47\x78\xab\xcc\x11\xde\xf6\x7a\x27\xb7\x0a\xe1\xce\xdc\xa3\x06\xe7\x85\xae\x85\xad\x17\x8b\x2f\xbe\x80\x4d\x7a\xc9\xef\x36\x50\x19\xed\xad\xa8\xfc\x62\xc1\xcb\xe7\x57\x82\x74\xa0\x0d\x28\xa3\x77\x68\x41\x68\x90\xda\xa3\x6d\x44\x85\x0b\xbf\x17\x1e\x84\x52\xd0\xa4\xa5\x9e\x97\x26\xb9\x0e\x8e\xa6\x57\x35\xec\xc5\x81\x5e\xd1\xf3\xc6\xd8\x16\xbc\x59\x2f\x16\xef\x1a\x10\xd0\x3b\xb4\x0e\x8e\x42\x7b\x47\x1f\xd4\xd8\x29\x73\x02\x01\x1a\x8f\x13\x59\x2b\xf0\x7b\x94\x76\xd0\xb9\x36\x48\x8a\x79\xd0\x88\x35\x2d\x96\x6d\xa7\xb0\x45\xed\xe9\x4b\x28\x4c\x1d\x74\x5e\xc1\xb6\xf7\x51\x14\x6f\xe0\x16\xb5\xb9\x20\x22\x2f\x72\x50\x63\x23\x35\xd6\x20\x35\xf8\xbd\x74\x59\x8b\x75\xf0\xeb\xcf\xa2\x57\x7e\x03\x16\x9d\xe9\x6d\x35\x5a\xb9\x58\xfc\x20\xaa\xfd\xd4\x3f\xf9\x3b\x7f\xea\x90\x37\x77\xe7\xbb\x5f\x16\x1a\x37\xfd\xa7\x35\x07\x59\xa3\xdd\xac\x60\xf3\x13\x56\x28\x0f\xfc\xb3\xd0\x35\x6c\xde\x08\x25\x74\x85\x73\xab\x1d\x47\xdb\x4d\xcc\xab\x94\xb0\x08\x9d\xc5\x97\x95\xd1\xb5\xf4\xd2\x68\xc7\xa2\x3a\xe3\xfc\xf8\x19\xc7\xdc\xa2\xf3\x56\x56\x7e\x41\x8a\xe2\x47\xac\x7a\x7a\x09\xa6\x61\xcd\x9b\x5e\x57\xe1\x63\x76\x17\x02\x5b\xb2\xe6\x7d\x4f\x40\xfb\x38\xec\x84\x15\x1e\x61\x8b\x95\xe8\x49\x17\x0f\x3b\x79\x40\xc7\x9f\x53\x52\xf0\x0f\x62\x2b\x95\xf4\x27\xf2\x8d\xdb\x0b\x8b\x0b\x01\x16\x1b\xb4\xa8\x2b\xce\xa7\x10\x46\x96\x1e\xf4\x32\x5a\x9d\x00\x3f\x76\xc6\x45\x51\x8d\x44\x55\xbb\x41\xa3\x85\xd4\x60\x34\x82\xb1\xd0\x1a\x8b\x49\xe3\xc1\x15\x94\x98\x94\xd3\xce\x44\x85\x42\x86\x4e\xb4\x69\xc5\x3d\x42\xd5\x3b\x6f\xda\xec\xe1\xe8\x9a\x1c\x44\xf2\x4d\xe9\x65\x4a\x70\x03\x07\x61\xa5\xe9\xe9\x6b\xa9\x77\x0e\x8e\xd2\xef\x59\x7c\xc8\xc6\xf5\xe2\xad\xb1\x80\x1f\x05\x89\x59\x81\x80\x46\xf4\x15\x7a\xa8\x84\x86\x2d\x0e\xd2\xb1\x86\xed\x29\x15\x94\xd4\xbb\x45\x70\x07\xa4\xa4\x28\xb2\xe5\xcb\x9b\xc5\x42\xb6\x9d\xb1\x1e\xae\x7e\x96\x78\xfc\x09\x9d\x51\x07\xb4\x57\xf9\xe9\x9b\xde\x6a\xfa\x7d\x71\x73\x73\x53\x96\x0e\x3d\x29\x9e\xc6\xf6\x90\x35\x11\x21\xd4\x6e\xcf\xa5\x5e\xe6\x70\x99\xf7\x2c\x66\xa4\x97\xa8\x2a\x74\xee\x5a\x28\xb5\xcc\x05\x35\xbc\x2f\xd5\xb8\x85\xb1\xe2\xf0\x69\xb1\x00\x00\xb8\xb9\x81\xd7\x1a\x50\x7b\xe9\xe3\xae\x8d\xb1\xd4\x91\xcc\x51\xea\x1d\xab\x40\xfe\xad\xad\x38\x0a\xc5\xc1\x66\x27\x43\x63\x4d\x0b\x22\x64\x0e\x0b\x1a\xab\x32\x16\xf7\x4b\x5c\x9d\xb6\xbb\xe1\x46\x8b\x87\x60\x20\x85\xdb\x01\xb6\xd2\x53\x3c\x8e\x7b\xd4\x69\x03\x4a\xf2\xb4\xb3\x7e\x62\xbb\xc3\x78\x23\x7d\x4d\x3d\xe1\x16\xde\x7b\x2b\xf5\x6e\x05\xa2\x35\xbd\xf6\xb7\xf0\xe1\xad\xfc\xf8\xb7\xbf\xae\x58\xd4\x2d\xbc\xae\x6b\x8b\xce\xbd\x0a\xbf\x7f\xf8\xf0\xee\xfb\x5b\xf8\xf0\x4e\x7b\xfa\x22\x6f\x5b\x3e\xde\x86\x8e\xf0\xba\xf1\x68\x93\xb8\xe5\xef\x31\xab\xc6\xce\x38\xe9\x43\xc3\x7c\xdc\xa8\xef\xd3\xa7\x4f\x18\xe5\xcd\xd8\x24\x6f\x4a\xcd\xf3\x86\x9f\x65\xd0\x0f\x8f\x18\xb3\x47\xd8\x29\xb3\x15\x0a\xb6\xbd\xd5\xd0\xa2\xdf\x1b\x9e\x73\x95\x50\x8a\xbe\xa2\x9a\x14\xa0\x8d\x7e\xf9\x5f\xb4\x26\x6d\x75\xc1\x4a\xae\x9d\xa7\x4c\x9c\xc6\x69\xa4\xe9\x9b\x91\x74\x2a\xb6\x71\x48\x86\x6a\x60\x4b\xba\x50\xdd\x6e\x18\xce\xb9\xb3\xfd\x3b\xaf\xa3\x12\xd8\xa1\xf7\x54\x01\x51\x73\x90\xdc\x27\xb8\x54\x8b\x7d\xc6\xd6\x9c\x8f\x8a\xa4\x1a\x7c\xe2\x8f\xa7\x0b\x0e\xc2\xa6\x0d\x92\xa1\xfc\xdd\xc3\x60\x5b\x6a\x47\xcf\x31\x0e\x49\xc7\x2a\x36\x6e\x8b\xbf\xf5\xd2\x72\x11\x3a\xb6\x28\xa5\x35\xf5\xba\x24\x64\x5c\xcd\xdc\xc6\x53\xf3\xe1\xe2\x3f\x75\xb8\x3e\xdb\xf7\x9d\x87\x0c\x1c\xe2\x86\xe5\x5e\x46\xc3\x66\x9b\xa6\xe7\x1e\x2d\xae\xf2\xda\xd1\xb0\x52\x28\x68\x38\x98\x2e\xa6\x53\x67\x9c\x93\x71\x3e\x98\x06\x2a\x8b\x82\x95\x88\x33\x22\xc6\xcd\xba\x41\x75\xb2\x98\x90\x07\x03\x18\xf2\xa9\xb0\x52\x9d\x22\x12\xe1\xb9\x66\x8e\x3a\xb9\x77\xfd\x39\x41\xcb\x23\x20\x36\xc9\xb4\xe5\xdb\x98\x2a\x5c\xb7\xee\x1e\x44\x56\x0b\x24\x61\x31\xd7\x61\x25\x1b\x59\xc5\xdc\x1d\xda\x65\x21\x45\x3a\x10\x07\x21\x95\x08\x6d\x9d\x86\x52\xee\x38\xc5\x87\x77\x01\x27\xd1\x50\xd8\xf2\x4c\x6f\x7a\xc5\x5b\x1f\x8c\xac\xa1\x13\x5a\x56\xe4\x21\xae\x48\xaa\x3b\xfe\x25\xb5\xdb\xb1\xa0\x5c\xb3\x39\x99\x1d\xf4\xfa\x5e\x9b\xc9\x86\xaf\xeb\x80\x51\x84\x52\xa7\x15\x99\xc4\x81\xc9\x26\x3a\xe8\xfa\xb0\x0b\xe7\x4b\xdb\x2b\x2f\x3b\x85\x70\xa0\x06\x36\xb1\x31\x22\x89\x8c\xcc\xaa\x3d\x56\xf7\xe0\x4c\x9b\x11\x43\x58\x05\xbd\xf6\x52\xf1\x83\x1a\x9d\xb4\x58\x47\xe7\x4d\x5d\x66\x51\x54\x7b\xac\x57\xd0\x19\x4f\xf9\x49\x3a\xc2\x1e\x55\x97\xac\x86\x0e\x2d\x97\x68\x8e\x76\x5a\x3d\x5f\x7a\x12\x8f\x54\xfb\x20\xdd\xeb\x14\x8d\x3b\x93\x86\xc8\x75\xd9\x7d\x96\xb7\xf0\xc6\x18\x55\x66\x43\x72\x35\xb8\x7e\x1b\xc1\xfa\xa3\xe5\x94\x12\xad\x10\x42\x00\xd1\xa2\xef\x2d\xcd\x86\x08\xc4\x32\xa0\xb1\xd8\x9a\x03\x8f\x89\x00\x6c\x46\x0b\x27\x89\x32\x40\xc6\x17\x2e\x9a\x09\x0a\x0f\xa8\xc8\x75\x9b\x68\x77\x32\x6e\xb9\x29\x56\xbf\x37\x84\x32\x8d\xa5\x18\x53\x76\x85\xd5\xd2\xaf\x18\xe7\x05\xfe\x81\xd2\xef\xd1\xe6\xda\x02\xb3\xfd\x15\x09\x6a\x78\x87\xaa\x29\xa4\x19\x66\x38\x11\x01\xd4\x23\xb4\xc9\x56\x6d\x92\x0e\x9b\x79\x6b\xa6\x9a\x72\x84\x8e\x17\x83\xf2\xed\x27\xf6\xd8\xc3\xa8\xbd\xd2\x3f\x42\xdc\x93\x47\x61\x23\xd8\x58\x74\x91\x13\x34\x8c\x4a\x4d\x74\x34\x45\x00\x0e\x42\xf5\x78\xb6\x2c\x2c\x59\xa7\xda\xf9\xfa\xeb\x34\x9a\xce\xbe\xa4\x7f\x57\xbf\x0c\x70\x29\xb6\x81\xb6\x77\x9e\x2a\x98\x76\x72\xa2\x45\x10\xae\xa8\xc6\x58\x10\x03\xda\x61\xa3\xae\x0a\xf1\x0f\x8b\xf2\xa7\xd1\x84\x48\xcc\xe5\x8f\x4f\x88\x88\x13\x66\x06\x84\xd4\xd1\x53\xcf\x18\x10\xbf\x60\x6a\xcb\x52\x57\xaa\xaf\x11\x04\x64\xfa\x13\xd4\xe0\x6e\x50\x3a\x21\x8e\x86\x2c\xe5\x88\x4c\x6a\x29\x42\x44\x23\x9e\xc3\x22\x82\x1b\x02\x8b\xc8\x72\x08\xf6\xd7\x26\x7d\x34\x4f\x19\x56\xa0\xe4\x3d\x82\xeb\x94\x64\xd4\xdd\x42\xdf\x51\x65\x66\x21\x0e\x75\x1d\x5e\x10\x03\x91\x0d\xe7\xb4\x87\x4e\x05\xc2\x03\xcf\x1f\x2d\x29\x58\xd3\xd1\x12\x5d\x0f\x5e\xdc\xe3\xd0\x09\xa8\x3b\xc4\x37\x54\x91\x17\xc2\x50\x90\xe1\xc7\xca\x8a\x95\xa2\x8a\x8a\x32\xaf\x03\x16\x4e\x55\xb4\x2c\x55\xda\xa1\x7f\xdf\x77\xc4\x6e\xb0\xe6\x0f\xee\x4e\x1d\xba\x51\xb7\xaa\x25\x77\x1c\x61\x79\x62\x47\x12\x49\xdf\x9c\x75\xb8\xe3\x1e\xb9\x7f\xb0\xcb\x89\xb1\xd3\x60\xeb\x2d\x39\x51\x9d\xc0\xa5\x5d\x88\x90\xf1\xe1\x40\x91\xd2\x53\x03\x72\xe7\x9e\x57\xf0\x7a\x79\x0b\x9f\xee\x18\x4a\x52\xcf\x7e\x28\x8d\xfa\x29\x6a\x9f\x34\x32\x96\x33\x95\x01\xad\x3c\xd0\x98\x8c\xea\xd1\x8e\x5d\xd6\x09\xcf\x55\xe2\x81\x19\xa6\x58\x4c\x6a\xa1\xe3\x2a\x10\xfa\x14\x04\x45\x4e\xf7\x2b\x75\x80\xd8\x64\xbc\xed\x91\x84\xd6\xd8\x64\xe0\x7f\xd1\x44\xe9\xce\x2d\x8c\x38\x99\x7e\x4c\x73\x69\xd2\x11\x06\x46\x51\x00\xb7\x1a\xc3\x60\x67\x17\x0f\x29\x19\x3a\x3c\x13\xf6\xe1\x78\x29\xdb\xbb\x4a\x10\x76\x05\x77\x56\x68\xd7\xa0\x35\x76\x95\x21\x52\x38\x2d\x49\xac\x72\x00\x7a\xfd\xc0\x1c\xc8\xbf\x43\x88\x4f\xe8\x3f\xa7\x5e\xd8\x94\xdb\x91\x36\xc3\xc6\x59\xaf\x31\xaf\x5d\xa7\x1f\x56\x81\x55\xd8\x35\xfd\xc7\x50\x6b\x0a\xe6\x24\xaa\x3a\x28\x49\xd3\xfb\xfe\xac\x27\x8b\x10\xdc\x67\x03\xf7\x42\xfa\x77\x91\x07\x11\xf2\x12\xd3\xd3\x2b\xe9\x98\x36\x61\x0d\x07\x29\xc2\x51\x55\x54\x96\x1e\x5f\x2f\x37\x91\x50\x15\x12\xdf\x4d\x8e\x0b\x62\x63\xa3\x54\xdb\x1a\x73\x7f\x8f\xc8\x50\xc8\x58\xa6\x6a\xfc\x9c\xd9\x55\x59\x8d\x6c\x6f\xcc\xca\x2d\x96\xac\x2e\x1a\x4c\xea\xd5\xe8\xbc\x35\x27\xac\x4b\x24\xf5\x23\x49\x9d\x9e\x5b\x1c\xa5\x52\xb9\x57\xf7\x5d\x2d\x3c\x0e\xbd\xf5\x05\xcd\x58\x2f\x14\x67\x80\x3a\x95\xba\x18\x1a\xc3\x8a\x80\x44\x08\x43\x6e\xc8\xe1\xbc\x73\x8b\xa8\x93\xa3\x02\x4e\x0a\x70\x28\xc3\xab\x20\x73\xfd\xa8\x9b\x38\xaf\xd3\xe9\xa4\x43\x5f\x44\xd9\x1b\x08\xf4\x14\x1b\x63\x83\xd6\xd4\xe9\x27\xa7\x70\xe7\xa0\x5c\x32\x72\xe8\x6c\xa0\xaf\xc1\x6b\xe6\xa8\x69\xf8\xb0\x72\xae\x13\x6d\xcb\x40\x99\x06\x54\xa0\xb7\x31\x1a\xeb\x69\x3e\xa5\x73\x9b\xd0\x99\xc9\x5c\xca\x9d\xad\xa8\xee\xaf\x97\x53\x5c\x63\x71\x06\xd6\x70\xb8\x0b\x0a\x4d\xa0\x6c\xbd\xc3\xd0\x2d\x96\x6b\x59\xd3\xa0\x68\x24\x57\x6b\x84\x50\xfc\xc9\x36\x55\xd0\xc0\xad\xf9\x79\xdf\xcb\x7a\x79\x01\x7e\xc0\x65\x7c\x35\x96\x49\x30\xe9\xab\xf5\x57\xb7\x70\x75\x37\xf2\x77\x42\x42\x1c\x87\xe8\xfb\xba\xb7\xe9\xa4\x69\x6c\x7c\x3a\x53\x70\x26\x36\x12\x6e\xb0\xd4\x4b\x68\x3d\xf9\x17\xeb\x4b\x10\xe9\x5c\x19\xd2\x65\x84\xa0\xfe\xc8\x9c\x3b\x0c\x73\x6e\x32\xdb\x98\xa5\xc4\xf1\x1e\x06\x81\x8b\x67\xa3\x35\x7e\xa4\x04\x9c\x8c\x67\x06\x68\x71\x0c\x4c\xaa\x0a\xb8\x43\x33\x7a\xaa\x99\x43\x67\xea\x1c\x69\x93\xb0\x08\xf8\xb1\xc3\xca\x63\x3d\x2d\x2a\x66\x5e\x79\x7e\x0d\x54\x98\xf6\x5f\x05\x87\xe2\x29\x94\x98\x1e\x6a\x23\xf2\x3c\xbe\x9f\x28\x74\x29\xc4\x13\x4c\x64\x4b\xcf\x8a\xe3\x0f\x8c\xe8\x49\x2e\xdd\xdc\xc0\x1b\x54\xe6\x18\x49\x23\xb9\x62\x74\x68\x9b\x60\x9f\xeb\x6d\x04\xb5\xb6\xd7\x2f\xbd\x6c\x23\xb4\xe0\x71\x36\x95\xc7\x2e\xd9\x61\x1a\xc2\xe3\x73\xac\x4e\x30\x96\xcb\xb3\x27\xce\xc0\x08\x12\xcb\x0b\x9f\x75\xb8\x51\x58\x43\x21\x5f\x36\x67\x15\xe7\xde\xf7\x5b\xd2\xe6\xda\x34\x61\x52\xff\xfd\xdb\x4f\x33\x92\x1e\xbe\xb9\x5e\x4e\x8b\x1c\x98\x72\x30\x54\xf8\x54\x8a\xbd\x65\xec\x50\xa6\xf9\x03\xa0\x72\x73\x5d\x21\x63\x1d\xa6\x63\x6d\xe7\x4f\xe3\x3c\x8e\x0c\x24\x25\x1f\x13\x1f\x8e\x6d\x76\xc3\x71\x6f\xa0\x36\xfa\x85\x9f\x93\x3c\x9c\x51\xcf\xfa\x67\x05\xae\xaf\xf6\xb4\x49\xf9\xfa\xfd\x51\xfa\x6a\xbf\x35\xc2\xd6\x9b\x15\x6c\xf8\xd9\x5b\x63\x8f\x82\xb8\xe7\x06\xd0\x57\xeb\x8b\xae\x78\xb8\x48\x87\xca\xb9\x1b\x98\x45\x3c\xbb\x28\x21\xdd\x39\xce\xfc\xf9\xcf\x42\x60\x93\x00\x44\xa5\x53\xf8\x66\x4b\xe0\x5f\x24\xe4\x3f\xf0\xea\x15\x34\x42\x39\xbc\x64\xd0\xcc\x29\xc3\x26\x34\xf1\xcd\x30\x08\x59\xee\x0b\x57\x1c\xb3\xc2\xec\x09\x83\xc6\xe3\xf4\x94\x21\x09\x26\xbf\x9c\xaf\xff\xb3\xa9\xf9\xec\x08\x2b\x9a\xf5\x37\x4f\x10\xec\xd7\x81\x55\x0f\x74\x39\x4d\x15\x85\x8e\xc9\x9f\x66\x10\xf4\x5b\x2f\x54\xf8\x6d\x86\x6b\x3f\xca\xb0\xe1\xf2\x88\x8b\x67\x01\xb9\x24\x69\xcc\x4d\x8b\xf4\xea\xc7\x31\xda\x4f\x9c\x7f\x18\x1b\x54\x17\xb4\xe6\x6a\xae\xb2\xa8\xc5\xf3\x9a\x0e\x2b\x29\x54\x6e\xb3\xb0\x09\x18\x65\xc3\x84\x38\xc2\x98\x50\xb6\xd1\xa4\xe1\xcc\x95\xaf\xec\xe6\x84\x47\x8c\xb5\xc5\x9d\xd4\x9a\xc1\x62\x09\x74\x86\x8b\xc8\x99\xd5\x4f\x8e\xfb\xa0\xe0\xf5\xf8\xf1\x12\x5e\x3e\x1e\xcb\x7f\xe4\x74\x9c\x42\x04\x6e\x4f\x91\x69\x0f\x71\x23\xc8\xc5\x77\x7f\xe9\x73\x11\x88\xf9\xf4\xf0\x24\xbd\x3f\xf7\x31\xa3\xa5\xe9\x5d\xd1\x34\xac\xb3\x90\x29\xfc\x9f\x2e\x90\xd8\x4c\xc6\x7c\xaf\xd6\x22\xdc\xbc\xcc\xe2\xa8\xb3\xeb\xa4\xb8\x57\x78\x57\x5e\xc1\x14\xae\x7b\x5e\xbf\xbb\x7c\x6e\x20\xea\xda\x81\xf4\x6e\x0c\x76\xcf\x2a\xe1\xac\x07\x7e\xce\xa9\xc1\xdc\x40\x9b\x4e\x33\x22\xc9\xce\xa1\x1d\x41\xfc\xca\xe8\xca\xa2\x8f\xe3\x3a\x06\x76\xb8\x13\xcb\x1c\x24\x95\xce\x54\x5e\x9c\x5d\x23\xe6\x9d\xe9\x7a\x02\x92\x51\xda\x33\x3a\x0f\xd9\xb2\x96\xee\x9d\x76\x9e\xbc\x72\x5d\x16\xf3\xf2\x16\xe6\xf3\xf6\xbb\x00\x45\x93\xf7\xf9\x6f\x3a\x2a\xd3\x76\xc2\x8f\x68\x1e\xd9\xf7\x3b\x7a\x0c\x67\xe8\xf4\xe2\x2f\x16\x17\xab\x3b\x97\xa6\xcb\x21\x4f\xc7\x9f\xa6\x64\x0a\x37\x84\xb3\x39\x9b\x2e\x0b\x47\x19\x3b\xb9\x2f\x1c\x0b\x64\x6a\xf0\xfc\xbc\x85\xe7\xf6\x89\xbf\xcc\xaa\xfd\xbb\xba\x86\xeb\xdb\x27\xdb\xc5\x90\x6e\x4f\x9c\xb5\x16\xc5\xc6\x97\x52\xf8\x03\x81\xa9\x58\x67\x4a\x99\xa3\x63\xae\x1d\xfe\xe4\xc2\xc4\x6f\x8a\x49\xcb\x39\xba\x17\x54\x9e\x67\x97\xa1\xf0\x44\xcd\x4d\xb7\xbc\xfe\xec\x53\xef\xf3\xe3\xeb\x81\x97\x69\x3c\xaa\x53\xdc\x23\xba\x22\xb8\x92\xc9\xc1\x58\xd9\xf3\x46\xfa\xac\x51\xf8\xf4\x26\x79\x40\xa6\xd1\xc8\x2d\x22\xdd\xfe\x1d\x3e\xeb\x24\xfc\xff\x10\x9f\xb9\x63\xaa\xd9\xb8\x1c\x12\xb4\xcb\xb8\x70\xbe\x41\x8e\x22\x34\x13\xb0\x39\xa7\x8e\x24\xb3\x3f\x33\x85\x09\x1d\x30\x5f\xc6\xb6\xc2\x57\xfb\xe2\x26\xed\xbc\x01\xfd\xd9\xc9\x90\x42\xf0\xf0\xbf\x00\x00\x00\xff\xff\xa2\xe7\x8f\x57\x45\x27\x00\x00" func fungibletokenCdcBytes() ([]byte, error) { return bindataRead( @@ -115,7 +115,7 @@ func fungibletokenCdc() (*asset, error) { } info := bindataFileInfo{name: "FungibleToken.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0x86, 0xe2, 0x8d, 0x9d, 0x59, 0x62, 0x90, 0x86, 0x73, 0x1, 0xd6, 0x2e, 0x17, 0x62, 0xcc, 0xbb, 0xd7, 0x95, 0x28, 0x48, 0x3e, 0x40, 0x7f, 0xff, 0xe1, 0x0, 0x10, 0xc5, 0xfa, 0x12, 0xba}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0xe4, 0x49, 0x30, 0x9e, 0xd3, 0xb8, 0xa5, 0x83, 0x72, 0xbc, 0x60, 0x84, 0xa4, 0xfb, 0xa, 0x6e, 0x88, 0xc9, 0xf9, 0x0, 0x1f, 0xc4, 0x40, 0x4e, 0x95, 0xf, 0x75, 0xfd, 0xaa, 0x86, 0x5d}} return a, nil } diff --git a/tests/example_token_test.cdc b/tests/example_token_test.cdc index cd15476..32c3ddc 100644 --- a/tests/example_token_test.cdc +++ b/tests/example_token_test.cdc @@ -87,6 +87,7 @@ fun testMintTokens() { Test.assertEqual(250.0, tokensDepositedEvent.amount) Test.assertEqual(recipient.address, tokensDepositedEvent.to!) Test.assertEqual("A.0000000000000007.ExampleToken.Vault", tokensDepositedEvent.type) + Test.assertEqual(250.0, tokensDepositedEvent.balanceAfter!) // Test that the totalSupply increased by the amount of minted tokens let scriptResult = executeScript( @@ -116,8 +117,10 @@ fun testTransferTokens() { Test.assertEqual(1, events.length) let tokensWithdrawnEvent = events[0] as! FungibleToken.Withdrawn + Test.assertEqual("A.0000000000000007.ExampleToken.Vault", tokensWithdrawnEvent.type) Test.assertEqual(50.0, tokensWithdrawnEvent.amount) Test.assertEqual(recipient.address, tokensWithdrawnEvent.from!) + Test.assertEqual(200.0, tokensWithdrawnEvent.balanceAfter!) var scriptResult = executeScript( "../transactions/scripts/get_balance.cdc", From e944d5f7ad54c1f2ddea449549faa7b47376f89d Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Fri, 19 Apr 2024 16:55:03 -0500 Subject: [PATCH 2/2] make event formatting prettier --- contracts/FungibleToken.cdc | 18 ++++++++++++++++-- lib/go/contracts/internal/assets/assets.go | 6 +++--- 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/contracts/FungibleToken.cdc b/contracts/FungibleToken.cdc index 15e56b7..512401c 100644 --- a/contracts/FungibleToken.cdc +++ b/contracts/FungibleToken.cdc @@ -186,7 +186,14 @@ access(all) contract interface FungibleToken: ViewResolver { // self.balance == before(self.balance) - amount: "New Vault balance must be the difference of the previous balance and the withdrawn Vault balance" - emit Withdrawn(type: result.getType().identifier, amount: amount, from: self.owner?.address, fromUUID: self.uuid, withdrawnUUID: result.uuid, balanceAfter: self.balance) + emit Withdrawn( + type: result.getType().identifier, + amount: amount, + from: self.owner?.address, + fromUUID: self.uuid, + withdrawnUUID: result.uuid, + balanceAfter: self.balance + ) } } @@ -200,7 +207,14 @@ access(all) contract interface FungibleToken: ViewResolver { "Cannot deposit an incompatible token type" } post { - emit Deposited(type: before(from.getType().identifier), amount: before(from.balance), to: self.owner?.address, toUUID: self.uuid, depositedUUID: before(from.uuid), balanceAfter: self.balance) + emit Deposited( + type: before(from.getType().identifier), + amount: before(from.balance), + to: self.owner?.address, + toUUID: self.uuid, + depositedUUID: before(from.uuid), + balanceAfter: self.balance + ) self.balance == before(self.balance) + before(from.balance): "New Vault balance must be the sum of the previous balance and the deposited Vault" } diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index fa9175f..7aa2637 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,7 +1,7 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: // ../../../contracts/ExampleToken.cdc (9.619kB) -// ../../../contracts/FungibleToken.cdc (10.053kB) +// ../../../contracts/FungibleToken.cdc (10.377kB) // ../../../contracts/FungibleTokenMetadataViews.cdc (6.596kB) // ../../../contracts/FungibleTokenSwitchboard.cdc (18.111kB) // ../../../contracts/utility/Burner.cdc (1.997kB) @@ -99,7 +99,7 @@ func exampletokenCdc() (*asset, error) { return a, nil } -var _fungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x5a\x4f\x73\xdb\x36\x16\xbf\xeb\x53\xbc\x71\x0f\xb1\xba\x8a\xdc\xc3\xce\x1e\x3c\xdb\xa6\x49\xdb\xcc\xe4\xd0\x9d\x9d\xc6\x69\x0f\xbb\x3b\x23\x88\x7c\x94\x50\x83\x00\x0b\x80\x52\xb4\x19\x7f\xf7\x9d\xf7\xf0\x87\x04\x45\xd9\x4e\xdb\xcd\x25\x36\x49\x3c\xbc\xff\xef\xf7\x03\x7c\xf3\xe5\x97\x8b\xc5\x17\x70\xb7\x47\x78\xab\xcc\x11\xde\xf6\x7a\x27\xb7\x0a\xe1\xce\xdc\xa3\x06\xe7\x85\xae\x85\xad\x17\x8b\x2f\xbe\x80\x4d\x7a\xc9\xef\x36\x50\x19\xed\xad\xa8\xfc\x62\xc1\xcb\xe7\x57\x82\x74\xa0\x0d\x28\xa3\x77\x68\x41\x68\x90\xda\xa3\x6d\x44\x85\x0b\xbf\x17\x1e\x84\x52\xd0\xa4\xa5\x9e\x97\x26\xb9\x0e\x8e\xa6\x57\x35\xec\xc5\x81\x5e\xd1\xf3\xc6\xd8\x16\xbc\x59\x2f\x16\xef\x1a\x10\xd0\x3b\xb4\x0e\x8e\x42\x7b\x47\x1f\xd4\xd8\x29\x73\x02\x01\x1a\x8f\x13\x59\x2b\xf0\x7b\x94\x76\xd0\xb9\x36\x48\x8a\x79\xd0\x88\x35\x2d\x96\x6d\xa7\xb0\x45\xed\xe9\x4b\x28\x4c\x1d\x74\x5e\xc1\xb6\xf7\x51\x14\x6f\xe0\x16\xb5\xb9\x20\x22\x2f\x72\x50\x63\x23\x35\xd6\x20\x35\xf8\xbd\x74\x59\x8b\x75\xf0\xeb\xcf\xa2\x57\x7e\x03\x16\x9d\xe9\x6d\x35\x5a\xb9\x58\xfc\x20\xaa\xfd\xd4\x3f\xf9\x3b\x7f\xea\x90\x37\x77\xe7\xbb\x5f\x16\x1a\x37\xfd\xa7\x35\x07\x59\xa3\xdd\xac\x60\xf3\x13\x56\x28\x0f\xfc\xb3\xd0\x35\x6c\xde\x08\x25\x74\x85\x73\xab\x1d\x47\xdb\x4d\xcc\xab\x94\xb0\x08\x9d\xc5\x97\x95\xd1\xb5\xf4\xd2\x68\xc7\xa2\x3a\xe3\xfc\xf8\x19\xc7\xdc\xa2\xf3\x56\x56\x7e\x41\x8a\xe2\x47\xac\x7a\x7a\x09\xa6\x61\xcd\x9b\x5e\x57\xe1\x63\x76\x17\x02\x5b\xb2\xe6\x7d\x4f\x40\xfb\x38\xec\x84\x15\x1e\x61\x8b\x95\xe8\x49\x17\x0f\x3b\x79\x40\xc7\x9f\x53\x52\xf0\x0f\x62\x2b\x95\xf4\x27\xf2\x8d\xdb\x0b\x8b\x0b\x01\x16\x1b\xb4\xa8\x2b\xce\xa7\x10\x46\x96\x1e\xf4\x32\x5a\x9d\x00\x3f\x76\xc6\x45\x51\x8d\x44\x55\xbb\x41\xa3\x85\xd4\x60\x34\x82\xb1\xd0\x1a\x8b\x49\xe3\xc1\x15\x94\x98\x94\xd3\xce\x44\x85\x42\x86\x4e\xb4\x69\xc5\x3d\x42\xd5\x3b\x6f\xda\xec\xe1\xe8\x9a\x1c\x44\xf2\x4d\xe9\x65\x4a\x70\x03\x07\x61\xa5\xe9\xe9\x6b\xa9\x77\x0e\x8e\xd2\xef\x59\x7c\xc8\xc6\xf5\xe2\xad\xb1\x80\x1f\x05\x89\x59\x81\x80\x46\xf4\x15\x7a\xa8\x84\x86\x2d\x0e\xd2\xb1\x86\xed\x29\x15\x94\xd4\xbb\x45\x70\x07\xa4\xa4\x28\xb2\xe5\xcb\x9b\xc5\x42\xb6\x9d\xb1\x1e\xae\x7e\x96\x78\xfc\x09\x9d\x51\x07\xb4\x57\xf9\xe9\x9b\xde\x6a\xfa\x7d\x71\x73\x73\x53\x96\x0e\x3d\x29\x9e\xc6\xf6\x90\x35\x11\x21\xd4\x6e\xcf\xa5\x5e\xe6\x70\x99\xf7\x2c\x66\xa4\x97\xa8\x2a\x74\xee\x5a\x28\xb5\xcc\x05\x35\xbc\x2f\xd5\xb8\x85\xb1\xe2\xf0\x69\xb1\x00\x00\xb8\xb9\x81\xd7\x1a\x50\x7b\xe9\xe3\xae\x8d\xb1\xd4\x91\xcc\x51\xea\x1d\xab\x40\xfe\xad\xad\x38\x0a\xc5\xc1\x66\x27\x43\x63\x4d\x0b\x22\x64\x0e\x0b\x1a\xab\x32\x16\xf7\x4b\x5c\x9d\xb6\xbb\xe1\x46\x8b\x87\x60\x20\x85\xdb\x01\xb6\xd2\x53\x3c\x8e\x7b\xd4\x69\x03\x4a\xf2\xb4\xb3\x7e\x62\xbb\xc3\x78\x23\x7d\x4d\x3d\xe1\x16\xde\x7b\x2b\xf5\x6e\x05\xa2\x35\xbd\xf6\xb7\xf0\xe1\xad\xfc\xf8\xb7\xbf\xae\x58\xd4\x2d\xbc\xae\x6b\x8b\xce\xbd\x0a\xbf\x7f\xf8\xf0\xee\xfb\x5b\xf8\xf0\x4e\x7b\xfa\x22\x6f\x5b\x3e\xde\x86\x8e\xf0\xba\xf1\x68\x93\xb8\xe5\xef\x31\xab\xc6\xce\x38\xe9\x43\xc3\x7c\xdc\xa8\xef\xd3\xa7\x4f\x18\xe5\xcd\xd8\x24\x6f\x4a\xcd\xf3\x86\x9f\x65\xd0\x0f\x8f\x18\xb3\x47\xd8\x29\xb3\x15\x0a\xb6\xbd\xd5\xd0\xa2\xdf\x1b\x9e\x73\x95\x50\x8a\xbe\xa2\x9a\x14\xa0\x8d\x7e\xf9\x5f\xb4\x26\x6d\x75\xc1\x4a\xae\x9d\xa7\x4c\x9c\xc6\x69\xa4\xe9\x9b\x91\x74\x2a\xb6\x71\x48\x86\x6a\x60\x4b\xba\x50\xdd\x6e\x18\xce\xb9\xb3\xfd\x3b\xaf\xa3\x12\xd8\xa1\xf7\x54\x01\x51\x73\x90\xdc\x27\xb8\x54\x8b\x7d\xc6\xd6\x9c\x8f\x8a\xa4\x1a\x7c\xe2\x8f\xa7\x0b\x0e\xc2\xa6\x0d\x92\xa1\xfc\xdd\xc3\x60\x5b\x6a\x47\xcf\x31\x0e\x49\xc7\x2a\x36\x6e\x8b\xbf\xf5\xd2\x72\x11\x3a\xb6\x28\xa5\x35\xf5\xba\x24\x64\x5c\xcd\xdc\xc6\x53\xf3\xe1\xe2\x3f\x75\xb8\x3e\xdb\xf7\x9d\x87\x0c\x1c\xe2\x86\xe5\x5e\x46\xc3\x66\x9b\xa6\xe7\x1e\x2d\xae\xf2\xda\xd1\xb0\x52\x28\x68\x38\x98\x2e\xa6\x53\x67\x9c\x93\x71\x3e\x98\x06\x2a\x8b\x82\x95\x88\x33\x22\xc6\xcd\xba\x41\x75\xb2\x98\x90\x07\x03\x18\xf2\xa9\xb0\x52\x9d\x22\x12\xe1\xb9\x66\x8e\x3a\xb9\x77\xfd\x39\x41\xcb\x23\x20\x36\xc9\xb4\xe5\xdb\x98\x2a\x5c\xb7\xee\x1e\x44\x56\x0b\x24\x61\x31\xd7\x61\x25\x1b\x59\xc5\xdc\x1d\xda\x65\x21\x45\x3a\x10\x07\x21\x95\x08\x6d\x9d\x86\x52\xee\x38\xc5\x87\x77\x01\x27\xd1\x50\xd8\xf2\x4c\x6f\x7a\xc5\x5b\x1f\x8c\xac\xa1\x13\x5a\x56\xe4\x21\xae\x48\xaa\x3b\xfe\x25\xb5\xdb\xb1\xa0\x5c\xb3\x39\x99\x1d\xf4\xfa\x5e\x9b\xc9\x86\xaf\xeb\x80\x51\x84\x52\xa7\x15\x99\xc4\x81\xc9\x26\x3a\xe8\xfa\xb0\x0b\xe7\x4b\xdb\x2b\x2f\x3b\x85\x70\xa0\x06\x36\xb1\x31\x22\x89\x8c\xcc\xaa\x3d\x56\xf7\xe0\x4c\x9b\x11\x43\x58\x05\xbd\xf6\x52\xf1\x83\x1a\x9d\xb4\x58\x47\xe7\x4d\x5d\x66\x51\x54\x7b\xac\x57\xd0\x19\x4f\xf9\x49\x3a\xc2\x1e\x55\x97\xac\x86\x0e\x2d\x97\x68\x8e\x76\x5a\x3d\x5f\x7a\x12\x8f\x54\xfb\x20\xdd\xeb\x14\x8d\x3b\x93\x86\xc8\x75\xd9\x7d\x96\xb7\xf0\xc6\x18\x55\x66\x43\x72\x35\xb8\x7e\x1b\xc1\xfa\xa3\xe5\x94\x12\xad\x10\x42\x00\xd1\xa2\xef\x2d\xcd\x86\x08\xc4\x32\xa0\xb1\xd8\x9a\x03\x8f\x89\x00\x6c\x46\x0b\x27\x89\x32\x40\xc6\x17\x2e\x9a\x09\x0a\x0f\xa8\xc8\x75\x9b\x68\x77\x32\x6e\xb9\x29\x56\xbf\x37\x84\x32\x8d\xa5\x18\x53\x76\x85\xd5\xd2\xaf\x18\xe7\x05\xfe\x81\xd2\xef\xd1\xe6\xda\x02\xb3\xfd\x15\x09\x6a\x78\x87\xaa\x29\xa4\x19\x66\x38\x11\x01\xd4\x23\xb4\xc9\x56\x6d\x92\x0e\x9b\x79\x6b\xa6\x9a\x72\x84\x8e\x17\x83\xf2\xed\x27\xf6\xd8\xc3\xa8\xbd\xd2\x3f\x42\xdc\x93\x47\x61\x23\xd8\x58\x74\x91\x13\x34\x8c\x4a\x4d\x74\x34\x45\x00\x0e\x42\xf5\x78\xb6\x2c\x2c\x59\xa7\xda\xf9\xfa\xeb\x34\x9a\xce\xbe\xa4\x7f\x57\xbf\x0c\x70\x29\xb6\x81\xb6\x77\x9e\x2a\x98\x76\x72\xa2\x45\x10\xae\xa8\xc6\x58\x10\x03\xda\x61\xa3\xae\x0a\xf1\x0f\x8b\xf2\xa7\xd1\x84\x48\xcc\xe5\x8f\x4f\x88\x88\x13\x66\x06\x84\xd4\xd1\x53\xcf\x18\x10\xbf\x60\x6a\xcb\x52\x57\xaa\xaf\x11\x04\x64\xfa\x13\xd4\xe0\x6e\x50\x3a\x21\x8e\x86\x2c\xe5\x88\x4c\x6a\x29\x42\x44\x23\x9e\xc3\x22\x82\x1b\x02\x8b\xc8\x72\x08\xf6\xd7\x26\x7d\x34\x4f\x19\x56\xa0\xe4\x3d\x82\xeb\x94\x64\xd4\xdd\x42\xdf\x51\x65\x66\x21\x0e\x75\x1d\x5e\x10\x03\x91\x0d\xe7\xb4\x87\x4e\x05\xc2\x03\xcf\x1f\x2d\x29\x58\xd3\xd1\x12\x5d\x0f\x5e\xdc\xe3\xd0\x09\xa8\x3b\xc4\x37\x54\x91\x17\xc2\x50\x90\xe1\xc7\xca\x8a\x95\xa2\x8a\x8a\x32\xaf\x03\x16\x4e\x55\xb4\x2c\x55\xda\xa1\x7f\xdf\x77\xc4\x6e\xb0\xe6\x0f\xee\x4e\x1d\xba\x51\xb7\xaa\x25\x77\x1c\x61\x79\x62\x47\x12\x49\xdf\x9c\x75\xb8\xe3\x1e\xb9\x7f\xb0\xcb\x89\xb1\xd3\x60\xeb\x2d\x39\x51\x9d\xc0\xa5\x5d\x88\x90\xf1\xe1\x40\x91\xd2\x53\x03\x72\xe7\x9e\x57\xf0\x7a\x79\x0b\x9f\xee\x18\x4a\x52\xcf\x7e\x28\x8d\xfa\x29\x6a\x9f\x34\x32\x96\x33\x95\x01\xad\x3c\xd0\x98\x8c\xea\xd1\x8e\x5d\xd6\x09\xcf\x55\xe2\x81\x19\xa6\x58\x4c\x6a\xa1\xe3\x2a\x10\xfa\x14\x04\x45\x4e\xf7\x2b\x75\x80\xd8\x64\xbc\xed\x91\x84\xd6\xd8\x64\xe0\x7f\xd1\x44\xe9\xce\x2d\x8c\x38\x99\x7e\x4c\x73\x69\xd2\x11\x06\x46\x51\x00\xb7\x1a\xc3\x60\x67\x17\x0f\x29\x19\x3a\x3c\x13\xf6\xe1\x78\x29\xdb\xbb\x4a\x10\x76\x05\x77\x56\x68\xd7\xa0\x35\x76\x95\x21\x52\x38\x2d\x49\xac\x72\x00\x7a\xfd\xc0\x1c\xc8\xbf\x43\x88\x4f\xe8\x3f\xa7\x5e\xd8\x94\xdb\x91\x36\xc3\xc6\x59\xaf\x31\xaf\x5d\xa7\x1f\x56\x81\x55\xd8\x35\xfd\xc7\x50\x6b\x0a\xe6\x24\xaa\x3a\x28\x49\xd3\xfb\xfe\xac\x27\x8b\x10\xdc\x67\x03\xf7\x42\xfa\x77\x91\x07\x11\xf2\x12\xd3\xd3\x2b\xe9\x98\x36\x61\x0d\x07\x29\xc2\x51\x55\x54\x96\x1e\x5f\x2f\x37\x91\x50\x15\x12\xdf\x4d\x8e\x0b\x62\x63\xa3\x54\xdb\x1a\x73\x7f\x8f\xc8\x50\xc8\x58\xa6\x6a\xfc\x9c\xd9\x55\x59\x8d\x6c\x6f\xcc\xca\x2d\x96\xac\x2e\x1a\x4c\xea\xd5\xe8\xbc\x35\x27\xac\x4b\x24\xf5\x23\x49\x9d\x9e\x5b\x1c\xa5\x52\xb9\x57\xf7\x5d\x2d\x3c\x0e\xbd\xf5\x05\xcd\x58\x2f\x14\x67\x80\x3a\x95\xba\x18\x1a\xc3\x8a\x80\x44\x08\x43\x6e\xc8\xe1\xbc\x73\x8b\xa8\x93\xa3\x02\x4e\x0a\x70\x28\xc3\xab\x20\x73\xfd\xa8\x9b\x38\xaf\xd3\xe9\xa4\x43\x5f\x44\xd9\x1b\x08\xf4\x14\x1b\x63\x83\xd6\xd4\xe9\x27\xa7\x70\xe7\xa0\x5c\x32\x72\xe8\x6c\xa0\xaf\xc1\x6b\xe6\xa8\x69\xf8\xb0\x72\xae\x13\x6d\xcb\x40\x99\x06\x54\xa0\xb7\x31\x1a\xeb\x69\x3e\xa5\x73\x9b\xd0\x99\xc9\x5c\xca\x9d\xad\xa8\xee\xaf\x97\x53\x5c\x63\x71\x06\xd6\x70\xb8\x0b\x0a\x4d\xa0\x6c\xbd\xc3\xd0\x2d\x96\x6b\x59\xd3\xa0\x68\x24\x57\x6b\x84\x50\xfc\xc9\x36\x55\xd0\xc0\xad\xf9\x79\xdf\xcb\x7a\x79\x01\x7e\xc0\x65\x7c\x35\x96\x49\x30\xe9\xab\xf5\x57\xb7\x70\x75\x37\xf2\x77\x42\x42\x1c\x87\xe8\xfb\xba\xb7\xe9\xa4\x69\x6c\x7c\x3a\x53\x70\x26\x36\x12\x6e\xb0\xd4\x4b\x68\x3d\xf9\x17\xeb\x4b\x10\xe9\x5c\x19\xd2\x65\x84\xa0\xfe\xc8\x9c\x3b\x0c\x73\x6e\x32\xdb\x98\xa5\xc4\xf1\x1e\x06\x81\x8b\x67\xa3\x35\x7e\xa4\x04\x9c\x8c\x67\x06\x68\x71\x0c\x4c\xaa\x0a\xb8\x43\x33\x7a\xaa\x99\x43\x67\xea\x1c\x69\x93\xb0\x08\xf8\xb1\xc3\xca\x63\x3d\x2d\x2a\x66\x5e\x79\x7e\x0d\x54\x98\xf6\x5f\x05\x87\xe2\x29\x94\x98\x1e\x6a\x23\xf2\x3c\xbe\x9f\x28\x74\x29\xc4\x13\x4c\x64\x4b\xcf\x8a\xe3\x0f\x8c\xe8\x49\x2e\xdd\xdc\xc0\x1b\x54\xe6\x18\x49\x23\xb9\x62\x74\x68\x9b\x60\x9f\xeb\x6d\x04\xb5\xb6\xd7\x2f\xbd\x6c\x23\xb4\xe0\x71\x36\x95\xc7\x2e\xd9\x61\x1a\xc2\xe3\x73\xac\x4e\x30\x96\xcb\xb3\x27\xce\xc0\x08\x12\xcb\x0b\x9f\x75\xb8\x51\x58\x43\x21\x5f\x36\x67\x15\xe7\xde\xf7\x5b\xd2\xe6\xda\x34\x61\x52\xff\xfd\xdb\x4f\x33\x92\x1e\xbe\xb9\x5e\x4e\x8b\x1c\x98\x72\x30\x54\xf8\x54\x8a\xbd\x65\xec\x50\xa6\xf9\x03\xa0\x72\x73\x5d\x21\x63\x1d\xa6\x63\x6d\xe7\x4f\xe3\x3c\x8e\x0c\x24\x25\x1f\x13\x1f\x8e\x6d\x76\xc3\x71\x6f\xa0\x36\xfa\x85\x9f\x93\x3c\x9c\x51\xcf\xfa\x67\x05\xae\xaf\xf6\xb4\x49\xf9\xfa\xfd\x51\xfa\x6a\xbf\x35\xc2\xd6\x9b\x15\x6c\xf8\xd9\x5b\x63\x8f\x82\xb8\xe7\x06\xd0\x57\xeb\x8b\xae\x78\xb8\x48\x87\xca\xb9\x1b\x98\x45\x3c\xbb\x28\x21\xdd\x39\xce\xfc\xf9\xcf\x42\x60\x93\x00\x44\xa5\x53\xf8\x66\x4b\xe0\x5f\x24\xe4\x3f\xf0\xea\x15\x34\x42\x39\xbc\x64\xd0\xcc\x29\xc3\x26\x34\xf1\xcd\x30\x08\x59\xee\x0b\x57\x1c\xb3\xc2\xec\x09\x83\xc6\xe3\xf4\x94\x21\x09\x26\xbf\x9c\xaf\xff\xb3\xa9\xf9\xec\x08\x2b\x9a\xf5\x37\x4f\x10\xec\xd7\x81\x55\x0f\x74\x39\x4d\x15\x85\x8e\xc9\x9f\x66\x10\xf4\x5b\x2f\x54\xf8\x6d\x86\x6b\x3f\xca\xb0\xe1\xf2\x88\x8b\x67\x01\xb9\x24\x69\xcc\x4d\x8b\xf4\xea\xc7\x31\xda\x4f\x9c\x7f\x18\x1b\x54\x17\xb4\xe6\x6a\xae\xb2\xa8\xc5\xf3\x9a\x0e\x2b\x29\x54\x6e\xb3\xb0\x09\x18\x65\xc3\x84\x38\xc2\x98\x50\xb6\xd1\xa4\xe1\xcc\x95\xaf\xec\xe6\x84\x47\x8c\xb5\xc5\x9d\xd4\x9a\xc1\x62\x09\x74\x86\x8b\xc8\x99\xd5\x4f\x8e\xfb\xa0\xe0\xf5\xf8\xf1\x12\x5e\x3e\x1e\xcb\x7f\xe4\x74\x9c\x42\x04\x6e\x4f\x91\x69\x0f\x71\x23\xc8\xc5\x77\x7f\xe9\x73\x11\x88\xf9\xf4\xf0\x24\xbd\x3f\xf7\x31\xa3\xa5\xe9\x5d\xd1\x34\xac\xb3\x90\x29\xfc\x9f\x2e\x90\xd8\x4c\xc6\x7c\xaf\xd6\x22\xdc\xbc\xcc\xe2\xa8\xb3\xeb\xa4\xb8\x57\x78\x57\x5e\xc1\x14\xae\x7b\x5e\xbf\xbb\x7c\x6e\x20\xea\xda\x81\xf4\x6e\x0c\x76\xcf\x2a\xe1\xac\x07\x7e\xce\xa9\xc1\xdc\x40\x9b\x4e\x33\x22\xc9\xce\xa1\x1d\x41\xfc\xca\xe8\xca\xa2\x8f\xe3\x3a\x06\x76\xb8\x13\xcb\x1c\x24\x95\xce\x54\x5e\x9c\x5d\x23\xe6\x9d\xe9\x7a\x02\x92\x51\xda\x33\x3a\x0f\xd9\xb2\x96\xee\x9d\x76\x9e\xbc\x72\x5d\x16\xf3\xf2\x16\xe6\xf3\xf6\xbb\x00\x45\x93\xf7\xf9\x6f\x3a\x2a\xd3\x76\xc2\x8f\x68\x1e\xd9\xf7\x3b\x7a\x0c\x67\xe8\xf4\xe2\x2f\x16\x17\xab\x3b\x97\xa6\xcb\x21\x4f\xc7\x9f\xa6\x64\x0a\x37\x84\xb3\x39\x9b\x2e\x0b\x47\x19\x3b\xb9\x2f\x1c\x0b\x64\x6a\xf0\xfc\xbc\x85\xe7\xf6\x89\xbf\xcc\xaa\xfd\xbb\xba\x86\xeb\xdb\x27\xdb\xc5\x90\x6e\x4f\x9c\xb5\x16\xc5\xc6\x97\x52\xf8\x03\x81\xa9\x58\x67\x4a\x99\xa3\x63\xae\x1d\xfe\xe4\xc2\xc4\x6f\x8a\x49\xcb\x39\xba\x17\x54\x9e\x67\x97\xa1\xf0\x44\xcd\x4d\xb7\xbc\xfe\xec\x53\xef\xf3\xe3\xeb\x81\x97\x69\x3c\xaa\x53\xdc\x23\xba\x22\xb8\x92\xc9\xc1\x58\xd9\xf3\x46\xfa\xac\x51\xf8\xf4\x26\x79\x40\xa6\xd1\xc8\x2d\x22\xdd\xfe\x1d\x3e\xeb\x24\xfc\xff\x10\x9f\xb9\x63\xaa\xd9\xb8\x1c\x12\xb4\xcb\xb8\x70\xbe\x41\x8e\x22\x34\x13\xb0\x39\xa7\x8e\x24\xb3\x3f\x33\x85\x09\x1d\x30\x5f\xc6\xb6\xc2\x57\xfb\xe2\x26\xed\xbc\x01\xfd\xd9\xc9\x90\x42\xf0\xf0\xbf\x00\x00\x00\xff\xff\xa2\xe7\x8f\x57\x45\x27\x00\x00" +var _fungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x5a\x4b\x93\xdb\x36\xf2\xbf\xeb\x53\x74\x4d\x0e\x96\xf2\x97\x35\x39\xfc\x6b\x0f\x53\x9b\x38\x76\x12\x57\xf9\x90\xad\xad\x78\x9c\x1c\x76\xb7\x4a\x10\xd9\x94\x90\x81\x00\x06\x00\x25\x6b\xa7\xe6\xbb\x6f\x75\xe3\x41\x82\xa2\xe6\x91\xc7\x5c\x3c\x43\x12\x8d\x7e\xfe\xfa\xd7\x80\xaf\xbf\xfc\x72\x36\xfb\x02\x6e\x77\x08\xef\x95\x39\xc2\xfb\x4e\x6f\xe5\x46\x21\xdc\x9a\x3b\xd4\xe0\xbc\xd0\xb5\xb0\xf5\x6c\xf6\xc5\x17\xb0\x4e\x2f\xf9\xdd\x1a\x2a\xa3\xbd\x15\x95\x9f\xcd\x78\xf9\xf4\x4a\x90\x0e\xb4\x01\x65\xf4\x16\x2d\x08\x0d\x52\x7b\xb4\x8d\xa8\x70\xe6\x77\xc2\x83\x50\x0a\x9a\xb4\xd4\xf3\xd2\x24\xd7\xc1\xd1\x74\xaa\x86\x9d\x38\xd0\x2b\x7a\xde\x18\xbb\x07\x6f\x56\xb3\xd9\x87\x06\x04\x74\x0e\xad\x83\xa3\xd0\xde\xd1\x07\x35\xb6\xca\x9c\x40\x80\xc6\xe3\x48\xd6\x12\xfc\x0e\xa5\xed\x75\xae\x0d\x92\x62\x1e\x34\x62\x4d\x8b\xe5\xbe\x55\xb8\x47\xed\xe9\x4b\x28\x4c\xed\x75\x5e\xc2\xa6\xf3\x51\x14\x6f\xe0\x66\xb5\xb9\x20\x22\x2f\x72\x50\x63\x23\x35\xd6\x20\x35\xf8\x9d\x74\x59\x8b\x55\xf0\xeb\xcf\xa2\x53\x7e\x0d\x16\x9d\xe9\x6c\x35\x58\x39\x9b\xfd\x20\xaa\xdd\xd8\x3f\xf9\x3b\x7f\x6a\x91\x37\x77\xe7\xbb\x5f\x16\x1a\x37\xfd\xa7\x35\x07\x59\xa3\x5d\x2f\x61\xfd\x13\x56\x28\x0f\xfc\xbb\xd0\x35\xac\xdf\x09\x25\x74\x85\x53\xab\x1d\x47\xdb\x8d\xcc\xab\x94\xb0\x08\xad\xc5\xd7\x95\xd1\xb5\xf4\xd2\x68\xc7\xa2\x5a\xe3\xfc\xf0\x19\xc7\xdc\xa2\xf3\x56\x56\x7e\x46\x8a\xe2\x67\xac\x3a\x7a\x09\xa6\x61\xcd\x9b\x4e\x57\xe1\x63\x76\x17\x02\x5b\xb2\xe2\x7d\x4f\x40\xfb\x38\x6c\x85\x15\x1e\x61\x83\x95\xe8\x48\x17\x0f\x5b\x79\x40\xc7\x9f\x53\x52\xf0\x2f\x62\x23\x95\xf4\x27\xf2\x8d\xdb\x09\x8b\x33\x01\x16\x1b\xb4\xa8\x2b\xce\xa7\x10\x46\x96\x1e\xf4\x32\x5a\x9d\x00\x3f\xb7\xc6\x45\x51\x8d\x44\x55\xbb\x5e\xa3\x99\xd4\x60\x34\x82\xb1\xb0\x37\x16\x93\xc6\xbd\x2b\x28\x31\x29\xa7\x9d\x89\x0a\x85\x0c\x1d\x69\xb3\x17\x77\x08\x55\xe7\xbc\xd9\x67\x0f\x47\xd7\xe4\x20\x92\x6f\x4a\x2f\x53\x82\x1b\x38\x08\x2b\x4d\x47\x5f\x4b\xbd\x75\x70\x94\x7e\xc7\xe2\x43\x36\xae\x66\xef\x8d\x05\xfc\x2c\x48\xcc\x12\x04\x34\xa2\xab\xd0\x43\x25\x34\x6c\xb0\x97\x8e\x35\x6c\x4e\xa9\xa0\xa4\xde\xce\x82\x3b\x20\x25\x45\x91\x2d\x5f\x5e\xcf\x66\x72\xdf\x1a\xeb\xe1\xea\x67\x89\xc7\x9f\xd0\x19\x75\x40\x7b\x95\x9f\xbe\xeb\xac\xa6\xbf\x67\xd7\xd7\xd7\x65\xe9\xd0\x93\xe2\x69\x84\x87\xac\x89\x08\xa1\x76\x3b\x2e\xf5\x32\x87\xcb\xbc\x67\x31\x03\xbd\x44\x55\xa1\x73\x73\xa1\xd4\x22\x17\x54\xff\xbe\x54\xe3\x06\x86\x8a\xc3\xfd\x6c\x06\x00\x70\x7d\x0d\x6f\x35\xa0\xf6\xd2\xc7\x5d\x1b\x63\x09\x91\xcc\x51\xea\x2d\xab\x40\xfe\xad\xad\x38\x0a\xc5\xc1\x66\x27\x43\x63\xcd\x1e\x44\xc8\x1c\x16\x34\x54\x65\x28\xee\x97\xb8\x3a\x6d\x77\xcd\x40\x8b\x87\x60\x20\x85\xdb\x01\xee\xa5\xa7\x78\x1c\x77\xa8\xd3\x06\x94\xe4\x69\x67\xfd\xc4\x76\x87\xe1\x46\x7a\x4e\x98\x70\x03\x1f\xbd\x95\x7a\xbb\x04\xb1\x37\x9d\xf6\x37\xf0\xe9\xbd\xfc\xfc\xb7\xff\x5f\xb2\xa8\x1b\x78\x5b\xd7\x16\x9d\x7b\x13\xfe\xfe\xf4\xe9\xc3\xf7\x37\xf0\xe9\x83\xf6\xf4\x45\xde\xb6\x7c\xbc\x09\x88\xf0\xb6\xf1\x68\x93\xb8\xc5\xef\x31\xab\xc6\xd6\x38\xe9\x03\x60\x3e\x6e\xd4\xf7\xe9\xd3\x27\x8c\xf2\x66\x68\x92\x37\xa5\xe6\x79\xc3\x17\x19\xf4\xc3\x23\xc6\xec\x10\xb6\xca\x6c\x84\x82\x4d\x67\x35\xec\xd1\xef\x0c\xf7\xb9\x4a\x28\x45\x5f\x51\x4d\x0a\xd0\x46\xbf\xfe\x2f\x5a\x93\xb6\xba\x60\x25\xd7\xce\x53\x26\x8e\xe3\x34\xd0\xf4\xdd\x40\x3a\x15\xdb\x30\x24\x7d\x35\xb0\x25\x6d\xa8\x6e\xd7\x37\xe7\x8c\x6c\xff\xce\xeb\xa8\x04\xb6\xe8\x3d\x55\x40\xd4\x1c\x24\xe3\x04\x97\x6a\xb1\xcf\xd0\x9a\xf3\x56\x91\x54\x83\x7b\xfe\x78\xbc\xe0\x20\x6c\xda\x20\x19\xca\xdf\x3d\xf4\xb6\x25\x38\x7a\x8e\x71\x48\x3a\x56\x11\xb8\x2d\xfe\xd6\x49\xcb\x45\xe8\xd8\xa2\x94\xd6\x84\x75\x49\xc8\xb0\x9a\x19\xc6\x13\xf8\x70\xf1\x9f\x5a\x5c\x9d\xed\xfb\xc1\x43\x26\x0e\x71\xc3\x72\x2f\xa3\x61\xbd\x49\xdd\x73\x87\x16\x97\x79\xed\xa0\x59\x29\x14\xd4\x1c\x4c\x1b\xd3\xa9\x35\xce\xc9\xd8\x1f\x4c\x03\x95\x45\xc1\x4a\xc4\x1e\x11\xe3\x66\x5d\xaf\x3a\x59\x4c\xcc\x83\x09\x0c\xf9\x54\x58\xa9\x4e\x91\x89\x70\x5f\x33\x47\x9d\xdc\xbb\x7a\x49\xd0\x72\x0b\x88\x20\x99\xb6\x7c\x1f\x53\x85\xeb\xd6\xdd\x81\xc8\x6a\x81\x24\x2e\xe6\x5a\xac\x64\x23\xab\x98\xbb\x3d\x5c\x16\x52\xa4\x03\x71\x10\x52\x89\x00\xeb\xd4\x94\x32\xe2\x14\x1f\xde\x06\x9e\x44\x4d\x61\xc3\x3d\xbd\xe9\x14\x6f\x7d\x30\xb2\x86\x56\x68\x59\x91\x87\xb8\x22\xa9\xee\xf8\x8f\x04\xb7\x43\x41\xb9\x66\x73\x32\x3b\xe8\xf4\x9d\x36\xa3\x0d\xdf\xd6\x81\xa3\x08\xa5\x4e\x4b\x32\x89\x03\x93\x4d\x74\xd0\x76\x61\x17\xce\x97\x7d\xa7\xbc\x6c\x15\xc2\x81\x00\x6c\x64\x63\x64\x12\x99\x99\x55\x3b\xac\xee\xc0\x99\x7d\x66\x0c\x61\x15\x74\xda\x4b\xc5\x0f\x6a\x74\xd2\x62\x1d\x9d\x37\x76\x99\x45\x51\xed\xb0\x5e\x42\x6b\x3c\xe5\x27\xe9\x08\x3b\x54\x6d\xb2\x1a\x5a\xb4\x5c\xa2\x39\xda\x69\xf5\x74\xe9\x49\x3c\x52\xed\x83\x74\x6f\x53\x34\x6e\x4d\x6a\x22\xf3\x12\x7d\x16\x37\xf0\xce\x18\x55\x66\x43\x72\x35\xb8\x6e\x13\xc9\xfa\xa3\xe5\x94\x12\xad\x10\x42\x04\xd1\xa2\xef\x2c\xf5\x86\x48\xc4\x32\xa1\xb1\xb8\x37\x07\x6e\x13\x81\xd8\x0c\x16\x8e\x12\xa5\xa7\x8c\xaf\x5c\x34\x13\x14\x1e\x50\x91\xeb\xd6\xd1\xee\x64\xdc\x62\x5d\xac\xfe\x68\x88\x65\x1a\x4b\x31\xa6\xec\x0a\xab\xa5\x5f\x32\xcf\x0b\xf3\x07\x4a\xbf\x43\x9b\x6b\x0b\xcc\xe6\x57\x24\xaa\xe1\x1d\xaa\xa6\x90\x66\x78\xc2\x89\x0c\xa0\x1e\xb0\x4d\xb6\x6a\x9d\x74\x58\x4f\x5b\x33\xd6\x94\x23\x74\xbc\x18\x94\x6f\xef\xd9\x63\x0f\x03\x78\xa5\x1f\x62\xdc\xa3\x47\x61\x23\x58\x5b\x74\x71\x26\x68\x98\x95\x9a\xe8\x68\x8a\x00\x1c\x84\xea\xf0\x6c\x59\x58\xb2\x4a\xb5\xf3\xf5\xd7\xa9\x35\x9d\x7d\x49\x3f\x57\xbf\xf4\x74\x29\xc2\xc0\xbe\x73\x9e\x2a\x98\x76\x72\x62\x8f\x20\x5c\x51\x8d\xb1\x20\x7a\xb6\xc3\x46\x5d\x15\xe2\x1f\x66\xe5\x6f\x83\x0e\x91\x26\x97\x3f\xde\x21\x22\x4f\x98\x68\x10\x52\x47\x4f\x3d\xa3\x41\xfc\x82\x09\x96\xa5\xae\x54\x57\x23\x08\xc8\xe3\x4f\x50\x83\xd1\xa0\x74\x42\x6c\x0d\x59\xca\x11\x79\xa8\xa5\x08\xd1\x18\xf1\x9c\x29\x22\xb8\x21\x4c\x11\x59\x0e\xd1\xfe\xda\xa4\x8f\xa6\x47\x86\x25\x28\x79\x87\xe0\x5a\x25\x99\x75\xef\xa1\x6b\xa9\x32\xb3\x10\x87\xba\x0e\x2f\x68\x02\x91\x0d\xe7\xb4\x87\x56\x85\x81\x07\x9e\xdf\x5a\x52\xb0\xc6\xad\x25\xba\x1e\xbc\xb8\xc3\x1e\x09\x08\x1d\xe2\x1b\xaa\xc8\x0b\x61\x28\x86\xe1\xc7\xca\x8a\x95\xa2\x8a\x8a\x32\xe7\x81\x0b\xa7\x2a\x5a\x94\x2a\x6d\xd1\x7f\xec\x5a\x9a\x6e\xb0\xe6\x0f\x6e\x4f\x2d\xba\x01\x5a\xd5\x92\x11\x47\x58\xee\xd8\x71\x88\xa4\x6f\xce\x10\xee\xb8\x43\xc6\x0f\x76\x39\x4d\xec\xd4\xd8\x3a\x4b\x4e\x54\x27\x70\x69\x17\x1a\xc8\xf8\x70\xa0\x48\xe9\xb1\x01\x19\xb9\xa7\x15\x9c\x2f\x6e\xe0\xfe\x96\xa9\x24\x61\xf6\x43\x69\xd4\x4f\x51\xfb\xa4\x91\xb1\x9c\xa9\x4c\x68\xe5\x81\xda\x64\x54\x8f\x76\x6c\xb3\x4e\x78\xae\x12\x37\xcc\xd0\xc5\x62\x52\x0b\x1d\x57\x81\xd0\xa7\x20\x28\xce\x74\xbf\x12\x02\x44\x90\xf1\xb6\x43\x12\x5a\x63\x93\x89\xff\x45\x13\xa5\x3b\xb7\x30\xf2\x64\xfa\x35\xf5\xa5\x11\x22\xf4\x13\x45\x41\xdc\x6a\x0c\x8d\x9d\x5d\xdc\xa7\x64\x40\x78\x1e\xd8\xfb\xe3\xa5\x6c\xef\x32\x51\xd8\x25\xdc\x5a\xa1\x5d\x83\xd6\xd8\x65\xa6\x48\xe1\xb4\x24\x4d\x95\x3d\xd1\xeb\xfa\xc9\x81\xfc\xdb\x87\xf8\x84\xfe\x25\xf5\xc2\xa6\xdc\x0c\xb4\xe9\x37\xce\x7a\x0d\xe7\xda\x55\xfa\x65\x19\xa6\x0a\xbb\xa2\x7f\x98\x6a\x8d\xc9\x9c\x44\x55\x07\x25\xa9\x7b\xdf\x9d\x61\xb2\x08\xc1\x7d\x36\x71\x2f\xa4\x7f\x17\xe7\x20\x62\x5e\x62\x7c\x7a\x25\x1d\x8f\x4d\x58\xc3\x41\x8a\x70\x54\x15\x95\xa5\xc7\xf3\xc5\x3a\x0e\x54\x85\xc4\x0f\xa3\xe3\x82\x08\x6c\x94\x6a\x1b\x63\xee\xee\x10\x99\x0a\x19\xcb\xa3\x1a\x3f\xe7\xe9\xaa\xac\x46\xb6\x37\x66\xe5\x06\xcb\xa9\x2e\x1a\x4c\xea\xd5\xe8\xbc\x35\x27\xac\x4b\x26\xf5\x23\x49\x1d\x9f\x5b\x1c\xa5\x52\x19\xab\xbb\xb6\x16\x1e\x7b\x6c\x7d\x45\x3d\xd6\x0b\xc5\x19\xa0\x4e\xa5\x2e\x86\xda\xb0\x22\x22\x11\xc2\x90\x01\x39\x9c\x77\x6e\x10\x75\x72\x54\xe0\x49\x81\x0e\x65\x7a\x15\x64\xae\x1e\x75\x13\xe7\x75\x3a\x9d\x74\xe8\x8b\x28\x7b\x03\x61\x3c\xc5\xc6\xd8\xa0\x35\x21\xfd\xe8\x14\xee\x9c\x94\x4b\x66\x0e\xad\x0d\xe3\x6b\xf0\x9a\x39\x6a\x6a\x3e\xac\x9c\x6b\xc5\x7e\xcf\x44\x99\x1a\x54\x18\x6f\x63\x34\x56\xe3\x7c\x4a\xe7\x36\x01\x99\xc9\x5c\xca\x9d\x8d\xa8\xee\xe6\x8b\x31\xaf\xb1\x38\x41\x6b\x38\xdc\xc5\x08\x4d\xa4\x6c\xb5\xc5\x80\x16\x8b\x95\xac\xa9\x51\x34\x92\xab\x35\x52\x28\xfe\x64\x93\x2a\xa8\x9f\xad\xf9\x79\xd7\xc9\x7a\x71\x81\x7e\xc0\x65\x7e\x35\x94\x49\x34\xe9\xab\xd5\x57\x37\x70\x75\x3b\xf0\x77\x62\x42\x1c\x87\xe8\xfb\xba\xb3\xe9\xa4\x69\x68\x7c\x3a\x53\x70\x26\x02\x09\x03\x2c\x61\x09\xad\x27\xff\x62\x7d\x89\x22\x9d\x2b\x43\xba\x0c\x18\xd4\x1f\xe9\x73\x87\xbe\xcf\x8d\x7a\x1b\x4f\x29\xb1\xbd\x87\x46\xe0\xe2\xd9\x68\x8d\x9f\x29\x01\x47\xed\x99\x09\x5a\x6c\x03\xa3\xaa\x02\x46\x68\x66\x4f\x35\xcf\xd0\x79\x74\x8e\x63\x93\xb0\x08\xf8\xb9\xc5\xca\x63\x3d\x2e\x2a\x9e\xbc\x72\xff\xea\x47\x61\xda\x7f\x19\x1c\x8a\xa7\x50\x62\xba\xaf\x8d\x38\xe7\xf1\xfd\x44\xa1\x4b\x21\x9e\x68\x22\x5b\x7a\x56\x1c\x7f\xa0\x45\x8f\x72\xe9\xfa\x1a\xde\xa1\x32\xc7\x38\x34\x92\x2b\x06\x87\xb6\x89\xf6\xb9\xce\x46\x52\x6b\x3b\xfd\xda\xcb\x7d\xa4\x16\xdc\xce\xc6\xf2\xd8\x25\x5b\x4c\x4d\x78\x78\x8e\xd5\x0a\xe6\x72\xb9\xf7\xc4\x1e\x18\x49\x62\x79\xe1\xb3\x0a\x37\x0a\x2b\x28\xe4\xcb\xe6\xac\xe2\xdc\xc7\x6e\x43\xda\xcc\x4d\x13\x3a\xf5\xdf\xbf\xbd\x9f\x90\xf4\xf0\xcd\x7c\x31\x2e\x72\xe0\x91\x83\xa9\xc2\x7d\x29\xf6\x86\xb9\x43\x99\xe6\x0f\x80\xca\x4d\xa1\x42\xe6\x3a\x3c\x8e\xed\x5b\x7f\x1a\xe6\x71\x9c\x40\x52\xf2\xf1\xe0\xc3\xb1\xcd\x6e\x38\xee\x0c\xd4\x46\xbf\xf2\x53\x92\xfb\x33\xea\x49\xff\x2c\xc1\x75\xd5\x8e\x36\x29\x5f\x7f\x3c\x4a\x5f\xed\x36\x46\xd8\x7a\xbd\x84\x35\x3f\x7b\x6f\xec\x51\xd0\xec\xb9\x06\xf4\xd5\xea\xa2\x2b\x1e\x2e\x8e\x43\x65\xdf\x0d\x93\x45\x3c\xbb\x28\x29\xdd\x39\xcf\xfc\xf9\xcf\x62\x60\xa3\x00\x44\xa5\x53\xf8\x26\x4b\xe0\x5f\x24\xe4\x3f\xf0\xe6\x0d\x34\x42\x39\xbc\x64\xd0\xc4\x29\xc3\x3a\x80\xf8\xba\x6f\x84\x2c\xf7\x95\x2b\x8e\x59\x61\xf2\x84\x41\xe3\x71\x7c\xca\x90\x04\x93\x5f\xce\xd7\xff\xd9\xa3\xf9\x64\x0b\x2b\xc0\xfa\x9b\x27\x06\xec\xb7\x61\xaa\xee\xc7\xe5\xd4\x55\x14\x3a\x1e\xfe\x34\x93\xa0\xdf\x3a\xa1\xc2\x5f\x13\xb3\xf6\xa3\x13\x36\x5c\x6e\x71\xf1\x2c\x20\x97\x24\xb5\xb9\x71\x91\x5e\xfd\x38\x64\xfb\x69\xe6\xef\xdb\x06\xd5\x05\xad\xb9\x9a\xaa\x2c\x82\x78\x5e\xd3\x62\x25\x85\xca\x30\x0b\xeb\xc0\x51\xd6\x3c\x10\x47\x1a\x13\xca\x36\x9a\xd4\x9f\xb9\xf2\x95\xdd\x94\xf0\xc8\xb1\x36\xb8\x95\x5a\x33\x59\x2c\x89\x4e\x7f\x11\x39\xb1\xfa\xc9\x76\x1f\x14\x9c\x0f\x1f\x2f\xe0\xf5\xe3\xb1\xfc\x47\x4e\xc7\x31\x45\x60\x78\x8a\x93\x76\x1f\x37\xa2\x5c\x7c\xf7\x97\x3e\x17\x61\x30\x1f\x1f\x9e\xa4\xf7\xe7\x3e\x66\xb6\xd4\xdf\x15\x4d\xaa\x45\x3f\xa1\xc4\xc7\xf1\x1e\x72\xa9\x8b\x4b\x53\x2d\x84\x7f\x2f\x7f\x17\xa6\x6f\xf6\x17\x93\xc7\x37\x2b\x11\xae\x70\x1e\x5f\x32\x22\x6a\x97\x3f\x1e\xdd\x63\x45\x5b\x1e\x5f\x53\xde\x09\x0d\x63\x79\xb6\xe4\x12\x43\x7c\x78\xee\xc9\x86\xa8\x6b\x07\xd2\xbb\x21\x1d\x3f\xab\xd5\x33\x94\x7e\xc9\xb9\xc6\x54\xcb\x1d\xf7\x5b\x1a\xe3\x9d\x43\x3b\x18\x42\x2a\xa3\x2b\x8b\x3e\x12\x8a\x98\x7a\xfd\xad\x5d\x9e\x92\x52\x71\x8f\xe5\xc5\xee\x3a\x38\x1b\xc8\x07\x0a\x89\xea\x46\x69\xcf\xc0\x46\xb2\x65\x25\xdd\x07\xed\x3c\x79\x65\x5e\xc2\xcd\xe2\x06\xa6\x2b\xeb\xbb\x40\x96\x93\xf7\xf9\x7f\x9d\x54\x66\xdf\x0a\x3f\x18\x44\xc9\xbe\xdf\x81\x82\x5c\x43\xfd\xd5\xe4\x13\x35\x14\x71\x81\xed\x98\x2a\xa4\xc5\xd3\x95\x34\x14\x91\xa0\xe5\xf2\x2a\x6f\x5e\x58\x55\xe9\xbe\xf4\x19\x35\x35\xba\x4a\x1d\x2a\xc6\x53\xd3\x5f\x50\x59\xf0\x5c\xac\xfd\xbf\x49\x3f\xfd\x2e\xe4\x75\xdd\xfe\x49\xc8\xed\x0b\xe2\x89\xf3\xea\x02\x0e\xf8\x62\x0f\x7f\x20\x42\x1a\x91\x40\x29\x73\x74\x7c\x5e\x11\xfe\xdb\x8a\x89\xdf\x14\x6c\x85\xab\x68\x27\x08\x40\xce\x2e\x94\xe1\x09\x54\x18\x6f\x39\x7f\xf1\xcd\xc1\xf9\x15\x40\x3f\xdb\x6a\x3c\xaa\x53\xdc\x23\xba\x22\xb8\x92\x07\xac\xa1\xb2\xe7\xcd\xe8\x59\x74\xe2\xe9\x4d\x32\xc9\x48\xf4\x82\x41\x2c\xdd\xa0\x1e\x5e\x74\x9b\xf0\x17\xc4\x67\xea\xa8\x6f\x32\x2e\x87\x44\x8f\x33\xb7\x9e\x86\xf0\x41\x84\x26\x02\x36\xe5\xd4\x81\x64\xf6\x67\x1e\x03\x03\x46\xe7\x0b\xed\xbd\xf0\xd5\xae\xb8\x8d\x3c\x87\xc8\x3f\x3b\x19\x52\x08\x1e\xfe\x17\x00\x00\xff\xff\x9b\x3d\xb9\xb6\x89\x28\x00\x00" func fungibletokenCdcBytes() ([]byte, error) { return bindataRead( @@ -115,7 +115,7 @@ func fungibletokenCdc() (*asset, error) { } info := bindataFileInfo{name: "FungibleToken.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0xe4, 0x49, 0x30, 0x9e, 0xd3, 0xb8, 0xa5, 0x83, 0x72, 0xbc, 0x60, 0x84, 0xa4, 0xfb, 0xa, 0x6e, 0x88, 0xc9, 0xf9, 0x0, 0x1f, 0xc4, 0x40, 0x4e, 0x95, 0xf, 0x75, 0xfd, 0xaa, 0x86, 0x5d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0xaa, 0x44, 0xc5, 0x28, 0x30, 0x92, 0x83, 0x68, 0x3a, 0xfb, 0x0, 0x6, 0x8c, 0x53, 0x14, 0x5, 0xb8, 0x85, 0x4c, 0xfc, 0xe8, 0x77, 0xce, 0xb2, 0xf1, 0xc3, 0x90, 0xe7, 0x81, 0xe4, 0xbe}} return a, nil }