From 718708e65be461fc89c1d92639d14317ca05f485 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 24 Mar 2026 14:35:20 -0500 Subject: [PATCH 1/4] add isGhostListing() with correct semantics; deprecate hasListingBecomeGhosted() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit hasListingBecomeGhosted() returns true when the NFT is still present and false when absent — the opposite of what its name implies. Existing callers in the wild already compensate with !, so fixing the semantics in place would silently break them. Instead, add isGhostListing() with correct semantics and deprecate the old function without changing its behaviour. Changes: - Add isGhostListing() to ListingPublic interface and Listing resource - Update cleanupGhostListings to use isGhostListing() directly - Add deprecation notices to hasListingBecomeGhosted() in interface, impl, and scripts - Add is_ghost_listing.cdc and read_all_unique_ghost_listings_v2.cdc scripts - Add testIsGhostListing covering both new scripts - Update documentation to clearly mark hasListingBecomeGhosted() as deprecated Co-Authored-By: Claude Sonnet 4.6 --- contracts/NFTStorefrontV2.cdc | 31 +++++++- .../utility/test/MaliciousStorefrontV2.cdc | 4 + docs/documentation.md | 26 ++++++- lib/go/contracts/internal/assets/assets.go | 12 +-- scripts/has_listing_become_ghosted.cdc | 5 ++ scripts/is_ghost_listing.cdc | 21 +++++ scripts/read_all_unique_ghost_listings.cdc | 5 ++ scripts/read_all_unique_ghost_listings_v2.cdc | 42 ++++++++++ tests/NFTStorefrontV2_test.cdc | 76 +++++++++++++++++++ 9 files changed, 211 insertions(+), 11 deletions(-) create mode 100644 scripts/is_ghost_listing.cdc create mode 100644 scripts/read_all_unique_ghost_listings_v2.cdc diff --git a/contracts/NFTStorefrontV2.cdc b/contracts/NFTStorefrontV2.cdc index 7d80238..4117f2b 100644 --- a/contracts/NFTStorefrontV2.cdc +++ b/contracts/NFTStorefrontV2.cdc @@ -252,8 +252,22 @@ access(all) contract NFTStorefrontV2 { /// hasListingBecomeGhosted /// Tells whether listed NFT is present in provided capability. /// If it returns `false` then it means listing becomes ghost or sold out. + /// + /// DEPRECATED: The return value of this function is semantically inverted — it returns `true` + /// when the NFT is still present (i.e. NOT ghosted) and `false` when the NFT is absent + /// (i.e. IS ghosted). This is the opposite of what the function name implies. The function + /// is kept as-is to avoid breaking existing integrations that already compensate for the + /// inversion. Use `isGhostListing()` instead, which returns `true` when the listing is + /// ghosted and `false` when it is still valid. access(all) view fun hasListingBecomeGhosted(): Bool + /// isGhostListing + /// Returns `true` if the listed NFT is no longer present in the seller's collection + /// (i.e. the listing is ghosted and cannot be purchased), and `false` if the NFT is + /// still available. This is the correctly-named replacement for `hasListingBecomeGhosted()`, + /// which has inverted return semantics. + access(all) view fun isGhostListing(): Bool + } @@ -345,6 +359,10 @@ access(all) contract NFTStorefrontV2 { /// hasListingBecomeGhosted /// Tells whether listed NFT is present in provided capability. /// If it returns `false` then it means listing becomes ghost or sold out. + /// + /// DEPRECATED: The return value is semantically inverted relative to the function name. + /// This function returns `true` when the NFT is still present (not ghosted) and `false` + /// when the NFT is absent (ghosted). Use `isGhostListing()` instead. access(all) view fun hasListingBecomeGhosted(): Bool { if let providerRef = self.nftProviderCapability.borrow() { return providerRef.borrowNFT(self.details.nftID) != nil @@ -352,6 +370,17 @@ access(all) contract NFTStorefrontV2 { return false } + /// isGhostListing + /// Returns `true` if the listed NFT is no longer present in the seller's collection + /// (i.e. the listing is ghosted and cannot be purchased), and `false` if the NFT is + /// still available. This is the correctly-named replacement for `hasListingBecomeGhosted()`. + access(all) view fun isGhostListing(): Bool { + if let providerRef = self.nftProviderCapability.borrow() { + return providerRef.borrowNFT(self.details.nftID) == nil + } + return true + } + /// purchase /// Purchase the listing, buying the token. /// This pays the beneficiaries and commission to the facilitator and returns extra token to the buyer. @@ -863,7 +892,7 @@ access(all) contract NFTStorefrontV2 { message: "NFTStorefrontV2.Storefront.cleanupGhostListings: Cannot cleanup listing with id \(listingResourceID) because it is already purchased!" ) assert( - !listingRef.hasListingBecomeGhosted(), + listingRef.isGhostListing(), message: "NFTStorefrontV2.Storefront.cleanupGhostListings: Cannot cleanup listing with id \(listingResourceID) because it is not a ghost listing!" ) let listing <- self.listings.remove(key: listingResourceID)! diff --git a/contracts/utility/test/MaliciousStorefrontV2.cdc b/contracts/utility/test/MaliciousStorefrontV2.cdc index 719762f..14dec50 100644 --- a/contracts/utility/test/MaliciousStorefrontV2.cdc +++ b/contracts/utility/test/MaliciousStorefrontV2.cdc @@ -123,6 +123,10 @@ access(all) contract MaliciousStorefrontV2 { return self.storefrontCap.borrow()!.borrowListing(listingResourceID: self.listingResourceID)!.hasListingBecomeGhosted() } + access(all) view fun isGhostListing(): Bool { + return self.storefrontCap.borrow()!.borrowListing(listingResourceID: self.listingResourceID)!.isGhostListing() + } + // purchase will return the "wrong" nft access(all) fun purchase( payment: @{FungibleToken.Vault}, diff --git a/docs/documentation.md b/docs/documentation.md index 599cbdf..fa66eda 100644 --- a/docs/documentation.md +++ b/docs/documentation.md @@ -140,7 +140,8 @@ resource interface ListingPublic { ): @{NonFungibleToken.NFT} access(all) view fun getDetails(): ListingDetails access(all) fun getAllowedCommissionReceivers(): [Capability<&{FungibleToken.Receiver}>]? - access(all) fun hasListingBecomeGhosted(): Bool + access(all) fun hasListingBecomeGhosted(): Bool // DEPRECATED — see below + access(all) view fun isGhostListing(): Bool } ``` An interface providing a useful public interface to a Listing. @@ -187,13 +188,30 @@ If it returns `nil` then commission paid to the receiver by default. --- -**fun `hasListingBecomeGhosted()`** +**fun `isGhostListing()`** + +```cadence +fun isGhostListing(): Bool +``` +Returns `true` if the listing is ghosted — i.e. the underlying NFT is no longer present in the +seller's collection and the listing cannot be purchased. Returns `false` if the NFT is still +available. Use this function to check ghost state. + +--- + +**fun `hasListingBecomeGhosted()` _(deprecated)_** ```cadence fun hasListingBecomeGhosted(): Bool ``` -Tells whether a listed NFT that was put up for sale is still available in the provided listing. -If it returns `true` then it means the listing is "ghosted" because there is no available nft to fulfill the listing. +**Deprecated.** The return value of this function is semantically inverted relative to its name: +it returns `true` when the NFT **is still present** (the listing is _not_ ghosted) and `false` +when the NFT **is absent** (the listing _is_ ghosted). This is the opposite of what the function +name implies. + +The function is preserved to avoid breaking existing integrations that already compensate for +the inversion (e.g. by calling `!hasListingBecomeGhosted()`). New code should use +`isGhostListing()` instead. --- diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 8143cda..54beb5a 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,13 +1,13 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: // ../../../contracts/NFTStorefront.cdc (23.729kB) -// ../../../contracts/NFTStorefrontV2.cdc (43.078kB) +// ../../../contracts/NFTStorefrontV2.cdc (44.893kB) // ../../../contracts/utility/ExampleNFT.cdc (16.682kB) // ../../../contracts/utility/ExampleToken.cdc (9.619kB) // ../../../contracts/utility/NFTCatalog.cdc (16.383kB) // ../../../contracts/utility/NFTCatalogAdmin.cdc (7.969kB) // ../../../contracts/utility/test/MaliciousStorefrontV1.cdc (6.24kB) -// ../../../contracts/utility/test/MaliciousStorefrontV2.cdc (8.055kB) +// ../../../contracts/utility/test/MaliciousStorefrontV2.cdc (8.243kB) package assets @@ -97,7 +97,7 @@ func nftstorefrontCdc() (*asset, error) { return a, nil } -var _nftstorefrontv2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5b\x93\x1b\xb7\xd1\xe8\xbb\x7e\x05\x56\x0f\x32\xe9\x8f\xa2\xfc\xa5\x4e\x9d\x87\x8d\x56\xf6\x7a\x25\x25\x5b\x89\x1d\x95\x2d\xdb\x0f\xb2\xaa\x16\x9c\xc1\x90\xa8\x1d\x0e\xc6\x00\x66\x29\x46\xd9\xff\x7e\x0a\x8d\xfb\x65\x86\xa4\x24\xc7\x76\x4e\xf8\x60\xaf\x48\x5c\x1b\x7d\xef\x46\x83\x6e\x7b\xc6\x25\x7a\xf8\x72\xe8\xd6\x74\xd5\x92\xd7\xec\x96\x74\x0f\x1f\xd8\xaf\xbf\x65\xdd\xc8\x2f\x5f\x0f\xbc\x23\xfc\xe1\x83\x07\x4f\x9e\x3c\x41\xdf\xbe\x7c\xfd\xbd\x64\x9c\x34\x9c\x75\xf2\xc7\x3f\xa9\xef\xe0\xfb\x4b\xb4\x26\x1d\xe1\xb8\x45\xfd\xc0\x7b\x26\x08\x12\xb8\x25\x48\x0c\x3d\x0c\x52\xb1\x4e\x72\x5c\x49\xd4\x30\xae\xc6\x10\x48\x6e\xb0\x44\x74\xdb\xb7\x64\x4b\x3a\x89\xe4\x86\xa0\x97\x2d\xdb\xa1\x74\x1d\x48\x48\xdc\xd5\x98\xd7\x4b\x98\x07\xfe\xf3\x02\x57\x1b\x84\xab\x8a\x0d\xd0\x13\x4b\xb4\xc3\x9d\x14\x48\x32\xd4\x52\x21\xf5\x04\x6a\x26\x58\x03\xed\x84\xc4\x6d\x2b\x10\x46\x7e\xe9\x0b\x18\x08\x77\x35\xf4\x10\x88\x76\x35\xbd\xa3\xf5\x80\x5b\xe8\x24\xd0\x8e\xca\x0d\xed\xf4\xe8\xbe\x1b\xc2\x02\xfd\x9d\x0a\x49\xbb\xb5\xd0\x0b\x7a\xbd\x21\x9c\x20\x2a\x10\xeb\x48\xd8\xb0\x27\xdc\x2e\x71\x81\xa8\x44\x1b\xdc\xd5\x6a\x5c\x3d\x3a\x6b\x10\x6e\x5b\xb5\x50\x24\xf7\x3d\x11\x30\x94\x5a\x31\xcc\x67\xfa\x2d\x1d\x74\x61\xc3\x66\x5e\x54\xe1\x0e\x6d\xf0\x1d\x81\x19\x19\x47\x5b\xc6\x09\x7a\x58\x0d\x52\x3c\x54\xe3\x2a\x48\xc2\xbe\x7b\x4e\x2b\x02\x03\xc2\x18\x6b\x46\x00\x42\x61\x2f\x5c\xd7\x9c\x08\x41\xc4\x12\x5d\x0d\x52\xc0\xd0\x2b\x82\x06\x41\x6a\xd5\xb4\xc7\x7b\x00\x8f\x9a\xb5\x21\x66\x95\x8c\x23\x26\x37\x84\xab\x33\x15\xb4\x26\x1c\x4b\xca\x3a\xb1\x44\xe5\x95\xd2\xae\x6a\x87\x9a\x20\x8c\x2a\xb6\xdd\x52\x21\x28\xeb\x10\xde\xfa\xa3\xa3\x02\xf5\x98\xc2\x7c\xbb\x0d\x23\x77\x84\xa3\x06\x57\xb4\xa5\x12\x4b\x33\xa5\xda\x52\x3f\xf0\x6a\x83\x05\x59\x2a\x88\x23\x41\xda\x56\x2d\x01\x77\x08\xb7\x82\xa1\x6a\xc3\x14\xce\xa9\x35\x73\x76\x47\xd5\x7c\x1d\x62\xbd\x5a\x19\x6e\x35\x52\xb0\x06\x6d\x31\xbf\x25\xb2\x6f\x71\x45\xf4\x6a\x39\xa9\x08\xbd\x83\x81\x7a\xbc\x52\x73\x52\x05\x8b\x6b\x75\xee\x54\x81\x43\x90\x05\xcc\x9e\xaf\x7d\x3b\x08\xa9\x60\x25\x39\xee\x44\x43\x38\x07\x90\x69\x08\x29\x08\xeb\x83\x08\xc7\x45\x80\x4e\x04\x56\x93\x1c\xad\xc2\x83\x2d\xde\xab\xf1\xd4\xaf\xa4\x56\x6d\xc3\x83\xb2\x38\xa7\x57\x73\x87\x5b\x5a\x53\xb9\x57\xb3\x10\x5c\x6d\x60\xa0\x10\xe8\x04\x0b\xda\xc2\x70\xd5\x86\x54\xb7\x24\x24\x9e\x57\x06\x90\x5c\x1f\xf7\x0e\xcb\x6a\x03\xa8\x67\x07\x20\x77\x44\x11\x93\xa2\x0d\xe8\x0d\x53\x5a\x4c\x55\x5f\xc3\x30\xd7\xcf\x15\xb4\x05\x21\x88\xc2\x56\xf7\x68\x47\xc5\x46\x7d\xb7\x1a\xf6\x6e\x9f\x6a\x27\x92\x6c\xf5\xf4\xdf\x78\xf0\xeb\xe1\x35\x1e\xe1\xf5\x9a\x93\x35\x96\xec\xc0\x8a\x22\x8a\x85\x61\x81\x8e\x68\x27\x09\x27\x16\xa4\xb8\xaa\x88\x10\x33\xdc\xb6\x73\xcf\x74\x12\xa6\x85\xde\x3f\x78\x80\x10\x42\x61\x5b\xd2\x49\x2a\x0d\x2f\xba\xe2\x04\x4b\x62\x26\x9f\x6c\xf9\x1d\xd9\xb2\x3b\xd7\x12\x9a\xaa\x45\xfa\xc9\xae\x3b\x2a\x29\x6e\xe9\x3f\x49\xed\x7e\xbd\x0c\xd9\x04\x27\x82\x0d\xbc\x22\x68\x83\x05\x5a\x11\xd2\xa1\x0a\x66\xaf\x97\xae\xfd\x0b\xb5\x7b\xa0\xb6\x61\x6b\x4f\xad\x63\x3b\x44\xde\xf5\xa4\x92\xf6\xb8\x1a\xce\xb6\x1a\x6b\xfd\xe8\x7e\x8c\x6f\x99\x24\x86\x53\x12\x54\x33\xd4\x31\x89\x44\x4f\x2a\xda\xec\x15\xa5\x18\x3e\x70\xae\x7e\xad\x70\xa7\x7e\x55\x80\x16\x1b\x36\xb4\xb5\x6a\xec\x47\xd2\xc0\xa9\xdd\xc2\x85\x1d\x0e\x58\x92\xa2\xba\x5d\xa7\x0e\x55\x8f\xb8\x80\x71\x0c\x6a\x2b\x58\x79\x30\xe0\x46\x2a\xc2\x53\xc3\x29\xb2\xa2\xea\xe0\xf7\x22\x58\x01\x20\x9f\x9f\xd8\x40\xf9\xf2\x0e\xd3\x16\xaf\x5a\x62\x37\x9e\xf0\xac\x9a\x48\xc2\xb7\xb4\x23\x80\x83\x66\x19\x6e\x10\x43\x96\x7a\x8d\xe6\x1f\xc1\x69\xcc\x96\xcb\x25\x95\x02\xb5\xac\x82\x55\xcd\x11\xd6\xa2\x49\xd2\xad\xa2\x69\x37\x8e\xc5\x6f\x85\x9d\xab\x41\x22\xd6\xb5\x7b\xdd\x16\x4b\xd4\x73\x52\x51\xa1\xf6\x0b\x48\x62\xa5\x88\xfd\x1a\x38\x06\xae\xd4\xf8\x7e\x77\xd7\x86\x71\x6b\xbe\xa6\x20\x25\xd2\xc5\xed\x36\xb4\x25\xd1\xcc\x54\x68\x56\xb0\x40\xc1\xc2\x34\x4b\x65\xc0\x6b\xb6\x6e\x82\x1c\x8d\x01\xab\x8a\x98\x3a\x13\xee\xdb\xef\xcc\x29\x5f\x3f\x3f\x47\x3f\x5c\x77\xf2\xff\xfe\x9f\xf9\x83\xd1\x13\x09\x30\xdc\xae\x30\xc5\x6a\x40\x07\x5c\xd7\xfa\xac\x70\x89\x12\x3c\x4c\x14\xa3\xbf\xd4\x07\xa8\xf6\x39\x10\x81\x40\xd8\x62\x6e\x58\x20\xda\x6d\x88\xe6\xa9\x7a\x37\x54\x20\xb2\xa5\x52\x92\x7a\xa1\x4e\x25\x3a\x2d\xa1\xc4\x89\x3d\x72\x23\x60\x85\x66\x5c\x9c\x34\x84\xab\xf5\x28\x3c\xad\x36\xb8\x5b\x13\xc4\x06\xa9\x84\x9b\xe9\xe0\xe9\x28\xe1\x24\x3b\xc6\x6f\x9b\x96\xed\x16\x48\x30\x60\xb7\x98\x93\x66\x68\xd5\x60\x9a\x77\xc2\x0a\x07\xa1\x60\x71\xcc\x79\xa4\x20\x9d\x41\x3b\xf5\xf1\x67\x72\x69\x89\xd5\xfc\xb1\x70\x6d\x0c\xd4\xf3\x43\xf3\x4d\xba\x46\xbe\xde\xf7\xe4\x1c\xa9\xff\x46\x5f\xff\xf0\x43\xd0\x1e\x85\xbf\x94\xc6\x51\x1a\xc6\x2b\xbc\x57\x08\xfe\x23\x1e\xda\xe2\xa0\xd0\x46\x29\x21\xe7\xe8\x87\x97\xf4\x5d\xd8\xbd\x1a\x84\x64\x5b\x35\xf0\xf7\x92\xd3\x6e\xfd\x65\xf0\x93\x13\xb5\x97\x20\x69\x0b\x9d\x5d\x8b\xef\x8c\xfc\x16\xe7\xe8\x8d\x81\xc6\xdb\x60\x28\xf2\xae\xa7\x7c\x6f\x17\x0f\x5f\xe7\xe8\x7b\xc5\x94\x12\x2a\x03\xce\xf4\x3a\x20\x31\x87\xc0\x0a\x3d\xdb\x3b\x52\x2f\xd1\xb5\x84\x6f\x09\x05\xe9\x05\x3f\x5a\xe5\xa4\x5e\x20\x0e\x22\xa1\x56\x92\xbb\x26\x42\x72\xb6\x0f\x78\xf9\xf4\xa9\xbb\x95\xcc\x8e\x38\x51\x54\xc0\x8c\xc9\x66\x6e\x8d\xe7\xe8\x6b\xc6\xda\x93\x51\xe2\x8f\x85\x11\x8e\x3a\x8e\x46\x87\x1f\x3a\xa5\x86\xda\xfe\x01\x2f\x33\x02\xbf\xf6\xda\xa2\x3a\x7e\x25\xa1\xf4\xd9\x2b\xe5\xb5\x1e\xb8\x21\x71\xad\x7b\x1b\x3e\xf3\xed\xcb\xd7\x87\xce\x3e\x9e\x76\xc6\xd3\xf5\x2f\xdc\xfc\xdf\xe3\x96\x5c\x0d\x6e\xf7\xf3\x92\xbe\xa1\xfe\xc2\x6b\xf2\x0a\xcb\x4d\x8c\xce\x46\xa0\x29\x61\x24\x74\x1b\x63\x6a\x14\x95\x11\x23\xf8\x57\xa6\xa3\xc5\xe0\x70\xf5\x2d\x91\xe5\x79\xcf\x51\xb8\x88\xc2\x1a\x5f\x0d\xab\x96\x56\xd9\x12\x7b\xf8\xda\xaf\x54\x29\x80\xd1\xea\x5a\xda\xdd\x1e\x5a\x87\x1f\xfb\x1c\x05\xf3\x04\xcb\xd0\x40\x0c\x8e\x57\x48\x3e\x54\x6a\xef\x3d\x27\x42\xc1\xba\x5b\x23\xac\xce\x9a\xf6\x94\x58\x23\xc5\x6a\xfb\xaa\x81\x32\x65\x08\x97\x98\x5a\x5b\x20\xd5\x2e\x7a\x4d\x05\x9a\xf7\x63\x24\xc1\x8c\xa5\x02\x09\xd6\x4e\xb0\x02\xb3\x0e\xb3\x40\xf4\xde\xa1\xad\x05\x90\x43\x3f\x6d\x27\xba\x79\x96\x51\xcb\xa2\xa6\x27\xc1\xd8\x73\x7a\x9e\x12\x4f\x0d\xed\x6a\x18\x05\x88\x55\xf7\x00\xf5\xd1\x01\x22\x10\x2c\xa0\xaf\x09\xa3\x7b\x74\xb7\x8a\xb9\x39\x5c\xb1\x73\x35\x44\xa9\xed\xd4\x98\x4e\x3b\xbc\x77\x6a\x1f\xee\x68\x3f\xb4\x0a\x8d\xe2\x11\x05\x8b\x16\xe2\x16\xa7\xf1\xb2\x1a\xa4\xb3\x59\xf7\x6c\xd0\x47\xb0\x26\x66\x95\x06\x5a\x58\xf7\xed\xa2\x71\x2b\x65\x5a\x5b\x68\x2d\x57\x8c\x73\xb6\x9b\xcd\xcf\x96\xa0\xf5\x2d\xed\x34\x8a\x18\x12\xd8\xbd\xd6\x46\x1f\xe8\x93\xb5\x32\xbf\x48\xd3\xd0\x4a\x61\x41\xbb\x57\x3b\xc3\x48\x54\x9c\xf6\x41\xaf\x14\x13\x3d\xf9\x5e\x59\xcb\x6f\xff\xf4\xd1\xfb\xc8\xa3\xb1\xb4\xc4\x7e\xff\xec\x41\x76\xc8\xc6\xba\x4c\x30\x29\xf6\x88\x68\x88\xd3\xb6\x55\xeb\xb4\xb6\xb3\x0c\x30\x64\x7c\x7d\x38\x62\xa0\xf1\xf4\xd4\x69\x80\x3c\xfc\xde\xfd\xad\x7e\x9f\x9d\xb8\xc1\x45\x32\xe3\x3c\xc0\x6b\x10\x08\xa4\x6d\x96\x0e\xb1\x2f\xdc\x0e\xf2\x46\x06\x30\x17\x21\xcd\xa9\xcf\xfd\x03\xfd\xdf\x4c\xae\x3f\x27\x12\xd3\x56\xe4\x94\xae\xcc\x42\x4c\x3b\x4d\xe7\xa6\xf1\x67\x02\xd5\x58\xe2\x83\xd4\x19\x8f\x5d\x20\xd2\x80\x5f\x19\x92\x72\xc6\x3b\xb0\x00\xf5\xb3\xb2\xee\xc7\x88\xd6\x90\xa0\xa1\x2d\x63\x09\x59\xdb\x49\xeb\xcc\x35\x6d\x1a\xc2\x63\xed\x3d\x27\x2c\x35\x0e\x15\xe8\x1f\x7f\x5b\x2a\xdb\x62\x07\x2a\x32\x47\x5b\x7c\x4b\x10\x95\xba\x85\xb2\x14\x24\xfa\xbc\xc2\xdd\xe7\x6e\x8a\x78\x20\x4d\x6a\x4e\x18\x70\x72\x47\x05\x75\xe2\x20\x85\xd1\x1d\xe6\x81\x32\xe2\x75\x84\x68\xc8\x9f\x36\x04\xf4\x26\x18\x3a\xd3\xb2\x9c\x92\xa2\x58\x8c\xb3\x3b\x4b\x13\x25\xea\x4c\x76\x10\x4a\xf1\x70\x62\x38\xf1\x29\x2e\xc1\x9b\x61\x2c\xa5\x15\x51\x2b\xd0\xce\x8a\x71\xc2\x89\x94\xa4\x6c\x32\xab\x78\xa1\xeb\xe7\x81\xe8\x57\x16\x5b\xb5\x01\x86\x02\xf6\x21\xc8\x0f\x69\xdd\x40\xd6\x3b\x31\x35\x65\xa8\x80\x65\x93\x0e\x1d\xfd\x65\x20\x88\xd6\x4a\x68\x35\xd4\x1b\xb4\x6e\x77\xc0\x23\x14\xcb\x54\x66\xe5\xe4\xde\x26\xa6\x09\x01\x59\xe0\x43\x86\x45\x09\x27\x22\xb7\xb8\x26\x11\x82\xa7\xd3\x8d\x2b\x8a\x63\xdc\x30\x12\xc1\xc0\xf0\x0c\x0c\xb5\x0b\x83\x92\x3a\x5e\xd9\x81\xb9\x43\x05\x34\xe7\xff\x76\x4c\x2d\xee\x6a\xaa\x50\x9e\x75\x0a\x02\x96\x1b\xaf\x88\xdc\x69\x93\xc0\xe8\x08\x62\x7a\xc2\xab\x41\x2a\x03\xc5\x48\xf6\xb7\xd1\x94\x97\x6d\xcb\x76\x01\x49\xd7\xb8\xef\x91\x24\x78\x2b\x42\x67\xa6\x56\x8e\x15\x13\xa2\xdd\x5a\x58\x51\x5c\x6b\xea\x19\xa8\xd8\x90\xda\xfc\x98\x90\xaf\x42\x02\xa0\xde\x0d\x69\x7b\xb0\x40\xb5\xc8\x6d\x25\xe1\xd6\x81\xc2\x09\xc8\x66\x23\x44\x28\x77\xaa\xf8\x38\xf1\x65\xca\x7a\x34\xed\x55\xe0\x2c\x75\xde\x1a\xa9\xed\xe3\x16\xd3\x2d\xa9\xd1\x6a\x5f\x72\xf6\x3a\xfd\x79\x1c\x9e\x63\xb6\x40\xb4\x80\x17\xa0\xe8\xab\x23\x6b\x03\x27\x5e\x69\xb8\xc4\x24\x88\x46\xb9\xe6\x5c\x2d\x50\xd0\x55\xbb\x07\xc2\x8d\x58\x16\x16\x9e\x05\x2d\x8b\xf2\xd2\xcc\x65\xe9\x7c\x8e\x9a\xa1\x53\xe3\xbc\x66\xd6\x05\x5b\xcf\x8a\xf2\xd0\x33\xc1\x0b\x24\xf9\x40\x02\x59\x17\x2d\xf0\x87\xbe\x76\x50\x33\x18\x12\x30\x03\x8d\x0f\xde\x2f\xe6\x91\x25\x72\x19\x06\xa8\x77\xd9\xf7\x22\x96\x4b\xdf\x60\xc7\xb5\x24\x43\x1d\xd5\x8e\x8d\x96\x60\x1e\xe9\x4e\x63\x3b\xbd\x32\x68\x32\xcb\xf0\x65\x5e\xd8\xb6\x6d\x84\x2e\x1c\x7e\x8d\xed\xfc\xfa\x08\x55\x05\xcd\xa2\x29\x46\xac\x5c\x34\x65\xe9\xa2\x71\x6b\x17\x1d\x69\xf1\xda\x76\x09\x0f\x48\x1a\x14\x84\x66\xdc\x62\xc2\x3a\x46\x47\x59\xc8\xa8\x6c\xff\xaa\xcf\xdc\xfa\xc3\xed\xa7\xe7\x24\x41\x4b\x0d\x5f\xf4\x23\x6e\xa9\x42\x39\xed\x72\x83\xd1\xb2\x66\xfa\x6b\xf4\xcc\xcc\x32\x5b\x2b\x34\xe0\x0a\xc1\xbe\x6e\x59\x75\x3b\x9b\x2f\x25\xdd\x12\x21\xf1\xb6\x9f\x9f\x67\xbd\xd5\xe7\x61\xe2\x64\x5b\xc6\x4a\xd7\x52\x1d\xee\x39\x88\x87\x35\xbd\x23\x9d\x9d\xd1\x0d\x8b\x7e\x9e\xe9\xaf\xe6\x4e\x66\x18\x71\xd1\x0c\x72\xe0\xe4\xec\xe1\xc1\xbd\xb5\xa4\x5b\xcb\x4d\x14\x4d\xab\x06\x99\x75\xb3\x07\xbb\x34\xed\x9f\xa1\x2f\xce\x8f\x5c\xbe\xd5\x09\x61\x85\xda\x75\x2e\x51\x4b\xb0\x90\x10\xf7\xb1\xa2\x46\x19\x41\x4e\xcc\xc4\xeb\xbe\x7f\x90\x93\x50\x88\x48\xe8\x22\xc2\xab\x69\x36\xd3\xe0\x56\x90\xbc\x89\x21\x1a\x74\x61\xc9\xa7\xd8\x44\x11\x8f\x6e\xa2\xfe\x2a\x36\xb1\x0d\x4a\x3f\x97\xc8\x48\x2d\xbe\xf0\xf5\x69\x4c\xc3\x37\x4a\xc8\x43\x35\x4e\xbe\xca\x3b\x19\xb4\xba\x28\x21\xba\x5b\x37\x44\x4d\x2f\x1c\x22\xc4\x47\xa2\x44\x21\x6e\x2b\x30\x7d\x75\x14\x81\x49\xdc\x9a\xb8\xac\x89\xd7\x00\x62\x89\xa8\x1b\xa8\xd1\x56\x4f\x39\xb4\xd4\x27\x4f\xd0\x2b\xc2\x1b\xc6\xb7\xd6\x7e\x33\x8e\x67\xd6\x45\xc1\x47\x1d\x88\xa9\xdc\x72\x82\x08\x31\xac\x44\x21\x9a\xd6\xb6\x02\x11\xa0\x3e\x0d\xe3\xf0\x23\xed\x92\x5d\x17\x39\xc4\x37\xca\xbe\x10\x03\x27\x26\x8e\x83\xb4\xf5\x3d\x62\x9d\x06\x1d\x7f\x22\x5a\x5b\xb5\x11\x47\x2a\x10\x5e\x63\xda\x79\x17\x7f\xc1\x8d\x12\x7e\xaa\x41\x2e\x33\x9b\xbf\xc8\x5f\xbe\xfc\x12\xf5\xb8\xa3\xd5\xec\x38\x4a\xbd\x32\x36\x98\xde\x88\x9d\xe2\x61\x3e\xb6\xd2\xe6\xea\xda\x9e\xa9\xd3\x5d\x59\x7a\xf4\x45\x36\x62\x0f\xdb\xff\xfd\x3f\xb0\x25\x9c\x1f\xf9\x7d\xf4\x2f\x2c\x04\xe1\x72\x36\x31\xe8\x33\xf4\xc5\xf2\x8b\x45\xd6\x60\x4b\x84\xc0\x6b\x72\x2c\xc3\x7a\x1d\x18\xb2\x9e\x69\x75\xac\x7b\xfc\x4f\xc2\x99\xde\x59\xc2\x59\xe7\x19\x39\xc0\x34\x26\x30\x6e\x30\xb1\x0e\x50\x71\x84\x37\xa4\xa0\x39\x6c\xfb\x6b\xd7\x9f\x37\xfd\x3b\x1d\x25\x6e\x70\x45\x8c\x4e\xad\xad\xff\x41\x40\xb4\xc6\xb8\x1e\x7d\x1b\xb0\xb3\xcd\x58\xe3\x3e\x01\x67\xa6\xfb\x8e\xd1\xfc\x89\x7b\x40\x63\xd0\xb7\x2f\x5f\xe7\x36\x07\xa0\xbe\x3e\x49\x67\xda\xe0\x2d\x01\x2f\x9a\x51\xf6\x95\x51\x67\x53\x61\xfc\x50\x01\x8a\x83\x0b\xc7\x1b\x80\x8a\x80\x56\x82\x74\x72\x01\x24\x4c\xde\xe1\x6d\xdf\x42\xb0\x9e\x4a\x6f\x6f\x2b\x5a\x42\x77\x14\x23\xdc\xe9\x60\x7c\x1b\x6e\x1a\x95\x35\x5a\xd8\xbc\x52\xf1\x82\x65\x9c\xa3\x47\xef\x4b\x66\xf6\xfd\x97\xb1\xe6\x66\x85\x4e\xf4\xa5\xd5\x87\xc3\xe0\xe6\x02\xad\x86\xbd\xf5\xa9\xcb\xd8\xaa\x73\x70\xeb\xf1\x5e\x43\x67\x45\x3a\xd2\xd0\x8a\x62\x4e\x4d\x6e\x01\x27\x72\xe0\x9d\x08\x58\x87\xa1\xc4\xd5\xb0\x0f\x79\xd0\xd4\xfe\xec\x62\x63\xea\x32\xb2\xf9\x1c\x7d\x95\xb8\xbd\x40\x4c\xdd\x07\x21\x17\x94\x86\x26\xb4\x1c\x3f\xd2\x77\x16\xe8\x78\x73\x35\x59\x11\xbc\x31\x74\xd7\x44\x86\x6e\x2f\xfb\xf5\x4b\x22\xab\x8d\x35\x68\x8d\xeb\xca\xe8\x36\xd9\x79\x47\xa6\x1e\x25\x3b\x00\x84\x1f\x57\x9d\x74\xe2\x60\x4b\x57\x00\x26\x2d\xa9\xaf\xf2\x28\xdd\xe8\xa2\xb0\xee\x12\x26\xe8\x88\x38\x77\x46\x49\x21\x6f\x56\x5a\x2e\x9c\x98\x2b\xd7\x80\xdc\xf6\xe4\x6f\x3a\xda\xde\x80\x77\x38\xec\x4a\x05\x1a\x7a\x85\x0b\x6b\x8e\x57\xca\x0e\xc5\xdd\x9e\x75\x23\x16\x67\x08\x80\xf1\x6d\x29\x98\xbc\x39\xea\x48\xdf\x26\xd4\xb0\xc1\xc2\x00\xf3\x6b\x52\xb1\x2d\xf9\xcb\x86\x09\x1b\x89\x74\x88\x4e\xda\x56\x28\x31\xe8\xe8\x93\xd4\x96\xc2\x8d\xa7\x5e\xf1\x0c\xe3\x2a\xa8\x3d\xd8\xf6\x93\xc0\x01\x8d\xcf\x80\x87\x4a\xb4\x25\xb8\xf3\xc6\xed\x0a\x56\x23\xd0\x5a\xad\x47\xc1\x1e\xf8\x04\x1b\xc6\xfc\x71\x16\x4c\x23\xfb\x51\x00\x02\x27\xdd\x18\xbf\x0e\x9c\xb4\x71\x5c\x01\x10\x43\x11\xb4\x76\x6a\x81\x0f\x01\xd6\x02\xd1\xa1\x2e\x70\x97\x63\x63\x0d\x44\xa0\x5f\xb8\x81\x15\x4b\x70\x71\x13\xce\x2a\x42\x6a\x43\x03\x58\x3b\x69\xec\xe0\x7d\x4b\xbd\x87\x47\x90\x3b\xc8\x69\x4c\x3d\x3d\x90\x4c\x95\x42\xc1\xad\xdc\x6c\xea\x3c\x96\x06\x0b\xa4\x13\x29\x97\xea\x7f\xe0\x12\xc9\xbd\xc7\x02\x12\x22\xd1\x4c\x89\x55\x8f\x50\x0b\x10\xb3\x15\x44\x87\xdf\xcd\x53\x0a\x56\x8b\x4f\x4f\x45\xc9\x4e\xed\xe0\x30\x8d\xa7\x89\xf6\x32\x40\x1a\x0d\x72\xcd\x78\x43\x57\xb4\x64\x90\x12\x59\x73\xbc\xf3\xfe\x4d\x2a\x37\xf0\x0f\x0d\xfa\xeb\xe7\x5a\x97\xa4\x52\xa0\x8a\xb5\x2d\x09\x72\x5c\x50\x1c\x62\x89\x67\x13\x46\x3f\x2c\x4c\xf5\x39\xee\xf6\x9f\xab\xc9\x20\xc3\x62\xcf\x86\xc0\x1d\x6d\x93\x2d\x40\x45\x5c\xd3\xbb\xd4\xfd\x25\x86\x6a\x83\x70\x38\x1b\xc8\x75\x37\x0f\xe4\xa2\xb4\x90\x75\xa4\xd5\x4e\xbd\xf0\x9a\xe8\x5c\x10\xab\xc9\x52\xe3\x48\x1d\x04\xfc\xad\xe5\x73\x34\x91\x12\xd3\xd6\x9d\x0e\x1e\x2e\x51\x96\x2f\xf6\x98\x1b\x4a\xda\x5a\xa7\xd3\x0d\x82\x08\x74\x53\x90\x9d\xaf\x34\x3d\xf3\x45\xee\xbd\xbe\x72\xb0\xd5\x98\x75\x7f\xe3\x73\x83\xa2\xb9\x6e\x94\xea\x76\x83\x7a\xcc\xf1\x96\x48\x9d\x90\x4a\x7a\x59\x9e\xd0\x8f\x7a\x7f\x03\x49\x96\x82\x18\xe7\x10\xe8\x37\x9d\xce\xa5\x6c\xf7\xe7\x10\x5f\x4b\xb9\x79\x8f\x85\x3e\xc5\x0e\x2b\x9d\x80\x70\x74\xe3\x07\xbc\xd1\x7b\x9d\x69\x7f\x38\x15\x36\x21\x47\x2b\x33\xe1\xf9\xa8\x66\x54\x88\x41\xfb\xac\x74\x36\x94\x98\x27\x81\x48\x1b\x2f\x14\x82\xae\xbb\xad\x49\xfc\xd1\x09\x41\x2b\x52\x61\x75\x4e\x37\x13\xdb\xbb\x41\x15\xeb\x94\xc5\x04\x2e\xd6\x15\x93\x1b\x74\x63\xa1\x7d\x93\xcd\x74\x93\x42\xfb\x66\x89\x2e\x5b\xba\xee\x9c\x6e\xb2\x63\x56\xb5\x00\x9d\x0d\xf6\xb0\xb3\x38\x8a\xd1\x8a\x13\x7c\x0b\x89\x99\x3a\xb3\x48\x6b\x63\x89\x5f\x52\xc7\xdf\x24\x59\x9b\x6c\x5a\xcb\xfd\x38\xc1\xf5\x1e\x6d\x14\xc7\x3b\x74\x66\x71\x0e\xeb\xb8\x6f\xce\x78\xfc\xed\x8e\x3d\x9b\x89\xd4\x12\x3c\xc8\xcd\x2c\x9b\xef\x27\x43\x96\xf3\x92\xb6\x77\x0a\xc6\x26\x91\xcf\xcb\xe9\x64\xdd\x44\x17\xd0\xb0\xe1\x04\xe1\x5e\x49\x3d\x52\xa3\xd8\xeb\xcd\xac\x7e\x00\x87\x12\x26\xfd\x7a\x3d\xe0\x00\x80\xc2\xc9\x43\x08\x7d\x98\x98\xbf\x52\x04\x03\x4e\x6f\x23\x02\x56\x03\x77\x96\x2d\x15\x61\x80\x30\xc9\x19\xb2\x23\xbc\xd8\x2a\xde\x94\xe6\x09\xe9\xb0\x12\x8d\x34\x39\xb4\x33\xc9\x29\x16\x79\x60\x2b\x75\xe4\xaf\x4e\xa2\x85\xb4\xab\x7c\x7e\xf5\x6c\x0e\x39\x74\x22\x48\xab\x73\x72\xd3\x39\x8c\x2a\x2c\x48\xa6\x5d\x68\xf7\x38\x5b\xd3\xca\xa0\xba\x58\xd8\x88\x61\x98\x93\xca\xc3\x9c\xd9\xd9\x1c\x88\x2c\xf8\xb9\x6a\x09\xee\x86\x7e\x36\x3f\xe0\x5e\x56\x20\x54\x70\x5d\xe1\xea\x36\x73\xa3\xfb\x84\xca\x30\xc2\xe8\x53\x76\x7c\xba\xd6\x4e\xc9\x9d\xb5\x62\x43\x14\x92\xfb\x2b\x07\xdb\x0d\xe1\x64\x99\x8e\xfa\x0f\xa5\x84\xed\xa8\x20\x13\x1d\x69\x60\x38\xcc\xb3\x11\x5e\x9b\xc0\xac\xe5\x54\x3b\x62\xcf\x3c\x4e\xed\xec\x26\x60\x96\x8e\xc9\x78\x11\x82\x28\x9b\x5c\x47\x82\x0d\x23\x82\xf3\x82\xb9\x87\x4a\x32\xee\x0f\x4b\x6e\x98\x20\x0a\xc8\x95\xce\xec\x8f\x46\xa1\x0d\x3a\x03\xd3\xdc\x68\x16\x81\x1b\x31\xf7\x08\x29\x4c\x9a\xc8\x6e\x0b\x3f\x85\x4c\x37\x98\x66\x18\x68\x9d\x3b\x2f\xd0\x68\xde\x5b\xb4\xb6\xd0\x01\x5a\x1e\x24\x08\x23\x97\x77\x55\xee\xe6\xa2\x09\x51\x27\xf3\xed\x68\x17\x1d\x65\x48\xbb\xa8\x6f\x47\xbb\x94\x3a\x8c\x35\x2f\xc7\x23\x62\x80\x14\x9a\x4c\x0c\xa6\x23\xa5\xf9\x08\xea\xfb\x72\x37\x1f\xa8\x88\x7a\xd9\xaf\x47\x3a\x65\xe1\x8b\xb8\x73\xf2\xf3\xa1\x41\x7c\x0e\x60\x47\xdb\x72\x63\x1b\x0a\x89\xe6\x19\x89\x68\xcc\x47\xbc\x6f\x89\xed\x5d\x76\xef\x7c\x07\xf6\x96\xd1\x6f\x21\xd0\x56\x91\x2c\x4e\x6f\xc2\x8a\xa4\x76\x97\x96\x96\xff\x06\xb7\x8e\x53\x6c\xb5\x4d\xa8\x80\xf5\x09\xdd\x3e\xa3\x1c\xd9\x18\xaa\x3c\xd4\xfb\x82\x2c\xdb\x3b\x76\xab\xd3\x68\xed\x9a\x10\xc7\x26\x61\x04\x77\xda\x71\xab\xb4\xa9\x45\x3a\xba\x8d\x89\xb3\xca\xdf\xfb\xe8\x39\xdb\x52\xa5\x60\xab\x61\xb4\xc5\xb8\x37\xe0\x7b\x32\x74\x3e\x36\xed\xd2\x34\xed\x87\x36\xa0\x05\xd8\xa5\x7e\x47\x1a\x74\xe1\x62\x19\xb9\xe6\xe4\xfc\xcd\x05\x16\x68\x86\xe2\x30\x44\x30\xe0\xd2\x43\x31\xa7\xef\xd2\x40\x66\x30\x4e\x9a\x25\x15\xd7\x9d\x52\x9f\x2b\x92\xf5\x55\x04\x3d\x47\x8f\x1e\xe9\x76\x35\xba\xb8\x28\xb0\x8f\x91\xd1\xd5\xc7\xc0\x9d\x93\xa6\xd8\xe4\x3e\xfb\xf6\x7e\xc2\x37\xed\x0f\x71\x8c\x68\x46\x1c\x56\x7f\x21\x32\x75\x56\x1d\xed\x98\x3c\xca\x69\x95\x40\xc0\x2c\x34\x84\xd4\xc4\x8a\xff\xeb\xe0\x9a\xd0\x7c\x27\x20\x5b\x56\xaa\xc7\x00\xfd\xff\x99\x6f\x2c\x81\xdb\x27\xe4\x40\xe6\x08\x8e\xe7\x3d\x67\x17\x11\xc9\xa2\x31\xba\x8e\x83\xc6\xf7\xbf\x91\xa3\x3f\x40\x7d\x63\x86\xbb\x8c\x22\xe0\xf8\x3e\x14\x40\xde\x49\x8e\x0f\x05\x03\xf4\x7c\xfa\x52\x69\x0b\x07\x3f\xf4\xa8\x1e\xfa\x96\x56\x58\xba\x45\x0b\x67\x14\x51\x49\xb6\x26\x87\xb0\x90\x0f\xf4\x07\x8c\x28\x1c\x97\x0d\x32\x62\x02\x5c\x98\x54\x82\xd3\x32\x3b\xdc\x00\x71\x98\x51\x69\x05\xd6\x8a\x8d\xed\xb6\x3c\x83\xc3\xe6\xc2\x8f\x89\xc6\x92\xe2\x7b\x62\xfe\x49\xb0\x4a\x13\x13\xee\x0b\xe8\xac\x9d\xa2\xd7\xcf\xd1\xcf\x7a\x01\xa1\x14\x32\x04\xa6\xaf\x30\x37\x06\xf2\x06\x21\x21\x4f\x0b\x0b\x97\xf9\xf1\xf4\xe7\x99\xdd\xd3\x9a\xc0\x72\x67\xf3\xa5\x4f\xef\x9a\x2b\x16\xa7\xd6\xa0\x35\xcb\x5f\x06\x02\xbc\x0f\x9c\x4f\x4f\x7f\x3e\xbc\xf7\x70\xa8\xe5\x38\x38\x57\xb8\x55\xb0\xcc\xd4\x08\x6f\x1d\xfc\x96\x20\xb4\xb0\xba\x83\x2b\x0c\x35\x23\x1a\x24\x26\xc1\x3b\x01\x8d\x4e\x76\x60\x0d\x2a\x41\x47\xfd\x56\x82\x43\xc1\x3e\xf8\x35\x52\x9b\x8e\x83\xcb\x59\x44\x1d\x54\x68\x2b\xa6\x44\x0d\xb0\x6c\x7d\xc9\x55\x33\x73\xf4\xc1\xeb\x71\xa9\xcd\x0a\xbc\xdd\x67\x26\xee\xef\xfd\xaf\xa4\xd6\xb7\x69\xd3\xe4\xa4\xf0\x5f\xa9\xae\xee\xb3\x44\xc2\x53\xf7\xc9\xee\x9e\x9f\x40\x0e\x48\xac\x9b\xc7\x87\x97\xa6\x53\x8e\xcf\x4b\x9b\x69\xab\x52\xe7\x49\x94\xd3\x5a\xae\x9b\x44\x39\x33\x77\x83\x28\x98\x16\x0b\xf4\x7a\xc3\xd9\x4e\x1b\x27\x79\x66\x4a\x9c\xb6\xfa\x9d\xbf\xec\x50\x60\xe4\xc5\x53\x3a\x98\xb0\x12\xa2\x4f\x69\x99\x15\x56\x07\xb7\x22\x6a\xb1\xe5\xc4\x95\x1f\x09\xa7\xcd\x3e\x2e\x59\xb0\x0f\xdd\xea\x0d\xe3\x04\xf5\x3a\xd3\xc8\x0a\x6b\x50\x6a\xc1\x5d\x0b\xe1\x93\xdc\xd2\xd6\x57\x11\xb0\xb5\xea\xc2\xa1\x7b\xce\xea\x01\xea\x00\x98\x7c\x52\xc2\x39\xe3\x91\xad\x87\xc1\x4f\xaf\xef\xce\x9a\xec\x9b\x06\xd3\x76\x48\xdd\x72\x68\x22\x0b\x06\x15\x1d\x03\x4b\x58\xef\x6c\x5e\xf6\x0d\x1c\x4c\x8c\x49\xc4\x95\xd7\x2e\xcb\xb0\x0f\xc1\x49\x3b\x00\x68\x4e\xb1\xf9\xa9\x58\x7c\x2d\x6b\xcd\x96\xae\xcb\x96\xdc\x1d\xe6\x88\x8a\xab\x1c\xbf\xfe\x8a\x05\x24\x3a\x9a\x1c\xbb\x3c\xed\xef\xe0\x08\x97\x83\xdc\x30\x4e\xc7\xd2\x06\xed\x07\xd2\xc6\x70\xef\xd2\xc6\xca\xbb\x38\x9b\xb0\x44\x9f\x3c\x41\x57\x10\x95\xfb\xdf\x73\xf4\xbd\x8e\xf9\x39\xd6\xe3\x02\x2d\xa3\xbd\x69\xa3\xa6\xf7\xa2\x53\x49\xb0\x02\x22\xf8\xdf\xc7\x17\x02\xc3\x1d\x01\xcc\x28\x55\x7b\x72\x47\x7f\xca\x77\xa4\xe9\x4c\x43\x29\xbe\x09\xb7\x61\x6d\x2d\x7c\xa8\xa3\x64\xc2\x4c\x00\xc0\x0e\x55\xde\xbe\xfd\xf5\xd1\x23\x68\x6c\xc8\xe2\x00\x2c\x46\xe1\x11\xa1\xc6\x41\x68\xa8\x0f\xc4\xc6\x26\x5b\xe5\x0e\x87\xe9\x5f\xca\xdf\x4e\xb1\x07\x74\xcc\xf1\x96\x39\x05\x3a\x91\x5b\x24\xb2\xfd\x0c\x5d\x9a\xc8\x79\x91\x73\x80\x2e\xe7\x94\x1a\x9d\x23\x6c\xf0\x44\xfd\x54\x48\x63\x46\x45\x46\xf2\xc1\x00\xf0\xe7\xf9\x2b\x6f\x3f\x16\xa8\x4c\x22\xec\x31\x29\x89\xe6\x79\x48\x1d\xbd\xff\x1c\x25\x62\x89\xfc\xca\x6a\xdc\x8f\x9d\xda\x6b\xd3\x0f\x66\xf8\x18\x7f\x74\x3e\xa5\xb9\x0a\x6a\x36\x55\x24\xbd\x8f\x4b\x51\x0d\xa0\xfa\x43\xe7\xee\xd7\xf8\x5c\xdb\x82\x2b\xa9\x28\x93\x0a\xda\x80\x6b\xb6\xac\x49\xcf\x04\x95\xb3\x86\xb3\xed\xb9\x02\x4f\x06\xb3\x31\xd7\x38\xd2\xdc\x0e\x3c\x60\x71\x06\x9e\x71\x1d\x18\xf3\xdb\xee\x22\xc9\x09\x36\x21\x6a\xf4\xf4\xf1\x11\x1e\x8f\x33\x7f\x5a\xf6\x8f\x72\xd0\x24\x0b\x9b\x7d\x6b\x4a\x38\x38\x67\x1b\xea\x18\x77\x7e\x12\x01\x21\x66\xc9\x07\x21\x77\x8c\xcb\xcd\x7e\xa1\xab\x85\x40\xf2\x6b\x5c\xb8\xac\x62\x9c\x93\x2a\x4b\xcc\xf6\x69\xa1\xab\x41\xa9\x5f\x7b\xa6\xdd\x15\x7d\xbb\x77\x56\x0e\x95\xe0\xa9\x7a\xd2\x33\x01\x86\x4b\x4d\x6d\xfc\x9f\xec\x61\x01\x8a\x1c\xd6\x03\xe6\xb8\x93\x24\xf0\x7e\x99\x29\x24\x4b\x96\x62\xa3\x76\x18\x94\x84\x15\xd9\xd8\xdb\xd5\x7e\x31\xb4\x03\x3f\xb8\x26\xbd\x1d\xde\x17\x42\x94\x84\x6b\x85\xcf\x17\xe3\x01\x38\xc0\x40\x3e\x96\xef\x33\x69\x4a\xf3\xe4\x1e\xfa\xae\x56\x03\x02\xfc\xe2\xc2\x52\x3e\x91\x56\xc2\xb2\x04\x1a\x44\x9c\x83\x63\xb3\x6b\x4c\xee\x88\x01\x38\x8a\xfc\x9a\x68\x82\xcf\x75\x8d\x8c\x75\x81\xe3\xe2\x76\xa7\xaa\x82\x32\xbc\x74\xfa\xf2\xb5\x57\x0d\x57\xfb\xb0\xbc\xcf\xd3\x9f\x67\xd1\x82\x42\x63\xfc\x99\x67\xf9\x5b\xec\xc8\x07\xf2\x62\xba\xc8\x5c\xb2\xbe\xf1\xd4\xda\x37\x9b\x89\xc6\xcc\x12\xb3\x8f\x85\xd9\x58\x04\xe1\xe3\x41\x05\xe6\xbd\x9e\x62\x7e\x04\xc8\x0a\x40\xf1\x0e\x82\xc4\x7f\x59\x06\xd4\xc1\xe4\x74\xcf\xad\x32\x77\x9f\xf3\xf6\x69\xa2\x09\x83\x7c\xa6\xf3\x25\x38\xfa\x7c\xc9\xa6\x97\x6a\xf3\xdf\xe0\x0e\xaf\x49\x50\x2b\xc1\x87\x00\x81\x15\x6e\x99\x91\x6a\x05\xff\x22\x6d\xbc\x0f\xc0\x5c\xe1\xc4\x7d\x4f\x3a\x24\x06\x98\xaa\x19\xda\x76\x9f\xb3\x4d\xe1\x26\xd7\x99\x36\xda\x71\xbc\x26\xf2\x52\x97\x3c\x9a\x79\xd7\xc0\x99\x55\xff\xe6\xcb\x28\x75\x48\x33\xd6\xa7\x8f\xde\xa7\x07\x99\x96\xd9\xb8\x7f\x56\x56\x28\x0e\xf5\x73\xa5\x3f\xa2\xf3\xf8\x78\xa1\x27\x46\x01\x9f\x88\x39\x48\x8c\xb4\x20\xb7\xa5\xf5\xec\x7d\xa9\x18\x78\xe0\x7c\x4a\x9a\x5e\x3f\x17\xe5\x8d\x7f\x58\x56\xc0\x29\x21\xfe\xd6\xae\x20\xc8\x8e\x28\xd8\x92\x29\x76\xfe\x9d\xc8\xcf\xc0\x65\x0d\x38\xb8\x65\x77\xb8\x4d\x12\xc0\x5d\xe1\x0e\x9f\x32\xe1\x90\x3e\xbf\x2d\xef\x3d\xdd\xb1\x8f\x45\xf5\x70\x4b\x54\x43\xe6\x50\x2e\xb8\x92\x0b\x50\xb7\x39\x2c\x85\xac\x10\x37\x7e\xaa\x7c\xa4\x9b\xfe\x2e\xf4\x25\xac\x18\x97\x2e\xc8\xe0\x0b\xb0\x29\x32\x53\xc2\xd0\x29\x49\x2e\xbe\xae\xd3\xb3\x76\xaa\xf5\xde\xd6\xc2\xa4\x32\x13\x6a\x3b\xa8\x09\xe3\x6f\xfd\xd8\x10\x04\xe5\x42\x1a\x65\xbd\x7c\xef\xc9\xa5\x82\xaa\x86\x6e\x7a\x93\xdc\x2a\x9d\x04\x76\x55\xa6\x02\x66\xb8\x40\x26\xf9\x79\xcd\x89\x2e\x4b\x64\xf4\xba\x86\xf1\x5c\xe8\xee\xd1\x00\x25\x86\xe0\xa2\x59\xbc\x06\x65\xe4\x73\x22\xa0\xec\xa9\x4f\x9a\x18\x8d\x1f\x7c\x89\xf2\xc0\xd0\x93\x27\xe8\x15\xde\xa7\x3a\x67\xa9\x09\xc1\xd5\x26\x08\xdf\xec\xcd\x65\xf3\x62\xc1\x93\xe5\x83\x0c\xad\xc2\x3b\x68\xa1\xeb\x76\xe4\x2e\x9a\x0b\xbb\x7b\x6f\x5b\xe9\x82\x58\xd9\xd4\x85\xc8\x9b\x5e\xc9\xd5\x30\x6d\x18\xf8\x3b\x5a\x65\x4d\xde\xcd\x98\x2a\xd3\x7e\xfc\x72\x47\xda\xa0\x59\x7a\x36\x4a\x16\x77\xb4\x9d\x32\xd0\xf3\x2e\xe5\x9a\x2a\xf6\x53\x08\xe8\x23\xd2\x8a\x52\xc8\x07\xd9\x84\xae\xd1\x92\x55\x11\x88\xf1\x68\xfd\xaa\x29\x98\xa5\xe9\x04\x47\x69\x2a\xd9\xa6\xb5\x73\xec\xe3\x94\x94\x6f\x99\xa1\x5f\x1b\x65\x70\x66\xc2\x21\x45\xe2\xd2\x94\x0a\xe8\x19\x85\xe2\xbf\xba\xd6\xaf\xb7\x32\x76\x50\xc4\xb0\x92\xf4\xce\xe4\xa0\xdb\x44\x94\x85\x0e\x39\x87\x95\x7f\x74\x75\x26\x48\xd3\xd9\xe0\x3b\x92\x4e\x05\x77\xef\xc0\xb8\x12\xa8\x25\x8d\x5c\x98\xec\x68\x7b\xa7\xcc\x9b\x03\xba\xfe\x08\x46\x1d\x7b\xcc\x7a\xcd\xce\x4d\x49\x51\x93\xea\xb9\xed\xe5\x5e\x47\x52\x1e\x4c\xc1\xf6\x6c\x0c\x93\x73\x38\x24\x29\x98\x54\xfc\xfa\x89\x97\x3a\x69\xc4\xa6\x34\x26\x6c\x04\x2a\x57\x4c\x54\x8a\x43\x05\xfe\xa6\xc8\x70\x3a\x6c\x70\x76\x81\xbe\x58\x7e\x51\xa2\xc9\x63\x9d\xfe\x4e\x11\x9b\xc2\xfd\x23\x53\x29\x4f\x4b\xa3\xfc\xe8\x14\xca\x0f\x48\x9f\x3c\x51\x49\x3a\x31\x6d\xf2\x04\x7d\xea\x93\xa5\x4b\x7e\x40\xaa\xe4\xc9\x69\x92\x1f\x9d\x22\x59\x42\xfc\xfc\xbb\xbc\xdf\xb1\x99\x92\x09\xf9\x1b\x3f\xcf\xd3\xc7\x5d\x13\xd6\xea\x72\x7f\xda\xa4\x76\xa8\x09\x3b\x48\xb6\xc5\x92\x56\x9a\x4b\x69\x6d\xe2\x0a\xd7\x60\x28\xf1\xa1\x83\xe2\xbb\x79\xb6\xbc\xf7\x1a\x8c\xa6\xcd\x5f\xe1\x5e\x0e\x1c\xa2\x4c\xa2\xc3\xbd\xd8\x30\xd0\x34\x6e\x49\x50\xd7\x9c\x12\xf0\xaf\x4b\xc7\x37\x20\x93\x84\x6e\x47\x32\xa6\x74\x4a\xbc\x25\x97\xe7\x76\xde\x98\x12\x47\xcb\x76\xda\x24\x9e\x9c\x1c\xa7\xaa\x78\xa2\x34\xfa\x3e\x4a\x93\x49\x55\xac\xb4\xe3\x08\x59\x3a\x92\xd4\xc5\x45\xd2\x5e\xb9\x47\x61\xb2\x7e\x4a\xa1\x7b\x4e\xab\x51\x59\x95\x42\x8f\xb4\x7d\x99\x58\xcb\xeb\x3d\x90\xef\x50\x18\x38\xac\x08\x55\x1c\x2d\xa7\xe2\xac\x22\x4b\xda\xaf\x4c\xcb\x63\x95\x5a\xb2\xde\x93\x04\x3d\x29\xc5\x0a\xba\x4f\x5c\xf9\x25\x9d\x2b\xa1\xe6\xf9\xe9\x65\x01\xf3\x5a\x3b\x9f\xfe\x7a\x51\x70\xd7\xe9\xd9\x08\xfa\xfe\x0e\x4b\xfb\x7c\xec\x45\xa2\xdf\x5b\xa1\xa0\xb0\x59\x54\xd0\xc1\x3c\xb5\xd1\x30\xbe\x85\x2b\x6c\xf1\xba\x03\x74\x43\x17\x49\x2e\x6e\xd1\xf3\xa8\x01\x7e\x58\x2b\x38\xa4\x08\x9c\x26\xfb\x8f\x16\xf7\xfa\xcc\xed\x5f\x53\x8a\x15\xc8\xf8\x49\x1d\xca\x1f\xd9\x29\xe2\xff\xb0\xc4\xb7\xa7\x78\x58\x58\x47\x07\x19\x38\x61\x0b\x65\x38\x8b\xa4\xad\x6b\xfb\xe4\xdf\xe7\xdd\x47\x92\x19\x2e\x46\xe8\x24\xaf\xa7\x63\xe2\x06\xa6\xb2\xa6\xbf\x4b\xa0\x53\xbe\x5c\xa9\x8c\xcc\x7e\x88\xeb\xcb\x28\xcb\xe1\xe8\xea\x32\xba\xb7\x89\x83\x18\x97\x2d\xa4\x72\xc0\x6d\x62\x6b\x61\xb9\x0b\x5d\x01\xbf\x14\xee\x29\x03\x65\x00\x6e\xc9\x76\x45\xf8\xd8\xbd\xaa\x30\xdb\xf7\xb8\x54\xdf\xa3\x4c\x63\x37\xe4\x87\x9b\xc4\x51\x19\x1c\xbf\x3b\x4b\xc5\x0b\x87\x35\x76\xad\x01\xa3\x0f\x72\x5e\xce\x1e\xe6\x58\x17\xa4\x1d\xa9\x01\xe0\x5a\xac\xf0\x05\x32\x5d\xa0\x49\x3f\x22\x11\x16\xb1\xa8\x5a\xcc\x4d\xbe\xe3\x81\xb3\xd6\x07\x8d\xc3\x94\x3a\xba\x25\x7f\x76\x15\x52\xe1\xb9\x14\xde\xee\x1f\x37\x98\xb6\x10\x6a\xab\xa1\x16\x97\xcd\x4a\x33\x0f\x54\x94\x23\x94\xfe\x4a\xc7\xd9\x74\x52\x75\x06\xf7\xc3\xde\x6e\x0d\x77\x77\xcf\x7e\x34\xdc\xe1\x42\x23\x00\x3e\x0b\xbd\x20\x2b\xc9\x82\xf1\xe1\xf1\x71\x9f\x5f\x25\x56\x76\x00\x91\xce\xb2\x10\x9a\x26\x4a\xf7\x90\xd3\x74\xd8\xcc\xa4\x0e\xb0\x26\xa8\x0a\x5a\x8a\x9b\x1d\x13\x2f\x1b\x0b\x97\xb9\x82\x43\xc8\x28\x47\x7e\x9f\x26\xe4\xe0\x7e\x89\x6a\x0e\xc1\xdd\xa3\x5a\x17\x1d\x82\x84\xf4\x2d\xbb\x53\xff\x70\x5e\x71\xf3\xda\x14\xce\x4a\xfa\xda\x8b\xe1\x5d\x6d\x6e\x87\x29\x16\x63\x4c\x24\xdf\xf6\x33\xa1\x93\x30\x6d\x17\xf8\xff\x81\x52\x45\xd9\xd2\x93\x7a\x14\x55\xf6\x0a\x0e\x0a\x6b\x96\x66\xcf\x93\xe8\x74\x53\xc9\x4c\x47\xd8\x28\xed\xa0\xa4\x91\x7f\x31\x2b\x18\x26\xb5\xae\xa2\x57\x77\x74\xb6\x7c\xb4\x84\xdf\xb1\x8a\xf9\x07\xd3\x22\x7f\x55\x1d\xb1\x5c\x4b\x35\xba\xc0\x7c\x0a\x32\x99\x20\x29\xee\xf6\x9a\x07\xb8\x4b\x23\xba\x94\x45\xa1\x50\x74\x01\xb5\xa2\x67\x9a\x34\x6a\xc5\x37\xaa\x47\xed\xf5\xf9\x38\xc1\x4f\xd5\x18\x53\x9a\x01\x14\xf6\x75\xd5\x62\x3b\x5b\xb4\x2b\x24\x7b\xed\xad\x35\x72\x09\x5c\xa4\xf0\xa8\xd5\x1d\x75\xc5\xc7\x44\xc0\x04\x22\xee\x70\x52\x55\xb2\x74\xd1\x01\xa5\x8f\x5d\x06\x0b\x42\x9d\xf3\x73\xf4\x46\x43\xe3\x6d\xb1\x9b\xbd\x6b\x57\x88\x92\xc6\x64\x93\x90\x4a\x18\xcc\x34\xd0\x3e\x30\x93\x5b\xa0\x06\xe5\xe1\xd3\x3b\x47\x8f\xde\x47\x45\x78\xb2\x7b\xa9\x90\x77\x53\xba\x33\x25\x86\x56\x9a\x78\x0b\xfa\xd7\xbf\xcc\x17\x67\xb1\x60\x54\x7f\x3d\xfd\xca\x4c\xf0\x6c\x36\x96\xf4\x1f\x57\x10\xc4\x50\xcd\x67\x44\x46\x9e\x8d\xa5\xd1\xdf\x8f\x82\xde\x84\x4a\x5f\xe8\xbb\x00\x16\x6f\xc0\x3b\x7f\xdd\xd5\xe4\x9d\x87\xb7\x64\xd1\x17\xf3\x74\xc8\xb8\xc0\xc2\x44\x08\x76\xa4\x7f\x86\x44\x2f\x4c\x99\x93\x23\x31\xe2\x18\x44\x33\xab\x72\x29\xff\x6e\xbf\x27\x2e\x33\x18\x0b\x2e\xe2\x1d\x39\x4e\x91\x13\x78\x1e\x50\xae\x5e\x45\xa5\xf0\x0c\x6d\x0b\xc2\x16\x61\x57\xe7\x24\x66\x06\xfa\xb2\x26\xe4\x75\x29\xf2\xc5\x95\x74\x55\x96\xb6\x21\x2f\x60\xbc\xd6\xe3\xfd\x32\x10\x17\x4b\xb5\x16\x76\xc0\x55\x9c\x4d\x27\x9c\xd5\xb4\xf7\x4f\x7c\x1c\xc1\x45\x02\xa6\x7c\x9e\xeb\x0c\x8b\x29\xde\x02\xd7\xdf\xed\xed\x11\xeb\x28\xd5\x0e\xd4\x0f\x77\xad\x1e\xe3\x27\x8d\xb2\x22\xe6\xf9\x23\x1b\x35\xd5\x41\x31\x5d\x23\xdc\xfa\x93\x55\x2f\x48\x3b\x4b\x1d\xcc\x53\xd5\x74\xee\xb0\xcb\x78\x10\xe7\xe8\xab\xf7\x7a\x21\xee\xba\xf1\x7d\x34\xf7\x73\x3f\xaf\x64\xe8\x96\x90\x1e\xa9\x61\x6e\x83\xfb\xcd\x48\xad\x41\x6b\xbc\x5b\x73\x6e\xc5\xbb\xfb\xb9\xd6\x8a\x1e\x3f\xd3\xe4\xa4\xfe\x78\xd3\xa6\x4e\xf2\xeb\xe7\x19\x51\xe5\xbb\x20\xb5\x9a\xf1\x1c\xbd\xd7\x8a\xc1\x39\x32\xfb\x41\x9e\x32\xef\xef\x53\xf7\xa0\x52\xf1\x62\xaf\xbb\x57\x00\xa1\xb2\xa6\xd8\xf8\x6a\x9a\xb6\x70\x5b\x64\xa3\x87\x22\xfb\xbf\xea\xe0\x7f\x92\x3a\xe8\xf5\xc1\x44\xc8\xa6\x36\x7b\x0b\x19\x4a\xa4\xf3\xd9\x9e\x69\xf2\x1f\xed\x6a\x42\x6a\x5d\x0b\xcb\x3a\x0c\xc2\xb7\x3b\x32\xfb\xdc\x1b\xbe\x3a\x09\xee\x04\x6f\x0a\x9a\x34\xd0\xc3\x5a\x3b\x21\x4a\x9e\xa3\x2b\xfb\x5e\xa6\x17\xf6\xce\x29\x12\xe5\xfe\x25\xfe\x0d\x5d\x85\x50\x0d\xeb\x8b\xbd\x5a\xb3\xb7\x90\xbb\xd6\x35\x52\x6f\x29\xda\x62\xe0\x80\x38\xd9\xe7\x70\xd2\x96\xb2\x9d\xd4\x44\x28\xdd\x23\xf1\x55\xe8\x45\x14\xbc\x3e\xd7\x9d\x90\x04\xd7\xc0\xf5\x88\x34\xfa\x31\xc2\x7c\x45\x25\x57\xbc\x11\xde\x7a\xb4\xef\x0e\xd8\x24\x34\x28\x32\x1e\xd4\x79\x84\x92\x80\xb2\xf4\x8e\x8a\x99\xc5\xa4\x52\x99\x67\xa9\xa4\x92\xc2\xa4\x6d\x72\xe4\x53\x00\x55\xac\x5f\x63\x88\x82\x63\x96\x54\xa7\x9a\x38\xf7\xc1\x63\x6b\xe0\x16\x19\x11\x1a\x67\x46\xc5\xaf\x27\xe2\xe3\x87\x9d\xdf\xe5\xa0\xfe\x6f\xeb\xf9\x1e\xe3\x4d\xe5\xef\x0f\x7a\xce\xc7\x73\x17\x7e\x13\xb7\xb9\xfd\x6b\x0c\x3d\xbc\x4e\x82\x2e\x9c\xe0\x9e\xc2\x27\x5b\xdc\xda\xb6\x8d\xee\x3a\xe7\x15\xaf\x91\xc9\x30\x32\x75\xc6\x3b\xe2\x4d\x4c\x4b\x8b\x4e\xc7\xc8\x3d\x96\xac\xb5\xfa\xb2\x42\x63\x80\xad\xd5\x5d\xde\x64\x1b\x78\xab\xda\xa4\xef\xa7\x98\xf9\xfd\x7b\x55\xc1\x90\xba\x88\xb5\xae\xa7\xa9\xef\x9a\xc2\x2b\xac\x68\x47\xcc\x35\x37\x66\x1e\x41\x87\xb7\x43\xa2\x21\x83\xb2\x78\xb3\xa7\x8f\xfd\x98\x85\xdc\x2a\xb3\xf3\x9b\x6c\xbd\x37\xd6\xd1\x07\x2a\x15\xa9\x9d\x5a\x56\xb8\x3e\x8c\xeb\x3a\x35\x57\x81\x5d\x39\x65\xea\xbc\xa0\x60\x2d\x62\xca\x2a\x05\xf9\xb3\xaf\xf2\x0d\xbc\x78\xa7\x6b\x13\xc9\xe0\xc5\x3b\xa8\x9a\x0a\xf9\x91\x51\xb1\x42\xef\x45\x57\x4c\x10\x1e\x52\x17\xe6\x0d\x47\x57\x9c\x2f\x73\x7e\x2b\x7b\x75\x24\xca\xa2\xeb\x98\xb0\x3e\xbe\x70\x36\x33\xf9\xaf\x26\x87\xd4\x54\xaa\x99\xe7\x99\xa2\x78\xb4\x3e\x4c\xf8\xfa\x6a\x39\x87\x0a\xde\x9e\xd3\xfd\x5d\xaf\xd1\xa8\x4f\xc1\x1e\x87\xf9\xed\x63\xf5\xc1\x74\xe8\x02\xbd\x79\x9b\xb5\x0e\x2e\x9f\x66\x93\x96\xf3\x1a\xfd\x43\xf8\x90\x64\x5f\xcf\x82\xbb\x93\xc7\xdc\x28\x1b\x87\x0d\xba\xf0\x83\x27\xb6\x7d\xac\x40\x05\xf9\x5d\x85\xe7\x7f\xed\xa7\xf0\x0c\x70\x21\xa3\x3f\xe7\x6a\xc7\x20\xeb\x1f\x4e\x16\x99\xbc\x8d\x90\x95\xfe\xfb\xe4\x44\xf1\x15\xe2\x71\x3c\xf8\x98\xf8\xac\x49\xa6\xca\x0e\x2c\xf0\x0e\x45\x06\x58\x81\xbd\x45\xbf\xff\x95\xb4\x7d\x10\x89\x8c\x9c\x15\x92\xa9\xee\x85\x2b\x30\xac\x31\x9a\x57\xd7\x48\xed\x8d\xdc\xe2\x3e\x36\x4a\xa7\x1d\x4a\x47\x30\x5d\x6d\x80\x8c\x39\x0a\x0b\x3e\x99\x94\x9c\x5d\x75\x4a\x6f\xcd\x2e\x6d\x6c\xf8\x6f\x64\x1f\xcf\x57\xca\xd9\x4c\x3b\x6b\xf3\x76\x76\x4b\xb4\x02\x77\x1d\x48\x83\xf7\x66\x95\x05\xd1\x79\x9f\xdc\x4d\x18\x4b\xa9\x2e\x2c\xf7\x4d\x34\xcb\xdb\xb3\x6c\xf9\xa3\xc5\xe1\x0e\x0d\x94\x6e\xe5\xf9\xa2\xb4\xf4\x02\xb7\x9b\x4a\x08\x3f\x30\x29\xfc\xfb\xf9\xdb\x33\xcb\x56\x0b\x02\x32\x9f\x6e\xd4\x05\x5a\x08\x29\x7c\x0c\x9e\x9b\xd8\xc2\x01\x54\x07\xe1\x7c\x32\xb2\x97\x57\xf7\xa9\xf1\x1d\x3c\x6c\xee\x16\x99\x4b\x69\xb4\x4f\x0b\xf9\x73\x99\x54\x0b\xad\x1f\xbe\xab\xc9\x3b\xeb\x42\x3b\xe2\x48\xe1\xea\x0a\x74\x9a\xb1\xa6\xa4\xfb\x04\xf6\xa6\x29\x77\x10\x56\xe6\x51\xf6\xfc\xbb\xc4\xb8\x3d\x76\x6a\x0d\xdd\x19\x96\xe7\xd1\xe2\xd3\x40\x2d\x0a\x35\xf5\xe9\x30\x94\x01\xa3\xf7\x53\xe9\xda\x0b\xa6\x6a\xf0\x9e\xa4\x95\x83\x83\xf7\x9b\xe2\x34\x05\x5b\xcc\x37\x7d\x5b\xf8\x5a\x46\x0f\x81\x92\x77\xa4\x1a\xa4\xbf\xe6\x98\x47\x63\x9d\xe7\x4e\x3f\x5b\x5c\x74\x96\x7d\x7c\x7c\x2b\x41\xa8\xc4\xd2\x8d\x4c\x04\x0b\x75\x60\x20\x47\x10\xf2\x51\xde\x86\x68\x9d\x2e\x39\xc0\x50\x66\x5e\x0f\xaa\x80\x64\x2e\xef\x46\xba\x12\x45\x51\x22\x84\xd7\x98\xce\x0a\xae\x94\x36\x4a\x45\x1b\x31\xc4\x72\x1c\x3d\x8e\xbc\xe3\xc1\x4b\x79\xb4\x96\xf2\xf3\x96\xc7\x5b\x18\x09\x43\xf0\x0f\x0a\x81\x4a\x89\xf3\xaa\xe1\x05\xc3\x21\x36\xc0\x5a\x6b\x7d\x79\x72\x8a\x70\x39\x8a\x0f\x26\x64\xa4\x4b\xed\x81\x3f\x87\xe3\xbd\xcd\xe4\xc8\x72\xb6\xaf\x9f\x07\x75\xdc\xb3\x84\x9f\x29\x64\x3f\x32\x54\x39\x51\x87\xd2\x21\xf4\x2d\xd9\x4f\xd5\xf9\xcc\xc3\x57\x07\xf7\x6a\x31\x56\x6d\xcf\x6c\x5d\x4b\x92\x1b\x73\xf8\x37\xfa\x51\x01\x38\xe0\x9b\xd3\x8a\x99\x7e\x78\x34\x2d\xaf\x2d\x59\x60\xb4\x09\x6a\xbe\x0d\x82\x9f\x47\xb4\xb6\xbc\xd9\xf6\x1a\x2d\x43\x99\x98\x6b\xf7\xa3\xd2\xe8\xb9\x28\xcb\xa2\xb1\x99\xcf\x26\x54\xe6\xf0\xe8\x92\x73\x1e\x0b\x28\x46\x8d\x2e\xed\x33\x34\x36\x38\x67\xd3\x12\x4c\x75\x42\x2f\x16\x72\xa7\xc3\x54\x25\xe5\x0f\x88\x66\xa6\xf1\xeb\xf1\xea\x8c\x53\xae\x1d\x9d\x0d\x78\x64\x51\xb8\xbc\xb6\x7c\xb6\x60\xc7\xb9\x4d\x03\x88\x71\x03\x1b\x26\x9d\x3c\x8a\x8f\x17\xca\xb9\xc0\x2e\x0e\x86\xfa\x0b\x43\xc5\x5e\xb4\xa8\x3a\xa5\xe4\xc3\xb1\x35\x0b\x3f\x64\xdb\xa7\x4a\xac\xf2\xb3\x04\x4a\xdf\x18\xcd\x04\x40\x1f\x27\xa6\xcf\xfe\x13\x45\xe0\xc7\xc9\xb2\x42\xe6\xca\x49\x8c\xde\xc9\x31\x67\x49\x7c\x1a\xe6\xff\xab\x24\xd6\x24\xdc\x22\x88\x5f\x07\x1c\xf7\x80\xb4\xb1\xde\xa0\xc8\xbd\x93\xbb\x3a\xff\xa1\x74\x5d\xc3\x88\x03\xd0\xd0\x10\x34\x41\xb5\x00\x81\x70\x25\x07\xb8\x03\x66\x5c\xb8\x7f\x46\xcc\x5e\xfb\x4c\xc7\x86\x1b\xf2\x26\xe7\x73\x63\xdc\xdf\x35\xf1\xa6\x1c\x64\xfd\x0a\x99\x97\x75\x77\xdb\x71\x86\xf5\xcc\x57\x14\x28\xb0\xd2\x16\x5e\xec\xd7\x96\x51\xd0\xb9\x6c\xfc\x64\xf4\x85\xc2\x9a\x0d\x22\xb4\x5b\x68\x6c\xb0\xd8\xcf\xb8\xdc\x42\x63\x65\x98\x03\x89\x5a\x96\x6d\x49\x6a\x50\xd4\xe4\xca\x30\x2e\x69\x5f\x74\xf6\x32\x4c\x99\x26\x54\x12\x8e\xb5\x4d\x7c\x47\x78\x9c\x58\xcc\xe1\x15\x11\xd6\xe8\xad\x90\xd3\x44\xde\x07\xa4\x2b\x1d\x25\xf9\xdc\x38\xe8\xe9\x85\x1d\xe1\xd8\xe2\xa7\x39\xc3\x4f\x56\x79\x8e\x5e\xc2\xfb\x66\x30\xa8\x7d\x5b\xba\x35\x95\xfa\x3a\xc4\x38\x22\xbf\x0c\xb8\xf5\x6f\xbe\x22\x98\xbf\x20\xda\xae\x3b\x39\xb3\xab\x7b\xec\x17\x3d\x47\x4f\x1d\x01\x86\x6a\xad\x7d\x60\xfa\xd3\x6d\xe4\x95\x3d\x45\x97\x28\x02\xa7\x49\x05\x62\x03\xa4\x25\xad\xd8\xd0\xd5\x69\xd1\x9c\xfb\x8c\x77\x58\xd2\x70\x5b\x18\x13\x2f\x22\x66\x2f\xe1\xee\xa2\x2e\xfa\x25\x33\x9a\x1e\x61\xb1\x2c\xeb\x6b\xcb\x04\x30\xea\x99\x10\xd4\xbe\x22\x06\xd1\x74\xb6\xb5\xc3\x6c\xf1\xde\x97\xd0\x2b\x3e\x7a\x19\x8c\x69\x85\xb3\x7d\x1b\x90\xfa\x60\x75\x83\x69\x5b\xa8\x21\xb2\x40\x2f\xc0\x98\xa7\xac\x83\xeb\x21\x50\xb3\xae\x23\xef\x2c\xdf\x60\x85\xe7\x37\xec\xa7\xe4\x11\x0c\x85\xfb\xc5\x69\x4a\x90\x02\xf2\x1b\x98\xf5\xed\xc4\x13\x12\xc5\x58\xa3\x29\x6e\xfc\xf4\xe2\x98\xea\xc6\x13\x05\x28\xf4\x83\xdb\x07\xcb\xb7\x84\x2b\x2d\x8e\x75\xe8\xa5\x09\xd8\x8b\x41\x3e\xfd\xff\xff\x41\xff\x3b\xe6\x39\x44\xa5\xa7\x5a\xbe\xc7\x2d\xb9\x96\x26\xad\x0e\xa5\xb2\x1e\x29\xcd\xfe\x31\xb8\x6b\xc0\x08\x33\x02\xdd\x76\x4a\x2a\x42\x05\x62\xac\x31\x75\xca\x8c\x78\xb1\x2e\x1e\x3a\xfa\x26\xe2\xb4\xe1\xf7\xe9\x52\x5d\x8d\xb8\x78\x74\xc8\x38\x38\x20\x4d\x8a\x6e\xb3\xce\x27\x66\xff\x64\x5e\x63\xf4\x50\x81\x0b\xda\x4e\x32\xc3\xab\x35\xc0\x8d\xa2\x91\x40\x59\x70\x2f\xb7\x40\x09\x7e\xfd\x64\x86\x64\xd6\x59\x96\xfa\xd4\xa6\x3d\xb0\x87\xf3\x57\x7f\x17\xa6\x54\x98\x61\xd3\xd0\xae\x8e\x4d\x08\x5a\x17\x4d\x88\xff\xda\x06\xff\x16\xdb\xa0\x94\x20\x9c\xfb\x05\x02\xb7\x80\x35\x03\xf5\xdb\x20\x6d\xa9\x4b\x70\xe5\xa7\x6d\xcd\x63\x22\x49\x7b\x70\xd0\x28\x44\xa9\x8b\x8f\x25\xb9\x42\xec\xac\x8d\x49\xc8\x66\x8e\xe1\x6e\xbf\x65\x9c\x8c\xbf\x41\xfa\x15\xbc\x08\x5a\xc8\x59\xd1\x29\x56\x61\x2c\xc1\x39\xec\xf4\xdb\x9d\xba\x12\xdd\x9a\x58\x17\x6d\x6d\xf8\x5d\x69\x1f\xe3\xaf\x60\x9c\x98\x78\xfd\xbb\xa0\xd3\x68\xb1\xbf\x26\xd1\x06\x4f\xbd\x7c\x88\xef\x23\x1b\xb6\x4e\x69\xd7\x56\xb5\x2b\x92\xef\xd8\xa5\xc0\xb3\x23\x2a\xbb\x8c\xdf\x00\x3c\x0c\xce\x09\x37\xca\x08\x38\x43\x37\x0a\x15\xb9\x2b\xee\x83\x6a\x5e\x9e\x05\x30\x1a\x7d\xb0\xe7\x77\xb6\x73\x28\x98\x1c\x93\xde\xe4\xde\x3f\xa9\x80\x28\x96\x51\xb4\x8f\x76\x4c\x39\x2e\xd2\xfb\xa4\x96\xd5\xd7\x45\x1e\x7f\x64\x72\xd5\xa7\xae\x73\xb8\xd6\x47\xfe\x49\xaa\x1c\x1e\xa7\x17\xe7\x65\x0d\xc3\x7f\x9d\x28\xbe\x58\x67\x2b\x61\x15\x45\x81\xae\xdc\x91\xb2\xd7\x08\x1f\x14\x82\xbc\xbf\x2f\xff\x6e\x22\xcb\x17\xaa\x41\xe1\x20\xcc\x75\x0e\x53\x64\x8c\x0b\x74\xdb\x41\x9d\x4e\x2c\xb3\x03\xd0\xf7\xbe\xa3\x31\x20\x76\xe5\x89\xe7\xda\xdd\x16\xae\x67\x13\x45\xab\x86\x81\xd6\x13\xb7\x75\x75\xe2\x6e\xe1\xe2\x0e\x3c\x48\xa2\x6f\x7a\x77\xeb\xe8\x9e\x9d\xbe\xc1\x50\xb5\x7b\x23\xc4\xe8\xca\x3e\xce\x58\xba\x35\xe3\x6f\x29\xf8\x11\x66\xf3\x73\xf4\x55\x30\xa0\x87\xb6\xab\x91\x64\x12\x8a\xc3\x3e\xe1\xd2\xf3\x73\x82\xcd\xfa\xe6\xea\x2f\xbc\x26\xaf\xb0\xdc\xa0\x0b\xf4\x44\xe8\x7f\x3e\x49\x78\xd1\x58\x6f\x5f\x94\x55\x75\xd6\xfb\x2d\xf6\xbd\x7f\x70\xff\xe0\xff\x05\x00\x00\xff\xff\xb2\xaf\x6e\xc0\x46\xa8\x00\x00" +var _nftstorefrontv2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xdb\x72\x5b\xb9\x95\xe8\xbb\xbf\x02\xf2\x83\x9b\xcc\xd0\x74\xcf\xd4\xa9\xf3\xa0\xb1\xdc\xad\xc8\xf6\x8c\x6a\x26\x1d\x57\xb7\x3b\x79\x70\x5c\x25\x70\x6f\x90\x44\x69\x13\xd8\x01\xb0\x45\x73\x3c\xaa\x3a\x1f\x71\xbe\xf0\x7c\xc9\x29\x2c\xdc\x2f\x7b\x93\x92\xdd\x49\x27\x13\x3e\x74\xcb\x24\xae\x0b\xeb\xbe\x16\x16\xe8\xae\xe7\x42\xa1\xa7\x6f\x07\xb6\xa1\xab\x8e\xbc\xe7\xb7\x84\x3d\x7d\xe2\xbe\xfe\x81\xb3\x91\x5f\x7e\x3b\x08\x46\xc4\xd3\x27\x4f\x5e\xbc\x78\x81\x7e\x78\xfb\xfe\x27\xc5\x05\x59\x0b\xce\xd4\x1f\xfe\x45\x7f\x07\xdf\x5f\xa2\x0d\x61\x44\xe0\x0e\xf5\x83\xe8\xb9\x24\x48\xe2\x8e\x20\x39\xf4\x30\x48\xc3\x99\x12\xb8\x51\x68\xcd\x85\x1e\x43\x22\xb5\xc5\x0a\xd1\x5d\xdf\x91\x1d\x61\x0a\xa9\x2d\x41\x6f\x3b\xbe\x47\xf9\x3a\x90\x54\x98\xb5\x58\xb4\x4b\x98\x07\xfe\xf3\x06\x37\x5b\x84\x9b\x86\x0f\xd0\x13\x2b\xb4\xc7\x4c\x49\xa4\x38\xea\xa8\x54\x66\x02\x3d\x13\xac\x81\x32\xa9\x70\xd7\x49\x84\x51\x58\xfa\x02\x06\xc2\xac\x85\x1e\x12\x51\xd6\xd2\x3b\xda\x0e\xb8\x83\x4e\x12\xed\xa9\xda\x52\x66\x46\x0f\xdd\x10\x96\xe8\x3f\xa9\x54\x94\x6d\xa4\x59\xd0\xfb\x2d\x11\x04\x51\x89\x38\x23\x71\xc3\x9e\x08\xb7\xc4\x05\xa2\x0a\x6d\x31\x6b\xf5\xb8\x66\x74\xbe\x46\xb8\xeb\xf4\x42\x91\x3a\xf4\x44\xc2\x50\x7a\xc5\x30\x9f\xed\xb7\xf4\xd0\x85\x0d\xdb\x79\x51\x83\x19\xda\xe2\x3b\x02\x33\x72\x81\x76\x5c\x10\xf4\xb4\x19\x94\x7c\xaa\xc7\xd5\x90\x84\x7d\xf7\x82\x36\x04\x06\x84\x31\x36\x9c\x00\x84\xe2\x5e\xb8\x6d\x05\x91\x92\xc8\x25\xba\x1a\x94\x84\xa1\x57\x04\x0d\x92\xb4\xba\x69\x8f\x0f\x00\x1e\x3d\xeb\x9a\xd8\x55\x72\x81\xb8\xda\x12\xa1\xcf\x54\xd2\x96\x08\xac\x28\x67\x72\x89\xea\x2b\xa5\xac\xe9\x86\x96\x20\x8c\x1a\xbe\xdb\x51\x29\x29\x67\x08\xef\xc2\xd1\x51\x89\x7a\x4c\x61\xbe\xfd\x96\x93\x3b\x22\xd0\x1a\x37\xb4\xa3\x0a\x2b\x3b\xa5\xde\x52\x3f\x88\x66\x8b\x25\x59\x6a\x88\x23\x49\xba\x4e\x2f\x01\x33\x84\x3b\xc9\x51\xb3\xe5\x1a\xe7\xf4\x9a\x05\xbf\xa3\x7a\x3e\x86\x78\xaf\x57\x86\x3b\x83\x14\x7c\x8d\x76\x58\xdc\x12\xd5\x77\xb8\x21\x66\xb5\x82\x34\x84\xde\xc1\x40\x3d\x5e\xe9\x39\xa9\x86\xc5\xb5\x3e\x77\xaa\xc1\x21\xc9\x02\x66\x2f\xd7\xbe\x1b\xa4\xd2\xb0\x52\x02\x33\xb9\x26\x42\x00\xc8\x0c\x84\x34\x84\xcd\x41\xc4\xe3\x22\x40\x27\x02\xab\xc9\x8e\x56\xe3\xc1\x0e\x1f\xf4\x78\xfa\x57\xd2\xea\xb6\xf1\x41\x39\x9c\x33\xab\xb9\xc3\x1d\x6d\xa9\x3a\xe8\x59\x08\x6e\xb6\x30\x50\x0c\x74\x82\x25\xed\x60\xb8\x66\x4b\x9a\x5b\x12\x13\xcf\x3b\x0b\x48\x61\x8e\x7b\x8f\x55\xb3\x05\xd4\x73\x03\x90\x3b\xa2\x89\x49\xd3\x06\xf4\x86\x29\x1d\xa6\xea\xaf\x61\x98\xeb\xd7\x1a\xda\x92\x10\x44\x61\xab\x07\xb4\xa7\x72\xab\xbf\x5b\x0d\x07\xbf\x4f\xbd\x13\x45\x76\x66\xfa\xdf\x05\xf0\x9b\xe1\x0d\x1e\xe1\xcd\x46\x90\x0d\x56\xfc\xc8\x8a\x12\x8a\x85\x61\x81\x8e\x28\x53\x44\x10\x07\x52\xdc\x34\x44\xca\x19\xee\xba\x79\x60\x3a\x19\xd3\x42\x9f\x9f\x3c\x41\x08\xa1\xb8\x2d\x61\x8a\x2a\xcb\x8b\xae\x04\xc1\x8a\xd8\xc9\x27\x5b\xfe\x48\x76\xfc\xce\xb7\x84\xa6\x7a\x91\x61\xb2\x6b\x46\x15\xc5\x1d\xfd\x2f\xd2\xfa\x5f\x2f\x63\x36\x21\x88\xe4\x83\x68\x08\xda\x62\x89\x56\x84\x30\xd4\xc0\xec\xed\xd2\xb7\x7f\xa3\x77\x0f\xd4\x36\xec\xdc\xa9\x31\xbe\x47\xe4\x53\x4f\x1a\xe5\x8e\x6b\x2d\xf8\xce\x60\x6d\x18\x3d\x8c\xf1\x03\x57\xc4\x72\x4a\x82\x5a\x8e\x18\x57\x48\xf6\xa4\xa1\xeb\x83\xa6\x14\xcb\x07\xce\xf5\xaf\x0d\x66\xfa\x57\x0d\x68\xb9\xe5\x43\xd7\xea\xc6\x61\x24\x03\x9c\xd6\x2f\x5c\xba\xe1\x80\x25\x69\xaa\xdb\x33\x7d\xa8\x66\xc4\x05\x8c\x63\x51\x5b\xc3\x2a\x80\x01\xaf\x95\x26\x3c\x3d\x9c\x26\x2b\xaa\x0f\xfe\x20\xa3\x15\x00\xf2\x85\x89\x2d\x94\x2f\xef\x30\xed\xf0\xaa\x23\x6e\xe3\x19\xcf\x6a\x89\x22\x62\x47\x19\x01\x1c\xb4\xcb\xf0\x83\x58\xb2\x34\x6b\xb4\xff\x88\x4e\x63\xb6\x5c\x2e\xa9\x92\xa8\xe3\x0d\xac\x6a\x8e\xb0\x11\x4d\x8a\xee\x34\x4d\xfb\x71\x1c\x7e\x6b\xec\x5c\x0d\x0a\x71\xd6\x1d\x4c\x5b\xac\x50\x2f\x48\x43\xa5\xde\x2f\x20\x89\x93\x22\xee\x6b\xe0\x18\xb8\xd1\xe3\x87\xdd\x5d\x5b\xc6\x6d\xf8\x9a\x86\x94\xcc\x17\xb7\xdf\xd2\x8e\x24\x33\x53\x69\x58\xc1\x02\x45\x0b\x33\x2c\x95\x03\xaf\xd9\xf9\x09\x4a\x34\x06\xac\xaa\x62\xea\x4c\xfa\x6f\x7f\xb4\xa7\x7c\xfd\xfa\x1c\xfd\x7c\xcd\xd4\xff\xfe\x5f\xf3\x27\xa3\x27\x12\x61\xb8\x5b\x61\x8e\xd5\x80\x0e\xb8\x6d\xcd\x59\xe1\x1a\x25\x04\x98\x68\x46\x7f\x69\x0e\x50\xef\x73\x20\x12\x81\xb0\xc5\xc2\xb2\x40\xb4\xdf\x12\xc3\x53\xcd\x6e\xa8\x44\x64\x47\x95\x22\xed\x42\x9f\x4a\x72\x5a\x52\x8b\x13\x77\xe4\x56\xc0\x4a\xc3\xb8\x04\x59\x13\xa1\xd7\xa3\xf1\xb4\xd9\x62\xb6\x21\x88\x0f\x4a\x0b\x37\xdb\x21\xd0\x51\xc6\x49\xf6\x5c\xdc\xae\x3b\xbe\x5f\x20\xc9\x81\xdd\x62\x41\xd6\x43\xa7\x07\x33\xbc\x13\x56\x38\x48\x0d\x8b\x53\xce\x23\x07\xe9\x0c\xda\xe9\x4f\x38\x93\x4b\x47\xac\xf6\x8f\x85\x6f\x63\xa1\x5e\x1e\x5a\x68\xc2\xd6\xea\xfd\xa1\x27\xe7\x48\xff\x37\xf9\xfa\xe7\x9f\xa3\xf6\x28\xfe\xa5\x36\x8e\xd6\x30\xde\xe1\x83\x46\xf0\x3f\xe0\xa1\xab\x0e\x0a\x6d\xb4\x12\x72\x8e\x7e\x7e\x4b\x3f\xc5\xdd\x9b\x41\x2a\xbe\xd3\x03\xff\xa4\x04\x65\x9b\xef\xa2\x9f\xbc\xa8\xbd\x04\x49\x5b\xe9\xec\x5b\xfc\x68\xe5\xb7\x3c\x47\x1f\x2c\x34\x3e\x46\x43\x91\x4f\x3d\x15\x07\xb7\x78\xf8\xba\x44\xdf\x2b\xae\x95\x50\x15\x71\xa6\xf7\x11\x89\x79\x04\xd6\xe8\xd9\xdd\x91\x76\x89\xae\x15\x7c\x4b\x28\x48\x2f\xf8\xd1\x29\x27\xed\x02\x09\x10\x09\xad\x96\xdc\x2d\x91\x4a\xf0\x43\xc4\xcb\xa7\x4f\xdd\xaf\x64\x76\xc2\x89\xa2\x0a\x66\x4c\x36\xf3\x6b\x3c\x47\xbf\xe5\xbc\x7b\x30\x4a\xfc\x6d\x61\x84\xa7\x8e\x93\xd1\xe1\x67\xa6\xd5\x50\xd7\x3f\xe2\x65\x56\xe0\xb7\x41\x5b\xd4\xc7\xaf\x25\x94\x39\x7b\xad\xbc\xb6\x83\xb0\x24\x6e\x74\x6f\xcb\x67\x7e\x78\xfb\xfe\xd8\xd9\xa7\xd3\xce\x44\xbe\xfe\x85\x9f\xff\x27\xdc\x91\xab\xc1\xef\x7e\x5e\xd3\x37\xf4\x5f\x78\x43\xde\x61\xb5\x4d\xd1\xd9\x0a\x34\x2d\x8c\xa4\x69\x63\x4d\x8d\xaa\x32\x62\x05\xff\xca\x76\x74\x18\x1c\xaf\xbe\x23\xaa\x3e\xef\x39\x8a\x17\x51\x59\xe3\xbb\x61\xd5\xd1\xa6\x58\x62\x0f\x5f\x87\x95\x6a\x05\x30\x59\x5d\x47\xd9\xed\xb1\x75\x84\xb1\xcf\x51\x34\x4f\xb4\x0c\x03\xc4\xe8\x78\xa5\x12\x43\xa3\xf7\xde\x0b\x22\x35\xac\xd9\x06\x61\x7d\xd6\xb4\xa7\xc4\x19\x29\x4e\xdb\xd7\x0d\xb4\x29\x43\x84\xc2\xd4\xd9\x02\xb9\x76\xd1\x1b\x2a\x30\xbc\x1f\x23\x05\x66\x2c\x95\x48\xf2\x6e\x82\x15\xd8\x75\xd8\x05\xa2\xcf\x1e\x6d\x1d\x80\x3c\xfa\x19\x3b\xd1\xcf\xb3\x4c\x5a\x56\x35\x3d\x05\xc6\x9e\xd7\xf3\xb4\x78\x5a\x53\xd6\xc2\x28\x40\xac\xa6\x07\xa8\x8f\x1e\x10\x91\x60\x01\x7d\x4d\x5a\xdd\x83\xdd\x6a\xe6\xe6\x71\xc5\xcd\xb5\x26\x5a\x6d\xa7\xd6\x74\xda\xe3\x83\x57\xfb\x30\xa3\xfd\xd0\x69\x34\x4a\x47\x94\x3c\x59\x88\x5f\x9c\xc1\xcb\x66\x50\xde\x66\x3d\xf0\xc1\x1c\xc1\x86\xd8\x55\x5a\x68\x61\xd3\x97\x25\xe3\x36\xda\xb4\x76\xd0\x5a\xae\xb8\x10\x7c\x3f\x9b\x9f\x2d\x41\xeb\x5b\xba\x69\x34\x31\x64\xb0\x7b\x6f\x8c\x3e\xd0\x27\x5b\x6d\x7e\x91\xf5\x9a\x36\x1a\x0b\xba\x83\xde\x19\x46\xb2\x11\xb4\x8f\x7a\xe5\x98\x18\xc8\xf7\xca\x59\x7e\x87\x97\xcf\x3e\x27\x1e\x8d\xa5\x23\xf6\xfb\x57\x4f\x8a\x43\xb6\xd6\x65\x86\x49\xa9\x47\xc4\x40\x9c\x76\x9d\x5e\xa7\xb3\x9d\x55\x84\x21\xe3\xeb\xc3\x09\x03\x4d\xa7\xa7\x5e\x03\x14\xf1\xf7\xfe\x6f\xfd\xfb\xec\x81\x1b\x5c\x64\x33\xce\x23\xbc\x06\x81\x40\xba\xf5\xd2\x23\xf6\x85\xdf\x41\xd9\xc8\x02\xe6\x22\xa6\x39\xfd\xb9\x7f\x62\xfe\x5b\xc8\xf5\xd7\x44\x61\xda\xc9\x92\xd2\xb5\x59\x88\x29\x33\x74\x6e\x1b\x7f\x23\x51\x8b\x15\x3e\x4a\x9d\xe9\xd8\x15\x22\x8d\xf8\x95\x25\x29\x6f\xbc\x03\x0b\xd0\x3f\x6b\xeb\x7e\x8c\x68\x2d\x09\x5a\xda\xb2\x96\x90\xb3\x9d\x8c\xce\xdc\xd2\xf5\x9a\x88\x54\x7b\x2f\x09\x4b\x8f\x43\x25\xfa\xfd\x7f\x2c\xb5\x6d\xb1\x07\x15\x59\xa0\x1d\xbe\x25\x88\x2a\xd3\x42\x5b\x0a\x0a\xfd\xa6\xc1\xec\x37\x7e\x8a\x74\x20\x43\x6a\x5e\x18\x08\x72\x47\x25\xf5\xe2\x20\x87\xd1\x1d\x16\x91\x32\x12\x74\x84\x64\xc8\x3f\x6e\x09\xe8\x4d\x30\x74\xa1\x65\x79\x25\x45\xb3\x18\x6f\x77\xd6\x26\xca\xd4\x99\xe2\x20\xb4\xe2\xe1\xc5\x70\xe6\x53\x5c\x82\x37\xc3\x5a\x4a\x2b\xa2\x57\x60\x9c\x15\xe3\x84\x93\x28\x49\xc5\x64\x4e\xf1\x42\xd7\xaf\x23\xd1\xaf\x2d\xb6\x66\x0b\x0c\x05\xec\x43\x90\x1f\xca\xb9\x81\x9c\x77\x62\x6a\xca\x58\x01\x2b\x26\x1d\x18\xfd\xf3\x40\x10\x6d\xb5\xd0\x5a\xd3\x60\xd0\xfa\xdd\x01\x8f\xd0\x2c\x53\x9b\x95\x93\x7b\x9b\x98\x26\x06\x64\x85\x0f\x59\x16\x25\xbd\x88\xdc\xe1\x96\x24\x08\x9e\x4f\x37\xae\x28\x8e\x71\xc3\x44\x04\x03\xc3\xb3\x30\x34\x2e\x0c\x4a\xda\x74\x65\x47\xe6\x8e\x15\xd0\x92\xff\xbb\x31\x8d\xb8\x6b\xa9\x46\x79\xce\x34\x04\x1c\x37\x5e\x11\xb5\x37\x26\x81\xd5\x11\xe4\xf4\x84\x57\x83\xd2\x06\x8a\x95\xec\x1f\x93\x29\x2f\xbb\x8e\xef\x23\x92\x6e\x71\xdf\x23\x45\xf0\x4e\xc6\xce\x4c\xa3\x1c\x6b\x26\x44\xd9\x46\x3a\x51\xdc\x1a\xea\x19\xa8\xdc\x92\xd6\xfe\x98\x91\xaf\x46\x02\xa0\xde\x2d\xe9\x7a\xb0\x40\x8d\xc8\xed\x14\x11\xce\x81\x22\x08\xc8\x66\x2b\x44\xa8\xf0\xaa\xf8\x38\xf1\x15\xca\x7a\x32\xed\x55\xe4\x2c\xf5\xde\x1a\x65\xec\xe3\x0e\xd3\x1d\x69\xd1\xea\x50\x73\xf6\x7a\xfd\x79\x1c\x9e\x63\xb6\x40\xb2\x80\x37\xa0\xe8\xeb\x23\xeb\x22\x27\x5e\x6d\xb8\xcc\x24\x48\x46\xb9\x16\x42\x2f\x50\xd2\x55\x77\x00\xc2\x4d\x58\x16\x96\x81\x05\x2d\xab\xf2\xd2\xce\xe5\xe8\x7c\x8e\xd6\x03\xd3\xe3\xbc\xe7\xce\x05\xdb\xce\xaa\xf2\x30\x30\xc1\x0b\xa4\xc4\x40\x22\x59\x97\x2c\xf0\xe7\xbe\xf5\x50\xb3\x18\x12\x31\x03\x83\x0f\xc1\x2f\x16\x90\x25\x71\x19\x46\xa8\x77\xd9\xf7\x32\x95\x4b\xbf\xc3\x9e\x6b\x29\x8e\x18\x35\x8e\x8d\x8e\x60\x91\xe8\x4e\x63\x3b\xbd\xb2\x68\x32\x2b\xf0\x65\x5e\xd9\xb6\x6b\x84\x2e\x3c\x7e\x8d\xed\xfc\xfa\x04\x55\x05\xcd\x92\x29\x46\xac\x5c\x34\x65\xe9\xa2\x71\x6b\x17\x9d\x68\xf1\xba\x76\x19\x0f\xc8\x1a\x54\x84\x66\xda\x62\xc2\x3a\x46\x27\x59\xc8\xa8\x6e\xff\xea\xcf\xdc\xf9\xc3\xdd\xa7\x17\x24\x43\x4b\x03\x5f\xf4\x07\xdc\x51\x8d\x72\xc6\xe5\x06\xa3\x15\xcd\xcc\xd7\xe8\x95\x9d\x65\xb6\xd1\x68\x20\x34\x82\xfd\xb6\xe3\xcd\xed\x6c\xbe\x54\x74\x47\xa4\xc2\xbb\x7e\x7e\x5e\xf4\xd6\x9f\xa7\x99\x93\x6d\x99\x2a\x5d\x4b\x7d\xb8\xe7\x20\x1e\x36\xf4\x8e\x30\x37\xa3\x1f\x16\xfd\x69\x66\xbe\x9a\x7b\x99\x61\xc5\xc5\x7a\x50\x83\x20\x67\x4f\x8f\xee\xad\x23\x6c\xa3\xb6\x49\x34\xad\x19\x54\xd1\xcd\x1d\xec\xd2\xb6\x7f\x85\xbe\x3d\x3f\x71\xf9\x4e\x27\x84\x15\x1a\xd7\xb9\x42\x1d\xc1\x52\x41\xdc\xc7\x89\x1a\x6d\x04\x79\x31\x93\xae\xfb\xfe\x49\x49\x42\x31\x22\xa1\x8b\x04\xaf\xa6\xd9\xcc\x1a\x77\x92\x94\x4d\x2c\xd1\xa0\x0b\x47\x3e\xd5\x26\x9a\x78\x4c\x13\xfd\x57\xb5\x89\x6b\x50\xfb\xb9\x46\x46\x7a\xf1\x95\xaf\x1f\xc6\x34\x42\xa3\x8c\x3c\x74\xe3\xec\xab\xb2\x93\x45\xab\x8b\x1a\xa2\xfb\x75\x43\xd4\xf4\xc2\x23\x42\x7a\x24\x5a\x14\xe2\xae\x01\xd3\xd7\x44\x11\xb8\xc2\x9d\x8d\xcb\xda\x78\x0d\x20\x96\x4c\xba\x81\x1a\xed\xf4\x94\x63\x4b\x7d\xf1\x02\xbd\x23\x62\xcd\xc5\xce\xd9\x6f\xd6\xf1\xcc\x59\x12\x7c\x34\x81\x98\xc6\x2f\x27\x8a\x10\xc3\x4a\x34\xa2\x19\x6d\x2b\x12\x01\xfa\xb3\xe6\x02\x7e\xa4\x2c\xdb\x75\x95\x43\xfc\x4e\xdb\x17\x72\x10\xc4\xc6\x71\x90\xb1\xbe\x47\xac\xd3\xa8\xe3\x1f\x89\xd1\x56\x5d\xc4\x91\x4a\x84\x37\x98\xb2\xe0\xe2\xaf\xb8\x51\xe2\x4f\x33\xa8\x65\x61\xf3\x57\xf9\xcb\x77\xdf\xa1\x1e\x33\xda\xcc\x4e\xa3\xd4\x2b\x6b\x83\x99\x8d\xb8\x29\x9e\x96\x63\x6b\x6d\xae\x6d\xdd\x99\x7a\xdd\x95\xe7\x47\x5f\x65\x23\xee\xb0\xc3\xdf\xff\x04\x5b\xc2\xe5\x91\xdf\x27\xff\xc2\x52\x12\xa1\x66\x13\x83\xbe\x42\xdf\x2e\xbf\x5d\x14\x0d\x76\x44\x4a\xbc\x21\xa7\x32\xac\xf7\x91\x21\x1b\x98\x16\xe3\xec\xf9\x7f\x11\xc1\xcd\xce\x32\xce\x3a\x2f\xc8\x01\xa6\xb1\x81\x71\x8b\x89\x6d\x84\x8a\x23\xbc\x21\x07\xcd\x71\xdb\xdf\xb8\xfe\x82\xe9\xcf\x4c\x94\x78\x8d\x1b\x62\x75\x6a\x63\xfd\x0f\x12\xa2\x35\xd6\xf5\x18\xda\x80\x9d\x6d\xc7\x1a\xf7\x09\x78\x33\x3d\x74\x4c\xe6\xcf\xdc\x03\x06\x83\x7e\x78\xfb\xbe\xb4\x39\x00\xf5\xcd\x49\x7a\xd3\x06\xef\x08\x78\xd1\xac\xb2\xaf\x8d\x3a\x97\x0a\x13\x86\x8a\x50\x1c\x5c\x38\xc1\x00\xd4\x04\xb4\x92\x84\xa9\x05\x90\x30\xf9\x84\x77\x7d\x07\xc1\x7a\xaa\x82\xbd\xad\x69\x09\xdd\x51\x8c\x30\x33\xc1\xf8\x2e\xde\x34\xaa\x6b\xb4\xb0\x79\xad\xe2\x45\xcb\x38\x47\xcf\x3e\xd7\xcc\xec\xfb\xef\x52\xcd\xcd\x09\x9d\xe4\x4b\xa7\x0f\xc7\xc1\xcd\x05\x5a\x0d\x07\xe7\x53\x57\xa9\x55\xe7\xe1\xd6\xe3\x83\x81\xce\x8a\x30\xb2\xa6\x0d\xc5\x82\xda\xdc\x02\x41\xd4\x20\x98\x8c\x58\x87\xa5\xc4\xd5\x70\x88\x79\xd0\xd4\xfe\xdc\x62\x53\xea\xb2\xb2\xf9\x1c\x7d\x9f\xb9\xbd\x40\x4c\xdd\x47\x21\x17\x94\x87\x26\x8c\x1c\x3f\xd1\x77\x16\xe9\x78\x73\x3d\x59\x15\xbc\x29\x74\x37\x44\xc5\x6e\x2f\xf7\xf5\x5b\xa2\x9a\xad\x33\x68\xad\xeb\xca\xea\x36\xc5\x79\x27\xa6\x1e\x25\x7b\x00\x44\x18\x57\x9f\x74\xe6\x60\xcb\x57\x00\x26\x2d\x69\xaf\xca\x28\xdd\xe8\xa2\xb0\xe9\x12\x27\xe8\xc8\x34\x77\x46\x4b\xa1\x60\x56\x3a\x2e\x9c\x99\x2b\xd7\x80\xdc\xee\xe4\x6f\x18\xed\x6e\xc0\x3b\x1c\x77\xa5\x12\x0d\xbd\xc6\x85\x8d\xc0\x2b\x6d\x87\x62\x76\xe0\x6c\xc4\xe2\x8c\x01\x30\xbe\x2d\x0d\x93\x0f\x27\x1d\xe9\xc7\x8c\x1a\xb6\x58\x5a\x60\xfe\x96\x34\x7c\x47\xfe\x6d\xcb\xa5\x8b\x44\x7a\x44\x27\x5d\x27\xb5\x18\xf4\xf4\x49\x5a\x47\xe1\xd6\x53\xaf\x79\x86\x75\x15\xb4\x01\x6c\x87\x49\xe0\x80\xc6\x67\xc1\x43\x15\xda\x11\xcc\x82\x71\xbb\x82\xd5\x48\xb4\xd1\xeb\xd1\xb0\x07\x3e\xc1\x07\x55\xa7\x1b\x3d\xfc\xeb\x37\xef\x7e\x7c\x73\x75\xf9\xfe\xcd\xeb\x73\x1b\xad\xd0\x13\x99\xb8\xbd\x41\x36\x2a\x35\x28\x1b\x65\x4f\x41\x92\x1d\x66\x8a\x36\xb8\x03\xe7\xfa\x1d\x11\x7a\x63\xff\xef\xff\xfc\xdf\x64\x99\xda\xfe\xbd\x49\x26\xf2\x0a\x81\x85\x81\x54\x9a\x79\x3a\x48\xcc\xe8\x92\x2c\xd1\x0f\xbf\x7f\x6f\xd6\x4e\xda\x39\x70\x03\xb7\xdd\xbc\xb3\x61\x91\xc9\xf8\x66\x84\xeb\x9f\xfc\x00\x4b\xc3\x6b\xa8\x41\x55\xde\xf7\x5c\x52\x93\x4a\xb0\x77\x1e\x5e\xbf\x2f\xa6\xb9\x36\xdd\xf5\x1d\xe4\x91\xbd\x8f\x7e\x4a\xf9\xb4\x44\xb7\xa4\x57\x08\xcb\xe7\x14\x1c\x3d\xf8\x8e\xd3\x16\xad\x04\xc1\xb7\x90\xf0\xf4\xc9\xb9\x8c\x99\x22\x1b\x9b\x61\x67\x03\x23\x9d\x20\xb8\x3d\x68\x94\xee\x09\x93\x5a\x97\xb3\xf1\xa0\xcc\x99\x0f\xae\x0b\xce\x96\xe8\x67\x49\xd0\x0d\x95\x80\x5b\x16\xdb\x66\xf3\x1b\x48\x8b\x24\xb8\x5d\x58\x2f\x65\x0a\xf1\x00\xa8\x90\x6b\x92\xd2\xb9\x01\x4e\x09\x5c\xaa\xc2\xa1\x40\x92\xc6\x11\xca\x1a\x21\x01\x4d\x53\xe0\xd7\xcd\xe0\x16\xef\x22\xf9\xe9\xc7\x74\xfd\x74\x1d\xe7\xa0\xd9\xd3\x66\x1c\x75\x9c\x6d\x88\x88\x09\x27\xa4\xdd\x7c\x23\x51\xc3\xbb\x8e\x94\xe7\x65\x70\x22\x4b\xbd\x89\x41\x10\x1c\xf5\xde\xaa\x9a\x2f\x12\xe0\x24\xa2\x39\xf5\xd6\x03\xac\xbc\xa7\x2c\x45\xb7\x86\x0b\x41\x1a\xd5\x1d\x9e\x6b\xd4\xd2\x62\x0d\xb8\x23\x18\x87\xfa\xdc\x6f\x46\xe1\x77\xb3\xc8\xc8\x46\x9f\xb2\x16\xfc\x9e\xd6\x2c\x89\x3a\x42\x1c\xf1\x62\xfa\x93\xca\x51\x28\x3e\xa0\x8a\x0e\x16\xb4\xaf\x2c\x56\x08\xcc\x5e\x0b\x69\xe3\xa8\x06\xbf\x20\xf0\x17\x88\xf8\xb2\x28\x04\x86\xad\x85\x9f\xb0\xd3\x85\x1f\x58\x83\xd7\xc7\x42\x05\x6f\x08\x69\xad\x5c\xc3\xc6\xf1\xea\x06\xef\x3b\x1a\xbc\xb6\x92\xdc\x41\x9e\x72\xee\xbd\x85\x04\xc9\x7c\xf3\x7e\xe5\x76\x53\xe7\xa9\x86\xb7\x40\x26\x39\x7a\xa9\xff\x07\x6e\xce\x32\x22\x24\x21\xc9\x19\xcd\xb4\xaa\x1c\x84\xc4\x02\x54\xe7\x06\x32\x3e\x3e\xcd\x73\xa9\xac\x17\x9f\x1f\x86\xd6\x87\x8d\xd3\xd2\x36\x9e\x16\xc4\x97\x91\x20\x30\x20\x37\xca\x54\x1c\x5e\x52\x1c\xd2\x9c\x5b\x81\xf7\x21\x66\x41\xd5\x16\xfe\x61\x40\x7f\xfd\xda\xd8\x87\x54\xc5\xc4\x51\x0d\x9b\xa6\xb3\x49\x6b\xf3\x55\xa6\xfa\x0d\x66\x87\xdf\xe8\xc9\x20\x6b\xea\xc0\x87\x28\xc4\xe4\x12\xa8\x80\x97\x6c\xe8\x5d\x4e\xe6\x72\x68\xb6\x08\xc7\xb3\x81\xae\xee\xe7\x81\xfc\xb2\x0e\x32\x09\x8d\x29\x69\x16\xde\x12\x93\xdf\xe5\xac\x53\x6a\x83\x23\x83\x84\xbf\x0d\x1b\x48\xe9\x05\x1f\x7c\x88\x0c\xbc\xd6\x72\x5c\xf6\x01\x9f\xa7\xa4\x6b\x4d\x8a\xec\x20\x89\x44\x37\x15\x7d\xf8\x9d\x91\xd1\x62\x51\x46\xa4\xae\x3c\x6c\x0d\x66\xdd\xdf\x84\x7c\xbf\x64\xae\x1b\x6d\x8e\xdd\xa0\x1e\x0b\xbc\x23\xca\x24\x99\x93\x5e\xd5\x27\x0c\xa3\xde\xdf\x80\x38\x92\xc4\x3a\x7c\x41\xb2\x30\x93\x1f\xdd\x1d\xce\x21\x66\x9e\x6b\x68\x3d\x96\xe6\x14\x19\xd6\x7a\x3e\x11\xe8\x26\x0c\x78\x63\xf6\x3a\x33\x7c\xc5\x72\x2b\x6f\xa0\xc4\xe7\xa3\x9b\x51\x29\x07\xe3\x87\x36\xac\x56\xce\xb3\xe4\x02\x97\x03\x20\x25\xdd\xb0\x9d\x4d\xe6\x33\x49\x7e\x2b\xd2\x60\x7d\x4e\x37\x13\xdb\xbb\x41\x0d\x67\x6b\x2e\x4c\xd8\x64\xc5\xd5\x16\xdd\x38\x68\xdf\x14\x33\xdd\xe4\xd0\xbe\x59\xa2\xcb\x8e\x6e\x98\xb7\x37\xf6\xdc\x99\x0b\x60\x87\xc1\x1e\xf6\x0e\x47\x71\x10\xd4\x36\x5b\xd0\x58\x58\x15\xa9\x34\x2e\xbf\xb7\x9a\xe3\x1d\x3b\xb3\x34\x2f\x7d\xdc\xdf\x6e\xa3\x78\x6e\xc7\x81\xcd\x24\xa6\x06\x1e\xd4\x76\x56\xcc\xf7\x47\x4b\x96\xf3\x9a\x05\xf7\x10\x8c\xcd\xb2\x19\x2e\xa7\x13\xf0\x33\xfd\xde\xc0\x46\x10\x84\x7b\xad\xc9\x92\x16\xa5\x91\x2c\xee\x74\x7e\x38\x94\x38\x91\x3f\xe8\xf6\x47\x00\x14\x4f\x1e\x43\xe8\x71\xaa\xfb\x95\x26\x18\x08\x64\x59\x11\xb0\xd2\xb2\xd4\xaa\x4d\x54\xc6\x41\xff\x2c\x0f\xd0\x8d\xf0\x66\xa7\x79\x53\x9e\xfb\x67\x42\xc5\x34\xb1\xce\xd0\xde\x26\x9c\x39\xe4\x81\xad\xb4\x49\x0c\x2a\xcb\x00\xa0\xac\x09\xba\xc8\x6c\x0e\x79\xb1\x32\x4a\x95\xf5\x72\xd3\x3b\x81\x1b\x2c\x49\x61\x31\x98\x90\x17\xdf\xd0\xc6\xa2\xba\x5c\xb8\x2c\x80\x38\xcf\x5c\xc4\x79\xf0\x33\xa3\x72\x47\x3f\x37\x1d\xc1\x6c\xe8\x67\xf3\x23\x21\x23\x0d\x42\x0d\xd7\x15\x6e\x6e\x8b\xd0\x58\x48\x92\x8e\xb3\x06\x42\x1a\x5e\x48\xc1\xdc\x6b\xb9\xb3\xd1\x6c\x88\xc2\x85\x9d\xc6\xc3\x76\x4b\x04\x59\xe6\xa3\xfe\x5e\x1b\x56\x7b\x2a\xc9\x44\x47\x1a\x39\x03\xe6\xc5\x08\x4e\x61\x73\x9c\x6a\x4f\xdc\x99\xa7\x3a\x23\x9b\x80\x59\x3e\x26\x17\x55\x08\xa2\x62\x72\x93\xdd\x61\x19\x11\x9c\x17\xcc\x3d\x34\x8a\x8b\x70\x58\x6a\xcb\x65\x30\x46\x32\x1f\x2f\x5d\xa3\x33\x70\xb7\x59\xcd\x22\x0a\x0d\x94\x5e\x5e\x8d\x49\x13\x19\xab\xf1\xa7\x92\xbd\x0a\xd3\x0c\x03\x6d\x4b\x87\x24\x1a\xcd\x65\x4d\xd6\x16\x07\x35\xea\x83\x44\xa9\x21\xf5\x5d\xd5\xbb\xf9\x08\x61\xd2\xc9\x7e\x3b\xda\xc5\x44\x0e\xf3\x2e\xfa\xdb\xd1\x2e\xb5\x0e\x63\xcd\xeb\x31\xc6\x14\x20\x95\x26\x13\x83\x99\xec\x87\x72\x04\xfd\x7d\xbd\x5b\x08\x3e\x26\xbd\xdc\xd7\x23\x9d\x8a\x90\x64\xda\x39\xfb\xf9\xd8\x20\x21\xaf\x97\xd1\xae\xde\xd8\x85\x37\x93\x79\x46\xa2\x94\xf3\x11\x8f\x7a\xe6\x4f\xab\xbb\x6c\x8d\xa9\x69\xf5\x5b\x08\x9e\x37\xa4\xc8\xbd\xb1\xa9\x02\xa4\xf5\x17\x11\x97\x7f\x01\x57\xad\x57\x6c\xad\x6d\xc7\x68\xf7\x15\x5d\xb9\xa3\x1c\xd9\x3a\x9f\x44\xac\xf7\x45\x99\xf3\x77\xfc\xd6\xa4\xc6\xbb\x35\x21\x81\x6d\x12\x18\x66\x26\x18\xa3\xb5\xa9\x45\x3e\xba\xcb\x73\xe1\x4d\xb8\xcb\xd5\x0b\xbe\xa3\x5a\xc1\xd6\xc3\x18\x8b\xf1\x60\xc1\xf7\x62\x60\x21\xdf\xc4\xa7\x5e\xbb\x0f\x5d\x83\x16\xe0\x96\xfa\x23\x59\xa3\x0b\x1f\x9f\x2c\x35\x27\x1f\x43\xaa\xb0\x40\x3b\x94\x80\x21\xa2\x01\x97\x01\x8a\x25\x7d\xd7\x06\xb2\x83\x09\xb2\x5e\x52\x79\xcd\xb4\xfa\xdc\x90\xa2\xaf\x26\xe8\x39\x7a\xf6\xcc\xb4\x6b\xd1\xc5\x45\x85\x7d\x8c\x8c\xae\x3f\x16\xee\x82\xac\xab\x4d\xee\x8b\x6f\xef\x27\xe2\x4d\xe1\x10\xc7\x88\x66\xc4\x09\xfd\x6f\x44\xe5\x0e\xe8\x93\x83\x0d\x27\x39\xa2\x33\x08\x78\xef\x46\x80\xd4\xc4\x8a\xff\xe1\xb4\x9e\xd0\x7c\x27\x20\x5b\x57\xaa\xc7\x00\xfd\x3f\xc5\xdf\x3d\xea\xde\x86\x5c\x3b\xb0\x62\x78\xe9\x38\xae\x78\x55\xfc\xef\x63\xee\xd9\xba\x13\x5c\x6b\xc5\x35\xff\xf7\xa4\x23\xdd\x30\x51\x34\x0b\x7e\xef\x69\xcf\xf1\x97\x39\x76\x33\x9c\xfa\x8a\xdc\xd9\x9e\xc4\xe9\x7c\xf9\xec\x22\x61\x67\x68\x8c\xe7\xa5\x49\x32\xf7\xff\x70\x4d\x3f\xda\x35\xfd\x28\x4f\xf3\xaf\x08\x63\x2e\x4e\xc4\x98\xa9\xec\xcd\xbf\x58\x24\x3c\x92\x23\x8e\xeb\xb8\x94\x5b\x50\x9f\x42\xac\x9c\x7c\x52\x02\x1f\x8b\x96\x9b\xf9\x4c\xd5\x85\x0e\xb8\xe8\xd0\xa3\x76\xe8\x3b\xda\x60\xe5\x17\x2d\xbd\x87\x81\x2a\xb2\xb3\x49\xf6\x95\x84\xd9\xbf\xc1\x90\xfb\x69\xe9\x92\x23\xf6\xf4\x85\xcd\xb5\x7b\x58\xea\xa3\x1f\x20\xcd\xc3\xd1\x2a\xb6\x73\x09\xa5\x4e\x90\x32\xc5\xd1\x5d\x16\x1b\xd3\x33\x6b\x56\xe4\x03\x13\x34\xa3\x55\xda\xa4\xa9\xbe\x82\xce\x26\xc2\x70\xfd\x1a\xfd\xc9\x2c\x20\x56\xe9\x2c\x7d\xf9\xc8\x29\x40\xde\x22\x24\x24\x32\x63\xe9\x53\x23\x5f\xfe\x69\xe6\xf6\xb4\x21\xb0\xdc\xd9\x7c\x19\xf2\x9f\xe7\x86\xab\x2a\x6b\xa6\xfd\x79\x20\xc0\x11\xc1\x93\xfb\xf2\x4f\xc7\xf7\x1e\x0f\xb5\x1c\x07\xe7\x0a\x77\x1a\x96\x85\x4e\x1e\x4c\xed\xbf\x26\x08\x1d\xac\xee\xe0\x8e\x5f\xcb\x89\x01\x89\xbd\x01\x95\x81\xc6\x64\x03\xf2\x35\xaa\x41\x47\xff\x56\x83\x43\xc5\xd8\xfe\x25\x72\x7f\x4f\x83\xcb\x59\x42\x1d\x54\x1a\x97\x40\x8d\x1a\x60\xd9\xa6\x0a\x84\x91\xfe\xe8\xd1\xeb\xf1\x77\x7f\x34\x78\xd9\x37\x36\x31\x2e\x04\x33\x48\x6b\xca\x4d\xe4\xd9\xbb\xf1\xbf\x72\xc3\x37\xa4\x51\xc6\xa7\x5e\x91\xe4\x26\x49\x32\x35\x74\xd3\xc3\xcb\xef\x1b\x8c\xcf\x4b\xd7\xd3\x2e\x1a\x93\x48\x58\xcf\xfb\xbc\x5e\x67\x96\x8e\xbd\x3c\x4b\xc1\x4e\x5f\xa0\xf7\x5b\xc1\xf7\xc6\xd2\x2f\x53\x37\xd3\x7b\x1d\x3f\x86\xdb\x80\x15\x46\x5e\x3d\xa5\xa3\x19\x9d\x31\xfa\xd4\x96\xd9\x60\x7d\x70\x2b\xa2\x17\x5b\xcf\xec\xfc\x03\x11\x74\x7d\x48\x6b\xfa\x1c\xe2\x18\xd5\x9a\x0b\x82\x7a\x93\x8a\xeb\x84\x35\x58\x88\x10\xfb\x80\x58\x64\xe9\xb6\x32\x77\xf5\xb0\x73\x91\xc4\x43\xf7\x82\xb7\x03\x14\xca\xb1\x17\x2e\x88\x10\x5c\x24\x8e\x13\x0c\x41\x2f\x53\x5c\xc2\xa6\xa7\xae\x31\xed\x86\xdc\xc7\x8d\x26\xd2\x44\x51\xd5\xcb\xb6\x84\xf5\xce\xe6\x75\x47\xdb\xd1\xcc\xd1\x4c\x5c\x05\x53\xad\x0e\xfb\x18\x9c\x94\x01\x40\x4b\x8a\x2d\x4f\xc5\xe1\x6b\xdd\x04\x75\x74\x5d\x77\x8b\xdc\x61\x81\xa8\xbc\x2a\xf1\xeb\xdf\xb1\x84\x9b\x00\x36\x09\xbd\xcc\x8b\x3f\x3a\xc2\xe5\xa0\xb6\x5c\xd0\xb1\xbc\x7a\xf7\x81\xbc\x6a\xdc\xfb\xbc\xea\xfa\x2e\xce\x26\xdc\x3a\x2f\x5e\xa0\x2b\x08\x71\xff\xf3\x39\xfa\xc9\x04\xd0\x3d\xeb\xf1\x51\xcb\xd1\xde\x74\xad\xa7\x0f\xa2\x53\x4b\xb0\x0a\x22\x84\xdf\xc7\x17\x02\xc3\x9d\x00\xcc\x44\x1b\x9e\xdc\xd1\xbf\x94\x3b\x32\x74\x66\xa0\x94\x5e\x15\xdf\xf2\xae\x95\x21\x6e\x58\xf3\x07\x4c\x00\xc0\x0d\x55\xdf\xbe\xfb\xf5\xd9\x33\x68\x6c\xc9\xe2\x08\x2c\x46\xe1\x91\xa0\xc6\x51\x68\xe8\x0f\x04\x9a\x27\x5b\x95\xde\xbb\xe9\x5f\xea\xdf\x4e\xb1\x07\x74\xca\xf1\xd6\x39\x05\x7a\x20\xb7\xc8\x64\xfb\x19\xba\xb4\x69\x28\x55\xce\x01\xba\x9c\x57\x6a\xcc\x25\x1a\x8b\x27\xfa\xa7\xca\x3d\x1f\x54\x65\x24\x8f\x06\x40\x38\xcf\x5f\x78\xfb\xa9\x40\xe5\x0a\xe1\x80\x49\x59\x68\x3c\x40\xea\xe4\xfd\x97\x28\x91\x4a\xe4\x77\x4e\xe3\x7e\xee\xd5\x5e\x97\xcb\x33\xc3\xa7\x04\x77\xca\x29\x6d\xad\x04\xbb\xa9\x2a\xe9\x7d\xd9\x1d\x8e\x08\xaa\x3f\x33\x7f\x01\x35\x5c\x46\xa9\xf8\x65\xab\x32\xa9\xa2\x0d\xf8\x66\xcb\x96\x40\x2e\xe8\x6c\x2d\xf8\xee\x5c\x83\xa7\x80\xd9\x58\x9c\x09\x19\x6e\x07\xee\xe4\x34\x45\xdd\x79\x0e\x78\x12\x9e\xcf\x2e\xcd\xd8\x7c\x0f\xf4\xf2\xf9\x09\x0e\x8f\xb3\x70\x5a\xee\x8f\x7a\x04\xb2\x88\x41\xff\x60\x6b\x1c\x79\xcf\x35\x62\x5c\x78\x37\x89\x84\x7c\x0d\x25\x06\xa9\xf6\x5c\xa8\xed\x61\x61\xca\x69\xc1\xed\x90\xb4\xb2\xa7\x75\x15\xe5\xe3\x87\x7b\x13\xab\x41\xab\x5f\x07\x6e\xdc\x15\x7d\x77\xf0\x56\x0e\x55\xe0\xf6\x7d\xd1\x73\x09\x86\x4b\x4b\x5d\x32\x0d\x39\xc0\x02\xc0\xd7\x39\x60\x81\x99\x22\x91\x2b\xd9\x4e\xa1\x78\xb6\x14\xe7\x51\xc5\xa0\x24\xac\xc8\xd6\x95\x1f\x09\x8b\xa1\x0c\x82\x4a\x86\xf4\xf6\xf8\x50\x89\xf7\x13\x61\x14\xbe\x50\xad\x0e\xe0\x00\x03\x85\xc4\x98\x90\x96\x56\x9b\xa7\x0c\x77\xb1\x56\x0f\x08\xf0\x4b\x2b\x2f\x86\x9b\x26\x0a\x96\x25\xd1\x20\xd3\x84\x36\x97\xaa\x96\xfa\xe6\x50\x12\x24\x40\x13\x7c\x8e\xad\x55\xaa\x0b\x9c\x16\x04\x7f\xa8\x2a\xa8\xe2\xaa\x0c\x6f\xdf\x07\xd5\x70\x75\x88\xbc\x9d\xda\x40\x4f\x16\x14\x1b\xe3\xaf\x02\xcb\xdf\x61\x4f\x3e\x90\x64\x96\x66\x2c\xbb\x40\x53\x6e\xed\xdb\xcd\x24\x63\x16\x37\x97\x4e\x85\xd9\x58\x38\xee\xcb\x41\x05\xe6\xbd\x99\x62\x7e\x02\xc8\x2a\x40\x09\x0e\x82\xcc\x7d\x59\x07\xd4\xd1\xdb\x5b\x81\x5b\x15\xee\x3e\xef\xed\x33\x44\x13\x47\xcc\x6d\xe7\x4b\x70\xf4\x21\x5f\xd3\xf0\xad\xde\xfc\xef\x30\xc3\x1b\x12\x15\x13\x0a\xf1\x74\x60\x85\x3b\x6e\xa5\x5a\xc5\xbf\x48\xd7\xc1\x07\x60\x6b\x1c\xe0\xbe\x27\x0c\xc9\x01\xa6\x5a\x0f\x5d\x77\x28\xd9\xa6\xf4\x93\x9b\xb4\x35\xe3\x37\xde\x10\x75\x69\x6a\x02\xce\x82\x6b\xe0\xcc\xa9\x7f\xf3\x65\x92\x87\x67\x18\xeb\xcb\x67\x9f\xf3\x83\xcc\xeb\x50\xdd\xbf\xaa\x2b\x14\xc7\xfa\xf9\xda\x58\xc9\x79\x7c\xb9\xd0\x93\xa3\x80\xcf\xc4\x1c\x64\x19\x3b\x90\xbb\xda\xb3\xee\x42\x71\x0a\x3c\x70\x3e\x65\x4d\xaf\x5f\xcb\xfa\xc6\x1f\x97\x62\xf3\x90\x7c\x99\xce\xad\x20\x4a\x35\xaa\xd8\x92\x39\x76\xfe\x27\x51\xdf\x80\xcb\x1a\x70\x70\xc7\xef\x70\x97\xdd\x90\xf2\x95\xad\x42\xfe\x91\x47\xfa\xb2\x9c\x4c\xf0\x74\xa7\x3e\x16\xdd\xc3\x2f\x51\x0f\x59\x42\xb9\xe2\x4a\xae\x40\xdd\x25\x84\x55\x52\xac\xfc\xf8\xb9\xf2\x91\x6f\xfa\xc7\xd8\x97\xb0\xe2\x42\xf9\x20\x43\xa8\x50\xaa\xc9\x4c\x0b\x43\xaf\x24\x85\x40\x21\xc4\x0f\xf7\xba\xf5\xc1\x15\x8b\xa6\xaa\x10\x6a\x7b\x28\x9a\x16\xae\xc5\xba\x10\x04\x15\x52\x59\x65\xbd\x7e\x31\xd8\xe7\x55\xeb\x86\x7e\x7a\x9b\x29\xae\xbc\x04\xf6\x65\x18\x23\x66\xb8\x40\xf6\x26\xc1\x46\x10\x53\xb7\xcf\xea\x75\x6b\x2e\x4a\xa1\x7b\x40\x03\xd4\xe0\x83\x9b\xd8\xe9\x1a\xb4\x91\x2f\x88\x84\xba\xe0\x21\x03\x69\x34\x7e\xf0\x1d\x2a\xe3\x42\x2f\x5e\xa0\x77\xf8\x90\xeb\x9c\xb5\x26\x04\x37\xdb\x28\x7c\x73\xb0\xd5\x58\xaa\x15\xc1\x96\x4f\x0a\xb4\x8a\x2f\x69\xc7\xae\xdb\x91\xcb\xda\x3e\x87\x25\x78\xdb\x6a\x37\xa8\xeb\xa6\x2e\x04\xde\xcc\x4a\xae\x86\x69\xc3\x20\x5c\x62\xae\x6b\xf2\x7e\xc6\x5c\x99\x0e\xe3\xd7\x3b\xd2\x35\x9a\xe5\x67\x63\x03\x73\x53\x06\x7a\xd9\xa5\x5e\x74\xcc\x7d\x2a\xd9\x31\x88\x74\xb2\x16\xf2\x41\x2e\x3b\x72\xb4\xa6\x63\x02\x62\x3c\x5a\xe0\x71\x0a\x66\x79\x6e\xce\x49\x9a\x4a\xb1\x69\xe3\x1c\xfb\x32\x25\xe5\x07\x6e\xe9\xd7\x45\x19\xbc\x99\x70\x4c\x91\xb8\xb4\xb5\x74\x7a\x4e\xa1\x3a\xbe\x29\x86\x1f\xac\x8c\x3d\x54\xf9\x6d\x20\x51\x02\x2e\x74\xb8\x00\xf4\xc2\xe4\x6f\xc4\xa5\xf1\x4c\xf9\x42\xc8\x79\xdb\xe2\x3b\x92\x4f\x05\x97\xd3\xc1\xb8\x92\xa8\x23\x6b\xb5\xb0\x57\x0d\xdc\xa5\xeb\x60\x0e\x98\x02\x5d\x18\x31\xfe\x9c\xf7\x86\x9d\xdb\x9a\xdb\x36\x6f\x7a\xd7\xab\x83\x89\xa4\x3c\x99\x82\xed\xd9\x18\x26\x97\x70\xc8\xf2\x99\xa9\xfc\xe5\xb3\x98\x4d\x06\x96\xcb\x0f\xce\xd8\x08\x94\x76\x9a\x28\xa5\x8a\x2a\xfc\x4d\x93\xe1\x74\xd8\xe0\xec\x02\x7d\xbb\xfc\xb6\x46\x93\xa7\x3a\xfd\xbd\x22\x36\x85\xfb\x27\xe6\x25\x3f\x2c\x27\xf9\x8b\xf3\x91\x1f\x91\x8b\xfc\x40\x25\xe9\x81\x39\xc8\x0f\xd0\xa7\xbe\x5a\xee\xf1\x23\xf2\x8e\x1f\x9c\x73\xfc\xc5\xf9\xc6\x35\xc4\x2f\xbf\x2b\xfb\x9d\x9a\x76\x9c\x91\xbf\xf5\xf3\xbc\x7c\xce\xd6\x71\x31\x4b\xff\xa7\xbb\x21\x02\x69\x3c\x83\xe2\x3b\xec\x92\xc9\xac\xdd\x77\x85\x5b\x30\x94\xc4\xc0\xa0\x3a\x7d\x79\xf5\x24\x78\x0d\x46\xef\xa0\x5c\xe1\x5e\x0d\x02\xa2\x4c\x92\xe1\x5e\x6e\x39\x68\x1a\xb7\x24\x7a\xf8\x83\x12\xf0\xaf\x2b\xcf\x37\x20\x93\x84\xee\x46\xd2\x0f\xcd\xfd\x12\x47\x2e\xaf\xdd\xbc\x29\x25\x8e\xd6\xb5\x76\x39\x3c\x25\x39\x4e\x95\xb9\x46\x79\xf4\x7d\x94\x26\xb3\xb2\x91\x79\xc7\x11\xb2\xf4\x24\x69\xaa\x6f\xe5\xbd\x4a\x8f\xc2\x64\x81\xb1\x4a\xf7\x92\x56\x93\xba\x63\x95\x1e\x79\xfb\x3a\xb1\xd6\xd7\x7b\x24\xdf\xa1\x32\x70\x5c\x32\xb1\x3a\x5a\x49\xc5\x45\xc9\xb2\xbc\x5f\x9d\x96\xc7\x4a\x99\x15\xbd\x27\x09\x7a\x52\x8a\x55\x74\x9f\xb4\x34\x5a\x3e\x57\x46\xcd\xf3\x87\xd7\xcd\x2d\x8b\xd1\x7d\xfd\xbb\x7a\xd1\xc5\xc1\x57\x23\xe8\xfb\x2b\xac\x7d\xf7\xa5\xb7\xf2\x7e\x6d\x95\xf4\xe2\x66\x49\xc5\x23\xfb\x16\xd5\x9a\x8b\x1d\x4e\xb2\x38\x51\x96\xb3\x81\x2e\xb2\xc4\xf6\xaa\xe7\xd1\x00\xfc\xb8\x56\x70\x4c\x11\x78\x98\xec\x3f\x59\xdc\x9b\x33\x77\x7f\x4d\x29\x56\x20\xe3\x27\x75\xa8\x70\x64\x0f\x11\xff\xc7\x25\xbe\x3b\xc5\xe3\xc2\x3a\x39\xc8\xc8\x09\x5b\xa9\x53\x5d\x25\x6d\x53\xfc\xae\xfc\xbe\xec\x3e\x92\xcc\x70\x31\x42\x27\x65\xc1\x39\x1b\x37\xb0\x85\x49\xc2\xc5\x1c\x93\xf2\xe5\x6b\x49\x15\xf6\x43\x5a\x80\x4d\x5b\x0e\x27\x97\x5f\x33\xbd\x6d\x1c\xc4\xba\x6c\x21\x95\x03\xae\xe6\xfb\x14\x76\x77\x3b\x32\xe2\x97\xd2\xbf\xf5\xa3\x0d\xc0\x1d\xd9\xad\x88\x18\xbb\xa4\x18\x27\xfb\x9e\x96\xe9\x7b\x92\x69\xec\x87\x7c\xbc\x49\x9c\xd4\x89\x0b\xbb\x73\x54\xbc\xf0\x58\xe3\xd6\x1a\x31\xfa\x28\xe7\xe5\xec\x69\x89\x75\x51\xda\x91\x1e\x00\xee\x98\xcb\x50\x41\xda\x07\x9a\xcc\x2b\x4b\x71\x95\xa7\xa6\xc3\xc2\xe6\x3b\x1e\x39\x6b\x73\xd0\x38\x4e\xa9\xa3\x3b\xf2\xaf\xbe\x84\x38\xbc\x27\x26\xba\xc3\xf3\x35\xa6\x1d\x84\xda\x5a\x28\x56\xe9\xb2\xd2\xec\x0b\x4e\xf5\x08\x65\xb8\x1f\x75\x36\x9d\x53\x5d\xc0\xfd\xb8\xb7\xdb\xc0\xdd\x17\xad\x18\x0d\x77\xf8\xd0\x08\x80\xcf\x41\x2f\xca\x4a\x72\x60\x7c\x7a\x7a\xdc\xe7\x17\x89\x95\x1d\x41\xa4\xb3\x22\x84\x66\x88\xd2\xbf\x74\x38\x1d\x36\xb3\xa9\x03\x7c\x1d\x95\xcd\xae\xc5\xcd\x4e\x89\x97\x8d\x85\xcb\x7c\x45\x3e\x64\x95\xa3\xb0\x4f\x1b\x72\xf0\xbf\x24\x45\xf9\xe0\x22\x5f\x6b\xaa\xf2\x41\x42\xfa\x8e\xdf\xe9\x7f\x78\xaf\xb8\x7d\x8e\x11\x17\x35\xef\x5d\x95\x05\xd6\xda\xab\x96\x9a\xc5\x58\x13\x29\xb4\xfd\x46\x9a\x24\x4c\xd7\x05\xfe\x7f\xa4\x96\x5f\xb1\xf4\xac\xb8\x4b\x53\x3c\x13\xe7\xb7\x16\x0a\xa0\x44\xef\x01\x98\x74\x53\xc5\x6d\x47\xd8\x28\x65\x50\xf3\x2f\x3c\x29\x19\x0d\x93\x5b\x57\xc9\xb3\x74\x26\x5b\x3e\x59\xc2\xaf\x58\xc5\xfc\x1b\xd3\x22\x7f\x51\x1d\xb1\x5e\x6c\x3c\xa9\x06\xf0\x10\x64\xb2\x41\x52\xcc\x0e\x86\x07\xf8\x4b\x23\xa6\x2e\x4c\xe5\x25\x85\x0a\x6a\x25\xef\x18\x1a\xd4\x4a\xcb\x13\x8c\xda\xeb\xf3\x71\x82\x9f\x2a\xc2\xa9\x35\x03\xa8\x7c\xef\xcb\xa9\x33\x57\xd5\x32\x26\x7b\xe3\xad\xb5\x72\x09\x5c\xa4\xf0\xea\xe3\x1d\xf5\xd5\x39\x65\xc4\x04\x12\xee\xf0\xa0\xb2\x9d\xf9\xa2\x23\x4a\x1f\xbb\x59\x19\x85\x3a\xe7\xe7\xe8\x83\x81\xc6\xc7\x6a\x37\x77\x71\xb5\x12\x25\x4d\xc9\x26\x23\x95\x38\x98\x69\xa1\x7d\x64\x26\xbf\x40\x03\xca\xe3\xa7\x77\x8e\x9e\x7d\x4e\x2a\x5a\x15\x97\xbc\x21\xef\xa6\x76\x65\x4a\x0e\x9d\xb2\xf1\x16\xf4\xdf\xff\x6d\xbf\x38\x4b\x05\xa3\xfe\xeb\xe5\xf7\x76\x82\x57\xb3\xb1\xa4\xff\xb4\xc4\x2e\x86\xd2\x58\x23\x32\xf2\x6c\x2c\x8d\xfe\x7e\x14\xf4\x36\x54\xfa\xc6\xdc\x05\x70\x78\x03\xde\xf9\x6b\xd6\x92\x4f\x01\xde\x8a\x27\x5f\xcc\xf3\x21\xd3\x6a\x25\x13\x21\xd8\x91\xfe\x05\x12\xbd\xb1\x35\x83\x4e\xc4\x88\x53\x10\xcd\xae\xca\xa7\xfc\xfb\xfd\x3e\x70\x99\xd1\x58\xf1\x65\xbc\x63\xe3\x54\x39\x41\xe0\x01\xf5\x52\x70\x54\xc9\xc0\xd0\x76\x20\x6c\x11\xf6\x45\x83\x52\x66\x60\x6e\x3e\x43\x5e\x97\x26\x5f\xdc\x28\x5f\xb2\x6c\x17\xf3\x02\x2e\x5a\x33\xde\x9f\x07\xe2\x63\xa9\xce\xc2\x8e\xb8\x8a\xb7\xe9\xa4\xb7\x9a\x0e\xe1\x0d\xac\x13\xb8\x48\xc4\x94\xcf\x4b\x9d\x61\x31\xc5\x5b\xe0\x6e\xa8\xbb\x3d\xe2\x1c\xa5\xc6\x81\xfa\x78\xd7\xea\x29\x7e\xd2\x24\x2b\x62\x5e\xbe\x42\xd5\x52\x13\x14\x33\x8f\x68\x38\x7f\xb2\xee\x05\x69\x67\xb9\x83\x79\xaa\x34\xd5\x1d\xf6\x19\x0f\xf2\x1c\x7d\xff\xd9\x2c\xc4\xdf\xdd\xbf\x4f\xe6\x7e\x1d\xe6\x55\x1c\xdd\x12\xd2\x23\x3d\xcc\x6d\x54\x2c\x00\xe9\x35\x18\x8d\x77\x67\xcf\xad\x5a\x08\xa3\xd4\x5a\xd1\xf3\x57\x86\x9c\xf4\x1f\x1f\xba\xdc\x49\x7e\xfd\xba\x20\xaa\x72\x17\xa4\xd5\x33\x9e\xa3\xcf\x46\x31\x38\x47\x76\x3f\x28\x50\xe6\x7d\x7e\x31\x18\x54\xbc\xd4\xeb\x1e\x14\x40\x28\x3d\x2d\xb7\xa1\xdc\xb4\xab\x82\x98\xd8\xe8\xb1\xc8\xfe\x87\x3a\xf8\xf7\xa4\x0e\x06\x7d\x30\x13\xb2\xb9\xcd\xde\x41\x86\x12\x61\x21\xdb\x33\x4f\xfe\xa3\xac\x25\xa4\x35\x85\xe5\x9c\xc3\x20\x7e\xdc\xaa\xb0\xcf\x83\xe1\x6b\x92\xe0\x1e\xe0\x4d\x41\x93\x06\x7a\x5c\xb8\x2a\x46\xc9\x73\x74\xe5\x1e\x94\x0e\xc2\xde\x3b\x45\x92\xdc\xbf\xcc\xbf\x61\x4a\x7a\xea\x61\x43\x35\x74\x67\xf6\x56\x72\xd7\xd8\x5a\x99\x2d\x25\x5b\x8c\x1c\x10\x0f\xf6\x39\x3c\x68\x4b\xc5\x4e\x5a\x22\xb5\xee\x91\xf9\x2a\xcc\x22\x2a\x5e\x9f\x6b\x53\x60\x01\xb8\x1e\x51\x56\x3f\x46\x58\xac\xa8\x12\x9a\x37\x9a\x22\x13\xf6\x61\x1e\x97\x84\x06\xaf\x70\x44\x45\x53\xa1\xbe\xa6\xaa\x3d\x34\x66\x67\xb1\xa9\x54\xf6\xdd\x46\xa5\xa5\x30\xe9\xd6\x25\xf2\x69\x80\x6a\xd6\x6f\x30\x44\xc3\xb1\x48\xaa\xd3\x4d\xbc\xfb\xe0\xb9\x33\x70\xab\x8c\x08\x8d\x33\xa3\xea\xd7\x13\xf1\xf1\xe3\xce\xef\x7a\x50\xff\xaf\xeb\xf9\x1e\xe3\x4d\xf5\xef\x8f\x7a\xce\xc7\x73\x17\xfe\x2a\x6e\x73\xf7\xd7\x18\x7a\x04\x9d\x04\x5d\x78\xc1\x3d\x85\x4f\xee\xf5\x07\xd7\x36\xb9\xeb\x5c\x3e\x09\x81\x6c\x86\x91\x7d\x88\x83\x91\x60\x62\x3a\x5a\xf4\x3a\x46\xe9\xb1\xe4\x9d\xd3\x97\x35\x1a\x03\x6c\x9d\xee\xf2\xa1\xd8\xc0\x47\xdd\x26\x7f\x60\xcc\xce\x1f\x1e\x74\x8c\x86\x34\xaf\x3c\x98\xe2\xb4\xe6\xae\x29\x3c\x53\x8e\xf6\xc4\x5e\x73\xe3\x68\x8b\x59\xdb\x11\x78\x5c\x2b\x19\x32\xaa\x31\x39\x7b\xf9\x3c\x8c\x59\xc9\xad\xb2\x3b\xbf\x29\xd6\x7b\xe3\x1c\x7d\xa0\x52\x91\xd6\xab\x65\x95\xeb\xc3\xb8\x6d\x73\x73\x15\xd8\x95\x57\xa6\xce\x2b\x0a\xd6\x22\xa5\xac\x5a\x90\xbf\xf8\xaa\xdc\xc0\x9b\x4f\xa6\xd0\x97\x8a\x9e\x84\x85\x12\xc4\x90\x1f\x99\x54\xfe\x0c\x5e\x74\xcd\x04\x29\x6b\xba\x41\xda\x47\x8e\x7d\xa5\xcb\xc2\xf9\xad\xed\xd5\x91\x28\x8b\x29\x0a\xc4\xfb\xf4\xc2\xd9\xcc\xe6\xbf\xda\x1c\x52\x5b\xf6\x69\x5e\x66\x8a\xe2\xd1\x62\x4b\xf1\xf3\xe4\xf5\x1c\x2a\x78\x9c\xd5\xf4\xf7\xbd\x46\xa3\x3e\x15\x7b\x1c\xe6\x37\x53\x90\x78\x3a\x74\x81\x3e\x7c\x2c\x5a\x47\x97\x4f\x8b\x49\xeb\x79\x8d\x7e\xec\x25\x24\xd9\xb7\xb3\xe8\xee\xe4\x29\x37\xca\xc6\x61\x83\x2e\xc2\xe0\x99\x6d\x9f\x2a\x50\x51\x7e\x57\xe5\x7d\x7c\xf7\xa9\xbc\x93\x5f\xc9\xe8\x2f\xb9\xda\x29\xc8\xfa\x37\x27\x8b\x6c\xde\x46\xcc\x4a\xff\x72\x72\xa2\xfa\x4c\xff\x38\x1e\x7c\x49\x7c\xd6\x26\x53\x15\x07\x16\x79\x87\x12\x03\xac\xc2\xde\x92\xdf\xff\x9d\x74\x7d\x14\x89\x4c\x9c\x15\x8a\xeb\xee\x95\x2b\x30\x7c\x6d\x35\x2f\xb6\x56\xc6\x1b\xb9\xc3\x7d\x6a\x94\x4e\x3b\x94\x4e\x60\xba\xc6\x00\x19\x73\x14\x56\x7c\x32\x39\x39\xfb\x52\xaf\xc1\x9a\x5d\xba\xd8\xf0\x7f\x90\x43\x3a\x5f\x2d\x67\x33\xef\x6c\xcc\xdb\xd9\x2d\x31\x0a\xdc\x75\x24\x0d\x3e\xdb\x55\x56\x44\xe7\x7d\x76\x37\x61\x2c\xa5\xba\xb2\xdc\x0f\xc9\x2c\x1f\xcf\x8a\xe5\x8f\x56\x5a\x3c\x36\x50\xbe\x95\xd7\x8b\xda\xd2\x2b\xdc\x6e\x2a\x21\xfc\xc8\xa4\xf0\xef\xd7\x1f\xcf\x1c\x5b\xad\x08\xc8\x72\xba\x51\x17\x68\x25\xa4\xf0\x25\x78\x6e\x63\x0b\x47\x50\x1d\x84\xf3\x83\x91\xbd\xbe\xba\xaf\x8d\xef\xe0\x61\xf3\xb7\xc8\x7c\x4a\xa3\x7b\x7b\x2f\x9c\xcb\xa4\x5a\xe8\xfc\xf0\xac\x25\x9f\x9c\x0b\xed\x84\x23\x85\xab\x2b\xd0\x69\xc6\xd7\x35\xdd\x27\xb2\x37\x6d\xb9\x83\xb8\x32\x8f\xb6\xe7\x3f\x65\xc6\xed\xa9\x53\x1b\xe8\xce\xb0\x3a\x4f\x16\x9f\x07\x6a\x51\xac\xa9\x4f\x87\xa1\x2c\x18\x83\x9f\xca\xd4\x5e\xb0\x25\xb8\x0f\x24\x2f\xc3\x1d\x3d\x70\x98\xa6\x29\xb8\xca\xd8\xf9\xe3\xfb\xd7\x2a\x79\x29\x9b\x7c\x22\xcd\xa0\xc2\x35\xc7\x32\x1a\xeb\x3d\x77\xe6\x5d\xff\xaa\xb3\xec\xcb\xe3\x5b\x19\x42\x65\x96\x6e\x62\x22\x38\xa8\x03\x03\x39\x81\x90\x4f\xf2\x36\x24\xeb\xf4\xc9\x01\x96\x32\xcb\x7a\x50\x15\x24\xf3\x79\x37\xca\x97\x28\x4a\x12\x21\x82\xc6\x74\x56\x71\xa5\x74\x49\x2a\xda\x88\x21\x56\xe2\xe8\x69\xe4\x9d\x0e\x5e\xcb\xa3\x75\x94\x5f\xb6\x3c\xdd\xc2\xc8\x18\x42\x78\x71\x0f\x54\x4a\x5c\x96\xe0\xaf\x18\x0e\xa9\x01\xd6\x39\xeb\x2b\x90\x53\x82\xcb\x49\x7c\x30\x23\x23\x53\x6a\x0f\xfc\x39\x02\x1f\x5c\x26\x47\x91\xb3\x7d\xfd\x3a\x7a\x14\xa1\x48\xf8\x99\x42\xf6\x13\x43\x95\x13\x45\x5d\x3d\x42\xdf\x92\xc3\x54\xd1\xdc\x32\x7c\x75\x74\xaf\x0e\x63\xf5\xf6\xec\xd6\x8d\x24\xb9\xb1\x87\x7f\x63\x4a\x53\xc2\x01\xdf\x3c\xac\x32\xf0\xe3\xa3\x69\x65\x69\xc9\x0a\xa3\xcd\x50\xf3\x63\x14\xfc\x3c\xa1\xb5\xe3\xcd\xae\xd7\x68\x15\xca\xcc\x5c\xbb\x1f\x95\x46\xaf\x65\x5d\x16\x8d\xcd\x7c\x36\xa1\x32\xc7\x47\x97\x9d\xf3\x58\x40\x31\x69\x74\xe9\xde\x74\x72\xc1\x39\x97\x96\x60\xab\x13\x06\xb1\x50\x3a\x1d\xa6\xca\x92\x3f\x22\x9a\x99\xc7\xaf\xc7\xab\x33\x4e\xb9\x76\x4c\x36\xe0\x89\x45\xe1\xca\x87\x1a\x8a\x05\x7b\xce\x6d\x1b\x40\x8c\x1b\xd8\x30\x61\xea\x24\x3e\x5e\x29\xe7\x02\xbb\x38\x1a\xea\xaf\x0c\x95\x7a\xd1\x92\xea\x94\x4a\x0c\xa7\xd6\x2c\x7c\xcc\xb6\x1f\x2a\xb1\xea\x6f\x7c\x68\x7d\x63\x34\x13\x00\x7d\x99\x98\x3e\xfb\x7b\x14\x81\x5f\x26\xcb\x2a\x99\x2b\x0f\x62\xf4\x5e\x8e\x79\x4b\xe2\xeb\x30\xff\x5f\x24\xb1\x26\xe3\x16\x51\xfc\x3a\xe2\xb8\x47\xa4\x8d\xf3\x06\x25\xee\x9d\xd2\xd5\xf9\x7b\xad\xeb\x5a\x46\x1c\x81\x86\xc6\xa0\x89\xaa\x05\x48\x84\x1b\x35\xc0\x1d\x30\xeb\xc2\xfd\x57\xc4\xdd\xb5\xcf\x7c\x6c\xb8\x21\x6f\x73\x3e\xb7\xd6\xfd\xdd\x92\x60\xca\x41\xd6\xaf\x54\xe5\x1b\x09\x7e\x3b\xde\xb0\x9e\x85\x8a\x02\x15\x56\xaa\x29\x84\x5a\xcb\x28\xea\x5c\x37\x7e\x0a\xfa\x42\x71\xcd\x06\x19\xdb\x2d\x34\x35\x58\xdc\x67\x5c\x6e\xa1\xb1\x2a\xcc\x91\x44\xad\xcb\xb6\x2c\x35\x28\x69\x72\x65\x19\x17\x38\x94\x4d\xbb\x50\x36\x5e\x5b\x31\x44\x60\x63\x13\xdf\x11\x91\x26\x16\x0b\x78\x92\x87\xaf\xcd\x56\xc8\xc3\x44\xde\x23\xd2\x95\x4e\x92\x7c\x7e\x1c\xf4\xf2\xc2\x8d\x70\x6a\xf1\xd3\x92\xe1\x67\xab\x3c\x47\x6f\xe1\xb1\x40\x18\x14\xea\x18\xad\x08\xea\x6c\xa5\x3e\x86\xb8\x40\xe4\xcf\x03\xee\xc2\xa3\xe8\x08\xe6\xaf\x88\xb6\x6b\xa6\x66\x6e\x75\xcf\xc3\xa2\xe7\xe8\xa5\x27\xc0\x58\xad\x5d\x76\x84\x6d\xd4\xf6\x2b\x6e\xe4\x9d\x3b\x45\x9f\x28\x02\xa7\x49\x25\xe2\x03\xa4\x25\xad\xf8\xc0\xda\xbc\x68\xce\x7d\xc1\x3b\x1c\x69\xf8\x2d\x8c\x89\x17\x99\xb2\x97\x78\x77\x49\x17\xf3\x2c\x20\xcd\x8f\xb0\x5a\x96\xf5\xbd\x63\x02\x18\xf5\x5c\x4a\xea\x9e\xe4\x83\x68\x3a\xdf\xb9\x61\x76\xf8\x10\x4a\xe8\xa9\xda\xab\xd0\xd1\x98\x4e\x38\xbb\x87\x36\x69\x08\x56\xaf\x31\xed\x2a\x35\x44\x16\xe8\x0d\x18\xf3\x94\x33\xb8\x1e\x02\x35\xeb\x18\xf9\xe4\xf8\x06\xaf\xbc\x65\xe3\x3e\x35\x8f\x60\x2c\xdc\x2f\x1e\xa6\x04\x69\x20\x7f\x80\x59\x3f\x4e\xbc\xc7\x52\x8d\x35\xda\xe2\xc6\x2f\x2f\x4e\xa9\x6e\x3c\x51\x80\x02\xd6\x7b\xbc\x7c\x4b\xbc\xd2\xea\x58\xc7\x9e\x6d\x81\xbd\x58\xe4\x33\xff\xff\x27\xf4\xcf\x63\x9e\x43\x54\x7b\xf7\xe8\x27\xdc\x91\x6b\x65\xd3\xea\x50\x2e\xeb\x91\xd6\xec\x9f\x83\xbb\x06\x8c\x30\x2b\xd0\x5d\xa7\xac\x22\x54\x24\xc6\xd6\xb6\x4e\x99\x15\x2f\xce\xc5\x43\x47\x1f\x18\x9d\x36\xfc\xbe\x5e\xaa\xab\x15\x17\xcf\x8e\x19\x07\x47\xa4\x49\xd5\x6d\xc6\x42\x62\xf6\x1f\xed\xd3\xa6\x01\x2a\x70\x41\xdb\x4b\x66\x78\x02\x0a\xb8\x51\x32\x12\x28\x0b\xfe\x19\x24\x28\xc1\x6f\xde\x9f\x51\xdc\x39\xcb\x72\x9f\xda\xb4\x07\xf6\x78\xfe\xea\xaf\xc2\x94\x8a\x33\x6c\xd6\x94\xb5\xa9\x09\x41\xdb\xaa\x09\xf1\x0f\xdb\xe0\x2f\x62\x1b\xd4\x12\x84\x4b\xbf\x40\xe4\x16\x70\x66\xa0\x79\x68\xa7\xab\x75\x89\xae\xfc\x74\x9d\x7d\x99\x27\x6b\x0f\x0e\x1a\x8d\x28\x6d\xf5\xe5\x31\x5f\x88\x9d\x77\x29\x09\xb9\xcc\x31\xcc\x0e\x3b\x2e\xc8\xf8\xe3\x3e\xdf\xc3\xf3\xba\x95\x9c\x15\x93\x62\x15\xc7\x12\xbc\xc3\xce\x3c\x84\x6b\x2a\xd1\x6d\x88\x73\xd1\xb6\x96\xdf\xd5\xf6\x31\xfe\x0a\xc6\x03\x13\xaf\x7f\x15\x74\x9a\x2c\xf6\x97\x24\xda\xe8\xa5\x97\xc7\xf8\x3e\x8a\x61\xdb\x9c\x76\x5d\x55\xbb\x2a\xf9\x8e\x5d\x0a\x3c\x3b\xa1\xb2\xcb\xf8\x0d\xc0\xe3\xe0\x9c\x70\xa3\x8c\x80\x33\x76\xa3\x50\x59\xba\xe2\x1e\x55\xf3\x32\x02\x51\xfe\x4a\xcf\xaf\x6c\xbf\x50\x26\x39\x25\xb8\xc9\x1d\x7f\x55\xb1\x50\x2d\x9e\xe8\x9e\xea\x98\x72\x57\xe4\xb7\x48\x1d\x83\x6f\xab\x9c\xfd\xc4\x94\xaa\xaf\x5d\xdd\xd0\x3e\x2f\xf5\x55\x6a\x1b\x9e\xa6\x0d\x97\xc5\x0c\xe3\x7f\x3d\x50\x68\x71\xe6\xea\x5f\x55\x05\x80\xa9\xd7\x91\x33\xd5\x04\x1f\x34\x82\x7c\xbe\xaf\xff\x6e\xe3\xc9\x17\xba\x41\xe5\x20\xec\x25\x0e\x5b\x5a\x4c\x48\x74\xcb\xa0\x3a\x27\x56\xc5\x01\x98\xdb\xde\xc9\x18\x10\xb1\x0a\xc4\x73\xed\xef\x08\xb7\xb3\x89\x52\x55\xc3\x40\xdb\x89\x3b\xba\x26\x5d\xb7\x72\x5d\x07\x9e\x21\x31\xf7\xbb\xd9\x26\xb9\x5d\x67\xee\x2d\x34\xdd\xc1\x8a\x2e\xba\x72\xef\x9b\xd6\xee\xca\x84\xbb\x09\x61\x84\xd9\xfc\x1c\x7d\x1f\x0d\x18\xa0\xed\x2b\x23\xd9\x34\xe2\xb8\x4f\xbc\xf4\xf2\x9c\x60\xb3\xa1\xb9\xfe\x0b\x6f\xc8\x3b\xac\xb6\xe8\x02\xbd\x90\xe6\x9f\x2f\x32\x5e\x34\xd6\x3b\x94\x62\xd5\x9d\xcd\x7e\xab\x7d\xef\x9f\xdc\x3f\xf9\xff\x01\x00\x00\xff\xff\xdc\xb1\x0c\xfb\x5d\xaf\x00\x00" func nftstorefrontv2CdcBytes() ([]byte, error) { return bindataRead( @@ -113,7 +113,7 @@ func nftstorefrontv2Cdc() (*asset, error) { } info := bindataFileInfo{name: "NFTStorefrontV2.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0x82, 0xa6, 0x74, 0x9c, 0xb3, 0x9b, 0x9f, 0xd5, 0xd3, 0xd1, 0x33, 0x70, 0x13, 0xb0, 0xdc, 0x71, 0x50, 0xab, 0xd3, 0x93, 0x41, 0x69, 0xb5, 0x5d, 0xc3, 0xe6, 0x1a, 0x64, 0x17, 0x69, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9, 0x81, 0xf8, 0xbb, 0x70, 0x8b, 0xbe, 0x93, 0x4b, 0xb9, 0x8f, 0x9e, 0x3, 0xf3, 0x12, 0xeb, 0xd1, 0xd3, 0x95, 0x21, 0x7d, 0x22, 0xa5, 0x27, 0xa3, 0x4f, 0x38, 0x9f, 0x75, 0x8a, 0x67, 0x79}} return a, nil } @@ -217,7 +217,7 @@ func utilityTestMaliciousstorefrontv1Cdc() (*asset, error) { return a, nil } -var _utilityTestMaliciousstorefrontv2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x59\x5f\x6f\xdb\x38\x12\x7f\xf7\xa7\x98\xfa\xa1\xb0\x01\xc7\x06\x0e\x87\x7b\x30\xe2\xb4\xdd\x64\x73\x08\xee\x36\x08\xba\xde\xde\x43\x51\x2c\x18\x6a\x64\x11\xa1\x48\x81\xa4\xec\x1a\x81\xbf\xfb\x81\x14\x25\x51\x7f\xe3\x6c\xef\x9a\x3c\x24\x12\xc9\xf9\x3f\x9c\xf9\x8d\xc2\xd2\x4c\x2a\x03\xd3\xfb\xdb\xed\xef\x46\x2a\x8c\x95\x14\xe6\xcb\xdf\xa6\x93\x6a\x43\x8a\xdb\x5c\xec\xd8\x23\xc7\xad\x7c\x42\x51\xef\x9c\xb3\xfc\x1b\x1a\x12\x11\x43\xbe\x30\x3c\xe8\xe9\x64\xb2\x5a\xad\x60\x9b\x10\xf1\xa4\xc1\x48\xf8\x94\x6b\xc3\x04\xfc\x8b\x33\x81\x70\x01\x89\x31\x99\x5e\xaf\x56\xe6\xc0\x8c\x41\xb5\xa4\x32\x5d\x11\x77\xe4\xcf\x98\xcb\x83\x39\x3a\xf2\x58\x2a\x88\x98\xa6\x72\x8f\x8a\x89\x1d\x10\x11\x81\x42\x2b\xdb\xbe\x99\x04\x61\x9f\x73\x81\x8a\x3c\x32\xce\xcc\x11\x4c\x42\x0c\x98\x84\x69\xa0\x52\x18\x45\xa8\x01\x83\xda\x68\xcb\xcc\xeb\xc3\x34\x30\x0d\xc4\xad\x07\xa7\x2c\x21\x4b\x33\x8e\x29\x0a\x63\xf7\x53\xc2\x19\x65\x32\xd7\xa0\x2b\x5f\x39\x16\x46\x82\x51\x47\x20\x02\x34\x72\x6e\xff\xde\xdf\x6e\xe1\xc0\x4c\x02\x04\x22\x16\xc7\xa8\x50\x18\xb8\xbb\x01\x26\x9c\x8a\x19\x27\x14\x1d\xa9\x8c\x1b\x47\x38\xb3\xf6\xee\x02\xe5\x50\x61\xa0\x1d\x73\xac\xc3\x50\xfd\x69\xd7\x97\x34\xa2\xde\x52\x6b\x9b\xb7\x97\x68\x9c\x4c\x08\xa5\xa8\xf5\x8c\x70\x3e\xaf\x6d\xfb\xad\xb4\x24\xe4\x04\xcf\x13\x00\x80\x90\x80\xa3\x81\xfa\x88\x7d\x22\x3b\x7c\x20\x26\x59\x43\xf0\xf2\x02\xd9\x43\xfe\xc8\x19\x2d\xa8\xea\xe7\x49\x87\x4a\xa1\x96\xb9\xa2\x18\x90\xae\xdb\xd6\x2e\xdb\x6c\xbd\xd2\x01\x2f\x8d\x3c\x2e\x54\xa8\xa3\x74\x4d\xb2\x35\x5c\x93\xcc\x27\xc5\x25\xc9\x4d\x32\x6b\xb3\xbe\x56\x48\x0c\xfe\xbb\x88\xc0\xa2\x23\xf9\x33\xa6\x72\x5f\x6e\xcf\xe1\xfd\xb0\x66\x57\xc3\x2a\xf9\xf8\xea\x35\x7c\x7c\xfe\xe3\x4e\x98\x7f\xfc\x7d\x0d\x9e\xe5\x69\x32\x69\xd3\x39\xb7\xec\x19\x1e\x20\xce\x05\xec\xd0\xf8\xa3\x77\x37\x7a\x36\x5f\xc3\xd7\x82\xc3\xb7\xc0\x07\xf6\x47\xa1\xc9\x95\x4b\xc5\x78\xd9\x70\xc1\xf2\x51\x2a\x25\x0f\xb3\xf9\xbb\x65\x8b\x57\x45\x7f\xea\xd7\xc1\x8b\xbf\xc9\x33\xce\x68\xed\x24\x4b\x2b\x62\xb3\x3d\x66\xb8\x06\xfb\x7b\x01\x22\x36\x77\x37\x6b\x28\x34\x5b\x94\xf6\xd6\x4b\x3f\xac\xf6\xa8\x0e\xfe\xa1\x52\xc3\xfd\x69\x68\x51\x3d\xbe\x68\x73\xe5\xf7\x42\xbc\x17\x37\xf3\x0c\x3e\xfb\x64\x6d\x58\xf6\xfe\xb9\x9d\x14\x9e\xaa\xc8\xd5\xd3\x87\x7e\x93\xdf\x3b\x9b\xcb\xd4\xf8\xda\x91\xf0\xed\x9c\xf0\x50\x8e\x44\xe4\xd9\xaf\xdf\x33\xa6\x30\xf2\x72\xf5\x2c\x56\x32\xbd\x13\x11\x7e\xaf\x63\x62\x64\x63\x61\xfe\x17\xe2\xf0\xb2\xb0\xea\x31\x90\xe7\x1f\xc6\x3c\x5f\x56\xa8\x86\x4d\x23\x3e\xef\xd5\xfd\xec\xc8\xee\xd0\xfc\xfa\xbd\xe0\x7d\x66\x46\xff\x70\xfa\x8e\xc9\xeb\xcd\xde\xb3\xee\xa6\x77\xd4\x43\xae\x68\x42\x74\x10\x91\x57\x7a\xee\xac\xa8\x9f\x25\xa5\xb3\xf4\x1a\x3b\xfe\x99\x48\x6d\xfe\xaf\x36\xbc\x28\xe1\x55\xfa\x8f\x76\x12\x6f\x59\xb8\x34\x6b\xa8\x2d\x62\xf3\xa0\xe4\x9e\x45\xa8\xea\x16\xd5\xd3\xae\x5a\x48\x6c\xf9\x1f\x66\x92\x48\x91\xc3\xdc\xd6\x9d\xf6\xe6\xb5\xe4\x1c\xa9\x61\x52\x9c\xae\x16\x6d\x71\x41\x7a\xb7\xb7\x82\xe2\xdd\xd8\xaa\xb0\xcf\x7d\x6c\xee\xa2\xfe\x33\x9a\x70\x7c\x20\x47\x0b\x97\xbe\x90\x9c\x0f\x8a\xb1\xe7\xae\x73\xa3\xd7\xf0\xb5\xd3\x44\x8b\xad\x6f\x6d\xe1\xea\x09\x8d\x03\x4d\x3a\x74\xd1\xd7\xc0\x47\xef\x9f\x9b\x0e\xf8\x8c\x14\xd9\x1e\xd5\xe9\xea\xdb\x87\x26\x37\x9a\x6b\x23\x53\x6b\xe8\xef\xc6\x42\xc8\xf6\xb6\x4c\x53\xa6\x35\x93\xe2\x53\x2a\x73\x8b\x41\xfe\xb8\x65\xdf\xdb\xb6\xa2\x2d\x7d\xc7\xd2\x0f\xd5\xd6\xbc\x5c\x69\xa5\x66\x13\x8e\xc0\x66\x34\x49\x3b\x94\x65\xd3\x8a\x2c\x61\x45\xb3\x1c\xc9\xa9\x91\xbc\xea\x5d\x5e\xf4\x51\x37\xab\x52\xdf\x89\xba\xc7\x76\x76\xfb\x93\xa1\x6f\xb5\x9f\xb6\x48\x90\xf2\xa9\x7b\x66\x28\x27\xfa\xd7\xbb\xf4\x75\x16\x94\x4f\x3d\x67\x3a\xa9\xd0\x5e\xe9\xd2\x94\x89\x51\xfc\x6d\x6c\xcf\x27\x9d\xc8\x56\xd7\xca\x87\x18\x2e\x2f\x7c\xa9\x80\xc1\xb8\xb6\x60\x6d\x37\x93\xba\x4a\x0d\x17\xb8\xbb\xa8\x3f\xb0\xd1\xba\x75\xe5\xbb\xc7\x32\x9f\x45\x03\x29\x35\x66\x7a\x84\xda\x28\x79\x84\x06\xf0\x59\x32\xa1\x51\x99\xd9\x13\x1e\x43\xf5\xe0\xf2\xa2\xed\xa5\x16\x37\x5f\xf7\x2b\x92\xbe\x4a\xcd\x04\x33\xb3\x37\x1b\x08\xda\x9d\xaa\x1b\xb3\xc6\xcd\xbe\x26\x59\xf7\x78\xe9\x26\x9b\x22\xcf\xa7\xc0\xc6\xc0\xd2\xde\x71\xca\x6b\xd8\x9d\xa5\x1a\xe0\xf4\xaf\x0d\x52\xa3\x53\x50\xc5\xd0\x8e\xc8\x6e\xca\x8e\x20\xcd\x69\x02\x29\x31\x34\x71\x83\x30\x8b\xec\x04\x6c\x9f\xca\x0b\xf0\x88\xf6\x37\x4b\x33\x54\x5a\x0a\x62\x30\x7a\x71\x9a\xea\x22\x83\x1e\xd1\xba\x25\x4f\xc4\x06\x0e\x08\x44\xa1\xcf\x1f\x27\x56\x68\x83\xa4\x3a\x23\x05\x16\x53\x35\x81\x5c\xa3\xb2\x9c\xc4\x93\xe3\x55\x68\x99\x95\x48\x68\x39\xac\xa3\x08\xfb\xe5\x08\xde\xb5\x67\xeb\x1b\xf5\x63\xcd\xbf\xbc\x8c\x0b\x18\xc1\x05\x7e\x26\xb9\x1a\x46\x63\x45\x43\xba\xbf\xdd\xce\x8a\xd9\xa6\xcd\xeb\xfe\x76\x3b\x34\xd2\x8c\x62\xb0\x17\x07\xaa\x30\xdf\x03\x04\x56\x52\x3a\x8d\x5e\x03\xf2\x6f\xd0\x10\xc6\xdd\xcc\x3c\x70\x07\xfc\x89\x9f\x6a\x4c\xa8\xd8\x6b\xac\xf9\xc4\xb9\x3c\x60\x74\x5d\xb5\xa2\x12\xea\x14\x1f\x05\xce\xc4\x44\x3f\xdb\xd4\x31\xad\xcf\xb6\x3e\x21\xda\x8b\xff\x05\xa9\x4c\xd1\xc1\x78\x8c\xac\xdd\xbf\x48\xc9\x7f\xaa\x4d\x83\xba\xf4\x59\xb3\x5a\x55\xc5\x02\x0e\x8c\xf3\x52\x37\x5b\x65\xa6\x07\x25\xc5\x6e\x6a\x2b\xc5\xe0\x55\x2c\x89\x9b\x68\x20\x2b\x90\xd4\x1a\x3e\xb6\x02\xed\xb0\xd5\x69\x01\x03\xc0\xf6\x33\x52\x96\x31\x47\x79\x56\xb6\x04\x08\x79\x6e\x85\xf5\x56\x82\x1e\xc4\x1b\xf9\x5b\xe5\xe1\x6e\x6f\xc2\x3b\x6b\xb5\x6b\xfc\xde\x9c\xe5\x23\xe1\x44\x50\x84\xcd\xa6\xe4\xb0\x74\xb8\x51\x31\x8a\x0b\x48\x51\x6b\xb2\xc3\x35\x4c\x99\xa0\x52\x29\xa4\xa6\x74\x04\x10\x07\xca\xa6\xa3\xdc\x77\xe8\x50\xe7\x6c\xde\xe1\xdf\xc6\xa5\xa3\xa2\x8c\x35\x1c\xcc\x31\xc3\x69\x0f\xae\x8b\x0b\x36\x37\xc4\x10\xd8\x94\x34\x4b\xdb\x92\xf9\x1e\xbf\x30\x3c\xcc\xac\x84\xcb\xe1\x8f\xe5\xcb\xdb\x6d\xc5\xe1\x6a\x36\x9f\xbf\x03\xa2\xdf\xc1\x79\xe7\x1b\xda\xb0\xd8\x29\xb4\xb7\x9b\xb0\xe9\xff\xf2\xbb\x24\x94\x5a\xc7\xb9\x5b\x42\x76\xe8\x6f\x45\x27\x23\x8a\xb4\xba\x72\xdf\x79\xd6\xa1\x8d\x25\xe1\x03\x31\x49\x1b\xeb\xd8\x1f\x27\x7d\x19\x61\x26\x35\x33\x9e\xfc\xf2\xa2\xf4\x4b\x33\x5c\x27\x40\xae\xb1\x87\xc9\x79\xaa\x6b\xb2\xc7\xd9\xe5\x85\x67\xbd\x00\x23\x87\x35\x6d\xca\xed\x46\xd1\x62\x84\xcb\x8b\x22\x79\xcb\xde\x1c\xd4\x8e\x83\xef\xc1\xb3\xf2\xa1\xaa\x17\xae\xe9\xcf\xfb\x8a\xd1\xe5\x45\xe3\x9e\xb7\x11\x6a\x13\xf6\xbd\x15\x5c\x6d\x62\xfd\x41\x94\xd5\xfd\x78\x30\xf0\x61\xe0\x6d\x70\x4d\x29\xbd\x9d\x90\x99\xea\xcb\xae\x2a\xbe\x34\x41\xfa\x64\x3b\xca\x94\x89\x3d\xe1\x2c\xaa\xb6\x80\x56\xda\x4f\xc7\xa7\xb2\x1e\x26\xc1\xf4\x4f\x49\x36\x7d\x29\xf5\x4a\x38\xdc\x1a\x0b\x5e\xd3\xb9\xba\x4d\x0b\x3e\x7c\x80\x8c\x08\x46\x67\xd3\x98\x30\x8e\x11\x18\xe9\x51\x9e\x05\x16\x0d\xd4\x5d\x92\xb7\x8a\x69\xb3\xac\xfb\x33\xcd\xca\xfe\xbf\x9a\x74\x6a\xc5\x6b\x49\xf5\x5a\x97\xcc\x25\x20\x6c\x8a\x44\xec\x6e\x57\x51\xdc\x54\x01\x9d\xf4\xf6\x89\xee\x45\xaf\x61\x67\x70\xbb\xe1\xdd\x06\x04\xe3\x61\x97\xa0\x32\xe7\x11\x08\x69\x4a\xa7\xba\x6f\x23\xfd\xed\xa8\xec\x3c\xee\x88\xe5\x55\xb3\x0e\x59\xa6\xb9\x36\x8e\x63\x00\x18\x34\x49\xdd\x24\x43\x8a\x99\x46\x2a\xb6\x63\x82\xf0\x9e\x88\x0d\x0e\x87\xf5\x27\xc9\xfa\xda\xbf\xe1\x78\xbc\x86\x8f\xf5\x6b\x70\x39\xeb\xa2\xe9\x3f\x8a\x0c\x6b\xdb\x78\x9d\x87\x76\xbb\xc2\x1a\x16\x01\xe7\xe9\xde\x7f\x6b\xc2\x06\x56\xbe\x41\xac\x5a\xfa\x56\xdd\x67\x88\x4d\xfd\xaf\x4d\xcb\x25\x73\x6f\x6d\x26\x5e\xad\xd3\x7f\x03\x00\x00\xff\xff\x85\xa3\x86\x87\x77\x1f\x00\x00" +var _utilityTestMaliciousstorefrontv2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x59\x5f\x6f\xdb\x38\x12\x7f\xf7\xa7\x98\xfa\xa1\xb0\x01\xc7\x06\x0e\x87\x7b\x30\xe2\xb4\xdd\x64\x73\x08\xee\x36\x08\xba\xde\xde\x43\x51\x2c\x18\x6a\x64\x11\xa1\x48\x81\xa4\xec\x1a\x81\xbf\xfb\x81\x14\x25\x51\x7f\xe3\x6c\xef\x9a\x3c\x24\x12\xc9\xf9\x3f\x9c\xf9\x8d\xc2\xd2\x4c\x2a\x03\xd3\xfb\xdb\xed\xef\x46\x2a\x8c\x95\x14\xe6\xcb\xdf\xa6\x93\x6a\x43\x8a\xdb\x5c\xec\xd8\x23\xc7\xad\x7c\x42\x51\xef\x9c\xb3\xfc\x1b\x1a\x12\x11\x43\xbe\x30\x3c\xe8\xe9\x64\xb2\x5a\xad\x60\x9b\x10\xf1\xa4\xc1\x48\xf8\x94\x6b\xc3\x04\xfc\x8b\x33\x81\x70\x01\x89\x31\x99\x5e\xaf\x56\xe6\xc0\x8c\x41\xb5\xa4\x32\x5d\x11\x77\xe4\xcf\x98\xcb\x83\x39\x3a\xf2\x58\x2a\x88\x98\xa6\x72\x8f\x8a\x89\x1d\x10\x11\x81\x42\x2b\xdb\xbe\x99\x04\x61\x9f\x73\x81\x8a\x3c\x32\xce\xcc\x11\x4c\x42\x0c\x98\x84\x69\xa0\x52\x18\x45\xa8\x01\x83\xda\x68\xcb\xcc\xeb\xc3\x34\x30\x0d\xc4\xad\x07\xa7\x2c\x21\x4b\x33\x8e\x29\x0a\x63\xf7\x53\xc2\x19\x65\x32\xd7\xa0\x2b\x5f\x39\x16\x46\x82\x51\x47\x20\x02\x34\x72\x6e\xff\xde\xdf\x6e\xe1\xc0\x4c\x02\x04\x22\x16\xc7\xa8\x50\x18\xb8\xbb\x01\x26\x9c\x8a\x19\x27\x14\x1d\xa9\x8c\x1b\x47\x38\xb3\xf6\xee\x02\xe5\x50\x61\xa0\x1d\x73\xac\xc3\x50\xfd\x69\xd7\x97\x34\xa2\xde\x52\x6b\x9b\xb7\x97\x68\x9c\x4c\x08\xa5\xa8\xf5\x8c\x70\x3e\xaf\x6d\xfb\xad\xb4\x24\xe4\x04\xcf\x13\x00\x80\x90\x80\xa3\x81\xfa\x88\x7d\x22\x3b\x7c\x20\x26\x59\x43\xf0\xf2\x02\xd9\x43\xfe\xc8\x19\x2d\xa8\xea\xe7\x49\x87\x4a\xa1\x96\xb9\xa2\x18\x90\xae\xdb\xd6\x2e\xdb\x6c\xbd\xd2\x01\x2f\x8d\x3c\x2e\x54\xa8\xa3\x74\x4d\xb2\x35\x5c\x93\xcc\x27\xc5\x25\xc9\x4d\x32\x6b\xb3\xbe\x56\x48\x0c\xfe\xbb\x88\xc0\xa2\x23\xf9\x33\xa6\x72\x5f\x6e\xcf\xe1\xfd\xb0\x66\x57\xc3\x2a\xf9\xf8\xea\x35\x7c\x7c\xfe\xe3\x4e\x98\x7f\xfc\x7d\x0d\x9e\xe5\x69\x32\x69\xd3\x39\xb7\xec\x19\x1e\x20\xce\x05\xec\xd0\xf8\xa3\x77\x37\x7a\x36\x5f\xc3\xd7\x82\xc3\xb7\xc0\x07\xf6\x47\xa1\xc9\x95\x4b\xc5\x78\xd9\x70\xc1\xf2\x51\x2a\x25\x0f\xb3\xf9\xbb\x65\x8b\x57\x45\x7f\xea\xd7\xc1\x8b\xbf\xc9\x33\xce\x68\xed\x24\x4b\x2b\x62\xb3\x3d\x66\xb8\x06\xfb\x7b\x01\x22\x36\x77\x37\x6b\x28\x34\x5b\x94\xf6\xd6\x4b\x3f\xac\xf6\xa8\x0e\xfe\xa1\x52\xc3\xfd\x69\x68\x51\x3d\xbe\x68\x73\xe5\xf7\x42\xbc\x17\x37\xf3\x0c\x3e\xfb\x64\x6d\x58\xf6\xfe\xb9\x9d\x14\x9e\xaa\xc8\xd5\xd3\x87\x7e\x93\xdf\x3b\x9b\xcb\xd4\xf8\xda\x91\xf0\xed\x9c\xf0\x50\x8e\x44\xe4\xd9\xaf\xdf\x33\xa6\x30\xf2\x72\xf5\x2c\x56\x32\xbd\x13\x11\x7e\xaf\x63\x62\x64\x63\x61\xfe\x17\xe2\xf0\xb2\xb0\xea\x31\x90\xe7\x1f\xc6\x3c\x5f\x56\xa8\x86\x4d\x23\x3e\xef\xd5\xfd\xec\xc8\xee\xd0\xfc\xfa\xbd\xe0\x7d\x66\x46\xff\x70\xfa\x8e\xc9\xeb\xcd\xde\xb3\xee\xa6\x77\xd4\x43\xae\x68\x42\x74\x10\x91\x57\x7a\xee\xac\xa8\x9f\x25\xa5\xb3\xf4\x1a\x3b\xfe\x99\x48\x6d\xfe\xaf\x36\xbc\x28\xe1\x55\xfa\x8f\x76\x12\x6f\x59\xb8\x34\x6b\xa8\x2d\x62\xf3\xa0\xe4\x9e\x45\xa8\xea\x16\xd5\xd3\xae\x5a\x48\x6c\xf9\x1f\x66\x92\x48\x91\xc3\xdc\xd6\x9d\xf6\xe6\xb5\xe4\x1c\xa9\x61\x52\x9c\xae\x16\x6d\x71\x41\x7a\xb7\xb7\x82\xe2\xdd\xd8\xaa\xb0\xcf\x7d\x6c\xee\xa2\xfe\x33\x9a\x70\x7c\x20\x47\x0b\x97\xbe\x90\x9c\x0f\x8a\xb1\xe7\xae\x73\xa3\xd7\xf0\xb5\xd3\x44\x8b\xad\x6f\x6d\xe1\xea\x09\x8d\x03\x4d\x3a\x74\xd1\xd7\xc0\x47\xef\x9f\x9b\x0e\xf8\x8c\x14\xd9\x1e\xd5\xe9\xea\xdb\x87\x26\x37\x9a\x6b\x23\x53\x6b\xe8\xef\xc6\x42\xc8\xf6\xb6\x4c\x53\xa6\x35\x93\xe2\x53\x2a\x73\x8b\x41\xfe\xb8\x65\xdf\xdb\xb6\xa2\x2d\x7d\xc7\xd2\x0f\xd5\xd6\xbc\x5c\x69\xa5\x66\x13\x8e\xc0\x66\x34\x49\x3b\x94\x65\xd3\x8a\x2c\x61\x45\xb3\x1c\xc9\xa9\x91\xbc\xea\x5d\x5e\xf4\x51\x37\xab\x52\xdf\x89\xba\xc7\x76\x76\xfb\x93\xa1\x6f\xb5\x9f\xb6\x48\x90\xf2\xa9\x7b\x66\x28\x27\xfa\xd7\xbb\xf4\x75\x16\x94\x4f\x3d\x67\x3a\xa9\xd0\x5e\xe9\xd2\x94\x89\x51\xfc\x6d\x6c\xcf\x27\x9d\xc8\x56\xd7\xca\x87\x18\x2e\x2f\x7c\xa9\x80\xc1\xb8\xb6\x60\x6d\x37\x93\xba\x4a\x0d\x17\xb8\xbb\xa8\x3f\xb0\xd1\xba\x75\xe5\xbb\xc7\x32\x9f\x45\x03\x29\x35\x66\x7a\x84\xda\x28\x79\x84\x06\xf0\x59\x32\xa1\x51\x99\xd9\x13\x1e\x43\xf5\xe0\xf2\xa2\xed\xa5\x16\x37\x5f\xf7\x2b\x92\xbe\x4a\xcd\x04\x33\xb3\x37\x1b\x08\xda\x9d\xaa\x1b\xb3\xc6\xcd\xbe\x26\x59\xf7\x78\xe9\x26\x9b\x22\xcf\xa7\xc0\xc6\xc0\xd2\xde\x71\xca\x6b\xd8\x9d\xa5\x1a\xe0\xf4\xaf\x0d\x52\xa3\x53\x50\xc5\xd0\x8e\xc8\x6e\xca\x8e\x20\xcd\x69\x02\x29\x31\x34\x71\x83\x30\x8b\xec\x04\x6c\x9f\xca\x0b\xf0\x88\xf6\x37\x4b\x33\x54\x5a\x0a\x62\x30\x7a\x71\x9a\xea\x22\x83\x1e\xd1\xba\x25\x4f\xc4\x06\x0e\x08\x44\xa1\xcf\x1f\x27\x56\x68\x83\xa4\x3a\x23\x05\x16\x53\x35\x81\x5c\xa3\xb2\x9c\xc4\x93\xe3\x55\x68\x99\x95\x48\x68\x39\xac\xa3\x08\xfb\xe5\x08\xde\xb5\x67\xeb\x1b\xf5\x63\xcd\xbf\xbc\x8c\x0b\x18\xc1\x05\x7e\x26\xb9\x1a\x46\x63\x45\x43\xba\xbf\xdd\xce\x8a\xd9\xa6\xcd\xeb\xfe\x76\x3b\x34\xd2\x8c\x62\xb0\x17\x07\xaa\x30\xdf\x03\x04\x56\x52\x3a\x8d\x5e\x03\xf2\x6f\xd0\x10\xc6\xdd\xcc\x3c\x70\x07\xfc\x89\x9f\x6a\x4c\xa8\xd8\x6b\xac\xf9\xc4\xb9\x3c\x60\x74\x5d\xb5\xa2\x12\xea\x14\x1f\x05\xce\xc4\x44\x3f\xdb\xd4\x31\xad\xcf\xb6\x3e\x21\xda\x8b\xff\x05\xa9\x4c\xd1\xc1\x78\x8c\xac\xdd\xbf\x48\xc9\x7f\xaa\x4d\x83\xba\x9c\x6d\x0d\xd3\xe1\x18\xf2\x26\x46\xb4\x55\xe8\xd3\x7d\xb5\xaa\x0a\x1d\x1c\x18\xe7\xa5\x4a\xb6\x42\x4e\x0f\x4a\x8a\xdd\xd4\x56\xb9\xc1\x32\x52\x12\x37\x91\x4c\x56\xa0\xc0\x35\x7c\x6c\x25\xa9\xc3\x85\xa7\x05\x0c\x80\xf2\xcf\x48\x59\xc6\x1c\xe5\x59\x99\x1e\xa0\xfb\xb9\x15\xd6\x5b\xc5\x7a\xd0\x7a\xe4\x2b\x82\x87\xea\xbd\x97\xd5\x59\xab\x1d\x68\xf1\xe6\x2c\x1f\x09\x27\x82\x22\x6c\x36\x25\x87\xa5\xc3\xbc\x8a\x51\x5c\x40\x8a\x5a\x93\x1d\xae\x61\xca\x04\x95\x4a\x21\x35\xa5\x23\x80\x38\x40\x39\x1d\xe5\xbe\x43\x87\x98\x67\xf3\x0e\xff\x36\xa6\x1e\x15\x65\xac\xe1\x60\x8e\x19\x4e\x7b\x30\x69\x5c\xb0\xb9\x21\x86\xc0\xa6\xa4\x59\x5a\x38\xc1\xf7\xf8\x85\xe1\x61\x66\x25\x5c\x0e\x7f\xe8\x5f\xde\x6e\x2b\x0e\x57\xb3\xf9\xfc\x1d\x10\xfd\x0e\xce\x3b\xdf\xd0\x86\xc5\x4e\xa1\xbd\xdd\x84\x4d\xff\x57\xeb\x25\xa1\xd4\x3a\xce\x5d\x0e\xb2\x43\x7f\x19\x3a\x19\x51\xa4\xd5\x95\xfb\x46\xb5\x0e\x6d\x2c\x09\x1f\x88\x49\xda\x38\xcd\xfe\x38\xe9\xcb\x08\x33\xa9\x99\xf1\xe4\x97\x17\xa5\x5f\x9a\xe1\x3a\x01\x72\x8d\x3d\x4c\xce\x53\x5d\x93\x3d\xce\x2e\x2f\x3c\xeb\x05\x18\x39\xac\x69\x53\x6e\x37\x8a\x16\xdf\x5c\x5e\x14\xc9\x5b\xe2\x8a\xa0\x64\x1c\x3c\x7e\x98\x95\x0f\x55\x99\x70\x80\x65\xde\x57\x83\x2e\x2f\x1a\xf7\xbc\x8d\xae\x9b\x90\xf5\xad\xa0\x76\x73\x4e\x19\x44\x88\xdd\x0f\x1f\x03\x1f\x35\xde\x06\x93\x95\xd2\xdb\x09\x99\xa9\xbe\xec\xaa\xe2\x4b\x13\xa4\x4f\xb6\x91\x4c\x99\xd8\x13\xce\xa2\x6a\x0b\x68\xa5\xfd\x74\x7c\xa2\xec\x61\x12\x7c\xb9\xa0\x24\x9b\xbe\x94\x7a\x25\x94\x6f\x8d\x34\xaf\x69\x58\xdd\x5e\x05\x1f\x3e\x40\x46\x04\xa3\xb3\x69\x4c\x18\xc7\x08\x8c\xf4\x08\xd5\x82\xa2\xc6\xc4\x50\x92\xb7\x8a\x69\xb3\xac\xfb\x33\xcd\xca\xfe\xbf\x9a\xd2\x6a\xc5\x6b\x49\xf5\x5a\x97\xcc\x25\x20\x6c\x8a\x44\xec\x6e\x57\x51\xdc\x54\x01\x9d\xf4\xf6\x89\xee\x45\xaf\x21\x73\x70\xbb\xe1\xdd\x06\x04\xe3\x61\x97\xa0\x32\xe7\x11\x08\x69\x4a\xa7\xba\xef\x3a\xfd\xed\xa8\xec\x3c\xee\x88\xe5\x55\xb3\x0e\x59\xa6\xb9\x36\x8e\x63\x00\x18\x34\x49\xdd\x14\x46\x8a\x79\x4c\x2a\xb6\x63\x82\xf0\x9e\x88\x0d\x0e\xb6\xf5\xe7\xd4\xfa\xda\xbf\xe1\x68\xbf\x86\x8f\xf5\x6b\x70\x39\xeb\xa2\xe9\x3f\xe8\x0c\x6b\xdb\x78\x9d\x87\x76\xbb\xc2\x1a\x16\x01\xe7\xe9\xde\x7f\xc9\xc2\x06\x56\xbe\x41\xac\x5a\xfa\x56\xdd\x67\x88\x4d\xfd\x6f\x59\xcb\x25\x73\x6f\x6d\x26\x5e\xad\xd3\x7f\x03\x00\x00\xff\xff\x5c\x3e\x0f\x91\x33\x20\x00\x00" func utilityTestMaliciousstorefrontv2CdcBytes() ([]byte, error) { return bindataRead( @@ -233,7 +233,7 @@ func utilityTestMaliciousstorefrontv2Cdc() (*asset, error) { } info := bindataFileInfo{name: "utility/test/MaliciousStorefrontV2.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0x79, 0x6, 0x14, 0x59, 0x50, 0x54, 0xd4, 0x82, 0x3d, 0xec, 0x26, 0x62, 0xf3, 0x19, 0xeb, 0x56, 0xbb, 0xc3, 0x35, 0xda, 0xd2, 0x4d, 0xb9, 0xde, 0xb7, 0x14, 0xb0, 0xea, 0xec, 0x7a, 0xee}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x31, 0xeb, 0x52, 0xbe, 0x0, 0xba, 0xd3, 0xfd, 0x61, 0x83, 0xb5, 0x65, 0x93, 0xe2, 0x7b, 0x4b, 0xf6, 0xc8, 0xd2, 0xe3, 0x51, 0x35, 0x50, 0xe5, 0x9c, 0x81, 0xe1, 0x34, 0x55, 0xcd, 0x8}} return a, nil } diff --git a/scripts/has_listing_become_ghosted.cdc b/scripts/has_listing_become_ghosted.cdc index a7bc829..8ce5477 100644 --- a/scripts/has_listing_become_ghosted.cdc +++ b/scripts/has_listing_become_ghosted.cdc @@ -1,5 +1,10 @@ import "NFTStorefrontV2" +/// DEPRECATED: This script calls `hasListingBecomeGhosted()`, whose return value is semantically +/// inverted — it returns `true` when the NFT is still present (NOT a ghost listing) and `false` +/// when the NFT is absent (IS a ghost listing). Use `is_ghost_listing.cdc` instead, which +/// calls `isGhostListing()` and returns `true` when the listing is ghosted. +/// /// This script tells whether the provided `listingID` under the provided `storefront` address /// has a ghost listing. access(all) fun main(storefrontAddress: Address, listingID: UInt64): Bool { diff --git a/scripts/is_ghost_listing.cdc b/scripts/is_ghost_listing.cdc new file mode 100644 index 0000000..adac361 --- /dev/null +++ b/scripts/is_ghost_listing.cdc @@ -0,0 +1,21 @@ +import "NFTStorefrontV2" + +/// Returns `true` if the listing with the given `listingID` under the given `storefrontAddress` +/// is a ghost listing — i.e. the underlying NFT is no longer present in the seller's collection +/// and the listing cannot be purchased. Returns `false` if the NFT is still available. +/// +/// This script uses `isGhostListing()`, which has correct semantics. Prefer this over the +/// deprecated `has_listing_become_ghosted.cdc`, whose underlying function returns an inverted value. +/// +/// @param storefrontAddress Address of the account holding the storefront resource. +/// @param listingID Resource ID of the listing to check. +access(all) fun main(storefrontAddress: Address, listingID: UInt64): Bool { + let storefrontPublicRef = getAccount(storefrontAddress).capabilities.borrow<&{NFTStorefrontV2.StorefrontPublic}>( + NFTStorefrontV2.StorefrontPublicPath + ) ?? panic("Given account does not have a storefront resource") + + let listingRef = storefrontPublicRef.borrowListing(listingResourceID: listingID) + ?? panic("Provided listingID doesn't exist under the given storefront address") + + return listingRef.isGhostListing() +} diff --git a/scripts/read_all_unique_ghost_listings.cdc b/scripts/read_all_unique_ghost_listings.cdc index bf1b5ce..b522608 100644 --- a/scripts/read_all_unique_ghost_listings.cdc +++ b/scripts/read_all_unique_ghost_listings.cdc @@ -1,5 +1,10 @@ import "NFTStorefrontV2" +/// DEPRECATED: This script works correctly but relies on `hasListingBecomeGhosted()`, which has +/// inverted return semantics (returns `true` when NOT ghosted, `false` when ghosted). The script +/// compensates internally with `!`, but callers should migrate to `read_all_unique_ghost_listings_v2.cdc`, +/// which uses `isGhostListing()` and has clearer semantics. +/// /// This script provides the array of listing resource Id which got ghosted It automatically skips the duplicate listing /// as duplicate listings would get automatically delete once the primary one. /// diff --git a/scripts/read_all_unique_ghost_listings_v2.cdc b/scripts/read_all_unique_ghost_listings_v2.cdc new file mode 100644 index 0000000..ecebeb9 --- /dev/null +++ b/scripts/read_all_unique_ghost_listings_v2.cdc @@ -0,0 +1,42 @@ +import "NFTStorefrontV2" + +/// Returns the listing resource IDs of all unique ghost listings under the given storefront. +/// A ghost listing is one where the underlying NFT is no longer present in the seller's collection. +/// Duplicate listings (those sharing the same NFT type and ID as another listing) are excluded, +/// since they are cleaned up automatically when the primary listing is removed. +/// +/// This script uses `isGhostListing()`, which has correct semantics. Prefer this over the +/// deprecated `read_all_unique_ghost_listings.cdc`. +/// +/// @param storefrontAddress Address of the account holding the storefront resource. +access(all) fun main(storefrontAddress: Address): [UInt64] { + + var duplicateListings: [UInt64] = [] + var ghostListings: [UInt64] = [] + + let storefrontPublicRef = getAccount(storefrontAddress).capabilities.borrow<&{NFTStorefrontV2.StorefrontPublic}>( + NFTStorefrontV2.StorefrontPublicPath + ) ?? panic("Given account does not have a storefront resource") + + let availableListingIds = storefrontPublicRef.getListingIDs() + + for id in availableListingIds { + if !duplicateListings.contains(id) { + let listingRef = storefrontPublicRef.borrowListing(listingResourceID: id)! + if listingRef.isGhostListing() { + ghostListings.append(id) + let listingDetails = listingRef.getDetails() + let dupListings = storefrontPublicRef.getDuplicateListingIDs( + nftType: listingDetails.nftType, + nftID: listingDetails.nftID, + listingID: id + ) + if dupListings.length > 0 { + duplicateListings.appendAll(dupListings) + } + } + } + } + + return ghostListings +} diff --git a/tests/NFTStorefrontV2_test.cdc b/tests/NFTStorefrontV2_test.cdc index f4544ad..e1c63c4 100644 --- a/tests/NFTStorefrontV2_test.cdc +++ b/tests/NFTStorefrontV2_test.cdc @@ -338,6 +338,82 @@ fun testCleanupGhostListings() { Test.assertEqual((result.returnValue! as! [UInt64]).length, 0) } +access(all) +fun testIsGhostListing() { + // Mint a new NFT + mintNFTToSeller() + + // Get the newly minted NFT's ID + var code = loadCode("get_ids.cdc", "scripts/example-nft") + var result = Test.executeScript(code, [seller.address, /public/exampleNFTCollection]) + Test.expect(result, Test.beSucceeded()) + let nftID = (result.returnValue! as! [UInt64])[0] + + // Create a listing for the NFT + code = loadCode("sell_item.cdc", "transactions") + var tx = Test.Transaction( + code: code, + authorizers: [seller.address], + signers: [seller], + arguments: [ + nftID, + 10.0, + "Custom", + 0.1, + UInt64(2025908543), + [], + nftTypeIdentifier, + ftTypeIdentifier + ], + ) + var txResult = Test.executeTransaction(tx) + Test.expect(txResult, Test.beSucceeded()) + + let getListingIDCode = loadCode("read_storefront_ids.cdc", "scripts") + result = Test.executeScript(getListingIDCode, [seller.address]) + Test.expect(result, Test.beSucceeded()) + let listingID = (result.returnValue! as! [UInt64])[0] + + // Before burning: isGhostListing() should return false (NFT is still present) + var isGhost = scriptExecutor("is_ghost_listing.cdc", [seller.address, listingID]) + Test.assertEqual(isGhost!, false) + + // read_all_unique_ghost_listings_v2 should return an empty array + var allGhostListingIDs = scriptExecutor("read_all_unique_ghost_listings_v2.cdc", [seller.address]) + Test.assertEqual((allGhostListingIDs as! [UInt64]?)!.length, 0) + + // Burn the NFT to ghost the listing + let burnNFTCode = loadCode("burn_nft.cdc", "transactions/example-nft") + tx = Test.Transaction( + code: burnNFTCode, + authorizers: [seller.address], + signers: [seller], + arguments: [nftID] + ) + txResult = Test.executeTransaction(tx) + Test.expect(txResult, Test.beSucceeded()) + + // After burning: isGhostListing() should return true + isGhost = scriptExecutor("is_ghost_listing.cdc", [seller.address, listingID]) + Test.assertEqual(isGhost!, true) + + // read_all_unique_ghost_listings_v2 should now return the ghosted listing ID + allGhostListingIDs = scriptExecutor("read_all_unique_ghost_listings_v2.cdc", [seller.address]) + Test.assertEqual((allGhostListingIDs as! [UInt64]?)!.length, 1) + Test.assertEqual((allGhostListingIDs as! [UInt64]?)![0], listingID) + + // Clean up + let cleanupCode = loadCode("cleanup_ghost_listing.cdc", "transactions") + tx = Test.Transaction( + code: cleanupCode, + authorizers: [buyer.address], + signers: [buyer], + arguments: [listingID, seller.address] + ) + txResult = Test.executeTransaction(tx) + Test.expect(txResult, Test.beSucceeded()) +} + access(all) fun testSellItemWithMarketplaceCut() { From 31f4d6242c0b73c9fbac537cbe5039a49648005d Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 24 Mar 2026 15:15:22 -0500 Subject: [PATCH 2/4] fix testRemoveItem event count after adding testIsGhostListing testIsGhostListing emits one additional ListingCompleted event (on ghost listing cleanup), shifting the cumulative event count seen by testRemoveItem from 5 to 6. Co-Authored-By: Claude Sonnet 4.6 --- tests/NFTStorefrontV2_test.cdc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/NFTStorefrontV2_test.cdc b/tests/NFTStorefrontV2_test.cdc index e1c63c4..b5d4fac 100644 --- a/tests/NFTStorefrontV2_test.cdc +++ b/tests/NFTStorefrontV2_test.cdc @@ -588,9 +588,9 @@ fun testRemoveItem() { // Test that the proper events were emitted var typ = Type() var events = Test.eventsOfType(typ) - Test.assertEqual(5, events.length) + Test.assertEqual(6, events.length) - let completedEvent = events[4] as! NFTStorefrontV2.ListingCompleted + let completedEvent = events[5] as! NFTStorefrontV2.ListingCompleted Test.assertEqual(listingID, completedEvent.listingResourceID) Test.assertEqual(false, completedEvent.purchased) Test.assertEqual(Type<@ExampleNFT.NFT>(), completedEvent.nftType) From 3963ee1b43585b270a59e87f3ae6b2d840b03beb Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 24 Mar 2026 16:21:14 -0500 Subject: [PATCH 3/4] fix cleanupGhostListings leaking listedNFTs entry for ghost listing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit After removing the ghost listing from self.listings, the function fetched duplicate listing IDs and cleaned each one up — but never called removeDuplicateListing for the ghost listing itself. Every other removal path (removeListing, cleanupPurchasedListings, cleanup) correctly removes the primary listing from listedNFTs before processing duplicates. The fix calls removeDuplicateListing for the ghost listing immediately after removing it from self.listings, and before getDuplicateListingIDs is called. This ensures getDuplicateListingIDs sees the correct state and the listedNFTs entry is fully cleared. Also adds: - scripts/get_existing_listing_ids.cdc to expose getExistingListingIDs for tests - testCleanupGhostListingsRemovesListedNFTsEntry to regression-test the fix Co-Authored-By: Claude Sonnet 4.6 --- contracts/NFTStorefrontV2.cdc | 12 +++- lib/go/contracts/internal/assets/assets.go | 6 +- scripts/get_existing_listing_ids.cdc | 19 ++++++ tests/NFTStorefrontV2_test.cdc | 79 ++++++++++++++++++++++ 4 files changed, 112 insertions(+), 4 deletions(-) create mode 100644 scripts/get_existing_listing_ids.cdc diff --git a/contracts/NFTStorefrontV2.cdc b/contracts/NFTStorefrontV2.cdc index 4117f2b..ed2e173 100644 --- a/contracts/NFTStorefrontV2.cdc +++ b/contracts/NFTStorefrontV2.cdc @@ -896,9 +896,19 @@ access(all) contract NFTStorefrontV2 { message: "NFTStorefrontV2.Storefront.cleanupGhostListings: Cannot cleanup listing with id \(listingResourceID) because it is not a ghost listing!" ) let listing <- self.listings.remove(key: listingResourceID)! + // Remove the ghost listing's own entry from listedNFTs before fetching duplicates. + // Without this, getDuplicateListingIDs would still see the ghost listing in listedNFTs + // and exclude it from the returned slice, leaving a dangling entry after the loop. + // Every other removal path (removeListing, cleanupPurchasedListings, cleanup) already + // calls removeDuplicateListing for the primary listing before processing duplicates. + self.removeDuplicateListing( + nftIdentifier: details.nftType.identifier, + nftID: details.nftID, + listingResourceID: listingResourceID + ) 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. + // 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/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 54beb5a..60aafdf 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,7 +1,7 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: // ../../../contracts/NFTStorefront.cdc (23.729kB) -// ../../../contracts/NFTStorefrontV2.cdc (44.893kB) +// ../../../contracts/NFTStorefrontV2.cdc (45.586kB) // ../../../contracts/utility/ExampleNFT.cdc (16.682kB) // ../../../contracts/utility/ExampleToken.cdc (9.619kB) // ../../../contracts/utility/NFTCatalog.cdc (16.383kB) @@ -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\xdb\x72\x5b\xb9\x95\xe8\xbb\xbf\x02\xf2\x83\x9b\xcc\xd0\x74\xcf\xd4\xa9\xf3\xa0\xb1\xdc\xad\xc8\xf6\x8c\x6a\x26\x1d\x57\xb7\x3b\x79\x70\x5c\x25\x70\x6f\x90\x44\x69\x13\xd8\x01\xb0\x45\x73\x3c\xaa\x3a\x1f\x71\xbe\xf0\x7c\xc9\x29\x2c\xdc\x2f\x7b\x93\x92\xdd\x49\x27\x13\x3e\x74\xcb\x24\xae\x0b\xeb\xbe\x16\x16\xe8\xae\xe7\x42\xa1\xa7\x6f\x07\xb6\xa1\xab\x8e\xbc\xe7\xb7\x84\x3d\x7d\xe2\xbe\xfe\x81\xb3\x91\x5f\x7e\x3b\x08\x46\xc4\xd3\x27\x4f\x5e\xbc\x78\x81\x7e\x78\xfb\xfe\x27\xc5\x05\x59\x0b\xce\xd4\x1f\xfe\x45\x7f\x07\xdf\x5f\xa2\x0d\x61\x44\xe0\x0e\xf5\x83\xe8\xb9\x24\x48\xe2\x8e\x20\x39\xf4\x30\x48\xc3\x99\x12\xb8\x51\x68\xcd\x85\x1e\x43\x22\xb5\xc5\x0a\xd1\x5d\xdf\x91\x1d\x61\x0a\xa9\x2d\x41\x6f\x3b\xbe\x47\xf9\x3a\x90\x54\x98\xb5\x58\xb4\x4b\x98\x07\xfe\xf3\x06\x37\x5b\x84\x9b\x86\x0f\xd0\x13\x2b\xb4\xc7\x4c\x49\xa4\x38\xea\xa8\x54\x66\x02\x3d\x13\xac\x81\x32\xa9\x70\xd7\x49\x84\x51\x58\xfa\x02\x06\xc2\xac\x85\x1e\x12\x51\xd6\xd2\x3b\xda\x0e\xb8\x83\x4e\x12\xed\xa9\xda\x52\x66\x46\x0f\xdd\x10\x96\xe8\x3f\xa9\x54\x94\x6d\xa4\x59\xd0\xfb\x2d\x11\x04\x51\x89\x38\x23\x71\xc3\x9e\x08\xb7\xc4\x05\xa2\x0a\x6d\x31\x6b\xf5\xb8\x66\x74\xbe\x46\xb8\xeb\xf4\x42\x91\x3a\xf4\x44\xc2\x50\x7a\xc5\x30\x9f\xed\xb7\xf4\xd0\x85\x0d\xdb\x79\x51\x83\x19\xda\xe2\x3b\x02\x33\x72\x81\x76\x5c\x10\xf4\xb4\x19\x94\x7c\xaa\xc7\xd5\x90\x84\x7d\xf7\x82\x36\x04\x06\x84\x31\x36\x9c\x00\x84\xe2\x5e\xb8\x6d\x05\x91\x92\xc8\x25\xba\x1a\x94\x84\xa1\x57\x04\x0d\x92\xb4\xba\x69\x8f\x0f\x00\x1e\x3d\xeb\x9a\xd8\x55\x72\x81\xb8\xda\x12\xa1\xcf\x54\xd2\x96\x08\xac\x28\x67\x72\x89\xea\x2b\xa5\xac\xe9\x86\x96\x20\x8c\x1a\xbe\xdb\x51\x29\x29\x67\x08\xef\xc2\xd1\x51\x89\x7a\x4c\x61\xbe\xfd\x96\x93\x3b\x22\xd0\x1a\x37\xb4\xa3\x0a\x2b\x3b\xa5\xde\x52\x3f\x88\x66\x8b\x25\x59\x6a\x88\x23\x49\xba\x4e\x2f\x01\x33\x84\x3b\xc9\x51\xb3\xe5\x1a\xe7\xf4\x9a\x05\xbf\xa3\x7a\x3e\x86\x78\xaf\x57\x86\x3b\x83\x14\x7c\x8d\x76\x58\xdc\x12\xd5\x77\xb8\x21\x66\xb5\x82\x34\x84\xde\xc1\x40\x3d\x5e\xe9\x39\xa9\x86\xc5\xb5\x3e\x77\xaa\xc1\x21\xc9\x02\x66\x2f\xd7\xbe\x1b\xa4\xd2\xb0\x52\x02\x33\xb9\x26\x42\x00\xc8\x0c\x84\x34\x84\xcd\x41\xc4\xe3\x22\x40\x27\x02\xab\xc9\x8e\x56\xe3\xc1\x0e\x1f\xf4\x78\xfa\x57\xd2\xea\xb6\xf1\x41\x39\x9c\x33\xab\xb9\xc3\x1d\x6d\xa9\x3a\xe8\x59\x08\x6e\xb6\x30\x50\x0c\x74\x82\x25\xed\x60\xb8\x66\x4b\x9a\x5b\x12\x13\xcf\x3b\x0b\x48\x61\x8e\x7b\x8f\x55\xb3\x05\xd4\x73\x03\x90\x3b\xa2\x89\x49\xd3\x06\xf4\x86\x29\x1d\xa6\xea\xaf\x61\x98\xeb\xd7\x1a\xda\x92\x10\x44\x61\xab\x07\xb4\xa7\x72\xab\xbf\x5b\x0d\x07\xbf\x4f\xbd\x13\x45\x76\x66\xfa\xdf\x05\xf0\x9b\xe1\x0d\x1e\xe1\xcd\x46\x90\x0d\x56\xfc\xc8\x8a\x12\x8a\x85\x61\x81\x8e\x28\x53\x44\x10\x07\x52\xdc\x34\x44\xca\x19\xee\xba\x79\x60\x3a\x19\xd3\x42\x9f\x9f\x3c\x41\x08\xa1\xb8\x2d\x61\x8a\x2a\xcb\x8b\xae\x04\xc1\x8a\xd8\xc9\x27\x5b\xfe\x48\x76\xfc\xce\xb7\x84\xa6\x7a\x91\x61\xb2\x6b\x46\x15\xc5\x1d\xfd\x2f\xd2\xfa\x5f\x2f\x63\x36\x21\x88\xe4\x83\x68\x08\xda\x62\x89\x56\x84\x30\xd4\xc0\xec\xed\xd2\xb7\x7f\xa3\x77\x0f\xd4\x36\xec\xdc\xa9\x31\xbe\x47\xe4\x53\x4f\x1a\xe5\x8e\x6b\x2d\xf8\xce\x60\x6d\x18\x3d\x8c\xf1\x03\x57\xc4\x72\x4a\x82\x5a\x8e\x18\x57\x48\xf6\xa4\xa1\xeb\x83\xa6\x14\xcb\x07\xce\xf5\xaf\x0d\x66\xfa\x57\x0d\x68\xb9\xe5\x43\xd7\xea\xc6\x61\x24\x03\x9c\xd6\x2f\x5c\xba\xe1\x80\x25\x69\xaa\xdb\x33\x7d\xa8\x66\xc4\x05\x8c\x63\x51\x5b\xc3\x2a\x80\x01\xaf\x95\x26\x3c\x3d\x9c\x26\x2b\xaa\x0f\xfe\x20\xa3\x15\x00\xf2\x85\x89\x2d\x94\x2f\xef\x30\xed\xf0\xaa\x23\x6e\xe3\x19\xcf\x6a\x89\x22\x62\x47\x19\x01\x1c\xb4\xcb\xf0\x83\x58\xb2\x34\x6b\xb4\xff\x88\x4e\x63\xb6\x5c\x2e\xa9\x92\xa8\xe3\x0d\xac\x6a\x8e\xb0\x11\x4d\x8a\xee\x34\x4d\xfb\x71\x1c\x7e\x6b\xec\x5c\x0d\x0a\x71\xd6\x1d\x4c\x5b\xac\x50\x2f\x48\x43\xa5\xde\x2f\x20\x89\x93\x22\xee\x6b\xe0\x18\xb8\xd1\xe3\x87\xdd\x5d\x5b\xc6\x6d\xf8\x9a\x86\x94\xcc\x17\xb7\xdf\xd2\x8e\x24\x33\x53\x69\x58\xc1\x02\x45\x0b\x33\x2c\x95\x03\xaf\xd9\xf9\x09\x4a\x34\x06\xac\xaa\x62\xea\x4c\xfa\x6f\x7f\xb4\xa7\x7c\xfd\xfa\x1c\xfd\x7c\xcd\xd4\xff\xfe\x5f\xf3\x27\xa3\x27\x12\x61\xb8\x5b\x61\x8e\xd5\x80\x0e\xb8\x6d\xcd\x59\xe1\x1a\x25\x04\x98\x68\x46\x7f\x69\x0e\x50\xef\x73\x20\x12\x81\xb0\xc5\xc2\xb2\x40\xb4\xdf\x12\xc3\x53\xcd\x6e\xa8\x44\x64\x47\x95\x22\xed\x42\x9f\x4a\x72\x5a\x52\x8b\x13\x77\xe4\x56\xc0\x4a\xc3\xb8\x04\x59\x13\xa1\xd7\xa3\xf1\xb4\xd9\x62\xb6\x21\x88\x0f\x4a\x0b\x37\xdb\x21\xd0\x51\xc6\x49\xf6\x5c\xdc\xae\x3b\xbe\x5f\x20\xc9\x81\xdd\x62\x41\xd6\x43\xa7\x07\x33\xbc\x13\x56\x38\x48\x0d\x8b\x53\xce\x23\x07\xe9\x0c\xda\xe9\x4f\x38\x93\x4b\x47\xac\xf6\x8f\x85\x6f\x63\xa1\x5e\x1e\x5a\x68\xc2\xd6\xea\xfd\xa1\x27\xe7\x48\xff\x37\xf9\xfa\xe7\x9f\xa3\xf6\x28\xfe\xa5\x36\x8e\xd6\x30\xde\xe1\x83\x46\xf0\x3f\xe0\xa1\xab\x0e\x0a\x6d\xb4\x12\x72\x8e\x7e\x7e\x4b\x3f\xc5\xdd\x9b\x41\x2a\xbe\xd3\x03\xff\xa4\x04\x65\x9b\xef\xa2\x9f\xbc\xa8\xbd\x04\x49\x5b\xe9\xec\x5b\xfc\x68\xe5\xb7\x3c\x47\x1f\x2c\x34\x3e\x46\x43\x91\x4f\x3d\x15\x07\xb7\x78\xf8\xba\x44\xdf\x2b\xae\x95\x50\x15\x71\xa6\xf7\x11\x89\x79\x04\xd6\xe8\xd9\xdd\x91\x76\x89\xae\x15\x7c\x4b\x28\x48\x2f\xf8\xd1\x29\x27\xed\x02\x09\x10\x09\xad\x96\xdc\x2d\x91\x4a\xf0\x43\xc4\xcb\xa7\x4f\xdd\xaf\x64\x76\xc2\x89\xa2\x0a\x66\x4c\x36\xf3\x6b\x3c\x47\xbf\xe5\xbc\x7b\x30\x4a\xfc\x6d\x61\x84\xa7\x8e\x93\xd1\xe1\x67\xa6\xd5\x50\xd7\x3f\xe2\x65\x56\xe0\xb7\x41\x5b\xd4\xc7\xaf\x25\x94\x39\x7b\xad\xbc\xb6\x83\xb0\x24\x6e\x74\x6f\xcb\x67\x7e\x78\xfb\xfe\xd8\xd9\xa7\xd3\xce\x44\xbe\xfe\x85\x9f\xff\x27\xdc\x91\xab\xc1\xef\x7e\x5e\xd3\x37\xf4\x5f\x78\x43\xde\x61\xb5\x4d\xd1\xd9\x0a\x34\x2d\x8c\xa4\x69\x63\x4d\x8d\xaa\x32\x62\x05\xff\xca\x76\x74\x18\x1c\xaf\xbe\x23\xaa\x3e\xef\x39\x8a\x17\x51\x59\xe3\xbb\x61\xd5\xd1\xa6\x58\x62\x0f\x5f\x87\x95\x6a\x05\x30\x59\x5d\x47\xd9\xed\xb1\x75\x84\xb1\xcf\x51\x34\x4f\xb4\x0c\x03\xc4\xe8\x78\xa5\x12\x43\xa3\xf7\xde\x0b\x22\x35\xac\xd9\x06\x61\x7d\xd6\xb4\xa7\xc4\x19\x29\x4e\xdb\xd7\x0d\xb4\x29\x43\x84\xc2\xd4\xd9\x02\xb9\x76\xd1\x1b\x2a\x30\xbc\x1f\x23\x05\x66\x2c\x95\x48\xf2\x6e\x82\x15\xd8\x75\xd8\x05\xa2\xcf\x1e\x6d\x1d\x80\x3c\xfa\x19\x3b\xd1\xcf\xb3\x4c\x5a\x56\x35\x3d\x05\xc6\x9e\xd7\xf3\xb4\x78\x5a\x53\xd6\xc2\x28\x40\xac\xa6\x07\xa8\x8f\x1e\x10\x91\x60\x01\x7d\x4d\x5a\xdd\x83\xdd\x6a\xe6\xe6\x71\xc5\xcd\xb5\x26\x5a\x6d\xa7\xd6\x74\xda\xe3\x83\x57\xfb\x30\xa3\xfd\xd0\x69\x34\x4a\x47\x94\x3c\x59\x88\x5f\x9c\xc1\xcb\x66\x50\xde\x66\x3d\xf0\xc1\x1c\xc1\x86\xd8\x55\x5a\x68\x61\xd3\x97\x25\xe3\x36\xda\xb4\x76\xd0\x5a\xae\xb8\x10\x7c\x3f\x9b\x9f\x2d\x41\xeb\x5b\xba\x69\x34\x31\x64\xb0\x7b\x6f\x8c\x3e\xd0\x27\x5b\x6d\x7e\x91\xf5\x9a\x36\x1a\x0b\xba\x83\xde\x19\x46\xb2\x11\xb4\x8f\x7a\xe5\x98\x18\xc8\xf7\xca\x59\x7e\x87\x97\xcf\x3e\x27\x1e\x8d\xa5\x23\xf6\xfb\x57\x4f\x8a\x43\xb6\xd6\x65\x86\x49\xa9\x47\xc4\x40\x9c\x76\x9d\x5e\xa7\xb3\x9d\x55\x84\x21\xe3\xeb\xc3\x09\x03\x4d\xa7\xa7\x5e\x03\x14\xf1\xf7\xfe\x6f\xfd\xfb\xec\x81\x1b\x5c\x64\x33\xce\x23\xbc\x06\x81\x40\xba\xf5\xd2\x23\xf6\x85\xdf\x41\xd9\xc8\x02\xe6\x22\xa6\x39\xfd\xb9\x7f\x62\xfe\x5b\xc8\xf5\xd7\x44\x61\xda\xc9\x92\xd2\xb5\x59\x88\x29\x33\x74\x6e\x1b\x7f\x23\x51\x8b\x15\x3e\x4a\x9d\xe9\xd8\x15\x22\x8d\xf8\x95\x25\x29\x6f\xbc\x03\x0b\xd0\x3f\x6b\xeb\x7e\x8c\x68\x2d\x09\x5a\xda\xb2\x96\x90\xb3\x9d\x8c\xce\xdc\xd2\xf5\x9a\x88\x54\x7b\x2f\x09\x4b\x8f\x43\x25\xfa\xfd\x7f\x2c\xb5\x6d\xb1\x07\x15\x59\xa0\x1d\xbe\x25\x88\x2a\xd3\x42\x5b\x0a\x0a\xfd\xa6\xc1\xec\x37\x7e\x8a\x74\x20\x43\x6a\x5e\x18\x08\x72\x47\x25\xf5\xe2\x20\x87\xd1\x1d\x16\x91\x32\x12\x74\x84\x64\xc8\x3f\x6e\x09\xe8\x4d\x30\x74\xa1\x65\x79\x25\x45\xb3\x18\x6f\x77\xd6\x26\xca\xd4\x99\xe2\x20\xb4\xe2\xe1\xc5\x70\xe6\x53\x5c\x82\x37\xc3\x5a\x4a\x2b\xa2\x57\x60\x9c\x15\xe3\x84\x93\x28\x49\xc5\x64\x4e\xf1\x42\xd7\xaf\x23\xd1\xaf\x2d\xb6\x66\x0b\x0c\x05\xec\x43\x90\x1f\xca\xb9\x81\x9c\x77\x62\x6a\xca\x58\x01\x2b\x26\x1d\x18\xfd\xf3\x40\x10\x6d\xb5\xd0\x5a\xd3\x60\xd0\xfa\xdd\x01\x8f\xd0\x2c\x53\x9b\x95\x93\x7b\x9b\x98\x26\x06\x64\x85\x0f\x59\x16\x25\xbd\x88\xdc\xe1\x96\x24\x08\x9e\x4f\x37\xae\x28\x8e\x71\xc3\x44\x04\x03\xc3\xb3\x30\x34\x2e\x0c\x4a\xda\x74\x65\x47\xe6\x8e\x15\xd0\x92\xff\xbb\x31\x8d\xb8\x6b\xa9\x46\x79\xce\x34\x04\x1c\x37\x5e\x11\xb5\x37\x26\x81\xd5\x11\xe4\xf4\x84\x57\x83\xd2\x06\x8a\x95\xec\x1f\x93\x29\x2f\xbb\x8e\xef\x23\x92\x6e\x71\xdf\x23\x45\xf0\x4e\xc6\xce\x4c\xa3\x1c\x6b\x26\x44\xd9\x46\x3a\x51\xdc\x1a\xea\x19\xa8\xdc\x92\xd6\xfe\x98\x91\xaf\x46\x02\xa0\xde\x2d\xe9\x7a\xb0\x40\x8d\xc8\xed\x14\x11\xce\x81\x22\x08\xc8\x66\x2b\x44\xa8\xf0\xaa\xf8\x38\xf1\x15\xca\x7a\x32\xed\x55\xe4\x2c\xf5\xde\x1a\x65\xec\xe3\x0e\xd3\x1d\x69\xd1\xea\x50\x73\xf6\x7a\xfd\x79\x1c\x9e\x63\xb6\x40\xb2\x80\x37\xa0\xe8\xeb\x23\xeb\x22\x27\x5e\x6d\xb8\xcc\x24\x48\x46\xb9\x16\x42\x2f\x50\xd2\x55\x77\x00\xc2\x4d\x58\x16\x96\x81\x05\x2d\xab\xf2\xd2\xce\xe5\xe8\x7c\x8e\xd6\x03\xd3\xe3\xbc\xe7\xce\x05\xdb\xce\xaa\xf2\x30\x30\xc1\x0b\xa4\xc4\x40\x22\x59\x97\x2c\xf0\xe7\xbe\xf5\x50\xb3\x18\x12\x31\x03\x83\x0f\xc1\x2f\x16\x90\x25\x71\x19\x46\xa8\x77\xd9\xf7\x32\x95\x4b\xbf\xc3\x9e\x6b\x29\x8e\x18\x35\x8e\x8d\x8e\x60\x91\xe8\x4e\x63\x3b\xbd\xb2\x68\x32\x2b\xf0\x65\x5e\xd9\xb6\x6b\x84\x2e\x3c\x7e\x8d\xed\xfc\xfa\x04\x55\x05\xcd\x92\x29\x46\xac\x5c\x34\x65\xe9\xa2\x71\x6b\x17\x9d\x68\xf1\xba\x76\x19\x0f\xc8\x1a\x54\x84\x66\xda\x62\xc2\x3a\x46\x27\x59\xc8\xa8\x6e\xff\xea\xcf\xdc\xf9\xc3\xdd\xa7\x17\x24\x43\x4b\x03\x5f\xf4\x07\xdc\x51\x8d\x72\xc6\xe5\x06\xa3\x15\xcd\xcc\xd7\xe8\x95\x9d\x65\xb6\xd1\x68\x20\x34\x82\xfd\xb6\xe3\xcd\xed\x6c\xbe\x54\x74\x47\xa4\xc2\xbb\x7e\x7e\x5e\xf4\xd6\x9f\xa7\x99\x93\x6d\x99\x2a\x5d\x4b\x7d\xb8\xe7\x20\x1e\x36\xf4\x8e\x30\x37\xa3\x1f\x16\xfd\x69\x66\xbe\x9a\x7b\x99\x61\xc5\xc5\x7a\x50\x83\x20\x67\x4f\x8f\xee\xad\x23\x6c\xa3\xb6\x49\x34\xad\x19\x54\xd1\xcd\x1d\xec\xd2\xb6\x7f\x85\xbe\x3d\x3f\x71\xf9\x4e\x27\x84\x15\x1a\xd7\xb9\x42\x1d\xc1\x52\x41\xdc\xc7\x89\x1a\x6d\x04\x79\x31\x93\xae\xfb\xfe\x49\x49\x42\x31\x22\xa1\x8b\x04\xaf\xa6\xd9\xcc\x1a\x77\x92\x94\x4d\x2c\xd1\xa0\x0b\x47\x3e\xd5\x26\x9a\x78\x4c\x13\xfd\x57\xb5\x89\x6b\x50\xfb\xb9\x46\x46\x7a\xf1\x95\xaf\x1f\xc6\x34\x42\xa3\x8c\x3c\x74\xe3\xec\xab\xb2\x93\x45\xab\x8b\x1a\xa2\xfb\x75\x43\xd4\xf4\xc2\x23\x42\x7a\x24\x5a\x14\xe2\xae\x01\xd3\xd7\x44\x11\xb8\xc2\x9d\x8d\xcb\xda\x78\x0d\x20\x96\x4c\xba\x81\x1a\xed\xf4\x94\x63\x4b\x7d\xf1\x02\xbd\x23\x62\xcd\xc5\xce\xd9\x6f\xd6\xf1\xcc\x59\x12\x7c\x34\x81\x98\xc6\x2f\x27\x8a\x10\xc3\x4a\x34\xa2\x19\x6d\x2b\x12\x01\xfa\xb3\xe6\x02\x7e\xa4\x2c\xdb\x75\x95\x43\xfc\x4e\xdb\x17\x72\x10\xc4\xc6\x71\x90\xb1\xbe\x47\xac\xd3\xa8\xe3\x1f\x89\xd1\x56\x5d\xc4\x91\x4a\x84\x37\x98\xb2\xe0\xe2\xaf\xb8\x51\xe2\x4f\x33\xa8\x65\x61\xf3\x57\xf9\xcb\x77\xdf\xa1\x1e\x33\xda\xcc\x4e\xa3\xd4\x2b\x6b\x83\x99\x8d\xb8\x29\x9e\x96\x63\x6b\x6d\xae\x6d\xdd\x99\x7a\xdd\x95\xe7\x47\x5f\x65\x23\xee\xb0\xc3\xdf\xff\x04\x5b\xc2\xe5\x91\xdf\x27\xff\xc2\x52\x12\xa1\x66\x13\x83\xbe\x42\xdf\x2e\xbf\x5d\x14\x0d\x76\x44\x4a\xbc\x21\xa7\x32\xac\xf7\x91\x21\x1b\x98\x16\xe3\xec\xf9\x7f\x11\xc1\xcd\xce\x32\xce\x3a\x2f\xc8\x01\xa6\xb1\x81\x71\x8b\x89\x6d\x84\x8a\x23\xbc\x21\x07\xcd\x71\xdb\xdf\xb8\xfe\x82\xe9\xcf\x4c\x94\x78\x8d\x1b\x62\x75\x6a\x63\xfd\x0f\x12\xa2\x35\xd6\xf5\x18\xda\x80\x9d\x6d\xc7\x1a\xf7\x09\x78\x33\x3d\x74\x4c\xe6\xcf\xdc\x03\x06\x83\x7e\x78\xfb\xbe\xb4\x39\x00\xf5\xcd\x49\x7a\xd3\x06\xef\x08\x78\xd1\xac\xb2\xaf\x8d\x3a\x97\x0a\x13\x86\x8a\x50\x1c\x5c\x38\xc1\x00\xd4\x04\xb4\x92\x84\xa9\x05\x90\x30\xf9\x84\x77\x7d\x07\xc1\x7a\xaa\x82\xbd\xad\x69\x09\xdd\x51\x8c\x30\x33\xc1\xf8\x2e\xde\x34\xaa\x6b\xb4\xb0\x79\xad\xe2\x45\xcb\x38\x47\xcf\x3e\xd7\xcc\xec\xfb\xef\x52\xcd\xcd\x09\x9d\xe4\x4b\xa7\x0f\xc7\xc1\xcd\x05\x5a\x0d\x07\xe7\x53\x57\xa9\x55\xe7\xe1\xd6\xe3\x83\x81\xce\x8a\x30\xb2\xa6\x0d\xc5\x82\xda\xdc\x02\x41\xd4\x20\x98\x8c\x58\x87\xa5\xc4\xd5\x70\x88\x79\xd0\xd4\xfe\xdc\x62\x53\xea\xb2\xb2\xf9\x1c\x7d\x9f\xb9\xbd\x40\x4c\xdd\x47\x21\x17\x94\x87\x26\x8c\x1c\x3f\xd1\x77\x16\xe9\x78\x73\x3d\x59\x15\xbc\x29\x74\x37\x44\xc5\x6e\x2f\xf7\xf5\x5b\xa2\x9a\xad\x33\x68\xad\xeb\xca\xea\x36\xc5\x79\x27\xa6\x1e\x25\x7b\x00\x44\x18\x57\x9f\x74\xe6\x60\xcb\x57\x00\x26\x2d\x69\xaf\xca\x28\xdd\xe8\xa2\xb0\xe9\x12\x27\xe8\xc8\x34\x77\x46\x4b\xa1\x60\x56\x3a\x2e\x9c\x99\x2b\xd7\x80\xdc\xee\xe4\x6f\x18\xed\x6e\xc0\x3b\x1c\x77\xa5\x12\x0d\xbd\xc6\x85\x8d\xc0\x2b\x6d\x87\x62\x76\xe0\x6c\xc4\xe2\x8c\x01\x30\xbe\x2d\x0d\x93\x0f\x27\x1d\xe9\xc7\x8c\x1a\xb6\x58\x5a\x60\xfe\x96\x34\x7c\x47\xfe\x6d\xcb\xa5\x8b\x44\x7a\x44\x27\x5d\x27\xb5\x18\xf4\xf4\x49\x5a\x47\xe1\xd6\x53\xaf\x79\x86\x75\x15\xb4\x01\x6c\x87\x49\xe0\x80\xc6\x67\xc1\x43\x15\xda\x11\xcc\x82\x71\xbb\x82\xd5\x48\xb4\xd1\xeb\xd1\xb0\x07\x3e\xc1\x07\x55\xa7\x1b\x3d\xfc\xeb\x37\xef\x7e\x7c\x73\x75\xf9\xfe\xcd\xeb\x73\x1b\xad\xd0\x13\x99\xb8\xbd\x41\x36\x2a\x35\x28\x1b\x65\x4f\x41\x92\x1d\x66\x8a\x36\xb8\x03\xe7\xfa\x1d\x11\x7a\x63\xff\xef\xff\xfc\xdf\x64\x99\xda\xfe\xbd\x49\x26\xf2\x0a\x81\x85\x81\x54\x9a\x79\x3a\x48\xcc\xe8\x92\x2c\xd1\x0f\xbf\x7f\x6f\xd6\x4e\xda\x39\x70\x03\xb7\xdd\xbc\xb3\x61\x91\xc9\xf8\x66\x84\xeb\x9f\xfc\x00\x4b\xc3\x6b\xa8\x41\x55\xde\xf7\x5c\x52\x93\x4a\xb0\x77\x1e\x5e\xbf\x2f\xa6\xb9\x36\xdd\xf5\x1d\xe4\x91\xbd\x8f\x7e\x4a\xf9\xb4\x44\xb7\xa4\x57\x08\xcb\xe7\x14\x1c\x3d\xf8\x8e\xd3\x16\xad\x04\xc1\xb7\x90\xf0\xf4\xc9\xb9\x8c\x99\x22\x1b\x9b\x61\x67\x03\x23\x9d\x20\xb8\x3d\x68\x94\xee\x09\x93\x5a\x97\xb3\xf1\xa0\xcc\x99\x0f\xae\x0b\xce\x96\xe8\x67\x49\xd0\x0d\x95\x80\x5b\x16\xdb\x66\xf3\x1b\x48\x8b\x24\xb8\x5d\x58\x2f\x65\x0a\xf1\x00\xa8\x90\x6b\x92\xd2\xb9\x01\x4e\x09\x5c\xaa\xc2\xa1\x40\x92\xc6\x11\xca\x1a\x21\x01\x4d\x53\xe0\xd7\xcd\xe0\x16\xef\x22\xf9\xe9\xc7\x74\xfd\x74\x1d\xe7\xa0\xd9\xd3\x66\x1c\x75\x9c\x6d\x88\x88\x09\x27\xa4\xdd\x7c\x23\x51\xc3\xbb\x8e\x94\xe7\x65\x70\x22\x4b\xbd\x89\x41\x10\x1c\xf5\xde\xaa\x9a\x2f\x12\xe0\x24\xa2\x39\xf5\xd6\x03\xac\xbc\xa7\x2c\x45\xb7\x86\x0b\x41\x1a\xd5\x1d\x9e\x6b\xd4\xd2\x62\x0d\xb8\x23\x18\x87\xfa\xdc\x6f\x46\xe1\x77\xb3\xc8\xc8\x46\x9f\xb2\x16\xfc\x9e\xd6\x2c\x89\x3a\x42\x1c\xf1\x62\xfa\x93\xca\x51\x28\x3e\xa0\x8a\x0e\x16\xb4\xaf\x2c\x56\x08\xcc\x5e\x0b\x69\xe3\xa8\x06\xbf\x20\xf0\x17\x88\xf8\xb2\x28\x04\x86\xad\x85\x9f\xb0\xd3\x85\x1f\x58\x83\xd7\xc7\x42\x05\x6f\x08\x69\xad\x5c\xc3\xc6\xf1\xea\x06\xef\x3b\x1a\xbc\xb6\x92\xdc\x41\x9e\x72\xee\xbd\x85\x04\xc9\x7c\xf3\x7e\xe5\x76\x53\xe7\xa9\x86\xb7\x40\x26\x39\x7a\xa9\xff\x07\x6e\xce\x32\x22\x24\x21\xc9\x19\xcd\xb4\xaa\x1c\x84\xc4\x02\x54\xe7\x06\x32\x3e\x3e\xcd\x73\xa9\xac\x17\x9f\x1f\x86\xd6\x87\x8d\xd3\xd2\x36\x9e\x16\xc4\x97\x91\x20\x30\x20\x37\xca\x54\x1c\x5e\x52\x1c\xd2\x9c\x5b\x81\xf7\x21\x66\x41\xd5\x16\xfe\x61\x40\x7f\xfd\xda\xd8\x87\x54\xc5\xc4\x51\x0d\x9b\xa6\xb3\x49\x6b\xf3\x55\xa6\xfa\x0d\x66\x87\xdf\xe8\xc9\x20\x6b\xea\xc0\x87\x28\xc4\xe4\x12\xa8\x80\x97\x6c\xe8\x5d\x4e\xe6\x72\x68\xb6\x08\xc7\xb3\x81\xae\xee\xe7\x81\xfc\xb2\x0e\x32\x09\x8d\x29\x69\x16\xde\x12\x93\xdf\xe5\xac\x53\x6a\x83\x23\x83\x84\xbf\x0d\x1b\x48\xe9\x05\x1f\x7c\x88\x0c\xbc\xd6\x72\x5c\xf6\x01\x9f\xa7\xa4\x6b\x4d\x8a\xec\x20\x89\x44\x37\x15\x7d\xf8\x9d\x91\xd1\x62\x51\x46\xa4\xae\x3c\x6c\x0d\x66\xdd\xdf\x84\x7c\xbf\x64\xae\x1b\x6d\x8e\xdd\xa0\x1e\x0b\xbc\x23\xca\x24\x99\x93\x5e\xd5\x27\x0c\xa3\xde\xdf\x80\x38\x92\xc4\x3a\x7c\x41\xb2\x30\x93\x1f\xdd\x1d\xce\x21\x66\x9e\x6b\x68\x3d\x96\xe6\x14\x19\xd6\x7a\x3e\x11\xe8\x26\x0c\x78\x63\xf6\x3a\x33\x7c\xc5\x72\x2b\x6f\xa0\xc4\xe7\xa3\x9b\x51\x29\x07\xe3\x87\x36\xac\x56\xce\xb3\xe4\x02\x97\x03\x20\x25\xdd\xb0\x9d\x4d\xe6\x33\x49\x7e\x2b\xd2\x60\x7d\x4e\x37\x13\xdb\xbb\x41\x0d\x67\x6b\x2e\x4c\xd8\x64\xc5\xd5\x16\xdd\x38\x68\xdf\x14\x33\xdd\xe4\xd0\xbe\x59\xa2\xcb\x8e\x6e\x98\xb7\x37\xf6\xdc\x99\x0b\x60\x87\xc1\x1e\xf6\x0e\x47\x71\x10\xd4\x36\x5b\xd0\x58\x58\x15\xa9\x34\x2e\xbf\xb7\x9a\xe3\x1d\x3b\xb3\x34\x2f\x7d\xdc\xdf\x6e\xa3\x78\x6e\xc7\x81\xcd\x24\xa6\x06\x1e\xd4\x76\x56\xcc\xf7\x47\x4b\x96\xf3\x9a\x05\xf7\x10\x8c\xcd\xb2\x19\x2e\xa7\x13\xf0\x33\xfd\xde\xc0\x46\x10\x84\x7b\xad\xc9\x92\x16\xa5\x91\x2c\xee\x74\x7e\x38\x94\x38\x91\x3f\xe8\xf6\x47\x00\x14\x4f\x1e\x43\xe8\x71\xaa\xfb\x95\x26\x18\x08\x64\x59\x11\xb0\xd2\xb2\xd4\xaa\x4d\x54\xc6\x41\xff\x2c\x0f\xd0\x8d\xf0\x66\xa7\x79\x53\x9e\xfb\x67\x42\xc5\x34\xb1\xce\xd0\xde\x26\x9c\x39\xe4\x81\xad\xb4\x49\x0c\x2a\xcb\x00\xa0\xac\x09\xba\xc8\x6c\x0e\x79\xb1\x32\x4a\x95\xf5\x72\xd3\x3b\x81\x1b\x2c\x49\x61\x31\x98\x90\x17\xdf\xd0\xc6\xa2\xba\x5c\xb8\x2c\x80\x38\xcf\x5c\xc4\x79\xf0\x33\xa3\x72\x47\x3f\x37\x1d\xc1\x6c\xe8\x67\xf3\x23\x21\x23\x0d\x42\x0d\xd7\x15\x6e\x6e\x8b\xd0\x58\x48\x92\x8e\xb3\x06\x42\x1a\x5e\x48\xc1\xdc\x6b\xb9\xb3\xd1\x6c\x88\xc2\x85\x9d\xc6\xc3\x76\x4b\x04\x59\xe6\xa3\xfe\x5e\x1b\x56\x7b\x2a\xc9\x44\x47\x1a\x39\x03\xe6\xc5\x08\x4e\x61\x73\x9c\x6a\x4f\xdc\x99\xa7\x3a\x23\x9b\x80\x59\x3e\x26\x17\x55\x08\xa2\x62\x72\x93\xdd\x61\x19\x11\x9c\x17\xcc\x3d\x34\x8a\x8b\x70\x58\x6a\xcb\x65\x30\x46\x32\x1f\x2f\x5d\xa3\x33\x70\xb7\x59\xcd\x22\x0a\x0d\x94\x5e\x5e\x8d\x49\x13\x19\xab\xf1\xa7\x92\xbd\x0a\xd3\x0c\x03\x6d\x4b\x87\x24\x1a\xcd\x65\x4d\xd6\x16\x07\x35\xea\x83\x44\xa9\x21\xf5\x5d\xd5\xbb\xf9\x08\x61\xd2\xc9\x7e\x3b\xda\xc5\x44\x0e\xf3\x2e\xfa\xdb\xd1\x2e\xb5\x0e\x63\xcd\xeb\x31\xc6\x14\x20\x95\x26\x13\x83\x99\xec\x87\x72\x04\xfd\x7d\xbd\x5b\x08\x3e\x26\xbd\xdc\xd7\x23\x9d\x8a\x90\x64\xda\x39\xfb\xf9\xd8\x20\x21\xaf\x97\xd1\xae\xde\xd8\x85\x37\x93\x79\x46\xa2\x94\xf3\x11\x8f\x7a\xe6\x4f\xab\xbb\x6c\x8d\xa9\x69\xf5\x5b\x08\x9e\x37\xa4\xc8\xbd\xb1\xa9\x02\xa4\xf5\x17\x11\x97\x7f\x01\x57\xad\x57\x6c\xad\x6d\xc7\x68\xf7\x15\x5d\xb9\xa3\x1c\xd9\x3a\x9f\x44\xac\xf7\x45\x99\xf3\x77\xfc\xd6\xa4\xc6\xbb\x35\x21\x81\x6d\x12\x18\x66\x26\x18\xa3\xb5\xa9\x45\x3e\xba\xcb\x73\xe1\x4d\xb8\xcb\xd5\x0b\xbe\xa3\x5a\xc1\xd6\xc3\x18\x8b\xf1\x60\xc1\xf7\x62\x60\x21\xdf\xc4\xa7\x5e\xbb\x0f\x5d\x83\x16\xe0\x96\xfa\x23\x59\xa3\x0b\x1f\x9f\x2c\x35\x27\x1f\x43\xaa\xb0\x40\x3b\x94\x80\x21\xa2\x01\x97\x01\x8a\x25\x7d\xd7\x06\xb2\x83\x09\xb2\x5e\x52\x79\xcd\xb4\xfa\xdc\x90\xa2\xaf\x26\xe8\x39\x7a\xf6\xcc\xb4\x6b\xd1\xc5\x45\x85\x7d\x8c\x8c\xae\x3f\x16\xee\x82\xac\xab\x4d\xee\x8b\x6f\xef\x27\xe2\x4d\xe1\x10\xc7\x88\x66\xc4\x09\xfd\x6f\x44\xe5\x0e\xe8\x93\x83\x0d\x27\x39\xa2\x33\x08\x78\xef\x46\x80\xd4\xc4\x8a\xff\xe1\xb4\x9e\xd0\x7c\x27\x20\x5b\x57\xaa\xc7\x00\xfd\x3f\xc5\xdf\x3d\xea\xde\x86\x5c\x3b\xb0\x62\x78\xe9\x38\xae\x78\x55\xfc\xef\x63\xee\xd9\xba\x13\x5c\x6b\xc5\x35\xff\xf7\xa4\x23\xdd\x30\x51\x34\x0b\x7e\xef\x69\xcf\xf1\x97\x39\x76\x33\x9c\xfa\x8a\xdc\xd9\x9e\xc4\xe9\x7c\xf9\xec\x22\x61\x67\x68\x8c\xe7\xa5\x49\x32\xf7\xff\x70\x4d\x3f\xda\x35\xfd\x28\x4f\xf3\xaf\x08\x63\x2e\x4e\xc4\x98\xa9\xec\xcd\xbf\x58\x24\x3c\x92\x23\x8e\xeb\xb8\x94\x5b\x50\x9f\x42\xac\x9c\x7c\x52\x02\x1f\x8b\x96\x9b\xf9\x4c\xd5\x85\x0e\xb8\xe8\xd0\xa3\x76\xe8\x3b\xda\x60\xe5\x17\x2d\xbd\x87\x81\x2a\xb2\xb3\x49\xf6\x95\x84\xd9\xbf\xc1\x90\xfb\x69\xe9\x92\x23\xf6\xf4\x85\xcd\xb5\x7b\x58\xea\xa3\x1f\x20\xcd\xc3\xd1\x2a\xb6\x73\x09\xa5\x4e\x90\x32\xc5\xd1\x5d\x16\x1b\xd3\x33\x6b\x56\xe4\x03\x13\x34\xa3\x55\xda\xa4\xa9\xbe\x82\xce\x26\xc2\x70\xfd\x1a\xfd\xc9\x2c\x20\x56\xe9\x2c\x7d\xf9\xc8\x29\x40\xde\x22\x24\x24\x32\x63\xe9\x53\x23\x5f\xfe\x69\xe6\xf6\xb4\x21\xb0\xdc\xd9\x7c\x19\xf2\x9f\xe7\x86\xab\x2a\x6b\xa6\xfd\x79\x20\xc0\x11\xc1\x93\xfb\xf2\x4f\xc7\xf7\x1e\x0f\xb5\x1c\x07\xe7\x0a\x77\x1a\x96\x85\x4e\x1e\x4c\xed\xbf\x26\x08\x1d\xac\xee\xe0\x8e\x5f\xcb\x89\x01\x89\xbd\x01\x95\x81\xc6\x64\x03\xf2\x35\xaa\x41\x47\xff\x56\x83\x43\xc5\xd8\xfe\x25\x72\x7f\x4f\x83\xcb\x59\x42\x1d\x54\x1a\x97\x40\x8d\x1a\x60\xd9\xa6\x0a\x84\x91\xfe\xe8\xd1\xeb\xf1\x77\x7f\x34\x78\xd9\x37\x36\x31\x2e\x04\x33\x48\x6b\xca\x4d\xe4\xd9\xbb\xf1\xbf\x72\xc3\x37\xa4\x51\xc6\xa7\x5e\x91\xe4\x26\x49\x32\x35\x74\xd3\xc3\xcb\xef\x1b\x8c\xcf\x4b\xd7\xd3\x2e\x1a\x93\x48\x58\xcf\xfb\xbc\x5e\x67\x96\x8e\xbd\x3c\x4b\xc1\x4e\x5f\xa0\xf7\x5b\xc1\xf7\xc6\xd2\x2f\x53\x37\xd3\x7b\x1d\x3f\x86\xdb\x80\x15\x46\x5e\x3d\xa5\xa3\x19\x9d\x31\xfa\xd4\x96\xd9\x60\x7d\x70\x2b\xa2\x17\x5b\xcf\xec\xfc\x03\x11\x74\x7d\x48\x6b\xfa\x1c\xe2\x18\xd5\x9a\x0b\x82\x7a\x93\x8a\xeb\x84\x35\x58\x88\x10\xfb\x80\x58\x64\xe9\xb6\x32\x77\xf5\xb0\x73\x91\xc4\x43\xf7\x82\xb7\x03\x14\xca\xb1\x17\x2e\x88\x10\x5c\x24\x8e\x13\x0c\x41\x2f\x53\x5c\xc2\xa6\xa7\xae\x31\xed\x86\xdc\xc7\x8d\x26\xd2\x44\x51\xd5\xcb\xb6\x84\xf5\xce\xe6\x75\x47\xdb\xd1\xcc\xd1\x4c\x5c\x05\x53\xad\x0e\xfb\x18\x9c\x94\x01\x40\x4b\x8a\x2d\x4f\xc5\xe1\x6b\xdd\x04\x75\x74\x5d\x77\x8b\xdc\x61\x81\xa8\xbc\x2a\xf1\xeb\xdf\xb1\x84\x9b\x00\x36\x09\xbd\xcc\x8b\x3f\x3a\xc2\xe5\xa0\xb6\x5c\xd0\xb1\xbc\x7a\xf7\x81\xbc\x6a\xdc\xfb\xbc\xea\xfa\x2e\xce\x26\xdc\x3a\x2f\x5e\xa0\x2b\x08\x71\xff\xf3\x39\xfa\xc9\x04\xd0\x3d\xeb\xf1\x51\xcb\xd1\xde\x74\xad\xa7\x0f\xa2\x53\x4b\xb0\x0a\x22\x84\xdf\xc7\x17\x02\xc3\x9d\x00\xcc\x44\x1b\x9e\xdc\xd1\xbf\x94\x3b\x32\x74\x66\xa0\x94\x5e\x15\xdf\xf2\xae\x95\x21\x6e\x58\xf3\x07\x4c\x00\xc0\x0d\x55\xdf\xbe\xfb\xf5\xd9\x33\x68\x6c\xc9\xe2\x08\x2c\x46\xe1\x91\xa0\xc6\x51\x68\xe8\x0f\x04\x9a\x27\x5b\x95\xde\xbb\xe9\x5f\xea\xdf\x4e\xb1\x07\x74\xca\xf1\xd6\x39\x05\x7a\x20\xb7\xc8\x64\xfb\x19\xba\xb4\x69\x28\x55\xce\x01\xba\x9c\x57\x6a\xcc\x25\x1a\x8b\x27\xfa\xa7\xca\x3d\x1f\x54\x65\x24\x8f\x06\x40\x38\xcf\x5f\x78\xfb\xa9\x40\xe5\x0a\xe1\x80\x49\x59\x68\x3c\x40\xea\xe4\xfd\x97\x28\x91\x4a\xe4\x77\x4e\xe3\x7e\xee\xd5\x5e\x97\xcb\x33\xc3\xa7\x04\x77\xca\x29\x6d\xad\x04\xbb\xa9\x2a\xe9\x7d\xd9\x1d\x8e\x08\xaa\x3f\x33\x7f\x01\x35\x5c\x46\xa9\xf8\x65\xab\x32\xa9\xa2\x0d\xf8\x66\xcb\x96\x40\x2e\xe8\x6c\x2d\xf8\xee\x5c\x83\xa7\x80\xd9\x58\x9c\x09\x19\x6e\x07\xee\xe4\x34\x45\xdd\x79\x0e\x78\x12\x9e\xcf\x2e\xcd\xd8\x7c\x0f\xf4\xf2\xf9\x09\x0e\x8f\xb3\x70\x5a\xee\x8f\x7a\x04\xb2\x88\x41\xff\x60\x6b\x1c\x79\xcf\x35\x62\x5c\x78\x37\x89\x84\x7c\x0d\x25\x06\xa9\xf6\x5c\xa8\xed\x61\x61\xca\x69\xc1\xed\x90\xb4\xb2\xa7\x75\x15\xe5\xe3\x87\x7b\x13\xab\x41\xab\x5f\x07\x6e\xdc\x15\x7d\x77\xf0\x56\x0e\x55\xe0\xf6\x7d\xd1\x73\x09\x86\x4b\x4b\x5d\x32\x0d\x39\xc0\x02\xc0\xd7\x39\x60\x81\x99\x22\x91\x2b\xd9\x4e\xa1\x78\xb6\x14\xe7\x51\xc5\xa0\x24\xac\xc8\xd6\x95\x1f\x09\x8b\xa1\x0c\x82\x4a\x86\xf4\xf6\xf8\x50\x89\xf7\x13\x61\x14\xbe\x50\xad\x0e\xe0\x00\x03\x85\xc4\x98\x90\x96\x56\x9b\xa7\x0c\x77\xb1\x56\x0f\x08\xf0\x4b\x2b\x2f\x86\x9b\x26\x0a\x96\x25\xd1\x20\xd3\x84\x36\x97\xaa\x96\xfa\xe6\x50\x12\x24\x40\x13\x7c\x8e\xad\x55\xaa\x0b\x9c\x16\x04\x7f\xa8\x2a\xa8\xe2\xaa\x0c\x6f\xdf\x07\xd5\x70\x75\x88\xbc\x9d\xda\x40\x4f\x16\x14\x1b\xe3\xaf\x02\xcb\xdf\x61\x4f\x3e\x90\x64\x96\x66\x2c\xbb\x40\x53\x6e\xed\xdb\xcd\x24\x63\x16\x37\x97\x4e\x85\xd9\x58\x38\xee\xcb\x41\x05\xe6\xbd\x99\x62\x7e\x02\xc8\x2a\x40\x09\x0e\x82\xcc\x7d\x59\x07\xd4\xd1\xdb\x5b\x81\x5b\x15\xee\x3e\xef\xed\x33\x44\x13\x47\xcc\x6d\xe7\x4b\x70\xf4\x21\x5f\xd3\xf0\xad\xde\xfc\xef\x30\xc3\x1b\x12\x15\x13\x0a\xf1\x74\x60\x85\x3b\x6e\xa5\x5a\xc5\xbf\x48\xd7\xc1\x07\x60\x6b\x1c\xe0\xbe\x27\x0c\xc9\x01\xa6\x5a\x0f\x5d\x77\x28\xd9\xa6\xf4\x93\x9b\xb4\x35\xe3\x37\xde\x10\x75\x69\x6a\x02\xce\x82\x6b\xe0\xcc\xa9\x7f\xf3\x65\x92\x87\x67\x18\xeb\xcb\x67\x9f\xf3\x83\xcc\xeb\x50\xdd\xbf\xaa\x2b\x14\xc7\xfa\xf9\xda\x58\xc9\x79\x7c\xb9\xd0\x93\xa3\x80\xcf\xc4\x1c\x64\x19\x3b\x90\xbb\xda\xb3\xee\x42\x71\x0a\x3c\x70\x3e\x65\x4d\xaf\x5f\xcb\xfa\xc6\x1f\x97\x62\xf3\x90\x7c\x99\xce\xad\x20\x4a\x35\xaa\xd8\x92\x39\x76\xfe\x27\x51\xdf\x80\xcb\x1a\x70\x70\xc7\xef\x70\x97\xdd\x90\xf2\x95\xad\x42\xfe\x91\x47\xfa\xb2\x9c\x4c\xf0\x74\xa7\x3e\x16\xdd\xc3\x2f\x51\x0f\x59\x42\xb9\xe2\x4a\xae\x40\xdd\x25\x84\x55\x52\xac\xfc\xf8\xb9\xf2\x91\x6f\xfa\xc7\xd8\x97\xb0\xe2\x42\xf9\x20\x43\xa8\x50\xaa\xc9\x4c\x0b\x43\xaf\x24\x85\x40\x21\xc4\x0f\xf7\xba\xf5\xc1\x15\x8b\xa6\xaa\x10\x6a\x7b\x28\x9a\x16\xae\xc5\xba\x10\x04\x15\x52\x59\x65\xbd\x7e\x31\xd8\xe7\x55\xeb\x86\x7e\x7a\x9b\x29\xae\xbc\x04\xf6\x65\x18\x23\x66\xb8\x40\xf6\x26\xc1\x46\x10\x53\xb7\xcf\xea\x75\x6b\x2e\x4a\xa1\x7b\x40\x03\xd4\xe0\x83\x9b\xd8\xe9\x1a\xb4\x91\x2f\x88\x84\xba\xe0\x21\x03\x69\x34\x7e\xf0\x1d\x2a\xe3\x42\x2f\x5e\xa0\x77\xf8\x90\xeb\x9c\xb5\x26\x04\x37\xdb\x28\x7c\x73\xb0\xd5\x58\xaa\x15\xc1\x96\x4f\x0a\xb4\x8a\x2f\x69\xc7\xae\xdb\x91\xcb\xda\x3e\x87\x25\x78\xdb\x6a\x37\xa8\xeb\xa6\x2e\x04\xde\xcc\x4a\xae\x86\x69\xc3\x20\x5c\x62\xae\x6b\xf2\x7e\xc6\x5c\x99\x0e\xe3\xd7\x3b\xd2\x35\x9a\xe5\x67\x63\x03\x73\x53\x06\x7a\xd9\xa5\x5e\x74\xcc\x7d\x2a\xd9\x31\x88\x74\xb2\x16\xf2\x41\x2e\x3b\x72\xb4\xa6\x63\x02\x62\x3c\x5a\xe0\x71\x0a\x66\x79\x6e\xce\x49\x9a\x4a\xb1\x69\xe3\x1c\xfb\x32\x25\xe5\x07\x6e\xe9\xd7\x45\x19\xbc\x99\x70\x4c\x91\xb8\xb4\xb5\x74\x7a\x4e\xa1\x3a\xbe\x29\x86\x1f\xac\x8c\x3d\x54\xf9\x6d\x20\x51\x02\x2e\x74\xb8\x00\xf4\xc2\xe4\x6f\xc4\xa5\xf1\x4c\xf9\x42\xc8\x79\xdb\xe2\x3b\x92\x4f\x05\x97\xd3\xc1\xb8\x92\xa8\x23\x6b\xb5\xb0\x57\x0d\xdc\xa5\xeb\x60\x0e\x98\x02\x5d\x18\x31\xfe\x9c\xf7\x86\x9d\xdb\x9a\xdb\x36\x6f\x7a\xd7\xab\x83\x89\xa4\x3c\x99\x82\xed\xd9\x18\x26\x97\x70\xc8\xf2\x99\xa9\xfc\xe5\xb3\x98\x4d\x06\x96\xcb\x0f\xce\xd8\x08\x94\x76\x9a\x28\xa5\x8a\x2a\xfc\x4d\x93\xe1\x74\xd8\xe0\xec\x02\x7d\xbb\xfc\xb6\x46\x93\xa7\x3a\xfd\xbd\x22\x36\x85\xfb\x27\xe6\x25\x3f\x2c\x27\xf9\x8b\xf3\x91\x1f\x91\x8b\xfc\x40\x25\xe9\x81\x39\xc8\x0f\xd0\xa7\xbe\x5a\xee\xf1\x23\xf2\x8e\x1f\x9c\x73\xfc\xc5\xf9\xc6\x35\xc4\x2f\xbf\x2b\xfb\x9d\x9a\x76\x9c\x91\xbf\xf5\xf3\xbc\x7c\xce\xd6\x71\x31\x4b\xff\xa7\xbb\x21\x02\x69\x3c\x83\xe2\x3b\xec\x92\xc9\xac\xdd\x77\x85\x5b\x30\x94\xc4\xc0\xa0\x3a\x7d\x79\xf5\x24\x78\x0d\x46\xef\xa0\x5c\xe1\x5e\x0d\x02\xa2\x4c\x92\xe1\x5e\x6e\x39\x68\x1a\xb7\x24\x7a\xf8\x83\x12\xf0\xaf\x2b\xcf\x37\x20\x93\x84\xee\x46\xd2\x0f\xcd\xfd\x12\x47\x2e\xaf\xdd\xbc\x29\x25\x8e\xd6\xb5\x76\x39\x3c\x25\x39\x4e\x95\xb9\x46\x79\xf4\x7d\x94\x26\xb3\xb2\x91\x79\xc7\x11\xb2\xf4\x24\x69\xaa\x6f\xe5\xbd\x4a\x8f\xc2\x64\x81\xb1\x4a\xf7\x92\x56\x93\xba\x63\x95\x1e\x79\xfb\x3a\xb1\xd6\xd7\x7b\x24\xdf\xa1\x32\x70\x5c\x32\xb1\x3a\x5a\x49\xc5\x45\xc9\xb2\xbc\x5f\x9d\x96\xc7\x4a\x99\x15\xbd\x27\x09\x7a\x52\x8a\x55\x74\x9f\xb4\x34\x5a\x3e\x57\x46\xcd\xf3\x87\xd7\xcd\x2d\x8b\xd1\x7d\xfd\xbb\x7a\xd1\xc5\xc1\x57\x23\xe8\xfb\x2b\xac\x7d\xf7\xa5\xb7\xf2\x7e\x6d\x95\xf4\xe2\x66\x49\xc5\x23\xfb\x16\xd5\x9a\x8b\x1d\x4e\xb2\x38\x51\x96\xb3\x81\x2e\xb2\xc4\xf6\xaa\xe7\xd1\x00\xfc\xb8\x56\x70\x4c\x11\x78\x98\xec\x3f\x59\xdc\x9b\x33\x77\x7f\x4d\x29\x56\x20\xe3\x27\x75\xa8\x70\x64\x0f\x11\xff\xc7\x25\xbe\x3b\xc5\xe3\xc2\x3a\x39\xc8\xc8\x09\x5b\xa9\x53\x5d\x25\x6d\x53\xfc\xae\xfc\xbe\xec\x3e\x92\xcc\x70\x31\x42\x27\x65\xc1\x39\x1b\x37\xb0\x85\x49\xc2\xc5\x1c\x93\xf2\xe5\x6b\x49\x15\xf6\x43\x5a\x80\x4d\x5b\x0e\x27\x97\x5f\x33\xbd\x6d\x1c\xc4\xba\x6c\x21\x95\x03\xae\xe6\xfb\x14\x76\x77\x3b\x32\xe2\x97\xd2\xbf\xf5\xa3\x0d\xc0\x1d\xd9\xad\x88\x18\xbb\xa4\x18\x27\xfb\x9e\x96\xe9\x7b\x92\x69\xec\x87\x7c\xbc\x49\x9c\xd4\x89\x0b\xbb\x73\x54\xbc\xf0\x58\xe3\xd6\x1a\x31\xfa\x28\xe7\xe5\xec\x69\x89\x75\x51\xda\x91\x1e\x00\xee\x98\xcb\x50\x41\xda\x07\x9a\xcc\x2b\x4b\x71\x95\xa7\xa6\xc3\xc2\xe6\x3b\x1e\x39\x6b\x73\xd0\x38\x4e\xa9\xa3\x3b\xf2\xaf\xbe\x84\x38\xbc\x27\x26\xba\xc3\xf3\x35\xa6\x1d\x84\xda\x5a\x28\x56\xe9\xb2\xd2\xec\x0b\x4e\xf5\x08\x65\xb8\x1f\x75\x36\x9d\x53\x5d\xc0\xfd\xb8\xb7\xdb\xc0\xdd\x17\xad\x18\x0d\x77\xf8\xd0\x08\x80\xcf\x41\x2f\xca\x4a\x72\x60\x7c\x7a\x7a\xdc\xe7\x17\x89\x95\x1d\x41\xa4\xb3\x22\x84\x66\x88\xd2\xbf\x74\x38\x1d\x36\xb3\xa9\x03\x7c\x1d\x95\xcd\xae\xc5\xcd\x4e\x89\x97\x8d\x85\xcb\x7c\x45\x3e\x64\x95\xa3\xb0\x4f\x1b\x72\xf0\xbf\x24\x45\xf9\xe0\x22\x5f\x6b\xaa\xf2\x41\x42\xfa\x8e\xdf\xe9\x7f\x78\xaf\xb8\x7d\x8e\x11\x17\x35\xef\x5d\x95\x05\xd6\xda\xab\x96\x9a\xc5\x58\x13\x29\xb4\xfd\x46\x9a\x24\x4c\xd7\x05\xfe\x7f\xa4\x96\x5f\xb1\xf4\xac\xb8\x4b\x53\x3c\x13\xe7\xb7\x16\x0a\xa0\x44\xef\x01\x98\x74\x53\xc5\x6d\x47\xd8\x28\x65\x50\xf3\x2f\x3c\x29\x19\x0d\x93\x5b\x57\xc9\xb3\x74\x26\x5b\x3e\x59\xc2\xaf\x58\xc5\xfc\x1b\xd3\x22\x7f\x51\x1d\xb1\x5e\x6c\x3c\xa9\x06\xf0\x10\x64\xb2\x41\x52\xcc\x0e\x86\x07\xf8\x4b\x23\xa6\x2e\x4c\xe5\x25\x85\x0a\x6a\x25\xef\x18\x1a\xd4\x4a\xcb\x13\x8c\xda\xeb\xf3\x71\x82\x9f\x2a\xc2\xa9\x35\x03\xa8\x7c\xef\xcb\xa9\x33\x57\xd5\x32\x26\x7b\xe3\xad\xb5\x72\x09\x5c\xa4\xf0\xea\xe3\x1d\xf5\xd5\x39\x65\xc4\x04\x12\xee\xf0\xa0\xb2\x9d\xf9\xa2\x23\x4a\x1f\xbb\x59\x19\x85\x3a\xe7\xe7\xe8\x83\x81\xc6\xc7\x6a\x37\x77\x71\xb5\x12\x25\x4d\xc9\x26\x23\x95\x38\x98\x69\xa1\x7d\x64\x26\xbf\x40\x03\xca\xe3\xa7\x77\x8e\x9e\x7d\x4e\x2a\x5a\x15\x97\xbc\x21\xef\xa6\x76\x65\x4a\x0e\x9d\xb2\xf1\x16\xf4\xdf\xff\x6d\xbf\x38\x4b\x05\xa3\xfe\xeb\xe5\xf7\x76\x82\x57\xb3\xb1\xa4\xff\xb4\xc4\x2e\x86\xd2\x58\x23\x32\xf2\x6c\x2c\x8d\xfe\x7e\x14\xf4\x36\x54\xfa\xc6\xdc\x05\x70\x78\x03\xde\xf9\x6b\xd6\x92\x4f\x01\xde\x8a\x27\x5f\xcc\xf3\x21\xd3\x6a\x25\x13\x21\xd8\x91\xfe\x05\x12\xbd\xb1\x35\x83\x4e\xc4\x88\x53\x10\xcd\xae\xca\xa7\xfc\xfb\xfd\x3e\x70\x99\xd1\x58\xf1\x65\xbc\x63\xe3\x54\x39\x41\xe0\x01\xf5\x52\x70\x54\xc9\xc0\xd0\x76\x20\x6c\x11\xf6\x45\x83\x52\x66\x60\x6e\x3e\x43\x5e\x97\x26\x5f\xdc\x28\x5f\xb2\x6c\x17\xf3\x02\x2e\x5a\x33\xde\x9f\x07\xe2\x63\xa9\xce\xc2\x8e\xb8\x8a\xb7\xe9\xa4\xb7\x9a\x0e\xe1\x0d\xac\x13\xb8\x48\xc4\x94\xcf\x4b\x9d\x61\x31\xc5\x5b\xe0\x6e\xa8\xbb\x3d\xe2\x1c\xa5\xc6\x81\xfa\x78\xd7\xea\x29\x7e\xd2\x24\x2b\x62\x5e\xbe\x42\xd5\x52\x13\x14\x33\x8f\x68\x38\x7f\xb2\xee\x05\x69\x67\xb9\x83\x79\xaa\x34\xd5\x1d\xf6\x19\x0f\xf2\x1c\x7d\xff\xd9\x2c\xc4\xdf\xdd\xbf\x4f\xe6\x7e\x1d\xe6\x55\x1c\xdd\x12\xd2\x23\x3d\xcc\x6d\x54\x2c\x00\xe9\x35\x18\x8d\x77\x67\xcf\xad\x5a\x08\xa3\xd4\x5a\xd1\xf3\x57\x86\x9c\xf4\x1f\x1f\xba\xdc\x49\x7e\xfd\xba\x20\xaa\x72\x17\xa4\xd5\x33\x9e\xa3\xcf\x46\x31\x38\x47\x76\x3f\x28\x50\xe6\x7d\x7e\x31\x18\x54\xbc\xd4\xeb\x1e\x14\x40\x28\x3d\x2d\xb7\xa1\xdc\xb4\xab\x82\x98\xd8\xe8\xb1\xc8\xfe\x87\x3a\xf8\xf7\xa4\x0e\x06\x7d\x30\x13\xb2\xb9\xcd\xde\x41\x86\x12\x61\x21\xdb\x33\x4f\xfe\xa3\xac\x25\xa4\x35\x85\xe5\x9c\xc3\x20\x7e\xdc\xaa\xb0\xcf\x83\xe1\x6b\x92\xe0\x1e\xe0\x4d\x41\x93\x06\x7a\x5c\xb8\x2a\x46\xc9\x73\x74\xe5\x1e\x94\x0e\xc2\xde\x3b\x45\x92\xdc\xbf\xcc\xbf\x61\x4a\x7a\xea\x61\x43\x35\x74\x67\xf6\x56\x72\xd7\xd8\x5a\x99\x2d\x25\x5b\x8c\x1c\x10\x0f\xf6\x39\x3c\x68\x4b\xc5\x4e\x5a\x22\xb5\xee\x91\xf9\x2a\xcc\x22\x2a\x5e\x9f\x6b\x53\x60\x01\xb8\x1e\x51\x56\x3f\x46\x58\xac\xa8\x12\x9a\x37\x9a\x22\x13\xf6\x61\x1e\x97\x84\x06\xaf\x70\x44\x45\x53\xa1\xbe\xa6\xaa\x3d\x34\x66\x67\xb1\xa9\x54\xf6\xdd\x46\xa5\xa5\x30\xe9\xd6\x25\xf2\x69\x80\x6a\xd6\x6f\x30\x44\xc3\xb1\x48\xaa\xd3\x4d\xbc\xfb\xe0\xb9\x33\x70\xab\x8c\x08\x8d\x33\xa3\xea\xd7\x13\xf1\xf1\xe3\xce\xef\x7a\x50\xff\xaf\xeb\xf9\x1e\xe3\x4d\xf5\xef\x8f\x7a\xce\xc7\x73\x17\xfe\x2a\x6e\x73\xf7\xd7\x18\x7a\x04\x9d\x04\x5d\x78\xc1\x3d\x85\x4f\xee\xf5\x07\xd7\x36\xb9\xeb\x5c\x3e\x09\x81\x6c\x86\x91\x7d\x88\x83\x91\x60\x62\x3a\x5a\xf4\x3a\x46\xe9\xb1\xe4\x9d\xd3\x97\x35\x1a\x03\x6c\x9d\xee\xf2\xa1\xd8\xc0\x47\xdd\x26\x7f\x60\xcc\xce\x1f\x1e\x74\x8c\x86\x34\xaf\x3c\x98\xe2\xb4\xe6\xae\x29\x3c\x53\x8e\xf6\xc4\x5e\x73\xe3\x68\x8b\x59\xdb\x11\x78\x5c\x2b\x19\x32\xaa\x31\x39\x7b\xf9\x3c\x8c\x59\xc9\xad\xb2\x3b\xbf\x29\xd6\x7b\xe3\x1c\x7d\xa0\x52\x91\xd6\xab\x65\x95\xeb\xc3\xb8\x6d\x73\x73\x15\xd8\x95\x57\xa6\xce\x2b\x0a\xd6\x22\xa5\xac\x5a\x90\xbf\xf8\xaa\xdc\xc0\x9b\x4f\xa6\xd0\x97\x8a\x9e\x84\x85\x12\xc4\x90\x1f\x99\x54\xfe\x0c\x5e\x74\xcd\x04\x29\x6b\xba\x41\xda\x47\x8e\x7d\xa5\xcb\xc2\xf9\xad\xed\xd5\x91\x28\x8b\x29\x0a\xc4\xfb\xf4\xc2\xd9\xcc\xe6\xbf\xda\x1c\x52\x5b\xf6\x69\x5e\x66\x8a\xe2\xd1\x62\x4b\xf1\xf3\xe4\xf5\x1c\x2a\x78\x9c\xd5\xf4\xf7\xbd\x46\xa3\x3e\x15\x7b\x1c\xe6\x37\x53\x90\x78\x3a\x74\x81\x3e\x7c\x2c\x5a\x47\x97\x4f\x8b\x49\xeb\x79\x8d\x7e\xec\x25\x24\xd9\xb7\xb3\xe8\xee\xe4\x29\x37\xca\xc6\x61\x83\x2e\xc2\xe0\x99\x6d\x9f\x2a\x50\x51\x7e\x57\xe5\x7d\x7c\xf7\xa9\xbc\x93\x5f\xc9\xe8\x2f\xb9\xda\x29\xc8\xfa\x37\x27\x8b\x6c\xde\x46\xcc\x4a\xff\x72\x72\xa2\xfa\x4c\xff\x38\x1e\x7c\x49\x7c\xd6\x26\x53\x15\x07\x16\x79\x87\x12\x03\xac\xc2\xde\x92\xdf\xff\x9d\x74\x7d\x14\x89\x4c\x9c\x15\x8a\xeb\xee\x95\x2b\x30\x7c\x6d\x35\x2f\xb6\x56\xc6\x1b\xb9\xc3\x7d\x6a\x94\x4e\x3b\x94\x4e\x60\xba\xc6\x00\x19\x73\x14\x56\x7c\x32\x39\x39\xfb\x52\xaf\xc1\x9a\x5d\xba\xd8\xf0\x7f\x90\x43\x3a\x5f\x2d\x67\x33\xef\x6c\xcc\xdb\xd9\x2d\x31\x0a\xdc\x75\x24\x0d\x3e\xdb\x55\x56\x44\xe7\x7d\x76\x37\x61\x2c\xa5\xba\xb2\xdc\x0f\xc9\x2c\x1f\xcf\x8a\xe5\x8f\x56\x5a\x3c\x36\x50\xbe\x95\xd7\x8b\xda\xd2\x2b\xdc\x6e\x2a\x21\xfc\xc8\xa4\xf0\xef\xd7\x1f\xcf\x1c\x5b\xad\x08\xc8\x72\xba\x51\x17\x68\x25\xa4\xf0\x25\x78\x6e\x63\x0b\x47\x50\x1d\x84\xf3\x83\x91\xbd\xbe\xba\xaf\x8d\xef\xe0\x61\xf3\xb7\xc8\x7c\x4a\xa3\x7b\x7b\x2f\x9c\xcb\xa4\x5a\xe8\xfc\xf0\xac\x25\x9f\x9c\x0b\xed\x84\x23\x85\xab\x2b\xd0\x69\xc6\xd7\x35\xdd\x27\xb2\x37\x6d\xb9\x83\xb8\x32\x8f\xb6\xe7\x3f\x65\xc6\xed\xa9\x53\x1b\xe8\xce\xb0\x3a\x4f\x16\x9f\x07\x6a\x51\xac\xa9\x4f\x87\xa1\x2c\x18\x83\x9f\xca\xd4\x5e\xb0\x25\xb8\x0f\x24\x2f\xc3\x1d\x3d\x70\x98\xa6\x29\xb8\xca\xd8\xf9\xe3\xfb\xd7\x2a\x79\x29\x9b\x7c\x22\xcd\xa0\xc2\x35\xc7\x32\x1a\xeb\x3d\x77\xe6\x5d\xff\xaa\xb3\xec\xcb\xe3\x5b\x19\x42\x65\x96\x6e\x62\x22\x38\xa8\x03\x03\x39\x81\x90\x4f\xf2\x36\x24\xeb\xf4\xc9\x01\x96\x32\xcb\x7a\x50\x15\x24\xf3\x79\x37\xca\x97\x28\x4a\x12\x21\x82\xc6\x74\x56\x71\xa5\x74\x49\x2a\xda\x88\x21\x56\xe2\xe8\x69\xe4\x9d\x0e\x5e\xcb\xa3\x75\x94\x5f\xb6\x3c\xdd\xc2\xc8\x18\x42\x78\x71\x0f\x54\x4a\x5c\x96\xe0\xaf\x18\x0e\xa9\x01\xd6\x39\xeb\x2b\x90\x53\x82\xcb\x49\x7c\x30\x23\x23\x53\x6a\x0f\xfc\x39\x02\x1f\x5c\x26\x47\x91\xb3\x7d\xfd\x3a\x7a\x14\xa1\x48\xf8\x99\x42\xf6\x13\x43\x95\x13\x45\x5d\x3d\x42\xdf\x92\xc3\x54\xd1\xdc\x32\x7c\x75\x74\xaf\x0e\x63\xf5\xf6\xec\xd6\x8d\x24\xb9\xb1\x87\x7f\x63\x4a\x53\xc2\x01\xdf\x3c\xac\x32\xf0\xe3\xa3\x69\x65\x69\xc9\x0a\xa3\xcd\x50\xf3\x63\x14\xfc\x3c\xa1\xb5\xe3\xcd\xae\xd7\x68\x15\xca\xcc\x5c\xbb\x1f\x95\x46\xaf\x65\x5d\x16\x8d\xcd\x7c\x36\xa1\x32\xc7\x47\x97\x9d\xf3\x58\x40\x31\x69\x74\xe9\xde\x74\x72\xc1\x39\x97\x96\x60\xab\x13\x06\xb1\x50\x3a\x1d\xa6\xca\x92\x3f\x22\x9a\x99\xc7\xaf\xc7\xab\x33\x4e\xb9\x76\x4c\x36\xe0\x89\x45\xe1\xca\x87\x1a\x8a\x05\x7b\xce\x6d\x1b\x40\x8c\x1b\xd8\x30\x61\xea\x24\x3e\x5e\x29\xe7\x02\xbb\x38\x1a\xea\xaf\x0c\x95\x7a\xd1\x92\xea\x94\x4a\x0c\xa7\xd6\x2c\x7c\xcc\xb6\x1f\x2a\xb1\xea\x6f\x7c\x68\x7d\x63\x34\x13\x00\x7d\x99\x98\x3e\xfb\x7b\x14\x81\x5f\x26\xcb\x2a\x99\x2b\x0f\x62\xf4\x5e\x8e\x79\x4b\xe2\xeb\x30\xff\x5f\x24\xb1\x26\xe3\x16\x51\xfc\x3a\xe2\xb8\x47\xa4\x8d\xf3\x06\x25\xee\x9d\xd2\xd5\xf9\x7b\xad\xeb\x5a\x46\x1c\x81\x86\xc6\xa0\x89\xaa\x05\x48\x84\x1b\x35\xc0\x1d\x30\xeb\xc2\xfd\x57\xc4\xdd\xb5\xcf\x7c\x6c\xb8\x21\x6f\x73\x3e\xb7\xd6\xfd\xdd\x92\x60\xca\x41\xd6\xaf\x54\xe5\x1b\x09\x7e\x3b\xde\xb0\x9e\x85\x8a\x02\x15\x56\xaa\x29\x84\x5a\xcb\x28\xea\x5c\x37\x7e\x0a\xfa\x42\x71\xcd\x06\x19\xdb\x2d\x34\x35\x58\xdc\x67\x5c\x6e\xa1\xb1\x2a\xcc\x91\x44\xad\xcb\xb6\x2c\x35\x28\x69\x72\x65\x19\x17\x38\x94\x4d\xbb\x50\x36\x5e\x5b\x31\x44\x60\x63\x13\xdf\x11\x91\x26\x16\x0b\x78\x92\x87\xaf\xcd\x56\xc8\xc3\x44\xde\x23\xd2\x95\x4e\x92\x7c\x7e\x1c\xf4\xf2\xc2\x8d\x70\x6a\xf1\xd3\x92\xe1\x67\xab\x3c\x47\x6f\xe1\xb1\x40\x18\x14\xea\x18\xad\x08\xea\x6c\xa5\x3e\x86\xb8\x40\xe4\xcf\x03\xee\xc2\xa3\xe8\x08\xe6\xaf\x88\xb6\x6b\xa6\x66\x6e\x75\xcf\xc3\xa2\xe7\xe8\xa5\x27\xc0\x58\xad\x5d\x76\x84\x6d\xd4\xf6\x2b\x6e\xe4\x9d\x3b\x45\x9f\x28\x02\xa7\x49\x25\xe2\x03\xa4\x25\xad\xf8\xc0\xda\xbc\x68\xce\x7d\xc1\x3b\x1c\x69\xf8\x2d\x8c\x89\x17\x99\xb2\x97\x78\x77\x49\x17\xf3\x2c\x20\xcd\x8f\xb0\x5a\x96\xf5\xbd\x63\x02\x18\xf5\x5c\x4a\xea\x9e\xe4\x83\x68\x3a\xdf\xb9\x61\x76\xf8\x10\x4a\xe8\xa9\xda\xab\xd0\xd1\x98\x4e\x38\xbb\x87\x36\x69\x08\x56\xaf\x31\xed\x2a\x35\x44\x16\xe8\x0d\x18\xf3\x94\x33\xb8\x1e\x02\x35\xeb\x18\xf9\xe4\xf8\x06\xaf\xbc\x65\xe3\x3e\x35\x8f\x60\x2c\xdc\x2f\x1e\xa6\x04\x69\x20\x7f\x80\x59\x3f\x4e\xbc\xc7\x52\x8d\x35\xda\xe2\xc6\x2f\x2f\x4e\xa9\x6e\x3c\x51\x80\x02\xd6\x7b\xbc\x7c\x4b\xbc\xd2\xea\x58\xc7\x9e\x6d\x81\xbd\x58\xe4\x33\xff\xff\x27\xf4\xcf\x63\x9e\x43\x54\x7b\xf7\xe8\x27\xdc\x91\x6b\x65\xd3\xea\x50\x2e\xeb\x91\xd6\xec\x9f\x83\xbb\x06\x8c\x30\x2b\xd0\x5d\xa7\xac\x22\x54\x24\xc6\xd6\xb6\x4e\x99\x15\x2f\xce\xc5\x43\x47\x1f\x18\x9d\x36\xfc\xbe\x5e\xaa\xab\x15\x17\xcf\x8e\x19\x07\x47\xa4\x49\xd5\x6d\xc6\x42\x62\xf6\x1f\xed\xd3\xa6\x01\x2a\x70\x41\xdb\x4b\x66\x78\x02\x0a\xb8\x51\x32\x12\x28\x0b\xfe\x19\x24\x28\xc1\x6f\xde\x9f\x51\xdc\x39\xcb\x72\x9f\xda\xb4\x07\xf6\x78\xfe\xea\xaf\xc2\x94\x8a\x33\x6c\xd6\x94\xb5\xa9\x09\x41\xdb\xaa\x09\xf1\x0f\xdb\xe0\x2f\x62\x1b\xd4\x12\x84\x4b\xbf\x40\xe4\x16\x70\x66\xa0\x79\x68\xa7\xab\x75\x89\xae\xfc\x74\x9d\x7d\x99\x27\x6b\x0f\x0e\x1a\x8d\x28\x6d\xf5\xe5\x31\x5f\x88\x9d\x77\x29\x09\xb9\xcc\x31\xcc\x0e\x3b\x2e\xc8\xf8\xe3\x3e\xdf\xc3\xf3\xba\x95\x9c\x15\x93\x62\x15\xc7\x12\xbc\xc3\xce\x3c\x84\x6b\x2a\xd1\x6d\x88\x73\xd1\xb6\x96\xdf\xd5\xf6\x31\xfe\x0a\xc6\x03\x13\xaf\x7f\x15\x74\x9a\x2c\xf6\x97\x24\xda\xe8\xa5\x97\xc7\xf8\x3e\x8a\x61\xdb\x9c\x76\x5d\x55\xbb\x2a\xf9\x8e\x5d\x0a\x3c\x3b\xa1\xb2\xcb\xf8\x0d\xc0\xe3\xe0\x9c\x70\xa3\x8c\x80\x33\x76\xa3\x50\x59\xba\xe2\x1e\x55\xf3\x32\x02\x51\xfe\x4a\xcf\xaf\x6c\xbf\x50\x26\x39\x25\xb8\xc9\x1d\x7f\x55\xb1\x50\x2d\x9e\xe8\x9e\xea\x98\x72\x57\xe4\xb7\x48\x1d\x83\x6f\xab\x9c\xfd\xc4\x94\xaa\xaf\x5d\xdd\xd0\x3e\x2f\xf5\x55\x6a\x1b\x9e\xa6\x0d\x97\xc5\x0c\xe3\x7f\x3d\x50\x68\x71\xe6\xea\x5f\x55\x05\x80\xa9\xd7\x91\x33\xd5\x04\x1f\x34\x82\x7c\xbe\xaf\xff\x6e\xe3\xc9\x17\xba\x41\xe5\x20\xec\x25\x0e\x5b\x5a\x4c\x48\x74\xcb\xa0\x3a\x27\x56\xc5\x01\x98\xdb\xde\xc9\x18\x10\xb1\x0a\xc4\x73\xed\xef\x08\xb7\xb3\x89\x52\x55\xc3\x40\xdb\x89\x3b\xba\x26\x5d\xb7\x72\x5d\x07\x9e\x21\x31\xf7\xbb\xd9\x26\xb9\x5d\x67\xee\x2d\x34\xdd\xc1\x8a\x2e\xba\x72\xef\x9b\xd6\xee\xca\x84\xbb\x09\x61\x84\xd9\xfc\x1c\x7d\x1f\x0d\x18\xa0\xed\x2b\x23\xd9\x34\xe2\xb8\x4f\xbc\xf4\xf2\x9c\x60\xb3\xa1\xb9\xfe\x0b\x6f\xc8\x3b\xac\xb6\xe8\x02\xbd\x90\xe6\x9f\x2f\x32\x5e\x34\xd6\x3b\x94\x62\xd5\x9d\xcd\x7e\xab\x7d\xef\x9f\xdc\x3f\xf9\xff\x01\x00\x00\xff\xff\xdc\xb1\x0c\xfb\x5d\xaf\x00\x00" +var _nftstorefrontv2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xdb\x72\x5b\xb9\x95\xe8\xbb\xbf\x02\xf2\x83\x9b\xcc\xd0\x74\xcf\xd4\xa9\xf3\xa0\xb1\xdc\xad\xc8\xf6\x8c\x6a\x26\x1d\x57\xb7\x3b\x79\xe8\xb8\x4a\xe0\xde\x20\x89\xd2\x26\xb0\x03\x60\x8b\xe6\x78\x54\x75\x3e\xe2\x7c\xe1\xf9\x92\x53\x58\xb8\x5f\xf6\x26\x25\xdb\x49\x27\x13\x3e\x74\xcb\x24\xae\x0b\xeb\xbe\x16\x16\xe8\xae\xe7\x42\xa1\xa7\x6f\x07\xb6\xa1\xab\x8e\xbc\xe7\xb7\x84\x3d\x7d\xe2\xbe\xfe\x81\xb3\x91\x5f\x7e\x3b\x08\x46\xc4\xd3\x27\x4f\x5e\xbc\x78\x81\x7e\x78\xfb\xfe\x27\xc5\x05\x59\x0b\xce\xd4\x1f\xfe\x45\x7f\x07\xdf\x5f\xa2\x0d\x61\x44\xe0\x0e\xf5\x83\xe8\xb9\x24\x48\xe2\x8e\x20\x39\xf4\x30\x48\xc3\x99\x12\xb8\x51\x68\xcd\x85\x1e\x43\x22\xb5\xc5\x0a\xd1\x5d\xdf\x91\x1d\x61\x0a\xa9\x2d\x41\x6f\x3b\xbe\x47\xf9\x3a\x90\x54\x98\xb5\x58\xb4\x4b\x98\x07\xfe\xf3\x06\x37\x5b\x84\x9b\x86\x0f\xd0\x13\x2b\xb4\xc7\x4c\x49\xa4\x38\xea\xa8\x54\x66\x02\x3d\x13\xac\x81\x32\xa9\x70\xd7\x49\x84\x51\x58\xfa\x02\x06\xc2\xac\x85\x1e\x12\x51\xd6\xd2\x3b\xda\x0e\xb8\x83\x4e\x12\xed\xa9\xda\x52\x66\x46\x0f\xdd\x10\x96\xe8\x3f\xa9\x54\x94\x6d\xa4\x59\xd0\xfb\x2d\x11\x04\x51\x89\x38\x23\x71\xc3\x9e\x08\xb7\xc4\x05\xa2\x0a\x6d\x31\x6b\xf5\xb8\x66\x74\xbe\x46\xb8\xeb\xf4\x42\x91\x3a\xf4\x44\xc2\x50\x7a\xc5\x30\x9f\xed\xb7\xf4\xd0\x85\x0d\xdb\x79\x51\x83\x19\xda\xe2\x3b\x02\x33\x72\x81\x76\x5c\x10\xf4\xb4\x19\x94\x7c\xaa\xc7\xd5\x90\x84\x7d\xf7\x82\x36\x04\x06\x84\x31\x36\x9c\x00\x84\xe2\x5e\xb8\x6d\x05\x91\x92\xc8\x25\xba\x1a\x94\x84\xa1\x57\x04\x0d\x92\xb4\xba\x69\x8f\x0f\x00\x1e\x3d\xeb\x9a\xd8\x55\x72\x81\xb8\xda\x12\xa1\xcf\x54\xd2\x96\x08\xac\x28\x67\x72\x89\xea\x2b\xa5\xac\xe9\x86\x96\x20\x8c\x1a\xbe\xdb\x51\x29\x29\x67\x08\xef\xc2\xd1\x51\x89\x7a\x4c\x61\xbe\xfd\x96\x93\x3b\x22\xd0\x1a\x37\xb4\xa3\x0a\x2b\x3b\xa5\xde\x52\x3f\x88\x66\x8b\x25\x59\x6a\x88\x23\x49\xba\x4e\x2f\x01\x33\x84\x3b\xc9\x51\xb3\xe5\x1a\xe7\xf4\x9a\x05\xbf\xa3\x7a\x3e\x86\x78\xaf\x57\x86\x3b\x83\x14\x7c\x8d\x76\x58\xdc\x12\xd5\x77\xb8\x21\x66\xb5\x82\x34\x84\xde\xc1\x40\x3d\x5e\xe9\x39\xa9\x86\xc5\xb5\x3e\x77\xaa\xc1\x21\xc9\x02\x66\x2f\xd7\xbe\x1b\xa4\xd2\xb0\x52\x02\x33\xb9\x26\x42\x00\xc8\x0c\x84\x34\x84\xcd\x41\xc4\xe3\x22\x40\x27\x02\xab\xc9\x8e\x56\xe3\xc1\x0e\x1f\xf4\x78\xfa\x57\xd2\xea\xb6\xf1\x41\x39\x9c\x33\xab\xb9\xc3\x1d\x6d\xa9\x3a\xe8\x59\x08\x6e\xb6\x30\x50\x0c\x74\x82\x25\xed\x60\xb8\x66\x4b\x9a\x5b\x12\x13\xcf\x3b\x0b\x48\x61\x8e\x7b\x8f\x55\xb3\x05\xd4\x73\x03\x90\x3b\xa2\x89\x49\xd3\x06\xf4\x86\x29\x1d\xa6\xea\xaf\x61\x98\xeb\xd7\x1a\xda\x92\x10\x44\x61\xab\x07\xb4\xa7\x72\xab\xbf\x5b\x0d\x07\xbf\x4f\xbd\x13\x45\x76\x66\xfa\xdf\x05\xf0\x9b\xe1\x0d\x1e\xe1\xcd\x46\x90\x0d\x56\xfc\xc8\x8a\x12\x8a\x85\x61\x81\x8e\x28\x53\x44\x10\x07\x52\xdc\x34\x44\xca\x19\xee\xba\x79\x60\x3a\x19\xd3\x42\x9f\x9e\x3c\x41\x08\xa1\xb8\x2d\x61\x8a\x2a\xcb\x8b\xae\x04\xc1\x8a\xd8\xc9\x27\x5b\xfe\x48\x76\xfc\xce\xb7\x84\xa6\x7a\x91\x61\xb2\x6b\x46\x15\xc5\x1d\xfd\x2f\xd2\xfa\x5f\x2f\x63\x36\x21\x88\xe4\x83\x68\x08\xda\x62\x89\x56\x84\x30\xd4\xc0\xec\xed\xd2\xb7\x7f\xa3\x77\x0f\xd4\x36\xec\xdc\xa9\x31\xbe\x47\xe4\x63\x4f\x1a\xe5\x8e\x6b\x2d\xf8\xce\x60\x6d\x18\x3d\x8c\xf1\x03\x57\xc4\x72\x4a\x82\x5a\x8e\x18\x57\x48\xf6\xa4\xa1\xeb\x83\xa6\x14\xcb\x07\xce\xf5\xaf\x0d\x66\xfa\x57\x0d\x68\xb9\xe5\x43\xd7\xea\xc6\x61\x24\x03\x9c\xd6\x2f\x5c\xba\xe1\x80\x25\x69\xaa\xdb\x33\x7d\xa8\x66\xc4\x05\x8c\x63\x51\x5b\xc3\x2a\x80\x01\xaf\x95\x26\x3c\x3d\x9c\x26\x2b\xaa\x0f\xfe\x20\xa3\x15\x00\xf2\x85\x89\x2d\x94\x2f\xef\x30\xed\xf0\xaa\x23\x6e\xe3\x19\xcf\x6a\x89\x22\x62\x47\x19\x01\x1c\xb4\xcb\xf0\x83\x58\xb2\x34\x6b\xb4\xff\x88\x4e\x63\xb6\x5c\x2e\xa9\x92\xa8\xe3\x0d\xac\x6a\x8e\xb0\x11\x4d\x8a\xee\x34\x4d\xfb\x71\x1c\x7e\x6b\xec\x5c\x0d\x0a\x71\xd6\x1d\x4c\x5b\xac\x50\x2f\x48\x43\xa5\xde\x2f\x20\x89\x93\x22\xee\x6b\xe0\x18\xb8\xd1\xe3\x87\xdd\x5d\x5b\xc6\x6d\xf8\x9a\x86\x94\xcc\x17\xb7\xdf\xd2\x8e\x24\x33\x53\x69\x58\xc1\x02\x45\x0b\x33\x2c\x95\x03\xaf\xd9\xf9\x09\x4a\x34\x06\xac\xaa\x62\xea\x4c\xfa\x6f\x7f\xb4\xa7\x7c\xfd\xfa\x1c\xfd\x7c\xcd\xd4\xff\xfe\x5f\xf3\x27\xa3\x27\x12\x61\xb8\x5b\x61\x8e\xd5\x80\x0e\xb8\x6d\xcd\x59\xe1\x1a\x25\x04\x98\x68\x46\x7f\x69\x0e\x50\xef\x73\x20\x12\x81\xb0\xc5\xc2\xb2\x40\xb4\xdf\x12\xc3\x53\xcd\x6e\xa8\x44\x64\x47\x95\x22\xed\x42\x9f\x4a\x72\x5a\x52\x8b\x13\x77\xe4\x56\xc0\x4a\xc3\xb8\x04\x59\x13\xa1\xd7\xa3\xf1\xb4\xd9\x62\xb6\x21\x88\x0f\x4a\x0b\x37\xdb\x21\xd0\x51\xc6\x49\xf6\x5c\xdc\xae\x3b\xbe\x5f\x20\xc9\x81\xdd\x62\x41\xd6\x43\xa7\x07\x33\xbc\x13\x56\x38\x48\x0d\x8b\x53\xce\x23\x07\xe9\x0c\xda\xe9\x4f\x38\x93\x4b\x47\xac\xf6\x8f\x85\x6f\x63\xa1\x5e\x1e\x5a\x68\xc2\xd6\xea\xfd\xa1\x27\xe7\x48\xff\x37\xf9\xfa\xe7\x9f\xa3\xf6\x28\xfe\xa5\x36\x8e\xd6\x30\xde\xe1\x83\x46\xf0\x3f\xe0\xa1\xab\x0e\x0a\x6d\xb4\x12\x72\x8e\x7e\x7e\x4b\x3f\xc6\xdd\x9b\x41\x2a\xbe\xd3\x03\xff\xa4\x04\x65\x9b\xef\xa2\x9f\xbc\xa8\xbd\x04\x49\x5b\xe9\xec\x5b\xfc\x68\xe5\xb7\x3c\x47\xbf\x58\x68\x7c\x88\x86\x22\x1f\x7b\x2a\x0e\x6e\xf1\xf0\x75\x89\xbe\x57\x5c\x2b\xa1\x2a\xe2\x4c\xef\x23\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\xcb\x79\xf7\x60\x94\xf8\xdb\xc2\x08\x4f\x1d\x27\xa3\xc3\xcf\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\xfc\xf0\xf6\xfd\xb1\xb3\x4f\xa7\x9d\x89\x7c\xfd\x0b\x3f\xff\x4f\xb8\x23\x57\x83\xdf\xfd\xbc\xa6\x6f\xe8\xbf\xf0\x86\xbc\xc3\x6a\x9b\xa2\xb3\x15\x68\x5a\x18\x49\xd3\xc6\x9a\x1a\x55\x65\xc4\x0a\xfe\x95\xed\xe8\x30\x38\x5e\x7d\x47\x54\x7d\xde\x73\x14\x2f\xa2\xb2\xc6\x77\xc3\xaa\xa3\x4d\xb1\xc4\x1e\xbe\x0e\x2b\xd5\x0a\x60\xb2\xba\x8e\xb2\xdb\x63\xeb\x08\x63\x9f\xa3\x68\x9e\x68\x19\x06\x88\xd1\xf1\x4a\x25\x86\x46\xef\xbd\x17\x44\x6a\x58\xb3\x0d\xc2\xfa\xac\x69\x4f\x89\x33\x52\x9c\xb6\xaf\x1b\x68\x53\x86\x08\x85\xa9\xb3\x05\x72\xed\xa2\x37\x54\x60\x78\x3f\x46\x0a\xcc\x58\x2a\x91\xe4\xdd\x04\x2b\xb0\xeb\xb0\x0b\x44\x9f\x3c\xda\x3a\x00\x79\xf4\x33\x76\xa2\x9f\x67\x99\xb4\xac\x6a\x7a\x0a\x8c\x3d\xaf\xe7\x69\xf1\xb4\xa6\xac\x85\x51\x80\x58\x4d\x0f\x50\x1f\x3d\x20\x22\xc1\x02\xfa\x9a\xb4\xba\x07\xbb\xd5\xcc\xcd\xe3\x8a\x9b\x6b\x4d\xb4\xda\x4e\xad\xe9\xb4\xc7\x07\xaf\xf6\x61\x46\xfb\xa1\xd3\x68\x94\x8e\x28\x79\xb2\x10\xbf\x38\x83\x97\xcd\xa0\xbc\xcd\x7a\xe0\x83\x39\x82\x0d\xb1\xab\xb4\xd0\xc2\xa6\x2f\x4b\xc6\x6d\xb4\x69\xed\xa0\xb5\x5c\x71\x21\xf8\x7e\x36\x3f\x5b\x82\xd6\xb7\x74\xd3\x68\x62\xc8\x60\xf7\xde\x18\x7d\xa0\x4f\xb6\xda\xfc\x22\xeb\x35\x6d\x34\x16\x74\x07\xbd\x33\x8c\x64\x23\x68\x1f\xf5\xca\x31\x31\x90\xef\x95\xb3\xfc\x0e\x2f\x9f\x7d\x4a\x3c\x1a\x4b\x47\xec\xf7\xaf\x9e\x14\x87\x6c\xad\xcb\x0c\x93\x52\x8f\x88\x81\x38\xed\x3a\xbd\x4e\x67\x3b\xab\x08\x43\xc6\xd7\x87\x13\x06\x9a\x4e\x4f\xbd\x06\x28\xe2\xef\xfd\xdf\xfa\xf7\xd9\x03\x37\xb8\xc8\x66\x9c\x47\x78\x0d\x02\x81\x74\xeb\xa5\x47\xec\x0b\xbf\x83\xb2\x91\x05\xcc\x45\x4c\x73\xfa\x73\xff\xc4\xfc\xb7\x90\xeb\xaf\x89\xc2\xb4\x93\x25\xa5\x6b\xb3\x10\x53\x66\xe8\xdc\x36\xfe\x46\xa2\x16\x2b\x7c\x94\x3a\xd3\xb1\x2b\x44\x1a\xf1\x2b\x4b\x52\xde\x78\x07\x16\xa0\x7f\xd6\xd6\xfd\x18\xd1\x5a\x12\xb4\xb4\x65\x2d\x21\x67\x3b\x19\x9d\xb9\xa5\xeb\x35\x11\xa9\xf6\x5e\x12\x96\x1e\x87\x4a\xf4\xfb\xff\x58\x6a\xdb\x62\x0f\x2a\xb2\x40\x3b\x7c\x4b\x10\x55\xa6\x85\xb6\x14\x14\xfa\x4d\x83\xd9\x6f\xfc\x14\xe9\x40\x86\xd4\xbc\x30\x10\xe4\x8e\x4a\xea\xc5\x41\x0e\xa3\x3b\x2c\x22\x65\x24\xe8\x08\xc9\x90\x7f\xdc\x12\xd0\x9b\x60\xe8\x42\xcb\xf2\x4a\x8a\x66\x31\xde\xee\xac\x4d\x94\xa9\x33\xc5\x41\x68\xc5\xc3\x8b\xe1\xcc\xa7\xb8\x04\x6f\x86\xb5\x94\x56\x44\xaf\xc0\x38\x2b\xc6\x09\x27\x51\x92\x8a\xc9\x9c\xe2\x85\xae\x5f\x47\xa2\x5f\x5b\x6c\xcd\x16\x18\x0a\xd8\x87\x20\x3f\x94\x73\x03\x39\xef\xc4\xd4\x94\xb1\x02\x56\x4c\x3a\x30\xfa\xe7\x81\x20\xda\x6a\xa1\xb5\xa6\xc1\xa0\xf5\xbb\x03\x1e\xa1\x59\xa6\x36\x2b\x27\xf7\x36\x31\x4d\x0c\xc8\x0a\x1f\xb2\x2c\x4a\x7a\x11\xb9\xc3\x2d\x49\x10\x3c\x9f\x6e\x5c\x51\x1c\xe3\x86\x89\x08\x06\x86\x67\x61\x68\x5c\x18\x94\xb4\xe9\xca\x8e\xcc\x1d\x2b\xa0\x25\xff\x77\x63\x1a\x71\xd7\x52\x8d\xf2\x9c\x69\x08\x38\x6e\xbc\x22\x6a\x6f\x4c\x02\xab\x23\xc8\xe9\x09\xaf\x06\xa5\x0d\x14\x2b\xd9\x3f\x24\x53\x5e\x76\x1d\xdf\x47\x24\xdd\xe2\xbe\x47\x8a\xe0\x9d\x8c\x9d\x99\x46\x39\xd6\x4c\x88\xb2\x8d\x74\xa2\xb8\x35\xd4\x33\x50\xb9\x25\xad\xfd\x31\x23\x5f\x8d\x04\x40\xbd\x5b\xd2\xf5\x60\x81\x1a\x91\xdb\x29\x22\x9c\x03\x45\x10\x90\xcd\x56\x88\x50\xe1\x55\xf1\x71\xe2\x2b\x94\xf5\x64\xda\xab\xc8\x59\xea\xbd\x35\xca\xd8\xc7\x1d\xa6\x3b\xd2\xa2\xd5\xa1\xe6\xec\xf5\xfa\xf3\x38\x3c\xc7\x6c\x81\x64\x01\x6f\x40\xd1\xd7\x47\xd6\x45\x4e\xbc\xda\x70\x99\x49\x90\x8c\x72\x2d\x84\x5e\xa0\xa4\xab\xee\x00\x84\x9b\xb0\x2c\x2c\x03\x0b\x5a\x56\xe5\xa5\x9d\xcb\xd1\xf9\x1c\xad\x07\xa6\xc7\x79\xcf\x9d\x0b\xb6\x9d\x55\xe5\x61\x60\x82\x17\x48\x89\x81\x44\xb2\x2e\x59\xe0\xcf\x7d\xeb\xa1\x66\x31\x24\x62\x06\x06\x1f\x82\x5f\x2c\x20\x4b\xe2\x32\x8c\x50\xef\xb2\xef\x65\x2a\x97\x7e\x87\x3d\xd7\x52\x1c\x31\x6a\x1c\x1b\x1d\xc1\x22\xd1\x9d\xc6\x76\x7a\x65\xd1\x64\x56\xe0\xcb\xbc\xb2\x6d\xd7\x08\x5d\x78\xfc\x1a\xdb\xf9\xf5\x09\xaa\x0a\x9a\x25\x53\x8c\x58\xb9\x68\xca\xd2\x45\xe3\xd6\x2e\x3a\xd1\xe2\x75\xed\x32\x1e\x90\x35\xa8\x08\xcd\xb4\xc5\x84\x75\x8c\x4e\xb2\x90\x51\xdd\xfe\xd5\x9f\xb9\xf3\x87\xbb\x4f\x2f\x48\x86\x96\x06\xbe\xe8\x0f\xb8\xa3\x1a\xe5\x8c\xcb\x0d\x46\x2b\x9a\x99\xaf\xd1\x2b\x3b\xcb\x6c\xa3\xd1\x40\x68\x04\xfb\x6d\xc7\x9b\xdb\xd9\x7c\xa9\xe8\x8e\x48\x85\x77\xfd\xfc\xbc\xe8\xad\x3f\x4f\x33\x27\xdb\x32\x55\xba\x96\xfa\x70\xcf\x41\x3c\x6c\xe8\x1d\x61\x6e\x46\x3f\x2c\xfa\xd3\xcc\x7c\x35\xf7\x32\xc3\x8a\x8b\xf5\xa0\x06\x41\xce\x9e\x1e\xdd\x5b\x47\xd8\x46\x6d\x93\x68\x5a\x33\xa8\xa2\x9b\x3b\xd8\xa5\x6d\xff\x0a\x7d\x7b\x7e\xe2\xf2\x9d\x4e\x08\x2b\x34\xae\x73\x85\x3a\x82\xa5\x82\xb8\x8f\x13\x35\xda\x08\xf2\x62\x26\x5d\xf7\xfd\x93\x92\x84\x62\x44\x42\x17\x09\x5e\x4d\xb3\x99\x35\xee\x24\x29\x9b\x58\xa2\x41\x17\x8e\x7c\xaa\x4d\x34\xf1\x98\x26\xfa\xaf\x6a\x13\xd7\xa0\xf6\x73\x8d\x8c\xf4\xe2\x2b\x5f\x3f\x8c\x69\x84\x46\x19\x79\xe8\xc6\xd9\x57\x65\x27\x8b\x56\x17\x35\x44\xf7\xeb\x86\xa8\xe9\x85\x47\x84\xf4\x48\xb4\x28\xc4\x5d\x03\xa6\xaf\x89\x22\x70\x85\x3b\x1b\x97\xb5\xf1\x1a\x40\x2c\x99\x74\x03\x35\xda\xe9\x29\xc7\x96\xfa\xe2\x05\x7a\x47\xc4\x9a\x8b\x9d\xb3\xdf\xac\xe3\x99\xb3\x24\xf8\x68\x02\x31\x8d\x5f\x4e\x14\x21\x86\x95\x68\x44\x33\xda\x56\x24\x02\xf4\x67\xcd\x05\xfc\x48\x59\xb6\xeb\x2a\x87\xf8\x9d\xb6\x2f\xe4\x20\x88\x8d\xe3\x20\x63\x7d\x8f\x58\xa7\x51\xc7\x3f\x12\xa3\xad\xba\x88\x23\x95\x08\x6f\x30\x65\xc1\xc5\x5f\x71\xa3\xc4\x9f\x66\x50\xcb\xc2\xe6\xaf\xf2\x97\xef\xbe\x43\x3d\x66\xb4\x99\x9d\x46\xa9\x57\xd6\x06\x33\x1b\x71\x53\x3c\x2d\xc7\xd6\xda\x5c\xdb\xba\x33\xf5\xba\x2b\xcf\x8f\xbe\xca\x46\xdc\x61\x87\xbf\xff\x09\xb6\x84\xcb\x23\xbf\x4f\xfe\x85\xa5\x24\x42\xcd\x26\x06\x7d\x85\xbe\x5d\x7e\xbb\x28\x1a\xec\x88\x94\x78\x43\x4e\x65\x58\xef\x23\x43\x36\x30\x2d\xc6\xd9\xf3\xff\x22\x82\x9b\x9d\x65\x9c\x75\x5e\x90\x03\x4c\x63\x03\xe3\x16\x13\xdb\x08\x15\x47\x78\x43\x0e\x9a\xe3\xb6\xbf\x71\xfd\x05\xd3\x9f\x99\x28\xf1\x1a\x37\xc4\xea\xd4\xc6\xfa\x1f\x24\x44\x6b\xac\xeb\x31\xb4\x01\x3b\xdb\x8e\x35\xee\x13\xf0\x66\x7a\xe8\x98\xcc\x9f\xb9\x07\x0c\x06\xfd\xf0\xf6\x7d\x69\x73\x00\xea\x9b\x93\xf4\xa6\x0d\xde\x11\xf0\xa2\x59\x65\x5f\x1b\x75\x2e\x15\x26\x0c\x15\xa1\x38\xb8\x70\x82\x01\xa8\x09\x68\x25\x09\x53\x0b\x20\x61\xf2\x11\xef\xfa\x0e\x82\xf5\x54\x05\x7b\x5b\xd3\x12\xba\xa3\x18\x61\x66\x82\xf1\x5d\xbc\x69\x54\xd7\x68\x61\xf3\x5a\xc5\x8b\x96\x71\x8e\x9e\x7d\xaa\x99\xd9\xf7\xdf\xa5\x9a\x9b\x13\x3a\xc9\x97\x4e\x1f\x8e\x83\x9b\x0b\xb4\x1a\x0e\xce\xa7\xae\x52\xab\xce\xc3\xad\xc7\x07\x03\x9d\x15\x61\x64\x4d\x1b\x8a\x05\xb5\xb9\x05\x82\xa8\x41\x30\x19\xb1\x0e\x4b\x89\xab\xe1\x10\xf3\xa0\xa9\xfd\xb9\xc5\xa6\xd4\x65\x65\xf3\x39\xfa\x3e\x73\x7b\x81\x98\xba\x8f\x42\x2e\x28\x0f\x4d\x18\x39\x7e\xa2\xef\x2c\xd2\xf1\xe6\x7a\xb2\x2a\x78\x53\xe8\x6e\x88\x8a\xdd\x5e\xee\xeb\xb7\x44\x35\x5b\x67\xd0\x5a\xd7\x95\xd5\x6d\x8a\xf3\x4e\x4c\x3d\x4a\xf6\x00\x88\x30\xae\x3e\xe9\xcc\xc1\x96\xaf\x00\x4c\x5a\xd2\x5e\x95\x51\xba\xd1\x45\x61\xd3\x25\x4e\xd0\x91\x69\xee\x8c\x96\x42\xc1\xac\x74\x5c\x38\x33\x57\xae\x01\xb9\xdd\xc9\xdf\x30\xda\xdd\x80\x77\x38\xee\x4a\x25\x1a\x7a\x8d\x0b\x1b\x81\x57\xda\x0e\xc5\xec\xc0\xd9\x88\xc5\x19\x03\x60\x7c\x5b\x1a\x26\xbf\x9c\x74\xa4\x1f\x32\x6a\xd8\x62\x69\x81\xf9\x5b\xd2\xf0\x1d\xf9\xb7\x2d\x97\x2e\x12\xe9\x11\x9d\x74\x9d\xd4\x62\xd0\xd3\x27\x69\x1d\x85\x5b\x4f\xbd\xe6\x19\xd6\x55\xd0\x06\xb0\x1d\x26\x81\x03\x1a\x9f\x05\x0f\x55\x68\x47\x30\x0b\xc6\xed\x0a\x56\x23\xd1\x46\xaf\x47\xc3\x1e\xf8\x04\x1f\x54\x9d\x6e\xf4\xf0\xaf\xdf\xbc\xfb\xf1\xcd\xd5\xe5\xfb\x37\xaf\xcf\x6d\xb4\x42\x4f\x64\xe2\xf6\x06\xd9\xa8\xd4\xa0\x6c\x94\x3d\x05\x49\x76\x98\x29\xda\xe0\x0e\x9c\xeb\x77\x44\xe8\x8d\xfd\xbf\xff\xf3\x7f\x93\x65\x6a\xfb\xf7\x26\x99\xc8\x2b\x04\x16\x06\x52\x69\xe6\xe9\x20\x31\xa3\x4b\xb2\x44\x3f\xfc\xfe\xbd\x59\x3b\x69\xe7\xc0\x0d\xdc\x76\xf3\xce\x86\x45\x26\xe3\x9b\x11\xae\x7f\xf2\x03\x2c\x0d\xaf\xa1\x06\x55\x79\xdf\x73\x49\x4d\x2a\xc1\xde\x79\x78\xfd\xbe\x98\xe6\xda\x74\xd7\x77\x90\x47\xf6\x3e\xfa\x29\xe5\xd3\x12\xdd\x92\x5e\x21\x2c\x9f\x53\x70\xf4\xe0\x3b\x4e\x5b\xb4\x12\x04\xdf\x42\xc2\xd3\x47\xe7\x32\x66\x8a\x6c\x6c\x86\x9d\x0d\x8c\x74\x82\xe0\xf6\xa0\x51\xba\x27\x4c\x6a\x5d\xce\xc6\x83\x32\x67\x3e\xb8\x2e\x38\x5b\xa2\x9f\x25\x41\x37\x54\x02\x6e\x59\x6c\x9b\xcd\x6f\x20\x2d\x92\xe0\x76\x61\xbd\x94\x29\xc4\x03\xa0\x42\xae\x49\x4a\xe7\x06\x38\x25\x70\xa9\x0a\x87\x02\x49\x1a\x47\x28\x6b\x84\x04\x34\x4d\x81\x5f\x37\x83\x5b\xbc\x8b\xe4\xa7\x1f\xd3\xf5\xd3\x75\x9c\x83\x66\x4f\x9b\x71\xd4\x71\xb6\x21\x22\x26\x9c\x90\x76\xf3\x8d\x44\x0d\xef\x3a\x52\x9e\x97\xc1\x89\x2c\xf5\x26\x06\x41\x70\xd4\x7b\xab\x6a\xbe\x48\x80\x93\x88\xe6\xd4\x5b\x0f\xb0\xf2\x9e\xb2\x14\xdd\x1a\x2e\x04\x69\x54\x77\x78\xae\x51\x4b\x8b\x35\xe0\x8e\x60\x1c\xea\x73\xbf\x19\x85\xdf\xcd\x22\x23\x1b\x7d\xca\x5a\xf0\x7b\x5a\xb3\x24\xea\x08\x71\xc4\x8b\xe9\x4f\x2a\x47\xa1\xf8\x80\x2a\x3a\x58\xd0\xbe\xb2\x58\x21\x30\x7b\x2d\xa4\x8d\xa3\x1a\xfc\x82\xc0\x5f\x20\xe2\xcb\xa2\x10\x18\xb6\x16\x7e\xc2\x4e\x17\x7e\x60\x0d\x5e\x1f\x0b\x15\xbc\x21\xa4\xb5\x72\x0d\x1b\xc7\xab\x1b\xbc\xef\x68\xf0\xda\x4a\x72\x07\x79\xca\xb9\xf7\x16\x12\x24\xf3\xcd\xfb\x95\xdb\x4d\x9d\xa7\x1a\xde\x02\x99\xe4\xe8\xa5\xfe\x1f\xb8\x39\xcb\x88\x90\x84\x24\x67\x34\xd3\xaa\x72\x10\x12\x0b\x50\x9d\x1b\xc8\xf8\xf8\x38\xcf\xa5\xb2\x5e\x7c\x7e\x18\x5a\x1f\x36\x4e\x4b\xdb\x78\x5a\x10\x5f\x46\x82\xc0\x80\xdc\x28\x53\x71\x78\x49\x71\x48\x73\x6e\x05\xde\x87\x98\x05\x55\x5b\xf8\x87\x01\xfd\xf5\x6b\x63\x1f\x52\x15\x13\x47\x35\x6c\x9a\xce\x26\xad\xcd\x57\x99\xea\x37\x98\x1d\x7e\xa3\x27\x83\xac\xa9\x03\x1f\xa2\x10\x93\x4b\xa0\x02\x5e\xb2\xa1\x77\x39\x99\xcb\xa1\xd9\x22\x1c\xcf\x06\xba\xba\x9f\x07\xf2\xcb\x3a\xc8\x24\x34\xa6\xa4\x59\x78\x4b\x4c\x7e\x97\xb3\x4e\xa9\x0d\x8e\x0c\x12\xfe\x36\x6c\x20\xa5\x17\x7c\xf0\x21\x32\xf0\x5a\xcb\x71\xd9\x07\x7c\x9e\x92\xae\x35\x29\xb2\x83\x24\x12\xdd\x54\xf4\xe1\x77\x46\x46\x8b\x45\x19\x91\xba\xf2\xb0\x35\x98\x75\x7f\x13\xf2\xfd\x92\xb9\x6e\xb4\x39\x76\x83\x7a\x2c\xf0\x8e\x28\x93\x64\x4e\x7a\x55\x9f\x30\x8c\x7a\x7f\x03\xe2\x48\x12\xeb\xf0\x05\xc9\xc2\x4c\x7e\x74\x77\x38\x87\x98\x79\xae\xa1\xf5\x58\x9a\x53\x64\x58\xeb\xf9\x44\xa0\x9b\x30\xe0\x8d\xd9\xeb\xcc\xf0\x15\xcb\xad\xbc\x81\x12\x9f\x8f\x6e\x46\xa5\x1c\x8c\x1f\xda\xb0\x5a\x39\xcf\x92\x0b\x5c\x0e\x80\x94\x74\xc3\x76\x36\x99\xcf\x24\xf9\xad\x48\x83\xf5\x39\xdd\x4c\x6c\xef\x06\x35\x9c\xad\xb9\x30\x61\x93\x15\x57\x5b\x74\xe3\xa0\x7d\x53\xcc\x74\x93\x43\xfb\x66\x89\x2e\x3b\xba\x61\xde\xde\xd8\x73\x67\x2e\x80\x1d\x06\x7b\xd8\x3b\x1c\xc5\x41\x50\xdb\x6c\x41\x63\x61\x55\xa4\xd2\xb8\xfc\xde\x6a\x8e\x77\xec\xcc\xd2\xbc\xf4\x71\x7f\xbb\x8d\xe2\xb9\x1d\x07\x36\x93\x98\x1a\x78\x50\xdb\x59\x31\xdf\x1f\x2d\x59\xce\x6b\x16\xdc\x43\x30\x36\xcb\x66\xb8\x9c\x4e\xc0\xcf\xf4\x7b\x03\x1b\x41\x10\xee\xb5\x26\x4b\x5a\x94\x46\xb2\xb8\xd3\xf9\xe1\x50\xe2\x44\xfe\xa0\xdb\x1f\x01\x50\x3c\x79\x0c\xa1\xc7\xa9\xee\x57\x9a\x60\x20\x90\x65\x45\xc0\x4a\xcb\x52\xab\x36\x51\x19\x07\xfd\xb3\x3c\x40\x37\xc2\x9b\x9d\xe6\x4d\x79\xee\x9f\x09\x15\xd3\xc4\x3a\x43\x7b\x9b\x70\xe6\x90\x07\xb6\xd2\x26\x31\xa8\x2c\x03\x80\xb2\x26\xe8\x22\xb3\x39\xe4\xc5\xca\x28\x55\xd6\xcb\x4d\xef\x04\x6e\xb0\x24\x85\xc5\x60\x42\x5e\x7c\x43\x1b\x8b\xea\x72\xe1\xb2\x00\xe2\x3c\x73\x11\xe7\xc1\xcf\x8c\xca\x1d\xfd\xdc\x74\x04\xb3\xa1\x9f\xcd\x8f\x84\x8c\x34\x08\x35\x5c\x57\xb8\xb9\x2d\x42\x63\x21\x49\x3a\xce\x1a\x08\x69\x78\x21\x05\x73\xaf\xe5\xce\x46\xb3\x21\x0a\x17\x76\x1a\x0f\xdb\x2d\x11\x64\x99\x8f\xfa\x7b\x6d\x58\xed\xa9\x24\x13\x1d\x69\xe4\x0c\x98\x17\x23\x38\x85\xcd\x71\xaa\x3d\x71\x67\x9e\xea\x8c\x6c\x02\x66\xf9\x98\x5c\x54\x21\x88\x8a\xc9\x4d\x76\x87\x65\x44\x70\x5e\x30\xf7\xd0\x28\x2e\xc2\x61\xa9\x2d\x97\xc1\x18\xc9\x7c\xbc\x74\x8d\xce\xc0\xdd\x66\x35\x8b\x28\x34\x50\x7a\x79\x35\x26\x4d\x64\xac\xc6\x9f\x4a\xf6\x2a\x4c\x33\x0c\xb4\x2d\x1d\x92\x68\x34\x97\x35\x59\x5b\x1c\xd4\xa8\x0f\x12\xa5\x86\xd4\x77\x55\xef\xe6\x23\x84\x49\x27\xfb\xed\x68\x17\x13\x39\xcc\xbb\xe8\x6f\x47\xbb\xd4\x3a\x8c\x35\xaf\xc7\x18\x53\x80\x54\x9a\x4c\x0c\x66\xb2\x1f\xca\x11\xf4\xf7\xf5\x6e\x21\xf8\x98\xf4\x72\x5f\x8f\x74\x2a\x42\x92\x69\xe7\xec\xe7\x63\x83\x84\xbc\x5e\x46\xbb\x7a\x63\x17\xde\x4c\xe6\x19\x89\x52\xce\x47\x3c\xea\x99\x3f\xad\xee\xb2\x35\xa6\xa6\xd5\x6f\x21\x78\xde\x90\x22\xf7\xc6\xa6\x0a\x90\xd6\x5f\x44\x5c\xfe\x05\x5c\xb5\x5e\xb1\xb5\xb6\x1d\xa3\xdd\x17\x74\xe5\x8e\x72\x64\xeb\x7c\x12\xb1\xde\x17\x65\xce\xdf\xf1\x5b\x93\x1a\xef\xd6\x84\x04\xb6\x49\x60\x98\x99\x60\x8c\xd6\xa6\x16\xf9\xe8\x2e\xcf\x85\x37\xe1\x2e\x57\x2f\xf8\x8e\x6a\x05\x5b\x0f\x63\x2c\xc6\x83\x05\xdf\x8b\x81\x85\x7c\x13\x9f\x7a\xed\x3e\x74\x0d\x5a\x80\x5b\xea\x8f\x64\x8d\x2e\x7c\x7c\xb2\xd4\x9c\x7c\x0c\xa9\xc2\x02\xed\x50\x02\x86\x88\x06\x5c\x06\x28\x96\xf4\x5d\x1b\xc8\x0e\x26\xc8\x7a\x49\xe5\x35\xd3\xea\x73\x43\x8a\xbe\x9a\xa0\xe7\xe8\xd9\x33\xd3\xae\x45\x17\x17\x15\xf6\x31\x32\xba\xfe\x58\xb8\x0b\xb2\xae\x36\xb9\x2f\xbe\xbd\x9f\x88\x37\x85\x43\x1c\x23\x9a\x11\x27\xf4\xbf\x11\x95\x3b\xa0\x4f\x0e\x36\x9c\xe4\x88\xce\x20\xe0\xbd\x1b\x01\x52\x13\x2b\xfe\x87\xd3\x7a\x42\xf3\x9d\x80\x6c\x5d\xa9\x1e\x03\xf4\xff\x14\x7f\xf7\xa8\x7b\x1b\x72\xed\xc0\x8a\xe1\xa5\xe3\xb8\xe2\x55\xf1\xbf\x8f\xb9\x67\xeb\x4e\x70\xad\x15\xd7\xfc\xdf\x93\x8e\x74\xc3\x44\xd1\x2c\xf8\xbd\xa7\x3d\xc7\x9f\xe7\xd8\xcd\x70\xea\x0b\x72\x67\x7b\x12\xa7\xf3\xe5\xb3\x8b\x84\x9d\xa1\x31\x9e\x97\x26\xc9\xdc\xff\xc3\x35\xfd\x68\xd7\xf4\xa3\x3c\xcd\xbf\x22\x8c\xb9\x38\x11\x63\xa6\xb2\x37\xff\x62\x91\xf0\x48\x8e\x38\xae\xe3\x52\x6e\x41\x7d\x0a\xb1\x72\xf2\x51\x09\x7c\x2c\x5a\x6e\xe6\x33\x55\x17\x3a\xe0\xa2\x43\x8f\xda\xa1\xef\x68\x83\x95\x5f\xb4\xf4\x1e\x06\xaa\xc8\xce\x26\xd9\x57\x12\x66\xff\x06\x43\xee\xa7\xa5\x4b\x8e\xd8\xd3\x17\x36\xd7\xee\x61\xa9\x8f\x7e\x80\x34\x0f\x47\xab\xd8\xce\x25\x94\x3a\x41\xca\x14\x47\x77\x59\x6c\x4c\xcf\xac\x59\x91\x0f\x4c\xd0\x8c\x56\x69\x93\xa6\xfa\x0a\x3a\x9b\x08\xc3\xf5\x6b\xf4\x27\xb3\x80\x58\xa5\xb3\xf4\xe5\x23\xa7\x00\x79\x8b\x90\x90\xc8\x8c\xa5\x4f\x8d\x7c\xf9\xa7\x99\xdb\xd3\x86\xc0\x72\x67\xf3\x65\xc8\x7f\x9e\x1b\xae\xaa\xac\x99\xf6\xe7\x81\x00\x47\x04\x4f\xee\xcb\x3f\x1d\xdf\x7b\x3c\xd4\x72\x1c\x9c\x2b\xdc\x69\x58\x16\x3a\x79\x30\xb5\xff\x9a\x20\x74\xb0\xba\x83\x3b\x7e\x2d\x27\x06\x24\xf6\x06\x54\x06\x1a\x93\x0d\xc8\xd7\xa8\x06\x1d\xfd\x5b\x0d\x0e\x15\x63\xfb\x6b\xe4\xfe\x9e\x06\x97\xb3\x84\x3a\xa8\x34\x2e\x81\x1a\x35\xc0\xb2\x4d\x15\x08\x23\xfd\xd1\xa3\xd7\xe3\xef\xfe\x68\xf0\xb2\x6f\x6c\x62\x5c\x08\x66\x90\xd6\x94\x9b\xc8\xb3\x77\xe3\x7f\xe5\x86\x6f\x48\xa3\x8c\x4f\xbd\x22\xc9\x4d\x92\x64\x6a\xe8\xa6\x87\x97\xdf\x37\x18\x9f\x97\xae\xa7\x5d\x34\x26\x91\xb0\x9e\xf7\x79\xbd\xce\x2c\x1d\x7b\x79\x96\x82\x9d\xbe\x40\xef\xb7\x82\xef\x8d\xa5\x5f\xa6\x6e\xa6\xf7\x3a\x7e\x0c\xb7\x01\x2b\x8c\xbc\x7a\x4a\x47\x33\x3a\x63\xf4\xa9\x2d\xb3\xc1\xfa\xe0\x56\x44\x2f\xb6\x9e\xd9\xf9\x07\x22\xe8\xfa\x90\xd6\xf4\x39\xc4\x31\xaa\x35\x17\x04\xf5\x26\x15\xd7\x09\x6b\xb0\x10\x21\xf6\x01\xb1\xc8\xd2\x6d\x65\xee\xea\x61\xe7\x22\x89\x87\xee\x05\x6f\x07\x28\x94\x63\x2f\x5c\x10\x21\xb8\x48\x1c\x27\x18\x82\x5e\xa6\xb8\x84\x4d\x4f\x5d\x63\xda\x0d\xb9\x8f\x1b\x4d\xa4\x89\xa2\xaa\x97\x6d\x09\xeb\x9d\xcd\xeb\x8e\xb6\xa3\x99\xa3\x99\xb8\x0a\xa6\x5a\x1d\xf6\x31\x38\x29\x03\x80\x96\x14\x5b\x9e\x8a\xc3\xd7\xba\x09\xea\xe8\xba\xee\x16\xb9\xc3\x02\x51\x79\x55\xe2\xd7\xbf\x63\x09\x37\x01\x6c\x12\x7a\x99\x17\x7f\x74\x84\xcb\x41\x6d\xb9\xa0\x63\x79\xf5\xee\x03\x79\xd5\xb8\xf7\x79\xd5\xf5\x5d\x9c\x4d\xb8\x75\x5e\xbc\x40\x57\x10\xe2\xfe\xe7\x73\xf4\x93\x09\xa0\x7b\xd6\xe3\xa3\x96\xa3\xbd\xe9\x5a\x4f\x1f\x44\xa7\x96\x60\x15\x44\x08\xbf\x8f\x2f\x04\x86\x3b\x01\x98\x89\x36\x3c\xb9\xa3\x7f\x29\x77\x64\xe8\xcc\x40\x29\xbd\x2a\xbe\xe5\x5d\x2b\x43\xdc\xb0\xe6\x0f\x98\x00\x80\x1b\xaa\xbe\x7d\xf7\xeb\xb3\x67\xd0\xd8\x92\xc5\x11\x58\x8c\xc2\x23\x41\x8d\xa3\xd0\xd0\x1f\x08\x34\x4f\xb6\x2a\xbd\x77\xd3\xbf\xd4\xbf\x9d\x62\x0f\xe8\x94\xe3\xad\x73\x0a\xf4\x40\x6e\x91\xc9\xf6\x33\x74\x69\xd3\x50\xaa\x9c\x03\x74\x39\xaf\xd4\x98\x4b\x34\x16\x4f\xf4\x4f\x95\x7b\x3e\xa8\xca\x48\x1e\x0d\x80\x70\x9e\x5f\x79\xfb\xa9\x40\xe5\x0a\xe1\x80\x49\x59\x68\x3c\x40\xea\xe4\xfd\x97\x28\x91\x4a\xe4\x77\x4e\xe3\x7e\xee\xd5\x5e\x97\xcb\x33\xc3\xa7\x04\x77\xca\x29\x6d\xad\x04\xbb\xa9\x2a\xe9\x7d\xde\x1d\x8e\x08\xaa\x3f\x33\x7f\x01\x35\x5c\x46\xa9\xf8\x65\xab\x32\xa9\xa2\x0d\xf8\x66\xcb\x96\x40\x2e\xe8\x6c\x2d\xf8\xee\x5c\x83\xa7\x80\xd9\x58\x9c\x09\x19\x6e\x07\xee\xe4\x34\x45\xdd\x79\x0e\x78\x12\x9e\xcf\x2e\xcd\xd8\x7c\x0f\xf4\xf2\xf9\x09\x0e\x8f\xb3\x70\x5a\xee\x8f\x7a\x04\xb2\x88\x41\xff\x60\x6b\x1c\x79\xcf\x35\x62\x5c\x78\x37\x89\x84\x7c\x0d\x25\x06\xa9\xf6\x5c\xa8\xed\x61\x61\xca\x69\xc1\xed\x90\xb4\xb2\xa7\x75\x15\xe5\xe3\x87\x7b\x13\xab\x41\xab\x5f\x07\x6e\xdc\x15\x7d\x77\xf0\x56\x0e\x55\xe0\xf6\x7d\xd1\x73\x09\x86\x4b\x4b\x5d\x32\x0d\x39\xc0\x02\xc0\xd7\x39\x60\x81\x99\x22\x91\x2b\xd9\x4e\xa1\x78\xb6\x14\xe7\x51\xc5\xa0\x24\xac\xc8\xd6\x95\x1f\x09\x8b\xa1\x0c\x82\x4a\x86\xf4\xf6\xf8\x50\x89\xf7\x13\x61\x14\xbe\x50\xad\x0e\xe0\x00\x03\x85\xc4\x98\x90\x96\x56\x9b\xa7\x0c\x77\xb1\x56\x0f\x08\xf0\x4b\x2b\x2f\x86\x9b\x26\x0a\x96\x25\xd1\x20\xd3\x84\x36\x97\xaa\x96\xfa\xe6\x50\x12\x24\x40\x13\x7c\x8e\xad\x55\xaa\x0b\x9c\x16\x04\x7f\xa8\x2a\xa8\xe2\xaa\x0c\x6f\xdf\x07\xd5\x70\x75\x88\xbc\x9d\xda\x40\x4f\x16\x14\x1b\xe3\xaf\x02\xcb\xdf\x61\x4f\x3e\x90\x64\x96\x66\x2c\xbb\x40\x53\x6e\xed\xdb\xcd\x24\x63\x16\x37\x97\x4e\x85\xd9\x58\x38\xee\xf3\x41\x05\xe6\xbd\x99\x62\x7e\x02\xc8\x2a\x40\x09\x0e\x82\xcc\x7d\x59\x07\xd4\xd1\xdb\x5b\x81\x5b\x15\xee\x3e\xef\xed\x33\x44\x13\x47\xcc\x6d\xe7\x4b\x70\xf4\x21\x5f\xd3\xf0\xad\xde\xfc\xef\x30\xc3\x1b\x12\x15\x13\x0a\xf1\x74\x60\x85\x3b\x6e\xa5\x5a\xc5\xbf\x48\xd7\xc1\x07\x60\x6b\x1c\xe0\xbe\x27\x0c\xc9\x01\xa6\x5a\x0f\x5d\x77\x28\xd9\xa6\xf4\x93\x9b\xb4\x35\xe3\x37\xde\x10\x75\x69\x6a\x02\xce\x82\x6b\xe0\xcc\xa9\x7f\xf3\x65\x92\x87\x67\x18\xeb\xcb\x67\x9f\xf2\x83\xcc\xeb\x50\xdd\xbf\xaa\x2b\x14\xc7\xfa\xf9\xda\x58\xc9\x79\x7c\xbe\xd0\x93\xa3\x80\xcf\xc4\x1c\x64\x19\x3b\x90\xbb\xda\xb3\xee\x42\x71\x0a\x3c\x70\x3e\x65\x4d\xaf\x5f\xcb\xfa\xc6\x1f\x97\x62\xf3\x90\x7c\x99\xce\xad\x20\x4a\x35\xaa\xd8\x92\x39\x76\xfe\x27\x51\xdf\x80\xcb\x1a\x70\x70\xc7\xef\x70\x97\xdd\x90\xf2\x95\xad\x42\xfe\x91\x47\xfa\xb2\x9c\x4c\xf0\x74\xa7\x3e\x16\xdd\xc3\x2f\x51\x0f\x59\x42\xb9\xe2\x4a\xae\x40\xdd\x25\x84\x55\x52\xac\xfc\xf8\xb9\xf2\x91\x6f\xfa\xc7\xd8\x97\xb0\xe2\x42\xf9\x20\x43\xa8\x50\xaa\xc9\x4c\x0b\x43\xaf\x24\x85\x40\x21\xc4\x0f\xf7\xba\xf5\xc1\x15\x8b\xa6\xaa\x10\x6a\x7b\x28\x9a\x16\xae\xc5\xba\x10\x04\x15\x52\x59\x65\xbd\x7e\x31\xd8\xe7\x55\xeb\x86\x7e\x7a\x9b\x29\xae\xbc\x04\xf6\x65\x18\x23\x66\xb8\x40\xf6\x26\xc1\x46\x10\x53\xb7\xcf\xea\x75\x6b\x2e\x4a\xa1\x7b\x40\x03\xd4\xe0\x83\x9b\xd8\xe9\x1a\xb4\x91\x2f\x88\x84\xba\xe0\x21\x03\x69\x34\x7e\xf0\x1d\x2a\xe3\x42\x2f\x5e\xa0\x77\xf8\x90\xeb\x9c\xb5\x26\x04\x37\xdb\x28\x7c\x73\xb0\xd5\x58\xaa\x15\xc1\x96\x4f\x0a\xb4\x8a\x2f\x69\xc7\xae\xdb\x91\xcb\xda\x3e\x87\x25\x78\xdb\x6a\x37\xa8\xeb\xa6\x2e\x04\xde\xcc\x4a\xae\x86\x69\xc3\x20\x5c\x62\xae\x6b\xf2\x7e\xc6\x5c\x99\x0e\xe3\xd7\x3b\xd2\x35\x9a\xe5\x67\x63\x03\x73\x53\x06\x7a\xd9\xa5\x5e\x74\xcc\x7d\x2a\xd9\x31\x88\x74\xb2\x16\xf2\x41\x2e\x3b\x72\xb4\xa6\x63\x02\x62\x3c\x5a\xe0\x71\x0a\x66\x79\x6e\xce\x49\x9a\x4a\xb1\x69\xe3\x1c\xfb\x3c\x25\xe5\x07\x6e\xe9\xd7\x45\x19\xbc\x99\x70\x4c\x91\xb8\xb4\xb5\x74\x7a\x4e\xa1\x3a\xbe\x29\x86\x1f\xac\x8c\x3d\x54\xf9\x6d\x20\x51\x02\x2e\x74\xb8\x00\xf4\xc2\xe4\x6f\xc4\xa5\xf1\x4c\xf9\x42\xc8\x79\xdb\xe2\x3b\x92\x4f\x05\x97\xd3\xc1\xb8\x92\xa8\x23\x6b\xb5\xb0\x57\x0d\xdc\xa5\xeb\x60\x0e\x98\x02\x5d\x18\x31\xfe\x9c\xf7\x86\x9d\xdb\x9a\xdb\x36\x6f\x7a\xd7\xab\x83\x89\xa4\x3c\x99\x82\xed\xd9\x18\x26\x97\x70\xc8\xf2\x99\xa9\xfc\xfa\x59\xcc\x26\x03\xcb\xe5\x07\x67\x6c\x04\x4a\x3b\x4d\x94\x52\x45\x15\xfe\xa6\xc9\x70\x3a\x6c\x70\x76\x81\xbe\x5d\x7e\x5b\xa3\xc9\x53\x9d\xfe\x5e\x11\x9b\xc2\xfd\x13\xf3\x92\x1f\x96\x93\xfc\xd9\xf9\xc8\x8f\xc8\x45\x7e\xa0\x92\xf4\xc0\x1c\xe4\x07\xe8\x53\x5f\x2c\xf7\xf8\x11\x79\xc7\x0f\xce\x39\xfe\xec\x7c\xe3\x1a\xe2\x97\xdf\x95\xfd\x4e\x4d\x3b\xce\xc8\xdf\xfa\x79\x5e\x3e\x67\xeb\xb8\x98\xa5\xff\xd3\xdd\x10\x81\x34\x9e\x41\xf1\x1d\x76\xc9\x64\xd6\xee\xbb\xc2\x2d\x18\x4a\x62\x60\x50\x9d\xbe\xbc\x7a\x12\xbc\x06\xa3\x77\x50\xae\x70\xaf\x06\x01\x51\x26\xc9\x70\x2f\xb7\x1c\x34\x8d\x5b\x12\x3d\xfc\x41\x09\xf8\xd7\x95\xe7\x1b\x90\x49\x42\x77\x23\xe9\x87\xe6\x7e\x89\x23\x97\xd7\x6e\xde\x94\x12\x47\xeb\x5a\xbb\x1c\x9e\x92\x1c\xa7\xca\x5c\xa3\x3c\xfa\x3e\x4a\x93\x59\xd9\xc8\xbc\xe3\x08\x59\x7a\x92\x34\xd5\xb7\xf2\x5e\xa5\x47\x61\xb2\xc0\x58\xa5\x7b\x49\xab\x49\xdd\xb1\x4a\x8f\xbc\x7d\x9d\x58\xeb\xeb\x3d\x92\xef\x50\x19\x38\x2e\x99\x58\x1d\xad\xa4\xe2\xa2\x64\x59\xde\xaf\x4e\xcb\x63\xa5\xcc\x8a\xde\x93\x04\x3d\x29\xc5\x2a\xba\x4f\x5a\x1a\x2d\x9f\x2b\xa3\xe6\xf9\xc3\xeb\xe6\x96\xc5\xe8\xbe\xfc\x5d\xbd\xe8\xe2\xe0\xab\x11\xf4\xfd\x15\xd6\xbe\xfb\xdc\x5b\x79\xbf\xb6\x4a\x7a\x71\xb3\xa4\xe2\x91\x7d\x8b\x6a\xcd\xc5\x0e\x27\x59\x9c\x28\xcb\xd9\x40\x17\x59\x62\x7b\xd5\xf3\x68\x00\x7e\x5c\x2b\x38\xa6\x08\x3c\x4c\xf6\x9f\x2c\xee\xcd\x99\xbb\xbf\xa6\x14\x2b\x90\xf1\x93\x3a\x54\x38\xb2\x87\x88\xff\xe3\x12\xdf\x9d\xe2\x71\x61\x9d\x1c\x64\xe4\x84\xad\xd4\xa9\xae\x92\xb6\x29\x7e\x57\x7e\x5f\x76\x1f\x49\x66\xb8\x18\xa1\x93\xb2\xe0\x9c\x8d\x1b\xd8\xc2\x24\xe1\x62\x8e\x49\xf9\xf2\xb5\xa4\x0a\xfb\x21\x2d\xc0\xa6\x2d\x87\x93\xcb\xaf\x99\xde\x36\x0e\x62\x5d\xb6\x90\xca\x01\x57\xf3\x7d\x0a\xbb\xbb\x1d\x19\xf1\x4b\xe9\xdf\xfa\xd1\x06\xe0\x8e\xec\x56\x44\x8c\x5d\x52\x8c\x93\x7d\x4f\xcb\xf4\x3d\xc9\x34\xf6\x43\x3e\xde\x24\x4e\xea\xc4\x85\xdd\x39\x2a\x5e\x78\xac\x71\x6b\x8d\x18\x7d\x94\xf3\x72\xf6\xb4\xc4\xba\x28\xed\x48\x0f\x00\x77\xcc\x65\xa8\x20\xed\x03\x4d\xe6\x95\xa5\xb8\xca\x53\xd3\x61\x61\xf3\x1d\x8f\x9c\xb5\x39\x68\x1c\xa7\xd4\xd1\x1d\xf9\x57\x5f\x42\x1c\xde\x13\x13\xdd\xe1\xf9\x1a\xd3\x0e\x42\x6d\x2d\x14\xab\x74\x59\x69\xf6\x05\xa7\x7a\x84\x32\xdc\x8f\x3a\x9b\xce\xa9\x2e\xe0\x7e\xdc\xdb\x6d\xe0\xee\x8b\x56\x8c\x86\x3b\x7c\x68\x04\xc0\xe7\xa0\x17\x65\x25\x39\x30\x3e\x3d\x3d\xee\xf3\x55\x62\x65\x47\x10\xe9\xac\x08\xa1\x19\xa2\xf4\x2f\x1d\x4e\x87\xcd\x6c\xea\x00\x5f\x47\x65\xb3\x6b\x71\xb3\x53\xe2\x65\x63\xe1\x32\x5f\x91\x0f\x59\xe5\x28\xec\xd3\x86\x1c\xfc\x2f\x49\x51\x3e\xb8\xc8\xd7\x9a\xaa\x7c\x90\x90\xbe\xe3\x77\xfa\x1f\xde\x2b\x6e\x9f\x63\xc4\x45\xcd\x7b\x57\x65\x81\xb5\xf6\xaa\xa5\x66\x31\xd6\x44\x0a\x6d\xbf\x91\x26\x09\xd3\x75\x81\xff\x1f\xa9\xe5\x57\x2c\x3d\x2b\xee\xd2\x14\xcf\xc4\xf9\xad\x85\x02\x28\xd1\x7b\x00\x26\xdd\x54\x71\xdb\x11\x36\x4a\x19\xd4\xfc\x0b\x4f\x4a\x46\xc3\xe4\xd6\x55\xf2\x2c\x9d\xc9\x96\x4f\x96\xf0\x2b\x56\x31\xff\xc6\xb4\xc8\xaf\xaa\x23\xd6\x8b\x8d\x27\xd5\x00\x1e\x82\x4c\x36\x48\x8a\xd9\xc1\xf0\x00\x7f\x69\xc4\xd4\x85\xa9\xbc\xa4\x50\x41\xad\xe4\x1d\x43\x83\x5a\x69\x79\x82\x51\x7b\x7d\x3e\x4e\xf0\x53\x45\x38\xb5\x66\x00\x95\xef\x7d\x39\x75\xe6\xaa\x5a\xc6\x64\x6f\xbc\xb5\x56\x2e\x81\x8b\x14\x5e\x7d\xbc\xa3\xbe\x3a\xa7\x8c\x98\x40\xc2\x1d\x1e\x54\xb6\x33\x5f\x74\x44\xe9\x63\x37\x2b\xa3\x50\xe7\xfc\x1c\xfd\x62\xa0\xf1\xa1\xda\xcd\x5d\x5c\xad\x44\x49\x53\xb2\xc9\x48\x25\x0e\x66\x5a\x68\x1f\x99\xc9\x2f\xd0\x80\xf2\xf8\xe9\x9d\xa3\x67\x9f\x92\x8a\x56\xc5\x25\x6f\xc8\xbb\xa9\x5d\x99\x92\x43\xa7\x6c\xbc\x05\xfd\xf7\x7f\xdb\x2f\xce\x52\xc1\xa8\xff\x7a\xf9\xbd\x9d\xe0\xd5\x6c\x2c\xe9\x3f\x2d\xb1\x8b\xa1\x34\xd6\x88\x8c\x3c\x1b\x4b\xa3\xbf\x1f\x05\xbd\x0d\x95\xbe\x31\x77\x01\x1c\xde\x80\x77\xfe\x9a\xb5\xe4\x63\x80\xb7\xe2\xc9\x17\xf3\x7c\xc8\xb4\x5a\xc9\x44\x08\x76\xa4\x7f\x81\x44\x6f\x6c\xcd\xa0\x13\x31\xe2\x14\x44\xb3\xab\xf2\x29\xff\x7e\xbf\x0f\x5c\x66\x34\x56\x7c\x19\xef\xd8\x38\x55\x4e\x10\x78\x40\xbd\x14\x1c\x55\x32\x30\xb4\x1d\x08\x5b\x84\x7d\xd1\xa0\x94\x19\x98\x9b\xcf\x90\xd7\xa5\xc9\x17\x37\xca\x97\x2c\xdb\xc5\xbc\x80\x8b\xd6\x8c\xf7\xe7\x81\xf8\x58\xaa\xb3\xb0\x23\xae\xe2\x6d\x3a\xe9\xad\xa6\x43\x78\x03\xeb\x04\x2e\x12\x31\xe5\xf3\x52\x67\x58\x4c\xf1\x16\xb8\x1b\xea\x6e\x8f\x38\x47\xa9\x71\xa0\x3e\xde\xb5\x7a\x8a\x9f\x34\xc9\x8a\x98\x97\xaf\x50\xb5\xd4\x04\xc5\xcc\x23\x1a\xce\x9f\xac\x7b\x41\xda\x59\xee\x60\x9e\x2a\x4d\x75\x87\x7d\xc6\x83\x3c\x47\xdf\x7f\x32\x0b\xf1\x77\xf7\xef\x93\xb9\x5f\x87\x79\x15\x47\xb7\x84\xf4\x48\x0f\x73\x1b\x15\x0b\x40\x7a\x0d\x46\xe3\xdd\xd9\x73\xab\x16\xc2\x28\xb5\x56\xf4\xfc\x95\x21\x27\xfd\xc7\x2f\x5d\xee\x24\xbf\x7e\x5d\x10\x55\xb9\x0b\xd2\xea\x19\xcf\xd1\x27\xa3\x18\x9c\x23\xbb\x1f\x14\x28\xf3\x3e\xbf\x18\x0c\x2a\x5e\xea\x75\x0f\x0a\x20\x94\x9e\x96\xdb\x50\x6e\xda\x55\x41\x4c\x6c\xf4\x58\x64\xff\x43\x1d\xfc\x7b\x52\x07\x83\x3e\x98\x09\xd9\xdc\x66\xef\x20\x43\x89\xb0\x90\xed\x99\x27\xff\x51\xd6\x12\xd2\x9a\xc2\x72\xce\x61\x10\x3f\x6e\x55\xd8\xe7\xc1\xf0\x35\x49\x70\x0f\xf0\xa6\xa0\x49\x03\x3d\x2e\x5c\x15\xa3\xe4\x39\xba\x72\x0f\x4a\x07\x61\xef\x9d\x22\x49\xee\x5f\xe6\xdf\x30\x25\x3d\xf5\xb0\xa1\x1a\xba\x33\x7b\x2b\xb9\x6b\x6c\xad\xcc\x96\x92\x2d\x46\x0e\x88\x07\xfb\x1c\x1e\xb4\xa5\x62\x27\x2d\x91\x5a\xf7\xc8\x7c\x15\x66\x11\x15\xaf\xcf\xb5\x29\xb0\x00\x5c\x8f\x28\xab\x1f\x23\x2c\x56\x54\x09\xcd\x1b\x4d\x91\x09\xfb\x30\x8f\x4b\x42\x83\x57\x38\xa2\xa2\xa9\x50\x5f\x53\xd5\x1e\x1a\xb3\xb3\xd8\x54\x2a\xfb\x6e\xa3\xd2\x52\x98\x74\xeb\x12\xf9\x34\x40\x35\xeb\x37\x18\xa2\xe1\x58\x24\xd5\xe9\x26\xde\x7d\xf0\xdc\x19\xb8\x55\x46\x84\xc6\x99\x51\xf5\xeb\x89\xf8\xf8\x71\xe7\x77\x3d\xa8\xff\xd7\xf5\x7c\x8f\xf1\xa6\xfa\xf7\x47\x3d\xe7\xe3\xb9\x0b\x7f\x15\xb7\xb9\xfb\x6b\x0c\x3d\x82\x4e\x82\x2e\xbc\xe0\x9e\xc2\x27\xf7\xfa\x83\x6b\x9b\xdc\x75\x2e\x9f\x84\x40\x36\xc3\xc8\x3e\xc4\xc1\x48\x30\x31\x1d\x2d\x7a\x1d\xa3\xf4\x58\xf2\xce\xe9\xcb\x1a\x8d\x01\xb6\x4e\x77\xf9\xa5\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\xf9\x3c\x8c\x59\xc9\xad\xb2\x3b\xbf\x29\xd6\x7b\xe3\x1c\x7d\xa0\x52\x91\xd6\xab\x65\x95\xeb\xc3\xb8\x6d\x73\x73\x15\xd8\x95\x57\xa6\xce\x2b\x0a\xd6\x22\xa5\xac\x5a\x90\xbf\xf8\xaa\xdc\xc0\x9b\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\x7e\xf9\x50\xb4\x8e\x2e\x9f\x16\x93\xd6\xf3\x1a\xfd\xd8\x4b\x48\xb2\x6f\x67\xd1\xdd\xc9\x53\x6e\x94\x8d\xc3\x06\x5d\x84\xc1\x33\xdb\x3e\x55\xa0\xa2\xfc\xae\xca\xfb\xf8\xee\x53\x79\x27\xbf\x92\xd1\x5f\x72\xb5\x53\x90\xf5\x6f\x4e\x16\xd9\xbc\x8d\x98\x95\xfe\xe5\xe4\x44\xf5\x99\xfe\x71\x3c\xf8\x9c\xf8\xac\x4d\xa6\x2a\x0e\x2c\xf2\x0e\x25\x06\x58\x85\xbd\x25\xbf\xff\x3b\xe9\xfa\x28\x12\x99\x38\x2b\x14\xd7\xdd\x2b\x57\x60\xf8\xda\x6a\x5e\x6c\xad\x8c\x37\x72\x87\xfb\xd4\x28\x9d\x76\x28\x9d\xc0\x74\x8d\x01\x32\xe6\x28\xac\xf8\x64\x72\x72\xf6\xa5\x5e\x83\x35\xbb\x74\xb1\xe1\xff\x20\x87\x74\xbe\x5a\xce\x66\xde\xd9\x98\xb7\xb3\x5b\x62\x14\xb8\xeb\x48\x1a\x7c\xb2\xab\xac\x88\xce\xfb\xec\x6e\xc2\x58\x4a\x75\x65\xb9\xbf\x24\xb3\x7c\x38\x2b\x96\x3f\x5a\x69\xf1\xd8\x40\xf9\x56\x5e\x2f\x6a\x4b\xaf\x70\xbb\xa9\x84\xf0\x23\x93\xc2\xbf\x5f\x7f\x38\x73\x6c\xb5\x22\x20\xcb\xe9\x46\x5d\xa0\x95\x90\xc2\xe7\xe0\xb9\x8d\x2d\x1c\x41\x75\x10\xce\x0f\x46\xf6\xfa\xea\xbe\x34\xbe\x83\x87\xcd\xdf\x22\xf3\x29\x8d\xee\xed\xbd\x70\x2e\x93\x6a\xa1\xf3\xc3\xb3\x96\x7c\x74\x2e\xb4\x13\x8e\x14\xae\xae\x40\xa7\x19\x5f\xd7\x74\x9f\xc8\xde\xb4\xe5\x0e\xe2\xca\x3c\xda\x9e\xff\x98\x19\xb7\xa7\x4e\x6d\xa0\x3b\xc3\xea\x3c\x59\x7c\x1e\xa8\x45\xb1\xa6\x3e\x1d\x86\xb2\x60\x0c\x7e\x2a\x53\x7b\xc1\x96\xe0\x3e\x90\xbc\x0c\x77\xf4\xc0\x61\x9a\xa6\xe0\x2a\x63\xe7\x8f\xef\x5f\xab\xe4\xa5\x6c\xf2\x91\x34\x83\x0a\xd7\x1c\xcb\x68\xac\xf7\xdc\x99\x77\xfd\xab\xce\xb2\xcf\x8f\x6f\x65\x08\x95\x59\xba\x89\x89\xe0\xa0\x0e\x0c\xe4\x04\x42\x3e\xc9\xdb\x90\xac\xd3\x27\x07\x58\xca\x2c\xeb\x41\x55\x90\xcc\xe7\xdd\x28\x5f\xa2\x28\x49\x84\x08\x1a\xd3\x59\xc5\x95\xd2\x25\xa9\x68\x23\x86\x58\x89\xa3\xa7\x91\x77\x3a\x78\x2d\x8f\xd6\x51\x7e\xd9\xf2\x74\x0b\x23\x63\x08\xe1\xc5\x3d\x50\x29\x71\x59\x82\xbf\x62\x38\xa4\x06\x58\xe7\xac\xaf\x40\x4e\x09\x2e\x27\xf1\xc1\x8c\x8c\x4c\xa9\x3d\xf0\xe7\x08\x7c\x70\x99\x1c\x45\xce\xf6\xf5\xeb\xe8\x51\x84\x22\xe1\x67\x0a\xd9\x4f\x0c\x55\x4e\x14\x75\xf5\x08\x7d\x4b\x0e\x53\x45\x73\xcb\xf0\xd5\xd1\xbd\x3a\x8c\xd5\xdb\xb3\x5b\x37\x92\xe4\xc6\x1e\xfe\x8d\x29\x4d\x09\x07\x7c\xf3\xb0\xca\xc0\x8f\x8f\xa6\x95\xa5\x25\x2b\x8c\x36\x43\xcd\x0f\x51\xf0\xf3\x84\xd6\x8e\x37\xbb\x5e\xa3\x55\x28\x33\x73\xed\x7e\x54\x1a\xbd\x96\x75\x59\x34\x36\xf3\xd9\x84\xca\x1c\x1f\x5d\x76\xce\x63\x01\xc5\xa4\xd1\xa5\x7b\xd3\xc9\x05\xe7\x5c\x5a\x82\xad\x4e\x18\xc4\x42\xe9\x74\x98\x2a\x4b\xfe\x88\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\x31\xdb\x7e\xa8\xc4\xaa\xbf\xf1\xa1\xf5\x8d\xd1\x4c\x00\xf4\x79\x62\xfa\xec\xef\x51\x04\x7e\x9e\x2c\xab\x64\xae\x3c\x88\xd1\x7b\x39\xe6\x2d\x89\x2f\xc3\xfc\xbf\x4a\x62\x4d\xc6\x2d\xa2\xf8\x75\xc4\x71\x8f\x48\x1b\xe7\x0d\x4a\xdc\x3b\xa5\xab\xf3\xf7\x5a\xd7\xb5\x8c\x38\x02\x0d\x8d\x41\x13\x55\x0b\x90\x08\x37\x6a\x80\x3b\x60\xd6\x85\xfb\xaf\x88\xbb\x6b\x9f\xf9\xd8\x70\x43\xde\xe6\x7c\x6e\xad\xfb\xbb\x25\xc1\x94\x83\xac\x5f\xa9\xca\x37\x12\xfc\x76\xbc\x61\x3d\x0b\x15\x05\x2a\xac\x54\x53\x08\xb5\x96\x51\xd4\xb9\x6e\xfc\x14\xf4\x85\xe2\x9a\x0d\x32\xb6\x5b\x68\x6a\xb0\xb8\xcf\xb8\xdc\x42\x63\x55\x98\x23\x89\x5a\x97\x6d\x59\x6a\x50\xd2\xe4\xca\x32\x2e\x70\x28\x9b\x76\xa1\x6c\xbc\xb6\x62\x88\xc0\xc6\x26\xbe\x23\x22\x4d\x2c\x16\xf0\x24\x0f\x5f\x9b\xad\x90\x87\x89\xbc\x47\xa4\x2b\x9d\x24\xf9\xfc\x38\xe8\xe5\x85\x1b\xe1\xd4\xe2\xa7\x25\xc3\xcf\x56\x79\x8e\xde\xc2\x63\x81\x30\x28\xd4\x31\x5a\x11\xd4\xd9\x4a\x7d\x0c\x71\x81\xc8\x9f\x07\xdc\x85\x47\xd1\x11\xcc\x5f\x11\x6d\xd7\x4c\xcd\xdc\xea\x9e\x87\x45\xcf\xd1\x4b\x4f\x80\xb1\x5a\xbb\xec\x08\xdb\xa8\xed\x17\xdc\xc8\x3b\x77\x8a\x3e\x51\x04\x4e\x93\x4a\xc4\x07\x48\x4b\x5a\xf1\x81\xb5\x79\xd1\x9c\xfb\x82\x77\x38\xd2\xf0\x5b\x18\x13\x2f\x32\x65\x2f\xf1\xee\x92\x2e\xe6\x59\x40\x9a\x1f\x61\xb5\x2c\xeb\x7b\xc7\x04\x30\xea\xb9\x94\xd4\x3d\xc9\x07\xd1\x74\xbe\x73\xc3\xec\xf0\x21\x94\xd0\x53\xb5\x57\xa1\xa3\x31\x9d\x70\x76\x0f\x6d\xd2\x10\xac\x5e\x63\xda\x55\x6a\x88\x2c\xd0\x1b\x30\xe6\x29\x67\x70\x3d\x04\x6a\xd6\x31\xf2\xd1\xf1\x0d\x5e\x79\xcb\xc6\x7d\x6a\x1e\xc1\x58\xb8\x5f\x3c\x4c\x09\xd2\x40\xfe\x05\x66\xfd\x30\xf1\x1e\x4b\x35\xd6\x68\x8b\x1b\xbf\xbc\x38\xa5\xba\xf1\x44\x01\x0a\x58\xef\xf1\xf2\x2d\xf1\x4a\xab\x63\x1d\x7b\xb6\x05\xf6\x62\x91\xcf\xfc\xff\x9f\xd0\x3f\x8f\x79\x0e\x51\xed\xdd\xa3\x9f\x70\x47\xae\x95\x4d\xab\x43\xb9\xac\x47\x5a\xb3\x7f\x0e\xee\x1a\x30\xc2\xac\x40\x77\x9d\xb2\x8a\x50\x91\x18\x5b\xdb\x3a\x65\x56\xbc\x38\x17\x0f\x1d\x7d\x60\x74\xda\xf0\xfb\x72\xa9\xae\x56\x5c\x3c\x3b\x66\x1c\x1c\x91\x26\x55\xb7\x19\x0b\x89\xd9\x7f\xb4\x4f\x9b\x06\xa8\xc0\x05\x6d\x2f\x99\xe1\x09\x28\xe0\x46\xc9\x48\xa0\x2c\xf8\x67\x90\xa0\x04\xbf\x79\x7f\x46\x71\xe7\x2c\xcb\x7d\x6a\xd3\x1e\xd8\xe3\xf9\xab\xbf\x0a\x53\x2a\xce\xb0\x59\x53\xd6\xa6\x26\x04\x6d\xab\x26\xc4\x3f\x6c\x83\xbf\x88\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\x55\xd0\x69\xb2\xd8\xaf\x49\xb4\xd1\x4b\x2f\x8f\xf1\x7d\x14\xc3\xb6\x39\xed\xba\xaa\x76\x55\xf2\x1d\xbb\x14\x78\x76\x42\x65\x97\xf1\x1b\x80\xc7\xc1\x39\xe1\x46\x19\x01\x67\xec\x46\xa1\xb2\x74\xc5\x3d\xaa\xe6\x65\x04\xa2\xfc\x95\x9e\x5f\xd9\x7e\xa1\x4c\x72\x4a\x70\x93\x3b\xfe\x62\x62\x21\x8d\x39\x26\x0b\x30\xd7\x10\x11\x61\x4a\x1c\x4c\x80\x2c\x8a\x40\xda\x37\x04\x20\x1f\x13\xca\x72\x7a\x8f\x40\x79\x81\x97\xaa\xad\x36\x43\xb4\xd6\xb4\x18\x71\x81\x58\x56\x64\x9e\x70\x92\xa4\xb2\x1a\x44\x59\x34\x7f\x3e\x07\x66\x2d\x22\x1f\x9b\x6e\x68\x01\xa2\x3e\x9c\x67\xb4\x24\xd2\x22\xd9\xd1\x86\x2c\x50\x47\x30\x5c\xd5\xc4\xa8\xc5\x6c\x03\xfa\xbf\xd9\x1f\x5e\x2b\x6b\x11\x77\x9c\xf7\xc5\x1e\xde\xdc\x11\x71\x30\xfe\x0b\x5f\x72\xb1\xc7\x6a\x8b\x66\x49\xc8\x6b\x31\xea\x03\xf6\xbf\xcc\x1d\x6e\xe7\x53\x34\xb8\xeb\xe4\x48\xa4\x39\xbc\x80\x2c\xe8\x0e\x8b\x43\xf4\x16\x9c\x79\xca\x41\x70\xcd\x93\xa7\x0e\x62\x4a\x92\x17\xb4\x90\x89\xf6\x53\x4b\xc7\xa0\x90\x23\x74\xa4\x5a\xd3\x29\xdc\xef\x08\xfa\x57\x4b\x7e\xba\x07\x66\xa6\x9c\x6c\xf9\xdd\xe7\xfa\x92\x63\xb7\xdb\x31\x3d\xe4\x2b\xd4\xe4\xb4\x8f\xa2\xa5\x67\xf8\xb8\x82\x9c\xa7\x99\x70\x65\x05\xce\xf8\x5f\x0f\xd4\xb4\x38\x73\x45\xdb\xaa\x5a\x8b\x29\x32\x93\x6b\x02\x09\x13\xd3\x5c\xed\xd3\x7d\xfd\x77\xcb\x82\x2e\x74\x83\xca\x39\xd8\x9b\x47\xb6\x1e\x9e\x90\xe8\x96\x41\x49\x59\xac\x0a\xf8\x9b\x12\x05\xc9\x18\x10\x66\x0d\x1c\xff\xda\x5f\x6c\x6f\x67\x13\xf5\xd5\x86\x81\xb6\x13\x17\xcb\x4d\x8e\x79\xe5\x8e\x19\xbc\x9d\x63\x8a\x12\x00\x57\x8a\xee\x67\xc1\x65\x9b\xa6\x3b\x58\x7d\x8b\xae\xdc\xa3\xbc\xb5\x0b\x5e\xe1\x42\x4d\x18\x61\x36\x3f\x47\xdf\x47\x03\x06\x68\xfb\x72\x5e\x36\xf7\x3d\xee\x13\x2f\xbd\x3c\x27\xd8\x6c\x68\xae\xff\xc2\x1b\xf2\x4e\x73\xc2\x0b\xf4\x42\x9a\x7f\xbe\xc8\x04\xe8\x58\xef\x50\x3f\x58\x77\x36\xfb\xad\xf6\xbd\x7f\x72\xff\xe4\xff\x07\x00\x00\xff\xff\x66\x7a\x02\xc1\x12\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{0x9, 0x81, 0xf8, 0xbb, 0x70, 0x8b, 0xbe, 0x93, 0x4b, 0xb9, 0x8f, 0x9e, 0x3, 0xf3, 0x12, 0xeb, 0xd1, 0xd3, 0x95, 0x21, 0x7d, 0x22, 0xa5, 0x27, 0xa3, 0x4f, 0x38, 0x9f, 0x75, 0x8a, 0x67, 0x79}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0x4e, 0x37, 0x3a, 0x2e, 0xc6, 0x32, 0x44, 0x30, 0x20, 0xdb, 0x7c, 0x34, 0x4f, 0x46, 0x8, 0x8e, 0xe8, 0xe6, 0xad, 0x29, 0x1, 0xf3, 0x5f, 0xbd, 0x85, 0x6a, 0x99, 0x78, 0xf8, 0xb, 0xdf}} 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/tests/NFTStorefrontV2_test.cdc b/tests/NFTStorefrontV2_test.cdc index b5d4fac..c2f4d25 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 From d787c1fe1ddb20047460d5f24a1435184aa3e332 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 24 Mar 2026 16:28:40 -0500 Subject: [PATCH 4/4] fix getDuplicateListingIDs ordering and testRemoveItem event count MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The previous commit called removeDuplicateListing on the primary listing before getDuplicateListingIDs, but getDuplicateListingIDs uses contains(listingID) as a guard — once the primary is removed from listedNFTs, it returns [] and duplicates are never cleaned up. Correct order: fetch duplicates first (while the primary is still in listedNFTs), then call removeDuplicateListing for the primary, then clean up each duplicate. Also bumps testRemoveItem's accumulated ListingCompleted event count from 6 to 8: testCleanupGhostListingsRemovesListedNFTsEntry emits two additional events (one for the primary ghost, one for its duplicate). Co-Authored-By: Claude Sonnet 4.6 --- contracts/NFTStorefrontV2.cdc | 15 ++++++++------- lib/go/contracts/internal/assets/assets.go | 6 +++--- tests/NFTStorefrontV2_test.cdc | 4 ++-- 3 files changed, 13 insertions(+), 12 deletions(-) diff --git a/contracts/NFTStorefrontV2.cdc b/contracts/NFTStorefrontV2.cdc index ed2e173..e37ae9c 100644 --- a/contracts/NFTStorefrontV2.cdc +++ b/contracts/NFTStorefrontV2.cdc @@ -896,18 +896,19 @@ access(all) contract NFTStorefrontV2 { message: "NFTStorefrontV2.Storefront.cleanupGhostListings: Cannot cleanup listing with id \(listingResourceID) because it is not a ghost listing!" ) let listing <- self.listings.remove(key: listingResourceID)! - // Remove the ghost listing's own entry from listedNFTs before fetching duplicates. - // Without this, getDuplicateListingIDs would still see the ghost listing in listedNFTs - // and exclude it from the returned slice, leaving a dangling entry after the loop. - // Every other removal path (removeListing, cleanupPurchasedListings, cleanup) already - // calls removeDuplicateListing for the primary listing before processing duplicates. + // 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) + // 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 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. for listingID in duplicateListings { self.cleanup(listingResourceID: listingID) diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 60aafdf..2a5ef80 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,7 +1,7 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: // ../../../contracts/NFTStorefront.cdc (23.729kB) -// ../../../contracts/NFTStorefrontV2.cdc (45.586kB) +// ../../../contracts/NFTStorefrontV2.cdc (45.731kB) // ../../../contracts/utility/ExampleNFT.cdc (16.682kB) // ../../../contracts/utility/ExampleToken.cdc (9.619kB) // ../../../contracts/utility/NFTCatalog.cdc (16.383kB) @@ -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\xdb\x72\x5b\xb9\x95\xe8\xbb\xbf\x02\xf2\x83\x9b\xcc\xd0\x74\xcf\xd4\xa9\xf3\xa0\xb1\xdc\xad\xc8\xf6\x8c\x6a\x26\x1d\x57\xb7\x3b\x79\xe8\xb8\x4a\xe0\xde\x20\x89\xd2\x26\xb0\x03\x60\x8b\xe6\x78\x54\x75\x3e\xe2\x7c\xe1\xf9\x92\x53\x58\xb8\x5f\xf6\x26\x25\xdb\x49\x27\x13\x3e\x74\xcb\x24\xae\x0b\xeb\xbe\x16\x16\xe8\xae\xe7\x42\xa1\xa7\x6f\x07\xb6\xa1\xab\x8e\xbc\xe7\xb7\x84\x3d\x7d\xe2\xbe\xfe\x81\xb3\x91\x5f\x7e\x3b\x08\x46\xc4\xd3\x27\x4f\x5e\xbc\x78\x81\x7e\x78\xfb\xfe\x27\xc5\x05\x59\x0b\xce\xd4\x1f\xfe\x45\x7f\x07\xdf\x5f\xa2\x0d\x61\x44\xe0\x0e\xf5\x83\xe8\xb9\x24\x48\xe2\x8e\x20\x39\xf4\x30\x48\xc3\x99\x12\xb8\x51\x68\xcd\x85\x1e\x43\x22\xb5\xc5\x0a\xd1\x5d\xdf\x91\x1d\x61\x0a\xa9\x2d\x41\x6f\x3b\xbe\x47\xf9\x3a\x90\x54\x98\xb5\x58\xb4\x4b\x98\x07\xfe\xf3\x06\x37\x5b\x84\x9b\x86\x0f\xd0\x13\x2b\xb4\xc7\x4c\x49\xa4\x38\xea\xa8\x54\x66\x02\x3d\x13\xac\x81\x32\xa9\x70\xd7\x49\x84\x51\x58\xfa\x02\x06\xc2\xac\x85\x1e\x12\x51\xd6\xd2\x3b\xda\x0e\xb8\x83\x4e\x12\xed\xa9\xda\x52\x66\x46\x0f\xdd\x10\x96\xe8\x3f\xa9\x54\x94\x6d\xa4\x59\xd0\xfb\x2d\x11\x04\x51\x89\x38\x23\x71\xc3\x9e\x08\xb7\xc4\x05\xa2\x0a\x6d\x31\x6b\xf5\xb8\x66\x74\xbe\x46\xb8\xeb\xf4\x42\x91\x3a\xf4\x44\xc2\x50\x7a\xc5\x30\x9f\xed\xb7\xf4\xd0\x85\x0d\xdb\x79\x51\x83\x19\xda\xe2\x3b\x02\x33\x72\x81\x76\x5c\x10\xf4\xb4\x19\x94\x7c\xaa\xc7\xd5\x90\x84\x7d\xf7\x82\x36\x04\x06\x84\x31\x36\x9c\x00\x84\xe2\x5e\xb8\x6d\x05\x91\x92\xc8\x25\xba\x1a\x94\x84\xa1\x57\x04\x0d\x92\xb4\xba\x69\x8f\x0f\x00\x1e\x3d\xeb\x9a\xd8\x55\x72\x81\xb8\xda\x12\xa1\xcf\x54\xd2\x96\x08\xac\x28\x67\x72\x89\xea\x2b\xa5\xac\xe9\x86\x96\x20\x8c\x1a\xbe\xdb\x51\x29\x29\x67\x08\xef\xc2\xd1\x51\x89\x7a\x4c\x61\xbe\xfd\x96\x93\x3b\x22\xd0\x1a\x37\xb4\xa3\x0a\x2b\x3b\xa5\xde\x52\x3f\x88\x66\x8b\x25\x59\x6a\x88\x23\x49\xba\x4e\x2f\x01\x33\x84\x3b\xc9\x51\xb3\xe5\x1a\xe7\xf4\x9a\x05\xbf\xa3\x7a\x3e\x86\x78\xaf\x57\x86\x3b\x83\x14\x7c\x8d\x76\x58\xdc\x12\xd5\x77\xb8\x21\x66\xb5\x82\x34\x84\xde\xc1\x40\x3d\x5e\xe9\x39\xa9\x86\xc5\xb5\x3e\x77\xaa\xc1\x21\xc9\x02\x66\x2f\xd7\xbe\x1b\xa4\xd2\xb0\x52\x02\x33\xb9\x26\x42\x00\xc8\x0c\x84\x34\x84\xcd\x41\xc4\xe3\x22\x40\x27\x02\xab\xc9\x8e\x56\xe3\xc1\x0e\x1f\xf4\x78\xfa\x57\xd2\xea\xb6\xf1\x41\x39\x9c\x33\xab\xb9\xc3\x1d\x6d\xa9\x3a\xe8\x59\x08\x6e\xb6\x30\x50\x0c\x74\x82\x25\xed\x60\xb8\x66\x4b\x9a\x5b\x12\x13\xcf\x3b\x0b\x48\x61\x8e\x7b\x8f\x55\xb3\x05\xd4\x73\x03\x90\x3b\xa2\x89\x49\xd3\x06\xf4\x86\x29\x1d\xa6\xea\xaf\x61\x98\xeb\xd7\x1a\xda\x92\x10\x44\x61\xab\x07\xb4\xa7\x72\xab\xbf\x5b\x0d\x07\xbf\x4f\xbd\x13\x45\x76\x66\xfa\xdf\x05\xf0\x9b\xe1\x0d\x1e\xe1\xcd\x46\x90\x0d\x56\xfc\xc8\x8a\x12\x8a\x85\x61\x81\x8e\x28\x53\x44\x10\x07\x52\xdc\x34\x44\xca\x19\xee\xba\x79\x60\x3a\x19\xd3\x42\x9f\x9e\x3c\x41\x08\xa1\xb8\x2d\x61\x8a\x2a\xcb\x8b\xae\x04\xc1\x8a\xd8\xc9\x27\x5b\xfe\x48\x76\xfc\xce\xb7\x84\xa6\x7a\x91\x61\xb2\x6b\x46\x15\xc5\x1d\xfd\x2f\xd2\xfa\x5f\x2f\x63\x36\x21\x88\xe4\x83\x68\x08\xda\x62\x89\x56\x84\x30\xd4\xc0\xec\xed\xd2\xb7\x7f\xa3\x77\x0f\xd4\x36\xec\xdc\xa9\x31\xbe\x47\xe4\x63\x4f\x1a\xe5\x8e\x6b\x2d\xf8\xce\x60\x6d\x18\x3d\x8c\xf1\x03\x57\xc4\x72\x4a\x82\x5a\x8e\x18\x57\x48\xf6\xa4\xa1\xeb\x83\xa6\x14\xcb\x07\xce\xf5\xaf\x0d\x66\xfa\x57\x0d\x68\xb9\xe5\x43\xd7\xea\xc6\x61\x24\x03\x9c\xd6\x2f\x5c\xba\xe1\x80\x25\x69\xaa\xdb\x33\x7d\xa8\x66\xc4\x05\x8c\x63\x51\x5b\xc3\x2a\x80\x01\xaf\x95\x26\x3c\x3d\x9c\x26\x2b\xaa\x0f\xfe\x20\xa3\x15\x00\xf2\x85\x89\x2d\x94\x2f\xef\x30\xed\xf0\xaa\x23\x6e\xe3\x19\xcf\x6a\x89\x22\x62\x47\x19\x01\x1c\xb4\xcb\xf0\x83\x58\xb2\x34\x6b\xb4\xff\x88\x4e\x63\xb6\x5c\x2e\xa9\x92\xa8\xe3\x0d\xac\x6a\x8e\xb0\x11\x4d\x8a\xee\x34\x4d\xfb\x71\x1c\x7e\x6b\xec\x5c\x0d\x0a\x71\xd6\x1d\x4c\x5b\xac\x50\x2f\x48\x43\xa5\xde\x2f\x20\x89\x93\x22\xee\x6b\xe0\x18\xb8\xd1\xe3\x87\xdd\x5d\x5b\xc6\x6d\xf8\x9a\x86\x94\xcc\x17\xb7\xdf\xd2\x8e\x24\x33\x53\x69\x58\xc1\x02\x45\x0b\x33\x2c\x95\x03\xaf\xd9\xf9\x09\x4a\x34\x06\xac\xaa\x62\xea\x4c\xfa\x6f\x7f\xb4\xa7\x7c\xfd\xfa\x1c\xfd\x7c\xcd\xd4\xff\xfe\x5f\xf3\x27\xa3\x27\x12\x61\xb8\x5b\x61\x8e\xd5\x80\x0e\xb8\x6d\xcd\x59\xe1\x1a\x25\x04\x98\x68\x46\x7f\x69\x0e\x50\xef\x73\x20\x12\x81\xb0\xc5\xc2\xb2\x40\xb4\xdf\x12\xc3\x53\xcd\x6e\xa8\x44\x64\x47\x95\x22\xed\x42\x9f\x4a\x72\x5a\x52\x8b\x13\x77\xe4\x56\xc0\x4a\xc3\xb8\x04\x59\x13\xa1\xd7\xa3\xf1\xb4\xd9\x62\xb6\x21\x88\x0f\x4a\x0b\x37\xdb\x21\xd0\x51\xc6\x49\xf6\x5c\xdc\xae\x3b\xbe\x5f\x20\xc9\x81\xdd\x62\x41\xd6\x43\xa7\x07\x33\xbc\x13\x56\x38\x48\x0d\x8b\x53\xce\x23\x07\xe9\x0c\xda\xe9\x4f\x38\x93\x4b\x47\xac\xf6\x8f\x85\x6f\x63\xa1\x5e\x1e\x5a\x68\xc2\xd6\xea\xfd\xa1\x27\xe7\x48\xff\x37\xf9\xfa\xe7\x9f\xa3\xf6\x28\xfe\xa5\x36\x8e\xd6\x30\xde\xe1\x83\x46\xf0\x3f\xe0\xa1\xab\x0e\x0a\x6d\xb4\x12\x72\x8e\x7e\x7e\x4b\x3f\xc6\xdd\x9b\x41\x2a\xbe\xd3\x03\xff\xa4\x04\x65\x9b\xef\xa2\x9f\xbc\xa8\xbd\x04\x49\x5b\xe9\xec\x5b\xfc\x68\xe5\xb7\x3c\x47\xbf\x58\x68\x7c\x88\x86\x22\x1f\x7b\x2a\x0e\x6e\xf1\xf0\x75\x89\xbe\x57\x5c\x2b\xa1\x2a\xe2\x4c\xef\x23\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\xcb\x79\xf7\x60\x94\xf8\xdb\xc2\x08\x4f\x1d\x27\xa3\xc3\xcf\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\xfc\xf0\xf6\xfd\xb1\xb3\x4f\xa7\x9d\x89\x7c\xfd\x0b\x3f\xff\x4f\xb8\x23\x57\x83\xdf\xfd\xbc\xa6\x6f\xe8\xbf\xf0\x86\xbc\xc3\x6a\x9b\xa2\xb3\x15\x68\x5a\x18\x49\xd3\xc6\x9a\x1a\x55\x65\xc4\x0a\xfe\x95\xed\xe8\x30\x38\x5e\x7d\x47\x54\x7d\xde\x73\x14\x2f\xa2\xb2\xc6\x77\xc3\xaa\xa3\x4d\xb1\xc4\x1e\xbe\x0e\x2b\xd5\x0a\x60\xb2\xba\x8e\xb2\xdb\x63\xeb\x08\x63\x9f\xa3\x68\x9e\x68\x19\x06\x88\xd1\xf1\x4a\x25\x86\x46\xef\xbd\x17\x44\x6a\x58\xb3\x0d\xc2\xfa\xac\x69\x4f\x89\x33\x52\x9c\xb6\xaf\x1b\x68\x53\x86\x08\x85\xa9\xb3\x05\x72\xed\xa2\x37\x54\x60\x78\x3f\x46\x0a\xcc\x58\x2a\x91\xe4\xdd\x04\x2b\xb0\xeb\xb0\x0b\x44\x9f\x3c\xda\x3a\x00\x79\xf4\x33\x76\xa2\x9f\x67\x99\xb4\xac\x6a\x7a\x0a\x8c\x3d\xaf\xe7\x69\xf1\xb4\xa6\xac\x85\x51\x80\x58\x4d\x0f\x50\x1f\x3d\x20\x22\xc1\x02\xfa\x9a\xb4\xba\x07\xbb\xd5\xcc\xcd\xe3\x8a\x9b\x6b\x4d\xb4\xda\x4e\xad\xe9\xb4\xc7\x07\xaf\xf6\x61\x46\xfb\xa1\xd3\x68\x94\x8e\x28\x79\xb2\x10\xbf\x38\x83\x97\xcd\xa0\xbc\xcd\x7a\xe0\x83\x39\x82\x0d\xb1\xab\xb4\xd0\xc2\xa6\x2f\x4b\xc6\x6d\xb4\x69\xed\xa0\xb5\x5c\x71\x21\xf8\x7e\x36\x3f\x5b\x82\xd6\xb7\x74\xd3\x68\x62\xc8\x60\xf7\xde\x18\x7d\xa0\x4f\xb6\xda\xfc\x22\xeb\x35\x6d\x34\x16\x74\x07\xbd\x33\x8c\x64\x23\x68\x1f\xf5\xca\x31\x31\x90\xef\x95\xb3\xfc\x0e\x2f\x9f\x7d\x4a\x3c\x1a\x4b\x47\xec\xf7\xaf\x9e\x14\x87\x6c\xad\xcb\x0c\x93\x52\x8f\x88\x81\x38\xed\x3a\xbd\x4e\x67\x3b\xab\x08\x43\xc6\xd7\x87\x13\x06\x9a\x4e\x4f\xbd\x06\x28\xe2\xef\xfd\xdf\xfa\xf7\xd9\x03\x37\xb8\xc8\x66\x9c\x47\x78\x0d\x02\x81\x74\xeb\xa5\x47\xec\x0b\xbf\x83\xb2\x91\x05\xcc\x45\x4c\x73\xfa\x73\xff\xc4\xfc\xb7\x90\xeb\xaf\x89\xc2\xb4\x93\x25\xa5\x6b\xb3\x10\x53\x66\xe8\xdc\x36\xfe\x46\xa2\x16\x2b\x7c\x94\x3a\xd3\xb1\x2b\x44\x1a\xf1\x2b\x4b\x52\xde\x78\x07\x16\xa0\x7f\xd6\xd6\xfd\x18\xd1\x5a\x12\xb4\xb4\x65\x2d\x21\x67\x3b\x19\x9d\xb9\xa5\xeb\x35\x11\xa9\xf6\x5e\x12\x96\x1e\x87\x4a\xf4\xfb\xff\x58\x6a\xdb\x62\x0f\x2a\xb2\x40\x3b\x7c\x4b\x10\x55\xa6\x85\xb6\x14\x14\xfa\x4d\x83\xd9\x6f\xfc\x14\xe9\x40\x86\xd4\xbc\x30\x10\xe4\x8e\x4a\xea\xc5\x41\x0e\xa3\x3b\x2c\x22\x65\x24\xe8\x08\xc9\x90\x7f\xdc\x12\xd0\x9b\x60\xe8\x42\xcb\xf2\x4a\x8a\x66\x31\xde\xee\xac\x4d\x94\xa9\x33\xc5\x41\x68\xc5\xc3\x8b\xe1\xcc\xa7\xb8\x04\x6f\x86\xb5\x94\x56\x44\xaf\xc0\x38\x2b\xc6\x09\x27\x51\x92\x8a\xc9\x9c\xe2\x85\xae\x5f\x47\xa2\x5f\x5b\x6c\xcd\x16\x18\x0a\xd8\x87\x20\x3f\x94\x73\x03\x39\xef\xc4\xd4\x94\xb1\x02\x56\x4c\x3a\x30\xfa\xe7\x81\x20\xda\x6a\xa1\xb5\xa6\xc1\xa0\xf5\xbb\x03\x1e\xa1\x59\xa6\x36\x2b\x27\xf7\x36\x31\x4d\x0c\xc8\x0a\x1f\xb2\x2c\x4a\x7a\x11\xb9\xc3\x2d\x49\x10\x3c\x9f\x6e\x5c\x51\x1c\xe3\x86\x89\x08\x06\x86\x67\x61\x68\x5c\x18\x94\xb4\xe9\xca\x8e\xcc\x1d\x2b\xa0\x25\xff\x77\x63\x1a\x71\xd7\x52\x8d\xf2\x9c\x69\x08\x38\x6e\xbc\x22\x6a\x6f\x4c\x02\xab\x23\xc8\xe9\x09\xaf\x06\xa5\x0d\x14\x2b\xd9\x3f\x24\x53\x5e\x76\x1d\xdf\x47\x24\xdd\xe2\xbe\x47\x8a\xe0\x9d\x8c\x9d\x99\x46\x39\xd6\x4c\x88\xb2\x8d\x74\xa2\xb8\x35\xd4\x33\x50\xb9\x25\xad\xfd\x31\x23\x5f\x8d\x04\x40\xbd\x5b\xd2\xf5\x60\x81\x1a\x91\xdb\x29\x22\x9c\x03\x45\x10\x90\xcd\x56\x88\x50\xe1\x55\xf1\x71\xe2\x2b\x94\xf5\x64\xda\xab\xc8\x59\xea\xbd\x35\xca\xd8\xc7\x1d\xa6\x3b\xd2\xa2\xd5\xa1\xe6\xec\xf5\xfa\xf3\x38\x3c\xc7\x6c\x81\x64\x01\x6f\x40\xd1\xd7\x47\xd6\x45\x4e\xbc\xda\x70\x99\x49\x90\x8c\x72\x2d\x84\x5e\xa0\xa4\xab\xee\x00\x84\x9b\xb0\x2c\x2c\x03\x0b\x5a\x56\xe5\xa5\x9d\xcb\xd1\xf9\x1c\xad\x07\xa6\xc7\x79\xcf\x9d\x0b\xb6\x9d\x55\xe5\x61\x60\x82\x17\x48\x89\x81\x44\xb2\x2e\x59\xe0\xcf\x7d\xeb\xa1\x66\x31\x24\x62\x06\x06\x1f\x82\x5f\x2c\x20\x4b\xe2\x32\x8c\x50\xef\xb2\xef\x65\x2a\x97\x7e\x87\x3d\xd7\x52\x1c\x31\x6a\x1c\x1b\x1d\xc1\x22\xd1\x9d\xc6\x76\x7a\x65\xd1\x64\x56\xe0\xcb\xbc\xb2\x6d\xd7\x08\x5d\x78\xfc\x1a\xdb\xf9\xf5\x09\xaa\x0a\x9a\x25\x53\x8c\x58\xb9\x68\xca\xd2\x45\xe3\xd6\x2e\x3a\xd1\xe2\x75\xed\x32\x1e\x90\x35\xa8\x08\xcd\xb4\xc5\x84\x75\x8c\x4e\xb2\x90\x51\xdd\xfe\xd5\x9f\xb9\xf3\x87\xbb\x4f\x2f\x48\x86\x96\x06\xbe\xe8\x0f\xb8\xa3\x1a\xe5\x8c\xcb\x0d\x46\x2b\x9a\x99\xaf\xd1\x2b\x3b\xcb\x6c\xa3\xd1\x40\x68\x04\xfb\x6d\xc7\x9b\xdb\xd9\x7c\xa9\xe8\x8e\x48\x85\x77\xfd\xfc\xbc\xe8\xad\x3f\x4f\x33\x27\xdb\x32\x55\xba\x96\xfa\x70\xcf\x41\x3c\x6c\xe8\x1d\x61\x6e\x46\x3f\x2c\xfa\xd3\xcc\x7c\x35\xf7\x32\xc3\x8a\x8b\xf5\xa0\x06\x41\xce\x9e\x1e\xdd\x5b\x47\xd8\x46\x6d\x93\x68\x5a\x33\xa8\xa2\x9b\x3b\xd8\xa5\x6d\xff\x0a\x7d\x7b\x7e\xe2\xf2\x9d\x4e\x08\x2b\x34\xae\x73\x85\x3a\x82\xa5\x82\xb8\x8f\x13\x35\xda\x08\xf2\x62\x26\x5d\xf7\xfd\x93\x92\x84\x62\x44\x42\x17\x09\x5e\x4d\xb3\x99\x35\xee\x24\x29\x9b\x58\xa2\x41\x17\x8e\x7c\xaa\x4d\x34\xf1\x98\x26\xfa\xaf\x6a\x13\xd7\xa0\xf6\x73\x8d\x8c\xf4\xe2\x2b\x5f\x3f\x8c\x69\x84\x46\x19\x79\xe8\xc6\xd9\x57\x65\x27\x8b\x56\x17\x35\x44\xf7\xeb\x86\xa8\xe9\x85\x47\x84\xf4\x48\xb4\x28\xc4\x5d\x03\xa6\xaf\x89\x22\x70\x85\x3b\x1b\x97\xb5\xf1\x1a\x40\x2c\x99\x74\x03\x35\xda\xe9\x29\xc7\x96\xfa\xe2\x05\x7a\x47\xc4\x9a\x8b\x9d\xb3\xdf\xac\xe3\x99\xb3\x24\xf8\x68\x02\x31\x8d\x5f\x4e\x14\x21\x86\x95\x68\x44\x33\xda\x56\x24\x02\xf4\x67\xcd\x05\xfc\x48\x59\xb6\xeb\x2a\x87\xf8\x9d\xb6\x2f\xe4\x20\x88\x8d\xe3\x20\x63\x7d\x8f\x58\xa7\x51\xc7\x3f\x12\xa3\xad\xba\x88\x23\x95\x08\x6f\x30\x65\xc1\xc5\x5f\x71\xa3\xc4\x9f\x66\x50\xcb\xc2\xe6\xaf\xf2\x97\xef\xbe\x43\x3d\x66\xb4\x99\x9d\x46\xa9\x57\xd6\x06\x33\x1b\x71\x53\x3c\x2d\xc7\xd6\xda\x5c\xdb\xba\x33\xf5\xba\x2b\xcf\x8f\xbe\xca\x46\xdc\x61\x87\xbf\xff\x09\xb6\x84\xcb\x23\xbf\x4f\xfe\x85\xa5\x24\x42\xcd\x26\x06\x7d\x85\xbe\x5d\x7e\xbb\x28\x1a\xec\x88\x94\x78\x43\x4e\x65\x58\xef\x23\x43\x36\x30\x2d\xc6\xd9\xf3\xff\x22\x82\x9b\x9d\x65\x9c\x75\x5e\x90\x03\x4c\x63\x03\xe3\x16\x13\xdb\x08\x15\x47\x78\x43\x0e\x9a\xe3\xb6\xbf\x71\xfd\x05\xd3\x9f\x99\x28\xf1\x1a\x37\xc4\xea\xd4\xc6\xfa\x1f\x24\x44\x6b\xac\xeb\x31\xb4\x01\x3b\xdb\x8e\x35\xee\x13\xf0\x66\x7a\xe8\x98\xcc\x9f\xb9\x07\x0c\x06\xfd\xf0\xf6\x7d\x69\x73\x00\xea\x9b\x93\xf4\xa6\x0d\xde\x11\xf0\xa2\x59\x65\x5f\x1b\x75\x2e\x15\x26\x0c\x15\xa1\x38\xb8\x70\x82\x01\xa8\x09\x68\x25\x09\x53\x0b\x20\x61\xf2\x11\xef\xfa\x0e\x82\xf5\x54\x05\x7b\x5b\xd3\x12\xba\xa3\x18\x61\x66\x82\xf1\x5d\xbc\x69\x54\xd7\x68\x61\xf3\x5a\xc5\x8b\x96\x71\x8e\x9e\x7d\xaa\x99\xd9\xf7\xdf\xa5\x9a\x9b\x13\x3a\xc9\x97\x4e\x1f\x8e\x83\x9b\x0b\xb4\x1a\x0e\xce\xa7\xae\x52\xab\xce\xc3\xad\xc7\x07\x03\x9d\x15\x61\x64\x4d\x1b\x8a\x05\xb5\xb9\x05\x82\xa8\x41\x30\x19\xb1\x0e\x4b\x89\xab\xe1\x10\xf3\xa0\xa9\xfd\xb9\xc5\xa6\xd4\x65\x65\xf3\x39\xfa\x3e\x73\x7b\x81\x98\xba\x8f\x42\x2e\x28\x0f\x4d\x18\x39\x7e\xa2\xef\x2c\xd2\xf1\xe6\x7a\xb2\x2a\x78\x53\xe8\x6e\x88\x8a\xdd\x5e\xee\xeb\xb7\x44\x35\x5b\x67\xd0\x5a\xd7\x95\xd5\x6d\x8a\xf3\x4e\x4c\x3d\x4a\xf6\x00\x88\x30\xae\x3e\xe9\xcc\xc1\x96\xaf\x00\x4c\x5a\xd2\x5e\x95\x51\xba\xd1\x45\x61\xd3\x25\x4e\xd0\x91\x69\xee\x8c\x96\x42\xc1\xac\x74\x5c\x38\x33\x57\xae\x01\xb9\xdd\xc9\xdf\x30\xda\xdd\x80\x77\x38\xee\x4a\x25\x1a\x7a\x8d\x0b\x1b\x81\x57\xda\x0e\xc5\xec\xc0\xd9\x88\xc5\x19\x03\x60\x7c\x5b\x1a\x26\xbf\x9c\x74\xa4\x1f\x32\x6a\xd8\x62\x69\x81\xf9\x5b\xd2\xf0\x1d\xf9\xb7\x2d\x97\x2e\x12\xe9\x11\x9d\x74\x9d\xd4\x62\xd0\xd3\x27\x69\x1d\x85\x5b\x4f\xbd\xe6\x19\xd6\x55\xd0\x06\xb0\x1d\x26\x81\x03\x1a\x9f\x05\x0f\x55\x68\x47\x30\x0b\xc6\xed\x0a\x56\x23\xd1\x46\xaf\x47\xc3\x1e\xf8\x04\x1f\x54\x9d\x6e\xf4\xf0\xaf\xdf\xbc\xfb\xf1\xcd\xd5\xe5\xfb\x37\xaf\xcf\x6d\xb4\x42\x4f\x64\xe2\xf6\x06\xd9\xa8\xd4\xa0\x6c\x94\x3d\x05\x49\x76\x98\x29\xda\xe0\x0e\x9c\xeb\x77\x44\xe8\x8d\xfd\xbf\xff\xf3\x7f\x93\x65\x6a\xfb\xf7\x26\x99\xc8\x2b\x04\x16\x06\x52\x69\xe6\xe9\x20\x31\xa3\x4b\xb2\x44\x3f\xfc\xfe\xbd\x59\x3b\x69\xe7\xc0\x0d\xdc\x76\xf3\xce\x86\x45\x26\xe3\x9b\x11\xae\x7f\xf2\x03\x2c\x0d\xaf\xa1\x06\x55\x79\xdf\x73\x49\x4d\x2a\xc1\xde\x79\x78\xfd\xbe\x98\xe6\xda\x74\xd7\x77\x90\x47\xf6\x3e\xfa\x29\xe5\xd3\x12\xdd\x92\x5e\x21\x2c\x9f\x53\x70\xf4\xe0\x3b\x4e\x5b\xb4\x12\x04\xdf\x42\xc2\xd3\x47\xe7\x32\x66\x8a\x6c\x6c\x86\x9d\x0d\x8c\x74\x82\xe0\xf6\xa0\x51\xba\x27\x4c\x6a\x5d\xce\xc6\x83\x32\x67\x3e\xb8\x2e\x38\x5b\xa2\x9f\x25\x41\x37\x54\x02\x6e\x59\x6c\x9b\xcd\x6f\x20\x2d\x92\xe0\x76\x61\xbd\x94\x29\xc4\x03\xa0\x42\xae\x49\x4a\xe7\x06\x38\x25\x70\xa9\x0a\x87\x02\x49\x1a\x47\x28\x6b\x84\x04\x34\x4d\x81\x5f\x37\x83\x5b\xbc\x8b\xe4\xa7\x1f\xd3\xf5\xd3\x75\x9c\x83\x66\x4f\x9b\x71\xd4\x71\xb6\x21\x22\x26\x9c\x90\x76\xf3\x8d\x44\x0d\xef\x3a\x52\x9e\x97\xc1\x89\x2c\xf5\x26\x06\x41\x70\xd4\x7b\xab\x6a\xbe\x48\x80\x93\x88\xe6\xd4\x5b\x0f\xb0\xf2\x9e\xb2\x14\xdd\x1a\x2e\x04\x69\x54\x77\x78\xae\x51\x4b\x8b\x35\xe0\x8e\x60\x1c\xea\x73\xbf\x19\x85\xdf\xcd\x22\x23\x1b\x7d\xca\x5a\xf0\x7b\x5a\xb3\x24\xea\x08\x71\xc4\x8b\xe9\x4f\x2a\x47\xa1\xf8\x80\x2a\x3a\x58\xd0\xbe\xb2\x58\x21\x30\x7b\x2d\xa4\x8d\xa3\x1a\xfc\x82\xc0\x5f\x20\xe2\xcb\xa2\x10\x18\xb6\x16\x7e\xc2\x4e\x17\x7e\x60\x0d\x5e\x1f\x0b\x15\xbc\x21\xa4\xb5\x72\x0d\x1b\xc7\xab\x1b\xbc\xef\x68\xf0\xda\x4a\x72\x07\x79\xca\xb9\xf7\x16\x12\x24\xf3\xcd\xfb\x95\xdb\x4d\x9d\xa7\x1a\xde\x02\x99\xe4\xe8\xa5\xfe\x1f\xb8\x39\xcb\x88\x90\x84\x24\x67\x34\xd3\xaa\x72\x10\x12\x0b\x50\x9d\x1b\xc8\xf8\xf8\x38\xcf\xa5\xb2\x5e\x7c\x7e\x18\x5a\x1f\x36\x4e\x4b\xdb\x78\x5a\x10\x5f\x46\x82\xc0\x80\xdc\x28\x53\x71\x78\x49\x71\x48\x73\x6e\x05\xde\x87\x98\x05\x55\x5b\xf8\x87\x01\xfd\xf5\x6b\x63\x1f\x52\x15\x13\x47\x35\x6c\x9a\xce\x26\xad\xcd\x57\x99\xea\x37\x98\x1d\x7e\xa3\x27\x83\xac\xa9\x03\x1f\xa2\x10\x93\x4b\xa0\x02\x5e\xb2\xa1\x77\x39\x99\xcb\xa1\xd9\x22\x1c\xcf\x06\xba\xba\x9f\x07\xf2\xcb\x3a\xc8\x24\x34\xa6\xa4\x59\x78\x4b\x4c\x7e\x97\xb3\x4e\xa9\x0d\x8e\x0c\x12\xfe\x36\x6c\x20\xa5\x17\x7c\xf0\x21\x32\xf0\x5a\xcb\x71\xd9\x07\x7c\x9e\x92\xae\x35\x29\xb2\x83\x24\x12\xdd\x54\xf4\xe1\x77\x46\x46\x8b\x45\x19\x91\xba\xf2\xb0\x35\x98\x75\x7f\x13\xf2\xfd\x92\xb9\x6e\xb4\x39\x76\x83\x7a\x2c\xf0\x8e\x28\x93\x64\x4e\x7a\x55\x9f\x30\x8c\x7a\x7f\x03\xe2\x48\x12\xeb\xf0\x05\xc9\xc2\x4c\x7e\x74\x77\x38\x87\x98\x79\xae\xa1\xf5\x58\x9a\x53\x64\x58\xeb\xf9\x44\xa0\x9b\x30\xe0\x8d\xd9\xeb\xcc\xf0\x15\xcb\xad\xbc\x81\x12\x9f\x8f\x6e\x46\xa5\x1c\x8c\x1f\xda\xb0\x5a\x39\xcf\x92\x0b\x5c\x0e\x80\x94\x74\xc3\x76\x36\x99\xcf\x24\xf9\xad\x48\x83\xf5\x39\xdd\x4c\x6c\xef\x06\x35\x9c\xad\xb9\x30\x61\x93\x15\x57\x5b\x74\xe3\xa0\x7d\x53\xcc\x74\x93\x43\xfb\x66\x89\x2e\x3b\xba\x61\xde\xde\xd8\x73\x67\x2e\x80\x1d\x06\x7b\xd8\x3b\x1c\xc5\x41\x50\xdb\x6c\x41\x63\x61\x55\xa4\xd2\xb8\xfc\xde\x6a\x8e\x77\xec\xcc\xd2\xbc\xf4\x71\x7f\xbb\x8d\xe2\xb9\x1d\x07\x36\x93\x98\x1a\x78\x50\xdb\x59\x31\xdf\x1f\x2d\x59\xce\x6b\x16\xdc\x43\x30\x36\xcb\x66\xb8\x9c\x4e\xc0\xcf\xf4\x7b\x03\x1b\x41\x10\xee\xb5\x26\x4b\x5a\x94\x46\xb2\xb8\xd3\xf9\xe1\x50\xe2\x44\xfe\xa0\xdb\x1f\x01\x50\x3c\x79\x0c\xa1\xc7\xa9\xee\x57\x9a\x60\x20\x90\x65\x45\xc0\x4a\xcb\x52\xab\x36\x51\x19\x07\xfd\xb3\x3c\x40\x37\xc2\x9b\x9d\xe6\x4d\x79\xee\x9f\x09\x15\xd3\xc4\x3a\x43\x7b\x9b\x70\xe6\x90\x07\xb6\xd2\x26\x31\xa8\x2c\x03\x80\xb2\x26\xe8\x22\xb3\x39\xe4\xc5\xca\x28\x55\xd6\xcb\x4d\xef\x04\x6e\xb0\x24\x85\xc5\x60\x42\x5e\x7c\x43\x1b\x8b\xea\x72\xe1\xb2\x00\xe2\x3c\x73\x11\xe7\xc1\xcf\x8c\xca\x1d\xfd\xdc\x74\x04\xb3\xa1\x9f\xcd\x8f\x84\x8c\x34\x08\x35\x5c\x57\xb8\xb9\x2d\x42\x63\x21\x49\x3a\xce\x1a\x08\x69\x78\x21\x05\x73\xaf\xe5\xce\x46\xb3\x21\x0a\x17\x76\x1a\x0f\xdb\x2d\x11\x64\x99\x8f\xfa\x7b\x6d\x58\xed\xa9\x24\x13\x1d\x69\xe4\x0c\x98\x17\x23\x38\x85\xcd\x71\xaa\x3d\x71\x67\x9e\xea\x8c\x6c\x02\x66\xf9\x98\x5c\x54\x21\x88\x8a\xc9\x4d\x76\x87\x65\x44\x70\x5e\x30\xf7\xd0\x28\x2e\xc2\x61\xa9\x2d\x97\xc1\x18\xc9\x7c\xbc\x74\x8d\xce\xc0\xdd\x66\x35\x8b\x28\x34\x50\x7a\x79\x35\x26\x4d\x64\xac\xc6\x9f\x4a\xf6\x2a\x4c\x33\x0c\xb4\x2d\x1d\x92\x68\x34\x97\x35\x59\x5b\x1c\xd4\xa8\x0f\x12\xa5\x86\xd4\x77\x55\xef\xe6\x23\x84\x49\x27\xfb\xed\x68\x17\x13\x39\xcc\xbb\xe8\x6f\x47\xbb\xd4\x3a\x8c\x35\xaf\xc7\x18\x53\x80\x54\x9a\x4c\x0c\x66\xb2\x1f\xca\x11\xf4\xf7\xf5\x6e\x21\xf8\x98\xf4\x72\x5f\x8f\x74\x2a\x42\x92\x69\xe7\xec\xe7\x63\x83\x84\xbc\x5e\x46\xbb\x7a\x63\x17\xde\x4c\xe6\x19\x89\x52\xce\x47\x3c\xea\x99\x3f\xad\xee\xb2\x35\xa6\xa6\xd5\x6f\x21\x78\xde\x90\x22\xf7\xc6\xa6\x0a\x90\xd6\x5f\x44\x5c\xfe\x05\x5c\xb5\x5e\xb1\xb5\xb6\x1d\xa3\xdd\x17\x74\xe5\x8e\x72\x64\xeb\x7c\x12\xb1\xde\x17\x65\xce\xdf\xf1\x5b\x93\x1a\xef\xd6\x84\x04\xb6\x49\x60\x98\x99\x60\x8c\xd6\xa6\x16\xf9\xe8\x2e\xcf\x85\x37\xe1\x2e\x57\x2f\xf8\x8e\x6a\x05\x5b\x0f\x63\x2c\xc6\x83\x05\xdf\x8b\x81\x85\x7c\x13\x9f\x7a\xed\x3e\x74\x0d\x5a\x80\x5b\xea\x8f\x64\x8d\x2e\x7c\x7c\xb2\xd4\x9c\x7c\x0c\xa9\xc2\x02\xed\x50\x02\x86\x88\x06\x5c\x06\x28\x96\xf4\x5d\x1b\xc8\x0e\x26\xc8\x7a\x49\xe5\x35\xd3\xea\x73\x43\x8a\xbe\x9a\xa0\xe7\xe8\xd9\x33\xd3\xae\x45\x17\x17\x15\xf6\x31\x32\xba\xfe\x58\xb8\x0b\xb2\xae\x36\xb9\x2f\xbe\xbd\x9f\x88\x37\x85\x43\x1c\x23\x9a\x11\x27\xf4\xbf\x11\x95\x3b\xa0\x4f\x0e\x36\x9c\xe4\x88\xce\x20\xe0\xbd\x1b\x01\x52\x13\x2b\xfe\x87\xd3\x7a\x42\xf3\x9d\x80\x6c\x5d\xa9\x1e\x03\xf4\xff\x14\x7f\xf7\xa8\x7b\x1b\x72\xed\xc0\x8a\xe1\xa5\xe3\xb8\xe2\x55\xf1\xbf\x8f\xb9\x67\xeb\x4e\x70\xad\x15\xd7\xfc\xdf\x93\x8e\x74\xc3\x44\xd1\x2c\xf8\xbd\xa7\x3d\xc7\x9f\xe7\xd8\xcd\x70\xea\x0b\x72\x67\x7b\x12\xa7\xf3\xe5\xb3\x8b\x84\x9d\xa1\x31\x9e\x97\x26\xc9\xdc\xff\xc3\x35\xfd\x68\xd7\xf4\xa3\x3c\xcd\xbf\x22\x8c\xb9\x38\x11\x63\xa6\xb2\x37\xff\x62\x91\xf0\x48\x8e\x38\xae\xe3\x52\x6e\x41\x7d\x0a\xb1\x72\xf2\x51\x09\x7c\x2c\x5a\x6e\xe6\x33\x55\x17\x3a\xe0\xa2\x43\x8f\xda\xa1\xef\x68\x83\x95\x5f\xb4\xf4\x1e\x06\xaa\xc8\xce\x26\xd9\x57\x12\x66\xff\x06\x43\xee\xa7\xa5\x4b\x8e\xd8\xd3\x17\x36\xd7\xee\x61\xa9\x8f\x7e\x80\x34\x0f\x47\xab\xd8\xce\x25\x94\x3a\x41\xca\x14\x47\x77\x59\x6c\x4c\xcf\xac\x59\x91\x0f\x4c\xd0\x8c\x56\x69\x93\xa6\xfa\x0a\x3a\x9b\x08\xc3\xf5\x6b\xf4\x27\xb3\x80\x58\xa5\xb3\xf4\xe5\x23\xa7\x00\x79\x8b\x90\x90\xc8\x8c\xa5\x4f\x8d\x7c\xf9\xa7\x99\xdb\xd3\x86\xc0\x72\x67\xf3\x65\xc8\x7f\x9e\x1b\xae\xaa\xac\x99\xf6\xe7\x81\x00\x47\x04\x4f\xee\xcb\x3f\x1d\xdf\x7b\x3c\xd4\x72\x1c\x9c\x2b\xdc\x69\x58\x16\x3a\x79\x30\xb5\xff\x9a\x20\x74\xb0\xba\x83\x3b\x7e\x2d\x27\x06\x24\xf6\x06\x54\x06\x1a\x93\x0d\xc8\xd7\xa8\x06\x1d\xfd\x5b\x0d\x0e\x15\x63\xfb\x6b\xe4\xfe\x9e\x06\x97\xb3\x84\x3a\xa8\x34\x2e\x81\x1a\x35\xc0\xb2\x4d\x15\x08\x23\xfd\xd1\xa3\xd7\xe3\xef\xfe\x68\xf0\xb2\x6f\x6c\x62\x5c\x08\x66\x90\xd6\x94\x9b\xc8\xb3\x77\xe3\x7f\xe5\x86\x6f\x48\xa3\x8c\x4f\xbd\x22\xc9\x4d\x92\x64\x6a\xe8\xa6\x87\x97\xdf\x37\x18\x9f\x97\xae\xa7\x5d\x34\x26\x91\xb0\x9e\xf7\x79\xbd\xce\x2c\x1d\x7b\x79\x96\x82\x9d\xbe\x40\xef\xb7\x82\xef\x8d\xa5\x5f\xa6\x6e\xa6\xf7\x3a\x7e\x0c\xb7\x01\x2b\x8c\xbc\x7a\x4a\x47\x33\x3a\x63\xf4\xa9\x2d\xb3\xc1\xfa\xe0\x56\x44\x2f\xb6\x9e\xd9\xf9\x07\x22\xe8\xfa\x90\xd6\xf4\x39\xc4\x31\xaa\x35\x17\x04\xf5\x26\x15\xd7\x09\x6b\xb0\x10\x21\xf6\x01\xb1\xc8\xd2\x6d\x65\xee\xea\x61\xe7\x22\x89\x87\xee\x05\x6f\x07\x28\x94\x63\x2f\x5c\x10\x21\xb8\x48\x1c\x27\x18\x82\x5e\xa6\xb8\x84\x4d\x4f\x5d\x63\xda\x0d\xb9\x8f\x1b\x4d\xa4\x89\xa2\xaa\x97\x6d\x09\xeb\x9d\xcd\xeb\x8e\xb6\xa3\x99\xa3\x99\xb8\x0a\xa6\x5a\x1d\xf6\x31\x38\x29\x03\x80\x96\x14\x5b\x9e\x8a\xc3\xd7\xba\x09\xea\xe8\xba\xee\x16\xb9\xc3\x02\x51\x79\x55\xe2\xd7\xbf\x63\x09\x37\x01\x6c\x12\x7a\x99\x17\x7f\x74\x84\xcb\x41\x6d\xb9\xa0\x63\x79\xf5\xee\x03\x79\xd5\xb8\xf7\x79\xd5\xf5\x5d\x9c\x4d\xb8\x75\x5e\xbc\x40\x57\x10\xe2\xfe\xe7\x73\xf4\x93\x09\xa0\x7b\xd6\xe3\xa3\x96\xa3\xbd\xe9\x5a\x4f\x1f\x44\xa7\x96\x60\x15\x44\x08\xbf\x8f\x2f\x04\x86\x3b\x01\x98\x89\x36\x3c\xb9\xa3\x7f\x29\x77\x64\xe8\xcc\x40\x29\xbd\x2a\xbe\xe5\x5d\x2b\x43\xdc\xb0\xe6\x0f\x98\x00\x80\x1b\xaa\xbe\x7d\xf7\xeb\xb3\x67\xd0\xd8\x92\xc5\x11\x58\x8c\xc2\x23\x41\x8d\xa3\xd0\xd0\x1f\x08\x34\x4f\xb6\x2a\xbd\x77\xd3\xbf\xd4\xbf\x9d\x62\x0f\xe8\x94\xe3\xad\x73\x0a\xf4\x40\x6e\x91\xc9\xf6\x33\x74\x69\xd3\x50\xaa\x9c\x03\x74\x39\xaf\xd4\x98\x4b\x34\x16\x4f\xf4\x4f\x95\x7b\x3e\xa8\xca\x48\x1e\x0d\x80\x70\x9e\x5f\x79\xfb\xa9\x40\xe5\x0a\xe1\x80\x49\x59\x68\x3c\x40\xea\xe4\xfd\x97\x28\x91\x4a\xe4\x77\x4e\xe3\x7e\xee\xd5\x5e\x97\xcb\x33\xc3\xa7\x04\x77\xca\x29\x6d\xad\x04\xbb\xa9\x2a\xe9\x7d\xde\x1d\x8e\x08\xaa\x3f\x33\x7f\x01\x35\x5c\x46\xa9\xf8\x65\xab\x32\xa9\xa2\x0d\xf8\x66\xcb\x96\x40\x2e\xe8\x6c\x2d\xf8\xee\x5c\x83\xa7\x80\xd9\x58\x9c\x09\x19\x6e\x07\xee\xe4\x34\x45\xdd\x79\x0e\x78\x12\x9e\xcf\x2e\xcd\xd8\x7c\x0f\xf4\xf2\xf9\x09\x0e\x8f\xb3\x70\x5a\xee\x8f\x7a\x04\xb2\x88\x41\xff\x60\x6b\x1c\x79\xcf\x35\x62\x5c\x78\x37\x89\x84\x7c\x0d\x25\x06\xa9\xf6\x5c\xa8\xed\x61\x61\xca\x69\xc1\xed\x90\xb4\xb2\xa7\x75\x15\xe5\xe3\x87\x7b\x13\xab\x41\xab\x5f\x07\x6e\xdc\x15\x7d\x77\xf0\x56\x0e\x55\xe0\xf6\x7d\xd1\x73\x09\x86\x4b\x4b\x5d\x32\x0d\x39\xc0\x02\xc0\xd7\x39\x60\x81\x99\x22\x91\x2b\xd9\x4e\xa1\x78\xb6\x14\xe7\x51\xc5\xa0\x24\xac\xc8\xd6\x95\x1f\x09\x8b\xa1\x0c\x82\x4a\x86\xf4\xf6\xf8\x50\x89\xf7\x13\x61\x14\xbe\x50\xad\x0e\xe0\x00\x03\x85\xc4\x98\x90\x96\x56\x9b\xa7\x0c\x77\xb1\x56\x0f\x08\xf0\x4b\x2b\x2f\x86\x9b\x26\x0a\x96\x25\xd1\x20\xd3\x84\x36\x97\xaa\x96\xfa\xe6\x50\x12\x24\x40\x13\x7c\x8e\xad\x55\xaa\x0b\x9c\x16\x04\x7f\xa8\x2a\xa8\xe2\xaa\x0c\x6f\xdf\x07\xd5\x70\x75\x88\xbc\x9d\xda\x40\x4f\x16\x14\x1b\xe3\xaf\x02\xcb\xdf\x61\x4f\x3e\x90\x64\x96\x66\x2c\xbb\x40\x53\x6e\xed\xdb\xcd\x24\x63\x16\x37\x97\x4e\x85\xd9\x58\x38\xee\xf3\x41\x05\xe6\xbd\x99\x62\x7e\x02\xc8\x2a\x40\x09\x0e\x82\xcc\x7d\x59\x07\xd4\xd1\xdb\x5b\x81\x5b\x15\xee\x3e\xef\xed\x33\x44\x13\x47\xcc\x6d\xe7\x4b\x70\xf4\x21\x5f\xd3\xf0\xad\xde\xfc\xef\x30\xc3\x1b\x12\x15\x13\x0a\xf1\x74\x60\x85\x3b\x6e\xa5\x5a\xc5\xbf\x48\xd7\xc1\x07\x60\x6b\x1c\xe0\xbe\x27\x0c\xc9\x01\xa6\x5a\x0f\x5d\x77\x28\xd9\xa6\xf4\x93\x9b\xb4\x35\xe3\x37\xde\x10\x75\x69\x6a\x02\xce\x82\x6b\xe0\xcc\xa9\x7f\xf3\x65\x92\x87\x67\x18\xeb\xcb\x67\x9f\xf2\x83\xcc\xeb\x50\xdd\xbf\xaa\x2b\x14\xc7\xfa\xf9\xda\x58\xc9\x79\x7c\xbe\xd0\x93\xa3\x80\xcf\xc4\x1c\x64\x19\x3b\x90\xbb\xda\xb3\xee\x42\x71\x0a\x3c\x70\x3e\x65\x4d\xaf\x5f\xcb\xfa\xc6\x1f\x97\x62\xf3\x90\x7c\x99\xce\xad\x20\x4a\x35\xaa\xd8\x92\x39\x76\xfe\x27\x51\xdf\x80\xcb\x1a\x70\x70\xc7\xef\x70\x97\xdd\x90\xf2\x95\xad\x42\xfe\x91\x47\xfa\xb2\x9c\x4c\xf0\x74\xa7\x3e\x16\xdd\xc3\x2f\x51\x0f\x59\x42\xb9\xe2\x4a\xae\x40\xdd\x25\x84\x55\x52\xac\xfc\xf8\xb9\xf2\x91\x6f\xfa\xc7\xd8\x97\xb0\xe2\x42\xf9\x20\x43\xa8\x50\xaa\xc9\x4c\x0b\x43\xaf\x24\x85\x40\x21\xc4\x0f\xf7\xba\xf5\xc1\x15\x8b\xa6\xaa\x10\x6a\x7b\x28\x9a\x16\xae\xc5\xba\x10\x04\x15\x52\x59\x65\xbd\x7e\x31\xd8\xe7\x55\xeb\x86\x7e\x7a\x9b\x29\xae\xbc\x04\xf6\x65\x18\x23\x66\xb8\x40\xf6\x26\xc1\x46\x10\x53\xb7\xcf\xea\x75\x6b\x2e\x4a\xa1\x7b\x40\x03\xd4\xe0\x83\x9b\xd8\xe9\x1a\xb4\x91\x2f\x88\x84\xba\xe0\x21\x03\x69\x34\x7e\xf0\x1d\x2a\xe3\x42\x2f\x5e\xa0\x77\xf8\x90\xeb\x9c\xb5\x26\x04\x37\xdb\x28\x7c\x73\xb0\xd5\x58\xaa\x15\xc1\x96\x4f\x0a\xb4\x8a\x2f\x69\xc7\xae\xdb\x91\xcb\xda\x3e\x87\x25\x78\xdb\x6a\x37\xa8\xeb\xa6\x2e\x04\xde\xcc\x4a\xae\x86\x69\xc3\x20\x5c\x62\xae\x6b\xf2\x7e\xc6\x5c\x99\x0e\xe3\xd7\x3b\xd2\x35\x9a\xe5\x67\x63\x03\x73\x53\x06\x7a\xd9\xa5\x5e\x74\xcc\x7d\x2a\xd9\x31\x88\x74\xb2\x16\xf2\x41\x2e\x3b\x72\xb4\xa6\x63\x02\x62\x3c\x5a\xe0\x71\x0a\x66\x79\x6e\xce\x49\x9a\x4a\xb1\x69\xe3\x1c\xfb\x3c\x25\xe5\x07\x6e\xe9\xd7\x45\x19\xbc\x99\x70\x4c\x91\xb8\xb4\xb5\x74\x7a\x4e\xa1\x3a\xbe\x29\x86\x1f\xac\x8c\x3d\x54\xf9\x6d\x20\x51\x02\x2e\x74\xb8\x00\xf4\xc2\xe4\x6f\xc4\xa5\xf1\x4c\xf9\x42\xc8\x79\xdb\xe2\x3b\x92\x4f\x05\x97\xd3\xc1\xb8\x92\xa8\x23\x6b\xb5\xb0\x57\x0d\xdc\xa5\xeb\x60\x0e\x98\x02\x5d\x18\x31\xfe\x9c\xf7\x86\x9d\xdb\x9a\xdb\x36\x6f\x7a\xd7\xab\x83\x89\xa4\x3c\x99\x82\xed\xd9\x18\x26\x97\x70\xc8\xf2\x99\xa9\xfc\xfa\x59\xcc\x26\x03\xcb\xe5\x07\x67\x6c\x04\x4a\x3b\x4d\x94\x52\x45\x15\xfe\xa6\xc9\x70\x3a\x6c\x70\x76\x81\xbe\x5d\x7e\x5b\xa3\xc9\x53\x9d\xfe\x5e\x11\x9b\xc2\xfd\x13\xf3\x92\x1f\x96\x93\xfc\xd9\xf9\xc8\x8f\xc8\x45\x7e\xa0\x92\xf4\xc0\x1c\xe4\x07\xe8\x53\x5f\x2c\xf7\xf8\x11\x79\xc7\x0f\xce\x39\xfe\xec\x7c\xe3\x1a\xe2\x97\xdf\x95\xfd\x4e\x4d\x3b\xce\xc8\xdf\xfa\x79\x5e\x3e\x67\xeb\xb8\x98\xa5\xff\xd3\xdd\x10\x81\x34\x9e\x41\xf1\x1d\x76\xc9\x64\xd6\xee\xbb\xc2\x2d\x18\x4a\x62\x60\x50\x9d\xbe\xbc\x7a\x12\xbc\x06\xa3\x77\x50\xae\x70\xaf\x06\x01\x51\x26\xc9\x70\x2f\xb7\x1c\x34\x8d\x5b\x12\x3d\xfc\x41\x09\xf8\xd7\x95\xe7\x1b\x90\x49\x42\x77\x23\xe9\x87\xe6\x7e\x89\x23\x97\xd7\x6e\xde\x94\x12\x47\xeb\x5a\xbb\x1c\x9e\x92\x1c\xa7\xca\x5c\xa3\x3c\xfa\x3e\x4a\x93\x59\xd9\xc8\xbc\xe3\x08\x59\x7a\x92\x34\xd5\xb7\xf2\x5e\xa5\x47\x61\xb2\xc0\x58\xa5\x7b\x49\xab\x49\xdd\xb1\x4a\x8f\xbc\x7d\x9d\x58\xeb\xeb\x3d\x92\xef\x50\x19\x38\x2e\x99\x58\x1d\xad\xa4\xe2\xa2\x64\x59\xde\xaf\x4e\xcb\x63\xa5\xcc\x8a\xde\x93\x04\x3d\x29\xc5\x2a\xba\x4f\x5a\x1a\x2d\x9f\x2b\xa3\xe6\xf9\xc3\xeb\xe6\x96\xc5\xe8\xbe\xfc\x5d\xbd\xe8\xe2\xe0\xab\x11\xf4\xfd\x15\xd6\xbe\xfb\xdc\x5b\x79\xbf\xb6\x4a\x7a\x71\xb3\xa4\xe2\x91\x7d\x8b\x6a\xcd\xc5\x0e\x27\x59\x9c\x28\xcb\xd9\x40\x17\x59\x62\x7b\xd5\xf3\x68\x00\x7e\x5c\x2b\x38\xa6\x08\x3c\x4c\xf6\x9f\x2c\xee\xcd\x99\xbb\xbf\xa6\x14\x2b\x90\xf1\x93\x3a\x54\x38\xb2\x87\x88\xff\xe3\x12\xdf\x9d\xe2\x71\x61\x9d\x1c\x64\xe4\x84\xad\xd4\xa9\xae\x92\xb6\x29\x7e\x57\x7e\x5f\x76\x1f\x49\x66\xb8\x18\xa1\x93\xb2\xe0\x9c\x8d\x1b\xd8\xc2\x24\xe1\x62\x8e\x49\xf9\xf2\xb5\xa4\x0a\xfb\x21\x2d\xc0\xa6\x2d\x87\x93\xcb\xaf\x99\xde\x36\x0e\x62\x5d\xb6\x90\xca\x01\x57\xf3\x7d\x0a\xbb\xbb\x1d\x19\xf1\x4b\xe9\xdf\xfa\xd1\x06\xe0\x8e\xec\x56\x44\x8c\x5d\x52\x8c\x93\x7d\x4f\xcb\xf4\x3d\xc9\x34\xf6\x43\x3e\xde\x24\x4e\xea\xc4\x85\xdd\x39\x2a\x5e\x78\xac\x71\x6b\x8d\x18\x7d\x94\xf3\x72\xf6\xb4\xc4\xba\x28\xed\x48\x0f\x00\x77\xcc\x65\xa8\x20\xed\x03\x4d\xe6\x95\xa5\xb8\xca\x53\xd3\x61\x61\xf3\x1d\x8f\x9c\xb5\x39\x68\x1c\xa7\xd4\xd1\x1d\xf9\x57\x5f\x42\x1c\xde\x13\x13\xdd\xe1\xf9\x1a\xd3\x0e\x42\x6d\x2d\x14\xab\x74\x59\x69\xf6\x05\xa7\x7a\x84\x32\xdc\x8f\x3a\x9b\xce\xa9\x2e\xe0\x7e\xdc\xdb\x6d\xe0\xee\x8b\x56\x8c\x86\x3b\x7c\x68\x04\xc0\xe7\xa0\x17\x65\x25\x39\x30\x3e\x3d\x3d\xee\xf3\x55\x62\x65\x47\x10\xe9\xac\x08\xa1\x19\xa2\xf4\x2f\x1d\x4e\x87\xcd\x6c\xea\x00\x5f\x47\x65\xb3\x6b\x71\xb3\x53\xe2\x65\x63\xe1\x32\x5f\x91\x0f\x59\xe5\x28\xec\xd3\x86\x1c\xfc\x2f\x49\x51\x3e\xb8\xc8\xd7\x9a\xaa\x7c\x90\x90\xbe\xe3\x77\xfa\x1f\xde\x2b\x6e\x9f\x63\xc4\x45\xcd\x7b\x57\x65\x81\xb5\xf6\xaa\xa5\x66\x31\xd6\x44\x0a\x6d\xbf\x91\x26\x09\xd3\x75\x81\xff\x1f\xa9\xe5\x57\x2c\x3d\x2b\xee\xd2\x14\xcf\xc4\xf9\xad\x85\x02\x28\xd1\x7b\x00\x26\xdd\x54\x71\xdb\x11\x36\x4a\x19\xd4\xfc\x0b\x4f\x4a\x46\xc3\xe4\xd6\x55\xf2\x2c\x9d\xc9\x96\x4f\x96\xf0\x2b\x56\x31\xff\xc6\xb4\xc8\xaf\xaa\x23\xd6\x8b\x8d\x27\xd5\x00\x1e\x82\x4c\x36\x48\x8a\xd9\xc1\xf0\x00\x7f\x69\xc4\xd4\x85\xa9\xbc\xa4\x50\x41\xad\xe4\x1d\x43\x83\x5a\x69\x79\x82\x51\x7b\x7d\x3e\x4e\xf0\x53\x45\x38\xb5\x66\x00\x95\xef\x7d\x39\x75\xe6\xaa\x5a\xc6\x64\x6f\xbc\xb5\x56\x2e\x81\x8b\x14\x5e\x7d\xbc\xa3\xbe\x3a\xa7\x8c\x98\x40\xc2\x1d\x1e\x54\xb6\x33\x5f\x74\x44\xe9\x63\x37\x2b\xa3\x50\xe7\xfc\x1c\xfd\x62\xa0\xf1\xa1\xda\xcd\x5d\x5c\xad\x44\x49\x53\xb2\xc9\x48\x25\x0e\x66\x5a\x68\x1f\x99\xc9\x2f\xd0\x80\xf2\xf8\xe9\x9d\xa3\x67\x9f\x92\x8a\x56\xc5\x25\x6f\xc8\xbb\xa9\x5d\x99\x92\x43\xa7\x6c\xbc\x05\xfd\xf7\x7f\xdb\x2f\xce\x52\xc1\xa8\xff\x7a\xf9\xbd\x9d\xe0\xd5\x6c\x2c\xe9\x3f\x2d\xb1\x8b\xa1\x34\xd6\x88\x8c\x3c\x1b\x4b\xa3\xbf\x1f\x05\xbd\x0d\x95\xbe\x31\x77\x01\x1c\xde\x80\x77\xfe\x9a\xb5\xe4\x63\x80\xb7\xe2\xc9\x17\xf3\x7c\xc8\xb4\x5a\xc9\x44\x08\x76\xa4\x7f\x81\x44\x6f\x6c\xcd\xa0\x13\x31\xe2\x14\x44\xb3\xab\xf2\x29\xff\x7e\xbf\x0f\x5c\x66\x34\x56\x7c\x19\xef\xd8\x38\x55\x4e\x10\x78\x40\xbd\x14\x1c\x55\x32\x30\xb4\x1d\x08\x5b\x84\x7d\xd1\xa0\x94\x19\x98\x9b\xcf\x90\xd7\xa5\xc9\x17\x37\xca\x97\x2c\xdb\xc5\xbc\x80\x8b\xd6\x8c\xf7\xe7\x81\xf8\x58\xaa\xb3\xb0\x23\xae\xe2\x6d\x3a\xe9\xad\xa6\x43\x78\x03\xeb\x04\x2e\x12\x31\xe5\xf3\x52\x67\x58\x4c\xf1\x16\xb8\x1b\xea\x6e\x8f\x38\x47\xa9\x71\xa0\x3e\xde\xb5\x7a\x8a\x9f\x34\xc9\x8a\x98\x97\xaf\x50\xb5\xd4\x04\xc5\xcc\x23\x1a\xce\x9f\xac\x7b\x41\xda\x59\xee\x60\x9e\x2a\x4d\x75\x87\x7d\xc6\x83\x3c\x47\xdf\x7f\x32\x0b\xf1\x77\xf7\xef\x93\xb9\x5f\x87\x79\x15\x47\xb7\x84\xf4\x48\x0f\x73\x1b\x15\x0b\x40\x7a\x0d\x46\xe3\xdd\xd9\x73\xab\x16\xc2\x28\xb5\x56\xf4\xfc\x95\x21\x27\xfd\xc7\x2f\x5d\xee\x24\xbf\x7e\x5d\x10\x55\xb9\x0b\xd2\xea\x19\xcf\xd1\x27\xa3\x18\x9c\x23\xbb\x1f\x14\x28\xf3\x3e\xbf\x18\x0c\x2a\x5e\xea\x75\x0f\x0a\x20\x94\x9e\x96\xdb\x50\x6e\xda\x55\x41\x4c\x6c\xf4\x58\x64\xff\x43\x1d\xfc\x7b\x52\x07\x83\x3e\x98\x09\xd9\xdc\x66\xef\x20\x43\x89\xb0\x90\xed\x99\x27\xff\x51\xd6\x12\xd2\x9a\xc2\x72\xce\x61\x10\x3f\x6e\x55\xd8\xe7\xc1\xf0\x35\x49\x70\x0f\xf0\xa6\xa0\x49\x03\x3d\x2e\x5c\x15\xa3\xe4\x39\xba\x72\x0f\x4a\x07\x61\xef\x9d\x22\x49\xee\x5f\xe6\xdf\x30\x25\x3d\xf5\xb0\xa1\x1a\xba\x33\x7b\x2b\xb9\x6b\x6c\xad\xcc\x96\x92\x2d\x46\x0e\x88\x07\xfb\x1c\x1e\xb4\xa5\x62\x27\x2d\x91\x5a\xf7\xc8\x7c\x15\x66\x11\x15\xaf\xcf\xb5\x29\xb0\x00\x5c\x8f\x28\xab\x1f\x23\x2c\x56\x54\x09\xcd\x1b\x4d\x91\x09\xfb\x30\x8f\x4b\x42\x83\x57\x38\xa2\xa2\xa9\x50\x5f\x53\xd5\x1e\x1a\xb3\xb3\xd8\x54\x2a\xfb\x6e\xa3\xd2\x52\x98\x74\xeb\x12\xf9\x34\x40\x35\xeb\x37\x18\xa2\xe1\x58\x24\xd5\xe9\x26\xde\x7d\xf0\xdc\x19\xb8\x55\x46\x84\xc6\x99\x51\xf5\xeb\x89\xf8\xf8\x71\xe7\x77\x3d\xa8\xff\xd7\xf5\x7c\x8f\xf1\xa6\xfa\xf7\x47\x3d\xe7\xe3\xb9\x0b\x7f\x15\xb7\xb9\xfb\x6b\x0c\x3d\x82\x4e\x82\x2e\xbc\xe0\x9e\xc2\x27\xf7\xfa\x83\x6b\x9b\xdc\x75\x2e\x9f\x84\x40\x36\xc3\xc8\x3e\xc4\xc1\x48\x30\x31\x1d\x2d\x7a\x1d\xa3\xf4\x58\xf2\xce\xe9\xcb\x1a\x8d\x01\xb6\x4e\x77\xf9\xa5\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\xf9\x3c\x8c\x59\xc9\xad\xb2\x3b\xbf\x29\xd6\x7b\xe3\x1c\x7d\xa0\x52\x91\xd6\xab\x65\x95\xeb\xc3\xb8\x6d\x73\x73\x15\xd8\x95\x57\xa6\xce\x2b\x0a\xd6\x22\xa5\xac\x5a\x90\xbf\xf8\xaa\xdc\xc0\x9b\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\x7e\xf9\x50\xb4\x8e\x2e\x9f\x16\x93\xd6\xf3\x1a\xfd\xd8\x4b\x48\xb2\x6f\x67\xd1\xdd\xc9\x53\x6e\x94\x8d\xc3\x06\x5d\x84\xc1\x33\xdb\x3e\x55\xa0\xa2\xfc\xae\xca\xfb\xf8\xee\x53\x79\x27\xbf\x92\xd1\x5f\x72\xb5\x53\x90\xf5\x6f\x4e\x16\xd9\xbc\x8d\x98\x95\xfe\xe5\xe4\x44\xf5\x99\xfe\x71\x3c\xf8\x9c\xf8\xac\x4d\xa6\x2a\x0e\x2c\xf2\x0e\x25\x06\x58\x85\xbd\x25\xbf\xff\x3b\xe9\xfa\x28\x12\x99\x38\x2b\x14\xd7\xdd\x2b\x57\x60\xf8\xda\x6a\x5e\x6c\xad\x8c\x37\x72\x87\xfb\xd4\x28\x9d\x76\x28\x9d\xc0\x74\x8d\x01\x32\xe6\x28\xac\xf8\x64\x72\x72\xf6\xa5\x5e\x83\x35\xbb\x74\xb1\xe1\xff\x20\x87\x74\xbe\x5a\xce\x66\xde\xd9\x98\xb7\xb3\x5b\x62\x14\xb8\xeb\x48\x1a\x7c\xb2\xab\xac\x88\xce\xfb\xec\x6e\xc2\x58\x4a\x75\x65\xb9\xbf\x24\xb3\x7c\x38\x2b\x96\x3f\x5a\x69\xf1\xd8\x40\xf9\x56\x5e\x2f\x6a\x4b\xaf\x70\xbb\xa9\x84\xf0\x23\x93\xc2\xbf\x5f\x7f\x38\x73\x6c\xb5\x22\x20\xcb\xe9\x46\x5d\xa0\x95\x90\xc2\xe7\xe0\xb9\x8d\x2d\x1c\x41\x75\x10\xce\x0f\x46\xf6\xfa\xea\xbe\x34\xbe\x83\x87\xcd\xdf\x22\xf3\x29\x8d\xee\xed\xbd\x70\x2e\x93\x6a\xa1\xf3\xc3\xb3\x96\x7c\x74\x2e\xb4\x13\x8e\x14\xae\xae\x40\xa7\x19\x5f\xd7\x74\x9f\xc8\xde\xb4\xe5\x0e\xe2\xca\x3c\xda\x9e\xff\x98\x19\xb7\xa7\x4e\x6d\xa0\x3b\xc3\xea\x3c\x59\x7c\x1e\xa8\x45\xb1\xa6\x3e\x1d\x86\xb2\x60\x0c\x7e\x2a\x53\x7b\xc1\x96\xe0\x3e\x90\xbc\x0c\x77\xf4\xc0\x61\x9a\xa6\xe0\x2a\x63\xe7\x8f\xef\x5f\xab\xe4\xa5\x6c\xf2\x91\x34\x83\x0a\xd7\x1c\xcb\x68\xac\xf7\xdc\x99\x77\xfd\xab\xce\xb2\xcf\x8f\x6f\x65\x08\x95\x59\xba\x89\x89\xe0\xa0\x0e\x0c\xe4\x04\x42\x3e\xc9\xdb\x90\xac\xd3\x27\x07\x58\xca\x2c\xeb\x41\x55\x90\xcc\xe7\xdd\x28\x5f\xa2\x28\x49\x84\x08\x1a\xd3\x59\xc5\x95\xd2\x25\xa9\x68\x23\x86\x58\x89\xa3\xa7\x91\x77\x3a\x78\x2d\x8f\xd6\x51\x7e\xd9\xf2\x74\x0b\x23\x63\x08\xe1\xc5\x3d\x50\x29\x71\x59\x82\xbf\x62\x38\xa4\x06\x58\xe7\xac\xaf\x40\x4e\x09\x2e\x27\xf1\xc1\x8c\x8c\x4c\xa9\x3d\xf0\xe7\x08\x7c\x70\x99\x1c\x45\xce\xf6\xf5\xeb\xe8\x51\x84\x22\xe1\x67\x0a\xd9\x4f\x0c\x55\x4e\x14\x75\xf5\x08\x7d\x4b\x0e\x53\x45\x73\xcb\xf0\xd5\xd1\xbd\x3a\x8c\xd5\xdb\xb3\x5b\x37\x92\xe4\xc6\x1e\xfe\x8d\x29\x4d\x09\x07\x7c\xf3\xb0\xca\xc0\x8f\x8f\xa6\x95\xa5\x25\x2b\x8c\x36\x43\xcd\x0f\x51\xf0\xf3\x84\xd6\x8e\x37\xbb\x5e\xa3\x55\x28\x33\x73\xed\x7e\x54\x1a\xbd\x96\x75\x59\x34\x36\xf3\xd9\x84\xca\x1c\x1f\x5d\x76\xce\x63\x01\xc5\xa4\xd1\xa5\x7b\xd3\xc9\x05\xe7\x5c\x5a\x82\xad\x4e\x18\xc4\x42\xe9\x74\x98\x2a\x4b\xfe\x88\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\x31\xdb\x7e\xa8\xc4\xaa\xbf\xf1\xa1\xf5\x8d\xd1\x4c\x00\xf4\x79\x62\xfa\xec\xef\x51\x04\x7e\x9e\x2c\xab\x64\xae\x3c\x88\xd1\x7b\x39\xe6\x2d\x89\x2f\xc3\xfc\xbf\x4a\x62\x4d\xc6\x2d\xa2\xf8\x75\xc4\x71\x8f\x48\x1b\xe7\x0d\x4a\xdc\x3b\xa5\xab\xf3\xf7\x5a\xd7\xb5\x8c\x38\x02\x0d\x8d\x41\x13\x55\x0b\x90\x08\x37\x6a\x80\x3b\x60\xd6\x85\xfb\xaf\x88\xbb\x6b\x9f\xf9\xd8\x70\x43\xde\xe6\x7c\x6e\xad\xfb\xbb\x25\xc1\x94\x83\xac\x5f\xa9\xca\x37\x12\xfc\x76\xbc\x61\x3d\x0b\x15\x05\x2a\xac\x54\x53\x08\xb5\x96\x51\xd4\xb9\x6e\xfc\x14\xf4\x85\xe2\x9a\x0d\x32\xb6\x5b\x68\x6a\xb0\xb8\xcf\xb8\xdc\x42\x63\x55\x98\x23\x89\x5a\x97\x6d\x59\x6a\x50\xd2\xe4\xca\x32\x2e\x70\x28\x9b\x76\xa1\x6c\xbc\xb6\x62\x88\xc0\xc6\x26\xbe\x23\x22\x4d\x2c\x16\xf0\x24\x0f\x5f\x9b\xad\x90\x87\x89\xbc\x47\xa4\x2b\x9d\x24\xf9\xfc\x38\xe8\xe5\x85\x1b\xe1\xd4\xe2\xa7\x25\xc3\xcf\x56\x79\x8e\xde\xc2\x63\x81\x30\x28\xd4\x31\x5a\x11\xd4\xd9\x4a\x7d\x0c\x71\x81\xc8\x9f\x07\xdc\x85\x47\xd1\x11\xcc\x5f\x11\x6d\xd7\x4c\xcd\xdc\xea\x9e\x87\x45\xcf\xd1\x4b\x4f\x80\xb1\x5a\xbb\xec\x08\xdb\xa8\xed\x17\xdc\xc8\x3b\x77\x8a\x3e\x51\x04\x4e\x93\x4a\xc4\x07\x48\x4b\x5a\xf1\x81\xb5\x79\xd1\x9c\xfb\x82\x77\x38\xd2\xf0\x5b\x18\x13\x2f\x32\x65\x2f\xf1\xee\x92\x2e\xe6\x59\x40\x9a\x1f\x61\xb5\x2c\xeb\x7b\xc7\x04\x30\xea\xb9\x94\xd4\x3d\xc9\x07\xd1\x74\xbe\x73\xc3\xec\xf0\x21\x94\xd0\x53\xb5\x57\xa1\xa3\x31\x9d\x70\x76\x0f\x6d\xd2\x10\xac\x5e\x63\xda\x55\x6a\x88\x2c\xd0\x1b\x30\xe6\x29\x67\x70\x3d\x04\x6a\xd6\x31\xf2\xd1\xf1\x0d\x5e\x79\xcb\xc6\x7d\x6a\x1e\xc1\x58\xb8\x5f\x3c\x4c\x09\xd2\x40\xfe\x05\x66\xfd\x30\xf1\x1e\x4b\x35\xd6\x68\x8b\x1b\xbf\xbc\x38\xa5\xba\xf1\x44\x01\x0a\x58\xef\xf1\xf2\x2d\xf1\x4a\xab\x63\x1d\x7b\xb6\x05\xf6\x62\x91\xcf\xfc\xff\x9f\xd0\x3f\x8f\x79\x0e\x51\xed\xdd\xa3\x9f\x70\x47\xae\x95\x4d\xab\x43\xb9\xac\x47\x5a\xb3\x7f\x0e\xee\x1a\x30\xc2\xac\x40\x77\x9d\xb2\x8a\x50\x91\x18\x5b\xdb\x3a\x65\x56\xbc\x38\x17\x0f\x1d\x7d\x60\x74\xda\xf0\xfb\x72\xa9\xae\x56\x5c\x3c\x3b\x66\x1c\x1c\x91\x26\x55\xb7\x19\x0b\x89\xd9\x7f\xb4\x4f\x9b\x06\xa8\xc0\x05\x6d\x2f\x99\xe1\x09\x28\xe0\x46\xc9\x48\xa0\x2c\xf8\x67\x90\xa0\x04\xbf\x79\x7f\x46\x71\xe7\x2c\xcb\x7d\x6a\xd3\x1e\xd8\xe3\xf9\xab\xbf\x0a\x53\x2a\xce\xb0\x59\x53\xd6\xa6\x26\x04\x6d\xab\x26\xc4\x3f\x6c\x83\xbf\x88\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\x55\xd0\x69\xb2\xd8\xaf\x49\xb4\xd1\x4b\x2f\x8f\xf1\x7d\x14\xc3\xb6\x39\xed\xba\xaa\x76\x55\xf2\x1d\xbb\x14\x78\x76\x42\x65\x97\xf1\x1b\x80\xc7\xc1\x39\xe1\x46\x19\x01\x67\xec\x46\xa1\xb2\x74\xc5\x3d\xaa\xe6\x65\x04\xa2\xfc\x95\x9e\x5f\xd9\x7e\xa1\x4c\x72\x4a\x70\x93\x3b\xfe\x62\x62\x21\x8d\x39\x26\x0b\x30\xd7\x10\x11\x61\x4a\x1c\x4c\x80\x2c\x8a\x40\xda\x37\x04\x20\x1f\x13\xca\x72\x7a\x8f\x40\x79\x81\x97\xaa\xad\x36\x43\xb4\xd6\xb4\x18\x71\x81\x58\x56\x64\x9e\x70\x92\xa4\xb2\x1a\x44\x59\x34\x7f\x3e\x07\x66\x2d\x22\x1f\x9b\x6e\x68\x01\xa2\x3e\x9c\x67\xb4\x24\xd2\x22\xd9\xd1\x86\x2c\x50\x47\x30\x5c\xd5\xc4\xa8\xc5\x6c\x03\xfa\xbf\xd9\x1f\x5e\x2b\x6b\x11\x77\x9c\xf7\xc5\x1e\xde\xdc\x11\x71\x30\xfe\x0b\x5f\x72\xb1\xc7\x6a\x8b\x66\x49\xc8\x6b\x31\xea\x03\xf6\xbf\xcc\x1d\x6e\xe7\x53\x34\xb8\xeb\xe4\x48\xa4\x39\xbc\x80\x2c\xe8\x0e\x8b\x43\xf4\x16\x9c\x79\xca\x41\x70\xcd\x93\xa7\x0e\x62\x4a\x92\x17\xb4\x90\x89\xf6\x53\x4b\xc7\xa0\x90\x23\x74\xa4\x5a\xd3\x29\xdc\xef\x08\xfa\x57\x4b\x7e\xba\x07\x66\xa6\x9c\x6c\xf9\xdd\xe7\xfa\x92\x63\xb7\xdb\x31\x3d\xe4\x2b\xd4\xe4\xb4\x8f\xa2\xa5\x67\xf8\xb8\x82\x9c\xa7\x99\x70\x65\x05\xce\xf8\x5f\x0f\xd4\xb4\x38\x73\x45\xdb\xaa\x5a\x8b\x29\x32\x93\x6b\x02\x09\x13\xd3\x5c\xed\xd3\x7d\xfd\x77\xcb\x82\x2e\x74\x83\xca\x39\xd8\x9b\x47\xb6\x1e\x9e\x90\xe8\x96\x41\x49\x59\xac\x0a\xf8\x9b\x12\x05\xc9\x18\x10\x66\x0d\x1c\xff\xda\x5f\x6c\x6f\x67\x13\xf5\xd5\x86\x81\xb6\x13\x17\xcb\x4d\x8e\x79\xe5\x8e\x19\xbc\x9d\x63\x8a\x12\x00\x57\x8a\xee\x67\xc1\x65\x9b\xa6\x3b\x58\x7d\x8b\xae\xdc\xa3\xbc\xb5\x0b\x5e\xe1\x42\x4d\x18\x61\x36\x3f\x47\xdf\x47\x03\x06\x68\xfb\x72\x5e\x36\xf7\x3d\xee\x13\x2f\xbd\x3c\x27\xd8\x6c\x68\xae\xff\xc2\x1b\xf2\x4e\x73\xc2\x0b\xf4\x42\x9a\x7f\xbe\xc8\x04\xe8\x58\xef\x50\x3f\x58\x77\x36\xfb\xad\xf6\xbd\x7f\x72\xff\xe4\xff\x07\x00\x00\xff\xff\x66\x7a\x02\xc1\x12\xb2\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{0xef, 0x4e, 0x37, 0x3a, 0x2e, 0xc6, 0x32, 0x44, 0x30, 0x20, 0xdb, 0x7c, 0x34, 0x4f, 0x46, 0x8, 0x8e, 0xe8, 0xe6, 0xad, 0x29, 0x1, 0xf3, 0x5f, 0xbd, 0x85, 0x6a, 0x99, 0x78, 0xf8, 0xb, 0xdf}} + 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 } diff --git a/tests/NFTStorefrontV2_test.cdc b/tests/NFTStorefrontV2_test.cdc index c2f4d25..896d1c3 100644 --- a/tests/NFTStorefrontV2_test.cdc +++ b/tests/NFTStorefrontV2_test.cdc @@ -667,9 +667,9 @@ fun testRemoveItem() { // Test that the proper events were emitted var typ = Type() var events = Test.eventsOfType(typ) - Test.assertEqual(6, events.length) + Test.assertEqual(8, events.length) - let completedEvent = events[5] 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)