diff --git a/.gitignore b/.gitignore index e6305b9..90abe32 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,5 @@ coverage.json .env .DS_Store lcov.info -imports/* \ No newline at end of file +imports/* +REPORT.md \ No newline at end of file diff --git a/AGENTS.md b/AGENTS.md new file mode 120000 index 0000000..681311e --- /dev/null +++ b/AGENTS.md @@ -0,0 +1 @@ +CLAUDE.md \ No newline at end of file diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..fc4cf4f --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,101 @@ +# CLAUDE.md + +This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. + +## Commands + +### Pre-commit requirement for Cadence changes + +Any changes to `.cdc` files must pass `make ci` before committing: + +```sh +make ci +``` + +`make ci` runs the Go tests and all Cadence tests with coverage, mirroring the CI pipeline. It must be green before every commit. + +### Run all tests +```sh +flow test --cover --covercode="contracts/NFTStorefrontV2.cdc" tests/NFTStorefrontV2_test.cdc +flow test --cover --covercode="contracts/NFTStorefront.cdc" tests/NFTStorefrontV1_test.cdc +``` + +### Run a single test function +```sh +flow test --filter tests/NFTStorefrontV2_test.cdc +``` + +### Deploy to emulator +```sh +flow emulator start +flow deploy --network emulator +``` + +### Install/update dependencies +```sh +flow dependencies install +``` + +## Architecture + +### Contracts + +**`contracts/NFTStorefrontV2.cdc`** — The canonical, recommended contract. All new integrations should target this version. + +**`contracts/NFTStorefront.cdc`** — V1, no longer actively supported. Maintained for backwards compatibility only. + +Both are deployed to the same address on mainnet (`0x4eb8a10cb9f87357`) and testnet. + +### Core Resource Model + +Each seller account holds a single `Storefront` resource (stored at `NFTStorefrontV2.StorefrontStoragePath`). Within it, individual `Listing` resources represent NFTs offered for sale. The key design properties: + +- **Non-custodial**: NFTs remain in the seller's collection until purchase. A `Listing` holds an `auth(NonFungibleToken.Withdraw)` provider capability, not the NFT itself. +- **One NFT, many listings**: The same NFT can have multiple active `Listing`s simultaneously (e.g., one per marketplace, or one per accepted token type). +- **Generic types**: `sell_item.cdc` and `buy_item.cdc` accept `nftTypeIdentifier` and `ftTypeIdentifier` strings, resolved via `MetadataViews.resolveContractViewFromTypeIdentifier`. No NFT- or FT-specific imports needed in those transactions. + +### Payment Flow (`Listing.purchase`) + +`salePrice = commissionAmount + sum(saleCuts)` + +On purchase: +1. Commission is routed to `commissionRecipient` (must be one of `marketplacesCapability` if that list is non-nil). +2. Each `SaleCut` is paid to its receiver capability; failures emit `UnpaidReceiver` rather than reverting. +3. The NFT is withdrawn from the seller's collection via the stored provider capability and returned to the caller. + +### Ghost Listings + +A listing becomes "ghosted" when the underlying NFT is no longer present in the provider capability (transferred out or sold via another listing). Ghost listings: +- Do not revert on detection but will revert on purchase attempt. +- Can be checked via `Listing.hasListingBecomeGhosted()`. +- Can be cleaned up via `transactions/cleanup_ghost_listing.cdc` or `transactions/cleanup_purchased_listings.cdc`. + +### Key V2 Additions over V1 + +| Feature | V1 | V2 | +|---|---|---| +| Commission / marketplace cuts | No | Yes (`commissionAmount` + `marketplacesCapability`) | +| Listing expiry | No | Yes (`expiry: UInt64` unix timestamp) | +| Ghost listing detection | No | Yes (`hasListingBecomeGhosted()`) | +| Duplicate listing cleanup | No | Yes (`getDuplicateListingIDs` / `cleanupPurchasedListings`) | +| Custom dapp ID | No | Yes (`customID: String?`) | + +### Transaction Layout + +- `transactions/` — V2 storefront transactions (use these) +- `transactions-v1/` — V1 storefront transactions (legacy) +- `transactions/hybrid-custody/` — Selling NFTs from child accounts via HybridCustody +- `scripts/` — Read-only queries (listing details, ghost detection, etc.) + +### Testing + +Tests use the **Cadence Testing Framework** (`import Test`). Contract aliases for `testing` network are defined in `flow.json`. Test helper utilities are in `tests/test_helpers.cdc`. Security regression tests use `contracts/utility/test/MaliciousStorefrontV1.cdc` and `MaliciousStorefrontV2.cdc` to verify that a malicious storefront cannot substitute a different NFT during purchase. + +### Contract Addresses + +| Network | Address | +|---|---| +| Mainnet | `0x4eb8a10cb9f87357` | +| Testnet | `0x2d55b98eb200daef` (V2), `0x94b06cfca1d8a476` (V1) | +| Emulator | `0xf8d6e0586b0a20c7` | +| Testing framework | `0x0000000000000007` (V2), `0x0000000000000006` (V1) | diff --git a/contracts/NFTStorefrontV2.cdc b/contracts/NFTStorefrontV2.cdc index 0e2d13f..e37ae9c 100644 --- a/contracts/NFTStorefrontV2.cdc +++ b/contracts/NFTStorefrontV2.cdc @@ -160,6 +160,8 @@ access(all) contract NFTStorefrontV2 { self.purchased = true } + /// Updates the custom identifier string used to distinguish events from different dApps. + /// May be set to nil to clear it. access(contract) fun setCustomID(customID: String?){ self.customID = customID } @@ -250,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 + } @@ -267,12 +283,23 @@ access(all) contract NFTStorefrontV2 { /// This capability allows the resource to withdraw *any* NFT, so you should be careful when giving /// such a capability to a resource and always check its code to make sure it will use it in the /// way that it claims. + /// + /// The field type uses `&{NonFungibleToken.Provider, NonFungibleToken.CollectionPublic}` while the + /// `init` parameter accepts `&{NonFungibleToken.Collection}`. These differ intentionally: callers + /// pass the narrower `Collection` type (which is the standard capability type issued to sellers), + /// and the assignment is valid because `NonFungibleToken.Collection` conforms to both `Provider` + /// and `CollectionPublic`. Aligning the two to the same type would be a breaking change for existing + /// integrations that already hold `&{NonFungibleToken.Collection}` capabilities. access(contract) let nftProviderCapability: Capability /// An optional list of marketplaces capabilities that are approved /// to receive the marketplace commission. access(contract) let marketplacesCapability: [Capability<&{FungibleToken.Receiver}>]? + /// Called by Burner.burn when this Listing is destroyed. + /// Emits ListingCompleted only if the listing was not already marked as purchased, + /// since purchase() emits the event for the purchased case. + /// If this logic changes, revisit Storefront.removeListing() and Storefront.cleanup(). access(contract) fun burnCallback() { // If the listing has not been purchased, we regard it as completed here. // Otherwise we regard it as completed in purchase(). @@ -303,12 +330,15 @@ access(all) contract NFTStorefrontV2 { /// it will return nil. /// access(all) fun borrowNFT(): &{NonFungibleToken.NFT}? { - if let ref = self.nftProviderCapability.borrow()!.borrowNFT(self.details.nftID) { - if ref.isInstance(self.details.nftType) && ref.id == self.details.nftID { - return ref + // If the provider capability has been revoked, return nil rather than panicking, + // as the doc contract promises nil for any absent/unavailable NFT. + if let providerRef = self.nftProviderCapability.borrow() { + if let ref = providerRef.borrowNFT(self.details.nftID) { + if ref.isInstance(self.details.nftType) && ref.id == self.details.nftID { + return ref + } } } - return nil } @@ -329,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 @@ -336,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. @@ -365,6 +410,12 @@ access(all) contract NFTStorefrontV2 { // If commission recipient is nil, Throw panic. let commissionReceiver = commissionRecipient ?? panic("NFTStorefrontV2.Listing.purchase: Commission recipient can't be nil") + // Verify the capability is valid before performing the allowlist check, + // so a revoked capability produces a clear error rather than a confusing borrow failure. + assert( + commissionReceiver.check(), + message: "NFTStorefrontV2.Listing.purchase: The provided commission recipient capability is invalid" + ) if self.marketplacesCapability != nil { var isCommissionRecipientHasValidType = false var isCommissionRecipientAuthorised = false @@ -480,8 +531,8 @@ access(all) contract NFTStorefrontV2 { return <-nft } - // destructor event - // + /// Emitted automatically by the Cadence runtime when this Listing resource is destroyed. + /// Captures a snapshot of key listing fields at destruction time. access(all) event ResourceDestroyed( listingResourceID: UInt64 = self.uuid, storefrontResourceID: UInt64 = self.details.storefrontID, @@ -537,11 +588,13 @@ access(all) contract NFTStorefrontV2 { provider != nil, message: "NFTStorefrontV2.Listing.init: Cannot initialize Listing, the NFT Provider Capability is invalid!") - // This will precondition assert if the token is not available. + // Verify the NFT exists in the collection and matches the declared type. + // We will check again at purchase time; this is an early-fail guard at listing creation. let nft = provider!.borrowNFT(self.details.nftID) + ?? panic("NFTStorefrontV2.Listing.init: NFT with ID \(self.details.nftID) does not exist in the provided collection") assert( - nft!.getType() == self.details.nftType, - message: "NFTStorefrontV2.Listing.init: Cannot initialize Listing! The type of the token for sale <\(nft!.getType().identifier)> is not of specified type in the listing <\(self.details.nftType.identifier)>" + nft.getType() == self.details.nftType, + message: "NFTStorefrontV2.Listing.init: Cannot initialize Listing! The type of the token for sale <\(nft.getType().identifier)> is not of specified type in the listing <\(self.details.nftType.identifier)>" ) } } @@ -587,7 +640,7 @@ access(all) contract NFTStorefrontV2 { } access(all) fun cleanupExpiredListings(fromIndex: UInt64, toIndex: UInt64) access(contract) fun cleanup(listingResourceID: UInt64) - access(all) fun getExistingListingIDs(nftType: Type, nftID: UInt64): [UInt64] + access(all) view fun getExistingListingIDs(nftType: Type, nftID: UInt64): [UInt64] access(all) fun cleanupPurchasedListings(listingResourceID: UInt64) access(all) fun cleanupGhostListings(listingResourceID: UInt64) } @@ -657,19 +710,19 @@ access(all) contract NFTStorefrontV2 { // Add the `listingResourceID` in the tracked listings. self.addDuplicateListing(nftIdentifier: nftType.identifier, nftID: nftID, listingResourceID: listingResourceID) - // Scraping addresses from the capabilities to emit in the event. - var allowedCommissionReceivers : [Address]? = nil + // Extract the address from each marketplace capability for inclusion in the event. + // nil marketplacesCapability means open commission (any recipient allowed). + var allowedCommissionReceivers: [Address]? = nil if let allowedReceivers = marketplacesCapability { - // Small hack here to make `allowedCommissionReceivers` variable compatible to - // array properties. - allowedCommissionReceivers = [] - for receiver in allowedReceivers { - allowedCommissionReceivers!.append(receiver.address) + var addresses: [Address] = [] + for cap in allowedReceivers { + addresses.append(cap.address) } + allowedCommissionReceivers = addresses } emit ListingAvailable( - storefrontAddress: self.owner?.address!, + storefrontAddress: self.owner!.address, listingResourceID: listingResourceID, nftType: nftType, nftUUID: uuid, @@ -732,11 +785,11 @@ access(all) contract NFTStorefrontV2 { /// getExistingListingIDs /// Returns an array of listing IDs of the given `nftType` and `nftID`. /// - access(all) fun getExistingListingIDs(nftType: Type, nftID: UInt64): [UInt64] { + access(all) view fun getExistingListingIDs(nftType: Type, nftID: UInt64): [UInt64] { if self.listedNFTs[nftType.identifier] == nil || self.listedNFTs[nftType.identifier]![nftID] == nil { return [] } - var listingIDs = self.listedNFTs[nftType.identifier]![nftID]! + let listingIDs = self.listedNFTs[nftType.identifier]![nftID]! return listingIDs } @@ -763,21 +816,14 @@ access(all) contract NFTStorefrontV2 { access(all) fun getDuplicateListingIDs(nftType: Type, nftID: UInt64, listingID: UInt64): [UInt64] { var listingIDs = self.getExistingListingIDs(nftType: nftType, nftID: nftID) - // Verify that given listing Id also a part of the `listingIds` - let doesListingExist = listingIDs.contains(listingID) - // Find out the index of the existing listing. - if doesListingExist { - var index: Int = 0 - for id in listingIDs { - if id == listingID { - break - } - index = index + 1 - } - listingIDs.remove(at:index) + // Only return duplicates if the given listingID is actually tracked; otherwise + // there is nothing to deduplicate against. + if listingIDs.contains(listingID) { + let index = listingIDs.firstIndex(of: listingID)! + listingIDs.remove(at: index) return listingIDs - } - return [] + } + return [] } /// cleanupExpiredListings @@ -801,7 +847,7 @@ access(all) contract NFTStorefrontV2 { self.cleanup(listingResourceID: listingsIDs[index]) } } - index = index + UInt64(1) + index = index + 1 } } @@ -846,13 +892,24 @@ 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)! + // Fetch duplicates before removing the primary from listedNFTs. + // getDuplicateListingIDs uses `contains(listingResourceID)` as a guard — if the primary + // is already absent from listedNFTs it returns [] and duplicates are never cleaned up. let duplicateListings = self.getDuplicateListingIDs(nftType: details.nftType, nftID: details.nftID, listingID: listingResourceID) - - // Let's force removal of the listing in this storefront for the NFT that is being ghosted. + // Now remove the ghost listing's own entry from listedNFTs. + // Every other removal path (removeListing, cleanupPurchasedListings, cleanup) does this + // for the primary listing; cleanupGhostListings was the only path that omitted it, + // leaving a dangling listedNFTs entry after the duplicate-cleanup loop. + self.removeDuplicateListing( + nftIdentifier: details.nftType.identifier, + nftID: details.nftID, + listingResourceID: listingResourceID + ) + // Let's force removal of the listing in this storefront for the NFT that is being ghosted. for listingID in duplicateListings { self.cleanup(listingResourceID: listingID) } diff --git a/contracts/utility/test/MaliciousStorefrontV2.cdc b/contracts/utility/test/MaliciousStorefrontV2.cdc index b20412d..14dec50 100644 --- a/contracts/utility/test/MaliciousStorefrontV2.cdc +++ b/contracts/utility/test/MaliciousStorefrontV2.cdc @@ -41,7 +41,7 @@ access(all) contract MaliciousStorefrontV2 { return } - access(all) fun getExistingListingIDs(nftType: Type, nftID: UInt64): [UInt64] { + access(all) view fun getExistingListingIDs(nftType: Type, nftID: UInt64): [UInt64] { return self.storefrontCap.borrow()!.getExistingListingIDs(nftType: nftType, nftID: nftID) } @@ -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 894ad45..2a5ef80 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 (41.133kB) +// ../../../contracts/NFTStorefrontV2.cdc (45.731kB) // ../../../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.05kB) +// ../../../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\x9c\xaf\x4e\x9d\x87\x2d\xad\x6c\x79\xd7\x4a\xb6\x92\x38\x2a\x5b\xb6\x1f\x64\x55\x09\x9c\xc1\x90\xa8\x1d\x0e\xc6\x00\x66\x29\x46\xd9\xff\x7e\x0a\x8d\xfb\x65\x86\xb3\x92\x1c\xdb\x39\xe1\x83\xc4\x1d\xe2\xd2\x68\x74\x37\xfa\x86\x1e\xba\xef\x19\x97\xe8\xe1\x8b\xa1\xdb\xd2\x4d\x4b\x5e\xb1\x1b\xd2\x3d\x7c\x60\x1f\x7f\xcb\xba\x91\x5f\xbe\x1e\x78\x47\xf8\xc3\x07\x0f\x9e\x3c\x79\x82\xbe\x7d\xf1\xea\x7b\xc9\x38\x69\x38\xeb\xe4\x8f\xff\xab\x9e\xc1\xf3\xe7\x68\x4b\x3a\xc2\x71\x8b\xfa\x81\xf7\x4c\x10\x24\x70\x4b\x90\x18\x7a\x18\xa4\x62\x9d\xe4\xb8\x92\xa8\x61\x5c\x8d\x21\x90\xdc\x61\x89\xe8\xbe\x6f\xc9\x9e\x74\x12\xc9\x1d\x41\x2f\x5a\x76\x40\x29\x1c\x48\x48\xdc\xd5\x98\xd7\x6b\x98\x07\xfe\xf9\x06\x57\x3b\x84\xab\x8a\x0d\xd0\x13\x4b\x74\xc0\x9d\x14\x48\x32\xd4\x52\x21\xf5\x04\x6a\x26\x80\x81\x76\x42\xe2\xb6\x15\x08\x23\x0f\xfa\x0a\x06\xc2\x5d\x0d\x3d\x04\xa2\x5d\x4d\x6f\x69\x3d\xe0\x16\x3a\x09\x74\xa0\x72\x47\x3b\x3d\xba\xef\x86\xb0\x40\x7f\xa3\x42\xd2\x6e\x2b\x34\x40\xaf\x76\x84\x13\x44\x05\x62\x1d\x09\x1b\xf6\x84\x5b\x10\x57\x88\x4a\xb4\xc3\x5d\xad\xc6\xd5\xa3\xb3\x06\xe1\xb6\x55\x80\x22\x79\xec\x89\x80\xa1\x14\xc4\x30\x9f\xe9\xb7\x76\xd8\x85\x05\x9b\x79\x51\x85\x3b\xb4\xc3\xb7\x04\x66\x64\x1c\xed\x19\x27\xe8\x61\x35\x48\xf1\x50\x8d\xab\x30\x09\xeb\xee\x39\xad\x08\x0c\x08\x63\x6c\x19\x01\x0c\x85\xbd\x70\x5d\x73\x22\x04\x11\x6b\x74\x39\x48\x01\x43\x6f\x08\x1a\x04\xa9\x55\xd3\x1e\x1f\x01\x3d\x6a\xd6\x86\x18\x28\x19\x47\x4c\xee\x08\x57\x7b\x2a\x68\x4d\x38\x96\x94\x75\x62\x8d\xca\x90\xd2\xae\x6a\x87\x9a\x20\x8c\x2a\xb6\xdf\x53\x21\x28\xeb\x10\xde\xfb\xad\xa3\x02\xf5\x98\xc2\x7c\x87\x1d\x23\xb7\x84\xa3\x06\x57\xb4\xa5\x12\x4b\x33\xa5\x5a\x52\x3f\xf0\x6a\x87\x05\x59\x2b\x8c\x23\x41\xda\x56\x81\x80\x3b\x84\x5b\xc1\x50\xb5\x63\x8a\xe6\x14\xcc\x9c\xdd\x52\x35\x5f\x87\x58\xaf\x20\xc3\xad\x26\x0a\xd6\xa0\x3d\xe6\x37\x44\xf6\x2d\xae\x88\x86\x96\x93\x8a\xd0\x5b\x18\xa8\xc7\x1b\x35\x27\x55\xb8\xb8\x56\xfb\x4e\x15\x3a\x04\x59\xc1\xec\x39\xec\xfb\x41\x48\x85\x2b\xc9\x71\x27\x1a\xc2\x39\xa0\x4c\x63\x48\x61\x58\x6f\x44\x38\x2e\x02\x72\x22\x00\x4d\xb2\xb5\x8a\x0e\xf6\xf8\xa8\xc6\x53\xbf\x92\x5a\xb5\x0d\x37\xca\xd2\x9c\x86\xe6\x16\xb7\xb4\xa6\xf2\xa8\x66\x21\xb8\xda\xc1\x40\x21\xd2\x09\x16\xb4\x85\xe1\xaa\x1d\xa9\x6e\x48\xc8\x3c\x2f\x0d\x22\xb9\xde\xee\x03\x96\xd5\x0e\x48\xcf\x0e\x40\x6e\x89\x62\x26\xc5\x1b\xd0\x1b\xa6\xb4\x94\xaa\x1e\xc3\x30\xd7\x57\x0a\xdb\x82\x10\x44\x61\xa9\x47\x74\xa0\x62\xa7\x9e\x6d\x86\xa3\x5b\xa7\x5a\x89\x24\x7b\x3d\xfd\xdf\x3d\xfa\xf5\xf0\x9a\x8e\xf0\x76\xcb\xc9\x16\x4b\x76\x02\xa2\x88\x63\x61\x58\xe0\x23\xda\x49\xc2\x89\x45\x29\xae\x2a\x22\xc4\x02\xb7\xed\xd2\x0b\x9d\x44\x68\xa1\xf7\x0f\x1e\x20\x84\x50\xd8\x96\x74\x92\x4a\x23\x8b\x2e\x39\xc1\x92\x98\xc9\x27\x5b\x7e\x47\xf6\xec\xd6\xb5\x84\xa6\x0a\x48\x3f\xd9\x75\x47\x25\xc5\x2d\xfd\x27\xa9\xdd\xaf\xcf\x43\x31\xc1\x89\x60\x03\xaf\x08\xda\x61\x81\x36\x84\x74\xa8\x82\xd9\xeb\xb5\x6b\xff\x8d\x5a\x3d\x70\xdb\xb0\xb7\xbb\xd6\xb1\x03\x22\xef\x7a\x52\x49\xbb\x5d\x0d\x67\x7b\x4d\xb5\x7e\x74\x3f\xc6\xb7\x4c\x12\x23\x29\x09\xaa\x19\xea\x98\x44\xa2\x27\x15\x6d\x8e\x8a\x53\x8c\x1c\x38\x57\xbf\x56\xb8\x53\xbf\x2a\x44\x8b\x1d\x1b\xda\x5a\x35\xf6\x23\x69\xe4\xd4\x0e\x70\x61\x87\x03\x91\xa4\xb8\xee\xd0\xa9\x4d\xd5\x23\xae\x60\x1c\x43\xda\x0a\x57\x1e\x0d\xb8\x91\x8a\xf1\xd4\x70\x8a\xad\xa8\xda\xf8\xa3\x08\x20\x00\xe2\xf3\x13\x1b\x2c\x3f\xbf\xc5\xb4\xc5\x9b\x96\xd8\x85\x27\x32\xab\x26\x92\xf0\x3d\xed\x08\xd0\xa0\x01\xc3\x0d\x62\xd8\x52\xc3\x68\xfe\x08\x76\x63\xb1\x5e\xaf\xa9\x14\xa8\x65\x15\x40\xb5\x44\x58\x1f\x4d\x92\xee\x15\x4f\xbb\x71\x2c\x7d\x2b\xea\xdc\x0c\x12\xb1\xae\x3d\xea\xb6\x58\xa2\x9e\x93\x8a\x0a\xb5\x5e\x20\x12\x7b\x8a\xd8\xc7\x20\x31\x70\xa5\xc6\xf7\xab\xbb\x36\x82\x5b\xcb\x35\x85\x29\x91\x02\x77\xd8\xd1\x96\x44\x33\x53\xa1\x45\xc1\x0a\x05\x80\x69\x91\xca\x40\xd6\xec\xdd\x04\x39\x19\x03\x55\x15\x29\x75\x21\xdc\xd3\xef\xcc\x2e\x5f\x5f\x9d\xa3\x1f\xae\x3b\xf9\x7f\xff\xcf\xf2\xc1\xe8\x8e\x04\x14\x6e\x21\x4c\xa9\x1a\xc8\x01\xd7\xb5\xde\x2b\x5c\xe2\x04\x8f\x13\x25\xe8\x9f\xeb\x0d\x54\xeb\x1c\x88\x40\x70\xd8\x62\x6e\x44\x20\x3a\xec\x88\x96\xa9\x7a\x35\x54\x20\xb2\xa7\x52\x92\x7a\xa5\x76\x25\xda\x2d\xa1\x8e\x13\xbb\xe5\xe6\x80\x15\x5a\x70\x71\xd2\x10\xae\xe0\x51\x74\x5a\xed\x70\xb7\x25\x88\x0d\x52\x1d\x6e\xa6\x83\xe7\xa3\x44\x92\x1c\x18\xbf\x69\x5a\x76\x58\x21\xc1\x40\xdc\x62\x4e\x9a\xa1\x55\x83\x69\xd9\x09\x10\x0e\x42\xe1\x62\xce\x7e\xa4\x28\x5d\x40\x3b\xf5\xf1\x7b\xf2\xdc\x32\xab\xf9\xb2\x72\x6d\x0c\xd6\xf3\x4d\xf3\x4d\xba\x46\xbe\x3a\xf6\xe4\x1c\xa9\x7f\xa3\xc7\x3f\xfc\x10\xb4\x47\xe1\x2f\xa5\x71\x94\x86\xf1\x12\x1f\x15\x81\xff\x88\x87\xb6\x38\x28\xb4\x51\x4a\xc8\x39\xfa\xe1\x05\x7d\x17\x76\xaf\x06\x21\xd9\x5e\x0d\xfc\xbd\xe4\xb4\xdb\x7e\x19\xfc\xe4\x8e\xda\xe7\x70\xd2\x16\x3a\xbb\x16\xdf\x99\xf3\x5b\x9c\xa3\xd7\x06\x1b\x6f\x82\xa1\xc8\xbb\x9e\xf2\xa3\x05\x1e\x1e\xe7\xe4\x7b\xc9\x94\x12\x2a\x03\xc9\xf4\x2a\x60\x31\x47\xc0\x8a\x3c\xdb\x5b\x52\xaf\xd1\xb5\x84\xa7\x84\xc2\xe9\x05\x3f\x5a\xe5\xa4\x5e\x21\x0e\x47\x42\xad\x4e\xee\x9a\x08\xc9\xd9\x31\x90\xe5\xd3\xbb\xee\x20\x59\xcc\xd8\x51\x54\xa0\x8c\xc9\x66\x0e\xc6\x73\xf4\x35\x63\xed\xbd\x49\xe2\x8f\x45\x11\x8e\x3b\x66\x93\xc3\x0f\x9d\x52\x43\x6d\xff\x40\x96\x99\x03\xbf\xf6\xda\xa2\xda\x7e\x75\x42\xe9\xbd\x57\xca\x6b\x3d\x70\xc3\xe2\x5a\xf7\x36\x72\xe6\xdb\x17\xaf\x4e\xed\x7d\x3c\xed\x82\xa7\xf0\xaf\xdc\xfc\xdf\xe3\x96\x5c\x0e\x6e\xf5\xcb\x92\xbe\xa1\xbe\xe1\x2d\x79\x89\xe5\x2e\x26\x67\x73\xa0\xa9\xc3\x48\xe8\x36\xc6\xd4\x28\x2a\x23\xe6\xe0\xdf\x98\x8e\x96\x82\x43\xe8\x5b\x22\xcb\xf3\x9e\xa3\x10\x88\x02\x8c\x2f\x87\x4d\x4b\xab\x0c\xc4\x1e\x1e\x7b\x48\x95\x02\x18\x41\xd7\xd2\xee\xe6\x14\x1c\x7e\xec\x73\x14\xcc\x13\x80\xa1\x91\x18\x6c\xaf\x90\x7c\xa8\xd4\xda\x7b\x4e\x84\xc2\x75\xb7\x45\x58\xed\x35\xed\x29\xb1\x46\x8a\xd5\xf6\x55\x03\x65\xca\x10\x2e\x31\xb5\xb6\x40\xaa\x5d\xf4\x9a\x0b\xb4\xec\xc7\x48\x82\x19\x4b\x05\x12\xac\x9d\x10\x05\x06\x0e\x03\x20\x7a\xef\xc8\xd6\x22\xc8\x91\x9f\xb6\x13\xdd\x3c\xeb\xa8\x65\x51\xd3\x93\x60\xec\x39\x3d\x4f\x1d\x4f\x0d\xed\x6a\x18\x05\x98\x55\xf7\x00\xf5\xd1\x21\x22\x38\x58\x40\x5f\x13\x46\xf7\xe8\x6e\x94\x70\x73\xb4\x62\xe7\x6a\x88\x52\xdb\xa9\x31\x9d\x0e\xf8\xe8\xd4\x3e\xdc\xd1\x7e\x68\x15\x19\xc5\x23\x0a\x16\x01\xe2\x80\xd3\x74\x59\x0d\xd2\xd9\xac\x47\x36\xe8\x2d\xd8\x12\x03\xa5\xc1\x16\xd6\x7d\xbb\x68\xdc\x4a\x99\xd6\x16\x5b\xeb\x0d\xe3\x9c\x1d\x16\xcb\xb3\x35\x68\x7d\x6b\x3b\x8d\x62\x86\x04\x77\xaf\xb4\xd1\x07\xfa\x64\xad\xcc\x2f\xd2\x34\xb4\x52\x54\xd0\x1e\xd5\xca\x30\x12\x15\xa7\x7d\xd0\x2b\xa5\x44\xcf\xbe\x97\xd6\xf2\x3b\x3e\x7d\xf4\x3e\xf2\x68\xac\x2d\xb3\xdf\x3d\x7b\x90\x6d\xb2\xb1\x2e\x13\x4a\x8a\x3d\x22\x1a\xe3\xb4\x6d\x15\x9c\xd6\x76\x96\x01\x85\x8c\xc3\x87\x23\x01\x1a\x4f\x4f\x9d\x06\xc8\xc3\xe7\xee\xbb\xfa\x7d\x71\xcf\x05\xae\x92\x19\x97\x01\x5d\xc3\x81\x40\xda\x66\xed\x08\xfb\xc2\xad\x20\x6f\x64\x10\x73\x11\xf2\x9c\xfa\xdc\x3d\xd0\xff\x66\xe7\xfa\x15\x91\x98\xb6\x22\xe7\x74\x65\x16\x62\xda\x69\x3e\x37\x8d\x3f\x13\xa8\xc6\x12\x9f\xe4\xce\x78\xec\x02\x93\x06\xf2\xca\xb0\x94\x33\xde\x41\x04\xa8\x9f\x95\x75\x3f\xc6\xb4\x86\x05\x0d\x6f\x19\x4b\xc8\xda\x4e\x5a\x67\xae\x69\xd3\x10\x1e\x6b\xef\x39\x63\xa9\x71\xa8\x40\xff\xf8\xeb\x5a\xd9\x16\x07\x50\x91\x39\xda\xe3\x1b\x82\xa8\xd4\x2d\x94\xa5\x20\xd1\xe7\x15\xee\x3e\x77\x53\xc4\x03\x69\x56\x73\x87\x01\x27\xb7\x54\x50\x77\x1c\xa4\x38\xba\xc5\x3c\x50\x46\xbc\x8e\x10\x0d\xf9\xd3\x8e\x80\xde\x04\x43\x67\x5a\x96\x53\x52\x94\x88\x71\x76\x67\x69\xa2\x44\x9d\xc9\x36\x42\x29\x1e\xee\x18\x4e\x7c\x8a\x6b\xf0\x66\x18\x4b\x69\x43\x14\x04\xda\x59\x31\xce\x38\x91\x92\x94\x4d\x66\x15\x2f\x74\x7d\x15\x1c\xfd\xca\x62\xab\x76\x20\x50\xc0\x3e\x84\xf3\x43\x5a\x37\x90\xf5\x4e\x4c\x4d\x19\x2a\x60\xd9\xa4\x43\x47\x7f\x19\x08\xa2\xb5\x3a\xb4\x1a\xea\x0d\x5a\xb7\x3a\x90\x11\x4a\x64\x2a\xb3\x72\x72\x6d\x13\xd3\x84\x88\x2c\xc8\x21\x23\xa2\x84\x3b\x22\xf7\xb8\x26\x11\x81\xa7\xd3\x8d\x2b\x8a\x63\xd2\x30\x3a\x82\x41\xe0\x19\x1c\x6a\x17\x06\x25\x75\x0c\xd9\x89\xb9\x43\x05\x34\x97\xff\x76\x4c\x7d\xdc\xd5\x54\x91\x3c\xeb\x14\x06\xac\x34\xde\x10\x79\xd0\x26\x81\xd1\x11\xc4\xf4\x84\x97\x83\x54\x06\x8a\x39\xd9\xdf\x44\x53\x3e\x6f\x5b\x76\x08\x58\xba\xc6\x7d\x8f\x24\xc1\x7b\x11\x3a\x33\xb5\x72\xac\x84\x10\xed\xb6\xc2\x1e\xc5\xb5\xe6\x9e\x81\x8a\x1d\xa9\xcd\x8f\x09\xfb\x2a\x22\x00\xee\xdd\x91\xb6\x07\x0b\x54\x1f\xb9\xad\x24\xdc\x3a\x50\x38\x81\xb3\xd9\x1c\x22\x94\x3b\x55\x7c\x9c\xf9\x32\x65\x3d\x9a\xf6\x32\x70\x96\x3a\x6f\x8d\xd4\xf6\x71\x8b\xe9\x9e\xd4\x68\x73\x2c\x39\x7b\x9d\xfe\x3c\x8e\xcf\x31\x5b\x20\x02\xe0\x1b\x50\xf4\xd5\x96\xb5\x81\x13\xaf\x34\x5c\x62\x12\x44\xa3\x5c\x73\xae\x00\x14\x74\xd3\x1e\x81\x71\x23\x91\x85\x85\x17\x41\xeb\xe2\x79\x69\xe6\xb2\x7c\xbe\x44\xcd\xd0\xa9\x71\x5e\x31\xeb\x82\xad\x17\xc5\xf3\xd0\x0b\xc1\x0b\x24\xf9\x40\x82\xb3\xee\xe4\xe0\x97\x66\x67\x16\xd9\x16\x2d\x0b\x33\xd9\x46\xe8\xc2\x6d\x69\x69\x32\xc0\xc6\x0c\xed\x00\x2d\xa2\x29\x46\x0c\x4b\x34\x65\x5c\xa2\x71\x03\x13\xcd\x34\x32\x6d\xbb\x84\xed\x92\x06\x85\x73\x2a\x6e\x31\x61\x90\xa2\x59\x46\x29\x2a\x9b\x9c\xea\xb3\xb4\x2e\x68\xfb\xe9\x39\x49\x28\x41\xe3\x17\xfd\x88\x5b\x5a\x63\xa9\xfd\x7e\x7a\xb4\xac\x99\x7e\x8c\x9e\x99\x59\x16\x5b\x45\x06\x5c\x89\x93\xaf\x5b\x56\xdd\x2c\x96\x6b\x49\xf7\x44\x48\xbc\xef\x97\xe7\x59\x6f\xf5\x79\x98\xf8\xb5\xd6\xb1\x9e\xb3\x56\x9b\x7b\x0e\x12\x79\x4b\x6f\x49\x67\x67\x74\xc3\xa2\x9f\x17\xfa\xd1\xd2\x89\x69\x23\xa1\x9b\x41\x0e\x9c\x9c\x3d\x3c\xb9\xb6\x96\x74\x5b\xb9\x8b\x02\x58\xd5\x20\xb3\x6e\x76\x63\xd7\xa6\xfd\x33\xf4\xc5\xf9\x4c\xf0\xad\x1a\x06\x10\x6a\x6f\xb5\x44\x2d\xc1\x42\x42\xa8\xc5\x4a\x77\x65\x77\x38\xc9\x1e\xc3\x7d\xf7\x20\x67\xa1\x90\x90\xd0\x45\x44\x57\xd3\x9c\xdd\xe0\x56\x90\xbc\x89\x61\x1a\x74\x61\xd9\xa7\xd8\x44\x31\x8f\x6e\xa2\xbe\x15\x9b\xd8\x06\xa5\x9f\x4b\x6c\xa4\x80\x2f\x3c\xbe\x9f\xd0\xf0\x8d\x12\xf6\x50\x8d\x93\x47\x79\x27\x43\x56\x17\x25\x42\x77\x70\x43\xa0\xf2\xc2\x11\x42\xbc\x25\xea\xf4\xc1\x6d\x05\xd6\xa6\x76\xdc\x33\x89\x5b\x13\x0a\x35\x21\x12\x20\x2c\x11\x75\x03\xcd\xd5\xaa\x06\xa7\x40\x7d\xf2\x04\xbd\x24\xbc\x61\x7c\x6f\x4d\x26\xe3\xeb\x65\x5d\x14\xef\xd3\xb1\x8f\xca\x81\x13\x04\x65\x01\x12\x45\x68\x5a\xc1\x09\xf4\x07\xf5\x51\xf6\xbd\xfa\x91\x76\xc9\xaa\x8b\x12\xe2\xef\x4a\xa5\x17\x03\x27\x26\x74\x82\xb4\xc1\x3b\x62\x10\x06\x1d\x7f\x22\x5a\x41\xb4\x41\x3e\x2a\x10\xde\x62\xda\x79\xaf\x7a\xc1\x73\x11\x7e\xaa\x41\xae\x33\x33\xbb\x28\x5f\xbe\xfc\x12\xf5\xb8\xa3\xd5\x62\x1e\xa7\x5e\x1a\xb3\x47\x2f\xc4\x4e\xf1\x30\x1f\x5b\x29\x50\x75\x6d\xf7\xd4\xa9\x8b\x2c\xdd\xfa\xa2\x18\xb1\x9b\xed\xbf\xff\x0f\x2c\x09\xe7\x5b\x7e\x17\xfd\x85\x85\x20\x5c\x2e\x26\x06\x7d\x86\xbe\x58\x7f\xb1\xca\x1a\xec\x89\x10\x78\x4b\xe6\x0a\xac\x57\x81\xed\xe8\x85\x56\xc7\xba\xc7\xff\x24\x9c\xe9\x95\x25\x92\x75\x99\xb1\x03\x4c\x63\x62\xd1\x86\x12\xeb\x80\x14\x47\x64\x43\x8a\x9a\xd3\xe6\xb6\xf6\xb6\x79\x6b\xbb\xd3\x81\xd9\x06\x57\xc4\xa8\xb1\xda\xe0\x1e\x04\x04\x48\x8c\xb7\xcf\xb7\x01\xd3\xd6\x8c\x35\x6e\x86\x3b\xcb\xd8\x77\x8c\xe6\x4f\x2c\x72\x4d\x41\xdf\xbe\x78\x95\xab\xf9\x40\xfa\x7a\x27\x9d\x35\x81\xf7\x04\x1c\x57\x46\xbf\x56\x76\x94\xcd\x3e\xf1\x43\x05\x24\x0e\x5e\x13\x6f\x73\x29\x06\xda\x08\xd2\xc9\x15\xb0\x30\x79\x87\xf7\x7d\x0b\xf1\x71\x2a\xbd\x89\xab\x78\x09\xdd\x52\x8c\x70\xa7\xe3\xdf\x6d\xb8\x68\x54\x56\x22\x61\xf1\x4a\xc5\x0b\xc0\x38\x47\x8f\xde\x97\x2c\xdb\xbb\x2f\x63\xcd\xcd\x1e\x3a\xd1\x43\xab\x82\x86\xf1\xc4\x15\xda\x0c\x47\xeb\xc6\x96\xb1\x21\xe5\xf0\xd6\xe3\xa3\xc6\xce\x86\x74\xa4\xa1\x15\xc5\x9c\x9a\x70\x3e\x27\x72\xe0\x9d\x08\x44\x87\xe1\xc4\xcd\x70\x0c\x65\xd0\xd4\xfa\x2c\xb0\x31\x77\x99\xb3\xf9\x1c\x7d\x95\x78\x9a\xe0\x98\xba\x0b\xa2\x1c\x28\x8d\x06\xe8\x73\x7c\xa6\xbb\x2a\xd0\xf1\x96\x6a\xb2\x22\x7a\x63\xec\x6e\x89\x0c\x3d\x4d\xf6\xf1\x0b\x22\xab\x9d\xb5\x21\x8d\xb7\xc8\xe8\x36\xd9\x7e\x47\xd6\x15\x25\x07\x40\x84\x1f\x57\xed\x74\xe2\xd3\x4a\x21\x00\x2b\x92\xd4\x97\x79\x60\x6c\x14\x28\xac\xbb\x84\x39\x31\x22\x4e\x57\x51\xa7\x90\xb7\xe4\xac\x14\x16\x31\x4d\x5c\x03\x71\xdb\x9d\x7f\xdb\xd1\xf6\x2d\x38\x64\xc3\xae\x54\xa0\xa1\x57\xb4\xb0\xe5\x78\xa3\x4c\x3f\xdc\x1d\x59\x37\x62\xe4\x85\x08\x18\x5f\x96\xc2\xc9\xeb\x59\x5b\xfa\x26\xe1\x86\x1d\x16\x06\x99\x5f\x93\x8a\xed\xc9\x9f\x77\x4c\xd8\xe0\x9f\x23\x74\xd2\xb6\x42\x1d\x83\x8e\x3f\x49\x6d\x39\xdc\x38\xc7\x95\xcc\x30\xd6\x79\xed\xd1\x76\x9c\x44\x0e\x68\x7c\x06\x3d\x54\xa2\x3d\xc1\x9d\xb7\x27\x37\x00\x8d\x40\x5b\x05\x8f\xc2\x3d\xc8\x09\x36\x8c\xb9\xc0\x2c\x9a\x46\xd6\xa3\x10\x04\x7e\xb1\x31\x79\x1d\xf8\x45\x63\x57\x3e\x10\x86\x62\x68\xed\x47\x02\xb3\x1d\x60\x81\x80\x4c\x17\x78\xa8\xb1\xb1\x06\x22\xd4\xaf\xdc\xc0\x4a\x24\xb8\x50\x05\x67\x15\x21\xb5\xe1\x01\xac\xfd\x22\x76\xf0\xbe\xa5\xde\xa9\x22\x94\xcd\x8d\xdb\xcc\xb9\x02\xf9\x4b\x29\x16\x1c\xe4\x66\x51\xe7\xf1\x69\xb0\x42\x3a\x77\x71\xad\xfe\x03\x2f\x44\xee\xb0\x15\x90\x83\x88\x16\xea\x58\xf5\x04\xb5\x82\x63\xb6\x82\x80\xec\xbb\x65\xca\xc1\x0a\xf8\x74\x57\xd4\xd9\xa9\x7d\x0a\xa6\xf1\x34\xd3\x3e\x0f\x88\x46\xa3\x5c\x0b\xde\xd0\xfb\x2b\x19\x64\x21\xd6\x1c\x1f\xbc\x4b\x91\xca\x1d\xfc\xa1\x51\x7f\x7d\xa5\x75\x49\x2a\x05\xaa\x58\xdb\x92\x20\xad\x04\xc5\x51\x8d\x78\x36\x61\xf4\xc3\xc2\x54\x9f\xe3\xee\xf8\xb9\x9a\x0c\x92\x1a\x8e\x6c\x08\x3c\xc0\x36\xbf\x01\x54\xc4\x2d\xbd\x4d\x3d\x4e\x62\xa8\x76\x08\x87\xb3\xc1\xb9\xee\xe6\x81\xf4\x8f\x16\x12\x7d\xb4\xda\xa9\x01\xaf\x89\x4e\xbf\xb0\x9a\x2c\x35\xbe\xcb\x41\xc0\x77\x7d\x3e\x47\x13\xa9\x63\xda\x7a\xb0\xc1\xa9\x94\xfb\xe0\xbc\x6f\xc4\x38\x39\x5f\x6a\x7e\xe5\x7e\x9b\xa3\x63\x01\x0f\x72\xb7\xc8\x24\xfe\x4f\x06\x2d\xcb\xd2\x69\x6b\x47\x5c\xe5\x2e\xe6\x4b\xb7\x1b\x9a\x16\xd3\x60\xcf\xf3\xe9\xfc\xc4\x44\x16\x6b\xce\xe4\x04\xe1\x5e\x49\x1d\x52\xa3\xd8\xd1\xc7\xac\x7c\x86\x6d\x0d\xf3\x1c\xbd\x1c\x3e\x81\xa0\x70\xf2\x10\x43\xf7\x17\xb3\x45\xdf\xd4\x66\xe0\xdd\x25\x6e\xdb\x0d\xae\x6e\x32\xb7\x97\x4f\x80\x0a\x23\x02\x3e\xc4\xee\xd3\x2b\x0e\x8a\x68\xb7\x4a\x21\xa3\x90\x8c\x5b\xd9\x9c\x09\x48\x0d\x5a\xa7\xa3\xfe\x43\x49\xf0\x03\x15\x64\xa2\x23\x0d\xb4\x8e\x65\x36\xc2\x2b\x13\x48\xd9\x90\x0a\x0f\x7a\x1c\x93\xd7\x11\xa7\x62\x75\x61\xde\x1d\x0f\xf3\x02\x13\x9b\x48\xa7\xd0\x06\x8d\xab\x96\xe0\x6e\xe8\x17\x4b\x94\x4d\xae\x23\x37\x26\x25\x09\x84\x03\xcc\x3d\x54\x92\xf1\x95\x0d\xc7\x20\xb9\x63\x82\x28\x24\x57\x3a\x13\x37\x1a\x85\x36\xe8\x0c\xf4\x7a\x23\x96\x02\x1f\x44\x6e\x4e\x92\x3d\x9d\xca\x46\x09\x3f\x85\xcc\x14\x98\x66\x18\x68\x9d\x5b\x3e\x68\x34\x4f\x25\x82\x2d\xf4\x9e\x94\x07\x09\xc2\x3e\xe5\x55\x95\xbb\x39\x57\x64\xd4\xc9\x3c\x1d\xed\xa2\x5d\x94\x69\x17\xf5\x74\xb4\x4b\xa9\xc3\x58\xf3\xb2\x33\x33\x46\x48\xa1\xc9\xc4\x60\x3a\xb2\x91\x8f\xa0\x9e\x97\xbb\x79\x2f\x67\xd4\xcb\x3e\x1e\xe9\x94\xf9\x3e\xe3\xce\xc9\xcf\xa7\x06\xf1\x39\x3b\x1d\x6d\xcb\x8d\xad\x1f\x35\x9a\x67\xc4\x1d\xba\x1c\x31\xdd\x13\xc5\xbd\x6c\x1b\x7e\x07\xca\x9a\x39\x1c\x21\x26\x53\x91\x2c\xae\x66\xc2\x00\xa4\x76\x97\x0c\xd6\xff\x06\x9b\xd0\x9d\x8a\x5a\xa1\x54\xc8\xfa\x84\x36\x63\x22\x0d\x68\x63\xf2\x19\x1a\x74\xe1\x5c\x8a\xf9\x01\x1a\x64\x57\xf8\x59\x72\xfa\x4f\xe5\xbd\x99\x81\x93\x66\x4d\xc5\x75\xa7\x8c\xec\x8a\x64\xfd\x14\xb1\x2f\xd1\xa3\x47\xba\x5d\x8d\x2e\x2e\x0a\xac\x55\x18\x59\x7d\x0c\x8e\x38\x69\xb2\x9f\xef\xa6\x7c\xba\x1e\xb7\x63\x74\x33\x62\xf0\xfd\x99\xc8\xd4\xd8\x9b\x6d\xd8\xcf\x32\xfa\x92\x85\x1a\x40\x43\x84\x4c\x40\xfc\x5f\x03\x71\x42\x73\x99\xc0\x6c\x59\x29\x1a\x43\xf4\xff\x67\xb6\x65\x59\x64\x18\xc8\xf9\x77\x73\x45\x47\x81\x83\xcd\x16\x04\x43\x9d\x10\x2f\x67\x17\x11\xcb\xa2\x8c\xcd\xcd\x88\x71\xd0\xe5\xee\x37\x72\x94\x05\xa4\x6f\x3c\x64\x2e\x08\x0e\x36\xb6\x77\xa5\x91\x77\x92\xe3\x53\xce\x34\x3d\x9f\xbe\x07\xd5\xc2\xc6\x0f\x3d\xaa\x87\xbe\xa5\x15\x96\x0e\x68\xe1\x8c\x71\x2a\xc9\xde\xa4\xbd\x14\x42\xd8\x7f\x40\x8f\xdc\xbc\x68\xea\x88\x16\x7c\x61\x42\x71\xf7\x8b\x8c\xba\x01\x62\x37\xbd\x3a\xd1\x71\xcb\x09\xae\x8f\x89\xe9\x92\x47\x40\x6d\xfa\xe6\xd8\x09\x58\xd2\xfd\xee\x19\xbf\x0d\xa0\x34\x31\x95\xbe\x40\xce\xda\xa9\x70\x7d\x85\x7e\xd6\x00\x84\xa7\x90\x61\x30\x7d\xeb\xae\x31\x98\x37\x04\x09\x57\x6e\xb0\x70\x91\xd3\xa7\x3f\x2f\xec\x9a\xb6\x04\xc0\x5d\x2c\xd7\x3e\x3d\x69\xa9\x44\x9c\x82\x41\x2b\x57\xbf\x0c\x04\x64\x1f\xdc\x2a\x7b\xfa\xf3\xe9\xb5\x87\x43\xad\xc7\xd1\xb9\xc1\xad\xc2\x65\xa6\x2d\x78\x05\xf9\xb7\x44\xa1\xc5\xd5\x2d\x64\xdd\xd6\x8c\x68\x94\x98\x9c\xc4\x04\x35\x3a\x58\xc8\x1a\x54\xc2\x8e\xfa\xad\x84\x87\x82\x8a\xfc\x6b\xa4\x06\xcc\xc3\xcb\x59\xc4\x1d\x54\x68\x45\xbe\xc4\x0d\x00\xb6\xbe\x97\xa5\x85\x39\xfa\x60\x78\x5c\x36\x9e\x42\x6f\xf7\x99\x89\x9b\x81\x4e\x23\x04\xdd\x76\xa4\xd6\x17\xc0\xd2\xe0\x7e\xf8\x57\x6a\x89\xfb\x28\x6b\xb8\xeb\x3e\x3f\xd3\xcb\x13\x88\xa1\xae\xf3\xb8\x9a\xdb\xbc\x34\x03\x68\x7c\x5e\xda\x4c\x1b\x56\x3a\xce\x58\x0e\x0b\x5f\x37\x89\x72\x66\xd2\xd9\x15\x0f\xd2\x76\x85\x5e\xed\x38\x3b\xe8\xa8\x6c\x1e\xd9\x8d\x33\xad\xbe\xf3\xf9\xb9\x05\x41\x5e\xdc\xa5\x93\x01\xdf\x90\x7c\x4a\x60\x56\x58\x6d\xdc\x86\x28\x60\x0b\x81\x5f\x8b\x99\xb2\x7e\x66\x29\xa8\x6c\x1a\xdc\x62\x8e\xa8\xb8\xcc\x57\xf2\x17\x2c\x20\x25\xc5\x64\x43\xe4\x09\x1a\x27\x47\x78\x3e\xc8\x1d\xe3\x74\x2c\xc1\xc3\x7e\x20\xc0\x8f\x7b\x17\xe0\x2f\xaf\xe2\x6c\x04\x7e\xb3\xc1\x97\xe0\x3f\xfd\xd3\x39\xfa\x5e\x7b\x67\x1d\x91\x43\x18\x53\xa6\xa9\x1b\x09\xf6\x2a\xdc\x7b\x21\xad\x64\x65\xbe\xdd\xc1\xef\xe3\x80\xc0\x70\x33\x90\x19\xe5\xb1\x4d\xae\xe8\x7f\xf3\x15\xe9\xcb\x7e\x1a\x4b\xf1\x35\x81\x1d\x6b\x6b\xe1\x9d\xa2\x25\x65\x79\x02\x01\x76\xa8\xf2\xf2\xed\xaf\x8f\x1e\x41\x63\xf0\x57\x9f\xc4\xc5\x28\x3e\x22\xd2\x38\x89\x0d\xf5\xd9\x70\x82\x6f\x26\x5b\xdd\x8d\xfe\x5a\xfe\xa5\xfc\x74\x2c\x9d\xc1\x7e\x4e\x6e\x6f\xd9\x65\x83\xe6\x24\x3c\x8c\x9f\x22\x67\xe8\xb9\x89\x71\x14\xc5\x18\x68\x0d\xee\xf8\xd4\xd9\x5c\x86\x4e\xd4\x4f\x85\x84\x33\x94\xb9\x86\x3e\x0a\x01\x7e\x3f\x7f\xe5\xe5\xc7\xa2\x9b\x49\x84\x3d\x25\x25\x7e\x7f\x8f\xa9\xd9\xeb\xcf\x49\x22\x96\xfd\x2f\xad\x6e\xf7\xd8\x29\x58\x36\x50\xb4\xc0\x73\x9c\x7f\xf9\x94\xe6\x9e\x8c\x59\x54\x91\xf5\x3e\x2e\x99\x28\xc0\xea\x0f\x9d\x4b\x3e\xf6\x59\x51\x05\xa7\x45\x74\xf2\x58\x19\x52\x38\x77\x5c\xb3\x75\x4d\x7a\x26\xa8\x5c\x34\x9c\xed\xcf\x15\x7a\x32\x9c\x8d\xf9\x21\x91\x96\x76\xe0\x6b\x89\x73\x25\x8c\x91\x6a\x0c\x3d\xbb\x8a\x24\x7b\xcb\x04\xb3\xd0\xd3\xc7\xb3\xdc\x72\x6e\xb7\xec\x97\xb2\x87\x3a\x8b\x51\x7c\x6b\xee\xb7\x3a\xb7\x0e\xea\x18\x77\x16\xb9\x80\x60\x94\xe4\x83\x90\x07\xc6\xe5\xee\xb8\xd2\x57\xa9\x21\x4d\x29\xae\xea\x52\x31\xce\x49\x95\xa5\xd0\xf9\x04\x9e\xcd\xa0\x0e\xfa\x23\xd3\x86\x71\xdf\x1e\x9d\x3e\x4d\x25\xf8\x44\x9e\xf4\x4c\x80\x8a\x5c\x53\x08\x70\xe8\xa9\x14\x00\x8a\x1d\xb6\x03\xe6\xb8\x93\x24\xf0\xb3\x98\x29\x24\x4b\x40\xb1\x21\x12\x0c\x4a\xc2\x86\xec\xec\xd5\x33\x0f\x0c\xed\x10\xee\x8e\x86\xf5\x0e\xf8\x58\x88\x07\x11\x4e\x1a\xe6\xd2\xed\xc0\xa0\x51\x78\x80\x81\x7c\xd4\xcf\xc7\x3c\x4b\xf3\xac\xd2\x61\x95\xd1\x7f\x20\x1a\x7f\x71\xd5\x0d\x9f\xf2\x24\x01\x2c\x81\x06\x11\x47\x4b\x6d\x1c\x94\x8a\x10\xe1\x28\xf2\xa0\xa1\x09\x39\xd7\x35\x32\xd6\x05\xe6\x05\x49\xee\x23\xdd\x94\x15\x20\xc3\x1b\x39\x2f\x5e\x79\x17\xd7\xe6\x18\xd6\x3e\x78\xfa\xf3\x22\x02\x28\x34\xfb\x9e\x79\x91\xbf\xc7\x8e\x7d\xd4\xb8\x41\x6d\x15\x45\x3e\xd6\x0b\x9b\xda\x95\x66\x31\xd1\x98\x59\x0a\xdd\x5c\x9c\x8d\xb9\xa4\x3f\x1e\x55\x60\x48\xea\x29\x96\x33\x50\x56\x40\x8a\x37\x45\x13\x4f\x59\x19\x51\x27\xd3\x08\xbd\xb4\xca\x1c\x4b\xce\xaf\xa4\x99\x26\x8c\xa8\x98\xce\xcf\xc1\xa5\xe4\xeb\x59\xbc\x50\x8b\xff\x3b\xee\xf0\x96\x04\x17\x49\x7d\xbc\x05\x44\xe1\x9e\x99\x53\xad\xe0\xc9\xa2\x8d\xb7\x36\xcd\xfd\x16\xdc\xf7\xa4\x43\x62\x80\xa9\x9a\xa1\x6d\x8f\xb9\xd8\x14\x6e\x72\x1d\x93\xd7\x2e\xca\x2d\x91\xcf\x75\x3d\x88\x85\x37\x42\xcf\xac\xfa\xb7\x5c\x47\xb5\x81\xb4\x60\x7d\xfa\xe8\x7d\xba\x91\xe9\x1d\xe4\xbb\x67\x65\x85\xe2\x54\x3f\x77\x2f\x3a\xda\x8f\x8f\x3f\xf4\xc4\x28\xe2\x93\x63\x0e\x52\x58\x2c\xca\x6d\xdd\x21\x9b\xd9\x1e\x23\x0f\xdc\x1c\x49\xd3\xeb\x2b\x51\x5e\xf8\x87\x85\x60\xef\x13\x4f\x6d\x2d\x04\x41\x28\xba\x10\x1d\x4c\xa9\xf3\x6f\x44\x7e\x06\xce\x51\xa0\xc1\x3d\xbb\xc5\x6d\x92\xaa\xe7\x6e\x35\xfb\xf8\xb4\x23\xfa\xfc\x2a\xa1\xf7\xa9\xc6\xd6\xbc\xea\xe1\x40\x54\x43\xe6\x58\x2e\x38\x2d\x0b\x58\xb7\x09\x03\x85\x10\xbc\x1b\x3f\x55\x3e\xd2\x45\x7f\x87\xcd\x2d\x4c\xdc\x21\xbc\x61\x5c\x3a\x77\xb6\xaf\x4e\xa3\xd8\x4c\x1d\x86\x4e\x49\x72\xc1\x4c\x9d\xff\x73\x50\xad\x8f\xb6\x50\x18\x95\xd9\xa1\x76\x80\x0b\xf3\x3e\x3f\xdb\x3a\xbb\x29\x17\xd2\x28\xeb\xe5\x0c\x75\x93\x9b\xa5\x1b\xba\xe9\x4d\x1a\x92\x74\x27\xb0\x2b\xc1\x11\x08\xc3\x15\x32\x69\x6a\x5b\x4e\x74\xcd\x06\xa3\xd7\x35\x8c\xe7\x87\xee\x11\x0d\x50\x7f\x01\xae\x04\xc4\x30\x28\x23\x9f\x13\x01\x35\xe1\x7c\x84\x7a\xd4\x53\xfd\x25\xca\x43\x10\x4f\x9e\xa0\x97\xf8\x98\xea\x9c\xa5\x26\x04\x57\xbb\x20\x50\x70\x34\x37\xf1\x8a\xb7\xc1\xd7\x0f\x32\xb2\x0a\x6f\x0b\x84\x4e\xc2\x91\x5b\x03\x2e\xb8\xeb\xfd\x3a\xa5\x54\xfe\xb2\xa9\x0b\x31\x1e\x0d\xc9\xe5\x30\x6d\x18\xf8\x6c\xfa\xb2\x26\xef\x66\x4c\x95\x69\x3f\x7e\xb9\x23\x6d\xd0\x22\xdd\x1b\x75\x16\x77\xb4\x9d\x32\xd0\xf3\x2e\xe5\x0b\xe7\xf6\x93\x1b\x47\x77\x88\xb4\xa2\x14\x5c\x40\x36\x7b\x66\xb4\x9e\x47\x84\x62\x3c\x5a\xdc\x63\x0a\x67\x93\x91\xeb\x31\x4d\x25\x5b\xb4\x76\x8e\x7d\x9c\x92\xf2\x2d\x33\xfc\x6b\xfd\xd9\xce\x4c\x38\xa5\x48\x3c\x37\xf7\x28\x7b\x46\xa1\x32\xa2\x2e\x84\xe8\xad\x8c\x03\x54\x78\xaa\x24\xbd\x35\xd9\x82\xf6\x06\xe9\x4a\x07\x37\xc3\xb2\x08\xba\x74\x05\xe4\x44\xec\xf0\x2d\x49\xa7\x82\x5b\x12\x60\x5c\x09\xd4\x92\x46\xae\x4c\xb9\x08\x9b\xfd\xef\xcd\x01\x7d\x39\x1b\xa3\x8e\x3d\x66\xbd\x16\xe7\xa6\xde\x9a\xd6\x5a\xc8\xbe\x97\x47\xed\xb3\x7f\x30\x85\xdb\xb3\x31\x4a\xce\xf1\x90\xe4\xbb\x51\xf1\xeb\x67\xb9\xe9\xf4\x04\x9b\x3f\x96\x88\x11\xb8\xd6\x3b\x51\x46\x07\x15\xe4\x9b\x62\xc3\x69\x07\xf5\xd9\x05\xfa\x62\xfd\x45\x89\x27\xe7\xba\x97\x9d\x22\x36\x45\xfb\x33\xf3\xd6\xee\x97\xb3\xf6\xd1\xf9\x6a\x1f\x90\xab\x76\x4f\x25\xe9\x9e\x39\x6a\xf7\xd0\xa7\x3e\x59\x6e\xda\x07\xe4\xa5\xdd\x3b\x27\xed\xa3\xf3\xd1\x4a\x84\x9f\x3f\xcb\xfb\xcd\x4d\x4b\x5b\x16\x93\x8c\x9e\x3e\xee\x9a\xb0\x90\x89\xfb\xfa\xe4\x49\xc0\xa7\xfa\x9a\x7e\xf0\x9b\xfb\x9a\x17\x93\xb2\x84\x7a\x65\x2b\x8f\xc5\x3c\x30\x5a\x4d\xcc\x26\x6a\xe4\x8c\x30\x55\x5c\x0c\xa5\x11\xd6\x51\x6e\x48\x8a\x75\xa4\x1d\x47\x18\xc2\x31\x83\xbe\x80\x9d\xf6\xca\x6d\xf9\xc9\x3b\xe6\x85\xee\x39\x97\x44\x57\xcf\x0b\x3d\xd2\xf6\x65\x36\x29\xc3\x7b\x22\xa6\x5d\x18\x38\x2c\x54\x51\x1c\x2d\xe7\x9f\xec\xd6\x7a\xda\xaf\xcc\x45\x63\xb7\xd9\xb3\xde\x93\xac\x34\x79\x7e\x14\xb4\x8e\xf8\x76\x7c\x3a\x57\xc2\x47\xcb\xfb\x57\x2b\xca\xeb\x11\x7c\xfa\x2b\x00\xde\xe3\x77\xf7\x6c\x84\x7c\x7f\x87\xe5\x0f\x3e\x36\xd9\xff\xf7\x56\x4c\x21\x6c\x16\x5d\x7a\x35\x15\xc0\x1b\xc6\xf7\x50\x56\x2e\x86\x3b\x20\x37\x74\x91\xe4\x5b\x16\x7d\x7e\x1a\xe1\xa7\xcf\xe3\x53\x47\xf0\xfd\x4e\xdd\xd9\x07\xad\xde\x73\xfb\x6d\x4a\xa5\x81\xd3\x75\x52\x7b\xf1\x5b\x76\x9f\x83\xf7\xf4\x59\x6b\x77\xf1\xf4\x31\x19\x6d\x64\xe0\xfe\x2c\x54\x07\x2b\xb2\xb6\xae\x7f\x90\x3f\xcf\xbb\x8f\xa4\x11\x5c\x8c\xf0\x49\x5e\x73\xc0\x78\xec\x4d\xc1\x2f\x0b\xa7\x4d\xeb\x11\x71\x31\xc8\xa0\x63\x7c\x07\x5f\xe9\xec\xb3\x6f\xe0\xeb\xde\x26\x02\x61\x9c\xa5\x54\x20\xda\xc1\x8d\x2b\x6b\xdb\xb8\x7b\x2b\x81\xbc\x14\xae\xc2\xb2\x32\xbd\xf6\x64\xbf\x21\x7c\xec\xfa\x48\x98\xd1\x39\x2f\x9d\x73\x96\x51\xea\x86\xfc\x70\x63\x34\x2a\x15\xe0\x57\x67\xb9\x78\xe5\xa8\xc6\xc2\x1a\x08\x7a\x04\x88\x02\x0b\xf6\xec\x61\x4e\x75\xfe\x82\x78\xcf\x89\x8b\x3b\xb9\xdb\xe2\x4d\xbc\x35\x10\x93\xb5\x56\x6a\x39\x56\x77\xe1\x16\x7c\x22\x4f\x7e\x6e\xec\xe1\xec\xd7\x09\xd8\x9c\xc0\xe9\x59\x16\xc7\xd1\x48\x70\xaf\x5a\xd0\xb1\x9b\xb3\xb1\xe0\x8d\x41\x16\x6b\x82\xc2\x5d\xa5\xe8\xcd\x9c\xa8\xcd\x58\xd0\xc6\x15\x28\x40\x46\x51\xf0\x0b\x35\x8e\x6f\xf7\x4b\x54\xa3\x00\x6e\xb7\xd6\xba\x48\x01\x24\xe0\xee\xd9\xad\xfa\xc3\xf9\x66\xcd\x0b\x21\x70\x56\x75\xef\x89\x89\x66\x76\xb5\xb9\x10\xa2\xd8\xcd\x04\x68\x7c\xdb\xcf\x84\x4e\x3a\xb3\x5d\xe0\xff\x13\xa5\x0d\x32\xd0\x93\xfb\xab\x55\x56\xa8\x1e\x85\x65\xc5\xb2\x0a\xe2\x3a\xbd\x4e\x32\xd3\x11\x16\x4a\x3b\x20\x6a\xff\x52\x8b\x60\x98\xd4\xd2\x88\x0a\xe3\xeb\xec\xe0\x08\x84\xdf\xb1\xba\xf5\x07\xd3\xa8\x7e\x55\x7d\xa9\x5c\xee\x2c\xba\xb3\x78\x1f\x62\x32\xa1\x3a\xdc\x1d\xb5\x10\x70\x49\xf2\x8a\x6a\x7a\x59\xa8\xe5\x58\x20\xad\xe8\x4d\x0a\x9a\xb4\xe2\x4b\x94\xa3\xb6\xeb\x72\x9c\xe1\xa7\x6a\x92\xa8\x53\x12\x6a\xef\xb9\x82\x6e\x9d\x2d\xf2\x11\xb2\xbd\xf6\x19\x1a\x03\x15\x1c\x75\xf0\xde\x89\x5b\xea\x8a\x95\x88\x40\x08\x44\xd2\xe1\x5e\x55\x4c\x52\xa0\x03\x4e\x1f\xbb\xfc\x12\x04\xdc\x96\xe7\xe8\xb5\xc6\xc6\x9b\x62\x37\x7b\xb7\xa8\x10\xab\x8b\xd9\x26\x61\x95\x30\xa4\x66\xb0\x7d\x62\x26\x07\xa0\x46\xe5\xe9\xdd\x3b\x47\x8f\xde\x47\x97\xf6\xb3\xab\x68\x90\xfd\x51\xba\x23\x22\x86\x56\x1a\xaf\x3f\xfa\xd7\xbf\xcc\x83\xe4\x64\x54\xdf\x9e\x7e\x65\x26\x78\xb6\x18\x4b\x72\x8e\x2b\x0e\x61\xb8\xfd\x3f\x72\x48\x9e\x8d\xa5\x0d\xdf\x8d\xa2\xde\x04\xec\xbe\xd1\xb9\xcf\x96\x6e\xc0\x47\x7c\xdd\xd5\xe4\x9d\xc7\xb7\x64\xd1\x83\x65\x3a\x64\x7c\xa7\x7a\x22\x10\x38\xd2\x3f\xa4\x86\x6f\xde\xe9\x6e\x33\x89\x61\x0e\x8d\x19\x80\x5c\x76\xb3\x5b\xea\x07\x40\x68\xc6\x82\x3b\x47\x33\xc7\x29\x0a\x01\xcf\xfe\xe5\x42\x17\x54\x0a\x2f\xcb\xf6\x70\xce\x22\xec\xae\xe4\xc7\x72\x40\xdf\x4b\x83\xc4\x22\xc5\xb9\xb8\x92\xae\x20\xc3\x3e\x14\x03\x8c\xd7\x7a\xbc\x5f\x06\xe2\x82\x79\xd6\xd0\x0c\x04\x8a\x33\x6d\x84\x33\x1e\x8e\xbe\x00\xf7\x0c\x01\x12\xc8\xe3\xf3\x5c\x5d\x58\x4d\x89\x15\xb8\xec\x6a\x13\xe5\xad\xbf\x30\x71\x36\xde\xdb\xc3\x38\xc7\x5d\x18\x85\xe5\x97\x79\x09\xec\x9a\xea\xa8\x8c\xae\xe0\x69\xef\x0e\xa8\x5e\x90\xf7\x64\x1f\xb8\x17\xd0\x4c\xd4\x35\xb8\xc5\x2e\xe4\x2e\xce\xd1\x57\xef\x35\x20\xee\x66\xe5\x5d\x34\xf7\x95\x9f\x57\x32\x74\x43\x48\x8f\xd4\x30\x37\xc1\x55\x4e\xa4\x60\xd0\xda\xee\xde\xec\x5b\xf1\xa6\x6e\xae\xb0\xa2\xc7\xcf\x34\x3b\xa9\x2f\xaf\xdb\x64\x0d\xe8\xfa\x2a\x63\xaa\x7c\x15\xa4\x56\x33\x9e\xa3\xf7\x5a\x27\x38\x47\x66\x3d\xc8\x73\xe6\xdd\x5d\xea\x25\x53\xda\x5d\xf4\xe8\xd2\xeb\x7e\x50\x84\x4b\xec\x7c\xe1\x2d\x5b\xe3\x25\x32\x55\xc3\xd3\xfa\xbf\x9a\xe0\x7f\x92\x26\xe8\x55\xc1\xe4\x7c\x4d\x0d\xe2\x16\x52\x64\x48\xe7\xd3\x0d\xd3\xec\x33\xda\xd5\x84\xd4\x90\x8f\xef\x0c\xef\xb0\xb2\x76\x66\x16\xfb\x6a\x35\x3a\x0b\xeb\x1e\x4e\x05\x34\x99\x04\x1c\x56\xd6\x08\x49\xf2\x1c\x5d\xda\xb7\x59\xf9\x73\xde\xf9\x06\xa2\xe4\x33\x9d\xb0\xe1\x32\x39\x75\xc1\x22\x35\xac\xaf\x0b\x67\x4d\xde\x42\xf2\x54\xd7\x48\xbd\xa4\x68\x89\x81\xdd\x5f\x30\xf5\x3f\xe1\x92\xb2\x95\xd4\x44\x28\xb5\xc3\x97\x0f\xb2\xd9\x85\xd7\x57\xcb\x82\xf3\xe3\xba\x13\x92\xe0\x1a\xa4\x1e\x91\x46\x35\x46\x98\x6f\xa8\xe4\x4a\x36\xc2\x9b\x98\x6c\x2d\x73\x9b\x05\x05\xf5\x48\x83\x92\x50\x50\x3d\xa8\x58\xe5\xdc\xcc\x62\x72\x79\xcc\x4b\x23\xa4\x3a\x85\x49\xdb\xe4\xc4\xa7\x10\xaa\x44\xbf\xa6\x10\x85\xc7\x2c\xab\x4b\x35\x71\x9e\x83\xc7\xd6\xb6\x2d\x0a\x22\x34\x2e\x8c\x8a\x8f\x27\x02\xb4\xa7\x7d\xc0\xe5\xa8\xf2\x6f\xeb\x00\x1e\x93\x4d\xe5\xe7\x27\x1d\xc8\xe3\xc1\xf3\xdf\xc4\x7b\x6c\xbf\x8d\x91\x87\xd7\x49\xd0\x85\x3b\xb8\xa7\xe8\xc9\xd6\xc1\xb4\x6d\xa3\x6b\x9d\x79\x71\x4c\x14\x97\x24\xed\x88\xb7\x2e\x2d\x2f\x3a\x1d\x23\x77\x14\xb2\xd6\xea\xcb\x8a\x8c\x01\xb7\x56\x77\x79\x9d\x2d\xe0\x8d\x6a\x93\x56\x37\x37\xf3\xfb\xb7\x49\x04\x43\xea\x7a\x97\xba\xf4\x96\xbe\x56\x07\xef\x48\x43\x07\x62\xee\x59\x31\xf3\x8a\x52\x78\x2b\x4a\x34\xa4\x29\xa2\xb6\x19\x78\xb7\x78\xfa\xd8\x8f\x59\x48\xee\x31\x2b\x7f\x9b\xc1\xfb\xd6\xfa\xf8\x40\xa5\x22\xb5\x53\xcb\x0a\x37\x25\x71\x5d\xa7\x96\x2a\x88\x2b\xa7\x4c\x9d\x17\x14\xac\x55\xcc\x59\xa5\x58\x77\xf6\xa8\x10\x6f\xa8\x38\xee\x41\xe4\xd9\x37\xa3\x06\x55\x83\xa3\x82\x5c\x4c\x27\x9d\xd0\xe0\xfd\x73\x79\xfe\x20\x1e\xad\x4f\x81\xc2\x37\x96\x95\x53\x6b\xe0\x7d\x2d\x7a\x00\xdf\x6d\x2c\x24\x51\xbe\x04\xfa\xfd\x1e\x43\x6e\x54\x75\xa3\xdf\x9c\x67\xaf\x0d\xbc\x1d\x07\xec\xad\x02\x9c\x42\x02\x71\xc5\xf6\x3d\x96\xe6\xc2\x77\x69\x78\xcc\x39\x3e\xa2\x9e\xb3\x9e\x70\xc8\x8e\xce\x1a\x4d\x20\xe0\x02\xbd\x7e\x93\xb5\x6f\x18\x0f\xd2\x4d\xbb\x7c\xfd\xe5\xcc\xbb\xf1\x69\xce\xd6\x90\x18\x5e\x2f\xd2\xd4\xbb\x7b\x66\xd7\x85\x19\x46\x85\xb7\xf3\xd9\x4f\xe1\x2d\x7d\x3e\xa7\xfc\x4b\x3b\xf7\x59\x2e\xd7\xe6\x90\xeb\x1f\xee\x34\x32\x09\x0c\xa1\x30\xfd\xf7\x9d\x14\xc5\xb7\x04\x8e\x13\xca\xc7\x04\x2a\x4d\x3e\x4f\xb6\x61\x81\x6b\x28\x32\xc1\x0a\x02\x2e\xfa\xfd\x2f\xa4\xed\x83\x90\x5c\xe4\xae\x90\x4c\x75\x2f\xdc\xc2\x60\x8d\xd1\xbd\xba\x46\x6a\x57\xe4\x1e\xf7\xb1\x59\x3a\xed\x4d\x9a\x21\x76\xb5\x09\x32\xe6\x25\x2c\x78\x65\x52\x7e\x75\xd5\xe8\xbc\x3d\xbb\xb6\x41\xd2\xbf\x92\x63\x3c\x5f\x29\x6d\x30\xed\xac\x0d\xdc\xc5\x0d\xd1\x2a\xdc\x75\x70\x1e\xbc\x37\x50\x16\x0e\xcf\xbb\x24\x3d\x7e\x2c\xab\xb7\x00\xee\xeb\x68\x96\x37\x67\x19\xf8\xc5\x62\x57\x05\xd0\xb3\x81\xd2\xa5\x5c\xad\x4a\xa0\x17\xe4\xd6\x54\x4e\xf2\x89\x49\xe1\xef\xab\x37\x4e\x4a\x16\x8e\xc8\x7c\xba\x51\xff\x67\x21\x9e\xf0\x31\x74\x6e\x02\x0b\x27\x48\x1d\xce\xe7\x7b\x13\x7b\x19\xba\x4f\x4d\xef\xe0\x63\x73\x17\x99\xdc\x7d\x29\xab\x51\xf8\x7d\x99\x54\x0c\xad\x13\xbe\xab\xc9\x3b\xeb\x44\x9b\xb1\xa5\x70\x7b\x02\x3a\x2d\x58\x53\xd2\x7e\x02\x8b\xd3\xdc\xb8\x0f\xcb\x90\x28\x8b\xfe\x5d\x62\xde\xce\x9d\x5a\x63\x77\x81\xe5\x79\x04\x7c\x1a\xa5\x45\xa1\xae\x3e\x1d\x83\x32\x68\xf4\x9e\x2a\x7d\xfd\xdf\x54\x09\x3d\x92\xb4\x52\x68\xa0\xb6\x79\x43\x1e\x77\xb5\x2b\xde\x99\xbe\xfb\xef\x5a\x46\x2f\xea\x22\xef\x48\x35\x48\x7f\xd3\x2e\x0f\xc5\x3a\xdf\x9d\x7e\xad\x60\xd1\x5d\xf6\xf1\xc1\xad\x84\xa0\x12\x5b\x37\x32\x12\x2c\xd6\x41\x80\xcc\x60\xe4\x59\xfe\x86\x08\x4e\x97\x1a\x60\x38\x33\x2f\x7e\x53\x20\x32\x97\x80\x22\x5d\x3d\x16\xf2\x0e\xde\xe0\xde\xf9\x8b\x69\x30\xd9\x59\xc1\x99\xd2\x46\x39\x59\x23\xa6\x58\x4e\xa3\xf3\xd8\x3b\x1e\xbc\x94\x50\x6a\x39\x3f\x6f\x39\xdf\xc6\x48\x04\x82\x4f\x2e\x01\x9d\x12\x67\x79\xeb\x25\x63\x22\x36\xc1\x5a\x6b\x7f\x79\x76\x8a\x68\x39\x0a\x0e\x26\x6c\xa4\xeb\x8a\x81\x47\x47\x29\xef\x26\x8f\x23\x75\xaa\xa3\xeb\xab\xa0\xe8\xb0\x7b\x63\x9d\xe5\xa4\x29\x62\x9f\x19\xa7\x9c\x28\xba\xe7\x08\xfa\x86\x1c\xa7\x8a\x1a\xe6\x01\xac\x93\x6b\xb5\x14\xab\x96\x67\x96\xae\x4f\x92\xb7\x66\xf3\xdf\x82\x90\x78\x0b\x1b\xfc\x76\x5e\x79\xcd\x8f\x0a\xa5\xe5\x35\xf4\x0a\x32\x36\xa1\xca\x37\x41\xd0\x73\x46\x6b\x2b\x96\x6d\xaf\xd1\x72\x7b\x89\x3d\x76\x97\x99\xb3\x2e\x1a\x2c\xca\xc7\xd0\xd8\xcc\x67\x13\xda\x72\xb8\x6b\xc9\x16\x8f\x45\x13\xa3\x46\xcf\x6d\xb9\x7a\x1b\x99\xb3\xe9\x08\xa6\x0a\x9b\x3f\x11\x72\x8f\xc3\xd4\xae\x7e\x40\x28\x33\x8d\x5b\x8f\x57\xa1\x9b\xf2\xeb\xe8\x8c\xb8\x99\xc5\xaf\xf2\x32\xd2\x19\xc0\x4e\x68\x9b\x06\x10\xdb\x06\x09\x4c\x3a\x39\x4b\x84\x17\x8a\x89\xc0\x2a\x4e\x86\xf8\x0b\x43\xc5\x2e\xb4\xa8\x0a\x9f\xe4\xc3\xdc\xda\x6c\x1f\xb2\xec\xfb\x1e\x56\xe5\x0a\xe4\x4a\xd5\x18\xcd\x00\x40\x1f\x77\x42\x9f\xfd\x27\x9e\x7e\x1f\x77\x8c\x15\x32\x56\xee\x25\xe3\xdd\x11\xe6\x8c\x88\x4f\x2a\xf7\x3f\x6d\x42\x4d\x22\x2d\xca\x12\xf7\xc4\x69\x63\x1d\x41\x91\x67\x27\xf7\x73\xfe\x48\x38\x6d\xcc\x1b\x14\x34\x22\x1c\xd6\x6a\x5d\x49\x14\xa3\x1e\x73\x77\xf5\xd8\x3a\x74\xaf\x6b\xf1\x36\xa3\x52\xa5\xd6\x19\x58\x00\x34\x4f\xa7\xd7\x57\xde\xbc\x5f\x8c\xdc\x4d\x7f\xf2\x04\xbd\xa0\x1d\x94\xa3\xf5\x76\x87\x9d\x97\x98\xa5\xe6\x61\x76\xa4\x4f\xcb\x6c\xee\x5c\xe2\x42\xb5\x36\x9d\x55\x73\x0d\x05\x87\xbe\x28\xba\x1d\xf5\x5b\x65\x03\x84\x97\x0d\x6a\xda\x20\x5d\xf7\xc3\x5f\xe5\x1f\xbf\x70\x3c\x5e\xc2\xab\x5c\x8a\x8b\x1a\x13\x4f\xff\xff\x3f\xe8\x4f\x27\x9c\x94\x28\xac\x7a\x20\x02\xb3\x8b\xc6\xe6\x96\xfd\x8c\x1f\xbd\x28\xb3\xec\x73\xa5\xa0\x7c\x3c\x27\x59\x4d\x51\x93\x4b\x23\x7b\xdd\xcb\x2b\xfd\x31\xac\x0c\x2b\x2a\x09\xc7\xda\xa2\xbf\x25\x3c\x4c\x9d\xaf\x11\x87\x77\x1e\xb0\x46\xe3\x82\xdc\xef\xd4\xfe\x80\x4c\xab\x59\x87\xb7\x1b\x07\x3d\xbd\xb0\x23\xcc\xad\x53\x99\x9f\x59\x09\x94\xe7\xe8\x05\xbc\xca\x05\x06\xb5\xaf\xd1\x6c\x4d\xa9\xbb\x0e\x31\x8e\xc8\x2f\x03\x6e\xfd\xeb\xed\x10\xcc\x5f\x38\x9d\xaf\x3b\xb9\xb0\xd0\x3d\xf6\x40\x2f\xd1\x53\x27\x43\x42\xa5\xdc\xbe\x4b\xf3\xd3\x2d\xe4\xa5\xdd\x45\x97\xe8\x02\xbb\x49\x05\x70\x39\x6b\xd0\x86\x0d\x5d\x9d\x56\x9d\xc9\x15\x4e\xcb\x0f\x6e\x09\x63\x27\xa4\x88\x25\x64\xb8\xba\xa8\xcb\x61\x47\x5b\x2b\x62\x82\x2d\x2c\x06\x4f\xa0\xd2\x13\xd4\xbc\x40\x3d\x13\x82\xda\x17\xda\x40\x36\x00\xdb\xdb\x61\xf6\xf8\xe8\x6b\xd0\x15\xdf\xef\x15\x8c\x69\xf5\x0b\xfb\x1a\x24\xea\x83\xed\x0d\xa6\x6d\xa1\x08\xc7\x0a\x7d\x03\xae\x08\xca\x3a\xff\x12\xf8\x8e\xbc\x93\x56\x50\x16\x5e\x16\x60\x3f\x25\x7f\x66\xa8\x9f\x5c\xdc\x4f\x8f\x53\x48\x7e\x0d\xb3\xbe\x19\xf3\x71\xd2\xa6\x1c\x2b\x35\x75\x68\x9f\x5e\xcc\x29\x44\x3b\x21\x50\xf5\xbb\x45\x4f\xd6\x3f\x09\x21\x9d\x29\x7e\xf3\x27\xa9\x30\x36\x90\xff\x69\x39\xea\x00\x45\xa5\x37\x4c\x7c\x8f\x5b\x72\x2d\x4d\x7e\x20\x4a\xf5\x16\xa4\xac\x94\xc7\xe0\x75\x02\x9b\xd9\x9c\x7b\xb6\x53\x52\x5b\x29\x28\x1f\xd3\x98\x8a\x5f\xe6\x78\xb5\x9e\x2a\x3a\xfa\x1e\xa8\x69\x3b\xfd\xd3\xa5\xeb\x9a\x73\xe3\xd1\x29\x43\xe7\xc4\xb1\x52\xf4\xfe\x75\x3e\xb9\xfc\x27\xf3\x06\xaa\x40\x75\xa1\x22\xf0\x15\xc3\xcb\x36\x40\x2c\x45\x23\xfd\x43\x61\xda\xba\x82\x81\xb9\xcd\x6b\x0e\x24\xb3\x3e\xbf\xd4\x35\x38\xed\x48\x3e\x9d\x83\xfb\xbb\x30\x0b\xc3\x54\xa1\x46\xa9\x5b\x91\x39\x44\xeb\xa2\x39\xf4\x5f\x3b\xe7\xdf\x62\xe7\x94\x32\x9d\x73\x1f\x47\xe0\xe2\xb0\x26\xad\x7e\x9f\x43\x5b\xea\x12\x5c\x5b\x6a\x5b\xf3\x02\x88\xa4\x3d\x38\x9b\x14\xa1\xd4\xc1\x85\x45\x9f\x50\xe0\x8a\x67\xb3\x36\x66\x21\x9b\x02\x87\xbb\xe3\x9e\x71\x52\xe6\x15\xd5\xf0\xab\x1e\x73\xbc\x2f\x24\xdf\xe8\x5c\xb1\x30\x24\xe2\xfc\x8e\x87\x1d\xad\x76\xa6\xa6\xdb\x96\x58\x4f\x73\x6d\xe4\x5d\x69\x1d\xe3\x6f\x2e\xb8\x67\x06\xf9\xef\x82\x4f\x23\x60\x7f\x4d\xa6\x0d\x5e\xcf\xf1\x21\x7e\x9c\xdc\x08\x4c\x79\xd7\xd6\x87\x2b\xb2\xef\xd8\xd5\xc6\xb3\x19\x35\x52\xc6\xaf\x31\x9e\x46\xe7\x84\x4b\x68\x04\x9d\xa1\x4b\x88\x8a\xdc\xad\xf8\x41\xd5\x23\xcf\x02\x1c\x8d\xbe\x64\xe5\x77\xb6\x72\xb8\xe6\x1a\xb3\xde\xe4\xda\x3f\xe9\x01\x51\x2c\x48\x68\x5f\xb4\x30\xe5\x84\x49\x2f\xc5\x5a\x51\x5f\x17\x65\xfc\xcc\x2c\xb1\x4f\x5d\x31\x70\xab\xb7\xfc\x93\xd4\x0b\x9c\xa7\x20\xe7\x05\x02\xc3\xbf\xee\x79\x7c\xb1\xce\xd6\xaa\x29\x1e\x05\xba\x12\x47\x2a\x5e\x23\x7a\x50\x04\xf2\xfe\xae\xfc\xbb\x09\x90\x5f\xa8\x06\x85\x8d\x30\xf7\x52\x4c\xb9\x2e\x2e\xd0\x4d\x07\x15\x2f\xb1\xcc\x36\x00\x9c\x49\xb1\xcb\x03\x42\x70\x9e\x79\xae\xdd\x95\xe7\x7a\x31\x51\xfe\x69\x18\x68\x3d\x71\xe3\x58\x67\x20\x17\x6e\x20\xc1\x4b\x24\xe0\x57\xfd\x2e\xf4\xe0\xf6\x8e\x7e\x1f\x7a\x7b\x34\x87\x18\x75\x57\xc9\x4b\xd7\x7f\xfc\x75\x0b\x3f\xc2\x62\x79\x8e\xbe\x0a\x06\xf4\xd8\x76\xd5\x86\x4c\x66\x74\xd8\x27\x04\x3d\xdf\x27\x58\xac\x6f\xae\xbe\xe1\x2d\x79\x89\xe5\x0e\x5d\xa0\x27\x42\xff\xf9\x24\x91\x45\x63\xbd\x7d\x79\x53\xd5\x59\xaf\xb7\xd8\xf7\xee\xc1\xdd\x83\xff\x17\x00\x00\xff\xff\x1e\x5e\xa1\x80\xad\xa0\x00\x00" +var _nftstorefrontv2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xdb\x92\x1b\xb9\x91\xe8\xbb\xbe\x02\xad\x07\x0d\xe9\xa5\xa8\xd9\x8d\x13\xe7\xa1\xad\xd6\x4c\xbb\x25\xed\x76\xec\x5a\x56\xcc\x68\xec\x07\x59\x11\x0d\x56\x81\x24\xa2\x8b\x40\x19\x40\x35\xc5\xd5\x76\xc4\x7e\xc4\x7e\xe1\x7e\xc9\x09\x24\xee\x97\x2a\xb2\x25\x8d\x3d\xf6\x19\x3e\xcc\xb4\x48\x5c\x13\x79\xcf\x44\x82\xee\x7a\x2e\x14\x7a\xfc\x7a\x60\x1b\xba\xea\xc8\x3b\x7e\x4b\xd8\xe3\x47\xee\xeb\x37\x9c\x8d\xfc\xf2\xbb\x41\x30\x22\x1e\x3f\x7a\xf4\xec\xd9\x33\xf4\xe6\xf5\xbb\x1f\x15\x17\x64\x2d\x38\x53\x7f\xfc\x17\xfd\x1d\x7c\x7f\x89\x36\x84\x11\x81\x3b\xd4\x0f\xa2\xe7\x92\x20\x89\x3b\x82\xe4\xd0\xc3\x20\x0d\x67\x4a\xe0\x46\xa1\x35\x17\x7a\x0c\x89\xd4\x16\x2b\x44\x77\x7d\x47\x76\x84\x29\xa4\xb6\x04\xbd\xee\xf8\x1e\xe5\xeb\x40\x52\x61\xd6\x62\xd1\x2e\x61\x1e\xf8\xcf\x2b\xdc\x6c\x11\x6e\x1a\x3e\x40\x4f\xac\xd0\x1e\x33\x25\x91\xe2\xa8\xa3\x52\x99\x09\xf4\x4c\xb0\x06\xca\xa4\xc2\x5d\x27\x11\x46\x61\xe9\x0b\x18\x08\xb3\x16\x7a\x48\x44\x59\x4b\xef\x68\x3b\xe0\x0e\x3a\x49\xb4\xa7\x6a\x4b\x99\x19\x3d\x74\x43\x58\xa2\xff\xa0\x52\x51\xb6\x91\x66\x41\xef\xb6\x44\x10\x44\x25\xe2\x8c\xc4\x0d\x7b\x22\xdc\x12\x17\x88\x2a\xb4\xc5\xac\xd5\xe3\x9a\xd1\xf9\x1a\xe1\xae\xd3\x0b\x45\xea\xd0\x13\x09\x43\xe9\x15\xc3\x7c\xb6\xdf\xd2\x43\x17\x36\x6c\xe7\x45\x0d\x66\x68\x8b\xef\x08\xcc\xc8\x05\xda\x71\x41\xd0\xe3\x66\x50\xf2\xb1\x1e\x57\x43\x12\xf6\xdd\x0b\xda\x10\x18\x10\xc6\xd8\x70\x02\x10\x8a\x7b\xe1\xb6\x15\x44\x4a\x22\x97\xe8\x6a\x50\x12\x86\x5e\x11\x34\x48\xd2\xea\xa6\x3d\x3e\x00\x78\xf4\xac\x6b\x62\x57\xc9\x05\xe2\x6a\x4b\x84\x3e\x53\x49\x5b\x22\xb0\xa2\x9c\xc9\x25\xaa\xaf\x94\xb2\xa6\x1b\x5a\x82\x30\x6a\xf8\x6e\x47\xa5\xa4\x9c\x21\xbc\x0b\x47\x47\x25\xea\x31\x85\xf9\xf6\x5b\x4e\xee\x88\x40\x6b\xdc\xd0\x8e\x2a\xac\xec\x94\x7a\x4b\xfd\x20\x9a\x2d\x96\x64\xa9\x21\x8e\x24\xe9\x3a\xbd\x04\xcc\x10\xee\x24\x47\xcd\x96\x6b\x9c\xd3\x6b\x16\xfc\x8e\xea\xf9\x18\xe2\xbd\x5e\x19\xee\x0c\x52\xf0\x35\xda\x61\x71\x4b\x54\xdf\xe1\x86\x98\xd5\x0a\xd2\x10\x7a\x07\x03\xf5\x78\xa5\xe7\xa4\x1a\x16\xd7\xfa\xdc\xa9\x06\x87\x24\x0b\x98\xbd\x5c\xfb\x6e\x90\x4a\xc3\x4a\x09\xcc\xe4\x9a\x08\x01\x20\x33\x10\xd2\x10\x36\x07\x11\x8f\x8b\x00\x9d\x08\xac\x26\x3b\x5a\x8d\x07\x3b\x7c\xd0\xe3\xe9\x5f\x49\xab\xdb\xc6\x07\xe5\x70\xce\xac\xe6\x0e\x77\xb4\xa5\xea\xa0\x67\x21\xb8\xd9\xc2\x40\x31\xd0\x09\x96\xb4\x83\xe1\x9a\x2d\x69\x6e\x49\x4c\x3c\x6f\x2d\x20\x85\x39\xee\x3d\x56\xcd\x16\x50\xcf\x0d\x40\xee\x88\x26\x26\x4d\x1b\xd0\x1b\xa6\x74\x98\xaa\xbf\x86\x61\xae\x5f\x6a\x68\x4b\x42\x10\x85\xad\x1e\xd0\x9e\xca\xad\xfe\x6e\x35\x1c\xfc\x3e\xf5\x4e\x14\xd9\x99\xe9\x7f\x1f\xc0\x6f\x86\x37\x78\x84\x37\x1b\x41\x36\x58\xf1\x23\x2b\x4a\x28\x16\x86\x05\x3a\xa2\x4c\x11\x41\x1c\x48\x71\xd3\x10\x29\x67\xb8\xeb\xe6\x81\xe9\x64\x4c\x0b\x7d\x7a\xf4\x08\x21\x84\xe2\xb6\x84\x29\xaa\x2c\x2f\xba\x12\x04\x2b\x62\x27\x9f\x6c\xf9\x03\xd9\xf1\x3b\xdf\x12\x9a\xea\x45\x86\xc9\xae\x19\x55\x14\x77\xf4\x3f\x49\xeb\x7f\xbd\x8c\xd9\x84\x20\x92\x0f\xa2\x21\x68\x8b\x25\x5a\x11\xc2\x50\x03\xb3\xb7\x4b\xdf\xfe\x95\xde\x3d\x50\xdb\xb0\x73\xa7\xc6\xf8\x1e\x91\x8f\x3d\x69\x94\x3b\xae\xb5\xe0\x3b\x83\xb5\x61\xf4\x30\xc6\x1b\xae\x88\xe5\x94\x04\xb5\x1c\x31\xae\x90\xec\x49\x43\xd7\x07\x4d\x29\x96\x0f\x9c\xeb\x5f\x1b\xcc\xf4\xaf\x1a\xd0\x72\xcb\x87\xae\xd5\x8d\xc3\x48\x06\x38\xad\x5f\xb8\x74\xc3\x01\x4b\xd2\x54\xb7\x67\xfa\x50\xcd\x88\x0b\x18\xc7\xa2\xb6\x86\x55\x00\x03\x5e\x2b\x4d\x78\x7a\x38\x4d\x56\x54\x1f\xfc\x41\x46\x2b\x00\xe4\x0b\x13\x5b\x28\x5f\xde\x61\xda\xe1\x55\x47\xdc\xc6\x33\x9e\xd5\x12\x45\xc4\x8e\x32\x02\x38\x68\x97\xe1\x07\xb1\x64\x69\xd6\x68\xff\x11\x9d\xc6\x6c\xb9\x5c\x52\x25\x51\xc7\x1b\x58\xd5\x1c\x61\x23\x9a\x14\xdd\x69\x9a\xf6\xe3\x38\xfc\xd6\xd8\xb9\x1a\x14\xe2\xac\x3b\x98\xb6\x58\xa1\x5e\x90\x86\x4a\xbd\x5f\x40\x12\x27\x45\xdc\xd7\xc0\x31\x70\xa3\xc7\x0f\xbb\xbb\xb6\x8c\xdb\xf0\x35\x0d\x29\x99\x2f\x6e\xbf\xa5\x1d\x49\x66\xa6\xd2\xb0\x82\x05\x8a\x16\x66\x58\x2a\x07\x5e\xb3\xf3\x13\x94\x68\x0c\x58\x55\xc5\xd4\x99\xf4\xdf\xfe\x60\x4f\xf9\xfa\xe5\x39\xfa\xe9\x9a\xa9\xff\xfb\x7f\xe6\x8f\x46\x4f\x24\xc2\x70\xb7\xc2\x1c\xab\x01\x1d\x70\xdb\x9a\xb3\xc2\x35\x4a\x08\x30\xd1\x8c\xfe\xd2\x1c\xa0\xde\xe7\x40\x24\x02\x61\x8b\x85\x65\x81\x68\xbf\x25\x86\xa7\x9a\xdd\x50\x89\xc8\x8e\x2a\x45\xda\x85\x3e\x95\xe4\xb4\xa4\x16\x27\xee\xc8\xad\x80\x95\x86\x71\x09\xb2\x26\x42\xaf\x47\xe3\x69\xb3\xc5\x6c\x43\x10\x1f\x94\x16\x6e\xb6\x43\xa0\xa3\x8c\x93\xec\xb9\xb8\x5d\x77\x7c\xbf\x40\x92\x03\xbb\xc5\x82\xac\x87\x4e\x0f\x66\x78\x27\xac\x70\x90\x1a\x16\xa7\x9c\x47\x0e\xd2\x19\xb4\xd3\x9f\x70\x26\x97\x8e\x58\xed\x1f\x0b\xdf\xc6\x42\xbd\x3c\xb4\xd0\x84\xad\xd5\xbb\x43\x4f\xce\x91\xfe\x6f\xf2\xf5\x4f\x3f\x45\xed\x51\xfc\x4b\x6d\x1c\xad\x61\xbc\xc5\x07\x8d\xe0\x7f\xc4\x43\x57\x1d\x14\xda\x68\x25\xe4\x1c\xfd\xf4\x9a\x7e\x8c\xbb\x37\x83\x54\x7c\xa7\x07\xfe\x51\x09\xca\x36\xdf\x45\x3f\x79\x51\x7b\x09\x92\xb6\xd2\xd9\xb7\xf8\xc1\xca\x6f\x79\x8e\xde\x5b\x68\x7c\x88\x86\x22\x1f\x7b\x2a\x0e\x6e\xf1\xf0\x75\x89\xbe\x57\x5c\x2b\xa1\x2a\xe2\x4c\xef\x22\x12\xf3\x08\xac\xd1\xb3\xbb\x23\xed\x12\x5d\x2b\xf8\x96\x50\x90\x5e\xf0\xa3\x53\x4e\xda\x05\x12\x20\x12\x5a\x2d\xb9\x5b\x22\x95\xe0\x87\x88\x97\x4f\x9f\xba\x5f\xc9\xec\x84\x13\x45\x15\xcc\x98\x6c\xe6\xd7\x78\x8e\x7e\xc7\x79\xf7\x60\x94\xf8\xfb\xc2\x08\x4f\x1d\x27\xa3\xc3\x4f\x4c\xab\xa1\xae\x7f\xc4\xcb\xac\xc0\x6f\x83\xb6\xa8\x8f\x5f\x4b\x28\x73\xf6\x5a\x79\x6d\x07\x61\x49\xdc\xe8\xde\x96\xcf\xbc\x79\xfd\xee\xd8\xd9\xa7\xd3\xce\x44\xbe\xfe\x85\x9f\xff\x47\xdc\x91\xab\xc1\xef\x7e\x5e\xd3\x37\xf4\x5f\x78\x43\xde\x62\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\xdb\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\x4f\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\x67\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\xe7\x4f\x3e\x25\x1e\x8d\xa5\x23\xf6\xfb\x17\x8f\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\x64\xfe\x5b\xc8\xf5\x97\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\xc3\xbf\x2f\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\x6d\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\x2f\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\xcb\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\x92\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\x57\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\xe3\xce\x05\xdb\xce\xaa\xf2\x30\x30\xc1\x0b\xa4\xc4\x40\x22\x59\x97\x2c\xf0\xa7\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\xc7\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\x47\xdc\x51\x8d\x72\xc6\xe5\x06\xa3\x15\xcd\xcc\xd7\xe8\x85\x9d\x65\xb6\xd1\x68\x20\x34\x82\xfd\xae\xe3\xcd\xed\x6c\xbe\x54\x74\x47\xa4\xc2\xbb\x7e\x7e\x5e\xf4\xd6\x9f\xc7\x99\x93\x6d\x99\x2a\x5d\x4b\x7d\xb8\xe7\x20\x1e\x36\xf4\x8e\x30\x37\xa3\x1f\x16\xfd\x79\x66\xbe\x9a\x7b\x99\x61\xc5\xc5\x7a\x50\x83\x20\x67\x8f\x8f\xee\xad\x23\x6c\xa3\xb6\x49\x34\xad\x19\x54\xd1\xcd\x1d\xec\xd2\xb6\x7f\x81\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\x51\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\xf6\x0c\xbd\x25\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\x5e\xdb\x17\x72\x10\xc4\xc6\x71\x90\xb1\xbe\x47\xac\xd3\xa8\xe3\x9f\x88\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\x1e\x97\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\x40\xdf\x2e\xbf\x5d\x14\x0d\x76\x44\x4a\xbc\x21\xa7\x32\xac\x77\x91\x21\x1b\x98\x16\xe3\xec\xe9\x7f\x12\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\xde\xbc\x7e\x57\xda\x1c\x80\xfa\xe6\x24\xbd\x69\x83\x77\x04\xbc\x68\x56\xd9\xd7\x46\x9d\x4b\x85\x09\x43\x45\x28\x0e\x2e\x9c\x60\x00\x6a\x02\x5a\x49\xc2\xd4\x02\x48\x98\x7c\xc4\xbb\xbe\x83\x60\x3d\x55\xc1\xde\xd6\xb4\x84\xee\x28\x46\x98\x99\x60\x7c\x17\x6f\x1a\xd5\x35\x5a\xd8\xbc\x56\xf1\xa2\x65\x9c\xa3\x27\x9f\x6a\x66\xf6\xfd\x77\xa9\xe6\xe6\x84\x4e\xf2\xa5\xd3\x87\xe3\xe0\xe6\x02\xad\x86\x83\xf3\xa9\xab\xd4\xaa\xf3\x70\xeb\xf1\xc1\x40\x67\x45\x18\x59\xd3\x86\x62\x41\x6d\x6e\x81\x20\x6a\x10\x4c\x46\xac\xc3\x52\xe2\x6a\x38\xc4\x3c\x68\x6a\x7f\x6e\xb1\x29\x75\x59\xd9\x7c\x8e\xbe\xcf\xdc\x5e\x20\xa6\xee\xa3\x90\x0b\xca\x43\x13\x46\x8e\x9f\xe8\x3b\x8b\x74\xbc\xb9\x9e\xac\x0a\xde\x14\xba\x1b\xa2\x62\xb7\x97\xfb\xfa\x35\x51\xcd\xd6\x19\xb4\xd6\x75\x65\x75\x9b\xe2\xbc\x13\x53\x8f\x92\x3d\x00\x22\x8c\xab\x4f\x3a\x73\xb0\xe5\x2b\x00\x93\x96\xb4\x57\x65\x94\x6e\x74\x51\xd8\x74\x89\x13\x74\x64\x9a\x3b\xa3\xa5\x50\x30\x2b\x1d\x17\xce\xcc\x95\x6b\x40\x6e\x77\xf2\x37\x8c\x76\x37\xe0\x1d\x8e\xbb\x52\x89\x86\x5e\xe3\xc2\x46\xe0\x95\xb6\x43\x31\x3b\x70\x36\x62\x71\xc6\x00\x18\xdf\x96\x86\xc9\xfb\x93\x8e\xf4\x43\x46\x0d\x5b\x2c\x2d\x30\x7f\x47\x1a\xbe\x23\xff\xba\xe5\xd2\x45\x22\x3d\xa2\x93\xae\x93\x5a\x0c\x7a\xfa\x24\xad\xa3\x70\xeb\xa9\xd7\x3c\xc3\xba\x0a\xda\x00\xb6\xc3\x24\x70\x40\xe3\xb3\xe0\xa1\x0a\xed\x08\x66\xc1\xb8\x5d\xc1\x6a\x24\xda\xe8\xf5\x68\xd8\x03\x9f\xe0\x83\xaa\xd3\x8d\x1e\xfe\xe5\xab\xb7\x3f\xbc\xba\xba\x7c\xf7\xea\xe5\xb9\x8d\x56\xe8\x89\x4c\xdc\xde\x20\x1b\x95\x1a\x94\x8d\xb2\xa7\x20\xc9\x0e\x33\x45\x1b\xdc\x81\x73\xfd\x8e\x08\xbd\xb1\xff\xfd\xef\xff\x49\x96\xa9\xed\xdf\x9b\x64\x22\xaf\x10\x58\x18\x48\xa5\x99\xa7\x83\xc4\x8c\x2e\xc9\x12\xbd\xf9\xc3\x3b\xb3\x76\xd2\xce\x81\x1b\xb8\xed\xe6\x9d\x0d\x8b\x4c\xc6\x37\x23\x5c\xff\xe8\x07\x58\x1a\x5e\x43\x0d\xaa\xf2\xbe\xe7\x92\x9a\x54\x82\xbd\xf3\xf0\xfa\x7d\x31\xcd\xb5\xe9\xae\xef\x20\x8f\xec\x5d\xf4\x53\xca\xa7\x25\xba\x25\xbd\x42\x58\x3e\xa5\xe0\xe8\xc1\x77\x9c\xb6\x68\x25\x08\xbe\x85\x84\xa7\x8f\xce\x65\xcc\x14\xd9\xd8\x0c\x3b\x1b\x18\xe9\x04\xc1\xed\x41\xa3\x74\x4f\x98\xd4\xba\x9c\x8d\x07\x65\xce\x7c\x70\x5d\x70\xb6\x44\x3f\x49\x82\x6e\xa8\x04\xdc\xb2\xd8\x36\x9b\xdf\x40\x5a\x24\xc1\xed\xc2\x7a\x29\x53\x88\x07\x40\x85\x5c\x93\x94\xce\x0d\x70\x4a\xe0\x52\x15\x0e\x05\x92\x34\x8e\x50\xd6\x08\x09\x68\x9a\x02\xbf\x6e\x06\xb7\x78\x17\xc9\x4f\x3f\xa4\xeb\xa7\xeb\x38\x07\xcd\x9e\x36\xe3\xa8\xe3\x6c\x43\x44\x4c\x38\x21\xed\xe6\x1b\x89\x1a\xde\x75\xa4\x3c\x2f\x83\x13\x59\xea\x4d\x0c\x82\xe0\xa8\xf7\x56\xd5\x7c\x91\x00\x27\x11\xcd\xa9\xb7\x1e\x60\xe5\x3d\x65\x29\xba\x35\x5c\x08\xd2\xa8\xee\xf0\x54\xa3\x96\x16\x6b\xc0\x1d\xc1\x38\xd4\xe7\x7e\x33\x0a\xbf\x9b\x45\x46\x36\xfa\x94\xb5\xe0\xf7\xb4\x66\x49\xd4\x11\xe2\x88\x17\xd3\x9f\x54\x8e\x42\xf1\x01\x55\x74\xb0\xa0\x7d\x65\xb1\x42\x60\xf6\x5a\x48\x1b\x47\x35\xf8\x05\x81\xbf\x40\xc4\x97\x45\x21\x30\x6c\x2d\xfc\x84\x9d\x2e\xfc\xc0\x1a\xbc\x3e\x16\x2a\x78\x43\x48\x6b\xe5\x1a\x36\x8e\x57\x37\x78\xdf\xd1\xe0\xb5\x95\xe4\x0e\xf2\x94\x73\xef\x2d\x24\x48\xe6\x9b\xf7\x2b\xb7\x9b\x3a\x4f\x35\xbc\x05\x32\xc9\xd1\x4b\xfd\x3f\x70\x73\x96\x11\x21\x09\x49\xce\x68\xa6\x55\xe5\x20\x24\x16\xa0\x3a\x37\x90\xf1\xf1\x71\x9e\x4b\x65\xbd\xf8\xfc\x30\xb4\x3e\x6c\x9c\x96\xb6\xf1\xb4\x20\xbe\x8c\x04\x81\x01\xb9\x51\xa6\xe2\xf0\x92\xe2\x90\xe6\xdc\x0a\xbc\x0f\x31\x0b\xaa\xb6\xf0\x0f\x03\xfa\xeb\x97\xc6\x3e\xa4\x2a\x26\x8e\x6a\xd8\x34\x9d\x4d\x5a\x9b\xaf\x32\xd5\x6f\x30\x3b\xfc\x46\x4f\x06\x59\x53\x07\x3e\x44\x21\x26\x97\x40\x05\xbc\x64\x43\xef\x72\x32\x97\x43\xb3\x45\x38\x9e\x0d\x74\x75\x3f\x0f\xe4\x97\x75\x90\x49\x68\x4c\x49\xb3\xf0\x96\x98\xfc\x2e\x67\x9d\x52\x1b\x1c\x19\x24\xfc\x6d\xd8\x40\x4a\x2f\xf8\xe0\x43\x64\xe0\xb5\x96\xe3\xb2\x0f\xf8\x3c\x25\x5d\x6b\x52\x64\x07\x49\x24\xba\xa9\xe8\xc3\x6f\x8d\x8c\x16\x8b\x32\x22\x75\xe5\x61\x6b\x30\xeb\xfe\x26\xe4\xfb\x25\x73\xdd\x68\x73\xec\x06\xf5\x58\xe0\x1d\x51\x26\xc9\x9c\xf4\xaa\x3e\x61\x18\xf5\xfe\x06\xc4\x91\x24\xd6\xe1\x0b\x92\x85\x99\xfc\xe8\xee\x70\x0e\x31\xf3\x5c\x43\xeb\xb1\x34\xa7\xc8\xb0\xd6\xf3\x89\x40\x37\x61\xc0\x1b\xb3\xd7\x99\xe1\x2b\x96\x5b\x79\x03\x25\x3e\x1f\xdd\x8c\x4a\x39\x18\x3f\xb4\x61\xb5\x72\x9e\x25\x17\xb8\x1c\x00\x29\xe9\x86\xed\x6c\x32\x9f\x49\xf2\x5b\x91\x06\xeb\x73\xba\x99\xd8\xde\x0d\x6a\x38\x5b\x73\x61\xc2\x26\x2b\xae\xb6\xe8\xc6\x41\xfb\xa6\x98\xe9\x26\x87\xf6\xcd\x12\x5d\x76\x74\xc3\xbc\xbd\xb1\xe7\xce\x5c\x00\x3b\x0c\xf6\xb0\x77\x38\x8a\x83\xa0\xb6\xd9\x82\xc6\xc2\xaa\x48\xa5\x71\xf9\xbd\xd5\x1c\xef\xd8\x99\xa5\x79\xe9\xe3\xfe\x76\x1b\xc5\x73\x3b\x0e\x6c\x26\x31\x35\xf0\xa0\xb6\xb3\x62\xbe\x3f\x59\xb2\x9c\xd7\x2c\xb8\x87\x60\x6c\x96\xcd\x70\x39\x9d\x80\x9f\xe9\xf7\x06\x36\x82\x20\xdc\x6b\x4d\x96\xb4\x28\x8d\x64\x71\xa7\xf3\xc3\xa1\xc4\x89\xfc\x41\xb7\x3f\x02\xa0\x78\xf2\x18\x42\x9f\xa7\xba\x5f\x69\x82\x81\x40\x96\x15\x01\x2b\x2d\x4b\xad\xda\x44\x65\x1c\xf4\xcf\xf2\x00\xdd\x08\xaf\x76\x9a\x37\xe5\xb9\x7f\x26\x54\x4c\x13\xeb\x0c\xed\x6d\xc2\x99\x43\x1e\xd8\x4a\x9b\xc4\xa0\xb2\x0c\x00\xca\x9a\xa0\x8b\xcc\xe6\x90\x17\x2b\xa3\x54\x59\x2f\x37\xbd\x13\xb8\xc1\x92\x14\x16\x83\x09\x79\xf1\x0d\x6d\x2c\xaa\xcb\x85\xcb\x02\x88\xf3\xcc\x45\x9c\x07\x3f\x33\x2a\x77\xf4\x73\xd3\x11\xcc\x86\x7e\x36\x3f\x12\x32\xd2\x20\xd4\x70\x5d\xe1\xe6\xb6\x08\x8d\x85\x24\xe9\x38\x6b\x20\xa4\xe1\x85\x14\xcc\xbd\x96\x3b\x1b\xcd\x86\x28\x5c\xd8\x69\x3c\x6c\xb7\x44\x90\x65\x3e\xea\x1f\xb4\x61\xb5\xa7\x92\x4c\x74\xa4\x91\x33\x60\x5e\x8c\xe0\x14\x36\xc7\xa9\xf6\xc4\x9d\x79\xaa\x33\xb2\x09\x98\xe5\x63\x72\x51\x85\x20\x2a\x26\x37\xd9\x1d\x96\x11\xc1\x79\xc1\xdc\x43\xa3\xb8\x08\x87\xa5\xb6\x5c\x06\x63\x24\xf3\xf1\xd2\x35\x3a\x03\x77\x9b\xd5\x2c\xa2\xd0\x40\xe9\xe5\xd5\x98\x34\x91\xb1\x1a\x7f\x2a\xd9\xab\x30\xcd\x30\xd0\xb6\x74\x48\xa2\xd1\x5c\xd6\x64\x6d\x71\x50\xa3\x3e\x48\x94\x1a\x52\xdf\x55\xbd\x9b\x8f\x10\x26\x9d\xec\xb7\xa3\x5d\x4c\xe4\x30\xef\xa2\xbf\x1d\xed\x52\xeb\x30\xd6\xbc\x1e\x63\x4c\x01\x52\x69\x32\x31\x98\xc9\x7e\x28\x47\xd0\xdf\xd7\xbb\x85\xe0\x63\xd2\xcb\x7d\x3d\xd2\xa9\x08\x49\xa6\x9d\xb3\x9f\x8f\x0d\x12\xf2\x7a\x19\xed\xea\x8d\x5d\x78\x33\x99\x67\x24\x4a\x39\x1f\xf1\xa8\x67\xfe\xb4\xba\xcb\xd6\x98\x9a\x56\xbf\x85\xe0\x79\x43\x8a\xdc\x1b\x9b\x2a\x40\x5a\x7f\x11\x71\xf9\x57\x70\xd5\x7a\xc5\xd6\xda\x76\x8c\x76\x5f\xd1\x95\x3b\xca\x91\xad\xf3\x49\xc4\x7a\x5f\x94\x39\x7f\xc7\x6f\x4d\x6a\xbc\x5b\x13\x12\xd8\x26\x81\x61\x66\x82\x31\x5a\x9b\x5a\xe4\xa3\xbb\x3c\x17\xde\x84\xbb\x5c\xbd\xe0\x3b\xaa\x15\x6c\x3d\x8c\xb1\x18\x0f\x16\x7c\xcf\x06\x16\xf2\x4d\x7c\xea\xb5\xfb\xd0\x35\x68\x01\x6e\xa9\x3f\x90\x35\xba\xf0\xf1\xc9\x52\x73\xf2\x31\xa4\x0a\x0b\xb4\x43\x09\x18\x22\x1a\x70\x19\xa0\x58\xd2\x77\x6d\x20\x3b\x98\x20\xeb\x25\x95\xd7\x4c\xab\xcf\x0d\x29\xfa\x6a\x82\x9e\xa3\x27\x4f\x4c\xbb\x16\x5d\x5c\x54\xd8\xc7\xc8\xe8\xfa\x63\xe1\x2e\xc8\xba\xda\xe4\xbe\xf8\xf6\x7e\x22\xde\x14\x0e\x71\x8c\x68\x46\x9c\xd0\xff\x4a\x54\xee\x80\x3e\x39\xd8\x70\x92\x23\x3a\x83\x80\xf7\x6e\x04\x48\x4d\xac\xf8\x57\xa7\xf5\x84\xe6\x3b\x01\xd9\xba\x52\x3d\x06\xe8\xff\x5f\xfc\xdd\xa3\xee\x6d\xc8\xb5\x03\x2b\x86\x97\x8e\xe3\x8a\x57\xc5\xff\x3e\xe6\x9e\xad\x3b\xc1\xb5\x56\x5c\xf3\x7f\x4f\x3a\xd2\x0d\x13\x45\xb3\xe0\xf7\x9e\xf6\x1c\x7f\x99\x63\x37\xc3\xa9\xaf\xc8\x9d\xed\x49\x9c\xce\x97\xcf\x2e\x12\x76\x86\xc6\x78\x5e\x9a\x24\x73\xff\xab\x6b\xfa\xb3\x5d\xd3\x9f\xe5\x69\xfe\x05\x61\xcc\xc5\x89\x18\x33\x95\xbd\xf9\x57\x8b\x84\x47\x72\xc4\x71\x1d\x97\x72\x0b\xea\x53\x88\x95\x93\x8f\x4a\xe0\x63\xd1\x72\x33\x9f\xa9\xba\xd0\x01\x17\x1d\x7a\xd4\x0e\x7d\x47\x1b\xac\xfc\xa2\xa5\xf7\x30\x50\x45\x76\x36\xc9\xbe\x92\x30\xfb\x77\x18\x72\x3f\x2d\x5d\x72\xc4\x9e\xbe\xb0\xb9\x76\x0f\x4b\x7d\xf4\x03\xa4\x79\x38\x5a\xc5\x76\x2e\xa1\xd4\x09\x52\xa6\x38\xba\xcb\x62\x63\x7a\x66\xcd\x8a\x7c\x60\x82\x66\xb4\x4a\x9b\x34\xd5\x57\xd0\xd9\x44\x18\xae\x5f\xa2\x3f\x9b\x05\xc4\x2a\x9d\xa5\x2f\x1f\x39\x05\xc8\x5b\x84\x84\x44\x66\x2c\x7d\x6a\xe4\xf3\x3f\xcf\xdc\x9e\x36\x04\x96\x3b\x9b\x2f\x43\xfe\xf3\xdc\x70\x55\x65\xcd\xb4\xbf\x0c\x04\x38\x22\x78\x72\x9f\xff\xf9\xf8\xde\xe3\xa1\x96\xe3\xe0\x5c\xe1\x4e\xc3\xb2\xd0\xc9\x83\xa9\xfd\xb7\x04\xa1\x83\xd5\x1d\xdc\xf1\x6b\x39\x31\x20\xb1\x37\xa0\x32\xd0\x98\x6c\x40\xbe\x46\x35\xe8\xe8\xdf\x6a\x70\xa8\x18\xdb\x3f\x47\xee\xef\x69\x70\x39\x4b\xa8\x83\x4a\xe3\x12\xa8\x51\x03\x2c\xdb\x54\x81\x30\xd2\x1f\x7d\xf6\x7a\xfc\xdd\x1f\x0d\x5e\xf6\x8d\x4d\x8c\x0b\xc1\x0c\xd2\x9a\x72\x13\x79\xf6\x6e\xfc\xaf\xdc\xf0\x0d\x69\x94\xf1\xa9\x57\x24\xb9\x49\x92\x4c\x0d\xdd\xf4\xf0\xf2\xfb\x06\xe3\xf3\xd2\xf5\xb4\x8b\xc6\x24\x12\xd6\xf3\x3e\xaf\xd7\x99\xa5\x63\x2f\xcf\x52\xb0\xd3\x17\xe8\xdd\x56\xf0\xbd\xb1\xf4\xcb\xd4\xcd\xf4\x5e\xc7\x0f\xe1\x36\x60\x85\x91\x57\x4f\xe9\x68\x46\x67\x8c\x3e\xb5\x65\x36\x58\x1f\xdc\x8a\xe8\xc5\xd6\x33\x3b\xff\x48\x04\x5d\x1f\xd2\x9a\x3e\x87\x38\x46\xb5\xe6\x82\xa0\xde\xa4\xe2\x3a\x61\x0d\x16\x22\xc4\x3e\x20\x16\x59\xba\xad\xcc\x5d\x3d\xec\x5c\x24\xf1\xd0\xbd\xe0\xed\x00\x85\x72\xec\x85\x0b\x22\x04\x17\x89\xe3\x04\x43\xd0\xcb\x14\x97\xb0\xe9\xa9\x6b\x4c\xbb\x21\xf7\x71\xa3\x89\x34\x51\x54\xf5\xb2\x2d\x61\xbd\xb3\x79\xdd\xd1\x76\x34\x73\x34\x13\x57\xc1\x54\xab\xc3\x3e\x06\x27\x65\x00\xd0\x92\x62\xcb\x53\x71\xf8\x5a\x37\x41\x1d\x5d\xd7\xdd\x22\x77\x58\x20\x2a\xaf\x4a\xfc\xfa\x37\x2c\xe1\x26\x80\x4d\x42\x2f\xf3\xe2\x8f\x8e\x70\x39\xa8\x2d\x17\x74\x2c\xaf\xde\x7d\x20\xaf\x1a\xf7\x3e\xaf\xba\xbe\x8b\xb3\x09\xb7\xce\xb3\x67\xe8\x0a\x42\xdc\xff\x7c\x8e\x7e\x34\x01\x74\xcf\x7a\x7c\xd4\x72\xb4\x37\x5d\xeb\xe9\x83\xe8\xd4\x12\xac\x82\x08\xe1\xf7\xf1\x85\xc0\x70\x27\x00\x33\xd1\x86\x27\x77\xf4\x2f\xe5\x8e\x0c\x9d\x19\x28\xa5\x57\xc5\xb7\xbc\x6b\x65\x88\x1b\xd6\xfc\x01\x13\x00\x70\x43\xd5\xb7\xef\x7e\x7d\xf2\x04\x1a\x5b\xb2\x38\x02\x8b\x51\x78\x24\xa8\x71\x14\x1a\xfa\x03\x81\xe6\xc9\x56\xa5\xf7\x6e\xfa\x97\xfa\xb7\x53\xec\x01\x9d\x72\xbc\x75\x4e\x81\x1e\xc8\x2d\x32\xd9\x7e\x86\x2e\x6d\x1a\x4a\x95\x73\x80\x2e\xe7\x95\x1a\x73\x89\xc6\xe2\x89\xfe\xa9\x72\xcf\x07\x55\x19\xc9\x67\x03\x20\x9c\xe7\xcf\xbc\xfd\x54\xa0\x72\x85\x70\xc0\xa4\x2c\x34\x1e\x20\x75\xf2\xfe\x4b\x94\x48\x25\xf2\x5b\xa7\x71\x3f\xf5\x6a\xaf\xcb\xe5\x99\xe1\x53\x82\x3b\xe5\x94\xb6\x56\x82\xdd\x54\x95\xf4\xbe\xec\x0e\x47\x04\xd5\x9f\x98\xbf\x80\x1a\x2e\xa3\x54\xfc\xb2\x55\x99\x54\xd1\x06\x7c\xb3\x65\x4b\x20\x17\x74\xb6\x16\x7c\x77\xae\xc1\x53\xc0\x6c\x2c\xce\x84\x0c\xb7\x03\x77\x72\x9a\xa2\xee\x3c\x07\x3c\x09\xcf\x67\x97\x66\x6c\xbe\x07\x7a\xfe\xf4\x04\x87\xc7\x59\x38\x2d\xf7\x47\x3d\x02\x59\xc4\xa0\xdf\xd8\x1a\x47\xde\x73\x8d\x18\x17\xde\x4d\x22\x21\x5f\x43\x89\x41\xaa\x3d\x17\x6a\x7b\x58\x98\x72\x5a\x70\x3b\x24\xad\xec\x69\x5d\x45\xf9\xf8\xe1\xde\xc4\x6a\xd0\xea\xd7\x81\x1b\x77\x45\xdf\x1d\xbc\x95\x43\x15\xb8\x7d\x9f\xf5\x5c\x82\xe1\xd2\x52\x97\x4c\x43\x0e\xb0\x00\xf0\x75\x0e\x58\x60\xa6\x48\xe4\x4a\xb6\x53\x28\x9e\x2d\xc5\x79\x54\x31\x28\x09\x2b\xb2\x75\xe5\x47\xc2\x62\x28\x83\xa0\x92\x21\xbd\x3d\x3e\x54\xe2\xfd\x44\x18\x85\x2f\x54\xab\x03\x38\xc0\x40\x21\x31\x26\xa4\xa5\xd5\xe6\x29\xc3\x5d\xac\xd5\x03\x02\xfc\xd2\xca\x8b\xe1\xa6\x89\x82\x65\x49\x34\xc8\x34\xa1\xcd\xa5\xaa\xa5\xbe\x39\x94\x04\x09\xd0\x04\x9f\x63\x6b\x95\xea\x02\xa7\x05\xc1\x1f\xaa\x0a\xaa\xb8\x2a\xc3\xeb\x77\x41\x35\x5c\x1d\x22\x6f\xa7\x36\xd0\x93\x05\xc5\xc6\xf8\x8b\xc0\xf2\x77\xd8\x93\x0f\x24\x99\xa5\x19\xcb\x2e\xd0\x94\x5b\xfb\x76\x33\xc9\x98\xc5\xcd\xa5\x53\x61\x36\x16\x8e\xfb\x72\x50\x81\x79\x6f\xa6\x98\x9f\x00\xb2\x0a\x50\x82\x83\x20\x73\x5f\xd6\x01\x75\xf4\xf6\x56\xe0\x56\x85\xbb\xcf\x7b\xfb\x0c\xd1\xc4\x11\x73\xdb\xf9\x12\x1c\x7d\xc8\xd7\x34\x7c\xad\x37\xff\x7b\xcc\xf0\x86\x44\xc5\x84\x42\x3c\x1d\x58\xe1\x8e\x5b\xa9\x56\xf1\x2f\xd2\x75\xf0\x01\xd8\x1a\x07\xb8\xef\x09\x43\x72\x80\xa9\xd6\x43\xd7\x1d\x4a\xb6\x29\xfd\xe4\x26\x6d\xcd\xf8\x8d\x37\x44\x5d\x9a\x9a\x80\xb3\xe0\x1a\x38\x73\xea\xdf\x7c\x99\xe4\xe1\x19\xc6\xfa\xfc\xc9\xa7\xfc\x20\xf3\x3a\x54\xf7\x2f\xea\x0a\xc5\xb1\x7e\xbe\x36\x56\x72\x1e\x5f\x2e\xf4\xe4\x28\xe0\x33\x31\x07\x59\xc6\x0e\xe4\xae\xf6\xac\xbb\x50\x9c\x02\x0f\x9c\x4f\x59\xd3\xeb\x97\xb2\xbe\xf1\xcf\x4b\xb1\x79\x48\xbe\x4c\xe7\x56\x10\xa5\x1a\x55\x6c\xc9\x1c\x3b\xff\x83\xa8\x6f\xc0\x65\x0d\x38\xb8\xe3\x77\xb8\xcb\x6e\x48\xf9\xca\x56\x21\xff\xc8\x23\x7d\x59\x4e\x26\x78\xba\x53\x1f\x8b\xee\xe1\x97\xa8\x87\x2c\xa1\x5c\x71\x25\x57\xa0\xee\x12\xc2\x2a\x29\x56\x7e\xfc\x5c\xf9\xc8\x37\xfd\x43\xec\x4b\x58\x71\xa1\x7c\x90\x21\x54\x28\xd5\x64\xa6\x85\xa1\x57\x92\x42\xa0\x10\xe2\x87\x7b\xdd\xfa\xe0\x8a\x45\x53\x55\x08\xb5\x3d\x14\x4d\x0b\xd7\x62\x5d\x08\x82\x0a\xa9\xac\xb2\x5e\xbf\x18\xec\xf3\xaa\x75\x43\x3f\xbd\xcd\x14\x57\x5e\x02\xfb\x32\x8c\x11\x33\x5c\x20\x7b\x93\x60\x23\x88\xa9\xdb\x67\xf5\xba\x35\x17\xa5\xd0\x3d\xa0\x01\x6a\xf0\xc1\x4d\xec\x74\x0d\xda\xc8\x17\x44\x42\x5d\xf0\x90\x81\x34\x1a\x3f\xf8\x0e\x95\x71\xa1\x67\xcf\xd0\x5b\x7c\xc8\x75\xce\x5a\x13\x82\x9b\x6d\x14\xbe\x39\xd8\x6a\x2c\xd5\x8a\x60\xcb\x47\x05\x5a\xc5\x97\xb4\x63\xd7\xed\xc8\x65\x6d\x9f\xc3\x12\xbc\x6d\xb5\x1b\xd4\x75\x53\x17\x02\x6f\x66\x25\x57\xc3\xb4\x61\x10\x2e\x31\xd7\x35\x79\x3f\x63\xae\x4c\x87\xf1\xeb\x1d\xe9\x1a\xcd\xf2\xb3\xb1\x81\xb9\x29\x03\xbd\xec\x52\x2f\x3a\xe6\x3e\x95\xec\x18\x44\x3a\x59\x0b\xf9\x20\x97\x1d\x39\x5a\xd3\x31\x01\x31\x1e\x2d\xf0\x38\x05\xb3\x3c\x37\xe7\x24\x4d\xa5\xd8\xb4\x71\x8e\x7d\x99\x92\xf2\x86\x5b\xfa\x75\x51\x06\x6f\x26\x1c\x53\x24\x2e\x6d\x2d\x9d\x9e\x53\xa8\x8e\x6f\x8a\xe1\x07\x2b\x63\x0f\x55\x7e\x1b\x48\x94\x80\x0b\x1d\x2e\x00\xbd\x30\xf9\x1b\x71\x69\x3c\x53\xbe\x10\x72\xde\xb6\xf8\x8e\xe4\x53\xc1\xe5\x74\x30\xae\x24\xea\xc8\x5a\x2d\xec\x55\x03\x77\xe9\x3a\x98\x03\xa6\x40\x17\x46\x8c\x3f\xe5\xbd\x61\xe7\xb6\xe6\xb6\xcd\x9b\xde\xf5\xea\x60\x22\x29\x8f\xa6\x60\x7b\x36\x86\xc9\x25\x1c\xb2\x7c\x66\x2a\x7f\xfe\x2c\x66\x93\x81\xe5\xf2\x83\x33\x36\x02\xa5\x9d\x26\x4a\xa9\xa2\x0a\x7f\xd3\x64\x38\x1d\x36\x38\xbb\x40\xdf\x2e\xbf\xad\xd1\xe4\xa9\x4e\x7f\xaf\x88\x4d\xe1\xfe\x89\x79\xc9\x0f\xcb\x49\xfe\xe2\x7c\xe4\xcf\xc8\x45\x7e\xa0\x92\xf4\xc0\x1c\xe4\x07\xe8\x53\x5f\x2d\xf7\xf8\x33\xf2\x8e\x1f\x9c\x73\xfc\xc5\xf9\xc6\x35\xc4\x2f\xbf\x2b\xfb\x9d\x9a\x76\x9c\x91\xbf\xf5\xf3\x3c\x7f\xca\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\x2f\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\x17\x23\xe8\xfb\x0b\xac\x7d\xf7\xa5\xb7\xf2\x7e\x69\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\xfc\x7c\x93\x38\xa9\x13\x17\x76\xe7\xa8\x78\xe1\xb1\xc6\xad\x35\x62\xf4\x51\xce\xcb\xd9\xe3\x12\xeb\xa2\xb4\x23\x3d\x00\xdc\x31\x97\xa1\x82\xb4\x0f\x34\x99\x57\x96\xe2\x2a\x4f\x4d\x87\x85\xcd\x77\x3c\x72\xd6\xe6\xa0\x71\x9c\x52\x47\x77\xe4\xb7\xbe\x84\x38\xbc\x27\x26\xba\xc3\xd3\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\x7c\x7a\xdc\xe7\x67\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\x2f\x58\xc5\xfc\x3b\xd3\x22\x7f\x56\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\xbd\x81\xc6\x87\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\x7c\x4a\x2a\x5a\x15\x97\xbc\x21\xef\xa6\x76\x65\x4a\x0e\x9d\xb2\xf1\x16\xf4\x5f\xff\x65\xbf\x38\x4b\x05\xa3\xfe\xeb\xf9\xf7\x76\x82\x17\xb3\xb1\xa4\xff\xb4\xc4\x2e\x86\xd2\x58\x23\x32\xf2\x6c\x2c\x8d\xfe\x7e\x14\xf4\x36\x54\xfa\xca\xdc\x05\x70\x78\x03\xde\xf9\x6b\xd6\x92\x8f\x01\xde\x8a\x27\x5f\xcc\xf3\x21\xd3\x6a\x25\x13\x21\xd8\x91\xfe\x05\x12\xbd\xb2\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\x5f\x06\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\xf9\xae\xd5\x53\xfc\xa4\x49\x56\xc4\xbc\x7c\x85\xaa\xa5\x26\x28\x66\x1e\xd1\x70\xfe\x64\xdd\x0b\xd2\xce\x72\x07\xf3\x54\x69\xaa\x3b\xec\x33\x1e\xe4\x39\xfa\xfe\x93\x59\x88\xbf\xbb\x7f\x9f\xcc\xfd\x32\xcc\xab\x38\xba\x25\xa4\x47\x7a\x98\xdb\xa8\x58\x00\xd2\x6b\x30\x1a\xef\xce\x9e\x5b\xb5\x10\x46\xa9\xb5\xa2\xa7\x2f\x0c\x39\xe9\x3f\xde\x77\xb9\x93\xfc\xfa\x65\x41\x54\xe5\x2e\x48\xab\x67\x3c\x47\x9f\x8c\x62\x70\x8e\xec\x7e\x50\xa0\xcc\xfb\xfc\x62\x30\xa8\x78\xa9\xd7\x3d\x28\x80\x50\x7a\x5a\x6e\x43\xb9\x69\x57\x05\x31\xb1\xd1\x63\x91\xfd\xab\x3a\xf8\x8f\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\xa9\x33\x70\xab\x8c\x08\x8d\x33\xa3\xea\xd7\x13\xf1\xf1\xe3\xce\xef\x7a\x50\xff\x6f\xeb\xf9\x1e\xe3\x4d\xf5\xef\x8f\x7a\xce\xc7\x73\x17\xfe\x26\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\xbe\xd8\xc0\x07\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\xfe\x34\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\xab\x8f\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\xde\x7f\x28\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\x77\x27\x8b\x6c\xde\x46\xcc\x4a\xff\x7a\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\x8d\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\xbf\x93\x43\x3a\x5f\x2d\x67\x33\xef\x6c\xcc\xdb\xd9\x2d\x31\x0a\xdc\x75\x24\x0d\x3e\xd9\x55\x56\x44\xe7\x7d\x76\x37\x61\x2c\xa5\xba\xb2\xdc\xf7\xc9\x2c\x1f\xce\x8a\xe5\x8f\x56\x5a\x3c\x36\x50\xbe\x95\x97\x8b\xda\xd2\x2b\xdc\x6e\x2a\x21\xfc\xc8\xa4\xf0\xef\x97\x1f\xce\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\x1f\x9d\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\x66\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\x24\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\x32\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\xe7\x47\xd3\xca\xd2\x92\x15\x46\x9b\xa1\xe6\x87\x28\xf8\x79\x42\x6b\xc7\x9b\x5d\xaf\xd1\x2a\x94\x99\xb9\x76\x3f\x2a\x8d\x5e\xca\xba\x2c\x1a\x9b\xf9\x6c\x42\x65\x8e\x8f\x2e\x3b\xe7\xb1\x80\x62\xd2\xe8\xd2\xbd\xe9\xe4\x82\x73\x2e\x2d\xc1\x56\x27\x0c\x62\xa1\x74\x3a\x4c\x95\x25\xff\x8c\x68\x66\x1e\xbf\x1e\xaf\xce\x38\xe5\xda\x31\xd9\x80\x27\x16\x85\x2b\x1f\x6a\x28\x16\xec\x39\xb7\x6d\x00\x31\x6e\x60\xc3\x84\xa9\x93\xf8\x78\xa5\x9c\x0b\xec\xe2\x68\xa8\xbf\x32\x54\xea\x45\x4b\xaa\x53\x2a\x31\x9c\x5a\xb3\xf0\x73\xb6\xfd\x50\x89\x55\x7f\xe3\x43\xeb\x1b\xa3\x99\x00\xe8\xcb\xc4\xf4\xd9\x3f\xa2\x08\xfc\x32\x59\x56\xc9\x5c\x79\x10\xa3\xf7\x72\xcc\x5b\x12\x5f\x87\xf9\xff\x2c\x89\x35\x19\xb7\x88\xe2\xd7\x11\xc7\x3d\x22\x6d\x9c\x37\x28\x71\xef\x94\xae\xce\x3f\x68\x5d\xd7\x32\xe2\x08\x34\x34\x06\x4d\x54\x2d\x40\x22\xdc\xa8\x01\xee\x80\x59\x17\xee\x6f\x11\x77\xd7\x3e\xf3\xb1\xe1\x86\xbc\xcd\xf9\xdc\x5a\xf7\x77\x4b\x82\x29\x07\x59\xbf\x52\x95\x6f\x24\xf8\xed\x78\xc3\x7a\x16\x2a\x0a\x54\x58\xa9\xa6\x10\x6a\x2d\xa3\xa8\x73\xdd\xf8\x29\xe8\x0b\xc5\x35\x1b\x64\x6c\xb7\xd0\xd4\x60\x71\x9f\x71\xb9\x85\xc6\xaa\x30\x47\x12\xb5\x2e\xdb\xb2\xd4\xa0\xa4\xc9\x95\x65\x5c\xe0\x50\x36\xed\x42\xd9\x78\x6d\xc5\x10\x81\x8d\x4d\x7c\x47\x44\x9a\x58\x2c\xe0\x49\x1e\xbe\x36\x5b\x21\x0f\x13\x79\x9f\x91\xae\x74\x92\xe4\xf3\xe3\xa0\xe7\x17\x6e\x84\x53\x8b\x9f\x96\x0c\x3f\x5b\xe5\x39\x7a\x0d\x8f\x05\xc2\xa0\x50\xc7\x68\x45\x50\x67\x2b\xf5\x31\xc4\x05\x22\x7f\x19\x70\x17\x1e\x45\x47\x30\x7f\x45\xb4\x5d\x33\x35\x73\xab\x7b\x1a\x16\x3d\x47\xcf\x3d\x01\xc6\x6a\xed\xb2\x23\x6c\xa3\xb6\x5f\x71\x23\x6f\xdd\x29\xfa\x44\x11\x38\x4d\x2a\x11\x1f\x20\x2d\x69\xc5\x07\xd6\xe6\x45\x73\xee\x0b\xde\xe1\x48\xc3\x6f\x61\x4c\xbc\xc8\x94\xbd\xc4\xbb\x4b\xba\x98\x67\x01\x69\x7e\x84\xd5\xb2\xac\xef\x1c\x13\xc0\xa8\xe7\x52\x52\xf7\x24\x1f\x44\xd3\xf9\xce\x0d\xb3\xc3\x87\x50\x42\x4f\xd5\x5e\x85\x8e\xc6\x74\xc2\xd9\x3d\xb4\x49\x43\xb0\x7a\x8d\x69\x57\xa9\x21\xb2\x40\xaf\xc0\x98\xa7\x9c\xc1\xf5\x10\xa8\x59\xc7\xc8\x47\xc7\x37\x78\xe5\x2d\x1b\xf7\xa9\x79\x04\x63\xe1\x7e\xf1\x30\x25\x48\x03\xf9\x3d\xcc\xfa\x61\xe2\x3d\x96\x6a\xac\xd1\x16\x37\x7e\x7e\x71\x4a\x75\xe3\x89\x02\x14\xb0\xde\xe3\xe5\x5b\xe2\x95\x56\xc7\x3a\xf6\x6c\x0b\xec\xc5\x22\x9f\xf9\xff\x3f\xa1\x7f\x1e\xf3\x1c\xa2\xda\xbb\x47\x3f\xe2\x8e\x5c\x2b\x9b\x56\x87\x72\x59\x8f\xb4\x66\xff\x14\xdc\x35\x60\x84\x59\x81\xee\x3a\x65\x15\xa1\x22\x31\xb6\xb6\x75\xca\xac\x78\x71\x2e\x1e\x3a\xfa\xc0\xe8\xb4\xe1\xf7\xf5\x52\x5d\xad\xb8\x78\x72\xcc\x38\x38\x22\x4d\xaa\x6e\x33\x16\x12\xb3\xff\x64\x9f\x36\x0d\x50\x81\x0b\xda\x5e\x32\xc3\x13\x50\xc0\x8d\x92\x91\x40\x59\xf0\xcf\x20\x41\x09\x7e\xf3\xfe\x8c\xe2\xce\x59\x96\xfb\xd4\xa6\x3d\xb0\xc7\xf3\x57\x7f\x11\xa6\x54\x9c\x61\xb3\xa6\xac\x4d\x4d\x08\xda\x56\x4d\x88\x5f\x6d\x83\xbf\x8a\x6d\x50\x4b\x10\x2e\xfd\x02\x91\x5b\xc0\x99\x81\xe6\xa1\x9d\xae\xd6\x25\xba\xf2\xd3\x75\xf6\x65\x9e\xac\x3d\x38\x68\x34\xa2\xb4\xd5\x97\xc7\x7c\x21\x76\xde\xa5\x24\xe4\x32\xc7\x30\x3b\xec\xb8\x20\xe3\x8f\xfb\x7c\x0f\xcf\xeb\x56\x72\x56\x4c\x8a\x55\x1c\x4b\xf0\x0e\x3b\xf3\x10\xae\xa9\x44\xb7\x21\xce\x45\xdb\x5a\x7e\x57\xdb\xc7\xf8\x2b\x18\x0f\x4c\xbc\xfe\x45\xd0\x69\xb2\xd8\x9f\x93\x68\xa3\x97\x5e\x3e\xc7\xf7\x51\x0c\xdb\xe6\xb4\xeb\xaa\xda\x55\xc9\x77\xec\x52\xe0\xd9\x09\x95\x5d\xc6\x6f\x00\x1e\x07\xe7\x84\x1b\x65\x04\x9c\xb1\x1b\x85\xca\xd2\x15\xf7\x59\x35\x2f\x23\x10\xe5\xaf\xf4\xfc\xc2\xf6\x0b\x65\x92\x53\x82\x9b\xdc\xf1\x57\x13\x0b\xbe\x52\x66\x64\xd2\xdb\xf7\x01\xfc\xbd\x46\x63\x27\xd2\x1d\x16\x07\x13\x28\x8b\x22\xea\xf9\x60\x75\x0f\x87\x7d\x65\x3c\xb7\xd1\xa3\x55\xdd\x20\xac\xd5\x34\x73\x61\xf7\x7f\xff\xfb\x7f\x9c\x5f\xc1\xce\x9b\x4f\x13\xa1\x88\x2d\xf0\x97\x2d\x2c\x7e\x4e\xed\xfd\x07\x13\xcb\x0b\x3b\x84\x52\xbc\x44\xdb\xc0\x70\x66\xa4\x45\x43\x5f\x46\x52\xab\x45\x25\xdd\x13\x26\x53\x6e\x9c\xfc\x76\xad\x13\x7c\x6d\x55\xe2\x9d\x16\x08\x7a\xc3\xf7\x71\x8d\xd1\x04\x55\xcc\x85\x51\x44\x98\x3a\xe1\x84\x5e\xdd\x11\x71\x30\xae\x18\x5f\x3d\xb2\xc7\x6a\x8b\x66\x49\xf4\x6e\x31\xea\xce\xf6\xbf\xd8\xcb\xca\x5a\x1b\xce\x27\xf1\x2f\x36\x5b\xb4\xb1\x0b\xfd\x6d\x55\x58\xc0\x8b\xd1\xba\x35\xe8\xe7\xb0\x16\x93\x8d\x68\x2b\x0a\x55\x0a\x35\x76\x04\x03\x6a\x62\xd4\x62\xb6\xe9\x42\xde\x38\x9c\xbd\x01\x04\x5e\x2b\xeb\xe4\xf0\x07\xf9\xd4\x93\x28\xe7\x7d\x25\x93\x70\x44\xd3\x29\x78\x45\xa6\xfa\x9c\x5a\x5a\x07\x85\x1c\xaa\x23\xd5\xac\x4e\x91\x0e\x13\xec\xe1\x67\x28\x12\x6a\x5f\x69\x4b\x81\xf6\x79\x15\x42\x4f\xb3\x29\xcb\x92\xa0\xf1\xbf\x1e\xa8\xfa\x71\xe6\xaa\xc8\x55\xd5\x28\x53\xf5\x26\x57\x4d\x12\xae\xaa\xd9\xec\xa7\xfb\xfa\xef\x16\xed\x2e\x74\x83\xca\x39\xd8\xab\x50\xb6\x40\x9f\x90\xe8\x96\x41\x8d\x5b\xac\x0a\xf8\x9b\x9a\x09\xc9\x18\x10\xf7\x0d\x22\xe8\xda\xdf\xb4\x6f\x67\x13\x05\xdf\x86\x81\xb6\x13\x37\xdd\x4d\xd2\x7b\xe5\xd2\x1b\x3c\xe6\x63\xaa\x24\x00\x79\x45\x17\xc6\xe0\xf6\x4f\xd3\x1d\xac\x02\x48\x57\xee\x95\xe0\xda\x8d\xb3\x70\xc3\x27\x8c\x30\x9b\x9f\xa3\xef\xa3\x01\x03\xb4\x7d\x7d\x31\x9b\x8c\x1f\xf7\x89\x97\x5e\x9e\x13\x6c\x36\x34\xd7\x7f\xe1\x0d\x79\xab\x79\xc8\x05\x7a\x26\xcd\x3f\x9f\x65\x12\x7d\xac\x77\x28\x68\xac\x3b\x9b\xfd\x56\xfb\xde\x3f\xba\x7f\xf4\xff\x02\x00\x00\xff\xff\xac\x4d\xe9\x20\xa3\xb2\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{0xae, 0xaa, 0x3b, 0x36, 0x7b, 0xcf, 0xb3, 0x6, 0xd, 0x49, 0xa2, 0xdf, 0x72, 0x73, 0x57, 0x73, 0x55, 0x99, 0x71, 0x90, 0x66, 0x6b, 0xbd, 0xd4, 0xf2, 0x7d, 0x75, 0x59, 0xce, 0x54, 0xe5, 0xec}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0xce, 0x6f, 0xc2, 0xfe, 0x17, 0xd2, 0x81, 0xce, 0xbd, 0x62, 0x9d, 0x96, 0x14, 0x91, 0x38, 0xab, 0xf2, 0x71, 0xa9, 0x10, 0xc8, 0x72, 0xb, 0xd, 0x10, 0x64, 0x52, 0x6f, 0xc0, 0x56, 0x51}} 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\xcc\x6c\xfe\xf5\x7b\xc1\xf6\xcc\x64\xfe\xe1\xcc\x1d\x93\xd7\x9b\xb8\x67\x5d\x4b\xef\xa3\x87\x5c\xd1\x84\xe8\x20\x18\xaf\x74\xda\x59\x01\x3f\x4b\x4a\x67\xe9\x35\x76\xfc\x33\x91\xda\xfc\x5f\x6d\x78\x51\xc2\xab\xf4\x1f\x6d\x22\xde\xb2\x70\x69\xd6\x50\x5b\xc4\xe6\x41\xc9\x3d\x8b\x50\xd5\xdd\xa9\xa7\x53\xb5\x40\xd8\xf2\x3f\xcc\x24\x91\x22\x87\xb9\x2d\x39\xed\xcd\x6b\xc9\x39\x52\xc3\xa4\x38\x5d\x2d\xda\xe2\x82\xf4\x6e\x6f\x05\x75\xbb\xb1\x55\xc1\x9e\xfb\xd8\xdc\x45\xfd\x67\x34\xe1\xf8\x40\x8e\x16\x29\x7d\x21\x39\x1f\x14\x63\xcf\x5d\xe7\x46\xaf\xe1\x6b\xa7\x7f\x16\x5b\xdf\xda\xc2\xd5\x13\x1a\x87\x97\x74\xe8\xa2\xaf\x81\x8f\xde\x3f\x37\x1d\xf0\x19\x29\xb2\x3d\xaa\xd3\xd5\xb7\x0f\x4d\x6e\x34\xd7\x46\xa6\xd6\xd0\xdf\x8d\x45\x8f\xed\x6d\x99\xa6\x4c\x6b\x26\xc5\xa7\x54\xe6\x16\x7e\xfc\x71\xcb\xbe\xb7\x6d\x45\x5b\xf5\x8e\xa5\x1f\xaa\xad\x79\xb9\xd2\x4a\xcd\x26\x12\x81\xcd\x68\x92\x76\x28\xcb\x7e\x15\x59\xc2\x8a\x66\x39\x92\x53\x23\x79\xd5\xbb\xbc\xe8\xa3\x6e\x56\xa5\xbe\x13\x75\x7b\xed\xec\xf6\x27\x43\xdf\x6a\x3f\x6d\x91\x20\xe5\x53\xf7\xcc\x50\x4e\xf4\xaf\x77\xe9\xeb\x2c\x28\x9f\x7a\xce\x74\x52\xa1\xbd\xd2\xa5\x29\x13\xa3\xf8\xdb\xd8\x9e\x4f\x3a\x91\xad\xae\x95\x0f\x31\x5c\x5e\xf8\x52\x01\x83\x71\x6d\x21\xda\x6e\x26\x75\x95\x1a\x2e\x70\x77\x51\x7f\x60\xa3\x75\xeb\xca\x77\x8f\x65\x3e\x8b\x06\x52\x6a\xcc\xf4\x08\xb5\x51\xf2\x08\x0d\xcc\xb3\x64\x42\xa3\x32\xb3\x27\x3c\x86\xea\xc1\xe5\x45\xdb\x4b\x2d\x6e\xbe\xee\x57\x24\x7d\x95\x9a\x09\x66\x66\x6f\x36\x0b\xb4\x3b\x55\x37\x66\x8d\x9b\x7d\x4d\xb2\xee\xf1\xd2\x4d\x36\x45\x9e\x4f\x81\x8d\x81\xa5\xbd\x93\x94\xd7\xb0\x3b\x46\x35\x70\xe9\x5f\x9b\xa1\x46\x07\xa0\x8a\xa1\x9d\x8e\xdd\x80\x1d\x41\x9a\xd3\x04\x52\x62\x68\xe2\x66\x60\x16\xd9\xe1\xd7\x3e\x95\x17\xe0\x11\xed\x6f\x96\x66\xa8\xb4\x14\xc4\x60\xf4\xe2\x20\xd5\x45\x06\x3d\xa2\x75\x4b\x9e\x88\x0d\x1c\x10\x88\x42\x9f\x3f\x4e\xac\xd0\x06\x49\x75\x46\x0a\x2c\x06\x6a\x02\xb9\x46\x65\x39\x89\x27\xc7\xab\xd0\x32\x2b\x91\xd0\x72\x58\x47\x11\xf6\xcb\x11\xa8\x6b\xcf\xd6\x37\xea\xc7\x9a\x7f\x79\x19\x17\x30\x82\x0b\xfc\x38\x72\x35\x8c\xc6\x8a\x86\x74\x7f\xbb\x9d\x15\x63\x4d\x9b\xd7\xfd\xed\x76\x68\x9a\x19\xc5\x60\x2f\xce\x52\x61\xbe\x07\x08\xac\xa4\x74\x1a\x9d\x3d\xb9\xd9\x71\x11\x0d\x61\xdc\x8d\xcb\x03\x77\xc0\x9f\xf8\xa9\xc6\x84\x8a\xbd\xc6\x9a\x4f\x9c\xcb\x03\x46\xd7\x55\x2b\x2a\xa1\x4e\xf1\x3d\xe0\x4c\x4c\xf4\xb3\x4d\x1d\xd3\xfa\x6c\xeb\x13\xa2\xbd\xf8\x5f\x90\xca\x14\x1d\x8c\xc7\xc8\xda\xfd\x8b\x94\xfc\xa7\xda\x34\xa8\x4b\x9f\x35\xab\x55\x55\x2c\xe0\xc0\x38\x2f\x75\xb3\x55\x66\x7a\x50\x52\xec\xa6\xb6\x52\x0c\x5e\xc5\x92\xb8\x89\x06\xb2\x02\x49\xad\xe1\x63\x2b\xd0\x0e\x5b\x9d\x16\x30\x00\x6c\x3f\x23\x65\x19\x73\x94\x67\x65\x4b\x80\x90\xe7\x56\x58\x6f\x25\xe8\x41\xbc\x91\xbf\x55\x1e\xee\xf6\x26\xbc\xb3\x56\xbb\xc6\xef\xcd\x59\x3e\x12\x4e\x04\x45\xd8\x6c\x4a\x0e\x4b\x87\x1b\x15\xa3\xb8\x80\x14\xb5\x26\x3b\x5c\xc3\x94\x09\x2a\x95\x42\x6a\x4a\x47\x00\x71\xa0\x6c\x3a\xca\x7d\x87\x0e\x75\xce\xe6\x1d\xfe\x6d\x5c\x3a\x2a\xca\x58\xc3\xc1\x1c\x33\x9c\xf6\xe0\xba\xb8\x60\x73\x43\x0c\x81\x4d\x49\xb3\xb4\x2d\x99\xef\xf1\x0b\xc3\xc3\xcc\x4a\xb8\x1c\xfe\x4e\xbe\xbc\xdd\x56\x1c\xae\x66\xf3\xf9\x3b\x20\xfa\x1d\x9c\x77\xbe\xa1\x0d\x8b\x9d\x42\x7b\xbb\x09\x9b\xfe\x8f\xbe\x4b\x42\xa9\x75\x9c\xbb\x25\x64\x87\xfe\x56\x74\x32\xa2\x48\xab\x2b\xf7\x89\x67\x1d\xda\x58\x12\x3e\x10\x93\xb4\xb1\x8e\xfd\x71\xd2\x97\x11\x66\x52\x33\xe3\xc9\x2f\x2f\x4a\xbf\x34\xc3\x75\x02\xe4\x1a\x7b\x98\x9c\xa7\xba\x26\x7b\x9c\x5d\x5e\x78\xd6\x0b\x30\x72\x58\xd3\xa6\xdc\x6e\x14\x2d\x46\xb8\xbc\x28\x92\xb7\xec\xcd\x41\xed\x38\xf8\x1e\x3c\x2b\x1f\xaa\x7a\xe1\x9a\xfe\xbc\xaf\x18\x5d\x5e\x34\xee\x79\x1b\xa1\x36\x61\xdf\x5b\xc1\xd5\x26\xd6\x1f\x44\x59\xdd\x8f\x07\x03\x1f\x06\xde\x06\xd7\x94\xd2\xdb\x09\x99\xa9\xbe\xec\xaa\xe2\x4b\x13\xa4\x4f\xb6\xa3\x4c\x99\xd8\x13\xce\xa2\x6a\x0b\x68\xa5\xfd\x74\x7c\x2a\xeb\x61\x12\x4c\xff\x94\x64\xd3\x97\x52\xaf\x84\xc3\xad\xb1\xe0\x35\x9d\xab\xdb\xb4\xe0\xc3\x07\xc8\x88\x60\x74\x36\x8d\x09\xe3\x18\x81\x91\x1e\xe5\x59\x60\xd1\x40\xdd\x25\x79\xab\x98\x36\xcb\xba\x3f\xd3\xac\xec\xff\xab\x49\xa7\x56\xbc\x96\x54\xaf\x75\xc9\x5c\x02\xc2\xa6\x48\xc4\xee\x76\x15\xc5\x4d\x15\xd0\x49\x6f\x9f\xe8\x5e\xf4\x1a\x76\x06\xb7\x1b\xde\x6d\x40\x30\x1e\x76\x09\x2a\x73\x1e\x81\x90\xa6\x74\xaa\xfb\x36\xd2\xdf\x8e\xca\xce\xe3\x8e\x58\x5e\x35\xeb\x90\x65\x9a\x6b\xe3\x38\x06\x80\x41\x93\xd4\x4d\x32\xa4\x98\x69\xa4\x62\x3b\x26\x08\xef\x89\xd8\xe0\x70\x58\x7f\x92\xac\xaf\xfd\x1b\x8e\xc7\x6b\xf8\x58\xbf\x06\x97\xb3\x2e\x9a\xfe\xa3\xc8\xb0\xb6\x8d\xd7\x79\x68\xb7\x2b\xac\x61\x11\x70\x9e\xee\xfd\x8f\x26\x6c\x60\xe5\x1b\xc4\xaa\xa5\x6f\xd5\x7d\x86\xd8\xd4\xff\xd5\xb4\x5c\x32\xf7\xd6\x66\xe2\xd5\x3a\xfd\x37\x00\x00\xff\xff\x53\xa2\x1d\xa6\x72\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{0x64, 0x55, 0x65, 0x2f, 0x42, 0x63, 0xf2, 0xa5, 0x97, 0x45, 0x1e, 0x93, 0xc2, 0x22, 0x2b, 0xac, 0x23, 0x71, 0xc9, 0x68, 0xfc, 0x21, 0x5a, 0x55, 0xa3, 0x42, 0xae, 0xb8, 0xe3, 0xa, 0x1d, 0x52}} + 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/get_existing_listing_ids.cdc b/scripts/get_existing_listing_ids.cdc new file mode 100644 index 0000000..657d603 --- /dev/null +++ b/scripts/get_existing_listing_ids.cdc @@ -0,0 +1,19 @@ +import "NFTStorefrontV2" + +/// Returns all listing resource IDs tracked in `listedNFTs` for the given NFT type and ID. +/// This reads directly from the `listedNFTs` index (via `getExistingListingIDs`), which is +/// distinct from `getListingIDs()` — a ghost entry left behind by the Bug 1 fix would show +/// up here even after the listing has been removed from `self.listings`. +/// +/// @param storefrontAddress Address of the account holding the storefront resource. +/// @param nftTypeIdentifier Fully-qualified type identifier of the NFT (e.g. "A.00…ExampleNFT.NFT"). +/// @param nftID Resource ID of the NFT. +access(all) fun main(storefrontAddress: Address, nftTypeIdentifier: String, nftID: UInt64): [UInt64] { + let nftType = CompositeType(nftTypeIdentifier) + ?? panic("Could not construct type from identifier: ".concat(nftTypeIdentifier)) + + return getAccount(storefrontAddress).capabilities.borrow<&{NFTStorefrontV2.StorefrontPublic}>( + NFTStorefrontV2.StorefrontPublicPath + )?.getExistingListingIDs(nftType: nftType, nftID: nftID) + ?? panic("Could not borrow public storefront from address") +} 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..896d1c3 100644 --- a/tests/NFTStorefrontV2_test.cdc +++ b/tests/NFTStorefrontV2_test.cdc @@ -259,6 +259,85 @@ fun testCleanupPurchasedListings() { Test.assertEqual((result.returnValue! as! [UInt64]).length, 0) } +access(all) +fun testCleanupGhostListingsRemovesListedNFTsEntry() { + // Regression test for Bug 1: cleanupGhostListings must remove the primary ghost + // listing's entry from listedNFTs, not just from self.listings. Without the fix, + // a dangling entry remains in listedNFTs after cleanup, which getExistingListingIDs + // would continue to return even though the listing no longer exists. + + mintNFTToSeller() + + 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 two listings for the same NFT (duplicate listings) + let sellCode = loadCode("sell_item.cdc", "transactions") + for _ in [1, 2] { + let tx = Test.Transaction( + code: sellCode, + authorizers: [seller.address], + signers: [seller], + arguments: [ + nftID, + 10.0, + "Custom", + 0.1, + UInt64(2025908543), + [], + nftTypeIdentifier, + ftTypeIdentifier + ], + ) + let 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()) + Test.assertEqual(2, (result.returnValue! as! [UInt64]).length) + let primaryListingID = (result.returnValue! as! [UInt64])[0] + + // Both listings should appear in listedNFTs + var existingIDs = scriptExecutor("get_existing_listing_ids.cdc", [seller.address, nftTypeIdentifier, nftID]) + Test.assertEqual(2, (existingIDs as! [UInt64]?)!.length) + + // Burn the NFT — both listings become ghost listings + let burnNFTCode = loadCode("burn_nft.cdc", "transactions/example-nft") + let burnTx = Test.Transaction( + code: burnNFTCode, + authorizers: [seller.address], + signers: [seller], + arguments: [nftID] + ) + let burnResult = Test.executeTransaction(burnTx) + Test.expect(burnResult, Test.beSucceeded()) + + // Clean up the primary ghost listing (the duplicate is cleaned up automatically) + let cleanupCode = loadCode("cleanup_ghost_listing.cdc", "transactions") + let cleanupTx = Test.Transaction( + code: cleanupCode, + authorizers: [buyer.address], + signers: [buyer], + arguments: [primaryListingID, seller.address] + ) + let cleanupResult = Test.executeTransaction(cleanupTx) + Test.expect(cleanupResult, Test.beSucceeded()) + + // Both listings must be gone from self.listings + result = Test.executeScript(getListingIDCode, [seller.address]) + Test.expect(result, Test.beSucceeded()) + Test.assertEqual(0, (result.returnValue! as! [UInt64]).length) + + // The listedNFTs entry must also be fully cleared — this is the bug under test. + // Before the fix, getExistingListingIDs would still return [primaryListingID] here. + existingIDs = scriptExecutor("get_existing_listing_ids.cdc", [seller.address, nftTypeIdentifier, nftID]) + Test.assertEqual(0, (existingIDs as! [UInt64]?)!.length) +} + access(all) fun testCleanupGhostListings() { // Mint a new NFT @@ -338,6 +417,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() { @@ -512,9 +667,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(8, events.length) - let completedEvent = events[4] as! NFTStorefrontV2.ListingCompleted + let completedEvent = events[7] as! NFTStorefrontV2.ListingCompleted Test.assertEqual(listingID, completedEvent.listingResourceID) Test.assertEqual(false, completedEvent.purchased) Test.assertEqual(Type<@ExampleNFT.NFT>(), completedEvent.nftType)