From 718708e65be461fc89c1d92639d14317ca05f485 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 24 Mar 2026 14:35:20 -0500 Subject: [PATCH 1/2] add isGhostListing() with correct semantics; deprecate hasListingBecomeGhosted() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit hasListingBecomeGhosted() returns true when the NFT is still present and false when absent — the opposite of what its name implies. Existing callers in the wild already compensate with !, so fixing the semantics in place would silently break them. Instead, add isGhostListing() with correct semantics and deprecate the old function without changing its behaviour. Changes: - Add isGhostListing() to ListingPublic interface and Listing resource - Update cleanupGhostListings to use isGhostListing() directly - Add deprecation notices to hasListingBecomeGhosted() in interface, impl, and scripts - Add is_ghost_listing.cdc and read_all_unique_ghost_listings_v2.cdc scripts - Add testIsGhostListing covering both new scripts - Update documentation to clearly mark hasListingBecomeGhosted() as deprecated Co-Authored-By: Claude Sonnet 4.6 --- contracts/NFTStorefrontV2.cdc | 31 +++++++- .../utility/test/MaliciousStorefrontV2.cdc | 4 + docs/documentation.md | 26 ++++++- lib/go/contracts/internal/assets/assets.go | 12 +-- scripts/has_listing_become_ghosted.cdc | 5 ++ scripts/is_ghost_listing.cdc | 21 +++++ scripts/read_all_unique_ghost_listings.cdc | 5 ++ scripts/read_all_unique_ghost_listings_v2.cdc | 42 ++++++++++ tests/NFTStorefrontV2_test.cdc | 76 +++++++++++++++++++ 9 files changed, 211 insertions(+), 11 deletions(-) create mode 100644 scripts/is_ghost_listing.cdc create mode 100644 scripts/read_all_unique_ghost_listings_v2.cdc diff --git a/contracts/NFTStorefrontV2.cdc b/contracts/NFTStorefrontV2.cdc index 7d80238..4117f2b 100644 --- a/contracts/NFTStorefrontV2.cdc +++ b/contracts/NFTStorefrontV2.cdc @@ -252,8 +252,22 @@ access(all) contract NFTStorefrontV2 { /// hasListingBecomeGhosted /// Tells whether listed NFT is present in provided capability. /// If it returns `false` then it means listing becomes ghost or sold out. + /// + /// DEPRECATED: The return value of this function is semantically inverted — it returns `true` + /// when the NFT is still present (i.e. NOT ghosted) and `false` when the NFT is absent + /// (i.e. IS ghosted). This is the opposite of what the function name implies. The function + /// is kept as-is to avoid breaking existing integrations that already compensate for the + /// inversion. Use `isGhostListing()` instead, which returns `true` when the listing is + /// ghosted and `false` when it is still valid. access(all) view fun hasListingBecomeGhosted(): Bool + /// isGhostListing + /// Returns `true` if the listed NFT is no longer present in the seller's collection + /// (i.e. the listing is ghosted and cannot be purchased), and `false` if the NFT is + /// still available. This is the correctly-named replacement for `hasListingBecomeGhosted()`, + /// which has inverted return semantics. + access(all) view fun isGhostListing(): Bool + } @@ -345,6 +359,10 @@ access(all) contract NFTStorefrontV2 { /// hasListingBecomeGhosted /// Tells whether listed NFT is present in provided capability. /// If it returns `false` then it means listing becomes ghost or sold out. + /// + /// DEPRECATED: The return value is semantically inverted relative to the function name. + /// This function returns `true` when the NFT is still present (not ghosted) and `false` + /// when the NFT is absent (ghosted). Use `isGhostListing()` instead. access(all) view fun hasListingBecomeGhosted(): Bool { if let providerRef = self.nftProviderCapability.borrow() { return providerRef.borrowNFT(self.details.nftID) != nil @@ -352,6 +370,17 @@ access(all) contract NFTStorefrontV2 { return false } + /// isGhostListing + /// Returns `true` if the listed NFT is no longer present in the seller's collection + /// (i.e. the listing is ghosted and cannot be purchased), and `false` if the NFT is + /// still available. This is the correctly-named replacement for `hasListingBecomeGhosted()`. + access(all) view fun isGhostListing(): Bool { + if let providerRef = self.nftProviderCapability.borrow() { + return providerRef.borrowNFT(self.details.nftID) == nil + } + return true + } + /// purchase /// Purchase the listing, buying the token. /// This pays the beneficiaries and commission to the facilitator and returns extra token to the buyer. @@ -863,7 +892,7 @@ access(all) contract NFTStorefrontV2 { message: "NFTStorefrontV2.Storefront.cleanupGhostListings: Cannot cleanup listing with id \(listingResourceID) because it is already purchased!" ) assert( - !listingRef.hasListingBecomeGhosted(), + listingRef.isGhostListing(), message: "NFTStorefrontV2.Storefront.cleanupGhostListings: Cannot cleanup listing with id \(listingResourceID) because it is not a ghost listing!" ) let listing <- self.listings.remove(key: listingResourceID)! diff --git a/contracts/utility/test/MaliciousStorefrontV2.cdc b/contracts/utility/test/MaliciousStorefrontV2.cdc index 719762f..14dec50 100644 --- a/contracts/utility/test/MaliciousStorefrontV2.cdc +++ b/contracts/utility/test/MaliciousStorefrontV2.cdc @@ -123,6 +123,10 @@ access(all) contract MaliciousStorefrontV2 { return self.storefrontCap.borrow()!.borrowListing(listingResourceID: self.listingResourceID)!.hasListingBecomeGhosted() } + access(all) view fun isGhostListing(): Bool { + return self.storefrontCap.borrow()!.borrowListing(listingResourceID: self.listingResourceID)!.isGhostListing() + } + // purchase will return the "wrong" nft access(all) fun purchase( payment: @{FungibleToken.Vault}, diff --git a/docs/documentation.md b/docs/documentation.md index 599cbdf..fa66eda 100644 --- a/docs/documentation.md +++ b/docs/documentation.md @@ -140,7 +140,8 @@ resource interface ListingPublic { ): @{NonFungibleToken.NFT} access(all) view fun getDetails(): ListingDetails access(all) fun getAllowedCommissionReceivers(): [Capability<&{FungibleToken.Receiver}>]? - access(all) fun hasListingBecomeGhosted(): Bool + access(all) fun hasListingBecomeGhosted(): Bool // DEPRECATED — see below + access(all) view fun isGhostListing(): Bool } ``` An interface providing a useful public interface to a Listing. @@ -187,13 +188,30 @@ If it returns `nil` then commission paid to the receiver by default. --- -**fun `hasListingBecomeGhosted()`** +**fun `isGhostListing()`** + +```cadence +fun isGhostListing(): Bool +``` +Returns `true` if the listing is ghosted — i.e. the underlying NFT is no longer present in the +seller's collection and the listing cannot be purchased. Returns `false` if the NFT is still +available. Use this function to check ghost state. + +--- + +**fun `hasListingBecomeGhosted()` _(deprecated)_** ```cadence fun hasListingBecomeGhosted(): Bool ``` -Tells whether a listed NFT that was put up for sale is still available in the provided listing. -If it returns `true` then it means the listing is "ghosted" because there is no available nft to fulfill the listing. +**Deprecated.** The return value of this function is semantically inverted relative to its name: +it returns `true` when the NFT **is still present** (the listing is _not_ ghosted) and `false` +when the NFT **is absent** (the listing _is_ ghosted). This is the opposite of what the function +name implies. + +The function is preserved to avoid breaking existing integrations that already compensate for +the inversion (e.g. by calling `!hasListingBecomeGhosted()`). New code should use +`isGhostListing()` instead. --- diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 8143cda..54beb5a 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,13 +1,13 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: // ../../../contracts/NFTStorefront.cdc (23.729kB) -// ../../../contracts/NFTStorefrontV2.cdc (43.078kB) +// ../../../contracts/NFTStorefrontV2.cdc (44.893kB) // ../../../contracts/utility/ExampleNFT.cdc (16.682kB) // ../../../contracts/utility/ExampleToken.cdc (9.619kB) // ../../../contracts/utility/NFTCatalog.cdc (16.383kB) // ../../../contracts/utility/NFTCatalogAdmin.cdc (7.969kB) // ../../../contracts/utility/test/MaliciousStorefrontV1.cdc (6.24kB) -// ../../../contracts/utility/test/MaliciousStorefrontV2.cdc (8.055kB) +// ../../../contracts/utility/test/MaliciousStorefrontV2.cdc (8.243kB) package assets @@ -97,7 +97,7 @@ func nftstorefrontCdc() (*asset, error) { return a, nil } -var _nftstorefrontv2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5b\x93\x1b\xb7\xd1\xe8\xbb\x7e\x05\x56\x0f\x32\xe9\x8f\xa2\xfc\xa5\x4e\x9d\x87\x8d\x56\xf6\x7a\x25\x25\x5b\x89\x1d\x95\x2d\xdb\x0f\xb2\xaa\x16\x9c\xc1\x90\xa8\x1d\x0e\xc6\x00\x66\x29\x46\xd9\xff\x7e\x0a\x8d\xfb\x65\x86\xa4\x24\xc7\x76\x4e\xf8\x60\xaf\x48\x5c\x1b\x7d\xef\x46\x83\x6e\x7b\xc6\x25\x7a\xf8\x72\xe8\xd6\x74\xd5\x92\xd7\xec\x96\x74\x0f\x1f\xd8\xaf\xbf\x65\xdd\xc8\x2f\x5f\x0f\xbc\x23\xfc\xe1\x83\x07\x4f\x9e\x3c\x41\xdf\xbe\x7c\xfd\xbd\x64\x9c\x34\x9c\x75\xf2\xc7\x3f\xa9\xef\xe0\xfb\x4b\xb4\x26\x1d\xe1\xb8\x45\xfd\xc0\x7b\x26\x08\x12\xb8\x25\x48\x0c\x3d\x0c\x52\xb1\x4e\x72\x5c\x49\xd4\x30\xae\xc6\x10\x48\x6e\xb0\x44\x74\xdb\xb7\x64\x4b\x3a\x89\xe4\x86\xa0\x97\x2d\xdb\xa1\x74\x1d\x48\x48\xdc\xd5\x98\xd7\x4b\x98\x07\xfe\xf3\x02\x57\x1b\x84\xab\x8a\x0d\xd0\x13\x4b\xb4\xc3\x9d\x14\x48\x32\xd4\x52\x21\xf5\x04\x6a\x26\x58\x03\xed\x84\xc4\x6d\x2b\x10\x46\x7e\xe9\x0b\x18\x08\x77\x35\xf4\x10\x88\x76\x35\xbd\xa3\xf5\x80\x5b\xe8\x24\xd0\x8e\xca\x0d\xed\xf4\xe8\xbe\x1b\xc2\x02\xfd\x9d\x0a\x49\xbb\xb5\xd0\x0b\x7a\xbd\x21\x9c\x20\x2a\x10\xeb\x48\xd8\xb0\x27\xdc\x2e\x71\x81\xa8\x44\x1b\xdc\xd5\x6a\x5c\x3d\x3a\x6b\x10\x6e\x5b\xb5\x50\x24\xf7\x3d\x11\x30\x94\x5a\x31\xcc\x67\xfa\x2d\x1d\x74\x61\xc3\x66\x5e\x54\xe1\x0e\x6d\xf0\x1d\x81\x19\x19\x47\x5b\xc6\x09\x7a\x58\x0d\x52\x3c\x54\xe3\x2a\x48\xc2\xbe\x7b\x4e\x2b\x02\x03\xc2\x18\x6b\x46\x00\x42\x61\x2f\x5c\xd7\x9c\x08\x41\xc4\x12\x5d\x0d\x52\xc0\xd0\x2b\x82\x06\x41\x6a\xd5\xb4\xc7\x7b\x00\x8f\x9a\xb5\x21\x66\x95\x8c\x23\x26\x37\x84\xab\x33\x15\xb4\x26\x1c\x4b\xca\x3a\xb1\x44\xe5\x95\xd2\xae\x6a\x87\x9a\x20\x8c\x2a\xb6\xdd\x52\x21\x28\xeb\x10\xde\xfa\xa3\xa3\x02\xf5\x98\xc2\x7c\xbb\x0d\x23\x77\x84\xa3\x06\x57\xb4\xa5\x12\x4b\x33\xa5\xda\x52\x3f\xf0\x6a\x83\x05\x59\x2a\x88\x23\x41\xda\x56\x2d\x01\x77\x08\xb7\x82\xa1\x6a\xc3\x14\xce\xa9\x35\x73\x76\x47\xd5\x7c\x1d\x62\xbd\x5a\x19\x6e\x35\x52\xb0\x06\x6d\x31\xbf\x25\xb2\x6f\x71\x45\xf4\x6a\x39\xa9\x08\xbd\x83\x81\x7a\xbc\x52\x73\x52\x05\x8b\x6b\x75\xee\x54\x81\x43\x90\x05\xcc\x9e\xaf\x7d\x3b\x08\xa9\x60\x25\x39\xee\x44\x43\x38\x07\x90\x69\x08\x29\x08\xeb\x83\x08\xc7\x45\x80\x4e\x04\x56\x93\x1c\xad\xc2\x83\x2d\xde\xab\xf1\xd4\xaf\xa4\x56\x6d\xc3\x83\xb2\x38\xa7\x57\x73\x87\x5b\x5a\x53\xb9\x57\xb3\x10\x5c\x6d\x60\xa0\x10\xe8\x04\x0b\xda\xc2\x70\xd5\x86\x54\xb7\x24\x24\x9e\x57\x06\x90\x5c\x1f\xf7\x0e\xcb\x6a\x03\xa8\x67\x07\x20\x77\x44\x11\x93\xa2\x0d\xe8\x0d\x53\x5a\x4c\x55\x5f\xc3\x30\xd7\xcf\x15\xb4\x05\x21\x88\xc2\x56\xf7\x68\x47\xc5\x46\x7d\xb7\x1a\xf6\x6e\x9f\x6a\x27\x92\x6c\xf5\xf4\xdf\x78\xf0\xeb\xe1\x35\x1e\xe1\xf5\x9a\x93\x35\x96\xec\xc0\x8a\x22\x8a\x85\x61\x81\x8e\x68\x27\x09\x27\x16\xa4\xb8\xaa\x88\x10\x33\xdc\xb6\x73\xcf\x74\x12\xa6\x85\xde\x3f\x78\x80\x10\x42\x61\x5b\xd2\x49\x2a\x0d\x2f\xba\xe2\x04\x4b\x62\x26\x9f\x6c\xf9\x1d\xd9\xb2\x3b\xd7\x12\x9a\xaa\x45\xfa\xc9\xae\x3b\x2a\x29\x6e\xe9\x3f\x49\xed\x7e\xbd\x0c\xd9\x04\x27\x82\x0d\xbc\x22\x68\x83\x05\x5a\x11\xd2\xa1\x0a\x66\xaf\x97\xae\xfd\x0b\xb5\x7b\xa0\xb6\x61\x6b\x4f\xad\x63\x3b\x44\xde\xf5\xa4\x92\xf6\xb8\x1a\xce\xb6\x1a\x6b\xfd\xe8\x7e\x8c\x6f\x99\x24\x86\x53\x12\x54\x33\xd4\x31\x89\x44\x4f\x2a\xda\xec\x15\xa5\x18\x3e\x70\xae\x7e\xad\x70\xa7\x7e\x55\x80\x16\x1b\x36\xb4\xb5\x6a\xec\x47\xd2\xc0\xa9\xdd\xc2\x85\x1d\x0e\x58\x92\xa2\xba\x5d\xa7\x0e\x55\x8f\xb8\x80\x71\x0c\x6a\x2b\x58\x79\x30\xe0\x46\x2a\xc2\x53\xc3\x29\xb2\xa2\xea\xe0\xf7\x22\x58\x01\x20\x9f\x9f\xd8\x40\xf9\xf2\x0e\xd3\x16\xaf\x5a\x62\x37\x9e\xf0\xac\x9a\x48\xc2\xb7\xb4\x23\x80\x83\x66\x19\x6e\x10\x43\x96\x7a\x8d\xe6\x1f\xc1\x69\xcc\x96\xcb\x25\x95\x02\xb5\xac\x82\x55\xcd\x11\xd6\xa2\x49\xd2\xad\xa2\x69\x37\x8e\xc5\x6f\x85\x9d\xab\x41\x22\xd6\xb5\x7b\xdd\x16\x4b\xd4\x73\x52\x51\xa1\xf6\x0b\x48\x62\xa5\x88\xfd\x1a\x38\x06\xae\xd4\xf8\x7e\x77\xd7\x86\x71\x6b\xbe\xa6\x20\x25\xd2\xc5\xed\x36\xb4\x25\xd1\xcc\x54\x68\x56\xb0\x40\xc1\xc2\x34\x4b\x65\xc0\x6b\xb6\x6e\x82\x1c\x8d\x01\xab\x8a\x98\x3a\x13\xee\xdb\xef\xcc\x29\x5f\x3f\x3f\x47\x3f\x5c\x77\xf2\xff\xfe\x9f\xf9\x83\xd1\x13\x09\x30\xdc\xae\x30\xc5\x6a\x40\x07\x5c\xd7\xfa\xac\x70\x89\x12\x3c\x4c\x14\xa3\xbf\xd4\x07\xa8\xf6\x39\x10\x81\x40\xd8\x62\x6e\x58\x20\xda\x6d\x88\xe6\xa9\x7a\x37\x54\x20\xb2\xa5\x52\x92\x7a\xa1\x4e\x25\x3a\x2d\xa1\xc4\x89\x3d\x72\x23\x60\x85\x66\x5c\x9c\x34\x84\xab\xf5\x28\x3c\xad\x36\xb8\x5b\x13\xc4\x06\xa9\x84\x9b\xe9\xe0\xe9\x28\xe1\x24\x3b\xc6\x6f\x9b\x96\xed\x16\x48\x30\x60\xb7\x98\x93\x66\x68\xd5\x60\x9a\x77\xc2\x0a\x07\xa1\x60\x71\xcc\x79\xa4\x20\x9d\x41\x3b\xf5\xf1\x67\x72\x69\x89\xd5\xfc\xb1\x70\x6d\x0c\xd4\xf3\x43\xf3\x4d\xba\x46\xbe\xde\xf7\xe4\x1c\xa9\xff\x46\x5f\xff\xf0\x43\xd0\x1e\x85\xbf\x94\xc6\x51\x1a\xc6\x2b\xbc\x57\x08\xfe\x23\x1e\xda\xe2\xa0\xd0\x46\x29\x21\xe7\xe8\x87\x97\xf4\x5d\xd8\xbd\x1a\x84\x64\x5b\x35\xf0\xf7\x92\xd3\x6e\xfd\x65\xf0\x93\x13\xb5\x97\x20\x69\x0b\x9d\x5d\x8b\xef\x8c\xfc\x16\xe7\xe8\x8d\x81\xc6\xdb\x60\x28\xf2\xae\xa7\x7c\x6f\x17\x0f\x5f\xe7\xe8\x7b\xc5\x94\x12\x2a\x03\xce\xf4\x3a\x20\x31\x87\xc0\x0a\x3d\xdb\x3b\x52\x2f\xd1\xb5\x84\x6f\x09\x05\xe9\x05\x3f\x5a\xe5\xa4\x5e\x20\x0e\x22\xa1\x56\x92\xbb\x26\x42\x72\xb6\x0f\x78\xf9\xf4\xa9\xbb\x95\xcc\x8e\x38\x51\x54\xc0\x8c\xc9\x66\x6e\x8d\xe7\xe8\x6b\xc6\xda\x93\x51\xe2\x8f\x85\x11\x8e\x3a\x8e\x46\x87\x1f\x3a\xa5\x86\xda\xfe\x01\x2f\x33\x02\xbf\xf6\xda\xa2\x3a\x7e\x25\xa1\xf4\xd9\x2b\xe5\xb5\x1e\xb8\x21\x71\xad\x7b\x1b\x3e\xf3\xed\xcb\xd7\x87\xce\x3e\x9e\x76\xc6\xd3\xf5\x2f\xdc\xfc\xdf\xe3\x96\x5c\x0d\x6e\xf7\xf3\x92\xbe\xa1\xfe\xc2\x6b\xf2\x0a\xcb\x4d\x8c\xce\x46\xa0\x29\x61\x24\x74\x1b\x63\x6a\x14\x95\x11\x23\xf8\x57\xa6\xa3\xc5\xe0\x70\xf5\x2d\x91\xe5\x79\xcf\x51\xb8\x88\xc2\x1a\x5f\x0d\xab\x96\x56\xd9\x12\x7b\xf8\xda\xaf\x54\x29\x80\xd1\xea\x5a\xda\xdd\x1e\x5a\x87\x1f\xfb\x1c\x05\xf3\x04\xcb\xd0\x40\x0c\x8e\x57\x48\x3e\x54\x6a\xef\x3d\x27\x42\xc1\xba\x5b\x23\xac\xce\x9a\xf6\x94\x58\x23\xc5\x6a\xfb\xaa\x81\x32\x65\x08\x97\x98\x5a\x5b\x20\xd5\x2e\x7a\x4d\x05\x9a\xf7\x63\x24\xc1\x8c\xa5\x02\x09\xd6\x4e\xb0\x02\xb3\x0e\xb3\x40\xf4\xde\xa1\xad\x05\x90\x43\x3f\x6d\x27\xba\x79\x96\x51\xcb\xa2\xa6\x27\xc1\xd8\x73\x7a\x9e\x12\x4f\x0d\xed\x6a\x18\x05\x88\x55\xf7\x00\xf5\xd1\x01\x22\x10\x2c\xa0\xaf\x09\xa3\x7b\x74\xb7\x8a\xb9\x39\x5c\xb1\x73\x35\x44\xa9\xed\xd4\x98\x4e\x3b\xbc\x77\x6a\x1f\xee\x68\x3f\xb4\x0a\x8d\xe2\x11\x05\x8b\x16\xe2\x16\xa7\xf1\xb2\x1a\xa4\xb3\x59\xf7\x6c\xd0\x47\xb0\x26\x66\x95\x06\x5a\x58\xf7\xed\xa2\x71\x2b\x65\x5a\x5b\x68\x2d\x57\x8c\x73\xb6\x9b\xcd\xcf\x96\xa0\xf5\x2d\xed\x34\x8a\x18\x12\xd8\xbd\xd6\x46\x1f\xe8\x93\xb5\x32\xbf\x48\xd3\xd0\x4a\x61\x41\xbb\x57\x3b\xc3\x48\x54\x9c\xf6\x41\xaf\x14\x13\x3d\xf9\x5e\x59\xcb\x6f\xff\xf4\xd1\xfb\xc8\xa3\xb1\xb4\xc4\x7e\xff\xec\x41\x76\xc8\xc6\xba\x4c\x30\x29\xf6\x88\x68\x88\xd3\xb6\x55\xeb\xb4\xb6\xb3\x0c\x30\x64\x7c\x7d\x38\x62\xa0\xf1\xf4\xd4\x69\x80\x3c\xfc\xde\xfd\xad\x7e\x9f\x9d\xb8\xc1\x45\x32\xe3\x3c\xc0\x6b\x10\x08\xa4\x6d\x96\x0e\xb1\x2f\xdc\x0e\xf2\x46\x06\x30\x17\x21\xcd\xa9\xcf\xfd\x03\xfd\xdf\x4c\xae\x3f\x27\x12\xd3\x56\xe4\x94\xae\xcc\x42\x4c\x3b\x4d\xe7\xa6\xf1\x67\x02\xd5\x58\xe2\x83\xd4\x19\x8f\x5d\x20\xd2\x80\x5f\x19\x92\x72\xc6\x3b\xb0\x00\xf5\xb3\xb2\xee\xc7\x88\xd6\x90\xa0\xa1\x2d\x63\x09\x59\xdb\x49\xeb\xcc\x35\x6d\x1a\xc2\x63\xed\x3d\x27\x2c\x35\x0e\x15\xe8\x1f\x7f\x5b\x2a\xdb\x62\x07\x2a\x32\x47\x5b\x7c\x4b\x10\x95\xba\x85\xb2\x14\x24\xfa\xbc\xc2\xdd\xe7\x6e\x8a\x78\x20\x4d\x6a\x4e\x18\x70\x72\x47\x05\x75\xe2\x20\x85\xd1\x1d\xe6\x81\x32\xe2\x75\x84\x68\xc8\x9f\x36\x04\xf4\x26\x18\x3a\xd3\xb2\x9c\x92\xa2\x58\x8c\xb3\x3b\x4b\x13\x25\xea\x4c\x76\x10\x4a\xf1\x70\x62\x38\xf1\x29\x2e\xc1\x9b\x61\x2c\xa5\x15\x51\x2b\xd0\xce\x8a\x71\xc2\x89\x94\xa4\x6c\x32\xab\x78\xa1\xeb\xe7\x81\xe8\x57\x16\x5b\xb5\x01\x86\x02\xf6\x21\xc8\x0f\x69\xdd\x40\xd6\x3b\x31\x35\x65\xa8\x80\x65\x93\x0e\x1d\xfd\x65\x20\x88\xd6\x4a\x68\x35\xd4\x1b\xb4\x6e\x77\xc0\x23\x14\xcb\x54\x66\xe5\xe4\xde\x26\xa6\x09\x01\x59\xe0\x43\x86\x45\x09\x27\x22\xb7\xb8\x26\x11\x82\xa7\xd3\x8d\x2b\x8a\x63\xdc\x30\x12\xc1\xc0\xf0\x0c\x0c\xb5\x0b\x83\x92\x3a\x5e\xd9\x81\xb9\x43\x05\x34\xe7\xff\x76\x4c\x2d\xee\x6a\xaa\x50\x9e\x75\x0a\x02\x96\x1b\xaf\x88\xdc\x69\x93\xc0\xe8\x08\x62\x7a\xc2\xab\x41\x2a\x03\xc5\x48\xf6\xb7\xd1\x94\x97\x6d\xcb\x76\x01\x49\xd7\xb8\xef\x91\x24\x78\x2b\x42\x67\xa6\x56\x8e\x15\x13\xa2\xdd\x5a\x58\x51\x5c\x6b\xea\x19\xa8\xd8\x90\xda\xfc\x98\x90\xaf\x42\x02\xa0\xde\x0d\x69\x7b\xb0\x40\xb5\xc8\x6d\x25\xe1\xd6\x81\xc2\x09\xc8\x66\x23\x44\x28\x77\xaa\xf8\x38\xf1\x65\xca\x7a\x34\xed\x55\xe0\x2c\x75\xde\x1a\xa9\xed\xe3\x16\xd3\x2d\xa9\xd1\x6a\x5f\x72\xf6\x3a\xfd\x79\x1c\x9e\x63\xb6\x40\xb4\x80\x17\xa0\xe8\xab\x23\x6b\x03\x27\x5e\x69\xb8\xc4\x24\x88\x46\xb9\xe6\x5c\x2d\x50\xd0\x55\xbb\x07\xc2\x8d\x58\x16\x16\x9e\x05\x2d\x8b\xf2\xd2\xcc\x65\xe9\x7c\x8e\x9a\xa1\x53\xe3\xbc\x66\xd6\x05\x5b\xcf\x8a\xf2\xd0\x33\xc1\x0b\x24\xf9\x40\x02\x59\x17\x2d\xf0\x87\xbe\x76\x50\x33\x18\x12\x30\x03\x8d\x0f\xde\x2f\xe6\x91\x25\x72\x19\x06\xa8\x77\xd9\xf7\x22\x96\x4b\xdf\x60\xc7\xb5\x24\x43\x1d\xd5\x8e\x8d\x96\x60\x1e\xe9\x4e\x63\x3b\xbd\x32\x68\x32\xcb\xf0\x65\x5e\xd8\xb6\x6d\x84\x2e\x1c\x7e\x8d\xed\xfc\xfa\x08\x55\x05\xcd\xa2\x29\x46\xac\x5c\x34\x65\xe9\xa2\x71\x6b\x17\x1d\x69\xf1\xda\x76\x09\x0f\x48\x1a\x14\x84\x66\xdc\x62\xc2\x3a\x46\x47\x59\xc8\xa8\x6c\xff\xaa\xcf\xdc\xfa\xc3\xed\xa7\xe7\x24\x41\x4b\x0d\x5f\xf4\x23\x6e\xa9\x42\x39\xed\x72\x83\xd1\xb2\x66\xfa\x6b\xf4\xcc\xcc\x32\x5b\x2b\x34\xe0\x0a\xc1\xbe\x6e\x59\x75\x3b\x9b\x2f\x25\xdd\x12\x21\xf1\xb6\x9f\x9f\x67\xbd\xd5\xe7\x61\xe2\x64\x5b\xc6\x4a\xd7\x52\x1d\xee\x39\x88\x87\x35\xbd\x23\x9d\x9d\xd1\x0d\x8b\x7e\x9e\xe9\xaf\xe6\x4e\x66\x18\x71\xd1\x0c\x72\xe0\xe4\xec\xe1\xc1\xbd\xb5\xa4\x5b\xcb\x4d\x14\x4d\xab\x06\x99\x75\xb3\x07\xbb\x34\xed\x9f\xa1\x2f\xce\x8f\x5c\xbe\xd5\x09\x61\x85\xda\x75\x2e\x51\x4b\xb0\x90\x10\xf7\xb1\xa2\x46\x19\x41\x4e\xcc\xc4\xeb\xbe\x7f\x90\x93\x50\x88\x48\xe8\x22\xc2\xab\x69\x36\xd3\xe0\x56\x90\xbc\x89\x21\x1a\x74\x61\xc9\xa7\xd8\x44\x11\x8f\x6e\xa2\xfe\x2a\x36\xb1\x0d\x4a\x3f\x97\xc8\x48\x2d\xbe\xf0\xf5\x69\x4c\xc3\x37\x4a\xc8\x43\x35\x4e\xbe\xca\x3b\x19\xb4\xba\x28\x21\xba\x5b\x37\x44\x4d\x2f\x1c\x22\xc4\x47\xa2\x44\x21\x6e\x2b\x30\x7d\x75\x14\x81\x49\xdc\x9a\xb8\xac\x89\xd7\x00\x62\x89\xa8\x1b\xa8\xd1\x56\x4f\x39\xb4\xd4\x27\x4f\xd0\x2b\xc2\x1b\xc6\xb7\xd6\x7e\x33\x8e\x67\xd6\x45\xc1\x47\x1d\x88\xa9\xdc\x72\x82\x08\x31\xac\x44\x21\x9a\xd6\xb6\x02\x11\xa0\x3e\x0d\xe3\xf0\x23\xed\x92\x5d\x17\x39\xc4\x37\xca\xbe\x10\x03\x27\x26\x8e\x83\xb4\xf5\x3d\x62\x9d\x06\x1d\x7f\x22\x5a\x5b\xb5\x11\x47\x2a\x10\x5e\x63\xda\x79\x17\x7f\xc1\x8d\x12\x7e\xaa\x41\x2e\x33\x9b\xbf\xc8\x5f\xbe\xfc\x12\xf5\xb8\xa3\xd5\xec\x38\x4a\xbd\x32\x36\x98\xde\x88\x9d\xe2\x61\x3e\xb6\xd2\xe6\xea\xda\x9e\xa9\xd3\x5d\x59\x7a\xf4\x45\x36\x62\x0f\xdb\xff\xfd\x3f\xb0\x25\x9c\x1f\xf9\x7d\xf4\x2f\x2c\x04\xe1\x72\x36\x31\xe8\x33\xf4\xc5\xf2\x8b\x45\xd6\x60\x4b\x84\xc0\x6b\x72\x2c\xc3\x7a\x1d\x18\xb2\x9e\x69\x75\xac\x7b\xfc\x4f\xc2\x99\xde\x59\xc2\x59\xe7\x19\x39\xc0\x34\x26\x30\x6e\x30\xb1\x0e\x50\x71\x84\x37\xa4\xa0\x39\x6c\xfb\x6b\xd7\x9f\x37\xfd\x3b\x1d\x25\x6e\x70\x45\x8c\x4e\xad\xad\xff\x41\x40\xb4\xc6\xb8\x1e\x7d\x1b\xb0\xb3\xcd\x58\xe3\x3e\x01\x67\xa6\xfb\x8e\xd1\xfc\x89\x7b\x40\x63\xd0\xb7\x2f\x5f\xe7\x36\x07\xa0\xbe\x3e\x49\x67\xda\xe0\x2d\x01\x2f\x9a\x51\xf6\x95\x51\x67\x53\x61\xfc\x50\x01\x8a\x83\x0b\xc7\x1b\x80\x8a\x80\x56\x82\x74\x72\x01\x24\x4c\xde\xe1\x6d\xdf\x42\xb0\x9e\x4a\x6f\x6f\x2b\x5a\x42\x77\x14\x23\xdc\xe9\x60\x7c\x1b\x6e\x1a\x95\x35\x5a\xd8\xbc\x52\xf1\x82\x65\x9c\xa3\x47\xef\x4b\x66\xf6\xfd\x97\xb1\xe6\x66\x85\x4e\xf4\xa5\xd5\x87\xc3\xe0\xe6\x02\xad\x86\xbd\xf5\xa9\xcb\xd8\xaa\x73\x70\xeb\xf1\x5e\x43\x67\x45\x3a\xd2\xd0\x8a\x62\x4e\x4d\x6e\x01\x27\x72\xe0\x9d\x08\x58\x87\xa1\xc4\xd5\xb0\x0f\x79\xd0\xd4\xfe\xec\x62\x63\xea\x32\xb2\xf9\x1c\x7d\x95\xb8\xbd\x40\x4c\xdd\x07\x21\x17\x94\x86\x26\xb4\x1c\x3f\xd2\x77\x16\xe8\x78\x73\x35\x59\x11\xbc\x31\x74\xd7\x44\x86\x6e\x2f\xfb\xf5\x4b\x22\xab\x8d\x35\x68\x8d\xeb\xca\xe8\x36\xd9\x79\x47\xa6\x1e\x25\x3b\x00\x84\x1f\x57\x9d\x74\xe2\x60\x4b\x57\x00\x26\x2d\xa9\xaf\xf2\x28\xdd\xe8\xa2\xb0\xee\x12\x26\xe8\x88\x38\x77\x46\x49\x21\x6f\x56\x5a\x2e\x9c\x98\x2b\xd7\x80\xdc\xf6\xe4\x6f\x3a\xda\xde\x80\x77\x38\xec\x4a\x05\x1a\x7a\x85\x0b\x6b\x8e\x57\xca\x0e\xc5\xdd\x9e\x75\x23\x16\x67\x08\x80\xf1\x6d\x29\x98\xbc\x39\xea\x48\xdf\x26\xd4\xb0\xc1\xc2\x00\xf3\x6b\x52\xb1\x2d\xf9\xcb\x86\x09\x1b\x89\x74\x88\x4e\xda\x56\x28\x31\xe8\xe8\x93\xd4\x96\xc2\x8d\xa7\x5e\xf1\x0c\xe3\x2a\xa8\x3d\xd8\xf6\x93\xc0\x01\x8d\xcf\x80\x87\x4a\xb4\x25\xb8\xf3\xc6\xed\x0a\x56\x23\xd0\x5a\xad\x47\xc1\x1e\xf8\x04\x1b\xc6\xfc\x71\x16\x4c\x23\xfb\x51\x00\x02\x27\xdd\x18\xbf\x0e\x9c\xb4\x71\x5c\x01\x10\x43\x11\xb4\x76\x6a\x81\x0f\x01\xd6\x02\xd1\xa1\x2e\x70\x97\x63\x63\x0d\x44\xa0\x5f\xb8\x81\x15\x4b\x70\x71\x13\xce\x2a\x42\x6a\x43\x03\x58\x3b\x69\xec\xe0\x7d\x4b\xbd\x87\x47\x90\x3b\xc8\x69\x4c\x3d\x3d\x90\x4c\x95\x42\xc1\xad\xdc\x6c\xea\x3c\x96\x06\x0b\xa4\x13\x29\x97\xea\x7f\xe0\x12\xc9\xbd\xc7\x02\x12\x22\xd1\x4c\x89\x55\x8f\x50\x0b\x10\xb3\x15\x44\x87\xdf\xcd\x53\x0a\x56\x8b\x4f\x4f\x45\xc9\x4e\xed\xe0\x30\x8d\xa7\x89\xf6\x32\x40\x1a\x0d\x72\xcd\x78\x43\x57\xb4\x64\x90\x12\x59\x73\xbc\xf3\xfe\x4d\x2a\x37\xf0\x0f\x0d\xfa\xeb\xe7\x5a\x97\xa4\x52\xa0\x8a\xb5\x2d\x09\x72\x5c\x50\x1c\x62\x89\x67\x13\x46\x3f\x2c\x4c\xf5\x39\xee\xf6\x9f\xab\xc9\x20\xc3\x62\xcf\x86\xc0\x1d\x6d\x93\x2d\x40\x45\x5c\xd3\xbb\xd4\xfd\x25\x86\x6a\x83\x70\x38\x1b\xc8\x75\x37\x0f\xe4\xa2\xb4\x90\x75\xa4\xd5\x4e\xbd\xf0\x9a\xe8\x5c\x10\xab\xc9\x52\xe3\x48\x1d\x04\xfc\xad\xe5\x73\x34\x91\x12\xd3\xd6\x9d\x0e\x1e\x2e\x51\x96\x2f\xf6\x98\x1b\x4a\xda\x5a\xa7\xd3\x0d\x82\x08\x74\x53\x90\x9d\xaf\x34\x3d\xf3\x45\xee\xbd\xbe\x72\xb0\xd5\x98\x75\x7f\xe3\x73\x83\xa2\xb9\x6e\x94\xea\x76\x83\x7a\xcc\xf1\x96\x48\x9d\x90\x4a\x7a\x59\x9e\xd0\x8f\x7a\x7f\x03\x49\x96\x82\x18\xe7\x10\xe8\x37\x9d\xce\xa5\x6c\xf7\xe7\x10\x5f\x4b\xb9\x79\x8f\x85\x3e\xc5\x0e\x2b\x9d\x80\x70\x74\xe3\x07\xbc\xd1\x7b\x9d\x69\x7f\x38\x15\x36\x21\x47\x2b\x33\xe1\xf9\xa8\x66\x54\x88\x41\xfb\xac\x74\x36\x94\x98\x27\x81\x48\x1b\x2f\x14\x82\xae\xbb\xad\x49\xfc\xd1\x09\x41\x2b\x52\x61\x75\x4e\x37\x13\xdb\xbb\x41\x15\xeb\x94\xc5\x04\x2e\xd6\x15\x93\x1b\x74\x63\xa1\x7d\x93\xcd\x74\x93\x42\xfb\x66\x89\x2e\x5b\xba\xee\x9c\x6e\xb2\x63\x56\xb5\x00\x9d\x0d\xf6\xb0\xb3\x38\x8a\xd1\x8a\x13\x7c\x0b\x89\x99\x3a\xb3\x48\x6b\x63\x89\x5f\x52\xc7\xdf\x24\x59\x9b\x6c\x5a\xcb\xfd\x38\xc1\xf5\x1e\x6d\x14\xc7\x3b\x74\x66\x71\x0e\xeb\xb8\x6f\xce\x78\xfc\xed\x8e\x3d\x9b\x89\xd4\x12\x3c\xc8\xcd\x2c\x9b\xef\x27\x43\x96\xf3\x92\xb6\x77\x0a\xc6\x26\x91\xcf\xcb\xe9\x64\xdd\x44\x17\xd0\xb0\xe1\x04\xe1\x5e\x49\x3d\x52\xa3\xd8\xeb\xcd\xac\x7e\x00\x87\x12\x26\xfd\x7a\x3d\xe0\x00\x80\xc2\xc9\x43\x08\x7d\x98\x98\xbf\x52\x04\x03\x4e\x6f\x23\x02\x56\x03\x77\x96\x2d\x15\x61\x80\x30\xc9\x19\xb2\x23\xbc\xd8\x2a\xde\x94\xe6\x09\xe9\xb0\x12\x8d\x34\x39\xb4\x33\xc9\x29\x16\x79\x60\x2b\x75\xe4\xaf\x4e\xa2\x85\xb4\xab\x7c\x7e\xf5\x6c\x0e\x39\x74\x22\x48\xab\x73\x72\xd3\x39\x8c\x2a\x2c\x48\xa6\x5d\x68\xf7\x38\x5b\xd3\xca\xa0\xba\x58\xd8\x88\x61\x98\x93\xca\xc3\x9c\xd9\xd9\x1c\x88\x2c\xf8\xb9\x6a\x09\xee\x86\x7e\x36\x3f\xe0\x5e\x56\x20\x54\x70\x5d\xe1\xea\x36\x73\xa3\xfb\x84\xca\x30\xc2\xe8\x53\x76\x7c\xba\xd6\x4e\xc9\x9d\xb5\x62\x43\x14\x92\xfb\x2b\x07\xdb\x0d\xe1\x64\x99\x8e\xfa\x0f\xa5\x84\xed\xa8\x20\x13\x1d\x69\x60\x38\xcc\xb3\x11\x5e\x9b\xc0\xac\xe5\x54\x3b\x62\xcf\x3c\x4e\xed\xec\x26\x60\x96\x8e\xc9\x78\x11\x82\x28\x9b\x5c\x47\x82\x0d\x23\x82\xf3\x82\xb9\x87\x4a\x32\xee\x0f\x4b\x6e\x98\x20\x0a\xc8\x95\xce\xec\x8f\x46\xa1\x0d\x3a\x03\xd3\xdc\x68\x16\x81\x1b\x31\xf7\x08\x29\x4c\x9a\xc8\x6e\x0b\x3f\x85\x4c\x37\x98\x66\x18\x68\x9d\x3b\x2f\xd0\x68\xde\x5b\xb4\xb6\xd0\x01\x5a\x1e\x24\x08\x23\x97\x77\x55\xee\xe6\xa2\x09\x51\x27\xf3\xed\x68\x17\x1d\x65\x48\xbb\xa8\x6f\x47\xbb\x94\x3a\x8c\x35\x2f\xc7\x23\x62\x80\x14\x9a\x4c\x0c\xa6\x23\xa5\xf9\x08\xea\xfb\x72\x37\x1f\xa8\x88\x7a\xd9\xaf\x47\x3a\x65\xe1\x8b\xb8\x73\xf2\xf3\xa1\x41\x7c\x0e\x60\x47\xdb\x72\x63\x1b\x0a\x89\xe6\x19\x89\x68\xcc\x47\xbc\x6f\x89\xed\x5d\x76\xef\x7c\x07\xf6\x96\xd1\x6f\x21\xd0\x56\x91\x2c\x4e\x6f\xc2\x8a\xa4\x76\x97\x96\x96\xff\x06\xb7\x8e\x53\x6c\xb5\x4d\xa8\x80\xf5\x09\xdd\x3e\xa3\x1c\xd9\x18\xaa\x3c\xd4\xfb\x82\x2c\xdb\x3b\x76\xab\xd3\x68\xed\x9a\x10\xc7\x26\x61\x04\x77\xda\x71\xab\xb4\xa9\x45\x3a\xba\x8d\x89\xb3\xca\xdf\xfb\xe8\x39\xdb\x52\xa5\x60\xab\x61\xb4\xc5\xb8\x37\xe0\x7b\x32\x74\x3e\x36\xed\xd2\x34\xed\x87\x36\xa0\x05\xd8\xa5\x7e\x47\x1a\x74\xe1\x62\x19\xb9\xe6\xe4\xfc\xcd\x05\x16\x68\x86\xe2\x30\x44\x30\xe0\xd2\x43\x31\xa7\xef\xd2\x40\x66\x30\x4e\x9a\x25\x15\xd7\x9d\x52\x9f\x2b\x92\xf5\x55\x04\x3d\x47\x8f\x1e\xe9\x76\x35\xba\xb8\x28\xb0\x8f\x91\xd1\xd5\xc7\xc0\x9d\x93\xa6\xd8\xe4\x3e\xfb\xf6\x7e\xc2\x37\xed\x0f\x71\x8c\x68\x46\x1c\x56\x7f\x21\x32\x75\x56\x1d\xed\x98\x3c\xca\x69\x95\x40\xc0\x2c\x34\x84\xd4\xc4\x8a\xff\xeb\xe0\x9a\xd0\x7c\x27\x20\x5b\x56\xaa\xc7\x00\xfd\xff\x99\x6f\x2c\x81\xdb\x27\xe4\x40\xe6\x08\x8e\xe7\x3d\x67\x17\x11\xc9\xa2\x31\xba\x8e\x83\xc6\xf7\xbf\x91\xa3\x3f\x40\x7d\x63\x86\xbb\x8c\x22\xe0\xf8\x3e\x14\x40\xde\x49\x8e\x0f\x05\x03\xf4\x7c\xfa\x52\x69\x0b\x07\x3f\xf4\xa8\x1e\xfa\x96\x56\x58\xba\x45\x0b\x67\x14\x51\x49\xb6\x26\x87\xb0\x90\x0f\xf4\x07\x8c\x28\x1c\x97\x0d\x32\x62\x02\x5c\x98\x54\x82\xd3\x32\x3b\xdc\x00\x71\x98\x51\x69\x05\xd6\x8a\x8d\xed\xb6\x3c\x83\xc3\xe6\xc2\x8f\x89\xc6\x92\xe2\x7b\x62\xfe\x49\xb0\x4a\x13\x13\xee\x0b\xe8\xac\x9d\xa2\xd7\xcf\xd1\xcf\x7a\x01\xa1\x14\x32\x04\xa6\xaf\x30\x37\x06\xf2\x06\x21\x21\x4f\x0b\x0b\x97\xf9\xf1\xf4\xe7\x99\xdd\xd3\x9a\xc0\x72\x67\xf3\xa5\x4f\xef\x9a\x2b\x16\xa7\xd6\xa0\x35\xcb\x5f\x06\x02\xbc\x0f\x9c\x4f\x4f\x7f\x3e\xbc\xf7\x70\xa8\xe5\x38\x38\x57\xb8\x55\xb0\xcc\xd4\x08\x6f\x1d\xfc\x96\x20\xb4\xb0\xba\x83\x2b\x0c\x35\x23\x1a\x24\x26\xc1\x3b\x01\x8d\x4e\x76\x60\x0d\x2a\x41\x47\xfd\x56\x82\x43\xc1\x3e\xf8\x35\x52\x9b\x8e\x83\xcb\x59\x44\x1d\x54\x68\x2b\xa6\x44\x0d\xb0\x6c\x7d\xc9\x55\x33\x73\xf4\xc1\xeb\x71\xa9\xcd\x0a\xbc\xdd\x67\x26\xee\xef\xfd\xaf\xa4\xd6\xb7\x69\xd3\xe4\xa4\xf0\x5f\xa9\xae\xee\xb3\x44\xc2\x53\xf7\xc9\xee\x9e\x9f\x40\x0e\x48\xac\x9b\xc7\x87\x97\xa6\x53\x8e\xcf\x4b\x9b\x69\xab\x52\xe7\x49\x94\xd3\x5a\xae\x9b\x44\x39\x33\x77\x83\x28\x98\x16\x0b\xf4\x7a\xc3\xd9\x4e\x1b\x27\x79\x66\x4a\x9c\xb6\xfa\x9d\xbf\xec\x50\x60\xe4\xc5\x53\x3a\x98\xb0\x12\xa2\x4f\x69\x99\x15\x56\x07\xb7\x22\x6a\xb1\xe5\xc4\x95\x1f\x09\xa7\xcd\x3e\x2e\x59\xb0\x0f\xdd\xea\x0d\xe3\x04\xf5\x3a\xd3\xc8\x0a\x6b\x50\x6a\xc1\x5d\x0b\xe1\x93\xdc\xd2\xd6\x57\x11\xb0\xb5\xea\xc2\xa1\x7b\xce\xea\x01\xea\x00\x98\x7c\x52\xc2\x39\xe3\x91\xad\x87\xc1\x4f\xaf\xef\xce\x9a\xec\x9b\x06\xd3\x76\x48\xdd\x72\x68\x22\x0b\x06\x15\x1d\x03\x4b\x58\xef\x6c\x5e\xf6\x0d\x1c\x4c\x8c\x49\xc4\x95\xd7\x2e\xcb\xb0\x0f\xc1\x49\x3b\x00\x68\x4e\xb1\xf9\xa9\x58\x7c\x2d\x6b\xcd\x96\xae\xcb\x96\xdc\x1d\xe6\x88\x8a\xab\x1c\xbf\xfe\x8a\x05\x24\x3a\x9a\x1c\xbb\x3c\xed\xef\xe0\x08\x97\x83\xdc\x30\x4e\xc7\xd2\x06\xed\x07\xd2\xc6\x70\xef\xd2\xc6\xca\xbb\x38\x9b\xb0\x44\x9f\x3c\x41\x57\x10\x95\xfb\xdf\x73\xf4\xbd\x8e\xf9\x39\xd6\xe3\x02\x2d\xa3\xbd\x69\xa3\xa6\xf7\xa2\x53\x49\xb0\x02\x22\xf8\xdf\xc7\x17\x02\xc3\x1d\x01\xcc\x28\x55\x7b\x72\x47\x7f\xca\x77\xa4\xe9\x4c\x43\x29\xbe\x09\xb7\x61\x6d\x2d\x7c\xa8\xa3\x64\xc2\x4c\x00\xc0\x0e\x55\xde\xbe\xfd\xf5\xd1\x23\x68\x6c\xc8\xe2\x00\x2c\x46\xe1\x11\xa1\xc6\x41\x68\xa8\x0f\xc4\xc6\x26\x5b\xe5\x0e\x87\xe9\x5f\xca\xdf\x4e\xb1\x07\x74\xcc\xf1\x96\x39\x05\x3a\x91\x5b\x24\xb2\xfd\x0c\x5d\x9a\xc8\x79\x91\x73\x80\x2e\xe7\x94\x1a\x9d\x23\x6c\xf0\x44\xfd\x54\x48\x63\x46\x45\x46\xf2\xc1\x00\xf0\xe7\xf9\x2b\x6f\x3f\x16\xa8\x4c\x22\xec\x31\x29\x89\xe6\x79\x48\x1d\xbd\xff\x1c\x25\x62\x89\xfc\xca\x6a\xdc\x8f\x9d\xda\x6b\xd3\x0f\x66\xf8\x18\x7f\x74\x3e\xa5\xb9\x0a\x6a\x36\x55\x24\xbd\x8f\x4b\x51\x0d\xa0\xfa\x43\xe7\xee\xd7\xf8\x5c\xdb\x82\x2b\xa9\x28\x93\x0a\xda\x80\x6b\xb6\xac\x49\xcf\x04\x95\xb3\x86\xb3\xed\xb9\x02\x4f\x06\xb3\x31\xd7\x38\xd2\xdc\x0e\x3c\x60\x71\x06\x9e\x71\x1d\x18\xf3\xdb\xee\x22\xc9\x09\x36\x21\x6a\xf4\xf4\xf1\x11\x1e\x8f\x33\x7f\x5a\xf6\x8f\x72\xd0\x24\x0b\x9b\x7d\x6b\x4a\x38\x38\x67\x1b\xea\x18\x77\x7e\x12\x01\x21\x66\xc9\x07\x21\x77\x8c\xcb\xcd\x7e\xa1\xab\x85\x40\xf2\x6b\x5c\xb8\xac\x62\x9c\x93\x2a\x4b\xcc\xf6\x69\xa1\xab\x41\xa9\x5f\x7b\xa6\xdd\x15\x7d\xbb\x77\x56\x0e\x95\xe0\xa9\x7a\xd2\x33\x01\x86\x4b\x4d\x6d\xfc\x9f\xec\x61\x01\x8a\x1c\xd6\x03\xe6\xb8\x93\x24\xf0\x7e\x99\x29\x24\x4b\x96\x62\xa3\x76\x18\x94\x84\x15\xd9\xd8\xdb\xd5\x7e\x31\xb4\x03\x3f\xb8\x26\xbd\x1d\xde\x17\x42\x94\x84\x6b\x85\xcf\x17\xe3\x01\x38\xc0\x40\x3e\x96\xef\x33\x69\x4a\xf3\xe4\x1e\xfa\xae\x56\x03\x02\xfc\xe2\xc2\x52\x3e\x91\x56\xc2\xb2\x04\x1a\x44\x9c\x83\x63\xb3\x6b\x4c\xee\x88\x01\x38\x8a\xfc\x9a\x68\x82\xcf\x75\x8d\x8c\x75\x81\xe3\xe2\x76\xa7\xaa\x82\x32\xbc\x74\xfa\xf2\xb5\x57\x0d\x57\xfb\xb0\xbc\xcf\xd3\x9f\x67\xd1\x82\x42\x63\xfc\x99\x67\xf9\x5b\xec\xc8\x07\xf2\x62\xba\xc8\x5c\xb2\xbe\xf1\xd4\xda\x37\x9b\x89\xc6\xcc\x12\xb3\x8f\x85\xd9\x58\x04\xe1\xe3\x41\x05\xe6\xbd\x9e\x62\x7e\x04\xc8\x0a\x40\xf1\x0e\x82\xc4\x7f\x59\x06\xd4\xc1\xe4\x74\xcf\xad\x32\x77\x9f\xf3\xf6\x69\xa2\x09\x83\x7c\xa6\xf3\x25\x38\xfa\x7c\xc9\xa6\x97\x6a\xf3\xdf\xe0\x0e\xaf\x49\x50\x2b\xc1\x87\x00\x81\x15\x6e\x99\x91\x6a\x05\xff\x22\x6d\xbc\x0f\xc0\x5c\xe1\xc4\x7d\x4f\x3a\x24\x06\x98\xaa\x19\xda\x76\x9f\xb3\x4d\xe1\x26\xd7\x99\x36\xda\x71\xbc\x26\xf2\x52\x97\x3c\x9a\x79\xd7\xc0\x99\x55\xff\xe6\xcb\x28\x75\x48\x33\xd6\xa7\x8f\xde\xa7\x07\x99\x96\xd9\xb8\x7f\x56\x56\x28\x0e\xf5\x73\xa5\x3f\xa2\xf3\xf8\x78\xa1\x27\x46\x01\x9f\x88\x39\x48\x8c\xb4\x20\xb7\xa5\xf5\xec\x7d\xa9\x18\x78\xe0\x7c\x4a\x9a\x5e\x3f\x17\xe5\x8d\x7f\x58\x56\xc0\x29\x21\xfe\xd6\xae\x20\xc8\x8e\x28\xd8\x92\x29\x76\xfe\x9d\xc8\xcf\xc0\x65\x0d\x38\xb8\x65\x77\xb8\x4d\x12\xc0\x5d\xe1\x0e\x9f\x32\xe1\x90\x3e\xbf\x2d\xef\x3d\xdd\xb1\x8f\x45\xf5\x70\x4b\x54\x43\xe6\x50\x2e\xb8\x92\x0b\x50\xb7\x39\x2c\x85\xac\x10\x37\x7e\xaa\x7c\xa4\x9b\xfe\x2e\xf4\x25\xac\x18\x97\x2e\xc8\xe0\x0b\xb0\x29\x32\x53\xc2\xd0\x29\x49\x2e\xbe\xae\xd3\xb3\x76\xaa\xf5\xde\xd6\xc2\xa4\x32\x13\x6a\x3b\xa8\x09\xe3\x6f\xfd\xd8\x10\x04\xe5\x42\x1a\x65\xbd\x7c\xef\xc9\xa5\x82\xaa\x86\x6e\x7a\x93\xdc\x2a\x9d\x04\x76\x55\xa6\x02\x66\xb8\x40\x26\xf9\x79\xcd\x89\x2e\x4b\x64\xf4\xba\x86\xf1\x5c\xe8\xee\xd1\x00\x25\x86\xe0\xa2\x59\xbc\x06\x65\xe4\x73\x22\xa0\xec\xa9\x4f\x9a\x18\x8d\x1f\x7c\x89\xf2\xc0\xd0\x93\x27\xe8\x15\xde\xa7\x3a\x67\xa9\x09\xc1\xd5\x26\x08\xdf\xec\xcd\x65\xf3\x62\xc1\x93\xe5\x83\x0c\xad\xc2\x3b\x68\xa1\xeb\x76\xe4\x2e\x9a\x0b\xbb\x7b\x6f\x5b\xe9\x82\x58\xd9\xd4\x85\xc8\x9b\x5e\xc9\xd5\x30\x6d\x18\xf8\x3b\x5a\x65\x4d\xde\xcd\x98\x2a\xd3\x7e\xfc\x72\x47\xda\xa0\x59\x7a\x36\x4a\x16\x77\xb4\x9d\x32\xd0\xf3\x2e\xe5\x9a\x2a\xf6\x53\x08\xe8\x23\xd2\x8a\x52\xc8\x07\xd9\x84\xae\xd1\x92\x55\x11\x88\xf1\x68\xfd\xaa\x29\x98\xa5\xe9\x04\x47\x69\x2a\xd9\xa6\xb5\x73\xec\xe3\x94\x94\x6f\x99\xa1\x5f\x1b\x65\x70\x66\xc2\x21\x45\xe2\xd2\x94\x0a\xe8\x19\x85\xe2\xbf\xba\xd6\xaf\xb7\x32\x76\x50\xc4\xb0\x92\xf4\xce\xe4\xa0\xdb\x44\x94\x85\x0e\x39\x87\x95\x7f\x74\x75\x26\x48\xd3\xd9\xe0\x3b\x92\x4e\x05\x77\xef\xc0\xb8\x12\xa8\x25\x8d\x5c\x98\xec\x68\x7b\xa7\xcc\x9b\x03\xba\xfe\x08\x46\x1d\x7b\xcc\x7a\xcd\xce\x4d\x49\x51\x93\xea\xb9\xed\xe5\x5e\x47\x52\x1e\x4c\xc1\xf6\x6c\x0c\x93\x73\x38\x24\x29\x98\x54\xfc\xfa\x89\x97\x3a\x69\xc4\xa6\x34\x26\x6c\x04\x2a\x57\x4c\x54\x8a\x43\x05\xfe\xa6\xc8\x70\x3a\x6c\x70\x76\x81\xbe\x58\x7e\x51\xa2\xc9\x63\x9d\xfe\x4e\x11\x9b\xc2\xfd\x23\x53\x29\x4f\x4b\xa3\xfc\xe8\x14\xca\x0f\x48\x9f\x3c\x51\x49\x3a\x31\x6d\xf2\x04\x7d\xea\x93\xa5\x4b\x7e\x40\xaa\xe4\xc9\x69\x92\x1f\x9d\x22\x59\x42\xfc\xfc\xbb\xbc\xdf\xb1\x99\x92\x09\xf9\x1b\x3f\xcf\xd3\xc7\x5d\x13\xd6\xea\x72\x7f\xda\xa4\x76\xa8\x09\x3b\x48\xb6\xc5\x92\x56\x9a\x4b\x69\x6d\xe2\x0a\xd7\x60\x28\xf1\xa1\x83\xe2\xbb\x79\xb6\xbc\xf7\x1a\x8c\xa6\xcd\x5f\xe1\x5e\x0e\x1c\xa2\x4c\xa2\xc3\xbd\xd8\x30\xd0\x34\x6e\x49\x50\xd7\x9c\x12\xf0\xaf\x4b\xc7\x37\x20\x93\x84\x6e\x47\x32\xa6\x74\x4a\xbc\x25\x97\xe7\x76\xde\x98\x12\x47\xcb\x76\xda\x24\x9e\x9c\x1c\xa7\xaa\x78\xa2\x34\xfa\x3e\x4a\x93\x49\x55\xac\xb4\xe3\x08\x59\x3a\x92\xd4\xc5\x45\xd2\x5e\xb9\x47\x61\xb2\x7e\x4a\xa1\x7b\x4e\xab\x51\x59\x95\x42\x8f\xb4\x7d\x99\x58\xcb\xeb\x3d\x90\xef\x50\x18\x38\xac\x08\x55\x1c\x2d\xa7\xe2\xac\x22\x4b\xda\xaf\x4c\xcb\x63\x95\x5a\xb2\xde\x93\x04\x3d\x29\xc5\x0a\xba\x4f\x5c\xf9\x25\x9d\x2b\xa1\xe6\xf9\xe9\x65\x01\xf3\x5a\x3b\x9f\xfe\x7a\x51\x70\xd7\xe9\xd9\x08\xfa\xfe\x0e\x4b\xfb\x7c\xec\x45\xa2\xdf\x5b\xa1\xa0\xb0\x59\x54\xd0\xc1\x3c\xb5\xd1\x30\xbe\x85\x2b\x6c\xf1\xba\x03\x74\x43\x17\x49\x2e\x6e\xd1\xf3\xa8\x01\x7e\x58\x2b\x38\xa4\x08\x9c\x26\xfb\x8f\x16\xf7\xfa\xcc\xed\x5f\x53\x8a\x15\xc8\xf8\x49\x1d\xca\x1f\xd9\x29\xe2\xff\xb0\xc4\xb7\xa7\x78\x58\x58\x47\x07\x19\x38\x61\x0b\x65\x38\x8b\xa4\xad\x6b\xfb\xe4\xdf\xe7\xdd\x47\x92\x19\x2e\x46\xe8\x24\xaf\xa7\x63\xe2\x06\xa6\xb2\xa6\xbf\x4b\xa0\x53\xbe\x5c\xa9\x8c\xcc\x7e\x88\xeb\xcb\x28\xcb\xe1\xe8\xea\x32\xba\xb7\x89\x83\x18\x97\x2d\xa4\x72\xc0\x6d\x62\x6b\x61\xb9\x0b\x5d\x01\xbf\x14\xee\x29\x03\x65\x00\x6e\xc9\x76\x45\xf8\xd8\xbd\xaa\x30\xdb\xf7\xb8\x54\xdf\xa3\x4c\x63\x37\xe4\x87\x9b\xc4\x51\x19\x1c\xbf\x3b\x4b\xc5\x0b\x87\x35\x76\xad\x01\xa3\x0f\x72\x5e\xce\x1e\xe6\x58\x17\xa4\x1d\xa9\x01\xe0\x5a\xac\xf0\x05\x32\x5d\xa0\x49\x3f\x22\x11\x16\xb1\xa8\x5a\xcc\x4d\xbe\xe3\x81\xb3\xd6\x07\x8d\xc3\x94\x3a\xba\x25\x7f\x76\x15\x52\xe1\xb9\x14\xde\xee\x1f\x37\x98\xb6\x10\x6a\xab\xa1\x16\x97\xcd\x4a\x33\x0f\x54\x94\x23\x94\xfe\x4a\xc7\xd9\x74\x52\x75\x06\xf7\xc3\xde\x6e\x0d\x77\x77\xcf\x7e\x34\xdc\xe1\x42\x23\x00\x3e\x0b\xbd\x20\x2b\xc9\x82\xf1\xe1\xf1\x71\x9f\x5f\x25\x56\x76\x00\x91\xce\xb2\x10\x9a\x26\x4a\xf7\x90\xd3\x74\xd8\xcc\xa4\x0e\xb0\x26\xa8\x0a\x5a\x8a\x9b\x1d\x13\x2f\x1b\x0b\x97\xb9\x82\x43\xc8\x28\x47\x7e\x9f\x26\xe4\xe0\x7e\x89\x6a\x0e\xc1\xdd\xa3\x5a\x17\x1d\x82\x84\xf4\x2d\xbb\x53\xff\x70\x5e\x71\xf3\xda\x14\xce\x4a\xfa\xda\x8b\xe1\x5d\x6d\x6e\x87\x29\x16\x63\x4c\x24\xdf\xf6\x33\xa1\x93\x30\x6d\x17\xf8\xff\x81\x52\x45\xd9\xd2\x93\x7a\x14\x55\xf6\x0a\x0e\x0a\x6b\x96\x66\xcf\x93\xe8\x74\x53\xc9\x4c\x47\xd8\x28\xed\xa0\xa4\x91\x7f\x31\x2b\x18\x26\xb5\xae\xa2\x57\x77\x74\xb6\x7c\xb4\x84\xdf\xb1\x8a\xf9\x07\xd3\x22\x7f\x55\x1d\xb1\x5c\x4b\x35\xba\xc0\x7c\x0a\x32\x99\x20\x29\xee\xf6\x9a\x07\xb8\x4b\x23\xba\x94\x45\xa1\x50\x74\x01\xb5\xa2\x67\x9a\x34\x6a\xc5\x37\xaa\x47\xed\xf5\xf9\x38\xc1\x4f\xd5\x18\x53\x9a\x01\x14\xf6\x75\xd5\x62\x3b\x5b\xb4\x2b\x24\x7b\xed\xad\x35\x72\x09\x5c\xa4\xf0\xa8\xd5\x1d\x75\xc5\xc7\x44\xc0\x04\x22\xee\x70\x52\x55\xb2\x74\xd1\x01\xa5\x8f\x5d\x06\x0b\x42\x9d\xf3\x73\xf4\x46\x43\xe3\x6d\xb1\x9b\xbd\x6b\x57\x88\x92\xc6\x64\x93\x90\x4a\x18\xcc\x34\xd0\x3e\x30\x93\x5b\xa0\x06\xe5\xe1\xd3\x3b\x47\x8f\xde\x47\x45\x78\xb2\x7b\xa9\x90\x77\x53\xba\x33\x25\x86\x56\x9a\x78\x0b\xfa\xd7\xbf\xcc\x17\x67\xb1\x60\x54\x7f\x3d\xfd\xca\x4c\xf0\x6c\x36\x96\xf4\x1f\x57\x10\xc4\x50\xcd\x67\x44\x46\x9e\x8d\xa5\xd1\xdf\x8f\x82\xde\x84\x4a\x5f\xe8\xbb\x00\x16\x6f\xc0\x3b\x7f\xdd\xd5\xe4\x9d\x87\xb7\x64\xd1\x17\xf3\x74\xc8\xb8\xc0\xc2\x44\x08\x76\xa4\x7f\x86\x44\x2f\x4c\x99\x93\x23\x31\xe2\x18\x44\x33\xab\x72\x29\xff\x6e\xbf\x27\x2e\x33\x18\x0b\x2e\xe2\x1d\x39\x4e\x91\x13\x78\x1e\x50\xae\x5e\x45\xa5\xf0\x0c\x6d\x0b\xc2\x16\x61\x57\xe7\x24\x66\x06\xfa\xb2\x26\xe4\x75\x29\xf2\xc5\x95\x74\x55\x96\xb6\x21\x2f\x60\xbc\xd6\xe3\xfd\x32\x10\x17\x4b\xb5\x16\x76\xc0\x55\x9c\x4d\x27\x9c\xd5\xb4\xf7\x4f\x7c\x1c\xc1\x45\x02\xa6\x7c\x9e\xeb\x0c\x8b\x29\xde\x02\xd7\xdf\xed\xed\x11\xeb\x28\xd5\x0e\xd4\x0f\x77\xad\x1e\xe3\x27\x8d\xb2\x22\xe6\xf9\x23\x1b\x35\xd5\x41\x31\x5d\x23\xdc\xfa\x93\x55\x2f\x48\x3b\x4b\x1d\xcc\x53\xd5\x74\xee\xb0\xcb\x78\x10\xe7\xe8\xab\xf7\x7a\x21\xee\xba\xf1\x7d\x34\xf7\x73\x3f\xaf\x64\xe8\x96\x90\x1e\xa9\x61\x6e\x83\xfb\xcd\x48\xad\x41\x6b\xbc\x5b\x73\x6e\xc5\xbb\xfb\xb9\xd6\x8a\x1e\x3f\xd3\xe4\xa4\xfe\x78\xd3\xa6\x4e\xf2\xeb\xe7\x19\x51\xe5\xbb\x20\xb5\x9a\xf1\x1c\xbd\xd7\x8a\xc1\x39\x32\xfb\x41\x9e\x32\xef\xef\x53\xf7\xa0\x52\xf1\x62\xaf\xbb\x57\x00\xa1\xb2\xa6\xd8\xf8\x6a\x9a\xb6\x70\x5b\x64\xa3\x87\x22\xfb\xbf\xea\xe0\x7f\x92\x3a\xe8\xf5\xc1\x44\xc8\xa6\x36\x7b\x0b\x19\x4a\xa4\xf3\xd9\x9e\x69\xf2\x1f\xed\x6a\x42\x6a\x5d\x0b\xcb\x3a\x0c\xc2\xb7\x3b\x32\xfb\xdc\x1b\xbe\x3a\x09\xee\x04\x6f\x0a\x9a\x34\xd0\xc3\x5a\x3b\x21\x4a\x9e\xa3\x2b\xfb\x5e\xa6\x17\xf6\xce\x29\x12\xe5\xfe\x25\xfe\x0d\x5d\x85\x50\x0d\xeb\x8b\xbd\x5a\xb3\xb7\x90\xbb\xd6\x35\x52\x6f\x29\xda\x62\xe0\x80\x38\xd9\xe7\x70\xd2\x96\xb2\x9d\xd4\x44\x28\xdd\x23\xf1\x55\xe8\x45\x14\xbc\x3e\xd7\x9d\x90\x04\xd7\xc0\xf5\x88\x34\xfa\x31\xc2\x7c\x45\x25\x57\xbc\x11\xde\x7a\xb4\xef\x0e\xd8\x24\x34\x28\x32\x1e\xd4\x79\x84\x92\x80\xb2\xf4\x8e\x8a\x99\xc5\xa4\x52\x99\x67\xa9\xa4\x92\xc2\xa4\x6d\x72\xe4\x53\x00\x55\xac\x5f\x63\x88\x82\x63\x96\x54\xa7\x9a\x38\xf7\xc1\x63\x6b\xe0\x16\x19\x11\x1a\x67\x46\xc5\xaf\x27\xe2\xe3\x87\x9d\xdf\xe5\xa0\xfe\x6f\xeb\xf9\x1e\xe3\x4d\xe5\xef\x0f\x7a\xce\xc7\x73\x17\x7e\x13\xb7\xb9\xfd\x6b\x0c\x3d\xbc\x4e\x82\x2e\x9c\xe0\x9e\xc2\x27\x5b\xdc\xda\xb6\x8d\xee\x3a\xe7\x15\xaf\x91\xc9\x30\x32\x75\xc6\x3b\xe2\x4d\x4c\x4b\x8b\x4e\xc7\xc8\x3d\x96\xac\xb5\xfa\xb2\x42\x63\x80\xad\xd5\x5d\xde\x64\x1b\x78\xab\xda\xa4\xef\xa7\x98\xf9\xfd\x7b\x55\xc1\x90\xba\x88\xb5\xae\xa7\xa9\xef\x9a\xc2\x2b\xac\x68\x47\xcc\x35\x37\x66\x1e\x41\x87\xb7\x43\xa2\x21\x83\xb2\x78\xb3\xa7\x8f\xfd\x98\x85\xdc\x2a\xb3\xf3\x9b\x6c\xbd\x37\xd6\xd1\x07\x2a\x15\xa9\x9d\x5a\x56\xb8\x3e\x8c\xeb\x3a\x35\x57\x81\x5d\x39\x65\xea\xbc\xa0\x60\x2d\x62\xca\x2a\x05\xf9\xb3\xaf\xf2\x0d\xbc\x78\xa7\x6b\x13\xc9\xe0\xc5\x3b\xa8\x9a\x0a\xf9\x91\x51\xb1\x42\xef\x45\x57\x4c\x10\x1e\x52\x17\xe6\x0d\x47\x57\x9c\x2f\x73\x7e\x2b\x7b\x75\x24\xca\xa2\xeb\x98\xb0\x3e\xbe\x70\x36\x33\xf9\xaf\x26\x87\xd4\x54\xaa\x99\xe7\x99\xa2\x78\xb4\x3e\x4c\xf8\xfa\x6a\x39\x87\x0a\xde\x9e\xd3\xfd\x5d\xaf\xd1\xa8\x4f\xc1\x1e\x87\xf9\xed\x63\xf5\xc1\x74\xe8\x02\xbd\x79\x9b\xb5\x0e\x2e\x9f\x66\x93\x96\xf3\x1a\xfd\x43\xf8\x90\x64\x5f\xcf\x82\xbb\x93\xc7\xdc\x28\x1b\x87\x0d\xba\xf0\x83\x27\xb6\x7d\xac\x40\x05\xf9\x5d\x85\xe7\x7f\xed\xa7\xf0\x0c\x70\x21\xa3\x3f\xe7\x6a\xc7\x20\xeb\x1f\x4e\x16\x99\xbc\x8d\x90\x95\xfe\xfb\xe4\x44\xf1\x15\xe2\x71\x3c\xf8\x98\xf8\xac\x49\xa6\xca\x0e\x2c\xf0\x0e\x45\x06\x58\x81\xbd\x45\xbf\xff\x95\xb4\x7d\x10\x89\x8c\x9c\x15\x92\xa9\xee\x85\x2b\x30\xac\x31\x9a\x57\xd7\x48\xed\x8d\xdc\xe2\x3e\x36\x4a\xa7\x1d\x4a\x47\x30\x5d\x6d\x80\x8c\x39\x0a\x0b\x3e\x99\x94\x9c\x5d\x75\x4a\x6f\xcd\x2e\x6d\x6c\xf8\x6f\x64\x1f\xcf\x57\xca\xd9\x4c\x3b\x6b\xf3\x76\x76\x4b\xb4\x02\x77\x1d\x48\x83\xf7\x66\x95\x05\xd1\x79\x9f\xdc\x4d\x18\x4b\xa9\x2e\x2c\xf7\x4d\x34\xcb\xdb\xb3\x6c\xf9\xa3\xc5\xe1\x0e\x0d\x94\x6e\xe5\xf9\xa2\xb4\xf4\x02\xb7\x9b\x4a\x08\x3f\x30\x29\xfc\xfb\xf9\xdb\x33\xcb\x56\x0b\x02\x32\x9f\x6e\xd4\x05\x5a\x08\x29\x7c\x0c\x9e\x9b\xd8\xc2\x01\x54\x07\xe1\x7c\x32\xb2\x97\x57\xf7\xa9\xf1\x1d\x3c\x6c\xee\x16\x99\x4b\x69\xb4\x4f\x0b\xf9\x73\x99\x54\x0b\xad\x1f\xbe\xab\xc9\x3b\xeb\x42\x3b\xe2\x48\xe1\xea\x0a\x74\x9a\xb1\xa6\xa4\xfb\x04\xf6\xa6\x29\x77\x10\x56\xe6\x51\xf6\xfc\xbb\xc4\xb8\x3d\x76\x6a\x0d\xdd\x19\x96\xe7\xd1\xe2\xd3\x40\x2d\x0a\x35\xf5\xe9\x30\x94\x01\xa3\xf7\x53\xe9\xda\x0b\xa6\x6a\xf0\x9e\xa4\x95\x83\x83\xf7\x9b\xe2\x34\x05\x5b\xcc\x37\x7d\x5b\xf8\x5a\x46\x0f\x81\x92\x77\xa4\x1a\xa4\xbf\xe6\x98\x47\x63\x9d\xe7\x4e\x3f\x5b\x5c\x74\x96\x7d\x7c\x7c\x2b\x41\xa8\xc4\xd2\x8d\x4c\x04\x0b\x75\x60\x20\x47\x10\xf2\x51\xde\x86\x68\x9d\x2e\x39\xc0\x50\x66\x5e\x0f\xaa\x80\x64\x2e\xef\x46\xba\x12\x45\x51\x22\x84\xd7\x98\xce\x0a\xae\x94\x36\x4a\x45\x1b\x31\xc4\x72\x1c\x3d\x8e\xbc\xe3\xc1\x4b\x79\xb4\x96\xf2\xf3\x96\xc7\x5b\x18\x09\x43\xf0\x0f\x0a\x81\x4a\x89\xf3\xaa\xe1\x05\xc3\x21\x36\xc0\x5a\x6b\x7d\x79\x72\x8a\x70\x39\x8a\x0f\x26\x64\xa4\x4b\xed\x81\x3f\x87\xe3\xbd\xcd\xe4\xc8\x72\xb6\xaf\x9f\x07\x75\xdc\xb3\x84\x9f\x29\x64\x3f\x32\x54\x39\x51\x87\xd2\x21\xf4\x2d\xd9\x4f\xd5\xf9\xcc\xc3\x57\x07\xf7\x6a\x31\x56\x6d\xcf\x6c\x5d\x4b\x92\x1b\x73\xf8\x37\xfa\x51\x01\x38\xe0\x9b\xd3\x8a\x99\x7e\x78\x34\x2d\xaf\x2d\x59\x60\xb4\x09\x6a\xbe\x0d\x82\x9f\x47\xb4\xb6\xbc\xd9\xf6\x1a\x2d\x43\x99\x98\x6b\xf7\xa3\xd2\xe8\xb9\x28\xcb\xa2\xb1\x99\xcf\x26\x54\xe6\xf0\xe8\x92\x73\x1e\x0b\x28\x46\x8d\x2e\xed\x33\x34\x36\x38\x67\xd3\x12\x4c\x75\x42\x2f\x16\x72\xa7\xc3\x54\x25\xe5\x0f\x88\x66\xa6\xf1\xeb\xf1\xea\x8c\x53\xae\x1d\x9d\x0d\x78\x64\x51\xb8\xbc\xb6\x7c\xb6\x60\xc7\xb9\x4d\x03\x88\x71\x03\x1b\x26\x9d\x3c\x8a\x8f\x17\xca\xb9\xc0\x2e\x0e\x86\xfa\x0b\x43\xc5\x5e\xb4\xa8\x3a\xa5\xe4\xc3\xb1\x35\x0b\x3f\x64\xdb\xa7\x4a\xac\xf2\xb3\x04\x4a\xdf\x18\xcd\x04\x40\x1f\x27\xa6\xcf\xfe\x13\x45\xe0\xc7\xc9\xb2\x42\xe6\xca\x49\x8c\xde\xc9\x31\x67\x49\x7c\x1a\xe6\xff\xab\x24\xd6\x24\xdc\x22\x88\x5f\x07\x1c\xf7\x80\xb4\xb1\xde\xa0\xc8\xbd\x93\xbb\x3a\xff\xa1\x74\x5d\xc3\x88\x03\xd0\xd0\x10\x34\x41\xb5\x00\x81\x70\x25\x07\xb8\x03\x66\x5c\xb8\x7f\x46\xcc\x5e\xfb\x4c\xc7\x86\x1b\xf2\x26\xe7\x73\x63\xdc\xdf\x35\xf1\xa6\x1c\x64\xfd\x0a\x99\x97\x75\x77\xdb\x71\x86\xf5\xcc\x57\x14\x28\xb0\xd2\x16\x5e\xec\xd7\x96\x51\xd0\xb9\x6c\xfc\x64\xf4\x85\xc2\x9a\x0d\x22\xb4\x5b\x68\x6c\xb0\xd8\xcf\xb8\xdc\x42\x63\x65\x98\x03\x89\x5a\x96\x6d\x49\x6a\x50\xd4\xe4\xca\x30\x2e\x69\x5f\x74\xf6\x32\x4c\x99\x26\x54\x12\x8e\xb5\x4d\x7c\x47\x78\x9c\x58\xcc\xe1\x15\x11\xd6\xe8\xad\x90\xd3\x44\xde\x07\xa4\x2b\x1d\x25\xf9\xdc\x38\xe8\xe9\x85\x1d\xe1\xd8\xe2\xa7\x39\xc3\x4f\x56\x79\x8e\x5e\xc2\xfb\x66\x30\xa8\x7d\x5b\xba\x35\x95\xfa\x3a\xc4\x38\x22\xbf\x0c\xb8\xf5\x6f\xbe\x22\x98\xbf\x20\xda\xae\x3b\x39\xb3\xab\x7b\xec\x17\x3d\x47\x4f\x1d\x01\x86\x6a\xad\x7d\x60\xfa\xd3\x6d\xe4\x95\x3d\x45\x97\x28\x02\xa7\x49\x05\x62\x03\xa4\x25\xad\xd8\xd0\xd5\x69\xd1\x9c\xfb\x8c\x77\x58\xd2\x70\x5b\x18\x13\x2f\x22\x66\x2f\xe1\xee\xa2\x2e\xfa\x25\x33\x9a\x1e\x61\xb1\x2c\xeb\x6b\xcb\x04\x30\xea\x99\x10\xd4\xbe\x22\x06\xd1\x74\xb6\xb5\xc3\x6c\xf1\xde\x97\xd0\x2b\x3e\x7a\x19\x8c\x69\x85\xb3\x7d\x1b\x90\xfa\x60\x75\x83\x69\x5b\xa8\x21\xb2\x40\x2f\xc0\x98\xa7\xac\x83\xeb\x21\x50\xb3\xae\x23\xef\x2c\xdf\x60\x85\xe7\x37\xec\xa7\xe4\x11\x0c\x85\xfb\xc5\x69\x4a\x90\x02\xf2\x1b\x98\xf5\xed\xc4\x13\x12\xc5\x58\xa3\x29\x6e\xfc\xf4\xe2\x98\xea\xc6\x13\x05\x28\xf4\x83\xdb\x07\xcb\xb7\x84\x2b\x2d\x8e\x75\xe8\xa5\x09\xd8\x8b\x41\x3e\xfd\xff\xff\x41\xff\x3b\xe6\x39\x44\xa5\xa7\x5a\xbe\xc7\x2d\xb9\x96\x26\xad\x0e\xa5\xb2\x1e\x29\xcd\xfe\x31\xb8\x6b\xc0\x08\x33\x02\xdd\x76\x4a\x2a\x42\x05\x62\xac\x31\x75\xca\x8c\x78\xb1\x2e\x1e\x3a\xfa\x26\xe2\xb4\xe1\xf7\xe9\x52\x5d\x8d\xb8\x78\x74\xc8\x38\x38\x20\x4d\x8a\x6e\xb3\xce\x27\x66\xff\x64\x5e\x63\xf4\x50\x81\x0b\xda\x4e\x32\xc3\xab\x35\xc0\x8d\xa2\x91\x40\x59\x70\x2f\xb7\x40\x09\x7e\xfd\x64\x86\x64\xd6\x59\x96\xfa\xd4\xa6\x3d\xb0\x87\xf3\x57\x7f\x17\xa6\x54\x98\x61\xd3\xd0\xae\x8e\x4d\x08\x5a\x17\x4d\x88\xff\xda\x06\xff\x16\xdb\xa0\x94\x20\x9c\xfb\x05\x02\xb7\x80\x35\x03\xf5\xdb\x20\x6d\xa9\x4b\x70\xe5\xa7\x6d\xcd\x63\x22\x49\x7b\x70\xd0\x28\x44\xa9\x8b\x8f\x25\xb9\x42\xec\xac\x8d\x49\xc8\x66\x8e\xe1\x6e\xbf\x65\x9c\x8c\xbf\x41\xfa\x15\xbc\x08\x5a\xc8\x59\xd1\x29\x56\x61\x2c\xc1\x39\xec\xf4\xdb\x9d\xba\x12\xdd\x9a\x58\x17\x6d\x6d\xf8\x5d\x69\x1f\xe3\xaf\x60\x9c\x98\x78\xfd\xbb\xa0\xd3\x68\xb1\xbf\x26\xd1\x06\x4f\xbd\x7c\x88\xef\x23\x1b\xb6\x4e\x69\xd7\x56\xb5\x2b\x92\xef\xd8\xa5\xc0\xb3\x23\x2a\xbb\x8c\xdf\x00\x3c\x0c\xce\x09\x37\xca\x08\x38\x43\x37\x0a\x15\xb9\x2b\xee\x83\x6a\x5e\x9e\x05\x30\x1a\x7d\xb0\xe7\x77\xb6\x73\x28\x98\x1c\x93\xde\xe4\xde\x3f\xa9\x80\x28\x96\x51\xb4\x8f\x76\x4c\x39\x2e\xd2\xfb\xa4\x96\xd5\xd7\x45\x1e\x7f\x64\x72\xd5\xa7\xae\x73\xb8\xd6\x47\xfe\x49\xaa\x1c\x1e\xa7\x17\xe7\x65\x0d\xc3\x7f\x9d\x28\xbe\x58\x67\x2b\x61\x15\x45\x81\xae\xdc\x91\xb2\xd7\x08\x1f\x14\x82\xbc\xbf\x2f\xff\x6e\x22\xcb\x17\xaa\x41\xe1\x20\xcc\x75\x0e\x53\x64\x8c\x0b\x74\xdb\x41\x9d\x4e\x2c\xb3\x03\xd0\xf7\xbe\xa3\x31\x20\x76\xe5\x89\xe7\xda\xdd\x16\xae\x67\x13\x45\xab\x86\x81\xd6\x13\xb7\x75\x75\xe2\x6e\xe1\xe2\x0e\x3c\x48\xa2\x6f\x7a\x77\xeb\xe8\x9e\x9d\xbe\xc1\x50\xb5\x7b\x23\xc4\xe8\xca\x3e\xce\x58\xba\x35\xe3\x6f\x29\xf8\x11\x66\xf3\x73\xf4\x55\x30\xa0\x87\xb6\xab\x91\x64\x12\x8a\xc3\x3e\xe1\xd2\xf3\x73\x82\xcd\xfa\xe6\xea\x2f\xbc\x26\xaf\xb0\xdc\xa0\x0b\xf4\x44\xe8\x7f\x3e\x49\x78\xd1\x58\x6f\x5f\x94\x55\x75\xd6\xfb\x2d\xf6\xbd\x7f\x70\xff\xe0\xff\x05\x00\x00\xff\xff\xb2\xaf\x6e\xc0\x46\xa8\x00\x00" +var _nftstorefrontv2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xdb\x72\x5b\xb9\x95\xe8\xbb\xbf\x02\xf2\x83\x9b\xcc\xd0\x74\xcf\xd4\xa9\xf3\xa0\xb1\xdc\xad\xc8\xf6\x8c\x6a\x26\x1d\x57\xb7\x3b\x79\x70\x5c\x25\x70\x6f\x90\x44\x69\x13\xd8\x01\xb0\x45\x73\x3c\xaa\x3a\x1f\x71\xbe\xf0\x7c\xc9\x29\x2c\xdc\x2f\x7b\x93\x92\xdd\x49\x27\x13\x3e\x74\xcb\x24\xae\x0b\xeb\xbe\x16\x16\xe8\xae\xe7\x42\xa1\xa7\x6f\x07\xb6\xa1\xab\x8e\xbc\xe7\xb7\x84\x3d\x7d\xe2\xbe\xfe\x81\xb3\x91\x5f\x7e\x3b\x08\x46\xc4\xd3\x27\x4f\x5e\xbc\x78\x81\x7e\x78\xfb\xfe\x27\xc5\x05\x59\x0b\xce\xd4\x1f\xfe\x45\x7f\x07\xdf\x5f\xa2\x0d\x61\x44\xe0\x0e\xf5\x83\xe8\xb9\x24\x48\xe2\x8e\x20\x39\xf4\x30\x48\xc3\x99\x12\xb8\x51\x68\xcd\x85\x1e\x43\x22\xb5\xc5\x0a\xd1\x5d\xdf\x91\x1d\x61\x0a\xa9\x2d\x41\x6f\x3b\xbe\x47\xf9\x3a\x90\x54\x98\xb5\x58\xb4\x4b\x98\x07\xfe\xf3\x06\x37\x5b\x84\x9b\x86\x0f\xd0\x13\x2b\xb4\xc7\x4c\x49\xa4\x38\xea\xa8\x54\x66\x02\x3d\x13\xac\x81\x32\xa9\x70\xd7\x49\x84\x51\x58\xfa\x02\x06\xc2\xac\x85\x1e\x12\x51\xd6\xd2\x3b\xda\x0e\xb8\x83\x4e\x12\xed\xa9\xda\x52\x66\x46\x0f\xdd\x10\x96\xe8\x3f\xa9\x54\x94\x6d\xa4\x59\xd0\xfb\x2d\x11\x04\x51\x89\x38\x23\x71\xc3\x9e\x08\xb7\xc4\x05\xa2\x0a\x6d\x31\x6b\xf5\xb8\x66\x74\xbe\x46\xb8\xeb\xf4\x42\x91\x3a\xf4\x44\xc2\x50\x7a\xc5\x30\x9f\xed\xb7\xf4\xd0\x85\x0d\xdb\x79\x51\x83\x19\xda\xe2\x3b\x02\x33\x72\x81\x76\x5c\x10\xf4\xb4\x19\x94\x7c\xaa\xc7\xd5\x90\x84\x7d\xf7\x82\x36\x04\x06\x84\x31\x36\x9c\x00\x84\xe2\x5e\xb8\x6d\x05\x91\x92\xc8\x25\xba\x1a\x94\x84\xa1\x57\x04\x0d\x92\xb4\xba\x69\x8f\x0f\x00\x1e\x3d\xeb\x9a\xd8\x55\x72\x81\xb8\xda\x12\xa1\xcf\x54\xd2\x96\x08\xac\x28\x67\x72\x89\xea\x2b\xa5\xac\xe9\x86\x96\x20\x8c\x1a\xbe\xdb\x51\x29\x29\x67\x08\xef\xc2\xd1\x51\x89\x7a\x4c\x61\xbe\xfd\x96\x93\x3b\x22\xd0\x1a\x37\xb4\xa3\x0a\x2b\x3b\xa5\xde\x52\x3f\x88\x66\x8b\x25\x59\x6a\x88\x23\x49\xba\x4e\x2f\x01\x33\x84\x3b\xc9\x51\xb3\xe5\x1a\xe7\xf4\x9a\x05\xbf\xa3\x7a\x3e\x86\x78\xaf\x57\x86\x3b\x83\x14\x7c\x8d\x76\x58\xdc\x12\xd5\x77\xb8\x21\x66\xb5\x82\x34\x84\xde\xc1\x40\x3d\x5e\xe9\x39\xa9\x86\xc5\xb5\x3e\x77\xaa\xc1\x21\xc9\x02\x66\x2f\xd7\xbe\x1b\xa4\xd2\xb0\x52\x02\x33\xb9\x26\x42\x00\xc8\x0c\x84\x34\x84\xcd\x41\xc4\xe3\x22\x40\x27\x02\xab\xc9\x8e\x56\xe3\xc1\x0e\x1f\xf4\x78\xfa\x57\xd2\xea\xb6\xf1\x41\x39\x9c\x33\xab\xb9\xc3\x1d\x6d\xa9\x3a\xe8\x59\x08\x6e\xb6\x30\x50\x0c\x74\x82\x25\xed\x60\xb8\x66\x4b\x9a\x5b\x12\x13\xcf\x3b\x0b\x48\x61\x8e\x7b\x8f\x55\xb3\x05\xd4\x73\x03\x90\x3b\xa2\x89\x49\xd3\x06\xf4\x86\x29\x1d\xa6\xea\xaf\x61\x98\xeb\xd7\x1a\xda\x92\x10\x44\x61\xab\x07\xb4\xa7\x72\xab\xbf\x5b\x0d\x07\xbf\x4f\xbd\x13\x45\x76\x66\xfa\xdf\x05\xf0\x9b\xe1\x0d\x1e\xe1\xcd\x46\x90\x0d\x56\xfc\xc8\x8a\x12\x8a\x85\x61\x81\x8e\x28\x53\x44\x10\x07\x52\xdc\x34\x44\xca\x19\xee\xba\x79\x60\x3a\x19\xd3\x42\x9f\x9f\x3c\x41\x08\xa1\xb8\x2d\x61\x8a\x2a\xcb\x8b\xae\x04\xc1\x8a\xd8\xc9\x27\x5b\xfe\x48\x76\xfc\xce\xb7\x84\xa6\x7a\x91\x61\xb2\x6b\x46\x15\xc5\x1d\xfd\x2f\xd2\xfa\x5f\x2f\x63\x36\x21\x88\xe4\x83\x68\x08\xda\x62\x89\x56\x84\x30\xd4\xc0\xec\xed\xd2\xb7\x7f\xa3\x77\x0f\xd4\x36\xec\xdc\xa9\x31\xbe\x47\xe4\x53\x4f\x1a\xe5\x8e\x6b\x2d\xf8\xce\x60\x6d\x18\x3d\x8c\xf1\x03\x57\xc4\x72\x4a\x82\x5a\x8e\x18\x57\x48\xf6\xa4\xa1\xeb\x83\xa6\x14\xcb\x07\xce\xf5\xaf\x0d\x66\xfa\x57\x0d\x68\xb9\xe5\x43\xd7\xea\xc6\x61\x24\x03\x9c\xd6\x2f\x5c\xba\xe1\x80\x25\x69\xaa\xdb\x33\x7d\xa8\x66\xc4\x05\x8c\x63\x51\x5b\xc3\x2a\x80\x01\xaf\x95\x26\x3c\x3d\x9c\x26\x2b\xaa\x0f\xfe\x20\xa3\x15\x00\xf2\x85\x89\x2d\x94\x2f\xef\x30\xed\xf0\xaa\x23\x6e\xe3\x19\xcf\x6a\x89\x22\x62\x47\x19\x01\x1c\xb4\xcb\xf0\x83\x58\xb2\x34\x6b\xb4\xff\x88\x4e\x63\xb6\x5c\x2e\xa9\x92\xa8\xe3\x0d\xac\x6a\x8e\xb0\x11\x4d\x8a\xee\x34\x4d\xfb\x71\x1c\x7e\x6b\xec\x5c\x0d\x0a\x71\xd6\x1d\x4c\x5b\xac\x50\x2f\x48\x43\xa5\xde\x2f\x20\x89\x93\x22\xee\x6b\xe0\x18\xb8\xd1\xe3\x87\xdd\x5d\x5b\xc6\x6d\xf8\x9a\x86\x94\xcc\x17\xb7\xdf\xd2\x8e\x24\x33\x53\x69\x58\xc1\x02\x45\x0b\x33\x2c\x95\x03\xaf\xd9\xf9\x09\x4a\x34\x06\xac\xaa\x62\xea\x4c\xfa\x6f\x7f\xb4\xa7\x7c\xfd\xfa\x1c\xfd\x7c\xcd\xd4\xff\xfe\x5f\xf3\x27\xa3\x27\x12\x61\xb8\x5b\x61\x8e\xd5\x80\x0e\xb8\x6d\xcd\x59\xe1\x1a\x25\x04\x98\x68\x46\x7f\x69\x0e\x50\xef\x73\x20\x12\x81\xb0\xc5\xc2\xb2\x40\xb4\xdf\x12\xc3\x53\xcd\x6e\xa8\x44\x64\x47\x95\x22\xed\x42\x9f\x4a\x72\x5a\x52\x8b\x13\x77\xe4\x56\xc0\x4a\xc3\xb8\x04\x59\x13\xa1\xd7\xa3\xf1\xb4\xd9\x62\xb6\x21\x88\x0f\x4a\x0b\x37\xdb\x21\xd0\x51\xc6\x49\xf6\x5c\xdc\xae\x3b\xbe\x5f\x20\xc9\x81\xdd\x62\x41\xd6\x43\xa7\x07\x33\xbc\x13\x56\x38\x48\x0d\x8b\x53\xce\x23\x07\xe9\x0c\xda\xe9\x4f\x38\x93\x4b\x47\xac\xf6\x8f\x85\x6f\x63\xa1\x5e\x1e\x5a\x68\xc2\xd6\xea\xfd\xa1\x27\xe7\x48\xff\x37\xf9\xfa\xe7\x9f\xa3\xf6\x28\xfe\xa5\x36\x8e\xd6\x30\xde\xe1\x83\x46\xf0\x3f\xe0\xa1\xab\x0e\x0a\x6d\xb4\x12\x72\x8e\x7e\x7e\x4b\x3f\xc5\xdd\x9b\x41\x2a\xbe\xd3\x03\xff\xa4\x04\x65\x9b\xef\xa2\x9f\xbc\xa8\xbd\x04\x49\x5b\xe9\xec\x5b\xfc\x68\xe5\xb7\x3c\x47\x1f\x2c\x34\x3e\x46\x43\x91\x4f\x3d\x15\x07\xb7\x78\xf8\xba\x44\xdf\x2b\xae\x95\x50\x15\x71\xa6\xf7\x11\x89\x79\x04\xd6\xe8\xd9\xdd\x91\x76\x89\xae\x15\x7c\x4b\x28\x48\x2f\xf8\xd1\x29\x27\xed\x02\x09\x10\x09\xad\x96\xdc\x2d\x91\x4a\xf0\x43\xc4\xcb\xa7\x4f\xdd\xaf\x64\x76\xc2\x89\xa2\x0a\x66\x4c\x36\xf3\x6b\x3c\x47\xbf\xe5\xbc\x7b\x30\x4a\xfc\x6d\x61\x84\xa7\x8e\x93\xd1\xe1\x67\xa6\xd5\x50\xd7\x3f\xe2\x65\x56\xe0\xb7\x41\x5b\xd4\xc7\xaf\x25\x94\x39\x7b\xad\xbc\xb6\x83\xb0\x24\x6e\x74\x6f\xcb\x67\x7e\x78\xfb\xfe\xd8\xd9\xa7\xd3\xce\x44\xbe\xfe\x85\x9f\xff\x27\xdc\x91\xab\xc1\xef\x7e\x5e\xd3\x37\xf4\x5f\x78\x43\xde\x61\xb5\x4d\xd1\xd9\x0a\x34\x2d\x8c\xa4\x69\x63\x4d\x8d\xaa\x32\x62\x05\xff\xca\x76\x74\x18\x1c\xaf\xbe\x23\xaa\x3e\xef\x39\x8a\x17\x51\x59\xe3\xbb\x61\xd5\xd1\xa6\x58\x62\x0f\x5f\x87\x95\x6a\x05\x30\x59\x5d\x47\xd9\xed\xb1\x75\x84\xb1\xcf\x51\x34\x4f\xb4\x0c\x03\xc4\xe8\x78\xa5\x12\x43\xa3\xf7\xde\x0b\x22\x35\xac\xd9\x06\x61\x7d\xd6\xb4\xa7\xc4\x19\x29\x4e\xdb\xd7\x0d\xb4\x29\x43\x84\xc2\xd4\xd9\x02\xb9\x76\xd1\x1b\x2a\x30\xbc\x1f\x23\x05\x66\x2c\x95\x48\xf2\x6e\x82\x15\xd8\x75\xd8\x05\xa2\xcf\x1e\x6d\x1d\x80\x3c\xfa\x19\x3b\xd1\xcf\xb3\x4c\x5a\x56\x35\x3d\x05\xc6\x9e\xd7\xf3\xb4\x78\x5a\x53\xd6\xc2\x28\x40\xac\xa6\x07\xa8\x8f\x1e\x10\x91\x60\x01\x7d\x4d\x5a\xdd\x83\xdd\x6a\xe6\xe6\x71\xc5\xcd\xb5\x26\x5a\x6d\xa7\xd6\x74\xda\xe3\x83\x57\xfb\x30\xa3\xfd\xd0\x69\x34\x4a\x47\x94\x3c\x59\x88\x5f\x9c\xc1\xcb\x66\x50\xde\x66\x3d\xf0\xc1\x1c\xc1\x86\xd8\x55\x5a\x68\x61\xd3\x97\x25\xe3\x36\xda\xb4\x76\xd0\x5a\xae\xb8\x10\x7c\x3f\x9b\x9f\x2d\x41\xeb\x5b\xba\x69\x34\x31\x64\xb0\x7b\x6f\x8c\x3e\xd0\x27\x5b\x6d\x7e\x91\xf5\x9a\x36\x1a\x0b\xba\x83\xde\x19\x46\xb2\x11\xb4\x8f\x7a\xe5\x98\x18\xc8\xf7\xca\x59\x7e\x87\x97\xcf\x3e\x27\x1e\x8d\xa5\x23\xf6\xfb\x57\x4f\x8a\x43\xb6\xd6\x65\x86\x49\xa9\x47\xc4\x40\x9c\x76\x9d\x5e\xa7\xb3\x9d\x55\x84\x21\xe3\xeb\xc3\x09\x03\x4d\xa7\xa7\x5e\x03\x14\xf1\xf7\xfe\x6f\xfd\xfb\xec\x81\x1b\x5c\x64\x33\xce\x23\xbc\x06\x81\x40\xba\xf5\xd2\x23\xf6\x85\xdf\x41\xd9\xc8\x02\xe6\x22\xa6\x39\xfd\xb9\x7f\x62\xfe\x5b\xc8\xf5\xd7\x44\x61\xda\xc9\x92\xd2\xb5\x59\x88\x29\x33\x74\x6e\x1b\x7f\x23\x51\x8b\x15\x3e\x4a\x9d\xe9\xd8\x15\x22\x8d\xf8\x95\x25\x29\x6f\xbc\x03\x0b\xd0\x3f\x6b\xeb\x7e\x8c\x68\x2d\x09\x5a\xda\xb2\x96\x90\xb3\x9d\x8c\xce\xdc\xd2\xf5\x9a\x88\x54\x7b\x2f\x09\x4b\x8f\x43\x25\xfa\xfd\x7f\x2c\xb5\x6d\xb1\x07\x15\x59\xa0\x1d\xbe\x25\x88\x2a\xd3\x42\x5b\x0a\x0a\xfd\xa6\xc1\xec\x37\x7e\x8a\x74\x20\x43\x6a\x5e\x18\x08\x72\x47\x25\xf5\xe2\x20\x87\xd1\x1d\x16\x91\x32\x12\x74\x84\x64\xc8\x3f\x6e\x09\xe8\x4d\x30\x74\xa1\x65\x79\x25\x45\xb3\x18\x6f\x77\xd6\x26\xca\xd4\x99\xe2\x20\xb4\xe2\xe1\xc5\x70\xe6\x53\x5c\x82\x37\xc3\x5a\x4a\x2b\xa2\x57\x60\x9c\x15\xe3\x84\x93\x28\x49\xc5\x64\x4e\xf1\x42\xd7\xaf\x23\xd1\xaf\x2d\xb6\x66\x0b\x0c\x05\xec\x43\x90\x1f\xca\xb9\x81\x9c\x77\x62\x6a\xca\x58\x01\x2b\x26\x1d\x18\xfd\xf3\x40\x10\x6d\xb5\xd0\x5a\xd3\x60\xd0\xfa\xdd\x01\x8f\xd0\x2c\x53\x9b\x95\x93\x7b\x9b\x98\x26\x06\x64\x85\x0f\x59\x16\x25\xbd\x88\xdc\xe1\x96\x24\x08\x9e\x4f\x37\xae\x28\x8e\x71\xc3\x44\x04\x03\xc3\xb3\x30\x34\x2e\x0c\x4a\xda\x74\x65\x47\xe6\x8e\x15\xd0\x92\xff\xbb\x31\x8d\xb8\x6b\xa9\x46\x79\xce\x34\x04\x1c\x37\x5e\x11\xb5\x37\x26\x81\xd5\x11\xe4\xf4\x84\x57\x83\xd2\x06\x8a\x95\xec\x1f\x93\x29\x2f\xbb\x8e\xef\x23\x92\x6e\x71\xdf\x23\x45\xf0\x4e\xc6\xce\x4c\xa3\x1c\x6b\x26\x44\xd9\x46\x3a\x51\xdc\x1a\xea\x19\xa8\xdc\x92\xd6\xfe\x98\x91\xaf\x46\x02\xa0\xde\x2d\xe9\x7a\xb0\x40\x8d\xc8\xed\x14\x11\xce\x81\x22\x08\xc8\x66\x2b\x44\xa8\xf0\xaa\xf8\x38\xf1\x15\xca\x7a\x32\xed\x55\xe4\x2c\xf5\xde\x1a\x65\xec\xe3\x0e\xd3\x1d\x69\xd1\xea\x50\x73\xf6\x7a\xfd\x79\x1c\x9e\x63\xb6\x40\xb2\x80\x37\xa0\xe8\xeb\x23\xeb\x22\x27\x5e\x6d\xb8\xcc\x24\x48\x46\xb9\x16\x42\x2f\x50\xd2\x55\x77\x00\xc2\x4d\x58\x16\x96\x81\x05\x2d\xab\xf2\xd2\xce\xe5\xe8\x7c\x8e\xd6\x03\xd3\xe3\xbc\xe7\xce\x05\xdb\xce\xaa\xf2\x30\x30\xc1\x0b\xa4\xc4\x40\x22\x59\x97\x2c\xf0\xe7\xbe\xf5\x50\xb3\x18\x12\x31\x03\x83\x0f\xc1\x2f\x16\x90\x25\x71\x19\x46\xa8\x77\xd9\xf7\x32\x95\x4b\xbf\xc3\x9e\x6b\x29\x8e\x18\x35\x8e\x8d\x8e\x60\x91\xe8\x4e\x63\x3b\xbd\xb2\x68\x32\x2b\xf0\x65\x5e\xd9\xb6\x6b\x84\x2e\x3c\x7e\x8d\xed\xfc\xfa\x04\x55\x05\xcd\x92\x29\x46\xac\x5c\x34\x65\xe9\xa2\x71\x6b\x17\x9d\x68\xf1\xba\x76\x19\x0f\xc8\x1a\x54\x84\x66\xda\x62\xc2\x3a\x46\x27\x59\xc8\xa8\x6e\xff\xea\xcf\xdc\xf9\xc3\xdd\xa7\x17\x24\x43\x4b\x03\x5f\xf4\x07\xdc\x51\x8d\x72\xc6\xe5\x06\xa3\x15\xcd\xcc\xd7\xe8\x95\x9d\x65\xb6\xd1\x68\x20\x34\x82\xfd\xb6\xe3\xcd\xed\x6c\xbe\x54\x74\x47\xa4\xc2\xbb\x7e\x7e\x5e\xf4\xd6\x9f\xa7\x99\x93\x6d\x99\x2a\x5d\x4b\x7d\xb8\xe7\x20\x1e\x36\xf4\x8e\x30\x37\xa3\x1f\x16\xfd\x69\x66\xbe\x9a\x7b\x99\x61\xc5\xc5\x7a\x50\x83\x20\x67\x4f\x8f\xee\xad\x23\x6c\xa3\xb6\x49\x34\xad\x19\x54\xd1\xcd\x1d\xec\xd2\xb6\x7f\x85\xbe\x3d\x3f\x71\xf9\x4e\x27\x84\x15\x1a\xd7\xb9\x42\x1d\xc1\x52\x41\xdc\xc7\x89\x1a\x6d\x04\x79\x31\x93\xae\xfb\xfe\x49\x49\x42\x31\x22\xa1\x8b\x04\xaf\xa6\xd9\xcc\x1a\x77\x92\x94\x4d\x2c\xd1\xa0\x0b\x47\x3e\xd5\x26\x9a\x78\x4c\x13\xfd\x57\xb5\x89\x6b\x50\xfb\xb9\x46\x46\x7a\xf1\x95\xaf\x1f\xc6\x34\x42\xa3\x8c\x3c\x74\xe3\xec\xab\xb2\x93\x45\xab\x8b\x1a\xa2\xfb\x75\x43\xd4\xf4\xc2\x23\x42\x7a\x24\x5a\x14\xe2\xae\x01\xd3\xd7\x44\x11\xb8\xc2\x9d\x8d\xcb\xda\x78\x0d\x20\x96\x4c\xba\x81\x1a\xed\xf4\x94\x63\x4b\x7d\xf1\x02\xbd\x23\x62\xcd\xc5\xce\xd9\x6f\xd6\xf1\xcc\x59\x12\x7c\x34\x81\x98\xc6\x2f\x27\x8a\x10\xc3\x4a\x34\xa2\x19\x6d\x2b\x12\x01\xfa\xb3\xe6\x02\x7e\xa4\x2c\xdb\x75\x95\x43\xfc\x4e\xdb\x17\x72\x10\xc4\xc6\x71\x90\xb1\xbe\x47\xac\xd3\xa8\xe3\x1f\x89\xd1\x56\x5d\xc4\x91\x4a\x84\x37\x98\xb2\xe0\xe2\xaf\xb8\x51\xe2\x4f\x33\xa8\x65\x61\xf3\x57\xf9\xcb\x77\xdf\xa1\x1e\x33\xda\xcc\x4e\xa3\xd4\x2b\x6b\x83\x99\x8d\xb8\x29\x9e\x96\x63\x6b\x6d\xae\x6d\xdd\x99\x7a\xdd\x95\xe7\x47\x5f\x65\x23\xee\xb0\xc3\xdf\xff\x04\x5b\xc2\xe5\x91\xdf\x27\xff\xc2\x52\x12\xa1\x66\x13\x83\xbe\x42\xdf\x2e\xbf\x5d\x14\x0d\x76\x44\x4a\xbc\x21\xa7\x32\xac\xf7\x91\x21\x1b\x98\x16\xe3\xec\xf9\x7f\x11\xc1\xcd\xce\x32\xce\x3a\x2f\xc8\x01\xa6\xb1\x81\x71\x8b\x89\x6d\x84\x8a\x23\xbc\x21\x07\xcd\x71\xdb\xdf\xb8\xfe\x82\xe9\xcf\x4c\x94\x78\x8d\x1b\x62\x75\x6a\x63\xfd\x0f\x12\xa2\x35\xd6\xf5\x18\xda\x80\x9d\x6d\xc7\x1a\xf7\x09\x78\x33\x3d\x74\x4c\xe6\xcf\xdc\x03\x06\x83\x7e\x78\xfb\xbe\xb4\x39\x00\xf5\xcd\x49\x7a\xd3\x06\xef\x08\x78\xd1\xac\xb2\xaf\x8d\x3a\x97\x0a\x13\x86\x8a\x50\x1c\x5c\x38\xc1\x00\xd4\x04\xb4\x92\x84\xa9\x05\x90\x30\xf9\x84\x77\x7d\x07\xc1\x7a\xaa\x82\xbd\xad\x69\x09\xdd\x51\x8c\x30\x33\xc1\xf8\x2e\xde\x34\xaa\x6b\xb4\xb0\x79\xad\xe2\x45\xcb\x38\x47\xcf\x3e\xd7\xcc\xec\xfb\xef\x52\xcd\xcd\x09\x9d\xe4\x4b\xa7\x0f\xc7\xc1\xcd\x05\x5a\x0d\x07\xe7\x53\x57\xa9\x55\xe7\xe1\xd6\xe3\x83\x81\xce\x8a\x30\xb2\xa6\x0d\xc5\x82\xda\xdc\x02\x41\xd4\x20\x98\x8c\x58\x87\xa5\xc4\xd5\x70\x88\x79\xd0\xd4\xfe\xdc\x62\x53\xea\xb2\xb2\xf9\x1c\x7d\x9f\xb9\xbd\x40\x4c\xdd\x47\x21\x17\x94\x87\x26\x8c\x1c\x3f\xd1\x77\x16\xe9\x78\x73\x3d\x59\x15\xbc\x29\x74\x37\x44\xc5\x6e\x2f\xf7\xf5\x5b\xa2\x9a\xad\x33\x68\xad\xeb\xca\xea\x36\xc5\x79\x27\xa6\x1e\x25\x7b\x00\x44\x18\x57\x9f\x74\xe6\x60\xcb\x57\x00\x26\x2d\x69\xaf\xca\x28\xdd\xe8\xa2\xb0\xe9\x12\x27\xe8\xc8\x34\x77\x46\x4b\xa1\x60\x56\x3a\x2e\x9c\x99\x2b\xd7\x80\xdc\xee\xe4\x6f\x18\xed\x6e\xc0\x3b\x1c\x77\xa5\x12\x0d\xbd\xc6\x85\x8d\xc0\x2b\x6d\x87\x62\x76\xe0\x6c\xc4\xe2\x8c\x01\x30\xbe\x2d\x0d\x93\x0f\x27\x1d\xe9\xc7\x8c\x1a\xb6\x58\x5a\x60\xfe\x96\x34\x7c\x47\xfe\x6d\xcb\xa5\x8b\x44\x7a\x44\x27\x5d\x27\xb5\x18\xf4\xf4\x49\x5a\x47\xe1\xd6\x53\xaf\x79\x86\x75\x15\xb4\x01\x6c\x87\x49\xe0\x80\xc6\x67\xc1\x43\x15\xda\x11\xcc\x82\x71\xbb\x82\xd5\x48\xb4\xd1\xeb\xd1\xb0\x07\x3e\xc1\x07\x55\xa7\x1b\x3d\xfc\xeb\x37\xef\x7e\x7c\x73\x75\xf9\xfe\xcd\xeb\x73\x1b\xad\xd0\x13\x99\xb8\xbd\x41\x36\x2a\x35\x28\x1b\x65\x4f\x41\x92\x1d\x66\x8a\x36\xb8\x03\xe7\xfa\x1d\x11\x7a\x63\xff\xef\xff\xfc\xdf\x64\x99\xda\xfe\xbd\x49\x26\xf2\x0a\x81\x85\x81\x54\x9a\x79\x3a\x48\xcc\xe8\x92\x2c\xd1\x0f\xbf\x7f\x6f\xd6\x4e\xda\x39\x70\x03\xb7\xdd\xbc\xb3\x61\x91\xc9\xf8\x66\x84\xeb\x9f\xfc\x00\x4b\xc3\x6b\xa8\x41\x55\xde\xf7\x5c\x52\x93\x4a\xb0\x77\x1e\x5e\xbf\x2f\xa6\xb9\x36\xdd\xf5\x1d\xe4\x91\xbd\x8f\x7e\x4a\xf9\xb4\x44\xb7\xa4\x57\x08\xcb\xe7\x14\x1c\x3d\xf8\x8e\xd3\x16\xad\x04\xc1\xb7\x90\xf0\xf4\xc9\xb9\x8c\x99\x22\x1b\x9b\x61\x67\x03\x23\x9d\x20\xb8\x3d\x68\x94\xee\x09\x93\x5a\x97\xb3\xf1\xa0\xcc\x99\x0f\xae\x0b\xce\x96\xe8\x67\x49\xd0\x0d\x95\x80\x5b\x16\xdb\x66\xf3\x1b\x48\x8b\x24\xb8\x5d\x58\x2f\x65\x0a\xf1\x00\xa8\x90\x6b\x92\xd2\xb9\x01\x4e\x09\x5c\xaa\xc2\xa1\x40\x92\xc6\x11\xca\x1a\x21\x01\x4d\x53\xe0\xd7\xcd\xe0\x16\xef\x22\xf9\xe9\xc7\x74\xfd\x74\x1d\xe7\xa0\xd9\xd3\x66\x1c\x75\x9c\x6d\x88\x88\x09\x27\xa4\xdd\x7c\x23\x51\xc3\xbb\x8e\x94\xe7\x65\x70\x22\x4b\xbd\x89\x41\x10\x1c\xf5\xde\xaa\x9a\x2f\x12\xe0\x24\xa2\x39\xf5\xd6\x03\xac\xbc\xa7\x2c\x45\xb7\x86\x0b\x41\x1a\xd5\x1d\x9e\x6b\xd4\xd2\x62\x0d\xb8\x23\x18\x87\xfa\xdc\x6f\x46\xe1\x77\xb3\xc8\xc8\x46\x9f\xb2\x16\xfc\x9e\xd6\x2c\x89\x3a\x42\x1c\xf1\x62\xfa\x93\xca\x51\x28\x3e\xa0\x8a\x0e\x16\xb4\xaf\x2c\x56\x08\xcc\x5e\x0b\x69\xe3\xa8\x06\xbf\x20\xf0\x17\x88\xf8\xb2\x28\x04\x86\xad\x85\x9f\xb0\xd3\x85\x1f\x58\x83\xd7\xc7\x42\x05\x6f\x08\x69\xad\x5c\xc3\xc6\xf1\xea\x06\xef\x3b\x1a\xbc\xb6\x92\xdc\x41\x9e\x72\xee\xbd\x85\x04\xc9\x7c\xf3\x7e\xe5\x76\x53\xe7\xa9\x86\xb7\x40\x26\x39\x7a\xa9\xff\x07\x6e\xce\x32\x22\x24\x21\xc9\x19\xcd\xb4\xaa\x1c\x84\xc4\x02\x54\xe7\x06\x32\x3e\x3e\xcd\x73\xa9\xac\x17\x9f\x1f\x86\xd6\x87\x8d\xd3\xd2\x36\x9e\x16\xc4\x97\x91\x20\x30\x20\x37\xca\x54\x1c\x5e\x52\x1c\xd2\x9c\x5b\x81\xf7\x21\x66\x41\xd5\x16\xfe\x61\x40\x7f\xfd\xda\xd8\x87\x54\xc5\xc4\x51\x0d\x9b\xa6\xb3\x49\x6b\xf3\x55\xa6\xfa\x0d\x66\x87\xdf\xe8\xc9\x20\x6b\xea\xc0\x87\x28\xc4\xe4\x12\xa8\x80\x97\x6c\xe8\x5d\x4e\xe6\x72\x68\xb6\x08\xc7\xb3\x81\xae\xee\xe7\x81\xfc\xb2\x0e\x32\x09\x8d\x29\x69\x16\xde\x12\x93\xdf\xe5\xac\x53\x6a\x83\x23\x83\x84\xbf\x0d\x1b\x48\xe9\x05\x1f\x7c\x88\x0c\xbc\xd6\x72\x5c\xf6\x01\x9f\xa7\xa4\x6b\x4d\x8a\xec\x20\x89\x44\x37\x15\x7d\xf8\x9d\x91\xd1\x62\x51\x46\xa4\xae\x3c\x6c\x0d\x66\xdd\xdf\x84\x7c\xbf\x64\xae\x1b\x6d\x8e\xdd\xa0\x1e\x0b\xbc\x23\xca\x24\x99\x93\x5e\xd5\x27\x0c\xa3\xde\xdf\x80\x38\x92\xc4\x3a\x7c\x41\xb2\x30\x93\x1f\xdd\x1d\xce\x21\x66\x9e\x6b\x68\x3d\x96\xe6\x14\x19\xd6\x7a\x3e\x11\xe8\x26\x0c\x78\x63\xf6\x3a\x33\x7c\xc5\x72\x2b\x6f\xa0\xc4\xe7\xa3\x9b\x51\x29\x07\xe3\x87\x36\xac\x56\xce\xb3\xe4\x02\x97\x03\x20\x25\xdd\xb0\x9d\x4d\xe6\x33\x49\x7e\x2b\xd2\x60\x7d\x4e\x37\x13\xdb\xbb\x41\x0d\x67\x6b\x2e\x4c\xd8\x64\xc5\xd5\x16\xdd\x38\x68\xdf\x14\x33\xdd\xe4\xd0\xbe\x59\xa2\xcb\x8e\x6e\x98\xb7\x37\xf6\xdc\x99\x0b\x60\x87\xc1\x1e\xf6\x0e\x47\x71\x10\xd4\x36\x5b\xd0\x58\x58\x15\xa9\x34\x2e\xbf\xb7\x9a\xe3\x1d\x3b\xb3\x34\x2f\x7d\xdc\xdf\x6e\xa3\x78\x6e\xc7\x81\xcd\x24\xa6\x06\x1e\xd4\x76\x56\xcc\xf7\x47\x4b\x96\xf3\x9a\x05\xf7\x10\x8c\xcd\xb2\x19\x2e\xa7\x13\xf0\x33\xfd\xde\xc0\x46\x10\x84\x7b\xad\xc9\x92\x16\xa5\x91\x2c\xee\x74\x7e\x38\x94\x38\x91\x3f\xe8\xf6\x47\x00\x14\x4f\x1e\x43\xe8\x71\xaa\xfb\x95\x26\x18\x08\x64\x59\x11\xb0\xd2\xb2\xd4\xaa\x4d\x54\xc6\x41\xff\x2c\x0f\xd0\x8d\xf0\x66\xa7\x79\x53\x9e\xfb\x67\x42\xc5\x34\xb1\xce\xd0\xde\x26\x9c\x39\xe4\x81\xad\xb4\x49\x0c\x2a\xcb\x00\xa0\xac\x09\xba\xc8\x6c\x0e\x79\xb1\x32\x4a\x95\xf5\x72\xd3\x3b\x81\x1b\x2c\x49\x61\x31\x98\x90\x17\xdf\xd0\xc6\xa2\xba\x5c\xb8\x2c\x80\x38\xcf\x5c\xc4\x79\xf0\x33\xa3\x72\x47\x3f\x37\x1d\xc1\x6c\xe8\x67\xf3\x23\x21\x23\x0d\x42\x0d\xd7\x15\x6e\x6e\x8b\xd0\x58\x48\x92\x8e\xb3\x06\x42\x1a\x5e\x48\xc1\xdc\x6b\xb9\xb3\xd1\x6c\x88\xc2\x85\x9d\xc6\xc3\x76\x4b\x04\x59\xe6\xa3\xfe\x5e\x1b\x56\x7b\x2a\xc9\x44\x47\x1a\x39\x03\xe6\xc5\x08\x4e\x61\x73\x9c\x6a\x4f\xdc\x99\xa7\x3a\x23\x9b\x80\x59\x3e\x26\x17\x55\x08\xa2\x62\x72\x93\xdd\x61\x19\x11\x9c\x17\xcc\x3d\x34\x8a\x8b\x70\x58\x6a\xcb\x65\x30\x46\x32\x1f\x2f\x5d\xa3\x33\x70\xb7\x59\xcd\x22\x0a\x0d\x94\x5e\x5e\x8d\x49\x13\x19\xab\xf1\xa7\x92\xbd\x0a\xd3\x0c\x03\x6d\x4b\x87\x24\x1a\xcd\x65\x4d\xd6\x16\x07\x35\xea\x83\x44\xa9\x21\xf5\x5d\xd5\xbb\xf9\x08\x61\xd2\xc9\x7e\x3b\xda\xc5\x44\x0e\xf3\x2e\xfa\xdb\xd1\x2e\xb5\x0e\x63\xcd\xeb\x31\xc6\x14\x20\x95\x26\x13\x83\x99\xec\x87\x72\x04\xfd\x7d\xbd\x5b\x08\x3e\x26\xbd\xdc\xd7\x23\x9d\x8a\x90\x64\xda\x39\xfb\xf9\xd8\x20\x21\xaf\x97\xd1\xae\xde\xd8\x85\x37\x93\x79\x46\xa2\x94\xf3\x11\x8f\x7a\xe6\x4f\xab\xbb\x6c\x8d\xa9\x69\xf5\x5b\x08\x9e\x37\xa4\xc8\xbd\xb1\xa9\x02\xa4\xf5\x17\x11\x97\x7f\x01\x57\xad\x57\x6c\xad\x6d\xc7\x68\xf7\x15\x5d\xb9\xa3\x1c\xd9\x3a\x9f\x44\xac\xf7\x45\x99\xf3\x77\xfc\xd6\xa4\xc6\xbb\x35\x21\x81\x6d\x12\x18\x66\x26\x18\xa3\xb5\xa9\x45\x3e\xba\xcb\x73\xe1\x4d\xb8\xcb\xd5\x0b\xbe\xa3\x5a\xc1\xd6\xc3\x18\x8b\xf1\x60\xc1\xf7\x62\x60\x21\xdf\xc4\xa7\x5e\xbb\x0f\x5d\x83\x16\xe0\x96\xfa\x23\x59\xa3\x0b\x1f\x9f\x2c\x35\x27\x1f\x43\xaa\xb0\x40\x3b\x94\x80\x21\xa2\x01\x97\x01\x8a\x25\x7d\xd7\x06\xb2\x83\x09\xb2\x5e\x52\x79\xcd\xb4\xfa\xdc\x90\xa2\xaf\x26\xe8\x39\x7a\xf6\xcc\xb4\x6b\xd1\xc5\x45\x85\x7d\x8c\x8c\xae\x3f\x16\xee\x82\xac\xab\x4d\xee\x8b\x6f\xef\x27\xe2\x4d\xe1\x10\xc7\x88\x66\xc4\x09\xfd\x6f\x44\xe5\x0e\xe8\x93\x83\x0d\x27\x39\xa2\x33\x08\x78\xef\x46\x80\xd4\xc4\x8a\xff\xe1\xb4\x9e\xd0\x7c\x27\x20\x5b\x57\xaa\xc7\x00\xfd\x3f\xc5\xdf\x3d\xea\xde\x86\x5c\x3b\xb0\x62\x78\xe9\x38\xae\x78\x55\xfc\xef\x63\xee\xd9\xba\x13\x5c\x6b\xc5\x35\xff\xf7\xa4\x23\xdd\x30\x51\x34\x0b\x7e\xef\x69\xcf\xf1\x97\x39\x76\x33\x9c\xfa\x8a\xdc\xd9\x9e\xc4\xe9\x7c\xf9\xec\x22\x61\x67\x68\x8c\xe7\xa5\x49\x32\xf7\xff\x70\x4d\x3f\xda\x35\xfd\x28\x4f\xf3\xaf\x08\x63\x2e\x4e\xc4\x98\xa9\xec\xcd\xbf\x58\x24\x3c\x92\x23\x8e\xeb\xb8\x94\x5b\x50\x9f\x42\xac\x9c\x7c\x52\x02\x1f\x8b\x96\x9b\xf9\x4c\xd5\x85\x0e\xb8\xe8\xd0\xa3\x76\xe8\x3b\xda\x60\xe5\x17\x2d\xbd\x87\x81\x2a\xb2\xb3\x49\xf6\x95\x84\xd9\xbf\xc1\x90\xfb\x69\xe9\x92\x23\xf6\xf4\x85\xcd\xb5\x7b\x58\xea\xa3\x1f\x20\xcd\xc3\xd1\x2a\xb6\x73\x09\xa5\x4e\x90\x32\xc5\xd1\x5d\x16\x1b\xd3\x33\x6b\x56\xe4\x03\x13\x34\xa3\x55\xda\xa4\xa9\xbe\x82\xce\x26\xc2\x70\xfd\x1a\xfd\xc9\x2c\x20\x56\xe9\x2c\x7d\xf9\xc8\x29\x40\xde\x22\x24\x24\x32\x63\xe9\x53\x23\x5f\xfe\x69\xe6\xf6\xb4\x21\xb0\xdc\xd9\x7c\x19\xf2\x9f\xe7\x86\xab\x2a\x6b\xa6\xfd\x79\x20\xc0\x11\xc1\x93\xfb\xf2\x4f\xc7\xf7\x1e\x0f\xb5\x1c\x07\xe7\x0a\x77\x1a\x96\x85\x4e\x1e\x4c\xed\xbf\x26\x08\x1d\xac\xee\xe0\x8e\x5f\xcb\x89\x01\x89\xbd\x01\x95\x81\xc6\x64\x03\xf2\x35\xaa\x41\x47\xff\x56\x83\x43\xc5\xd8\xfe\x25\x72\x7f\x4f\x83\xcb\x59\x42\x1d\x54\x1a\x97\x40\x8d\x1a\x60\xd9\xa6\x0a\x84\x91\xfe\xe8\xd1\xeb\xf1\x77\x7f\x34\x78\xd9\x37\x36\x31\x2e\x04\x33\x48\x6b\xca\x4d\xe4\xd9\xbb\xf1\xbf\x72\xc3\x37\xa4\x51\xc6\xa7\x5e\x91\xe4\x26\x49\x32\x35\x74\xd3\xc3\xcb\xef\x1b\x8c\xcf\x4b\xd7\xd3\x2e\x1a\x93\x48\x58\xcf\xfb\xbc\x5e\x67\x96\x8e\xbd\x3c\x4b\xc1\x4e\x5f\xa0\xf7\x5b\xc1\xf7\xc6\xd2\x2f\x53\x37\xd3\x7b\x1d\x3f\x86\xdb\x80\x15\x46\x5e\x3d\xa5\xa3\x19\x9d\x31\xfa\xd4\x96\xd9\x60\x7d\x70\x2b\xa2\x17\x5b\xcf\xec\xfc\x03\x11\x74\x7d\x48\x6b\xfa\x1c\xe2\x18\xd5\x9a\x0b\x82\x7a\x93\x8a\xeb\x84\x35\x58\x88\x10\xfb\x80\x58\x64\xe9\xb6\x32\x77\xf5\xb0\x73\x91\xc4\x43\xf7\x82\xb7\x03\x14\xca\xb1\x17\x2e\x88\x10\x5c\x24\x8e\x13\x0c\x41\x2f\x53\x5c\xc2\xa6\xa7\xae\x31\xed\x86\xdc\xc7\x8d\x26\xd2\x44\x51\xd5\xcb\xb6\x84\xf5\xce\xe6\x75\x47\xdb\xd1\xcc\xd1\x4c\x5c\x05\x53\xad\x0e\xfb\x18\x9c\x94\x01\x40\x4b\x8a\x2d\x4f\xc5\xe1\x6b\xdd\x04\x75\x74\x5d\x77\x8b\xdc\x61\x81\xa8\xbc\x2a\xf1\xeb\xdf\xb1\x84\x9b\x00\x36\x09\xbd\xcc\x8b\x3f\x3a\xc2\xe5\xa0\xb6\x5c\xd0\xb1\xbc\x7a\xf7\x81\xbc\x6a\xdc\xfb\xbc\xea\xfa\x2e\xce\x26\xdc\x3a\x2f\x5e\xa0\x2b\x08\x71\xff\xf3\x39\xfa\xc9\x04\xd0\x3d\xeb\xf1\x51\xcb\xd1\xde\x74\xad\xa7\x0f\xa2\x53\x4b\xb0\x0a\x22\x84\xdf\xc7\x17\x02\xc3\x9d\x00\xcc\x44\x1b\x9e\xdc\xd1\xbf\x94\x3b\x32\x74\x66\xa0\x94\x5e\x15\xdf\xf2\xae\x95\x21\x6e\x58\xf3\x07\x4c\x00\xc0\x0d\x55\xdf\xbe\xfb\xf5\xd9\x33\x68\x6c\xc9\xe2\x08\x2c\x46\xe1\x91\xa0\xc6\x51\x68\xe8\x0f\x04\x9a\x27\x5b\x95\xde\xbb\xe9\x5f\xea\xdf\x4e\xb1\x07\x74\xca\xf1\xd6\x39\x05\x7a\x20\xb7\xc8\x64\xfb\x19\xba\xb4\x69\x28\x55\xce\x01\xba\x9c\x57\x6a\xcc\x25\x1a\x8b\x27\xfa\xa7\xca\x3d\x1f\x54\x65\x24\x8f\x06\x40\x38\xcf\x5f\x78\xfb\xa9\x40\xe5\x0a\xe1\x80\x49\x59\x68\x3c\x40\xea\xe4\xfd\x97\x28\x91\x4a\xe4\x77\x4e\xe3\x7e\xee\xd5\x5e\x97\xcb\x33\xc3\xa7\x04\x77\xca\x29\x6d\xad\x04\xbb\xa9\x2a\xe9\x7d\xd9\x1d\x8e\x08\xaa\x3f\x33\x7f\x01\x35\x5c\x46\xa9\xf8\x65\xab\x32\xa9\xa2\x0d\xf8\x66\xcb\x96\x40\x2e\xe8\x6c\x2d\xf8\xee\x5c\x83\xa7\x80\xd9\x58\x9c\x09\x19\x6e\x07\xee\xe4\x34\x45\xdd\x79\x0e\x78\x12\x9e\xcf\x2e\xcd\xd8\x7c\x0f\xf4\xf2\xf9\x09\x0e\x8f\xb3\x70\x5a\xee\x8f\x7a\x04\xb2\x88\x41\xff\x60\x6b\x1c\x79\xcf\x35\x62\x5c\x78\x37\x89\x84\x7c\x0d\x25\x06\xa9\xf6\x5c\xa8\xed\x61\x61\xca\x69\xc1\xed\x90\xb4\xb2\xa7\x75\x15\xe5\xe3\x87\x7b\x13\xab\x41\xab\x5f\x07\x6e\xdc\x15\x7d\x77\xf0\x56\x0e\x55\xe0\xf6\x7d\xd1\x73\x09\x86\x4b\x4b\x5d\x32\x0d\x39\xc0\x02\xc0\xd7\x39\x60\x81\x99\x22\x91\x2b\xd9\x4e\xa1\x78\xb6\x14\xe7\x51\xc5\xa0\x24\xac\xc8\xd6\x95\x1f\x09\x8b\xa1\x0c\x82\x4a\x86\xf4\xf6\xf8\x50\x89\xf7\x13\x61\x14\xbe\x50\xad\x0e\xe0\x00\x03\x85\xc4\x98\x90\x96\x56\x9b\xa7\x0c\x77\xb1\x56\x0f\x08\xf0\x4b\x2b\x2f\x86\x9b\x26\x0a\x96\x25\xd1\x20\xd3\x84\x36\x97\xaa\x96\xfa\xe6\x50\x12\x24\x40\x13\x7c\x8e\xad\x55\xaa\x0b\x9c\x16\x04\x7f\xa8\x2a\xa8\xe2\xaa\x0c\x6f\xdf\x07\xd5\x70\x75\x88\xbc\x9d\xda\x40\x4f\x16\x14\x1b\xe3\xaf\x02\xcb\xdf\x61\x4f\x3e\x90\x64\x96\x66\x2c\xbb\x40\x53\x6e\xed\xdb\xcd\x24\x63\x16\x37\x97\x4e\x85\xd9\x58\x38\xee\xcb\x41\x05\xe6\xbd\x99\x62\x7e\x02\xc8\x2a\x40\x09\x0e\x82\xcc\x7d\x59\x07\xd4\xd1\xdb\x5b\x81\x5b\x15\xee\x3e\xef\xed\x33\x44\x13\x47\xcc\x6d\xe7\x4b\x70\xf4\x21\x5f\xd3\xf0\xad\xde\xfc\xef\x30\xc3\x1b\x12\x15\x13\x0a\xf1\x74\x60\x85\x3b\x6e\xa5\x5a\xc5\xbf\x48\xd7\xc1\x07\x60\x6b\x1c\xe0\xbe\x27\x0c\xc9\x01\xa6\x5a\x0f\x5d\x77\x28\xd9\xa6\xf4\x93\x9b\xb4\x35\xe3\x37\xde\x10\x75\x69\x6a\x02\xce\x82\x6b\xe0\xcc\xa9\x7f\xf3\x65\x92\x87\x67\x18\xeb\xcb\x67\x9f\xf3\x83\xcc\xeb\x50\xdd\xbf\xaa\x2b\x14\xc7\xfa\xf9\xda\x58\xc9\x79\x7c\xb9\xd0\x93\xa3\x80\xcf\xc4\x1c\x64\x19\x3b\x90\xbb\xda\xb3\xee\x42\x71\x0a\x3c\x70\x3e\x65\x4d\xaf\x5f\xcb\xfa\xc6\x1f\x97\x62\xf3\x90\x7c\x99\xce\xad\x20\x4a\x35\xaa\xd8\x92\x39\x76\xfe\x27\x51\xdf\x80\xcb\x1a\x70\x70\xc7\xef\x70\x97\xdd\x90\xf2\x95\xad\x42\xfe\x91\x47\xfa\xb2\x9c\x4c\xf0\x74\xa7\x3e\x16\xdd\xc3\x2f\x51\x0f\x59\x42\xb9\xe2\x4a\xae\x40\xdd\x25\x84\x55\x52\xac\xfc\xf8\xb9\xf2\x91\x6f\xfa\xc7\xd8\x97\xb0\xe2\x42\xf9\x20\x43\xa8\x50\xaa\xc9\x4c\x0b\x43\xaf\x24\x85\x40\x21\xc4\x0f\xf7\xba\xf5\xc1\x15\x8b\xa6\xaa\x10\x6a\x7b\x28\x9a\x16\xae\xc5\xba\x10\x04\x15\x52\x59\x65\xbd\x7e\x31\xd8\xe7\x55\xeb\x86\x7e\x7a\x9b\x29\xae\xbc\x04\xf6\x65\x18\x23\x66\xb8\x40\xf6\x26\xc1\x46\x10\x53\xb7\xcf\xea\x75\x6b\x2e\x4a\xa1\x7b\x40\x03\xd4\xe0\x83\x9b\xd8\xe9\x1a\xb4\x91\x2f\x88\x84\xba\xe0\x21\x03\x69\x34\x7e\xf0\x1d\x2a\xe3\x42\x2f\x5e\xa0\x77\xf8\x90\xeb\x9c\xb5\x26\x04\x37\xdb\x28\x7c\x73\xb0\xd5\x58\xaa\x15\xc1\x96\x4f\x0a\xb4\x8a\x2f\x69\xc7\xae\xdb\x91\xcb\xda\x3e\x87\x25\x78\xdb\x6a\x37\xa8\xeb\xa6\x2e\x04\xde\xcc\x4a\xae\x86\x69\xc3\x20\x5c\x62\xae\x6b\xf2\x7e\xc6\x5c\x99\x0e\xe3\xd7\x3b\xd2\x35\x9a\xe5\x67\x63\x03\x73\x53\x06\x7a\xd9\xa5\x5e\x74\xcc\x7d\x2a\xd9\x31\x88\x74\xb2\x16\xf2\x41\x2e\x3b\x72\xb4\xa6\x63\x02\x62\x3c\x5a\xe0\x71\x0a\x66\x79\x6e\xce\x49\x9a\x4a\xb1\x69\xe3\x1c\xfb\x32\x25\xe5\x07\x6e\xe9\xd7\x45\x19\xbc\x99\x70\x4c\x91\xb8\xb4\xb5\x74\x7a\x4e\xa1\x3a\xbe\x29\x86\x1f\xac\x8c\x3d\x54\xf9\x6d\x20\x51\x02\x2e\x74\xb8\x00\xf4\xc2\xe4\x6f\xc4\xa5\xf1\x4c\xf9\x42\xc8\x79\xdb\xe2\x3b\x92\x4f\x05\x97\xd3\xc1\xb8\x92\xa8\x23\x6b\xb5\xb0\x57\x0d\xdc\xa5\xeb\x60\x0e\x98\x02\x5d\x18\x31\xfe\x9c\xf7\x86\x9d\xdb\x9a\xdb\x36\x6f\x7a\xd7\xab\x83\x89\xa4\x3c\x99\x82\xed\xd9\x18\x26\x97\x70\xc8\xf2\x99\xa9\xfc\xe5\xb3\x98\x4d\x06\x96\xcb\x0f\xce\xd8\x08\x94\x76\x9a\x28\xa5\x8a\x2a\xfc\x4d\x93\xe1\x74\xd8\xe0\xec\x02\x7d\xbb\xfc\xb6\x46\x93\xa7\x3a\xfd\xbd\x22\x36\x85\xfb\x27\xe6\x25\x3f\x2c\x27\xf9\x8b\xf3\x91\x1f\x91\x8b\xfc\x40\x25\xe9\x81\x39\xc8\x0f\xd0\xa7\xbe\x5a\xee\xf1\x23\xf2\x8e\x1f\x9c\x73\xfc\xc5\xf9\xc6\x35\xc4\x2f\xbf\x2b\xfb\x9d\x9a\x76\x9c\x91\xbf\xf5\xf3\xbc\x7c\xce\xd6\x71\x31\x4b\xff\xa7\xbb\x21\x02\x69\x3c\x83\xe2\x3b\xec\x92\xc9\xac\xdd\x77\x85\x5b\x30\x94\xc4\xc0\xa0\x3a\x7d\x79\xf5\x24\x78\x0d\x46\xef\xa0\x5c\xe1\x5e\x0d\x02\xa2\x4c\x92\xe1\x5e\x6e\x39\x68\x1a\xb7\x24\x7a\xf8\x83\x12\xf0\xaf\x2b\xcf\x37\x20\x93\x84\xee\x46\xd2\x0f\xcd\xfd\x12\x47\x2e\xaf\xdd\xbc\x29\x25\x8e\xd6\xb5\x76\x39\x3c\x25\x39\x4e\x95\xb9\x46\x79\xf4\x7d\x94\x26\xb3\xb2\x91\x79\xc7\x11\xb2\xf4\x24\x69\xaa\x6f\xe5\xbd\x4a\x8f\xc2\x64\x81\xb1\x4a\xf7\x92\x56\x93\xba\x63\x95\x1e\x79\xfb\x3a\xb1\xd6\xd7\x7b\x24\xdf\xa1\x32\x70\x5c\x32\xb1\x3a\x5a\x49\xc5\x45\xc9\xb2\xbc\x5f\x9d\x96\xc7\x4a\x99\x15\xbd\x27\x09\x7a\x52\x8a\x55\x74\x9f\xb4\x34\x5a\x3e\x57\x46\xcd\xf3\x87\xd7\xcd\x2d\x8b\xd1\x7d\xfd\xbb\x7a\xd1\xc5\xc1\x57\x23\xe8\xfb\x2b\xac\x7d\xf7\xa5\xb7\xf2\x7e\x6d\x95\xf4\xe2\x66\x49\xc5\x23\xfb\x16\xd5\x9a\x8b\x1d\x4e\xb2\x38\x51\x96\xb3\x81\x2e\xb2\xc4\xf6\xaa\xe7\xd1\x00\xfc\xb8\x56\x70\x4c\x11\x78\x98\xec\x3f\x59\xdc\x9b\x33\x77\x7f\x4d\x29\x56\x20\xe3\x27\x75\xa8\x70\x64\x0f\x11\xff\xc7\x25\xbe\x3b\xc5\xe3\xc2\x3a\x39\xc8\xc8\x09\x5b\xa9\x53\x5d\x25\x6d\x53\xfc\xae\xfc\xbe\xec\x3e\x92\xcc\x70\x31\x42\x27\x65\xc1\x39\x1b\x37\xb0\x85\x49\xc2\xc5\x1c\x93\xf2\xe5\x6b\x49\x15\xf6\x43\x5a\x80\x4d\x5b\x0e\x27\x97\x5f\x33\xbd\x6d\x1c\xc4\xba\x6c\x21\x95\x03\xae\xe6\xfb\x14\x76\x77\x3b\x32\xe2\x97\xd2\xbf\xf5\xa3\x0d\xc0\x1d\xd9\xad\x88\x18\xbb\xa4\x18\x27\xfb\x9e\x96\xe9\x7b\x92\x69\xec\x87\x7c\xbc\x49\x9c\xd4\x89\x0b\xbb\x73\x54\xbc\xf0\x58\xe3\xd6\x1a\x31\xfa\x28\xe7\xe5\xec\x69\x89\x75\x51\xda\x91\x1e\x00\xee\x98\xcb\x50\x41\xda\x07\x9a\xcc\x2b\x4b\x71\x95\xa7\xa6\xc3\xc2\xe6\x3b\x1e\x39\x6b\x73\xd0\x38\x4e\xa9\xa3\x3b\xf2\xaf\xbe\x84\x38\xbc\x27\x26\xba\xc3\xf3\x35\xa6\x1d\x84\xda\x5a\x28\x56\xe9\xb2\xd2\xec\x0b\x4e\xf5\x08\x65\xb8\x1f\x75\x36\x9d\x53\x5d\xc0\xfd\xb8\xb7\xdb\xc0\xdd\x17\xad\x18\x0d\x77\xf8\xd0\x08\x80\xcf\x41\x2f\xca\x4a\x72\x60\x7c\x7a\x7a\xdc\xe7\x17\x89\x95\x1d\x41\xa4\xb3\x22\x84\x66\x88\xd2\xbf\x74\x38\x1d\x36\xb3\xa9\x03\x7c\x1d\x95\xcd\xae\xc5\xcd\x4e\x89\x97\x8d\x85\xcb\x7c\x45\x3e\x64\x95\xa3\xb0\x4f\x1b\x72\xf0\xbf\x24\x45\xf9\xe0\x22\x5f\x6b\xaa\xf2\x41\x42\xfa\x8e\xdf\xe9\x7f\x78\xaf\xb8\x7d\x8e\x11\x17\x35\xef\x5d\x95\x05\xd6\xda\xab\x96\x9a\xc5\x58\x13\x29\xb4\xfd\x46\x9a\x24\x4c\xd7\x05\xfe\x7f\xa4\x96\x5f\xb1\xf4\xac\xb8\x4b\x53\x3c\x13\xe7\xb7\x16\x0a\xa0\x44\xef\x01\x98\x74\x53\xc5\x6d\x47\xd8\x28\x65\x50\xf3\x2f\x3c\x29\x19\x0d\x93\x5b\x57\xc9\xb3\x74\x26\x5b\x3e\x59\xc2\xaf\x58\xc5\xfc\x1b\xd3\x22\x7f\x51\x1d\xb1\x5e\x6c\x3c\xa9\x06\xf0\x10\x64\xb2\x41\x52\xcc\x0e\x86\x07\xf8\x4b\x23\xa6\x2e\x4c\xe5\x25\x85\x0a\x6a\x25\xef\x18\x1a\xd4\x4a\xcb\x13\x8c\xda\xeb\xf3\x71\x82\x9f\x2a\xc2\xa9\x35\x03\xa8\x7c\xef\xcb\xa9\x33\x57\xd5\x32\x26\x7b\xe3\xad\xb5\x72\x09\x5c\xa4\xf0\xea\xe3\x1d\xf5\xd5\x39\x65\xc4\x04\x12\xee\xf0\xa0\xb2\x9d\xf9\xa2\x23\x4a\x1f\xbb\x59\x19\x85\x3a\xe7\xe7\xe8\x83\x81\xc6\xc7\x6a\x37\x77\x71\xb5\x12\x25\x4d\xc9\x26\x23\x95\x38\x98\x69\xa1\x7d\x64\x26\xbf\x40\x03\xca\xe3\xa7\x77\x8e\x9e\x7d\x4e\x2a\x5a\x15\x97\xbc\x21\xef\xa6\x76\x65\x4a\x0e\x9d\xb2\xf1\x16\xf4\xdf\xff\x6d\xbf\x38\x4b\x05\xa3\xfe\xeb\xe5\xf7\x76\x82\x57\xb3\xb1\xa4\xff\xb4\xc4\x2e\x86\xd2\x58\x23\x32\xf2\x6c\x2c\x8d\xfe\x7e\x14\xf4\x36\x54\xfa\xc6\xdc\x05\x70\x78\x03\xde\xf9\x6b\xd6\x92\x4f\x01\xde\x8a\x27\x5f\xcc\xf3\x21\xd3\x6a\x25\x13\x21\xd8\x91\xfe\x05\x12\xbd\xb1\x35\x83\x4e\xc4\x88\x53\x10\xcd\xae\xca\xa7\xfc\xfb\xfd\x3e\x70\x99\xd1\x58\xf1\x65\xbc\x63\xe3\x54\x39\x41\xe0\x01\xf5\x52\x70\x54\xc9\xc0\xd0\x76\x20\x6c\x11\xf6\x45\x83\x52\x66\x60\x6e\x3e\x43\x5e\x97\x26\x5f\xdc\x28\x5f\xb2\x6c\x17\xf3\x02\x2e\x5a\x33\xde\x9f\x07\xe2\x63\xa9\xce\xc2\x8e\xb8\x8a\xb7\xe9\xa4\xb7\x9a\x0e\xe1\x0d\xac\x13\xb8\x48\xc4\x94\xcf\x4b\x9d\x61\x31\xc5\x5b\xe0\x6e\xa8\xbb\x3d\xe2\x1c\xa5\xc6\x81\xfa\x78\xd7\xea\x29\x7e\xd2\x24\x2b\x62\x5e\xbe\x42\xd5\x52\x13\x14\x33\x8f\x68\x38\x7f\xb2\xee\x05\x69\x67\xb9\x83\x79\xaa\x34\xd5\x1d\xf6\x19\x0f\xf2\x1c\x7d\xff\xd9\x2c\xc4\xdf\xdd\xbf\x4f\xe6\x7e\x1d\xe6\x55\x1c\xdd\x12\xd2\x23\x3d\xcc\x6d\x54\x2c\x00\xe9\x35\x18\x8d\x77\x67\xcf\xad\x5a\x08\xa3\xd4\x5a\xd1\xf3\x57\x86\x9c\xf4\x1f\x1f\xba\xdc\x49\x7e\xfd\xba\x20\xaa\x72\x17\xa4\xd5\x33\x9e\xa3\xcf\x46\x31\x38\x47\x76\x3f\x28\x50\xe6\x7d\x7e\x31\x18\x54\xbc\xd4\xeb\x1e\x14\x40\x28\x3d\x2d\xb7\xa1\xdc\xb4\xab\x82\x98\xd8\xe8\xb1\xc8\xfe\x87\x3a\xf8\xf7\xa4\x0e\x06\x7d\x30\x13\xb2\xb9\xcd\xde\x41\x86\x12\x61\x21\xdb\x33\x4f\xfe\xa3\xac\x25\xa4\x35\x85\xe5\x9c\xc3\x20\x7e\xdc\xaa\xb0\xcf\x83\xe1\x6b\x92\xe0\x1e\xe0\x4d\x41\x93\x06\x7a\x5c\xb8\x2a\x46\xc9\x73\x74\xe5\x1e\x94\x0e\xc2\xde\x3b\x45\x92\xdc\xbf\xcc\xbf\x61\x4a\x7a\xea\x61\x43\x35\x74\x67\xf6\x56\x72\xd7\xd8\x5a\x99\x2d\x25\x5b\x8c\x1c\x10\x0f\xf6\x39\x3c\x68\x4b\xc5\x4e\x5a\x22\xb5\xee\x91\xf9\x2a\xcc\x22\x2a\x5e\x9f\x6b\x53\x60\x01\xb8\x1e\x51\x56\x3f\x46\x58\xac\xa8\x12\x9a\x37\x9a\x22\x13\xf6\x61\x1e\x97\x84\x06\xaf\x70\x44\x45\x53\xa1\xbe\xa6\xaa\x3d\x34\x66\x67\xb1\xa9\x54\xf6\xdd\x46\xa5\xa5\x30\xe9\xd6\x25\xf2\x69\x80\x6a\xd6\x6f\x30\x44\xc3\xb1\x48\xaa\xd3\x4d\xbc\xfb\xe0\xb9\x33\x70\xab\x8c\x08\x8d\x33\xa3\xea\xd7\x13\xf1\xf1\xe3\xce\xef\x7a\x50\xff\xaf\xeb\xf9\x1e\xe3\x4d\xf5\xef\x8f\x7a\xce\xc7\x73\x17\xfe\x2a\x6e\x73\xf7\xd7\x18\x7a\x04\x9d\x04\x5d\x78\xc1\x3d\x85\x4f\xee\xf5\x07\xd7\x36\xb9\xeb\x5c\x3e\x09\x81\x6c\x86\x91\x7d\x88\x83\x91\x60\x62\x3a\x5a\xf4\x3a\x46\xe9\xb1\xe4\x9d\xd3\x97\x35\x1a\x03\x6c\x9d\xee\xf2\xa1\xd8\xc0\x47\xdd\x26\x7f\x60\xcc\xce\x1f\x1e\x74\x8c\x86\x34\xaf\x3c\x98\xe2\xb4\xe6\xae\x29\x3c\x53\x8e\xf6\xc4\x5e\x73\xe3\x68\x8b\x59\xdb\x11\x78\x5c\x2b\x19\x32\xaa\x31\x39\x7b\xf9\x3c\x8c\x59\xc9\xad\xb2\x3b\xbf\x29\xd6\x7b\xe3\x1c\x7d\xa0\x52\x91\xd6\xab\x65\x95\xeb\xc3\xb8\x6d\x73\x73\x15\xd8\x95\x57\xa6\xce\x2b\x0a\xd6\x22\xa5\xac\x5a\x90\xbf\xf8\xaa\xdc\xc0\x9b\x4f\xa6\xd0\x97\x8a\x9e\x84\x85\x12\xc4\x90\x1f\x99\x54\xfe\x0c\x5e\x74\xcd\x04\x29\x6b\xba\x41\xda\x47\x8e\x7d\xa5\xcb\xc2\xf9\xad\xed\xd5\x91\x28\x8b\x29\x0a\xc4\xfb\xf4\xc2\xd9\xcc\xe6\xbf\xda\x1c\x52\x5b\xf6\x69\x5e\x66\x8a\xe2\xd1\x62\x4b\xf1\xf3\xe4\xf5\x1c\x2a\x78\x9c\xd5\xf4\xf7\xbd\x46\xa3\x3e\x15\x7b\x1c\xe6\x37\x53\x90\x78\x3a\x74\x81\x3e\x7c\x2c\x5a\x47\x97\x4f\x8b\x49\xeb\x79\x8d\x7e\xec\x25\x24\xd9\xb7\xb3\xe8\xee\xe4\x29\x37\xca\xc6\x61\x83\x2e\xc2\xe0\x99\x6d\x9f\x2a\x50\x51\x7e\x57\xe5\x7d\x7c\xf7\xa9\xbc\x93\x5f\xc9\xe8\x2f\xb9\xda\x29\xc8\xfa\x37\x27\x8b\x6c\xde\x46\xcc\x4a\xff\x72\x72\xa2\xfa\x4c\xff\x38\x1e\x7c\x49\x7c\xd6\x26\x53\x15\x07\x16\x79\x87\x12\x03\xac\xc2\xde\x92\xdf\xff\x9d\x74\x7d\x14\x89\x4c\x9c\x15\x8a\xeb\xee\x95\x2b\x30\x7c\x6d\x35\x2f\xb6\x56\xc6\x1b\xb9\xc3\x7d\x6a\x94\x4e\x3b\x94\x4e\x60\xba\xc6\x00\x19\x73\x14\x56\x7c\x32\x39\x39\xfb\x52\xaf\xc1\x9a\x5d\xba\xd8\xf0\x7f\x90\x43\x3a\x5f\x2d\x67\x33\xef\x6c\xcc\xdb\xd9\x2d\x31\x0a\xdc\x75\x24\x0d\x3e\xdb\x55\x56\x44\xe7\x7d\x76\x37\x61\x2c\xa5\xba\xb2\xdc\x0f\xc9\x2c\x1f\xcf\x8a\xe5\x8f\x56\x5a\x3c\x36\x50\xbe\x95\xd7\x8b\xda\xd2\x2b\xdc\x6e\x2a\x21\xfc\xc8\xa4\xf0\xef\xd7\x1f\xcf\x1c\x5b\xad\x08\xc8\x72\xba\x51\x17\x68\x25\xa4\xf0\x25\x78\x6e\x63\x0b\x47\x50\x1d\x84\xf3\x83\x91\xbd\xbe\xba\xaf\x8d\xef\xe0\x61\xf3\xb7\xc8\x7c\x4a\xa3\x7b\x7b\x2f\x9c\xcb\xa4\x5a\xe8\xfc\xf0\xac\x25\x9f\x9c\x0b\xed\x84\x23\x85\xab\x2b\xd0\x69\xc6\xd7\x35\xdd\x27\xb2\x37\x6d\xb9\x83\xb8\x32\x8f\xb6\xe7\x3f\x65\xc6\xed\xa9\x53\x1b\xe8\xce\xb0\x3a\x4f\x16\x9f\x07\x6a\x51\xac\xa9\x4f\x87\xa1\x2c\x18\x83\x9f\xca\xd4\x5e\xb0\x25\xb8\x0f\x24\x2f\xc3\x1d\x3d\x70\x98\xa6\x29\xb8\xca\xd8\xf9\xe3\xfb\xd7\x2a\x79\x29\x9b\x7c\x22\xcd\xa0\xc2\x35\xc7\x32\x1a\xeb\x3d\x77\xe6\x5d\xff\xaa\xb3\xec\xcb\xe3\x5b\x19\x42\x65\x96\x6e\x62\x22\x38\xa8\x03\x03\x39\x81\x90\x4f\xf2\x36\x24\xeb\xf4\xc9\x01\x96\x32\xcb\x7a\x50\x15\x24\xf3\x79\x37\xca\x97\x28\x4a\x12\x21\x82\xc6\x74\x56\x71\xa5\x74\x49\x2a\xda\x88\x21\x56\xe2\xe8\x69\xe4\x9d\x0e\x5e\xcb\xa3\x75\x94\x5f\xb6\x3c\xdd\xc2\xc8\x18\x42\x78\x71\x0f\x54\x4a\x5c\x96\xe0\xaf\x18\x0e\xa9\x01\xd6\x39\xeb\x2b\x90\x53\x82\xcb\x49\x7c\x30\x23\x23\x53\x6a\x0f\xfc\x39\x02\x1f\x5c\x26\x47\x91\xb3\x7d\xfd\x3a\x7a\x14\xa1\x48\xf8\x99\x42\xf6\x13\x43\x95\x13\x45\x5d\x3d\x42\xdf\x92\xc3\x54\xd1\xdc\x32\x7c\x75\x74\xaf\x0e\x63\xf5\xf6\xec\xd6\x8d\x24\xb9\xb1\x87\x7f\x63\x4a\x53\xc2\x01\xdf\x3c\xac\x32\xf0\xe3\xa3\x69\x65\x69\xc9\x0a\xa3\xcd\x50\xf3\x63\x14\xfc\x3c\xa1\xb5\xe3\xcd\xae\xd7\x68\x15\xca\xcc\x5c\xbb\x1f\x95\x46\xaf\x65\x5d\x16\x8d\xcd\x7c\x36\xa1\x32\xc7\x47\x97\x9d\xf3\x58\x40\x31\x69\x74\xe9\xde\x74\x72\xc1\x39\x97\x96\x60\xab\x13\x06\xb1\x50\x3a\x1d\xa6\xca\x92\x3f\x22\x9a\x99\xc7\xaf\xc7\xab\x33\x4e\xb9\x76\x4c\x36\xe0\x89\x45\xe1\xca\x87\x1a\x8a\x05\x7b\xce\x6d\x1b\x40\x8c\x1b\xd8\x30\x61\xea\x24\x3e\x5e\x29\xe7\x02\xbb\x38\x1a\xea\xaf\x0c\x95\x7a\xd1\x92\xea\x94\x4a\x0c\xa7\xd6\x2c\x7c\xcc\xb6\x1f\x2a\xb1\xea\x6f\x7c\x68\x7d\x63\x34\x13\x00\x7d\x99\x98\x3e\xfb\x7b\x14\x81\x5f\x26\xcb\x2a\x99\x2b\x0f\x62\xf4\x5e\x8e\x79\x4b\xe2\xeb\x30\xff\x5f\x24\xb1\x26\xe3\x16\x51\xfc\x3a\xe2\xb8\x47\xa4\x8d\xf3\x06\x25\xee\x9d\xd2\xd5\xf9\x7b\xad\xeb\x5a\x46\x1c\x81\x86\xc6\xa0\x89\xaa\x05\x48\x84\x1b\x35\xc0\x1d\x30\xeb\xc2\xfd\x57\xc4\xdd\xb5\xcf\x7c\x6c\xb8\x21\x6f\x73\x3e\xb7\xd6\xfd\xdd\x92\x60\xca\x41\xd6\xaf\x54\xe5\x1b\x09\x7e\x3b\xde\xb0\x9e\x85\x8a\x02\x15\x56\xaa\x29\x84\x5a\xcb\x28\xea\x5c\x37\x7e\x0a\xfa\x42\x71\xcd\x06\x19\xdb\x2d\x34\x35\x58\xdc\x67\x5c\x6e\xa1\xb1\x2a\xcc\x91\x44\xad\xcb\xb6\x2c\x35\x28\x69\x72\x65\x19\x17\x38\x94\x4d\xbb\x50\x36\x5e\x5b\x31\x44\x60\x63\x13\xdf\x11\x91\x26\x16\x0b\x78\x92\x87\xaf\xcd\x56\xc8\xc3\x44\xde\x23\xd2\x95\x4e\x92\x7c\x7e\x1c\xf4\xf2\xc2\x8d\x70\x6a\xf1\xd3\x92\xe1\x67\xab\x3c\x47\x6f\xe1\xb1\x40\x18\x14\xea\x18\xad\x08\xea\x6c\xa5\x3e\x86\xb8\x40\xe4\xcf\x03\xee\xc2\xa3\xe8\x08\xe6\xaf\x88\xb6\x6b\xa6\x66\x6e\x75\xcf\xc3\xa2\xe7\xe8\xa5\x27\xc0\x58\xad\x5d\x76\x84\x6d\xd4\xf6\x2b\x6e\xe4\x9d\x3b\x45\x9f\x28\x02\xa7\x49\x25\xe2\x03\xa4\x25\xad\xf8\xc0\xda\xbc\x68\xce\x7d\xc1\x3b\x1c\x69\xf8\x2d\x8c\x89\x17\x99\xb2\x97\x78\x77\x49\x17\xf3\x2c\x20\xcd\x8f\xb0\x5a\x96\xf5\xbd\x63\x02\x18\xf5\x5c\x4a\xea\x9e\xe4\x83\x68\x3a\xdf\xb9\x61\x76\xf8\x10\x4a\xe8\xa9\xda\xab\xd0\xd1\x98\x4e\x38\xbb\x87\x36\x69\x08\x56\xaf\x31\xed\x2a\x35\x44\x16\xe8\x0d\x18\xf3\x94\x33\xb8\x1e\x02\x35\xeb\x18\xf9\xe4\xf8\x06\xaf\xbc\x65\xe3\x3e\x35\x8f\x60\x2c\xdc\x2f\x1e\xa6\x04\x69\x20\x7f\x80\x59\x3f\x4e\xbc\xc7\x52\x8d\x35\xda\xe2\xc6\x2f\x2f\x4e\xa9\x6e\x3c\x51\x80\x02\xd6\x7b\xbc\x7c\x4b\xbc\xd2\xea\x58\xc7\x9e\x6d\x81\xbd\x58\xe4\x33\xff\xff\x27\xf4\xcf\x63\x9e\x43\x54\x7b\xf7\xe8\x27\xdc\x91\x6b\x65\xd3\xea\x50\x2e\xeb\x91\xd6\xec\x9f\x83\xbb\x06\x8c\x30\x2b\xd0\x5d\xa7\xac\x22\x54\x24\xc6\xd6\xb6\x4e\x99\x15\x2f\xce\xc5\x43\x47\x1f\x18\x9d\x36\xfc\xbe\x5e\xaa\xab\x15\x17\xcf\x8e\x19\x07\x47\xa4\x49\xd5\x6d\xc6\x42\x62\xf6\x1f\xed\xd3\xa6\x01\x2a\x70\x41\xdb\x4b\x66\x78\x02\x0a\xb8\x51\x32\x12\x28\x0b\xfe\x19\x24\x28\xc1\x6f\xde\x9f\x51\xdc\x39\xcb\x72\x9f\xda\xb4\x07\xf6\x78\xfe\xea\xaf\xc2\x94\x8a\x33\x6c\xd6\x94\xb5\xa9\x09\x41\xdb\xaa\x09\xf1\x0f\xdb\xe0\x2f\x62\x1b\xd4\x12\x84\x4b\xbf\x40\xe4\x16\x70\x66\xa0\x79\x68\xa7\xab\x75\x89\xae\xfc\x74\x9d\x7d\x99\x27\x6b\x0f\x0e\x1a\x8d\x28\x6d\xf5\xe5\x31\x5f\x88\x9d\x77\x29\x09\xb9\xcc\x31\xcc\x0e\x3b\x2e\xc8\xf8\xe3\x3e\xdf\xc3\xf3\xba\x95\x9c\x15\x93\x62\x15\xc7\x12\xbc\xc3\xce\x3c\x84\x6b\x2a\xd1\x6d\x88\x73\xd1\xb6\x96\xdf\xd5\xf6\x31\xfe\x0a\xc6\x03\x13\xaf\x7f\x15\x74\x9a\x2c\xf6\x97\x24\xda\xe8\xa5\x97\xc7\xf8\x3e\x8a\x61\xdb\x9c\x76\x5d\x55\xbb\x2a\xf9\x8e\x5d\x0a\x3c\x3b\xa1\xb2\xcb\xf8\x0d\xc0\xe3\xe0\x9c\x70\xa3\x8c\x80\x33\x76\xa3\x50\x59\xba\xe2\x1e\x55\xf3\x32\x02\x51\xfe\x4a\xcf\xaf\x6c\xbf\x50\x26\x39\x25\xb8\xc9\x1d\x7f\x55\xb1\x50\x2d\x9e\xe8\x9e\xea\x98\x72\x57\xe4\xb7\x48\x1d\x83\x6f\xab\x9c\xfd\xc4\x94\xaa\xaf\x5d\xdd\xd0\x3e\x2f\xf5\x55\x6a\x1b\x9e\xa6\x0d\x97\xc5\x0c\xe3\x7f\x3d\x50\x68\x71\xe6\xea\x5f\x55\x05\x80\xa9\xd7\x91\x33\xd5\x04\x1f\x34\x82\x7c\xbe\xaf\xff\x6e\xe3\xc9\x17\xba\x41\xe5\x20\xec\x25\x0e\x5b\x5a\x4c\x48\x74\xcb\xa0\x3a\x27\x56\xc5\x01\x98\xdb\xde\xc9\x18\x10\xb1\x0a\xc4\x73\xed\xef\x08\xb7\xb3\x89\x52\x55\xc3\x40\xdb\x89\x3b\xba\x26\x5d\xb7\x72\x5d\x07\x9e\x21\x31\xf7\xbb\xd9\x26\xb9\x5d\x67\xee\x2d\x34\xdd\xc1\x8a\x2e\xba\x72\xef\x9b\xd6\xee\xca\x84\xbb\x09\x61\x84\xd9\xfc\x1c\x7d\x1f\x0d\x18\xa0\xed\x2b\x23\xd9\x34\xe2\xb8\x4f\xbc\xf4\xf2\x9c\x60\xb3\xa1\xb9\xfe\x0b\x6f\xc8\x3b\xac\xb6\xe8\x02\xbd\x90\xe6\x9f\x2f\x32\x5e\x34\xd6\x3b\x94\x62\xd5\x9d\xcd\x7e\xab\x7d\xef\x9f\xdc\x3f\xf9\xff\x01\x00\x00\xff\xff\xdc\xb1\x0c\xfb\x5d\xaf\x00\x00" func nftstorefrontv2CdcBytes() ([]byte, error) { return bindataRead( @@ -113,7 +113,7 @@ func nftstorefrontv2Cdc() (*asset, error) { } info := bindataFileInfo{name: "NFTStorefrontV2.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0x82, 0xa6, 0x74, 0x9c, 0xb3, 0x9b, 0x9f, 0xd5, 0xd3, 0xd1, 0x33, 0x70, 0x13, 0xb0, 0xdc, 0x71, 0x50, 0xab, 0xd3, 0x93, 0x41, 0x69, 0xb5, 0x5d, 0xc3, 0xe6, 0x1a, 0x64, 0x17, 0x69, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9, 0x81, 0xf8, 0xbb, 0x70, 0x8b, 0xbe, 0x93, 0x4b, 0xb9, 0x8f, 0x9e, 0x3, 0xf3, 0x12, 0xeb, 0xd1, 0xd3, 0x95, 0x21, 0x7d, 0x22, 0xa5, 0x27, 0xa3, 0x4f, 0x38, 0x9f, 0x75, 0x8a, 0x67, 0x79}} return a, nil } @@ -217,7 +217,7 @@ func utilityTestMaliciousstorefrontv1Cdc() (*asset, error) { return a, nil } -var _utilityTestMaliciousstorefrontv2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x59\x5f\x6f\xdb\x38\x12\x7f\xf7\xa7\x98\xfa\xa1\xb0\x01\xc7\x06\x0e\x87\x7b\x30\xe2\xb4\xdd\x64\x73\x08\xee\x36\x08\xba\xde\xde\x43\x51\x2c\x18\x6a\x64\x11\xa1\x48\x81\xa4\xec\x1a\x81\xbf\xfb\x81\x14\x25\x51\x7f\xe3\x6c\xef\x9a\x3c\x24\x12\xc9\xf9\x3f\x9c\xf9\x8d\xc2\xd2\x4c\x2a\x03\xd3\xfb\xdb\xed\xef\x46\x2a\x8c\x95\x14\xe6\xcb\xdf\xa6\x93\x6a\x43\x8a\xdb\x5c\xec\xd8\x23\xc7\xad\x7c\x42\x51\xef\x9c\xb3\xfc\x1b\x1a\x12\x11\x43\xbe\x30\x3c\xe8\xe9\x64\xb2\x5a\xad\x60\x9b\x10\xf1\xa4\xc1\x48\xf8\x94\x6b\xc3\x04\xfc\x8b\x33\x81\x70\x01\x89\x31\x99\x5e\xaf\x56\xe6\xc0\x8c\x41\xb5\xa4\x32\x5d\x11\x77\xe4\xcf\x98\xcb\x83\x39\x3a\xf2\x58\x2a\x88\x98\xa6\x72\x8f\x8a\x89\x1d\x10\x11\x81\x42\x2b\xdb\xbe\x99\x04\x61\x9f\x73\x81\x8a\x3c\x32\xce\xcc\x11\x4c\x42\x0c\x98\x84\x69\xa0\x52\x18\x45\xa8\x01\x83\xda\x68\xcb\xcc\xeb\xc3\x34\x30\x0d\xc4\xad\x07\xa7\x2c\x21\x4b\x33\x8e\x29\x0a\x63\xf7\x53\xc2\x19\x65\x32\xd7\xa0\x2b\x5f\x39\x16\x46\x82\x51\x47\x20\x02\x34\x72\x6e\xff\xde\xdf\x6e\xe1\xc0\x4c\x02\x04\x22\x16\xc7\xa8\x50\x18\xb8\xbb\x01\x26\x9c\x8a\x19\x27\x14\x1d\xa9\x8c\x1b\x47\x38\xb3\xf6\xee\x02\xe5\x50\x61\xa0\x1d\x73\xac\xc3\x50\xfd\x69\xd7\x97\x34\xa2\xde\x52\x6b\x9b\xb7\x97\x68\x9c\x4c\x08\xa5\xa8\xf5\x8c\x70\x3e\xaf\x6d\xfb\xad\xb4\x24\xe4\x04\xcf\x13\x00\x80\x90\x80\xa3\x81\xfa\x88\x7d\x22\x3b\x7c\x20\x26\x59\x43\xf0\xf2\x02\xd9\x43\xfe\xc8\x19\x2d\xa8\xea\xe7\x49\x87\x4a\xa1\x96\xb9\xa2\x18\x90\xae\xdb\xd6\x2e\xdb\x6c\xbd\xd2\x01\x2f\x8d\x3c\x2e\x54\xa8\xa3\x74\x4d\xb2\x35\x5c\x93\xcc\x27\xc5\x25\xc9\x4d\x32\x6b\xb3\xbe\x56\x48\x0c\xfe\xbb\x88\xc0\xa2\x23\xf9\x33\xa6\x72\x5f\x6e\xcf\xe1\xfd\xb0\x66\x57\xc3\x2a\xf9\xf8\xea\x35\x7c\x7c\xfe\xe3\x4e\x98\x7f\xfc\x7d\x0d\x9e\xe5\x69\x32\x69\xd3\x39\xb7\xec\x19\x1e\x20\xce\x05\xec\xd0\xf8\xa3\x77\x37\x7a\x36\x5f\xc3\xd7\x82\xc3\xb7\xc0\x07\xf6\x47\xa1\xc9\x95\x4b\xc5\x78\xd9\x70\xc1\xf2\x51\x2a\x25\x0f\xb3\xf9\xbb\x65\x8b\x57\x45\x7f\xea\xd7\xc1\x8b\xbf\xc9\x33\xce\x68\xed\x24\x4b\x2b\x62\xb3\x3d\x66\xb8\x06\xfb\x7b\x01\x22\x36\x77\x37\x6b\x28\x34\x5b\x94\xf6\xd6\x4b\x3f\xac\xf6\xa8\x0e\xfe\xa1\x52\xc3\xfd\x69\x68\x51\x3d\xbe\x68\x73\xe5\xf7\x42\xbc\x17\x37\xf3\x0c\x3e\xfb\x64\x6d\x58\xf6\xfe\xb9\x9d\x14\x9e\xaa\xc8\xd5\xd3\x87\x7e\x93\xdf\x3b\x9b\xcb\xd4\xf8\xda\x91\xf0\xed\x9c\xf0\x50\x8e\x44\xe4\xd9\xaf\xdf\x33\xa6\x30\xf2\x72\xf5\x2c\x56\x32\xbd\x13\x11\x7e\xaf\x63\x62\x64\x63\x61\xfe\x17\xe2\xf0\xb2\xb0\xea\x31\x90\xe7\x1f\xc6\x3c\x5f\x56\xa8\x86\x4d\x23\x3e\xef\xd5\xfd\xec\xc8\xee\xd0\xfc\xfa\xbd\xe0\x7d\x66\x46\xff\x70\xfa\x8e\xc9\xeb\xcd\xde\xb3\xee\xa6\x77\xd4\x43\xae\x68\x42\x74\x10\x91\x57\x7a\xee\xac\xa8\x9f\x25\xa5\xb3\xf4\x1a\x3b\xfe\x99\x48\x6d\xfe\xaf\x36\xbc\x28\xe1\x55\xfa\x8f\x76\x12\x6f\x59\xb8\x34\x6b\xa8\x2d\x62\xf3\xa0\xe4\x9e\x45\xa8\xea\x16\xd5\xd3\xae\x5a\x48\x6c\xf9\x1f\x66\x92\x48\x91\xc3\xdc\xd6\x9d\xf6\xe6\xb5\xe4\x1c\xa9\x61\x52\x9c\xae\x16\x6d\x71\x41\x7a\xb7\xb7\x82\xe2\xdd\xd8\xaa\xb0\xcf\x7d\x6c\xee\xa2\xfe\x33\x9a\x70\x7c\x20\x47\x0b\x97\xbe\x90\x9c\x0f\x8a\xb1\xe7\xae\x73\xa3\xd7\xf0\xb5\xd3\x44\x8b\xad\x6f\x6d\xe1\xea\x09\x8d\x03\x4d\x3a\x74\xd1\xd7\xc0\x47\xef\x9f\x9b\x0e\xf8\x8c\x14\xd9\x1e\xd5\xe9\xea\xdb\x87\x26\x37\x9a\x6b\x23\x53\x6b\xe8\xef\xc6\x42\xc8\xf6\xb6\x4c\x53\xa6\x35\x93\xe2\x53\x2a\x73\x8b\x41\xfe\xb8\x65\xdf\xdb\xb6\xa2\x2d\x7d\xc7\xd2\x0f\xd5\xd6\xbc\x5c\x69\xa5\x66\x13\x8e\xc0\x66\x34\x49\x3b\x94\x65\xd3\x8a\x2c\x61\x45\xb3\x1c\xc9\xa9\x91\xbc\xea\x5d\x5e\xf4\x51\x37\xab\x52\xdf\x89\xba\xc7\x76\x76\xfb\x93\xa1\x6f\xb5\x9f\xb6\x48\x90\xf2\xa9\x7b\x66\x28\x27\xfa\xd7\xbb\xf4\x75\x16\x94\x4f\x3d\x67\x3a\xa9\xd0\x5e\xe9\xd2\x94\x89\x51\xfc\x6d\x6c\xcf\x27\x9d\xc8\x56\xd7\xca\x87\x18\x2e\x2f\x7c\xa9\x80\xc1\xb8\xb6\x60\x6d\x37\x93\xba\x4a\x0d\x17\xb8\xbb\xa8\x3f\xb0\xd1\xba\x75\xe5\xbb\xc7\x32\x9f\x45\x03\x29\x35\x66\x7a\x84\xda\x28\x79\x84\x06\xf0\x59\x32\xa1\x51\x99\xd9\x13\x1e\x43\xf5\xe0\xf2\xa2\xed\xa5\x16\x37\x5f\xf7\x2b\x92\xbe\x4a\xcd\x04\x33\xb3\x37\x1b\x08\xda\x9d\xaa\x1b\xb3\xc6\xcd\xbe\x26\x59\xf7\x78\xe9\x26\x9b\x22\xcf\xa7\xc0\xc6\xc0\xd2\xde\x71\xca\x6b\xd8\x9d\xa5\x1a\xe0\xf4\xaf\x0d\x52\xa3\x53\x50\xc5\xd0\x8e\xc8\x6e\xca\x8e\x20\xcd\x69\x02\x29\x31\x34\x71\x83\x30\x8b\xec\x04\x6c\x9f\xca\x0b\xf0\x88\xf6\x37\x4b\x33\x54\x5a\x0a\x62\x30\x7a\x71\x9a\xea\x22\x83\x1e\xd1\xba\x25\x4f\xc4\x06\x0e\x08\x44\xa1\xcf\x1f\x27\x56\x68\x83\xa4\x3a\x23\x05\x16\x53\x35\x81\x5c\xa3\xb2\x9c\xc4\x93\xe3\x55\x68\x99\x95\x48\x68\x39\xac\xa3\x08\xfb\xe5\x08\xde\xb5\x67\xeb\x1b\xf5\x63\xcd\xbf\xbc\x8c\x0b\x18\xc1\x05\x7e\x26\xb9\x1a\x46\x63\x45\x43\xba\xbf\xdd\xce\x8a\xd9\xa6\xcd\xeb\xfe\x76\x3b\x34\xd2\x8c\x62\xb0\x17\x07\xaa\x30\xdf\x03\x04\x56\x52\x3a\x8d\x5e\x03\xf2\x6f\xd0\x10\xc6\xdd\xcc\x3c\x70\x07\xfc\x89\x9f\x6a\x4c\xa8\xd8\x6b\xac\xf9\xc4\xb9\x3c\x60\x74\x5d\xb5\xa2\x12\xea\x14\x1f\x05\xce\xc4\x44\x3f\xdb\xd4\x31\xad\xcf\xb6\x3e\x21\xda\x8b\xff\x05\xa9\x4c\xd1\xc1\x78\x8c\xac\xdd\xbf\x48\xc9\x7f\xaa\x4d\x83\xba\xf4\x59\xb3\x5a\x55\xc5\x02\x0e\x8c\xf3\x52\x37\x5b\x65\xa6\x07\x25\xc5\x6e\x6a\x2b\xc5\xe0\x55\x2c\x89\x9b\x68\x20\x2b\x90\xd4\x1a\x3e\xb6\x02\xed\xb0\xd5\x69\x01\x03\xc0\xf6\x33\x52\x96\x31\x47\x79\x56\xb6\x04\x08\x79\x6e\x85\xf5\x56\x82\x1e\xc4\x1b\xf9\x5b\xe5\xe1\x6e\x6f\xc2\x3b\x6b\xb5\x6b\xfc\xde\x9c\xe5\x23\xe1\x44\x50\x84\xcd\xa6\xe4\xb0\x74\xb8\x51\x31\x8a\x0b\x48\x51\x6b\xb2\xc3\x35\x4c\x99\xa0\x52\x29\xa4\xa6\x74\x04\x10\x07\xca\xa6\xa3\xdc\x77\xe8\x50\xe7\x6c\xde\xe1\xdf\xc6\xa5\xa3\xa2\x8c\x35\x1c\xcc\x31\xc3\x69\x0f\xae\x8b\x0b\x36\x37\xc4\x10\xd8\x94\x34\x4b\xdb\x92\xf9\x1e\xbf\x30\x3c\xcc\xac\x84\xcb\xe1\x8f\xe5\xcb\xdb\x6d\xc5\xe1\x6a\x36\x9f\xbf\x03\xa2\xdf\xc1\x79\xe7\x1b\xda\xb0\xd8\x29\xb4\xb7\x9b\xb0\xe9\xff\xf2\xbb\x24\x94\x5a\xc7\xb9\x5b\x42\x76\xe8\x6f\x45\x27\x23\x8a\xb4\xba\x72\xdf\x79\xd6\xa1\x8d\x25\xe1\x03\x31\x49\x1b\xeb\xd8\x1f\x27\x7d\x19\x61\x26\x35\x33\x9e\xfc\xf2\xa2\xf4\x4b\x33\x5c\x27\x40\xae\xb1\x87\xc9\x79\xaa\x6b\xb2\xc7\xd9\xe5\x85\x67\xbd\x00\x23\x87\x35\x6d\xca\xed\x46\xd1\x62\x84\xcb\x8b\x22\x79\xcb\xde\x1c\xd4\x8e\x83\xef\xc1\xb3\xf2\xa1\xaa\x17\xae\xe9\xcf\xfb\x8a\xd1\xe5\x45\xe3\x9e\xb7\x11\x6a\x13\xf6\xbd\x15\x5c\x6d\x62\xfd\x41\x94\xd5\xfd\x78\x30\xf0\x61\xe0\x6d\x70\x4d\x29\xbd\x9d\x90\x99\xea\xcb\xae\x2a\xbe\x34\x41\xfa\x64\x3b\xca\x94\x89\x3d\xe1\x2c\xaa\xb6\x80\x56\xda\x4f\xc7\xa7\xb2\x1e\x26\xc1\xf4\x4f\x49\x36\x7d\x29\xf5\x4a\x38\xdc\x1a\x0b\x5e\xd3\xb9\xba\x4d\x0b\x3e\x7c\x80\x8c\x08\x46\x67\xd3\x98\x30\x8e\x11\x18\xe9\x51\x9e\x05\x16\x0d\xd4\x5d\x92\xb7\x8a\x69\xb3\xac\xfb\x33\xcd\xca\xfe\xbf\x9a\x74\x6a\xc5\x6b\x49\xf5\x5a\x97\xcc\x25\x20\x6c\x8a\x44\xec\x6e\x57\x51\xdc\x54\x01\x9d\xf4\xf6\x89\xee\x45\xaf\x61\x67\x70\xbb\xe1\xdd\x06\x04\xe3\x61\x97\xa0\x32\xe7\x11\x08\x69\x4a\xa7\xba\x6f\x23\xfd\xed\xa8\xec\x3c\xee\x88\xe5\x55\xb3\x0e\x59\xa6\xb9\x36\x8e\x63\x00\x18\x34\x49\xdd\x24\x43\x8a\x99\x46\x2a\xb6\x63\x82\xf0\x9e\x88\x0d\x0e\x87\xf5\x27\xc9\xfa\xda\xbf\xe1\x78\xbc\x86\x8f\xf5\x6b\x70\x39\xeb\xa2\xe9\x3f\x8a\x0c\x6b\xdb\x78\x9d\x87\x76\xbb\xc2\x1a\x16\x01\xe7\xe9\xde\x7f\x6b\xc2\x06\x56\xbe\x41\xac\x5a\xfa\x56\xdd\x67\x88\x4d\xfd\xaf\x4d\xcb\x25\x73\x6f\x6d\x26\x5e\xad\xd3\x7f\x03\x00\x00\xff\xff\x85\xa3\x86\x87\x77\x1f\x00\x00" +var _utilityTestMaliciousstorefrontv2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x59\x5f\x6f\xdb\x38\x12\x7f\xf7\xa7\x98\xfa\xa1\xb0\x01\xc7\x06\x0e\x87\x7b\x30\xe2\xb4\xdd\x64\x73\x08\xee\x36\x08\xba\xde\xde\x43\x51\x2c\x18\x6a\x64\x11\xa1\x48\x81\xa4\xec\x1a\x81\xbf\xfb\x81\x14\x25\x51\x7f\xe3\x6c\xef\x9a\x3c\x24\x12\xc9\xf9\x3f\x9c\xf9\x8d\xc2\xd2\x4c\x2a\x03\xd3\xfb\xdb\xed\xef\x46\x2a\x8c\x95\x14\xe6\xcb\xdf\xa6\x93\x6a\x43\x8a\xdb\x5c\xec\xd8\x23\xc7\xad\x7c\x42\x51\xef\x9c\xb3\xfc\x1b\x1a\x12\x11\x43\xbe\x30\x3c\xe8\xe9\x64\xb2\x5a\xad\x60\x9b\x10\xf1\xa4\xc1\x48\xf8\x94\x6b\xc3\x04\xfc\x8b\x33\x81\x70\x01\x89\x31\x99\x5e\xaf\x56\xe6\xc0\x8c\x41\xb5\xa4\x32\x5d\x11\x77\xe4\xcf\x98\xcb\x83\x39\x3a\xf2\x58\x2a\x88\x98\xa6\x72\x8f\x8a\x89\x1d\x10\x11\x81\x42\x2b\xdb\xbe\x99\x04\x61\x9f\x73\x81\x8a\x3c\x32\xce\xcc\x11\x4c\x42\x0c\x98\x84\x69\xa0\x52\x18\x45\xa8\x01\x83\xda\x68\xcb\xcc\xeb\xc3\x34\x30\x0d\xc4\xad\x07\xa7\x2c\x21\x4b\x33\x8e\x29\x0a\x63\xf7\x53\xc2\x19\x65\x32\xd7\xa0\x2b\x5f\x39\x16\x46\x82\x51\x47\x20\x02\x34\x72\x6e\xff\xde\xdf\x6e\xe1\xc0\x4c\x02\x04\x22\x16\xc7\xa8\x50\x18\xb8\xbb\x01\x26\x9c\x8a\x19\x27\x14\x1d\xa9\x8c\x1b\x47\x38\xb3\xf6\xee\x02\xe5\x50\x61\xa0\x1d\x73\xac\xc3\x50\xfd\x69\xd7\x97\x34\xa2\xde\x52\x6b\x9b\xb7\x97\x68\x9c\x4c\x08\xa5\xa8\xf5\x8c\x70\x3e\xaf\x6d\xfb\xad\xb4\x24\xe4\x04\xcf\x13\x00\x80\x90\x80\xa3\x81\xfa\x88\x7d\x22\x3b\x7c\x20\x26\x59\x43\xf0\xf2\x02\xd9\x43\xfe\xc8\x19\x2d\xa8\xea\xe7\x49\x87\x4a\xa1\x96\xb9\xa2\x18\x90\xae\xdb\xd6\x2e\xdb\x6c\xbd\xd2\x01\x2f\x8d\x3c\x2e\x54\xa8\xa3\x74\x4d\xb2\x35\x5c\x93\xcc\x27\xc5\x25\xc9\x4d\x32\x6b\xb3\xbe\x56\x48\x0c\xfe\xbb\x88\xc0\xa2\x23\xf9\x33\xa6\x72\x5f\x6e\xcf\xe1\xfd\xb0\x66\x57\xc3\x2a\xf9\xf8\xea\x35\x7c\x7c\xfe\xe3\x4e\x98\x7f\xfc\x7d\x0d\x9e\xe5\x69\x32\x69\xd3\x39\xb7\xec\x19\x1e\x20\xce\x05\xec\xd0\xf8\xa3\x77\x37\x7a\x36\x5f\xc3\xd7\x82\xc3\xb7\xc0\x07\xf6\x47\xa1\xc9\x95\x4b\xc5\x78\xd9\x70\xc1\xf2\x51\x2a\x25\x0f\xb3\xf9\xbb\x65\x8b\x57\x45\x7f\xea\xd7\xc1\x8b\xbf\xc9\x33\xce\x68\xed\x24\x4b\x2b\x62\xb3\x3d\x66\xb8\x06\xfb\x7b\x01\x22\x36\x77\x37\x6b\x28\x34\x5b\x94\xf6\xd6\x4b\x3f\xac\xf6\xa8\x0e\xfe\xa1\x52\xc3\xfd\x69\x68\x51\x3d\xbe\x68\x73\xe5\xf7\x42\xbc\x17\x37\xf3\x0c\x3e\xfb\x64\x6d\x58\xf6\xfe\xb9\x9d\x14\x9e\xaa\xc8\xd5\xd3\x87\x7e\x93\xdf\x3b\x9b\xcb\xd4\xf8\xda\x91\xf0\xed\x9c\xf0\x50\x8e\x44\xe4\xd9\xaf\xdf\x33\xa6\x30\xf2\x72\xf5\x2c\x56\x32\xbd\x13\x11\x7e\xaf\x63\x62\x64\x63\x61\xfe\x17\xe2\xf0\xb2\xb0\xea\x31\x90\xe7\x1f\xc6\x3c\x5f\x56\xa8\x86\x4d\x23\x3e\xef\xd5\xfd\xec\xc8\xee\xd0\xfc\xfa\xbd\xe0\x7d\x66\x46\xff\x70\xfa\x8e\xc9\xeb\xcd\xde\xb3\xee\xa6\x77\xd4\x43\xae\x68\x42\x74\x10\x91\x57\x7a\xee\xac\xa8\x9f\x25\xa5\xb3\xf4\x1a\x3b\xfe\x99\x48\x6d\xfe\xaf\x36\xbc\x28\xe1\x55\xfa\x8f\x76\x12\x6f\x59\xb8\x34\x6b\xa8\x2d\x62\xf3\xa0\xe4\x9e\x45\xa8\xea\x16\xd5\xd3\xae\x5a\x48\x6c\xf9\x1f\x66\x92\x48\x91\xc3\xdc\xd6\x9d\xf6\xe6\xb5\xe4\x1c\xa9\x61\x52\x9c\xae\x16\x6d\x71\x41\x7a\xb7\xb7\x82\xe2\xdd\xd8\xaa\xb0\xcf\x7d\x6c\xee\xa2\xfe\x33\x9a\x70\x7c\x20\x47\x0b\x97\xbe\x90\x9c\x0f\x8a\xb1\xe7\xae\x73\xa3\xd7\xf0\xb5\xd3\x44\x8b\xad\x6f\x6d\xe1\xea\x09\x8d\x03\x4d\x3a\x74\xd1\xd7\xc0\x47\xef\x9f\x9b\x0e\xf8\x8c\x14\xd9\x1e\xd5\xe9\xea\xdb\x87\x26\x37\x9a\x6b\x23\x53\x6b\xe8\xef\xc6\x42\xc8\xf6\xb6\x4c\x53\xa6\x35\x93\xe2\x53\x2a\x73\x8b\x41\xfe\xb8\x65\xdf\xdb\xb6\xa2\x2d\x7d\xc7\xd2\x0f\xd5\xd6\xbc\x5c\x69\xa5\x66\x13\x8e\xc0\x66\x34\x49\x3b\x94\x65\xd3\x8a\x2c\x61\x45\xb3\x1c\xc9\xa9\x91\xbc\xea\x5d\x5e\xf4\x51\x37\xab\x52\xdf\x89\xba\xc7\x76\x76\xfb\x93\xa1\x6f\xb5\x9f\xb6\x48\x90\xf2\xa9\x7b\x66\x28\x27\xfa\xd7\xbb\xf4\x75\x16\x94\x4f\x3d\x67\x3a\xa9\xd0\x5e\xe9\xd2\x94\x89\x51\xfc\x6d\x6c\xcf\x27\x9d\xc8\x56\xd7\xca\x87\x18\x2e\x2f\x7c\xa9\x80\xc1\xb8\xb6\x60\x6d\x37\x93\xba\x4a\x0d\x17\xb8\xbb\xa8\x3f\xb0\xd1\xba\x75\xe5\xbb\xc7\x32\x9f\x45\x03\x29\x35\x66\x7a\x84\xda\x28\x79\x84\x06\xf0\x59\x32\xa1\x51\x99\xd9\x13\x1e\x43\xf5\xe0\xf2\xa2\xed\xa5\x16\x37\x5f\xf7\x2b\x92\xbe\x4a\xcd\x04\x33\xb3\x37\x1b\x08\xda\x9d\xaa\x1b\xb3\xc6\xcd\xbe\x26\x59\xf7\x78\xe9\x26\x9b\x22\xcf\xa7\xc0\xc6\xc0\xd2\xde\x71\xca\x6b\xd8\x9d\xa5\x1a\xe0\xf4\xaf\x0d\x52\xa3\x53\x50\xc5\xd0\x8e\xc8\x6e\xca\x8e\x20\xcd\x69\x02\x29\x31\x34\x71\x83\x30\x8b\xec\x04\x6c\x9f\xca\x0b\xf0\x88\xf6\x37\x4b\x33\x54\x5a\x0a\x62\x30\x7a\x71\x9a\xea\x22\x83\x1e\xd1\xba\x25\x4f\xc4\x06\x0e\x08\x44\xa1\xcf\x1f\x27\x56\x68\x83\xa4\x3a\x23\x05\x16\x53\x35\x81\x5c\xa3\xb2\x9c\xc4\x93\xe3\x55\x68\x99\x95\x48\x68\x39\xac\xa3\x08\xfb\xe5\x08\xde\xb5\x67\xeb\x1b\xf5\x63\xcd\xbf\xbc\x8c\x0b\x18\xc1\x05\x7e\x26\xb9\x1a\x46\x63\x45\x43\xba\xbf\xdd\xce\x8a\xd9\xa6\xcd\xeb\xfe\x76\x3b\x34\xd2\x8c\x62\xb0\x17\x07\xaa\x30\xdf\x03\x04\x56\x52\x3a\x8d\x5e\x03\xf2\x6f\xd0\x10\xc6\xdd\xcc\x3c\x70\x07\xfc\x89\x9f\x6a\x4c\xa8\xd8\x6b\xac\xf9\xc4\xb9\x3c\x60\x74\x5d\xb5\xa2\x12\xea\x14\x1f\x05\xce\xc4\x44\x3f\xdb\xd4\x31\xad\xcf\xb6\x3e\x21\xda\x8b\xff\x05\xa9\x4c\xd1\xc1\x78\x8c\xac\xdd\xbf\x48\xc9\x7f\xaa\x4d\x83\xba\x9c\x6d\x0d\xd3\xe1\x18\xf2\x26\x46\xb4\x55\xe8\xd3\x7d\xb5\xaa\x0a\x1d\x1c\x18\xe7\xa5\x4a\xb6\x42\x4e\x0f\x4a\x8a\xdd\xd4\x56\xb9\xc1\x32\x52\x12\x37\x91\x4c\x56\xa0\xc0\x35\x7c\x6c\x25\xa9\xc3\x85\xa7\x05\x0c\x80\xf2\xcf\x48\x59\xc6\x1c\xe5\x59\x99\x1e\xa0\xfb\xb9\x15\xd6\x5b\xc5\x7a\xd0\x7a\xe4\x2b\x82\x87\xea\xbd\x97\xd5\x59\xab\x1d\x68\xf1\xe6\x2c\x1f\x09\x27\x82\x22\x6c\x36\x25\x87\xa5\xc3\xbc\x8a\x51\x5c\x40\x8a\x5a\x93\x1d\xae\x61\xca\x04\x95\x4a\x21\x35\xa5\x23\x80\x38\x40\x39\x1d\xe5\xbe\x43\x87\x98\x67\xf3\x0e\xff\x36\xa6\x1e\x15\x65\xac\xe1\x60\x8e\x19\x4e\x7b\x30\x69\x5c\xb0\xb9\x21\x86\xc0\xa6\xa4\x59\x5a\x38\xc1\xf7\xf8\x85\xe1\x61\x66\x25\x5c\x0e\x7f\xe8\x5f\xde\x6e\x2b\x0e\x57\xb3\xf9\xfc\x1d\x10\xfd\x0e\xce\x3b\xdf\xd0\x86\xc5\x4e\xa1\xbd\xdd\x84\x4d\xff\x57\xeb\x25\xa1\xd4\x3a\xce\x5d\x0e\xb2\x43\x7f\x19\x3a\x19\x51\xa4\xd5\x95\xfb\x46\xb5\x0e\x6d\x2c\x09\x1f\x88\x49\xda\x38\xcd\xfe\x38\xe9\xcb\x08\x33\xa9\x99\xf1\xe4\x97\x17\xa5\x5f\x9a\xe1\x3a\x01\x72\x8d\x3d\x4c\xce\x53\x5d\x93\x3d\xce\x2e\x2f\x3c\xeb\x05\x18\x39\xac\x69\x53\x6e\x37\x8a\x16\xdf\x5c\x5e\x14\xc9\x5b\xe2\x8a\xa0\x64\x1c\x3c\x7e\x98\x95\x0f\x55\x99\x70\x80\x65\xde\x57\x83\x2e\x2f\x1a\xf7\xbc\x8d\xae\x9b\x90\xf5\xad\xa0\x76\x73\x4e\x19\x44\x88\xdd\x0f\x1f\x03\x1f\x35\xde\x06\x93\x95\xd2\xdb\x09\x99\xa9\xbe\xec\xaa\xe2\x4b\x13\xa4\x4f\xb6\x91\x4c\x99\xd8\x13\xce\xa2\x6a\x0b\x68\xa5\xfd\x74\x7c\xa2\xec\x61\x12\x7c\xb9\xa0\x24\x9b\xbe\x94\x7a\x25\x94\x6f\x8d\x34\xaf\x69\x58\xdd\x5e\x05\x1f\x3e\x40\x46\x04\xa3\xb3\x69\x4c\x18\xc7\x08\x8c\xf4\x08\xd5\x82\xa2\xc6\xc4\x50\x92\xb7\x8a\x69\xb3\xac\xfb\x33\xcd\xca\xfe\xbf\x9a\xd2\x6a\xc5\x6b\x49\xf5\x5a\x97\xcc\x25\x20\x6c\x8a\x44\xec\x6e\x57\x51\xdc\x54\x01\x9d\xf4\xf6\x89\xee\x45\xaf\x21\x73\x70\xbb\xe1\xdd\x06\x04\xe3\x61\x97\xa0\x32\xe7\x11\x08\x69\x4a\xa7\xba\xef\x3a\xfd\xed\xa8\xec\x3c\xee\x88\xe5\x55\xb3\x0e\x59\xa6\xb9\x36\x8e\x63\x00\x18\x34\x49\xdd\x14\x46\x8a\x79\x4c\x2a\xb6\x63\x82\xf0\x9e\x88\x0d\x0e\xb6\xf5\xe7\xd4\xfa\xda\xbf\xe1\x68\xbf\x86\x8f\xf5\x6b\x70\x39\xeb\xa2\xe9\x3f\xe8\x0c\x6b\xdb\x78\x9d\x87\x76\xbb\xc2\x1a\x16\x01\xe7\xe9\xde\x7f\xc9\xc2\x06\x56\xbe\x41\xac\x5a\xfa\x56\xdd\x67\x88\x4d\xfd\x6f\x59\xcb\x25\x73\x6f\x6d\x26\x5e\xad\xd3\x7f\x03\x00\x00\xff\xff\x5c\x3e\x0f\x91\x33\x20\x00\x00" func utilityTestMaliciousstorefrontv2CdcBytes() ([]byte, error) { return bindataRead( @@ -233,7 +233,7 @@ func utilityTestMaliciousstorefrontv2Cdc() (*asset, error) { } info := bindataFileInfo{name: "utility/test/MaliciousStorefrontV2.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0x79, 0x6, 0x14, 0x59, 0x50, 0x54, 0xd4, 0x82, 0x3d, 0xec, 0x26, 0x62, 0xf3, 0x19, 0xeb, 0x56, 0xbb, 0xc3, 0x35, 0xda, 0xd2, 0x4d, 0xb9, 0xde, 0xb7, 0x14, 0xb0, 0xea, 0xec, 0x7a, 0xee}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x31, 0xeb, 0x52, 0xbe, 0x0, 0xba, 0xd3, 0xfd, 0x61, 0x83, 0xb5, 0x65, 0x93, 0xe2, 0x7b, 0x4b, 0xf6, 0xc8, 0xd2, 0xe3, 0x51, 0x35, 0x50, 0xe5, 0x9c, 0x81, 0xe1, 0x34, 0x55, 0xcd, 0x8}} return a, nil } diff --git a/scripts/has_listing_become_ghosted.cdc b/scripts/has_listing_become_ghosted.cdc index a7bc829..8ce5477 100644 --- a/scripts/has_listing_become_ghosted.cdc +++ b/scripts/has_listing_become_ghosted.cdc @@ -1,5 +1,10 @@ import "NFTStorefrontV2" +/// DEPRECATED: This script calls `hasListingBecomeGhosted()`, whose return value is semantically +/// inverted — it returns `true` when the NFT is still present (NOT a ghost listing) and `false` +/// when the NFT is absent (IS a ghost listing). Use `is_ghost_listing.cdc` instead, which +/// calls `isGhostListing()` and returns `true` when the listing is ghosted. +/// /// This script tells whether the provided `listingID` under the provided `storefront` address /// has a ghost listing. access(all) fun main(storefrontAddress: Address, listingID: UInt64): Bool { diff --git a/scripts/is_ghost_listing.cdc b/scripts/is_ghost_listing.cdc new file mode 100644 index 0000000..adac361 --- /dev/null +++ b/scripts/is_ghost_listing.cdc @@ -0,0 +1,21 @@ +import "NFTStorefrontV2" + +/// Returns `true` if the listing with the given `listingID` under the given `storefrontAddress` +/// is a ghost listing — i.e. the underlying NFT is no longer present in the seller's collection +/// and the listing cannot be purchased. Returns `false` if the NFT is still available. +/// +/// This script uses `isGhostListing()`, which has correct semantics. Prefer this over the +/// deprecated `has_listing_become_ghosted.cdc`, whose underlying function returns an inverted value. +/// +/// @param storefrontAddress Address of the account holding the storefront resource. +/// @param listingID Resource ID of the listing to check. +access(all) fun main(storefrontAddress: Address, listingID: UInt64): Bool { + let storefrontPublicRef = getAccount(storefrontAddress).capabilities.borrow<&{NFTStorefrontV2.StorefrontPublic}>( + NFTStorefrontV2.StorefrontPublicPath + ) ?? panic("Given account does not have a storefront resource") + + let listingRef = storefrontPublicRef.borrowListing(listingResourceID: listingID) + ?? panic("Provided listingID doesn't exist under the given storefront address") + + return listingRef.isGhostListing() +} diff --git a/scripts/read_all_unique_ghost_listings.cdc b/scripts/read_all_unique_ghost_listings.cdc index bf1b5ce..b522608 100644 --- a/scripts/read_all_unique_ghost_listings.cdc +++ b/scripts/read_all_unique_ghost_listings.cdc @@ -1,5 +1,10 @@ import "NFTStorefrontV2" +/// DEPRECATED: This script works correctly but relies on `hasListingBecomeGhosted()`, which has +/// inverted return semantics (returns `true` when NOT ghosted, `false` when ghosted). The script +/// compensates internally with `!`, but callers should migrate to `read_all_unique_ghost_listings_v2.cdc`, +/// which uses `isGhostListing()` and has clearer semantics. +/// /// This script provides the array of listing resource Id which got ghosted It automatically skips the duplicate listing /// as duplicate listings would get automatically delete once the primary one. /// diff --git a/scripts/read_all_unique_ghost_listings_v2.cdc b/scripts/read_all_unique_ghost_listings_v2.cdc new file mode 100644 index 0000000..ecebeb9 --- /dev/null +++ b/scripts/read_all_unique_ghost_listings_v2.cdc @@ -0,0 +1,42 @@ +import "NFTStorefrontV2" + +/// Returns the listing resource IDs of all unique ghost listings under the given storefront. +/// A ghost listing is one where the underlying NFT is no longer present in the seller's collection. +/// Duplicate listings (those sharing the same NFT type and ID as another listing) are excluded, +/// since they are cleaned up automatically when the primary listing is removed. +/// +/// This script uses `isGhostListing()`, which has correct semantics. Prefer this over the +/// deprecated `read_all_unique_ghost_listings.cdc`. +/// +/// @param storefrontAddress Address of the account holding the storefront resource. +access(all) fun main(storefrontAddress: Address): [UInt64] { + + var duplicateListings: [UInt64] = [] + var ghostListings: [UInt64] = [] + + let storefrontPublicRef = getAccount(storefrontAddress).capabilities.borrow<&{NFTStorefrontV2.StorefrontPublic}>( + NFTStorefrontV2.StorefrontPublicPath + ) ?? panic("Given account does not have a storefront resource") + + let availableListingIds = storefrontPublicRef.getListingIDs() + + for id in availableListingIds { + if !duplicateListings.contains(id) { + let listingRef = storefrontPublicRef.borrowListing(listingResourceID: id)! + if listingRef.isGhostListing() { + ghostListings.append(id) + let listingDetails = listingRef.getDetails() + let dupListings = storefrontPublicRef.getDuplicateListingIDs( + nftType: listingDetails.nftType, + nftID: listingDetails.nftID, + listingID: id + ) + if dupListings.length > 0 { + duplicateListings.appendAll(dupListings) + } + } + } + } + + return ghostListings +} diff --git a/tests/NFTStorefrontV2_test.cdc b/tests/NFTStorefrontV2_test.cdc index f4544ad..e1c63c4 100644 --- a/tests/NFTStorefrontV2_test.cdc +++ b/tests/NFTStorefrontV2_test.cdc @@ -338,6 +338,82 @@ fun testCleanupGhostListings() { Test.assertEqual((result.returnValue! as! [UInt64]).length, 0) } +access(all) +fun testIsGhostListing() { + // Mint a new NFT + mintNFTToSeller() + + // Get the newly minted NFT's ID + var code = loadCode("get_ids.cdc", "scripts/example-nft") + var result = Test.executeScript(code, [seller.address, /public/exampleNFTCollection]) + Test.expect(result, Test.beSucceeded()) + let nftID = (result.returnValue! as! [UInt64])[0] + + // Create a listing for the NFT + code = loadCode("sell_item.cdc", "transactions") + var tx = Test.Transaction( + code: code, + authorizers: [seller.address], + signers: [seller], + arguments: [ + nftID, + 10.0, + "Custom", + 0.1, + UInt64(2025908543), + [], + nftTypeIdentifier, + ftTypeIdentifier + ], + ) + var txResult = Test.executeTransaction(tx) + Test.expect(txResult, Test.beSucceeded()) + + let getListingIDCode = loadCode("read_storefront_ids.cdc", "scripts") + result = Test.executeScript(getListingIDCode, [seller.address]) + Test.expect(result, Test.beSucceeded()) + let listingID = (result.returnValue! as! [UInt64])[0] + + // Before burning: isGhostListing() should return false (NFT is still present) + var isGhost = scriptExecutor("is_ghost_listing.cdc", [seller.address, listingID]) + Test.assertEqual(isGhost!, false) + + // read_all_unique_ghost_listings_v2 should return an empty array + var allGhostListingIDs = scriptExecutor("read_all_unique_ghost_listings_v2.cdc", [seller.address]) + Test.assertEqual((allGhostListingIDs as! [UInt64]?)!.length, 0) + + // Burn the NFT to ghost the listing + let burnNFTCode = loadCode("burn_nft.cdc", "transactions/example-nft") + tx = Test.Transaction( + code: burnNFTCode, + authorizers: [seller.address], + signers: [seller], + arguments: [nftID] + ) + txResult = Test.executeTransaction(tx) + Test.expect(txResult, Test.beSucceeded()) + + // After burning: isGhostListing() should return true + isGhost = scriptExecutor("is_ghost_listing.cdc", [seller.address, listingID]) + Test.assertEqual(isGhost!, true) + + // read_all_unique_ghost_listings_v2 should now return the ghosted listing ID + allGhostListingIDs = scriptExecutor("read_all_unique_ghost_listings_v2.cdc", [seller.address]) + Test.assertEqual((allGhostListingIDs as! [UInt64]?)!.length, 1) + Test.assertEqual((allGhostListingIDs as! [UInt64]?)![0], listingID) + + // Clean up + let cleanupCode = loadCode("cleanup_ghost_listing.cdc", "transactions") + tx = Test.Transaction( + code: cleanupCode, + authorizers: [buyer.address], + signers: [buyer], + arguments: [listingID, seller.address] + ) + txResult = Test.executeTransaction(tx) + Test.expect(txResult, Test.beSucceeded()) +} + access(all) fun testSellItemWithMarketplaceCut() { From 31f4d6242c0b73c9fbac537cbe5039a49648005d Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 24 Mar 2026 15:15:22 -0500 Subject: [PATCH 2/2] fix testRemoveItem event count after adding testIsGhostListing testIsGhostListing emits one additional ListingCompleted event (on ghost listing cleanup), shifting the cumulative event count seen by testRemoveItem from 5 to 6. Co-Authored-By: Claude Sonnet 4.6 --- tests/NFTStorefrontV2_test.cdc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/NFTStorefrontV2_test.cdc b/tests/NFTStorefrontV2_test.cdc index e1c63c4..b5d4fac 100644 --- a/tests/NFTStorefrontV2_test.cdc +++ b/tests/NFTStorefrontV2_test.cdc @@ -588,9 +588,9 @@ fun testRemoveItem() { // Test that the proper events were emitted var typ = Type() var events = Test.eventsOfType(typ) - Test.assertEqual(5, events.length) + Test.assertEqual(6, events.length) - let completedEvent = events[4] as! NFTStorefrontV2.ListingCompleted + let completedEvent = events[5] as! NFTStorefrontV2.ListingCompleted Test.assertEqual(listingID, completedEvent.listingResourceID) Test.assertEqual(false, completedEvent.purchased) Test.assertEqual(Type<@ExampleNFT.NFT>(), completedEvent.nftType)