From 63f0f54bbfc3905afc38fd4ab0bc6772f33d9c6a Mon Sep 17 00:00:00 2001 From: Jude Zhu Date: Fri, 20 Sep 2024 16:30:45 -0700 Subject: [PATCH 1/2] fixed media type --- contracts/TopShot.cdc | 125 +++++++++--------- .../scripts/users/is_account_all_set_up.cdc | 2 +- 2 files changed, 63 insertions(+), 64 deletions(-) diff --git a/contracts/TopShot.cdc b/contracts/TopShot.cdc index 8f87f94..6bfc8c7 100644 --- a/contracts/TopShot.cdc +++ b/contracts/TopShot.cdc @@ -1,7 +1,7 @@ /* Description: Central Smart Contract for NBA TopShot - This smart contract contains the core functionality for + This smart contract contains the core functionality for NBA Top Shot, created by Dapper Labs The contract manages the data associated with all the plays and sets @@ -10,23 +10,23 @@ When a new Play wants to be added to the records, an Admin creates a new Play struct that is stored in the smart contract. - Then an Admin can create new Sets. Sets consist of a public struct that + Then an Admin can create new Sets. Sets consist of a public struct that contains public information about a set, and a private resource used to mint new moments based off of plays that have been linked to the Set. The admin resource has the power to do all of the important actions in the smart contract. When admins want to call functions in a set, - they call their borrowSet function to get a reference + they call their borrowSet function to get a reference to a set in the contract. Then, they can call functions on the set using that reference. - In this way, the smart contract and its defined resources interact + In this way, the smart contract and its defined resources interact with great teamwork, just like the Indiana Pacers, the greatest NBA team of all time. - + When moments are minted, they are initialized with a MomentData struct and are returned by the minter. - The contract also defines a Collection resource. This is an object that + The contract also defines a Collection resource. This is an object that every TopShot NFT owner will store in their account to manage their NFT collection. @@ -35,10 +35,10 @@ Note: All state changing functions will panic if an invalid argument is provided or one of its pre-conditions or post conditions aren't met. - Functions that don't modify state will simply return 0 or nil + Functions that don't modify state will simply return 0 or nil and those cases need to be handled by the caller. - It is also important to remember that + It is also important to remember that The Golden State Warriors blew a 3-1 lead in the 2016 NBA finals. */ @@ -121,8 +121,8 @@ access(all) contract TopShot: NonFungibleToken { // Variable size dictionary of Set resources access(self) var sets: @{UInt32: Set} - // The ID that is used to create Plays. - // Every time a Play is created, playID is assigned + // The ID that is used to create Plays. + // Every time a Play is created, playID is assigned // to the new Play's ID and then is incremented by 1. access(all) var nextPlayID: UInt32 @@ -145,8 +145,8 @@ access(all) contract TopShot: NonFungibleToken { // can be created by this contract that contains stored values. // ----------------------------------------------------------------------- - // Play is a Struct that holds metadata associated - // with a specific NBA play, like the legendary moment when + // Play is a Struct that holds metadata associated + // with a specific NBA play, like the legendary moment when // Ray Allen hit the 3 to tie the Heat and Spurs in the 2013 finals game 6 // or when Lance Stephenson blew in the ear of Lebron James. // @@ -187,11 +187,11 @@ access(all) contract TopShot: NonFungibleToken { // A Set is a grouping of Plays that have occured in the real world // that make up a related group of collectibles, like sets of baseball // or Magic cards. A Play can exist in multiple different sets. - // + // // SetData is a struct that is stored in a field of the contract. // Anyone can query the constant information - // about a set by calling various getters located - // at the end of the contract. Only the admin has the ability + // about a set by calling various getters located + // at the end of the contract. Only the admin has the ability // to modify any data in the private Set resource. // access(all) struct SetData { @@ -228,14 +228,14 @@ access(all) contract TopShot: NonFungibleToken { // that reference that playdata. // The Moments that are minted by a Set will be listed as belonging to // the Set that minted it, as well as the Play it references. - // + // // Admin can also retire Plays from the Set, meaning that the retired // Play can no longer have Moments minted from it. // - // If the admin locks the Set, no more Plays can be added to it, but + // If the admin locks the Set, no more Plays can be added to it, but // Moments can still be minted. // - // If retireAll() and lock() are called back-to-back, + // If retireAll() and lock() are called back-to-back, // the Set is closed off forever and nothing more can be done with it. access(all) resource Set { @@ -253,7 +253,7 @@ access(all) contract TopShot: NonFungibleToken { access(contract) var retired: {UInt32: Bool} // Indicates if the Set is currently locked. - // When a Set is created, it is unlocked + // When a Set is created, it is unlocked // and Plays are allowed to be added to it. // When a set is locked, Plays cannot be added. // A Set can never be changed from locked to unlocked, @@ -263,7 +263,7 @@ access(all) contract TopShot: NonFungibleToken { // that exist in the Set. access(all) var locked: Bool - // Mapping of Play IDs that indicates the number of Moments + // Mapping of Play IDs that indicates the number of Moments // that have been minted for specific Plays in this Set. // When a Moment is minted, this value is stored in the Moment to // show its place in the Set, eg. 13 of 60. @@ -325,7 +325,7 @@ access(all) contract TopShot: NonFungibleToken { // // Pre-Conditions: // The Play is part of the Set and not retired (available for minting). - // + // access(all) fun retirePlay(playID: UInt32) { pre { self.retired[playID] != nil: "Cannot retire the Play: Play doesn't exist in this set!" @@ -359,14 +359,14 @@ access(all) contract TopShot: NonFungibleToken { } // mintMoment mints a new Moment and returns the newly minted Moment - // + // // Parameters: playID: The ID of the Play that the Moment references // // Pre-Conditions: // The Play must exist in the Set and be allowed to mint new Moments // // Returns: The NFT that was minted - // + // access(all) fun mintMoment(playID: UInt32): @NFT { pre { self.retired[playID] != nil: "Cannot mint the moment: This play doesn't exist." @@ -389,7 +389,7 @@ access(all) contract TopShot: NonFungibleToken { return <-newMoment } - // batchMintMoment mints an arbitrary quantity of Moments + // batchMintMoment mints an arbitrary quantity of Moments // and returns them as a Collection // // Parameters: playID: the ID of the Play that the Moments are minted for @@ -658,7 +658,7 @@ access(all) contract TopShot: NonFungibleToken { // Global unique moment ID access(all) let id: UInt64 - + // Struct of Moment metadata access(all) let data: MomentData @@ -678,7 +678,7 @@ access(all) contract TopShot: NonFungibleToken { subeditionID: subeditionID) } - // If the Moment is destroyed, emit an event to indicate + // If the Moment is destroyed, emit an event to indicate // to outside observers that it has been destroyed access(all) event ResourceDestroyed( id: UInt64 = self.id, @@ -694,7 +694,7 @@ access(all) contract TopShot: NonFungibleToken { .concat(" ") .concat(playType) } - + access(self) fun buildDescString(): String { let setName: String = TopShot.getSetName(setID: self.data.setID) ?? "" let serialNumber: String = self.data.serialNumber.toString() @@ -711,7 +711,7 @@ access(all) contract TopShot: NonFungibleToken { /// If the Tagline property is not empty, use that as the description access(all) fun description(): String { let playDesc: String = TopShot.getPlayMetaDataByField(playID: self.data.playID, field: "Tagline") ?? "" - + return playDesc.length > 0 ? playDesc : self.buildDescString() } @@ -731,7 +731,7 @@ access(all) contract TopShot: NonFungibleToken { ] } - + access(all) fun resolveView(_ view: Type): AnyStruct? { switch view { @@ -828,9 +828,9 @@ access(all) contract TopShot: NonFungibleToken { } return nil - } + } - // Functions used for computing MetadataViews + // Functions used for computing MetadataViews // mapPlayData helps build our trait map from play metadata // Returns: The trait map with all non-empty fields from play data added @@ -845,7 +845,7 @@ access(all) contract TopShot: NonFungibleToken { return dict } - // getMomentURL + // getMomentURL // Returns: The computed external url of the moment access(all) view fun getMomentURL(): String { return "https://nbatopshot.com/moment/".concat(self.id.toString()) @@ -888,19 +888,19 @@ access(all) contract TopShot: NonFungibleToken { return url } - // Create an empty Collection for NBA NFTs and return it to the caller + // Create an empty Collection for TopShot NFTs and return it to the caller access(all) fun createEmptyCollection(): @{NonFungibleToken.Collection} { return <- TopShot.createEmptyCollection(nftType: Type<@TopShot.NFT>()) } } - // Admin is a special authorization resource that - // allows the owner to perform important functions to modify the + // Admin is a special authorization resource that + // allows the owner to perform important functions to modify the // various aspects of the Plays, Sets, and Moments // access(all) resource Admin { - // createPlay creates a new Play struct + // createPlay creates a new Play struct // and stores it in the Plays dictionary in the TopShot smart contract // // Parameters: metadata: A dictionary mapping metadata titles to their data @@ -972,7 +972,7 @@ access(all) contract TopShot: NonFungibleToken { pre { TopShot.sets[setID] != nil: "Cannot borrow Set: The Set doesn't exist" } - + // Get a reference to the Set and return it // use `&` to indicate the reference to the object and type return (&TopShot.sets[setID] as &Set?)! @@ -1046,13 +1046,13 @@ access(all) contract TopShot: NonFungibleToken { // If the result isn't nil, the id of the returned reference // should be the same as the argument to the function post { - (result == nil) || (result?.id == id): + (result == nil) || (result?.id == id): "Cannot borrow Moment reference: The ID of the returned reference is incorrect" } } } - // Collection is a resource that every user who owns NFTs + // Collection is a resource that every user who owns NFTs // will store in their account to manage their NFTS // access(all) resource Collection: MomentCollectionPublic, NonFungibleToken.Collection { @@ -1092,7 +1092,7 @@ access(all) contract TopShot: NonFungibleToken { // withdraw removes an Moment from the Collection and moves it to the caller // - // Parameters: withdrawID: The ID of the NFT + // Parameters: withdrawID: The ID of the NFT // that is to be removed from the Collection // // returns: @NonFungibleToken.NFT the token that was withdrawn @@ -1125,12 +1125,12 @@ access(all) contract TopShot: NonFungibleToken { access(NonFungibleToken.Withdraw) fun batchWithdraw(ids: [UInt64]): @{NonFungibleToken.Collection} { // Create a new empty Collection var batchCollection <- create Collection() - + // Iterate through the ids and withdraw them from the Collection for id in ids { batchCollection.deposit(token: <-self.withdraw(withdrawID: id)) } - + // Return the withdrawn tokens return <-batchCollection } @@ -1140,7 +1140,7 @@ access(all) contract TopShot: NonFungibleToken { // Paramters: token: the NFT to be deposited in the collection // access(all) fun deposit(token: @{NonFungibleToken.NFT}) { - + // Cast the deposited token as a TopShot NFT to make sure // it is the correct type let token <- token as! @TopShot.NFT @@ -1151,7 +1151,7 @@ access(all) contract TopShot: NonFungibleToken { // Add the new token to the dictionary let oldToken <- self.ownedNFTs[id] <- token - // Only emit a deposit event if the Collection + // Only emit a deposit event if the Collection // is in an account's storage if self.owner?.address != nil { emit Deposit(id: id, to: self.owner?.address) @@ -1181,7 +1181,7 @@ access(all) contract TopShot: NonFungibleToken { // the moment for that duration access(NonFungibleToken.Update) fun lock(id: UInt64, duration: UFix64) { // Remove the nft from the Collection - let token <- self.ownedNFTs.remove(key: id) + let token <- self.ownedNFTs.remove(key: id) ?? panic("Cannot lock: Moment does not exist in the collection") TopShot.emitNFTUpdated(&token as auth(NonFungibleToken.Update) &{NonFungibleToken.NFT}) @@ -1206,7 +1206,7 @@ access(all) contract TopShot: NonFungibleToken { // TopShotLocking.unlockNFT contains business logic around unlock eligibility access(NonFungibleToken.Update) fun unlock(id: UInt64) { // Remove the nft from the Collection - let token <- self.ownedNFTs.remove(key: id) + let token <- self.ownedNFTs.remove(key: id) ?? panic("Cannot lock: Moment does not exist in the collection") TopShot.emitNFTUpdated(&token as auth(NonFungibleToken.Update) &{NonFungibleToken.NFT}) @@ -1265,7 +1265,7 @@ access(all) contract TopShot: NonFungibleToken { // Returns: A reference to the NFT // // Note: This only allows the caller to read the ID of the NFT, - // not any topshot specific data. Please use borrowMoment to + // not any topshot specific data. Please use borrowMoment to // read Moment data. // access(all) view fun borrowNFT(_ id: UInt64): &{NonFungibleToken.NFT}? { @@ -1319,7 +1319,7 @@ access(all) contract TopShot: NonFungibleToken { } // getPlayMetaData returns all the metadata associated with a specific Play - // + // // Parameters: playID: The id of the Play that is being searched // // Returns: The metadata as a String to String mapping optional @@ -1327,11 +1327,11 @@ access(all) contract TopShot: NonFungibleToken { return self.playDatas[playID]?.metadata } - // getPlayMetaDataByField returns the metadata associated with a + // getPlayMetaDataByField returns the metadata associated with a // specific field of the metadata // Ex: field: "Team" will return something // like "Memphis Grizzlies" - // + // // Parameters: playID: The id of the Play that is being searched // field: The field to search for // @@ -1347,7 +1347,7 @@ access(all) contract TopShot: NonFungibleToken { // getSetData returns the data that the specified Set // is associated with. - // + // // Parameters: setID: The id of the Set that is being searched // // Returns: The QuerySetData struct that has all the important information about the set @@ -1361,7 +1361,7 @@ access(all) contract TopShot: NonFungibleToken { // getSetName returns the name that the specified Set // is associated with. - // + // // Parameters: setID: The id of the Set that is being searched // // Returns: The name of the Set @@ -1372,7 +1372,7 @@ access(all) contract TopShot: NonFungibleToken { // getSetSeries returns the series that the specified Set // is associated with. - // + // // Parameters: setID: The id of the Set that is being searched // // Returns: The series that the Set belongs to @@ -1383,7 +1383,7 @@ access(all) contract TopShot: NonFungibleToken { // getSetIDsByName returns the IDs that the specified Set name // is associated with. - // + // // Parameters: setName: The name of the Set that is being searched // // Returns: An array of the IDs of the Set if it exists, or nil if doesn't @@ -1408,7 +1408,7 @@ access(all) contract TopShot: NonFungibleToken { } // getPlaysInSet returns the list of Play IDs that are in the Set - // + // // Parameters: setID: The id of the Set that is being searched // // Returns: An array of Play IDs @@ -1421,7 +1421,7 @@ access(all) contract TopShot: NonFungibleToken { // (otherwise known as an edition) is retired. // If an edition is retired, it still remains in the Set, // but Moments can no longer be minted from it. - // + // // Parameters: setID: The id of the Set that is being searched // playID: The id of the Play that is being searched // @@ -1443,10 +1443,10 @@ access(all) contract TopShot: NonFungibleToken { } // isSetLocked returns a boolean that indicates if a Set - // is locked. If it's locked, + // is locked. If it's locked, // new Plays can no longer be added to it, // but Moments can still be minted from Plays the set contains. - // + // // Parameters: setID: The id of the Set that is being searched // // Returns: Boolean indicating if the Set is locked or not @@ -1455,13 +1455,13 @@ access(all) contract TopShot: NonFungibleToken { return TopShot.sets[setID]?.locked } - // getNumMomentsInEdition return the number of Moments that have been + // getNumMomentsInEdition return the number of Moments that have been // minted from a certain edition. // // Parameters: setID: The id of the Set that is being searched // playID: The id of the Play that is being searched // - // Returns: The total number of Moments + // Returns: The total number of Moments // that have been minted from an edition access(all) fun getNumMomentsInEdition(setID: UInt32, playID: UInt32): UInt32? { if let setdata = self.getSetData(setID: setID) { @@ -1691,7 +1691,7 @@ access(all) contract TopShot: NonFungibleToken { file: MetadataViews.HTTPFile( url: "https://nbatopshot.com/static/favicon/favicon.svg" ), - mediaType: "image/png" + mediaType: "image/svg+xml" ) return MetadataViews.NFTCollectionDisplay( name: "NBA-Top-Shot", @@ -1742,9 +1742,8 @@ access(all) contract TopShot: NonFungibleToken { // Create a public capability for the Collection let cap = self.account.capabilities.storage.issue<&TopShot.Collection>(/storage/MomentCollection) self.account.capabilities.publish(cap, at: /public/MomentCollection) - //self.account.link<&{MomentCollectionPublic}>(/public/MomentCollection, target: /storage/MomentCollection) // Put the Minter in storage self.account.storage.save<@Admin>(<- create Admin(), to: /storage/TopShotAdmin) } -} +} \ No newline at end of file diff --git a/transactions/scripts/users/is_account_all_set_up.cdc b/transactions/scripts/users/is_account_all_set_up.cdc index 983c852..8e845bb 100644 --- a/transactions/scripts/users/is_account_all_set_up.cdc +++ b/transactions/scripts/users/is_account_all_set_up.cdc @@ -2,7 +2,7 @@ import NonFungibleToken from "NonFungibleToken" import PackNFT from "PackNFT" import TopShot from "TopShot" -/// Check if an account has been set up to hold Pinnacle NFTs. +/// Check if an account has been set up to hold TopShot NFTs. /// access(all) fun main(address: Address): Bool { let account = getAccount(address) From 0c620d58756b84e5db336f27c0b050ad663c3d22 Mon Sep 17 00:00:00 2001 From: Jude Zhu Date: Fri, 20 Sep 2024 16:32:04 -0700 Subject: [PATCH 2/2] fixed asset --- lib/go/contracts/internal/assets/assets.go | 6 +++--- lib/go/templates/internal/assets/assets.go | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 3f11bd1..73bc7a2 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -2,7 +2,7 @@ // sources: // ../../../contracts/FastBreakV1.cdc (38.47kB) // ../../../contracts/Market.cdc (11.292kB) -// ../../../contracts/TopShot.cdc (76.038kB) +// ../../../contracts/TopShot.cdc (75.79kB) // ../../../contracts/TopShotLocking.cdc (6.697kB) // ../../../contracts/TopShotMarketV2.cdc (13.008kB) // ../../../contracts/TopShotMarketV3.cdc (15.791kB) @@ -117,7 +117,7 @@ func marketCdc() (*asset, error) { return a, nil } -var _topshotCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x61\x93\x1b\x37\x8e\xe8\x77\xff\x0a\x5a\xf7\x2a\xd6\xec\xc9\x52\xb2\xbb\x97\x57\x4f\xe5\x89\x33\xf6\xd8\xd9\xb9\xb5\xc7\x3e\xcf\x24\xa9\x2b\x97\xeb\x96\x52\x53\x12\xd7\xad\xa6\xb6\x49\x8d\xac\x78\xfd\xdf\x5f\x11\x20\xd9\x24\x9b\x6c\xb5\x3c\xe3\xec\x5d\x6e\xf5\x21\xf1\x48\x24\x08\x82\x20\x08\x80\x20\x30\xf9\xdd\x3d\x42\x08\x39\x67\x72\x5e\xf3\x8d\xe2\xa2\x9a\x92\xa7\xac\x52\x35\x2d\xc9\xd5\x9a\xd6\x8a\x3c\x15\xfa\xaf\xb9\x22\x0b\x51\x93\xcb\x27\x67\xe4\x5a\x6c\xae\x56\x42\xdd\x83\x8e\xd7\x2b\x2e\x89\x84\x86\x73\xdb\x50\xff\x83\xf2\x4a\x12\xb5\x62\x64\x2e\x6a\x46\x16\xdb\x6a\xae\x61\xd3\x92\xab\x3d\x00\x82\xce\x06\x1a\xd1\xe0\x46\x64\x5e\x33\xaa\x58\x41\x66\x7b\x72\x4e\x37\x1b\x56\x93\x17\x74\x26\xed\x30\xac\x81\xbf\xa6\x15\x5d\x32\x04\x5f\x50\x45\x09\x95\x52\xcc\x39\x74\xde\x71\xb5\x22\xb4\x2c\xe1\xc7\x4d\x49\xf7\x92\xd0\xaa\x20\x92\x29\x09\x80\xd4\x8a\x2a\x42\x6b\x46\xb6\x92\x15\x84\x4a\xa2\xd8\x7a\x53\x52\xc5\x24\xa0\xa5\x7b\xbd\x14\x6b\x56\x29\x72\xf9\xfc\xda\x0c\xfe\xf3\x8a\x55\x84\x92\x8a\xed\xc8\xeb\x92\xee\xc9\x8e\x56\x4a\x12\x25\xc8\x8c\x11\x5a\x14\xac\xd0\xff\xd6\x3d\x6b\x36\x17\x75\x21\x47\x84\x56\xe4\xac\x58\xf3\xca\xcc\x09\x87\xf6\x20\x48\x55\x6f\xe7\x0a\x91\xd1\xf4\x53\xa2\x66\x05\xe1\x15\x40\x09\xa9\x39\x76\x04\xa8\x3c\xb0\xd4\x82\x06\x98\x57\x4c\xc9\x31\xfc\x57\x77\x93\x5c\x2a\x22\x16\x84\x92\xcd\x76\x56\xf2\x79\x30\x1a\x00\x73\x0b\x64\x1a\xf0\x6a\x21\xea\x35\xd5\x2b\x44\xe8\x4c\x6c\x15\xa1\x9a\x62\x23\x20\x1d\x25\x9b\x9a\xdf\xe8\xa1\x6a\x26\xc5\xb6\x9e\x23\xed\x90\x9a\x82\xac\x79\xa5\x00\x89\x35\x90\x4d\x92\x19\xd5\x94\x15\x8b\x85\xc6\x01\x57\x00\x46\x5e\xd1\x1b\x46\x66\x8c\x55\xa4\xe4\xd5\xfb\x86\x68\x57\xcc\x9b\x23\xa1\x30\x3f\x37\xd2\x8a\xe2\x32\x6f\xc4\x8e\xd5\xba\x47\x21\x60\x75\xc5\x02\xbe\xe6\xeb\x8d\xa8\x15\xad\x14\xa1\xc0\x5f\x48\xe8\x34\x1d\xcd\x32\x6a\xf8\x12\x96\x50\x83\x9b\x6b\x60\x96\x3b\xa5\xee\x89\x33\x37\xbc\xc2\xf6\xd8\x42\xad\x18\xaf\xc9\x4c\xd4\xb5\xd8\x5d\x31\xe5\x7a\x68\x10\x4b\xa6\xc9\x55\xb3\x05\xab\x59\x35\x67\xc4\x12\x06\x00\x59\x5c\x1a\x2c\xf4\x42\x8e\x2c\xe8\x2a\x46\x40\x18\xd4\x99\x22\x5b\xc9\xab\x25\x92\xce\x01\x37\x84\xba\xd0\xad\xb8\x9e\xc5\x7e\x94\x98\x2a\x2c\x1b\x57\x92\x14\x6c\xc1\x2b\x56\x38\x72\xea\x09\x2a\x06\x4d\x00\x0e\x6c\x96\xa5\xe6\x23\xa2\x18\x5d\xef\x44\xfd\x7e\x44\xfe\xba\x95\x8a\x94\xfc\x3d\x03\xc8\x17\x55\xc1\x69\x45\xc9\x6b\x3a\x67\xb5\xc4\xd1\x96\xc8\xd4\x0a\xf6\xaf\xee\x08\xc0\x34\xc7\x69\x52\xf1\x35\x1b\xc3\x17\xcd\xde\xb1\xac\xa1\xf7\x9d\xe6\x17\x56\x18\x0a\xe8\x2f\x78\xc5\x15\xa7\x25\xff\xc5\xed\x5e\xb3\x03\xcf\xf5\xd6\x36\xbc\x4b\x2b\x64\x38\xdd\xa1\x66\x6a\x5b\x57\x28\x28\x34\x3a\x00\xb1\x1e\x27\x04\x05\x2d\xa5\x30\x44\x90\x84\x92\xa7\xa2\x2c\x19\xae\x9b\xa5\xc8\x18\x05\x18\xd7\x52\x82\x88\xd9\x5f\x59\xb0\x4f\xd8\x0d\xab\xf7\x56\xde\x69\x81\x40\xc4\xae\x62\x35\xd9\xf1\xb2\xc4\x4d\x6b\xd6\x97\xd7\x84\xce\xe7\x62\x5b\x29\xb7\x2d\x40\x46\x99\xdf\x74\xcf\xb9\x1b\xdc\xc3\x74\x4d\x79\xe5\x24\xa0\x05\x81\xe0\x01\x77\xd8\x33\x7a\x25\xc5\xae\xb2\x72\xa9\x01\x64\xb8\x5d\x01\x23\x6d\x25\xd3\xe3\xae\x44\x59\xb8\x1e\x96\xee\xcd\xfe\xab\x84\x22\x7b\xa6\x70\x1f\x4a\x86\x9b\x80\xea\xce\x96\x80\x97\x42\xb1\x29\x39\x83\x09\xea\x4d\x3f\x5f\xd1\x6a\xa9\x39\xb1\x61\x52\xc0\x6f\x43\x2b\x2d\x39\x16\x9a\x70\xbc\xba\xa1\x25\x2f\x08\xad\x97\x5b\xc0\x91\x23\x6a\x9b\x5a\xdc\x70\x2d\x1f\x45\x4d\x44\xc5\x34\x8b\x68\xd4\x36\x35\x7b\x38\x17\x55\xc1\x0d\xcf\xd7\x64\x23\x24\xb0\xaf\xfd\x8a\xd6\xac\x7a\xa0\xc8\x5a\x8b\x06\x0d\xe8\xb9\x1b\x1b\xa6\x52\x08\xf8\x55\x14\x7c\xb1\x37\x68\xe2\x92\xf0\xf5\xa6\xdc\x1b\x06\x21\x5f\x6b\xc8\x15\x2f\x71\x2d\xf5\x9e\x50\x2b\x21\x19\x99\x53\xc9\x24\xa9\x18\x8a\xa0\x99\x16\x32\x55\x51\x36\xfc\xa4\xb7\xa4\x23\xc7\x05\x08\x68\x58\x8c\x46\xd8\x28\x41\x6a\xb6\x66\xeb\x99\x96\x49\x8e\x5b\xf4\x82\xfe\x20\xca\x82\x55\xe4\x0a\x70\xfa\x99\xd6\x35\x17\xb5\x24\xb3\x92\xed\x08\x25\x7f\x78\xf8\x0d\x29\x19\x75\x82\xfe\xf7\x5f\x7f\xf3\x2d\xec\xa1\x05\xaf\x68\x29\xc7\xf7\xee\xfd\x6e\x72\xef\x1e\x0e\xa3\xa7\xbc\xe4\xb3\x92\x5d\x8b\xf7\xac\x22\x8b\x5a\xac\xc9\xd7\x1f\x9e\xff\x78\xf9\xc3\xc5\x93\x17\xcf\xae\x5f\xfd\xf9\xd9\xe5\xd9\xf9\xf9\x9b\x67\x57\x57\xb6\xc3\xa5\xa8\x92\x7d\x2e\x9f\x5f\x47\x2d\x5f\x32\x45\xf5\xb9\xf9\x13\x67\x3b\x69\x9b\xbd\x7c\x76\x7d\x76\x7e\x76\x7d\xf6\xd3\xc5\xb3\x9f\xaf\xa2\x0e\x66\x07\xbc\x10\xf3\xf7\xc0\x09\xd8\xe3\xfa\xd5\xeb\xab\x3f\xbd\xba\x7e\xf1\xea\xe9\x9f\x2f\x2e\x7f\x88\xba\x68\xd8\x6f\x98\x14\xe5\x0d\xab\x09\xb1\x5d\x34\xf0\x37\xcf\xae\x5e\xbd\xf8\xe9\xd9\x1b\xdb\xe1\x1e\x9d\xcf\x99\x94\x43\x5a\x96\x27\xcd\xd6\x35\x43\x4e\xdb\xd3\xfa\x08\xc4\x9e\x4c\xc8\xc3\xbb\xf9\x58\x70\x76\x9b\x17\x6c\x53\x8a\x3d\xb0\xf1\x0d\xad\x39\x9d\x95\xe6\xfc\xbe\xc3\x21\xdd\x98\x2b\x7d\x80\x2b\x2d\x78\x83\x63\x42\xf3\x1c\xe2\xa1\x37\x4f\x85\x0c\xec\x91\xe9\x86\xb3\x9d\xde\x90\xe4\x12\x3b\x0f\x4f\xc8\x94\x5c\xa9\x5a\xaf\xce\x47\xcb\xff\xff\xe7\xe3\xe5\xb3\xeb\x9f\x5f\xbd\xf9\xf3\x27\xf2\x29\x18\x91\x16\x45\xcd\x24\x68\x30\xbb\x15\x9f\xaf\x48\x2d\xf6\xb4\x54\x9c\x49\x22\x57\x62\x5b\x16\x7a\x53\x14\x6c\x23\x24\x57\xe6\xa0\x4f\x0e\xfe\x06\xba\xed\xcf\x10\x1c\xe0\x60\xfe\xdd\x20\xe1\xd8\xe4\xcd\xab\xff\x3c\x7b\x71\xfd\x9f\x66\xd5\x23\x8c\x36\x54\xad\x9c\x3e\xb0\x9d\x31\x94\x03\x46\xd9\x71\xca\xc0\x8c\x95\x02\x65\x91\x69\x7a\xe6\xc9\xdc\xc9\xc4\x4c\xe6\xb3\xe8\xd8\x0c\x0a\x63\x5e\x29\x51\xd3\x25\x7b\x4d\xd5\xca\x90\xd6\xfd\xdd\x4c\x6d\x22\xf1\xdb\x89\xe1\x9c\x08\x46\x33\xc3\xbb\xe2\x9a\x88\x51\xdd\x24\x9f\xdd\x68\x29\xff\xa5\x78\xf4\xd9\x9a\x2b\xd0\xac\x23\x2d\xd8\x9c\xcc\x5c\x5a\xc5\xbd\x45\x5d\xa6\xf1\x82\xc6\x4f\xb1\xc5\x90\x17\x53\xf2\xe3\x45\xa5\xfe\xf0\xfb\x91\x16\xee\x20\x85\xa6\xe4\x23\x72\xee\x14\xff\xf7\xe9\xa4\x63\x64\xc9\x6a\xcd\xa6\x5a\x2d\x84\x23\x4c\xd5\x7c\xb9\x64\x35\x0a\x6f\x6a\xd4\xbb\x0c\x22\x97\x6c\x77\x05\xdd\xaf\x14\xad\x35\x36\x15\xdb\x3d\xdd\xd6\x35\xab\x14\x7e\x6f\x71\x3b\x69\xe6\x0e\x94\x05\xcb\xe0\x8a\xa9\x87\x6f\x58\x09\x46\x86\xaf\x6c\x4e\x26\x1d\xe8\x6a\x5d\xf1\x20\x81\xae\x98\xb2\xf4\x91\x4c\x5d\x9c\x37\x24\x92\x11\x5a\x07\x56\x44\x1f\x54\xd6\x1c\xa1\x1a\x6c\xc7\x8a\x9c\xe9\x86\xd7\xe2\x8a\xa9\x78\x50\xad\xb2\x37\x7f\xe7\x06\xb5\x03\xd6\x4c\x71\x4d\x7e\x10\xf0\x30\x28\x9c\xb4\x73\x5a\x69\x55\x63\x66\xec\x2c\x63\x27\x74\xe0\xf3\x06\xe1\x3c\xaf\xc5\xfa\x20\x4e\x23\x52\x6d\xd7\xa8\x0d\x1d\x24\x8e\x59\x81\x52\xcc\xdf\x6b\xad\x73\xcd\x68\xa5\x05\xc8\x6b\xb0\x4b\x1a\x2c\x81\x6e\xf9\xf5\x79\x01\xdd\x43\xac\x72\x23\x1a\x35\x8d\x4b\xa3\xea\x7a\xa4\xc9\x0c\x80\x3d\x5e\x42\xeb\x21\xea\x6c\x76\x98\x6f\xff\xd8\x9e\x7c\x82\x49\x68\x79\xb9\xd5\xda\x88\xf7\xad\x13\x46\x3e\xc6\x09\xbe\x6e\x94\xe2\x87\xf5\x31\xec\xbd\x76\xd3\xd4\x4a\x7b\x51\xd3\x5d\x65\x67\xda\x80\xcc\x4c\xf8\x67\xd3\xc3\xc9\x03\x3d\x4d\xdd\xd9\x1d\x20\x8f\x73\xd4\x6d\x86\x75\x07\x94\x36\x6a\x44\x9f\x61\xcf\xb1\x47\x30\xaa\x12\xfe\x98\x07\x97\xb4\x60\x52\xd5\xfa\x34\xe9\x5c\xca\x73\xdb\xca\x1b\x2a\x0b\xdc\x3b\xef\x0e\x8b\x0a\xd7\xd6\x49\x8c\xc4\x3a\x8f\x48\x45\xd7\xcc\x2a\x04\x9d\x92\xb6\x17\x4e\xa1\xbd\x2e\x37\x6c\xce\x17\x7c\x6e\xe6\x7a\x10\x53\x23\x69\xb0\x75\x82\xbd\xd3\x33\x38\x20\x94\x7e\xa5\xa3\xf5\x61\xc9\x6e\x58\x49\x16\x9c\x95\x85\x1c\x7b\x1a\x8b\x64\xd6\x89\xa2\x77\xcb\x96\x96\xe4\x86\x96\x5b\x26\x1b\xff\x52\xb7\x4f\xe7\x0b\x9d\xd5\x78\x8e\x21\x12\xe0\x21\xb8\x02\x5b\x4f\xab\x4d\x5a\xdd\x1b\x47\xed\xf4\x81\xa1\x91\x9a\xb3\x8d\x75\x46\x55\x05\x9f\x83\x37\x8c\x92\x65\x2d\xb6\x1b\x6d\xb3\x81\x63\x49\xad\x6a\xb1\x5d\xae\x3c\xfb\x7e\x32\x21\x2f\x69\xb5\x37\x7e\x27\x5a\x11\xf6\x81\x4b\x45\xf4\xfc\xa1\xd5\x88\xcc\xb6\x8a\x88\xaa\xdc\x83\xf1\x87\x87\xd9\xb8\xad\x83\xd1\x9a\xcc\x53\xc7\xb0\x9b\xd5\x4f\x46\x0d\x27\x92\xff\xc2\x48\xc1\xd1\x95\x58\xef\x35\x6e\x9e\x2a\x22\x7d\xd0\x92\x95\x0b\x84\xad\x59\xe7\x9c\x2a\x2a\xa7\xe4\x23\x02\x9e\x42\xaf\x4f\xbd\xe0\x5f\x31\xdf\x0f\x91\x19\x42\x62\x23\x7f\x04\xd3\xaf\xf7\x20\x8d\x8f\x26\x3b\x84\x9c\x92\xef\x7d\xf8\xa1\x0a\x7d\x71\xee\xdc\x89\xf6\xc8\x35\x1e\x42\x38\xeb\xc6\xc4\x93\xfd\xf5\x1e\x16\xc8\x3b\xc6\x8d\xd8\xb1\x1b\x0d\x38\x43\x4a\xbe\xac\x58\xe1\x3a\x9a\xfd\x6f\xd5\x8d\x07\x52\x8f\x89\x66\x35\x03\x39\xc1\xab\xb9\x36\x8b\x2b\xe3\xc4\xfd\x26\xbd\xd6\x15\xfb\xa0\x5e\x07\xdb\xb9\xe7\x3c\xd0\xcb\x19\xa0\x9f\xd0\xaf\x26\x13\x94\x1d\xc1\x14\x3c\xd4\x25\x53\xb7\xc1\xfc\xca\x97\x4b\x01\xe2\x4a\x28\x5a\x6a\xcd\x64\xc6\x6a\xbd\xa8\xd7\x62\xa3\xcd\x29\xe5\xfb\x93\x63\x4f\x68\x84\xf8\x13\x36\xa7\x5b\xc9\xb0\xa9\xde\x51\x60\x87\x99\xb3\x64\x44\xb8\x22\x85\x60\xb2\x7a\xa0\x48\xc5\x34\x6a\xb4\xe6\xe5\x1e\x74\x9a\x66\xcb\x5b\x58\x35\x5b\xe8\xd3\x10\xdd\xa7\x31\x6e\x30\x00\x37\x3b\x96\x55\x73\x66\xdc\x7e\x40\xa4\xad\xf3\x6b\x58\x58\x0d\xc2\x46\xa5\x51\x82\x14\x54\xb1\x31\x39\x2b\xa5\x70\xae\xf4\x65\x29\x66\xb4\xb4\x47\xf4\xc5\x39\x2a\x18\xba\x0b\xaf\x96\x69\x92\x02\x62\x57\xdb\xcd\xa6\xdc\xdb\x13\xe1\x57\x96\xed\x4f\xc5\x1a\xf5\x08\x72\xbd\xdf\x30\xf4\x16\x72\x5f\xff\xb9\x73\x3c\xe0\xf4\xd0\x47\x04\x90\xfc\x77\xde\x88\xbf\x03\x82\x69\x3c\x7c\x19\x6e\x11\xb6\x00\x34\xe3\x0a\xb5\x62\xce\xe7\x28\xad\x03\x70\x6c\x80\x7b\x20\x49\x21\xc0\xe9\x67\x4e\x2b\x07\x03\x0f\x2d\x73\x48\xe1\xd9\x85\xf2\x1a\xdc\x79\x52\xd1\x6a\xce\xc8\x50\xd4\xc6\x29\x7a\xa2\xb9\xc6\xb8\xf0\x14\x8c\x01\x58\x5a\x70\x86\x57\xbd\x1b\x9c\x00\x73\x9c\x8c\xbb\x75\x08\x46\xfd\x62\x67\xa1\x33\x89\xb4\x1e\xe4\xee\x3f\x56\xa2\x2c\xa4\xd3\x88\xfc\x9b\x23\xe7\x45\x40\x1f\xb4\x53\x73\x2e\x9f\x9c\x81\x54\x1c\x35\x4e\xf1\x92\x2d\x59\x55\x68\xe1\x6d\x78\x1d\xd4\x26\x0b\xe0\x0d\xdd\x93\xb3\xb2\x64\x15\x59\x71\xdc\x52\x7f\x00\x01\xc4\xb1\xf3\x9f\x18\x45\x1b\xe9\x6a\xb3\xad\xa5\xe7\x0b\xfc\x83\xf1\x03\x92\x25\x5d\x33\xf2\xad\x05\x27\x6a\x04\xff\x02\x96\xe4\x4a\xb1\xcd\x8a\x55\x52\x54\xe8\x55\x34\xdd\x19\x85\x7d\xfd\x82\xcd\x6a\x51\x91\x7f\xa7\xeb\x86\xb0\xee\xac\xf6\xc4\x90\xf1\x30\x97\xde\xb5\x05\x25\x92\x57\xcb\x12\x2f\xcd\x88\xb9\x76\x41\x77\xb7\x58\x58\x18\x5c\x35\xb4\x1b\xa3\xe7\x06\xaf\xd8\x6a\x66\xee\x92\xca\xbd\xd9\xe3\x7c\x56\xb2\x11\x91\x82\xd0\x6a\xaf\x19\x67\x4e\xab\x46\x34\xd1\x02\x3d\xf7\x89\x65\x88\xc9\x0f\xe8\x5c\x9c\xfb\x93\xf1\x85\x88\xf1\x42\xc0\x62\x7f\xc4\xb5\xf7\x64\xf2\xb6\xe2\x7f\xdb\xc2\x99\x62\x2f\xf7\x74\x43\xd7\xca\x07\x54\x32\x15\x69\x99\x01\xb4\x2b\xcd\xb3\xd2\xdd\x2c\x36\x98\xc3\x75\x99\xbd\x6c\xd4\x74\x03\x5d\x41\xdb\x98\x6b\xba\xd9\xf0\x6a\x19\xe2\x84\x97\x0d\x7a\x47\x02\x23\x89\x6a\x49\x14\xab\xd7\x64\x47\xf7\x70\x4d\xe0\x00\xc3\x12\xcd\xac\x1e\x39\x26\x17\xfa\xd8\xa2\x70\x5d\x29\x6a\x5a\xef\x7d\xb0\x73\x51\x19\x3a\xec\x56\xbc\x64\x64\xc7\xc8\x82\x2f\xb7\x35\x23\x78\x97\x37\x63\x4a\xb1\x1a\xc6\xc0\x2b\x34\xb7\x86\x1e\x94\x2c\x55\xda\xe6\x83\xb1\x2c\x3e\x35\x14\xd2\xe2\x66\x98\x6f\x78\x62\xbc\xb6\xf6\xb3\xa9\x59\xf4\x8d\xfe\x38\xac\x4a\x56\x2d\xd5\x8a\xdc\x3f\x25\x5f\x4f\xc9\xe0\xd2\xfa\x37\x1c\x6d\x1a\xbb\x9d\xad\x37\x6a\x3f\x08\x20\x7d\x0a\xfe\xd2\x1a\xd4\xd8\x28\x35\xa7\xf6\x0c\x18\x37\x3a\x48\xbb\xb1\x1b\xe5\xd4\x0d\x78\xaf\x81\xed\x11\xcc\x2c\xa7\xbb\x0b\xe4\x78\xbd\x56\x19\x0f\xcc\x8c\xce\xdf\x2f\xb8\xe1\x17\xc0\x1f\xf6\xac\x98\xbf\x9f\xaf\xb4\xdd\x60\x18\x7d\x2d\x6a\x2d\xb0\x15\xe5\xa5\x51\x04\x2c\xf4\xa2\xb9\x93\xb7\xf7\x9d\x1a\x0c\xee\xbb\x19\xab\xd8\x82\xc3\x3d\xef\x8a\xde\xe0\x4d\x21\x0b\xba\x70\x6b\x8c\xe0\xfe\xdb\x89\x6d\x19\xc2\x9f\x31\x02\x0a\xa9\x12\xe4\x7d\x25\x76\x68\xa7\x28\x81\x2a\xa9\x43\xba\xe0\x35\x9b\xab\x72\x8f\xc6\xfd\xf3\x52\xec\x62\x46\xb1\x52\xfe\x04\x3c\xa9\xdb\x8d\xd6\x0c\xae\xe9\xb2\xe4\x15\x1b\x2a\xfc\xbf\x65\x84\x13\xbb\xb7\xa2\xd5\x0f\x08\xff\x76\x60\x7a\x0f\xde\x91\x53\x62\x20\xdc\x0b\xda\xdb\x75\x74\xba\xfd\x5b\x6f\x9d\x75\x2f\xfd\x67\xd0\xc3\xf8\x6c\xbd\x66\xf7\x42\x86\x69\xb4\xe9\x33\xab\x56\x1a\x13\x48\x13\xd7\x58\x1a\xbe\x02\x27\xe6\xf3\xad\x67\xe1\xd5\x8c\x96\x64\x27\xea\xd2\x69\x73\xd0\x74\x4d\xdf\x33\xb2\xdd\xc0\x0d\x31\x7a\x57\x9c\x59\x65\x2f\xf2\x66\xa5\x3e\x7b\xe1\x70\xd1\x5a\xbe\xfe\x69\x46\x25\x9b\xd1\xb2\xf4\xce\x80\x97\x74\xc9\xe7\x64\x4e\xeb\x42\x8e\xc9\x19\xae\x4d\x63\x74\xf1\x8a\xac\xb7\xa5\xe2\x9b\x52\xdb\x16\x0b\x10\xea\x0a\xc0\xb9\xf3\xb5\xb1\xfd\xd0\xa2\xe1\x46\x54\xa5\x03\x11\x28\x1a\xbd\x96\x15\x5a\x96\xeb\x99\x93\xea\xe4\x6f\x5b\xd0\xc8\xb1\x95\x84\x0b\x32\x2f\xa0\xc0\x69\x1c\x4d\x5c\x81\xd6\x0f\xe6\xb4\x2c\x35\x61\x6f\x68\xcd\xc5\x56\x92\x25\x88\x28\x70\xd4\x05\xa7\x31\x45\x41\xc9\xaa\x36\x2a\xe4\x95\x36\x2d\x95\x0b\x1a\xb0\xb1\x02\x74\xc6\x21\xcc\xc4\xb3\x5b\xcc\x55\xa1\xb6\x56\x61\x6b\x9b\x35\xb3\x81\x0d\xbe\xfd\x35\x3e\x70\xd2\x58\xf2\x85\x87\xcd\x8f\xad\x83\xc6\xba\xfb\x62\x30\x5a\xa2\xca\xb6\x11\x61\xe0\x5c\xea\xa3\xdf\x4c\xd4\x87\x30\x99\x10\xf6\x61\x4c\x06\xd7\x7c\xcd\x24\xea\x03\xba\xc9\xb5\xa8\x45\xa5\x04\x79\x43\x37\x4a\xd4\x92\xcc\x57\xe2\x7d\xc3\x92\x9a\xcf\xc5\x62\x21\x07\x59\x44\x7c\x3f\x51\x78\xdc\xf5\x71\x24\x90\x3b\x74\x26\x90\xdb\x39\x14\xd2\x54\x6e\x7b\x13\x88\x3d\xab\xfc\x99\xf7\x3b\x9d\x74\x0f\x7b\x32\x7d\xe7\x0e\xa6\x2b\x43\xc5\xa3\xcf\x24\x34\x52\xc3\x23\x09\x8c\xcb\x76\x53\x80\x7f\x0a\xc3\xa4\xe0\x00\xf5\x1b\x40\x81\x2f\x25\x2b\xe4\x9c\x88\x73\xb7\x6b\x4a\x9b\x3f\xa1\xa2\xae\x99\xa8\xb9\xf6\x57\x82\xd0\xa2\x00\xd5\xb5\x66\x6b\x71\xc3\x7c\x4d\x5b\x5a\xe7\xaf\x34\x37\x00\x10\x17\x64\x9c\xf4\xb1\x2a\x7a\xd1\x12\x36\x76\x27\xa2\xd0\x89\x82\x66\xb4\x16\xe9\x9b\xa3\xaa\x1d\x27\xe4\x42\x69\x8c\x86\xba\x12\x45\x6b\xd4\x26\xbc\x68\x0e\x37\x45\x85\x15\xe9\xe6\xb6\xc4\x0e\xe3\x22\x70\x74\x33\x7f\x1a\x81\x60\x6f\x34\x67\xf8\x53\xef\xb5\x46\xa3\x32\xa3\xbd\xf4\xe3\x2f\x9a\xe0\x17\xb8\xab\x82\x11\xad\x92\x57\x6a\x33\x1c\x6c\x68\xff\x8e\xd3\x9f\xaf\x6e\x8d\x07\x0a\x82\xe0\x6a\xa4\x9b\xef\x98\x56\xe4\x65\x73\x5c\x73\x0f\xb3\xb6\xec\x6f\xa2\xc7\x20\xa2\x01\x2f\x6f\xfc\xf5\x33\x43\x35\x17\x25\x8e\x20\xe6\xa2\x27\xb0\xae\x34\xa0\x4a\x80\x16\xcb\x6a\x3c\x15\xed\x94\xfd\xbb\x0f\xae\x5a\x0c\xb0\xf0\x16\x51\xab\x44\xb2\x19\xb9\x12\xa8\x13\xb9\x2b\x9a\x20\xcc\x4e\xcf\x5b\x4b\x81\xd0\xaa\xc1\x76\x52\x19\x72\xe2\xe0\x89\x41\x71\x12\x67\x65\x39\x3c\x01\x26\xd5\x43\xeb\x7f\xd6\x26\xea\xa3\x00\xad\xed\xa1\x12\x0f\xf5\xff\x47\x24\x5e\x01\x6d\xd3\x96\xc2\xc6\xb7\x2d\x44\xcd\x6e\xb4\x19\x5e\x15\x5a\xa3\x5f\x81\xd2\x2f\x6a\xe6\x5c\x37\xa0\x77\x69\x35\xcf\x52\xc0\x17\x51\x8e\x77\x35\xe0\x43\xa7\x89\xfc\xac\xd3\xe4\xac\xae\xe9\x3e\x0a\xc3\xd3\x73\xa5\x64\x43\x6b\x85\xe7\x8c\xde\x88\x36\xcc\xc6\x74\x33\xf1\x8e\x9b\xf8\x4e\xd1\x20\x32\x82\x4d\x76\x71\xae\xcf\x6c\x49\xe8\x66\x83\x2a\xef\x8a\xd5\xa1\x2c\x37\xde\xbc\x42\x30\x34\x78\x96\x70\xca\x6a\xc1\x51\x58\x66\xd3\xd0\x01\xc7\xf4\xad\x62\x4b\xb6\x37\xaa\xa6\xf5\xec\xca\x29\x79\x8b\x33\x7f\x77\x2f\x3c\x48\x36\xce\x3d\x7c\x71\x6e\xe6\x7e\xe1\x0e\x24\xbe\x70\xa3\x55\xcd\x01\x67\xd6\xcd\x67\x9f\x90\x24\xe9\x6b\x56\xf0\xcc\x71\x09\x06\x1f\x7e\xbd\xa0\xa5\x64\x64\xa8\x67\x6d\xa6\x72\xd2\x05\xce\xb4\x19\x21\x26\xb8\x22\x40\xf0\x7a\xcb\xa2\xeb\x54\x08\xc7\x3a\x48\x19\x03\xd0\xf3\x47\x3f\x11\xa2\x0c\xac\x97\x90\x18\x3e\x83\xe3\xf9\x51\xee\xcd\xa5\x69\x0a\xf1\xd0\xef\x6a\xe7\xbf\xad\xb0\x07\xf1\x7b\x68\xf4\x5f\x3b\x27\x01\x2d\x4b\xb1\x73\x81\x57\xde\xae\x4e\x8d\x22\xc3\xbb\xdb\xe4\x9d\x6d\xd0\xef\xcc\xad\x62\x05\x1b\xb3\xa1\x17\x32\x9c\x41\x4f\x09\x87\xea\xc8\xef\x8e\x16\xd4\x9c\x4b\x13\xd9\xa9\x9b\xd8\xc9\x02\x26\xe0\x9f\x09\x46\xbc\x58\xb4\xef\x98\x93\x78\x82\xd4\x0a\x18\x34\x2f\xb8\x10\x59\x00\x13\xa2\x47\x55\xa3\xee\xbb\xd0\xd9\x94\x58\xd0\x3c\x80\xe8\xe0\xca\xc7\x5b\xc3\xb7\x69\x9a\xed\xd1\xe8\x6b\x9e\x1f\x58\x2c\x1c\xaa\x2d\x64\x5a\x7e\x61\x2d\xae\x9c\xe7\x06\xe9\xe0\xed\xaf\xd4\x1a\xc7\xb7\xe5\x66\x0f\x80\x6f\xb0\x1d\x1a\x6d\x5a\x9b\xa3\xd1\x40\x92\x2b\xb1\xc3\xb8\xc2\x92\xce\x99\x47\x9b\x11\x61\xcb\x31\xf9\xe6\x0f\x7a\x0e\xdf\x7e\x7d\x60\xcb\xe0\x74\xf1\x12\xfe\x35\xab\x35\xf2\xde\xf6\xc1\xff\xc7\x0e\x8f\x2e\x25\xf2\x58\x25\x0f\x45\xf4\x29\x79\xfb\xae\xfd\x9b\x0d\xb2\x38\x25\x1f\x13\x9a\xa4\xe1\xea\x53\x94\x3a\x09\xf5\xb1\x3d\x33\x84\x14\x34\x9d\x4c\x08\xde\x29\x37\xa1\x2b\x60\xe7\xe0\x09\x64\x04\x24\x84\xd2\x63\xdc\x2b\x30\x61\xa3\xa1\x61\x28\x54\xd2\x48\xb7\xb7\x63\x6f\x1b\x92\x68\x13\xdd\x0c\x60\x88\xa8\xff\x7b\x92\xf6\xb3\xe8\x0d\x04\x48\xd3\xa2\x90\xf6\x5c\x6a\x8e\xa3\x94\x0b\x4b\x2b\x28\xb4\xa6\x6b\xa6\x6d\xca\xa9\xf3\xeb\x99\x13\xc9\x77\x6f\x58\xcb\x77\xc6\xf4\x96\x68\xc2\x40\x12\x00\x6b\xf6\xf0\xa9\x0b\x51\x9d\xc6\x27\x1d\x40\xab\x18\x2b\xdc\xcb\x00\x63\xbf\x68\xb8\x1b\xdf\xeb\x68\x3a\x80\xe5\xe0\xb5\xd7\xd2\x02\x97\x32\x09\x7a\x4e\xab\x07\x66\xc7\xd1\xb2\x66\xb4\xd8\xe3\xce\x0b\x4e\xe7\xab\x34\x39\x7c\xd1\xb0\xd8\x56\x96\xa0\xc3\xe8\x56\xbd\x97\x19\xd4\x76\xbd\x58\xaf\xcb\xfd\x53\x52\xf1\x72\x4a\x06\x4f\x51\xf4\x69\x0d\xbb\xa1\xb3\xd0\xc8\x4d\x8d\x4f\xc9\xdc\x62\x01\x7d\xc6\x83\xd6\x18\xf7\x3d\xbe\x6e\xc3\xf3\xd7\x1f\x98\x72\xa1\x98\xd3\x92\x9a\xd0\x30\x73\x7a\xb5\xa1\xe7\x36\x85\x9b\xc8\xa9\x9d\x88\x75\x70\x03\x50\x8f\xea\x45\x4b\x27\x1a\xc7\xf6\x5e\xbc\xb7\xce\x22\x62\x80\xfa\x6b\xd5\xb3\x50\xd4\x93\x40\x24\x8c\x51\xc1\x32\x6b\x75\xd2\x02\xfc\x6a\x63\x7c\x01\x00\x79\xbb\xf1\xef\xdc\xb2\x92\xa4\x99\xaa\x11\x1a\x31\xd4\x0b\x17\x94\xef\xcb\x5d\x0c\x4f\x57\x82\xfc\xc2\x6a\xd1\x4b\xd0\x78\x03\x7d\x1d\x0e\xc2\xd6\x3c\x17\x89\xd6\xc8\x89\x26\xf0\xc3\x4e\x3f\x41\xe1\x46\x42\x48\x14\x11\xce\x13\xe6\xec\xbb\x8e\xbd\x91\x14\x15\xd2\xca\x0a\xe9\x0b\x0b\x4f\x83\x4e\x8b\x8b\x98\xd3\xf0\x43\xe1\x71\x01\x2c\xf6\x11\x9b\x53\x0e\x1d\x2a\x56\xc1\x8d\x37\xa8\x5e\xe9\x8d\xd1\x61\x4d\xe3\xc4\x86\x05\x6a\xc6\x3b\x5e\xff\xff\x24\xe3\xa2\x08\x49\x8b\x1c\x03\xcc\x85\xff\x94\x56\x71\xf5\x0d\x46\x67\x3b\xe3\x6b\x84\x07\xaa\x79\x17\xe4\x1b\xcf\x7d\x68\xdf\x43\x4c\xfb\xb6\x68\x02\x64\x0f\x41\xcd\xa5\x67\x02\x31\x77\xb6\x79\x0a\x3b\x19\xd2\x1b\xca\x4b\xf0\x90\x7b\x5b\x2a\xd4\xe3\xb3\x8b\xd8\x50\xed\xb3\x84\x6c\x72\xaf\xc6\xf2\xd5\x58\xef\x96\x46\x29\xd9\xea\xb4\x2f\xc9\xd4\xfd\x4e\x11\xc5\x17\x46\xea\x46\xa3\xde\xef\x8b\xdd\x29\x58\x2b\xf7\x5a\x8d\xdd\x3e\x4f\x47\x78\xe6\xf7\x7a\x18\xe5\x79\x48\xc0\xdc\x3f\x86\x9b\xcf\xe0\xe6\xd3\x30\x73\xf0\x56\xb0\x51\x1e\x03\xbb\x42\x9f\x30\x3b\x0a\x4f\xfb\xaa\xe6\x16\xdc\xb1\x0a\x0a\x07\xeb\xcc\xb1\x97\x2a\x7d\x76\x40\x9a\x6f\xd0\x41\x91\xdf\xec\x9e\xc2\xd8\xb9\x3a\x9f\xb9\xe5\x8d\x57\x24\xf0\xcb\xb8\x0d\x7e\xc8\x3d\xf3\x79\x9b\x12\x46\xc0\xb7\x07\xc6\x6a\x8a\x54\xa1\x98\x50\x06\xc7\x8f\x69\x26\x36\x2a\x71\x86\x38\x4e\x61\x06\x8e\x8d\x9b\x00\xc3\xb6\x62\x7e\x1b\x3e\xed\x47\x43\xbd\xf8\xe6\xd4\xd4\xff\x94\x46\xab\x36\x5f\xa1\x0f\x55\x6d\x6b\xe3\x64\xad\xd8\xae\xdc\x5b\x23\xca\x8b\xab\x24\x91\x98\x39\x52\x60\x7a\x47\x77\xe3\x14\xbc\x85\xd4\x5c\x6f\x65\xdb\x02\x85\xc9\xcc\x02\xd3\xbe\xa7\xec\x7f\x83\x14\x40\xfc\x2f\x9f\x5f\x23\xd2\x3b\x6a\x6d\xc1\x5e\x92\xb6\x21\x74\x2c\x69\xa7\xe4\x7b\x0d\xf4\xce\xe4\x2d\xcc\x0a\x2e\xff\x61\xb8\x29\x5e\xff\x6e\xfa\x2b\xb4\xb1\x68\xcd\x82\xf6\xdc\x63\x1b\x90\xec\xcd\x48\x4e\xbd\xb5\x2e\xb2\x43\x8a\xe7\x0f\x4c\xe5\xec\xf9\xbc\x0d\x0f\x43\x07\xa1\x12\xc4\xdd\xa5\x6d\x25\x43\x8f\x33\x97\x06\xd2\x03\x69\x82\xd0\xcd\x18\x41\x27\xb8\x66\xda\xae\x2f\x2a\x63\x77\x1e\x14\xe4\xad\x19\xbc\xb4\xc4\x69\x5e\x19\xb7\x47\x60\xbb\x97\x66\x55\x60\xd1\x1f\x3d\xb4\x51\x83\x97\xcf\xaf\x87\x61\x88\x7c\x83\xcd\xbf\x1a\x56\x19\x7e\x73\x32\x6a\xad\x59\xf7\x27\x3a\xab\x8e\xec\xdd\x3e\xfc\x8e\x05\x10\x04\x4d\x7f\xdd\x36\x0b\x2e\x6c\x44\xa3\xb9\x49\xd1\x8a\xbb\xb7\xf4\x07\xd7\xba\x87\x42\x9f\xa4\x63\x88\x88\xb9\x75\x7f\xf4\xd0\xad\x4f\x46\x5c\xce\xa8\x9a\xaf\x5e\xb6\x64\xa6\x56\x9b\x67\x5c\xd5\xb4\xde\x93\xbf\x6d\x69\xa5\xb8\xda\xe7\x3c\x52\x91\x4c\x5d\x63\x2c\x4e\xf4\x28\x80\xf4\x52\x40\xd5\x41\x79\xea\xbf\x65\xd6\x54\xcc\x19\x01\x16\x69\x94\x71\xa9\x29\xa0\xf1\xdf\x12\x78\x49\x39\xe9\x3d\x60\xf6\xdf\x2a\xbb\xfb\x3a\xab\xcb\x04\x1b\x7c\xc7\xea\x2e\xf8\xb1\x3c\x8d\x56\x62\x18\xbf\x3e\x69\x66\x64\xde\x35\x4c\xc9\xf7\x1e\x5e\x1f\x53\x5b\xd3\xfb\xbd\xd9\x98\xcd\x97\xc3\x88\x6b\x6e\x68\x4d\xb8\x85\x0f\x96\xa3\xff\x2b\x86\x38\x71\xf2\xa8\x21\x67\xe2\xb2\xd6\x1f\x74\x6c\x9e\x8a\x0c\x95\x78\xcf\xaa\x29\x79\xf4\x10\xe3\x4d\xda\x93\x34\x56\xe6\x49\x0b\x1e\x27\xa7\x84\x1b\x3e\xff\xf6\x8f\x9a\xcf\xfd\x5f\x3f\xe5\xb9\x3e\xc1\x7f\x39\x45\xe1\x67\xae\x56\xde\xc3\x8b\x84\xda\x00\x77\x49\xcd\xd6\x3f\x52\x8d\xf8\x52\x5a\x44\x40\xa8\x50\x30\x85\x20\x3d\xcc\xf5\x4c\x78\x45\x9e\x99\x3f\x7f\x63\xda\x4a\x0f\x65\x25\x5c\xec\xd6\x2e\x4b\x3e\xdf\xfa\xa7\x42\x73\x3b\x85\xa6\x21\xea\xdd\xa8\x35\x0d\xbc\x37\x6c\xe1\x79\xf9\x4d\x58\xf6\xd8\x38\xc5\xc7\x98\x37\xe4\xd1\x57\xd1\x03\xe1\xef\x86\xf8\xe4\xcd\x76\xeb\x7a\x83\x1c\xca\x9b\xc7\x8f\x31\xfd\xc2\x70\x70\x29\x02\x79\x10\x06\x45\x68\x4b\x11\x81\x0c\x22\x09\xeb\x94\x32\x4f\xde\x9c\x86\xf3\x19\x2f\x99\xba\x0c\xcf\x7f\x8f\x5f\x6f\xad\xc0\x1c\xf8\xdc\x4e\xbd\x3a\xf0\x09\x37\x97\xff\x57\x5b\x8f\xfa\x22\xca\xa7\x47\xf5\xdf\x8a\x0a\xda\x4d\xc5\x23\xb5\xd1\xcc\x46\x0d\xf9\x93\x16\xc5\xb5\xf8\x75\x38\xf4\xce\xb8\xb1\x37\xcd\xc2\xa9\x4a\x66\x4e\x0d\xe9\x4d\xb0\x5a\xc0\x04\x1d\xf3\x8d\x79\x11\x9f\x1b\xfe\x5f\xa3\xc4\x8a\xb7\xbc\xeb\xc7\x9a\x00\x07\x8d\xb9\xbb\x37\x0d\xd2\x5a\xd2\x21\x43\x21\xd2\x9c\x7e\xbb\x76\x43\x07\xbb\x7d\xa6\x32\x26\x0f\x6b\x63\x5f\xd4\x40\x39\x64\xa1\x1c\xd0\xa4\x62\x7b\x25\xaf\x5b\xfd\x4f\xb7\x62\x32\x84\xf8\xb5\x8f\xd0\x5f\xcd\x78\x4a\x26\x72\x59\x32\x85\xb7\x67\x27\xcd\xbd\x59\x44\xd9\xf8\x29\x80\x3c\x06\xb8\xb9\xc5\xd0\xe0\xc3\xd8\xaa\x8e\x41\xe2\xeb\xaa\x1e\xc3\x5c\x6e\xd7\x81\x40\x0d\xc6\x33\xc1\x28\x1d\x23\x26\x44\xb2\x37\x3a\x09\x23\x81\xbd\x27\x00\xc1\x46\x6d\xe5\xd8\xf3\x1e\x3c\x51\x17\x79\x31\x99\x90\xa7\x78\x09\xc0\xa8\xe4\xe5\x1e\x9e\x03\x70\x0c\x72\xc5\x87\x84\x8a\x53\x65\x1f\xa8\xfc\xe5\x3f\xb6\xac\xde\x9b\xd0\x8f\xbf\x18\x21\x61\xe1\x80\x90\x36\xcf\x58\xe0\x5e\x45\x32\xd5\x3c\xfd\xb2\xb1\x8e\xe7\xf8\x36\xc7\x6a\xcd\x3e\x40\x7b\xe8\x7f\xe3\x92\x73\xdc\x8b\x89\x6c\xa2\xf8\xfd\x5e\x1e\x1d\xbb\x43\x2b\x73\xad\x82\x28\xfa\x3c\xa8\x20\x1a\x3d\x6a\x16\x3e\x57\xf7\x83\x1a\xb3\x0d\x73\x31\x7e\x49\xd6\x8a\xe3\xc1\xb2\x50\x3f\x27\x0c\x2a\x4c\x8b\x72\x54\x14\x89\x64\x4a\xbe\x35\x21\x41\xf7\xfd\xb0\x0b\xc9\x54\xc3\x0f\x2e\x8f\x9c\x1f\x4e\x0a\xa6\x69\xa7\xb1\x68\x56\x90\x9c\x92\xe1\x57\xa9\x01\xa9\x24\x5f\x5d\x31\xf5\xf8\xe4\x7e\xaa\x5b\xc4\x67\x5e\x14\x93\x6a\xbb\xa9\x83\x68\x2f\xd9\x19\xc6\x6f\x00\x8d\x0f\x84\xf3\xdb\x66\x32\x8c\xe3\x27\x71\xbc\x98\x64\x6a\xdc\x08\xbd\x76\xbb\x26\x76\xcc\xb4\x74\x12\xac\xdd\xd6\x5d\x8c\xe9\xa6\xd1\x05\x1c\xe9\x0e\x27\x33\xc0\xdb\x72\xeb\x7f\xa1\xe4\x8e\xc9\xf3\xa5\x84\x77\x42\xae\x79\x99\x33\xdb\xaf\x61\x1b\xe5\xcf\xbd\x26\x08\x82\x7b\xd6\x0c\x5f\x01\xf4\x14\x87\x79\xf0\x7d\x7d\x87\x47\xbc\xbf\x35\xa1\x58\x4d\x7c\x27\x0b\xb5\x55\xe7\xb5\xc9\xdc\x1f\xbe\x52\x2b\x56\xef\xb8\x64\xf8\xd6\xd1\x3c\x99\x48\xfb\x77\x52\xa2\x3b\xce\xb0\xd4\x25\x02\x53\x29\x9b\xda\x10\x3a\x03\x46\x33\x22\xc4\x3d\x64\xdd\x64\x1e\xaf\xfa\x03\x01\x98\xe6\xcf\x98\x89\xfd\xf4\x21\x2e\x05\x2a\x5f\x6f\x4a\x30\xd4\xa9\x7d\x76\x4a\xc9\x7c\x2b\x95\x58\x37\xaf\x6f\x91\xdb\x45\xed\x12\x97\x8e\x03\x40\xf0\x73\xf0\x84\x68\xe3\x3f\xde\x3d\xf4\xbe\xce\xc8\x5b\x93\x13\xcb\xcb\x54\xe9\x33\x74\xbc\x42\x8b\x6d\x59\x5e\x7a\xa7\xf0\xe3\x7c\x4b\x5e\x4b\xd5\xaf\x69\x49\xfb\xb6\x9c\xf1\x5a\xad\x0a\xaa\xfa\x36\x05\x46\x3e\xdc\xf6\xaf\xac\x96\x6c\x6f\xb9\xe6\x50\xeb\xa2\xa6\x0b\x75\xcd\xe8\xba\x67\xd3\xff\x64\xb4\x2f\xd4\x2b\x66\xd4\xf0\x9e\xed\xdf\x88\x6d\x55\x1c\x6e\xab\x18\x5d\x9f\x99\x95\xbe\x7c\x72\xa6\x37\xcc\x31\x5d\x0e\xb7\xde\xd4\x7c\x4d\xeb\xfd\x6b\x6d\x36\xf5\xc2\x7e\xc5\xf8\x72\xd5\x03\xf0\xae\x67\x3b\x48\x6f\xa2\x09\x2d\x9f\x7d\xd8\xe8\x83\xbc\xea\xb3\xee\xd5\x8c\x5e\x31\x2a\x7b\x91\x9b\x2a\xf6\x6a\xd1\x9b\x1e\x25\xdd\x3f\xa5\x8a\x2d\x45\xbd\xef\xd7\xfa\x7a\xbf\xe9\x81\xf0\x4a\xac\x99\xe6\xbc\x7e\xbb\x85\xee\xe8\xbe\x7f\x6b\x0b\xfb\x6a\x2e\xea\x23\x80\xf7\x6c\x8e\xda\x55\x28\x98\xbb\x5a\xf7\x14\x08\xc9\x13\xa3\x8b\xce\x3d\xac\x8c\x9e\xb6\x88\x8b\x99\xbb\xa8\x8c\x43\xa7\x99\x57\x78\x66\x05\xa7\x47\x4b\x82\x86\x0e\x83\xb6\xd8\x0c\x7f\x6f\xc9\xca\xf0\xe7\xb6\x80\x4c\xfc\x1e\x4a\xc5\xb0\x41\x52\x14\x86\x4d\xda\xf2\x2f\xf1\x7b\x20\xf4\x12\xbf\xb7\x25\x5d\xa2\x51\x28\xde\xc2\x06\x79\x99\x96\x6f\x97\x69\x92\x93\x5e\x61\xab\x48\x64\x85\x3f\xee\xba\x7e\xec\x14\x4e\x61\xd3\xb6\x44\x8a\xc8\x92\x12\x43\xd1\x6c\x52\xb2\xa7\xdd\x24\x10\x38\xd1\x4c\x53\x52\x26\x6c\x92\x14\x2d\x69\x28\xa1\x80\x48\x83\xe9\x6a\x93\x94\x1c\x71\x93\xae\x3d\x91\xcc\xdb\xd9\xa2\x87\xa7\x45\xc6\xb0\x73\x3f\x75\x8a\x00\xdb\x28\xa9\x7d\x5a\x21\x40\x4e\x9d\x3c\x48\x34\xb2\xa2\x40\xb7\xb2\xff\x4e\xd8\x92\xd4\xb5\xb2\xff\x6c\x37\x72\x72\x81\x9c\x36\x32\x22\xd3\x0c\xb5\xff\x53\x4f\x56\xb4\x1b\xfa\x62\x82\x9c\x06\x52\xa3\xdd\xd8\x09\x0c\x72\xda\x08\x8f\x4c\x33\xbd\x4d\x6c\x33\xfd\xef\x4c\x33\x27\x3e\x6c\x5b\xf7\x45\xa6\x03\x88\x12\xdb\x18\xfe\x68\x37\x6c\x89\x14\x72\xda\x16\x33\xdd\xdd\xa2\x1e\x09\xc3\x22\x94\x35\xda\xc2\x08\xbf\x69\x77\x41\xc1\x43\x4e\x8d\x04\x6a\x37\xd8\xd9\x06\xbb\x4c\x83\x94\x00\xd2\x98\x26\xbe\x4e\xb8\x21\xac\x48\x22\xa7\x8d\x78\x4a\x50\xd9\x93\x4c\xa7\x81\x9c\x4a\x5b\x57\x56\x44\x19\x1b\xcb\xfe\x99\x6e\x0c\x19\xe3\x4e\x9d\xdc\x4a\xd0\xc8\x13\x59\x9a\x52\xde\x9f\xed\xc6\xbe\xf0\x22\xa7\x81\x2c\xcb\x43\x06\x11\xe5\x81\x86\xbf\xf3\xb0\x6d\xf3\xe0\xef\x9c\x17\x2a\x30\x23\xed\x9f\x49\x9b\xf5\xd2\xb9\xb6\xd2\xd8\xf6\x31\x4b\xc9\x11\x46\x6e\xb7\x9f\xad\x2d\xff\x30\x5a\x31\xfe\x36\xed\x55\x31\xce\x86\x26\x2f\x06\x66\x7b\xd8\xd4\x4c\x9a\x3b\xab\xb0\x44\x10\x49\x9b\xb3\xae\xff\xe5\xf3\xeb\x76\x15\x83\x31\x06\xf2\xf8\x1e\x8a\x1f\x30\x7b\xa2\x49\x59\xe6\x92\x28\x66\x35\xbd\x26\xb5\xb0\x6b\xe2\x83\x33\x6e\x7d\x77\x63\xd8\x4e\x66\x95\xb0\x25\xe8\xd4\xf3\x20\xb5\x5c\x1c\xa9\x3c\xd3\x87\x92\x53\xa7\xee\xda\xa2\xa3\xa7\x15\x1f\x60\xf2\x48\xbe\x74\x79\x24\x83\xe6\xd6\x21\xeb\xa5\x8e\xf4\xdc\xb4\xfe\xb7\xfe\x8d\x53\x9b\x4d\x78\x91\xee\xd6\x0a\x5e\x40\x67\x99\x97\xf3\x0d\x3d\x15\x49\x59\x43\xc9\xa9\x47\xc1\x26\x08\x21\xf9\xbe\x25\xa4\xa8\xff\xd7\x49\xe2\xad\x5c\x26\x4b\xb8\x99\xcb\xa1\xfb\xbd\xe3\x6e\x03\xfd\x50\x81\x02\xbd\xd0\x3d\x22\x28\xe2\xf9\x34\x9d\x9b\xef\x0f\xc2\xe8\x88\x90\xb0\x6d\xa2\x3c\x06\x0b\x7f\x4b\xfa\x39\xba\x47\x48\x38\x5a\x99\x9c\xd4\x4a\xb8\x27\xee\xe1\x5b\x76\x41\xc4\x56\x49\x5e\x30\x22\x66\x92\xd5\x37\xac\x96\xee\x35\x9b\x8b\x4f\x0b\x53\x7f\x93\x64\xd6\xeb\x37\x66\xd3\x37\x09\xc0\x83\xe9\x36\x5b\xd6\xc6\x4e\xc4\x0b\x97\xda\x64\xe4\x94\xf4\x22\x66\xb8\x15\xc3\x5e\xa9\x65\x0f\xb6\xaa\x45\xa8\x59\xed\x46\x55\x3c\xe0\xf4\xae\xe8\x9a\x0d\x4f\x9a\xfa\x23\xa1\x61\x98\xf0\xce\x79\xfb\xce\x38\xfd\x5f\x32\x45\xf5\x86\x79\xb2\x7f\xce\x59\x59\xb8\xbb\xeb\xd6\x04\x30\x41\xd0\x94\x0c\x9e\x1b\x98\x83\x13\xf2\xf8\x31\x19\x0c\x5a\x83\xc6\xc6\xc4\x5d\x0c\xfa\xda\xc0\x4c\x0e\x6a\x5c\xf8\x49\xc5\x59\x7f\xc6\x73\x51\xcd\xa9\x1a\x0e\xc8\xa0\x7d\x45\x6e\x7f\xb4\x58\x9f\x44\x67\x13\xf1\xa5\x7b\x70\x69\x07\x11\x11\x5b\x5e\x16\xe7\x4c\xce\x71\xaa\x9d\x8b\x11\x19\x25\x21\x59\xae\xf0\xc7\x61\x7a\xff\xe7\x48\x1d\x32\xad\x83\x9b\xe6\xd9\xb1\x12\x16\xcb\x24\xa0\xc6\xa6\xca\x20\x88\x89\xad\x72\x28\x3e\xf6\xe0\xe7\x17\x69\x70\x66\x2b\x89\xb4\x43\x5b\xed\x52\xf8\xc8\xe4\x17\xac\x73\x35\x0d\xad\xbb\x7a\xaf\xfd\xc8\x6e\xff\x36\xa2\x1b\xae\x7f\x54\x34\x9c\xe2\x09\x35\x54\x62\x12\x29\x24\x4d\xb0\x98\x16\x9b\x26\xcd\x22\xd9\xd4\x62\xc3\x6a\xe5\xf2\x3e\xda\xc4\x3f\x90\xc8\x6c\x44\xe6\x90\x21\x19\x52\x3e\xd8\x9a\x74\x2c\x66\x39\x97\x26\x2c\x40\xc1\x88\xe6\xd6\x38\x26\x03\xaa\x81\x0f\x95\xcb\xe0\x61\xb5\x8c\x93\x58\x26\x05\x8f\xe6\x78\xaf\x4d\x27\xb7\x43\x96\x02\x26\xe7\x77\x29\x05\x6c\x76\xca\x14\x7f\xa5\x98\xcd\xe2\xe0\x25\x8f\x23\x8f\xdd\xb7\xc4\x0c\xd5\xda\xc3\x99\xe3\x0e\x2a\xb3\x6d\x37\x1b\x51\x2b\x56\x84\x97\x32\xad\x12\x96\xbc\x9a\x97\xdb\xc2\x2e\xd9\x53\xad\xfa\x6b\xbd\x13\xea\x7e\x75\xcb\xf4\x25\x53\xd0\x0a\x2e\x63\xb5\x40\xca\x5c\xc5\xbe\x6d\xf1\xa8\x6e\xfc\x28\xa8\x30\x36\x3e\xe7\x52\xcf\xf6\xbb\x61\x22\xc4\x15\x9a\x67\xef\x7c\xf2\x5d\xc2\x11\xde\xd8\x02\x56\x7d\x3b\x18\x0b\xa0\x7f\xfb\x0f\x8a\xd5\x15\x2d\x7f\x7c\xf3\xa2\x6f\x97\xcb\xe7\xd7\x4d\xfc\x92\xe6\xb0\xcf\xeb\x78\x88\x76\x61\xdf\x2b\x90\x0c\x7d\x5b\x5f\xd7\x94\xab\xde\x34\x78\xc9\x0a\x4e\x75\xeb\xa0\xf1\xbb\x04\x9f\xa6\x15\x06\x7c\xdf\x0c\x25\xe1\x34\xc0\xe1\x7f\x01\xbb\x4d\x61\xa8\x93\x29\x39\xab\xf6\x68\xb3\x3c\x8e\x5d\x53\x3b\xae\xe6\x2b\xe4\xcd\x76\x24\xc9\x9c\x9a\x64\xe4\x59\xa6\x9b\x26\x55\x4e\xc3\xc0\xc9\x4e\xc3\xac\x92\x8a\xa1\x3e\x2e\x9c\x23\x45\x39\xfb\x29\xfc\x92\xba\x28\x4d\x7c\xa1\x95\xef\xa8\x56\xdb\xf5\xac\xa2\xbc\x9c\x46\xd8\xfd\xe9\xfa\xfa\xf5\x73\x5e\xb2\xe1\xb6\x2e\x0d\x48\xd7\x36\x7e\x22\x60\x3f\xed\x6f\x27\x13\xf2\x34\x75\xa3\x6b\x0c\x4f\x25\x5c\xa6\xfc\xf8\x3d\x4c\x9b\xe4\x5d\x1b\xb7\x93\xec\xd9\x8e\x79\xd2\x37\x5a\xe4\x1d\x2a\x8f\xf9\x55\xf0\x6e\x3c\x6e\x3f\x9e\x85\xd5\x35\x60\x73\x85\x72\xeb\xf1\x5e\xd0\xc3\xc3\x79\x57\x32\xb7\x1e\xef\x89\x85\x75\x70\x40\x73\xc7\x73\x37\x23\x02\xb0\xae\x21\xc3\x5b\xa3\x5b\x0f\xfa\xef\x1e\xb8\xae\x61\xbd\x9b\xa8\x5b\x8f\x79\x6e\x61\x1d\x1c\x10\xaf\xb6\xee\x66\x40\x0d\xeb\xe0\x80\xde\x5d\xd9\xdd\x8c\xea\x00\x1e\x1c\xda\xdc\xc0\xdd\xcd\xb0\x00\xac\x6b\xc8\xc4\x9d\xde\xed\x95\xc8\x18\x66\x5f\x04\xee\x78\xec\xae\x61\x5b\x17\x90\xb7\x37\xa0\x43\x88\x5d\x83\xdb\x7b\xcd\x5b\x8f\xf9\x27\x00\xd4\x35\xd4\xee\xae\x86\xfa\xf9\xe0\x50\xe9\x3b\xd7\xdb\xaf\x68\x02\x6c\x17\x1a\xde\x7d\xee\xad\xc7\xbe\xb4\xb0\x3a\x77\x6d\x70\x41\x7c\xfb\x7d\xeb\x81\xeb\xe4\xe0\xe0\xd2\xf9\x4e\xfc\x3f\x16\xdc\xa1\x61\xd1\xf7\x74\x87\x2e\xa7\x8e\xad\x12\x5c\x8c\xdf\x7e\xc3\x78\xe0\xba\x86\x0d\x2f\xdb\x6f\x3d\xec\x99\x07\xae\xcf\x6c\xcd\xe5\xfc\x9d\x4d\x17\xe0\xf5\x99\xef\x5d\x0d\x7c\xe6\xc3\xeb\x1a\x38\x74\x8b\x1d\xe3\x0d\xeb\x82\xd9\x56\x36\x0f\x78\xff\xba\x11\xfc\x7c\xc7\x7f\x96\x52\x5d\xc8\x1f\x75\x3d\x91\x8c\x88\xf0\x26\x7e\xd9\xfe\x3d\x43\x84\x51\x16\xdb\xbe\xe6\x57\xce\x5e\xf5\x3c\x12\x69\xcb\xc9\xbe\x34\xb1\x9e\xd5\x25\x53\xa6\x0f\x2c\x5a\x7a\x7c\xa8\xdf\x43\x3f\x84\x6e\xaf\x3b\x99\x2e\x79\xfc\x38\x7a\xd2\xe6\x8f\x69\x6f\x6d\xaa\x85\x20\xa7\x24\x39\x53\x2f\xf1\xeb\xc8\xf8\x3c\xed\xed\xc8\x30\xcd\x42\x27\x23\x3d\x97\x29\x4c\x08\x9d\x68\xa6\xf9\x9a\x7e\x38\x21\x53\x52\xf1\x32\x4f\x05\x83\xd1\x0b\x2e\xd5\x94\xbc\x4d\x62\xf4\x8e\x9c\x92\xb7\x1e\xe6\xef\xfa\x3b\x0e\xec\xea\xe5\xcd\x57\x6f\xfc\x5b\x72\x8a\xf3\xf1\x1c\xe1\xd8\xc0\x3e\x79\xec\xba\xe9\x7e\x4b\x84\x7d\xef\x5c\x1f\xaf\xc0\xd8\x78\x89\x9e\x9a\xec\xc2\xe0\x17\xb0\xf7\xe9\x78\xae\x56\xbc\x1c\x81\xdb\xc2\x1c\xb3\xdd\x83\x1e\xb1\x0b\x03\x3f\xdf\x11\x04\xf6\x3a\x0e\xed\xf6\xc4\x4d\xa6\xbf\x39\x02\x83\x94\xdb\xf0\x57\x23\x5a\x6a\xf0\xcf\x45\xfd\x80\xff\xed\xcb\xa3\xef\x10\xe8\x3f\x03\xe7\x10\x4d\xe3\x3c\x99\x10\xb9\x11\xb5\x92\xa4\xa6\x05\xad\xc1\x2e\x23\xbc\xc8\xcb\x9c\x0f\xf3\x72\x5b\xb0\x42\x0b\x68\x39\x25\x6f\xd1\xb5\x0f\x62\x26\x61\x00\xa6\xc5\xcd\x64\x42\x2a\x81\x97\x08\x4d\x6a\x75\x05\x78\x66\xc7\x85\x9f\xcf\x5d\x89\x59\xaf\x1e\x9b\x73\xb2\x7e\x22\xa7\x09\x67\xaa\xfd\x0c\xae\x3c\x95\x63\x70\x57\x3a\xc7\xc0\x28\x18\x2d\x80\x9f\xa7\x75\x0c\xae\x3c\x19\x35\x38\x5e\xef\x18\x60\x86\xc7\x06\x1b\xfd\x37\xaf\x96\x63\x2e\x4d\xee\xc7\x6a\xa1\xde\xb0\xc5\x94\x7c\xa5\x41\xc3\x73\xc1\x8f\xa9\x40\x9e\x4f\x69\x01\xf9\x29\xb7\x9e\xb4\x28\xa2\xf5\x0c\xe2\x72\xfc\x8f\xbd\x3e\x6f\x16\xd3\x1e\xff\x6b\xba\x79\x6d\x52\x70\x0f\x0b\x3e\x57\xd3\x78\xd5\xd3\x48\x25\x85\x97\xee\x7f\x2d\x90\xf9\x0d\xb0\x70\xd0\x51\xcc\xca\xc1\x9f\xfd\xf7\x97\xbb\x42\x38\x42\xb2\x62\x9f\xfc\xd1\xd5\xbe\x82\xf2\x3f\x09\x58\x79\x50\xf6\xb3\xe0\x25\xcb\x3a\xdf\x0f\xf6\xd6\x9f\xc6\x43\xbf\x66\x05\xdf\xae\xf9\x9a\x2e\x73\x3a\x9a\xff\xe9\x91\x04\x46\x03\xa4\x28\x02\x07\x00\x76\xf2\xd7\x0d\x5b\xb6\xef\xb1\x8f\x00\xfb\x0f\x27\xd2\x0d\x2f\x98\xb8\x7b\xf2\x00\xd8\xc9\x7a\xf3\xc7\x03\xd4\xc9\xfe\x9a\x16\xc9\x7d\xf2\x17\x54\xbc\x79\x64\xfd\x29\xb8\x12\x9b\x4c\xc8\x73\x57\x53\x0b\x4a\x27\x2f\x44\x0d\x97\xec\x5b\x78\x26\x1f\x50\x34\xec\xe7\xed\x79\xb2\x62\xe5\x46\xe2\x35\x3c\x11\xdb\x1a\x77\xbf\x6e\x81\xb9\xb6\x82\x37\x77\x3e\x8c\x20\x8d\x59\xd3\x09\xab\x51\x96\xa5\x3e\x6c\x1e\xc2\xc5\xbc\xa9\x7a\xef\x81\xc3\xf7\xff\x41\xce\xf3\x56\x82\xb3\x96\x54\x4a\x1c\x3d\x5a\x57\x4f\x9d\x48\xe9\xeb\xfb\x97\x4d\x3d\xce\x8c\xc9\x9d\xb5\xb5\xc1\x48\x89\x4a\x66\x68\x62\x83\x19\x65\x92\xa6\x5b\xf0\xe3\xf7\x2c\x99\x4e\x59\xa3\x81\xd5\x48\x4e\x83\xf6\x6f\x35\x90\x77\x89\x10\x00\x82\x89\x88\xb1\xcf\xfd\x53\x32\x18\x64\x0e\x5a\x4d\x9f\x31\xaf\x24\xab\xd5\xf0\x3d\xdb\x5b\x53\x08\x3a\xb6\x59\xf2\xd3\xbd\xfc\x5f\x86\xe7\x34\xc0\x4c\xd4\x80\xaf\x8d\x92\x2c\x3b\x20\x13\xb2\x82\x30\xa3\xcd\xea\x2d\x6a\xa3\x42\xa2\xe4\x57\xb9\xb0\x01\x4f\xe9\xcd\xc4\x65\xd8\x18\x9c\x95\x52\x1b\x39\x9d\x4c\xaa\x19\x55\x62\x23\xa1\x76\x9d\x58\x4f\x70\x9c\xc9\xa0\x09\x76\x81\x38\x39\x2f\xae\x27\x15\x1c\x85\x73\xf4\x0c\xe2\x26\x89\x9b\x7d\x29\x8c\xab\x8e\x55\x0a\xd7\x33\x5e\xd1\x76\x58\x0c\xa4\x7c\xc3\x68\x66\x5a\x15\x71\x00\xf2\x64\x42\xfe\xe2\xfc\x26\xff\x82\x3f\xfe\xe5\x20\x41\x02\x23\x9d\xfc\xba\x91\x59\xcc\xa3\x87\x0b\xcf\x76\xc1\x47\x53\xf2\x2f\x83\x93\x80\xcc\xde\xde\x49\xd2\xdb\x5b\x3e\x0f\x74\x8a\xe7\x92\xd4\xa0\x52\x32\x85\x09\xed\x7a\xf2\x06\xf4\x90\xe3\x98\x45\xb4\x8c\xef\xcb\x21\xfe\xf2\xd9\x3c\x4f\x14\x18\x5b\x09\x52\xa0\x91\x40\x68\x45\xf0\xa0\x26\x92\xff\xc2\x0a\x02\x07\x6b\x5e\xca\xf9\x67\x7a\xc7\x8a\xea\x41\x8c\xba\xe6\x4d\xdd\xd1\xff\xf1\x8e\x17\x6a\x75\xfa\x6f\xdf\xfc\x7e\x90\x24\x31\x76\x84\xf2\x1f\xaf\x20\x6a\x80\x96\x90\x75\x4a\x62\x00\xc0\xb6\x2e\x47\x78\x4d\x7d\xce\x4a\xbe\x9e\x92\xc1\x57\x83\x6c\x81\x8c\xd6\x84\x9b\x30\x83\x56\xf5\xed\x03\xbb\x5d\x53\xc0\x8b\x3b\xb8\xf5\xfc\x7f\xff\x6f\xdf\xfe\x23\xe6\x0f\xca\xc1\xe7\xcc\xdd\x28\x2b\x9f\x3f\xef\x09\x40\xb8\xa3\x39\x3f\xce\xcf\x19\xa0\x48\x90\x64\xc2\xc0\x22\x15\x53\x3b\x51\xbf\x27\x1b\x0d\x14\xea\x0f\x61\x12\x54\x63\x7e\x9b\x40\xf7\x82\xa7\x9f\x09\xc0\x26\xce\x22\x87\xf4\x08\xf1\x73\x75\x9f\x93\xc4\xe2\x0b\x32\xb4\x42\xee\x12\x31\x1b\x9e\x90\xd3\x53\x32\x50\x4c\xaa\x8a\xa9\x41\xfc\x58\xc0\x23\xd5\xb6\x2e\x2d\x49\x9b\x11\x1b\x2a\x3b\x08\x87\x0f\xce\x6d\x5d\x66\x68\x68\x4b\x62\x55\x18\xac\xe8\x27\x38\xd3\x8a\xc4\xe5\x93\x33\x2c\xa8\xdf\x24\x91\x23\x5c\xd9\x8a\x33\x50\x52\x32\x9d\x56\x42\x13\x12\x33\x88\x3d\xd3\x70\xfd\x2c\x62\x53\xf2\x7d\xdb\xca\x6c\x1a\x64\x32\x87\x3c\x7a\xd8\x14\x80\x4d\xc2\xad\x16\xca\xf3\x9b\x7c\xef\xa8\xfe\xfc\xfa\xbb\xf6\x89\xea\x15\xc3\x86\x94\xa2\x58\x2b\x5a\x5b\xab\xb4\x24\x74\xab\x56\xa2\xe6\xbf\xe0\xf9\x19\xbe\x93\xb1\xdd\x20\xbd\x2e\x86\x73\x8a\x5d\xc5\x6a\x4d\x92\x0d\xab\x17\xa2\x5e\x7b\x09\xa5\x82\xda\xb2\xa6\x46\xb3\xee\x62\xa1\xd8\xe2\xd0\x54\x0f\xad\xc2\x5a\x3c\x23\x28\x13\x3c\x02\xca\x87\xf5\x59\xef\xc5\xc4\x76\x28\xe2\x64\xc2\x67\x37\x48\x2d\x2c\xb1\x05\xff\xb4\x39\x97\xe1\x2b\x93\x94\x22\xd8\x56\xb6\x06\x9a\x34\x45\xd0\x9a\xf2\x40\x45\x63\xa5\x73\x5b\xa0\x19\x43\xa9\xe4\x9a\xd6\xca\x95\x4b\xf3\xc0\xf9\x90\xfd\x94\x82\x4d\x2d\xfd\x33\x1f\xec\xda\xd4\xee\x73\xa1\x5b\x8a\xab\x92\xd9\x1a\x47\xbc\x26\xb1\xba\x9f\xfe\xb0\x0f\x74\xbd\xd1\xe6\xdb\x47\xb8\x60\x64\x35\x31\x7e\x99\xc1\x9f\xd9\x0d\xaf\xc8\xf9\xb6\xa6\x95\x1a\x8c\xdc\xed\xf9\x94\x0c\xfe\x2f\x59\x30\xa6\x06\x9f\x0e\x43\xb7\x9f\xe1\x8c\xcd\xe9\x56\x32\xb2\x83\x7c\xcb\x98\x79\xc5\x1f\xc0\x06\x02\x7f\xfb\xe0\xff\x79\xdb\x34\x93\x5b\x30\x4c\xae\xe8\x56\xc8\x4b\x21\x46\xba\x93\x2f\x37\x2b\x3d\x6c\xa8\xeb\xec\x10\xfc\xff\xa7\x5c\x85\xfa\x46\x16\xf8\xa3\x07\x4d\x20\x7d\x16\xdb\x99\x84\x48\xd1\x38\xf6\x5f\xed\xa0\xf7\x8a\xed\xe0\x35\x9b\xe9\x6a\xab\xd3\xc7\xa3\x87\x4f\xa4\x2e\xce\xfd\x8a\x4b\x1c\x72\x35\x83\x2d\x49\x97\x94\x87\xcf\x20\xfd\xda\x83\xaf\xed\xd3\xba\xc4\x97\xd9\x4c\x9d\xae\x82\x0f\x12\xa0\x18\xf2\x62\x1a\x61\x3b\x22\xa9\x99\xc6\x53\xb8\xf2\x2a\x07\x86\xf5\x9d\x3b\xaa\x07\x6e\x5c\x9d\x39\x20\xd4\xbb\x86\x52\x69\xbb\x5b\x37\x4a\x0b\xf3\x09\xb9\x66\x5a\xf4\xd0\x9a\x97\x7b\xc2\x2a\x3a\x2b\x59\x81\x64\x4c\x46\xca\x6f\x6c\x89\xe3\x19\x83\xb2\xc0\x0b\x5e\x96\x41\x52\xa1\x3e\x69\xd4\x37\xa6\xde\xdb\x76\x13\x3c\x6d\x9e\x44\x9b\x47\x61\x4c\xb9\xde\xed\x12\x0f\x4a\xcc\xef\x89\x6b\x8a\x82\xd4\xb4\x71\x41\xde\x9b\xb0\xa8\x60\x64\xcb\x85\x28\x64\x37\x05\xe2\x05\x51\x06\x08\xbe\x95\x40\xd3\xa1\xe6\x8e\xf2\xe4\x06\x01\xbf\xf3\x7a\x63\xb8\x3f\x5f\x25\xb0\xc9\x5d\x6d\xde\x79\x46\x09\xdd\xc2\x0d\x62\x20\x8e\x11\x4d\x8b\xa2\x43\xc9\xfc\x23\xa9\x49\x45\xc6\xdb\xa7\x84\xd4\x87\x6a\xb1\x81\xd0\xbf\x82\x1a\xc5\xe6\xb8\x08\x24\xbd\xdf\xdb\xf0\xaf\x36\x4d\x9c\x44\x8e\x04\xfe\x11\xa2\x1e\xef\x41\xf5\x9a\x55\xd9\xea\xff\x59\x93\xbd\x59\x66\x53\x8c\x37\x5b\x2a\xba\x11\x81\x57\x2c\x2a\x5d\xea\x2d\xe9\x01\xa1\xe7\x63\x45\x1a\x99\xa7\xc9\xd6\xe4\x44\x6d\xe0\x63\x55\xcf\x6e\x51\x86\xaf\x79\x3f\x47\x9a\x5d\xe5\xaa\xab\xe6\x65\x59\x24\x70\xaf\x98\x32\x8f\xdd\xda\x12\xef\x8a\x29\x2b\xf0\x8c\xd1\xed\x77\x18\xb9\x84\x8e\xc9\xba\xfb\x87\x85\x5f\xc0\x3c\xe0\x6a\x4b\xce\x13\xf2\x15\x1a\xc9\xf7\xe8\xe1\x7d\x83\xc3\xb1\xa2\x8f\x60\x0a\x7a\xe4\x6e\x6b\x02\x7b\x15\xec\x85\xad\xb6\x1c\x30\x71\xb0\x61\xa2\x5a\xfc\x5e\xfd\x76\x57\x7b\xdf\xd4\xdd\x27\xa2\xea\xa8\x03\xe6\x31\xbe\x21\x6b\x26\x35\xdd\x5e\x6c\xc9\x8e\xb6\xaa\xfd\x2e\x99\x8a\x70\x3f\xb4\x4d\xce\xc2\x99\xda\x41\x9c\xc7\xd3\x0c\x8c\xee\xce\x58\xd3\xb3\x73\x62\x1f\x36\x42\xf6\x48\x50\xec\x7c\x1d\x8e\xe2\x51\x7a\xcc\x29\xe4\x9c\xbc\x7d\x92\x4c\x53\x68\x01\x87\xc1\xda\xaa\xb6\x90\x5a\x50\xbc\x21\xce\x90\xe9\xff\x15\xf3\xe8\x0f\x2d\xda\x06\x65\x33\x9c\x81\x13\xf7\xd3\x3a\xde\x5f\xbe\xfa\x4b\xf0\xc0\x16\xeb\xe3\x45\x90\x4c\x52\x68\x0d\x4c\xc5\x09\x13\x0c\xf4\xde\xa9\x3a\x43\x06\x97\x8a\xd6\xea\x52\x6f\x0e\x78\xd6\x07\x86\x2f\x48\x45\xdc\x95\xf6\xb9\x1f\x24\xa5\x35\xd2\xc7\xcf\xd6\x6a\xaa\x7f\x9b\x56\x18\x8d\xa2\x95\x1a\x5a\xe1\xeb\x29\xaa\xe2\x64\xf5\xb6\xea\x2c\x0f\x58\x06\x6a\x00\xe2\x83\x36\x14\x98\x01\xc4\x3e\x02\xbd\x57\xa7\x58\xae\x87\xb3\x1f\x76\x28\xb1\xcf\xaa\x22\x45\x17\x3c\xea\xb4\x8d\x82\xe7\xa0\xa8\x58\xdc\x33\x22\x5d\x68\xde\x24\x11\xf6\x79\x38\x90\x8e\x9e\xcc\x0e\xbf\xef\xd6\x41\xdd\x04\xaf\x34\xa6\xac\x18\x56\x6c\xf7\xd4\xef\xdf\x4f\x18\x47\x81\x07\x41\xd3\x6e\x75\xc1\x4b\xca\x6f\x54\x04\xab\x3d\xc0\xd9\xe8\x7e\x7e\x49\x37\xa1\x5d\xdc\x62\x11\xab\xda\xd9\xf2\x33\x41\x9e\xfa\x06\x50\xfa\x95\x9e\x77\x92\x87\x25\x43\x2c\x5a\xad\xc2\x88\xb9\xca\x24\x92\xde\xb0\x47\xdf\xb7\xea\x92\x78\x47\x79\xf8\xd3\xf0\x64\x44\x94\x38\xb6\x64\x49\xb4\x53\x13\xc5\x0c\x88\x46\x44\x92\xdd\x8a\xcf\xfd\xe9\xfb\x6f\x19\x67\xac\x14\xd5\x52\xe6\xe5\x7d\xa0\x52\x2d\x12\x27\xcb\xe5\xf3\xeb\x9c\xed\xda\x95\x28\xff\x08\x74\x42\x98\x9d\xa7\xdb\x51\x45\x95\xd2\xa6\xc5\x67\xd4\x79\x6c\xc9\x8d\x8e\xc2\x12\x5d\xe9\xf2\x5b\x79\x3e\x36\x9d\x45\x6e\xc3\x62\x39\xe8\x85\xf9\x15\xcb\xe5\x90\xbb\x28\x99\x13\xe1\xdf\x5d\x93\x63\x81\x1a\x62\x9f\x62\x1c\x47\x54\xb9\x8e\xf7\x7c\x6c\xbb\x78\xdb\x29\xcc\x50\x92\xf3\x5a\x79\x82\x26\xe1\xbb\x8a\x08\xec\x88\xf4\xf9\x26\x4d\xb2\xfe\x86\xff\xb9\x23\xaf\x57\x4f\xff\x91\x47\xb0\x63\xbd\x48\xfe\x9a\xeb\xb9\x5a\xd7\xb7\x9b\x80\xf5\x2b\x1d\x70\x2b\xfd\x16\x76\x86\xbd\xb9\x88\x36\x48\x9a\x50\x78\xc7\xed\xc8\xd4\x76\x8b\xa5\x58\xfe\x92\xed\x90\x34\x21\xc3\x1f\x66\xcb\xf4\xe2\x59\x70\xe0\x6b\xb7\x3e\xe1\xc4\x8c\x1e\x3d\x34\xa7\xa0\x69\x9d\x75\x92\xdb\x04\xca\x50\x2e\xa1\x52\xac\x5e\x50\xeb\x10\xdf\x4a\x56\x4b\x63\x22\x49\x65\xd8\xd5\xc8\x6a\xef\x32\x81\x5a\xe7\x35\xd8\x62\x65\x29\x76\x44\xa8\x15\xe4\xa1\x11\xc4\x14\xfe\x70\x4a\x02\xaf\x1c\xe3\x7b\xe5\x41\xc8\x85\x22\xb4\x94\xc2\xfa\xde\x17\xa2\x26\x35\xa3\x85\x55\x73\x8d\x8a\x6b\x6a\xda\x37\xb0\x4c\x6e\x00\x07\xc7\x34\x9e\x90\x73\xb6\xa9\x99\xd6\xe5\x8b\xa9\x9b\x61\x25\x88\x3e\xf7\x58\xdd\x44\xae\x14\x6c\xc1\x41\x4b\x46\x62\xa3\xa5\x28\x4a\x42\xab\xfd\x5a\xd4\x6c\x9c\x77\xc7\x37\xa4\x42\x6c\x1a\x24\x5e\x6f\x67\x25\x9f\x93\x44\xde\xac\x56\x9b\x74\xf1\x06\x57\x27\xe6\xdc\x2f\x9a\x22\x0f\xdd\xad\x9c\xe4\x81\xc1\xd6\x33\xe5\x22\x9b\x3c\x3e\xda\x9c\xf3\xae\x52\xe2\xa7\xeb\x4d\x0e\x8c\x9a\xc9\x6d\x69\x7d\x1b\x10\xc9\x0a\xcc\x52\x78\xa5\xc4\xb7\x75\xc5\x8a\xe6\x00\x8f\x01\x99\xf2\xd8\x33\xb4\x2d\x24\xc4\x28\x20\xcb\xd1\x7a\xb9\x5d\x9b\x04\x47\x60\xc9\xc6\xb9\x38\xf4\x67\x23\x64\x6c\x75\xea\xcf\xd0\x20\x76\x0a\x76\xe5\x09\xf9\xfb\xdf\xed\x57\x8f\x21\x43\xd6\x29\xe1\xc5\xc9\x94\xb4\xfa\xe9\x4f\x64\x83\xc6\x1a\x48\xac\xaf\xb4\xa7\xa8\x39\x8a\x57\x73\x51\xd7\x6c\x9e\x35\x54\xe3\xcd\xe6\xed\x1a\x8e\x6e\x0c\xff\x02\x8a\xdd\xb0\x7a\x0f\xbb\x8e\xec\x56\x82\x88\x5d\x25\xf1\x86\xce\x76\x07\xf5\x5b\xa2\x33\xa6\x32\xbb\xc8\xc8\x59\xd0\xc6\x69\x45\x97\xcc\x7c\x7f\xf9\xfc\xfa\xea\x1e\x39\x70\xa9\xd4\xe0\x33\xcd\xf0\xf1\xa8\x8b\x8d\xbd\x35\xd1\x7b\xae\x39\xf4\x9a\xcc\x6d\x73\x51\x2d\x44\xbd\x46\xaf\xb0\x66\x63\xbf\xc7\xe5\xf3\xeb\x98\x0e\xfb\x0d\x33\xde\x0d\x9b\x6d\xea\xe2\x3c\x72\x31\xc5\xc5\x41\xc4\xae\x62\x85\xa6\x93\xde\x21\xd8\x69\x4a\xd2\xc1\xae\x71\xf5\x8f\x64\x26\x51\x07\x8f\x3c\x7a\xe8\x47\x60\x85\xd2\x1d\xcf\x66\x42\x49\xc9\x25\xa4\xaa\x83\xb2\x9a\xfb\x0d\x93\x5e\x5a\xff\x9a\xcd\x19\xbf\x61\xb0\x4a\x6c\xa3\x0e\x27\x2e\xb9\xb2\xd9\x51\x2e\x9f\x5f\x5f\x6b\x60\x50\x7f\x01\x2f\x3f\x53\x05\x1f\xf0\x0c\x36\x7d\xa0\x43\xd4\xfc\x34\x8e\x21\x0b\x5b\xbf\x4d\xdd\xa8\xbe\x4b\x95\x97\x77\x27\xa5\xdf\xbd\x9b\x36\xbb\x15\xd3\xe7\x00\x11\x35\xf8\xc8\x21\x3d\x1e\xbf\x61\x15\xae\xb2\x5e\x78\xa0\x0a\xd6\xdb\xc1\x4b\x95\x44\xe1\x32\x72\xe6\x7d\x6f\x4a\xfd\xd0\xca\xf4\xd5\x92\x1a\xc1\x19\x11\xf3\xd7\xad\xb4\x7e\x42\x98\x83\x06\x5d\xb0\x05\xdd\x96\x07\xc2\xbf\xb8\x8c\x69\x3f\x54\xee\xce\xf9\x04\xc9\xd9\x8e\x00\x80\xa1\x4f\x4f\x93\x17\xd3\xf9\xdb\xff\x16\x71\x93\x37\xfb\x0b\x5a\xca\x64\x7c\x52\x43\x61\x90\xa0\x6b\x5b\x92\x10\x78\x16\xc4\x43\xd1\x5c\x53\xb5\x28\x9a\x63\xbd\x17\x90\xe1\x47\xf3\xdb\x45\x15\x4b\x5b\x3f\xc0\xc3\x6d\x0f\x93\x13\x28\x83\xe1\x81\xe8\x03\xeb\x7d\xf9\xad\x45\x20\x84\xde\x12\xb5\x2a\x6a\xba\x23\x35\x5b\x8b\x1b\xf0\x54\x59\xb1\x68\x6a\xca\xb2\x40\x8f\xaa\x0a\x82\xed\xb2\x44\xc8\x5b\x2d\x76\xac\xa4\xeb\x20\xcc\x18\x08\x57\x15\xb6\x08\x1f\xa2\x56\xa4\x10\xca\x8c\x5a\x5b\xa3\xe4\xfb\x64\x62\x50\xb8\xed\xd3\x7f\x35\x35\x86\x2d\x6e\x2d\x1e\x6c\x01\xf8\xd9\xb4\xc4\x25\xb6\xfd\x86\xfe\xe4\x9a\xca\xdd\x69\x11\x9f\xb8\x07\x7a\x82\x67\x7c\xb5\x40\xef\xed\x7c\xc5\xe6\xef\xf5\xe6\x4d\x54\x09\x82\x3b\x96\x85\xb2\x11\x50\xa8\x1d\x5c\x3e\xbf\xf6\x50\xe8\xb2\x42\x02\xa5\x62\x6a\x38\xdf\xa9\x0c\xd1\xfd\x20\x5f\x1c\x7c\xbc\x51\x2d\x54\x4a\x8c\x84\xa3\x59\xd4\xa6\x5e\x1e\x49\x9c\x5a\x2b\x7e\x28\xa6\xcc\x1b\x58\x7d\x34\x2a\x17\x49\xae\x6c\x51\x07\xd7\xf6\xd1\xc3\x58\x18\x20\x23\x61\x30\xf0\x51\xc4\x6a\xa1\x1f\x5e\xaa\xb6\x25\x59\x6c\xc3\x81\x7f\xd5\x72\x0e\xe8\xb7\x80\x23\xd4\x14\x45\xe3\xd2\xa1\x5a\x3f\x1e\xd3\xa2\xa8\x99\x4c\x5c\x72\x79\x22\xd5\x31\x2c\x42\x4a\x4b\x8c\xf0\xa7\x44\xdd\x4f\x8b\x92\x03\x27\xc9\x7a\x5b\x2a\xbe\x29\xcd\x0e\x91\x77\x51\xbf\x93\x17\x72\x4a\xce\x2a\x42\xeb\x9a\x82\xe2\xa5\x8d\x24\x25\xdc\xa0\x87\x5c\x0b\xed\x5d\xec\x2b\x85\x89\xb3\xd7\x54\xc7\xc9\xb9\x41\x3a\x3e\x21\x69\xd7\xf9\x8a\xe5\xfd\xc4\x43\x40\xe4\x21\xd0\xe1\x2d\x4a\x87\x77\xc7\x1e\x03\xde\x79\x05\xd6\x79\x7c\x64\x05\x8d\xb5\xce\x09\x63\x1f\x2e\xaa\xe9\x77\x6b\x19\x57\x8a\xd5\x78\xd9\x54\x8b\xed\x72\x65\x6c\x2a\xe4\x09\x77\x72\x00\x53\x1c\xda\x96\xfa\x3c\xe5\x70\xe4\xeb\xfe\x6d\x71\x11\x21\x9b\x29\xc6\x99\x94\xb6\xbc\x38\xe9\x8a\x41\xec\xbf\x87\x64\x7a\x13\x45\xa8\x65\xb6\x93\x75\x22\x28\xfa\x1e\x1c\x28\x46\x50\x68\x4a\xd1\xa2\xf0\xcf\xcb\x06\x94\xef\x15\xec\xda\x46\xb8\x8b\x0c\x29\xec\x79\x89\x67\xa3\x19\xb6\x53\x9b\xea\x70\xd8\x44\x64\xce\x9c\x57\xb1\x7c\x6f\xf1\xa5\x71\xbd\x78\xd8\xa0\x08\x06\x51\xe1\xa9\x51\x68\x01\xbe\x67\x44\x6e\xeb\x96\x01\xce\x95\xf5\xf1\x18\x8b\xb5\x7d\x87\x19\x08\x77\x3b\xc4\x7d\xe2\xeb\x3a\xa9\x7a\xf6\xcd\x81\xff\x40\x92\x28\xa5\x39\xa6\xfa\x86\xb4\xf8\x28\x90\x5b\x00\xce\x8a\xc2\xb9\x34\x8d\xd6\x60\x62\x9a\xda\x8b\x67\x21\x8a\xb2\xb8\x4e\x1f\x42\x6f\x79\xf1\xce\x61\xdf\x1a\xeb\x55\x55\xee\x4d\x56\x65\xc7\x51\x98\xfa\x98\x2f\x62\x5d\xac\x45\x3f\xf0\x36\xa1\xd9\xa1\xd5\xed\x07\x32\x19\xf8\xc5\x17\xa9\xb3\xc6\x5c\x7c\x27\x76\x26\x60\x63\xdd\x3c\xfa\xe4\xd2\x67\x96\x12\x99\x13\xcb\xef\xd9\x3e\xcb\x4d\xde\x66\x2c\x30\x07\xf2\x4b\x94\x45\xac\x8a\x0d\x8c\xbe\x17\x3a\x2c\x4c\x7a\x68\x47\xd9\xae\x53\xed\x3c\xda\x8b\xed\xb2\xc9\xd4\xd4\xb4\x46\xc7\x4e\xec\xc8\x37\x94\x97\x84\xd1\xf9\xca\x9e\x26\xac\x40\x5f\x00\x3a\x07\xb9\x4c\x49\xba\xbb\x70\x91\x25\x94\x43\x88\x1b\xf0\x8e\x4f\xeb\x67\x8c\x44\x40\x8b\x0b\xe1\xc9\x95\xe1\x6c\x39\x5e\x32\x75\x71\x2e\xe3\x32\xca\x19\x29\x0f\x5d\x5b\x22\xc5\xa7\x0e\x12\x27\xbe\xc8\xd6\x72\xfe\x3d\x83\x3b\x8e\xcc\x83\x2f\x93\xaa\x31\x12\xef\x06\xc7\xa4\x80\x7f\xcf\xf6\x2d\x09\x7f\x98\xb3\x32\x07\x91\xe5\xa3\x48\xe2\x87\x5c\xa4\x55\x53\xc7\x3d\xc8\x9e\xbc\x40\x59\x4e\x8a\x6d\x8d\x91\xd9\x5c\x1b\x9b\x73\x61\x9f\x00\xe8\x3e\x32\x34\x62\x5c\x99\x01\x0c\x29\xa4\xca\x75\x3e\xa8\x46\xfc\x08\x01\x79\xc8\x45\x1a\xb2\xe7\x13\x1d\x39\x28\x53\xf2\xe3\x73\xfe\xe1\xdb\x3f\x26\x32\xfe\x7f\x21\xad\x99\x17\x27\x6d\x5f\x65\x4b\x5d\xd6\x08\x7f\xb6\xaa\x6c\x65\xb9\x96\x3b\x97\xcf\xaf\x91\x10\xc5\xf0\xab\xe6\x44\xd9\xaa\x55\x9e\x60\xd9\x27\xe4\x31\x85\x36\x54\x4a\xdf\x12\x44\x99\x5e\xa2\x99\xd3\x8e\x2f\x24\x36\x0e\xc6\x84\x99\x41\xe8\x9c\x89\x52\xe1\xb6\xba\xe7\x8c\xce\xdf\x7f\xc6\x59\x10\x99\x58\x1a\x07\x6d\xcf\x55\x0b\x35\x75\x47\x85\xbf\xea\xf6\x5f\xd1\xa4\x8e\x11\x91\x2f\x3c\x0e\xf7\x25\x8b\xe1\x75\x99\x67\x76\x1f\x94\x3e\xb2\x51\x78\xc8\xa4\x8e\x08\x7b\x02\x05\x85\x8d\xaa\x35\x6f\xf2\x59\xf1\x79\x7b\xc1\x21\x1f\x2a\xd3\xbd\xf6\x44\x97\x36\x8b\x3b\x7e\xc5\xd6\x47\x69\xad\xae\xaa\xaf\x3b\x18\x53\x8b\xe4\xf7\xc8\xb9\x6a\xb7\x55\x87\xcc\x51\x4a\x8b\x34\x90\xf7\xa6\x5d\x18\x2f\x1b\xf1\x0f\xb6\xd1\x87\x95\x2b\x13\x3a\xdb\x4a\x5e\xe9\x63\xbe\x14\x4b\x3e\x27\xb4\x86\xba\x48\x06\x18\x2b\xf9\x92\xcf\x78\xc9\x55\x2b\x8e\xb9\x73\x2d\xb0\xbb\x7f\x5b\xf3\x4f\x39\x74\xbc\x1c\x7a\x9d\x94\x43\xe1\x92\x36\xe1\xa1\x6a\xc5\xc0\x13\xaa\xb7\x5e\x4b\xda\xf8\x61\xb0\xfa\x47\x17\x16\xe8\x6e\x0b\x6e\xa5\xb2\xe6\xd8\x2c\x14\x54\xb7\x10\x4a\x3f\x06\x9b\x20\x25\x96\x8e\x11\x3e\x88\x9f\x11\x3f\xa8\x3e\xef\x09\xad\x99\xe1\xf7\xb2\xf5\xfe\xf4\xb0\xe0\xf9\xd1\x72\xbc\x6f\xc7\x1f\x27\x68\x2c\x56\x9f\x27\x6b\xbc\x2d\xc7\x8b\x7e\x92\xc5\x2c\x80\xbd\x90\x36\x7f\x4a\xeb\xdb\xc0\x8d\xc0\x65\xe6\x62\xc3\x43\xb7\xe9\xe1\xd1\x32\xf2\x4f\x1e\xe1\x03\xd2\xf2\xc9\xaf\x3d\x84\x77\xf3\xa0\xcf\x9a\xe2\x2e\x9d\xd2\xa2\xcf\x9a\x85\x53\xef\x5e\x36\x94\x3c\x3e\x83\xf7\x8d\x16\x89\xb6\x45\x2a\x64\x24\xf8\xed\x98\x78\x91\x48\x0c\xf4\x8e\x19\x39\xc4\x4c\xc7\x4b\x66\x72\x9c\x74\x6e\xf5\x25\x29\x01\x6d\x16\xa8\x43\x46\xcf\x3d\x47\x9f\x7b\x90\x1e\xbe\x45\x8f\xa6\x6e\xa6\xf7\x0c\x8d\x68\xe7\xa5\x42\x2b\x7a\xc5\x6a\xe6\x42\xec\x37\x25\x55\x0b\x51\xaf\x25\x29\x04\x8c\xba\xa2\x37\x0c\x0f\xd9\x82\xd5\x52\xe9\xed\x6a\x16\xe0\xa1\x4b\x25\x04\x70\xe0\x28\x96\xcc\x3c\xbe\x94\x2b\xbe\x21\xf3\x15\xad\x96\xed\xaa\x34\x70\x37\xb8\xf3\xbd\xac\x62\xab\x20\x45\x42\x5d\x33\xb9\x11\x15\x94\x8f\xb0\x26\xd5\x9a\x51\x53\xd3\x1b\x4d\x4d\xf2\xb7\x2d\x93\xa0\x7f\xad\x28\x04\x87\xe0\x63\x4f\x63\x6d\xa7\x4d\xf5\xc0\xcb\x7c\x8c\x7f\xd9\xa0\x6b\xd7\x60\x05\xaf\x6e\xfc\xdc\x14\xf6\x39\x61\xe2\x4e\x82\x40\xee\xdd\xd6\xee\x31\xf2\xea\xc9\xfe\xe2\xdc\xc9\xac\x56\xbf\xc0\x22\xeb\x25\xd2\xd0\x92\x6d\x9e\x5a\xa4\x4c\x63\x28\x78\xe2\x82\x10\x0e\x19\xeb\xfe\x25\x23\x18\xc9\x8d\xa0\xe8\x75\xcd\xa8\x6d\xdd\xdc\xc9\x66\xef\x67\xac\x3f\x9b\x50\xf3\x5d\x10\xaa\x01\x6f\x44\x5c\x5d\x91\xfc\x35\x57\xf0\x40\x04\xaf\xde\xe0\xae\xb9\x66\xb4\x20\x5c\x05\xfe\xad\x2e\x69\x9c\xba\x82\x53\x02\x54\x8b\xf0\x69\xc1\x42\x1c\x8c\xab\x4f\xbc\x00\x09\x83\x81\xfd\x5e\x97\x02\x72\xe2\xeb\x23\x47\x54\xe5\xde\x7f\xca\x6c\xa6\x03\xcf\xe5\x69\x11\x45\x14\x5e\x3e\xbf\x1e\xf9\x70\x34\x27\xc2\xcd\x3a\x26\xae\x08\x93\x7d\x8d\xc9\xeb\x92\x51\x09\x51\xe0\x41\x6c\x91\x06\xee\x43\x81\x81\xac\xf4\x71\xe5\xf3\x49\xde\x6b\x1a\x3d\x40\xd1\xea\xcf\x7f\x91\x30\x60\x29\xad\xf9\xc5\xb1\x4b\x86\x91\xbe\x6a\xeb\x5a\x9d\x8c\xe4\xa2\x80\xfa\xf1\x52\x5f\xce\xc1\xdc\x43\x55\x11\xbe\x34\x82\x43\x81\xab\x71\x60\x6c\xe8\xa3\x5f\xf7\xc3\x67\x18\x78\x4b\xeb\xb8\x2f\x08\xb8\x0d\x4b\xf0\x05\xab\x27\x6a\x58\x3c\xb3\xb6\x92\x41\x3d\x3f\xfd\xed\xeb\x26\x13\x52\x94\x3a\x42\x2b\xb5\xfb\x48\x0c\xb8\x97\x12\xf8\xca\x4d\xd4\x66\x64\x73\x6b\x45\x4d\x71\x1e\x21\x99\x9f\x6e\x29\xf6\xd2\x84\xaf\xc7\x93\x2c\xf0\x8f\xdc\x3f\x1d\xec\x77\x6c\xc0\x9c\x2f\xbd\x1a\x06\xd6\xd6\x14\x95\xf7\xc3\x9e\x29\x2e\xec\xc0\xe4\x27\xce\x76\x6f\x30\xc9\x45\x1d\xe1\xf3\xd1\xff\x6d\x6c\xff\xd1\xda\x10\x7c\xe1\x5d\x6d\x27\xb6\x45\x47\x82\xc0\x18\x94\x37\x55\xb8\x51\x97\x59\x24\x32\xe7\x0d\xc9\x64\x1a\x43\x52\x34\xc1\x72\x0f\xef\xe6\x63\xc1\xc5\xaf\x5b\x1f\x96\xec\x86\x95\x2e\xe0\xd0\xc4\x82\x36\x2f\x57\xee\x10\x03\x0b\x2f\x19\x5b\x12\x06\x06\x8f\xda\xe1\x32\xc6\xad\x6e\x24\x8c\x85\x45\x31\x50\x50\x0b\x0b\x19\x3e\xcf\xf4\x82\x02\xad\x3a\x6d\x3b\xbd\x82\x5d\xa0\x85\x0c\xa8\x63\x81\xf7\xde\x75\x36\x9d\x46\x8d\x21\x42\x67\x70\x65\x6d\xc3\xd9\x2c\x34\x3f\x0e\xb7\xa6\x95\xa4\x78\xf1\x66\x47\xbb\x17\x73\x75\x3e\x6c\x27\x08\xaf\x39\xe6\xf2\x96\x2f\x88\xe9\x4b\xee\xf7\x8a\xc2\xb2\xea\xbf\x09\xd6\xb3\x6a\x97\x0b\x6b\x1b\xa4\x12\x74\xc5\x31\xd5\x76\x84\xd6\x5d\x6f\xc3\xbc\x4b\xa6\xce\xca\x12\x53\x6b\xb8\xf3\xa4\x2c\x89\x7d\xd4\x8e\x54\xc3\xe3\xd5\xa7\x57\x20\xba\x3c\xdd\x2b\xec\x0b\x47\x0d\x2c\x21\x94\xf7\x34\xcf\xa7\x5b\x04\xf7\x35\x2f\x8b\x0d\x56\x45\x33\x13\xd0\xdf\xf8\x4a\x58\xf4\xbc\xcc\xbd\x80\x1f\x43\x62\x37\xd9\x9e\xa3\x9f\xca\xae\x35\x4f\xf7\xe4\x21\x3e\x6d\x68\xa3\x50\xb8\x4c\x14\x93\x89\x0b\x73\xcd\x65\x26\x68\x22\x8e\x9b\xe7\x43\x5c\x92\x19\xd3\x07\x91\x64\xb4\x9e\xaf\x0c\x11\x12\xc4\xbc\x0e\x11\x22\xd4\x66\xf5\x51\xc2\xfe\xcb\x3e\xd5\xb0\x09\x87\x3a\xe9\x99\x4c\xe2\xe7\xde\xc9\xc6\xa9\x39\x1e\xb7\x89\xec\xea\x45\x07\x39\x06\x1e\x8f\x83\xc4\x87\x59\x62\x9b\x54\xfd\x7e\xf4\x48\x17\xbd\x2d\x94\xcc\xc7\x2d\x07\x1c\xe4\x2e\x6b\x9e\x8f\x49\xbe\xf3\xb3\x0f\xd3\xa0\x3c\xcb\x00\xe3\x94\xed\x34\x85\x56\x78\xbc\x40\xfe\xcc\xa7\xe4\xef\x19\x19\xbc\x64\xeb\x8d\x56\x7b\x7e\xa8\xf9\x2f\xbf\x94\x9c\xc9\xc1\x97\x60\x8e\x60\x60\x83\xfa\xb5\x7d\x46\x8d\xe6\xa7\x6e\xef\xd4\x8b\x43\xec\x84\xfd\x7c\xa6\x7a\x75\x2c\x0b\xc5\xa5\x17\xec\xe3\x34\x83\x5d\x94\x8a\xea\x71\x14\x79\x2d\xaa\x07\x70\x11\x36\x67\x10\x4c\x7d\xc3\x6a\x77\xa9\x6d\x74\x36\x51\x1b\x2c\xe1\x26\xfb\x86\x96\x5e\xea\x67\xa3\x1c\x6c\x0e\xa5\xbf\x48\xaa\x3b\xfa\x47\xc7\xb3\x6f\x61\x0c\x4f\xc9\x26\xac\x94\xf1\xf3\xf0\xe4\xd9\xdf\x62\xf6\x2b\xa3\xb6\xfa\x0c\x8e\xef\xa7\xac\x9a\xdd\xdc\x76\xd8\xcc\x0e\xe1\xca\x72\x19\x6f\x84\x71\x17\x33\x79\x6f\x1e\x1b\x5e\x72\x6f\x1e\x8f\x92\x33\xff\xb1\x65\xf5\xde\x4e\xc0\xa4\x61\x32\x22\xbb\x91\x8e\x4d\x2a\x29\x0e\x21\xf2\x78\x17\x44\x67\x62\xeb\x72\x4b\x20\x7d\xe2\x23\xb4\x21\x4e\xeb\x79\xbe\x3f\xf0\xe3\xf0\x98\x4c\xbd\x4c\x3f\x4d\xc5\x25\x24\x93\xc0\xe6\x97\xd1\x1f\x32\xa8\x19\x9e\x7f\x72\xd4\xa4\x84\x0c\x56\x17\x9e\xdb\xfd\x0f\x58\xdd\x54\xa6\x93\x6c\x3c\x7f\x98\xfa\xd2\x2d\xd4\xd1\xdb\x18\x6d\xb0\xc4\xe6\x8d\x8e\x6c\x63\xed\xd9\x25\x7e\x0c\xa5\x1e\x93\xf4\x37\xcf\xd6\xfd\x15\x30\x4f\xe1\x7b\xaf\xc1\x3f\x72\x15\x62\x5c\x35\x94\xe8\x61\x73\xc7\xa2\x84\x69\xe0\xdd\xb2\xe0\x3f\x7e\x8d\x65\x91\xcd\x93\xfd\x78\x61\x2e\xce\xe5\x93\x7d\x6b\x77\x38\xc7\x5b\x6b\x61\x88\x5b\xe2\xc4\xe9\x7a\xfc\x02\x5d\xe6\x52\xfa\x1c\xb9\x48\x67\x09\xcf\xa1\x07\x8c\x2f\xb4\xc5\x02\xbe\x68\x39\x82\x27\x22\xbc\xd4\x5f\x9a\x04\x20\x49\xe3\x21\xa2\xcf\x30\xca\x3a\x6b\x1d\x8b\x7f\xf8\xfd\x3b\x7f\x09\x6f\x68\x8d\xeb\x24\x9b\xdf\xc9\x29\x79\xfb\x2e\x2c\xc5\x1f\xdd\x2b\x59\x31\x6d\x57\x0e\x5f\x21\x3b\xbd\xc0\x49\x2c\x07\x43\x7f\x69\x7d\x2d\xbc\xbd\xf2\x46\x85\x6e\xdb\xe5\x36\x69\xef\xe9\xa9\xed\x0e\x7b\x36\x7d\xb1\x60\x5e\xe4\xd9\x74\xc0\x0b\xb1\xad\x8a\x91\x7b\x56\x02\x54\x6e\x75\xc3\xb9\x9b\xc4\x9c\x43\x3b\x46\x24\xa3\x49\x87\x4b\x38\x1c\x14\x37\x83\x3f\xae\x7f\x54\x1c\xde\x2f\x97\x06\xf7\x84\x16\x62\x30\x35\xb5\xa6\x4f\x4f\xc9\xd7\xb7\x3b\x9b\x10\x5e\xd7\x39\x04\x26\xd1\x45\xe5\x27\x17\x82\x48\x15\xf3\xa6\x0b\x54\xc9\x94\xcb\xdb\x93\x87\x5f\x50\xce\xf9\x5b\xc8\xa2\x72\x50\xa3\xc4\xe9\xb4\x44\x5b\x6a\x67\xdc\x9d\x70\x6b\x04\x1b\x18\xa8\x11\xa1\xb9\x7c\x66\x73\x8f\x28\x5e\xb3\x22\xf0\xb0\x8a\x92\x51\x13\xa1\x68\x13\xf0\xc0\x35\x28\xd5\x04\x9b\x60\x72\x4b\xb1\x9e\x89\xac\xfd\x30\x84\xd7\xc6\x3b\x2e\x19\x64\x69\xac\x4c\x00\xa2\x79\xba\x7d\x42\xe0\x1d\x1e\x8c\x3b\xce\xc2\xb8\x58\x78\x5d\xbc\x1e\x23\x2d\xa4\xa4\x42\x7b\x66\x0d\xe1\x1e\x0d\x07\x8c\xb2\xe0\x66\xdb\xe6\xc5\xf3\x9c\x56\xde\xd3\xe3\x19\xb3\x49\x78\x02\xff\xef\x9d\xf2\x51\x80\xca\x9d\x19\xd0\x4f\xcc\x4a\x99\x45\xf2\x6e\xb0\xda\x64\x33\x4f\xfe\x92\x42\x3c\x66\x86\x61\x77\x3a\x0e\x1c\xf8\xb1\x1f\xb9\x69\xec\x15\xc9\x94\xc9\xad\x6f\x8b\x16\x25\xd5\xd0\x44\xcc\xe7\x15\x63\x16\x77\x20\x84\x87\xb8\xb9\xaa\xe5\xb2\x95\x2e\xae\x44\x19\x01\xad\x4e\xed\xe0\x7a\x54\x3b\x8f\x13\x6b\x28\x75\x3d\x2d\xb1\x10\xa4\xa2\x6a\x9b\x0c\x8a\x37\x2d\xda\x02\x2e\x86\x7a\xd1\xb0\xc3\x8e\x1e\x10\xcb\xa4\x9f\xdd\xc5\xe5\x15\x53\xf8\x06\xa9\xff\x1e\x4d\x71\x9d\x7b\x82\x34\xd6\x68\x72\xf5\xc0\xfe\x3d\x4a\xba\x22\x6c\x4e\xd2\xc4\x6e\x81\x9a\x0d\x90\x9d\x2b\xbd\xdf\xe2\xad\x86\x9b\x35\xda\x66\xaf\x8d\xd7\x0c\x64\x9a\x8b\xdc\xfa\x35\x54\xd5\xfc\xae\x01\x25\xc8\x92\x25\xb7\x61\xfc\xe7\xa9\x76\x65\x5a\xa2\xdd\x6e\x10\x8f\x37\xee\x5c\xac\x7b\xf7\xd2\xc1\x01\x9a\xa8\xc7\xe7\xab\x23\x98\x55\xcb\x4f\xda\x10\xb9\x2e\x0f\x78\x85\xfc\x45\xa4\x64\xce\x6a\xbd\x70\x56\xe0\x8c\x23\xa2\xff\x77\x95\x9c\x50\xad\x44\x28\x5a\x26\xc8\xd1\x1a\x38\xa2\x4f\x40\x00\x37\xf3\x9c\x76\xdc\x51\x1d\x31\x2b\x5e\xdb\x36\xcf\xad\xe5\xeb\x1b\x7b\xc3\x5c\x6d\xd7\x2f\x61\x02\xaf\x59\xdd\xca\x39\xac\xc7\x30\x8f\x97\x03\x79\x8a\x37\x9a\x41\xbf\x9c\x6c\x35\x9c\x86\x50\xba\x55\xc2\x46\x60\xca\x48\x60\xde\x42\x5e\x2e\x53\xf9\xc0\x7c\x45\xb2\x57\x02\xae\x34\x07\x77\xe6\x01\x6b\xba\xb8\xe7\xb8\x76\x1d\x9b\x21\xe1\x41\x8e\x5e\x4d\xb4\xb2\xfc\x8e\xdd\x15\x50\xb2\x19\xb5\x4e\xa6\x6d\x6e\x49\xa7\x01\xc2\x5a\x00\x5f\x3a\x07\xd0\xad\xf2\xff\x64\x72\xff\x74\x51\x01\xfe\x97\xbe\xea\xf1\xf3\x51\xc5\x17\x21\xd2\xfb\xad\xb9\xf6\x69\x51\x2d\xc8\x06\xd4\xf3\x3e\xc8\x07\xfd\x79\xb7\x42\x1e\xe2\xc3\x93\x29\xf9\xea\x6d\x7b\x19\xde\xfd\x0f\x5e\xee\x03\xab\xdd\xfc\xdd\x7d\xd1\xd5\x20\xf9\x64\x7f\x71\x1e\x7a\xcd\xe2\xdc\x65\x84\x55\xca\xc6\x7b\x67\x4e\xa7\x56\xce\x3e\xef\x90\xf2\x45\xc6\xb1\xc7\x4c\x3a\x8f\x5a\x3e\xdb\x88\x3f\xa9\x61\x2a\x5b\x9e\x1f\xf3\xe0\x01\xff\xdf\xc2\x0f\x6f\x7d\x9a\xbc\xbb\x1f\xf1\x05\x04\x5a\x61\xee\x75\x08\x88\x41\x7e\xd8\x60\x72\x27\xc8\xe8\xec\xf5\x6e\xa2\x40\x73\xc9\xe9\x08\xad\x8a\x48\xac\x23\x0b\x18\xb5\xa1\x9d\x13\x22\xc1\x05\xb8\x6c\xf6\x6b\x7c\x5b\xf9\xc1\x81\xe0\xd5\x67\xe0\xd5\xc9\x43\x97\x11\xb8\xa1\x3d\x23\x7e\xbb\x3c\x12\x53\xf0\x5e\xa3\x1a\x68\xe3\x32\x9a\x68\x22\xd1\x93\x09\xcb\x03\x75\xb4\x4f\x12\xd5\xc4\xa1\x6d\x24\x4d\x72\x4b\xfa\xed\x42\xd2\x37\xfb\x3a\x1d\x77\x64\xeb\x74\x5b\x8f\x6a\xbe\x55\xbe\x0a\x45\x94\x62\x29\x9d\x82\xd3\x1f\x64\xd4\x01\xac\x15\xbe\x91\x4c\x36\xad\xa1\x59\xaf\xe1\xfd\x53\xf2\xf5\x94\x0c\x2e\xc3\x1c\x89\xe0\xbb\x9c\x9b\xec\x1c\xe6\x15\x63\x57\x76\x69\xe0\x4d\x1f\x75\xcd\xaf\xf1\x92\x07\x8d\x4d\x79\xf3\xc0\x25\xec\x7e\x5c\x37\x75\x00\x5b\x75\x0d\x03\x9d\x32\x99\xa5\x2b\xe6\xa8\xb0\x08\xcc\x4b\xba\xd1\x47\x47\x63\x5a\xd0\x52\xcb\xa2\xbd\x35\x1d\x2c\x67\x6d\xa5\x3e\x44\x1a\x58\x41\xe0\xe1\xcf\x2b\x56\x99\xdc\x07\x46\x47\x8d\x18\x51\xb3\x31\x02\x1c\x91\x6f\x80\xa7\xad\x5d\xae\x56\x7e\xfa\x42\x4f\xd0\x80\x17\x65\x4d\x37\x36\xbb\xd3\x7b\xb6\x1f\x69\x93\x74\x8d\x09\x9f\x30\xde\x1c\x4a\xd9\x55\x4b\x22\x16\x3e\x90\x2b\x8c\x74\x7c\xdd\xc4\x1b\xb6\xf6\x9b\x47\x2d\x1b\xd1\x65\xf8\x37\x34\x1f\x9a\x8e\x0d\x77\x21\x17\x7e\x4a\x91\xd1\x9b\x31\x66\xf4\x4d\xaa\xed\x51\xd0\xa6\x99\x27\x16\x7a\x90\xe6\xe1\x22\x3c\x8d\xd1\x24\xe3\xd5\x72\xdc\x8d\xf2\x3a\xd6\x37\xa7\xc4\x26\x32\x4b\xa1\x6a\x4c\x02\xab\x1d\xd8\x64\xcc\xad\xb4\xc7\x32\x40\xf3\x19\x64\x97\x53\x7c\xcd\x08\x0d\xb2\xa7\x72\x69\x55\xc5\x30\xed\xab\xb9\x3b\xe2\xcb\x2a\x78\x84\x62\x8f\xa1\x30\x0b\x29\xda\x1a\x14\x33\x74\x57\x26\x39\x1e\x26\xdc\xc6\xe5\xfe\xa6\x83\x06\x58\x89\x21\x14\xaa\x6d\x41\x35\x99\x90\x9f\x68\xcd\x21\x18\x4d\xf2\x5f\xfc\x1c\x01\xd1\xca\xa1\x70\x6c\x65\x5b\x0b\x89\x1e\x9d\xf4\x86\xe4\x7f\xf8\xfd\xd4\x83\xf4\xcf\x1c\xb6\xbf\xc1\x1c\xb6\x2d\x27\x84\x2d\xaa\x81\x72\x3c\x3e\xdc\x83\xe6\xb6\x66\x48\x83\xf9\xa9\x37\x8d\xe8\xb0\x03\xb8\xf6\xac\x8b\x92\xc7\xe6\x4a\x0d\x25\x71\xc8\xe1\x96\xcf\x39\x1f\x9d\x5f\xed\x22\x44\x1e\x2f\x04\x1d\xb1\x7c\x88\xfb\xd1\x55\x11\xb9\xf5\xc4\x7a\x14\xfa\x48\x7a\x53\x5c\x7c\x2e\x88\x3b\x84\xf2\x40\xeb\x49\xbf\x5a\xb6\x75\xbf\xeb\x91\xde\x96\x0e\x5e\xbe\xa5\xd7\x25\x8a\x23\x6c\x9d\x20\x6f\x01\x42\xee\xb9\x43\xdb\xcb\x76\x90\xe2\xc1\x09\xd0\xc7\xb3\x6b\x3d\x97\x02\x2b\x4d\x78\xf2\x36\x3a\x4c\xb6\xd2\x64\x83\xe5\xd2\x2f\x65\x5b\x73\xe7\x30\xed\xb1\x8e\xd9\x8c\xf5\x4e\x9d\x69\xdd\x0a\xe4\x84\x60\x47\xc6\xfa\xe3\x81\xf5\xcc\xce\x8f\xca\x19\x6a\x1c\xeb\xd4\x20\xfd\xf8\x91\x5c\xc6\xab\x32\x8a\xd5\x41\xb7\x1e\xc9\xd3\x20\x2b\x76\xbb\x38\xa6\xdb\xc5\x9c\xce\xc2\x9f\x49\x2a\x6e\xfc\xce\x9a\xd8\x81\x8c\x85\x11\xbc\x87\x89\xf6\xb5\x62\xbb\xde\xaf\x2b\xac\xeb\x0d\x9a\xab\x07\xcc\x17\xe4\x3e\x0a\xd6\xdc\xd4\xc6\xf6\xae\xe8\xcf\x6c\x3f\x6c\x21\x96\xca\xcd\x77\x00\x9e\x5f\x33\xbb\x05\x6f\x64\xa4\xf9\xd7\x89\xa7\xab\x66\xb7\xbb\x16\x7e\x83\x4f\x39\xb1\x90\xc5\xe3\x6d\x6b\xec\x77\xb9\xea\x34\xb4\x28\xae\x45\x5f\x69\xe1\x94\x3e\x49\xbe\xc9\x1b\x07\xb7\x14\x1a\xff\x94\x01\x93\x3e\x5b\xb6\x7b\xe1\x3e\x6b\xd3\xfe\xea\x9b\xf5\x8b\xee\x56\xfb\x5e\x1a\x12\x07\x57\x42\x91\x05\xd7\x5a\x7a\x13\x5b\xe7\xba\xde\x1f\xe4\xf7\xdb\xd1\x1b\xcd\x69\x73\xc7\x6c\xce\x40\xd5\xf3\x36\xaa\xcf\x73\xff\xac\x4e\xf3\xdb\xaf\x4e\xd3\xc7\x1d\x76\x3f\xad\x12\x06\xbb\x03\x6f\xb2\xc8\x94\x0c\x7c\x59\x6e\xc5\xae\x11\x3f\x56\x75\x40\x8d\xf6\x7e\xec\x30\x4b\xf8\xb9\x5a\x63\xfa\xe7\x5d\xa2\xb4\x4c\x2a\x95\xab\x6f\xf7\x16\xac\xb8\x16\xe6\x21\x26\x02\xff\x52\x35\x6a\xf2\xf9\xe0\x5b\x93\x4a\x24\x55\xef\xdc\xcf\x99\xf6\x91\x79\x96\x83\xda\xb6\x05\xbf\x49\xfb\x0e\x27\x93\xbb\x78\x26\xf9\xd4\x66\xc3\x79\x69\xec\xb8\x9f\x38\xdb\xc9\xbb\x18\xc0\xc0\x08\xc2\xa1\x9c\x47\x01\xcc\x21\x4c\x9f\x4f\x6f\x28\x2f\xc1\xcb\xe3\xf8\x31\xc8\x18\x36\x39\x70\x87\x6d\x67\x00\x88\x0f\xad\xd7\xa4\x79\x5f\xf8\x18\x5e\xc0\xed\x37\x2c\xf1\xf2\x0d\xf3\xe1\x07\x53\x1f\x5f\x3e\xbf\x6e\x1e\xfa\xe9\xa5\xfa\x6e\x78\x32\x22\x07\x1b\x62\xb1\xfe\x5c\xdb\x37\x62\x4f\x4b\xc5\x99\xfc\x6e\x78\xf2\x2e\x5c\x45\x4d\x20\x5b\xd0\xde\x9b\xfb\x03\x19\x52\x4b\x1e\x26\x86\x29\x8c\xef\x13\x24\x45\x8f\x11\xf4\x08\x1e\x60\x9e\x55\xfb\x2b\xf0\x61\xf9\x36\x67\xa2\x0c\x47\x50\x81\x83\xfc\xfd\xef\xe6\x8b\xfb\xe3\x25\x83\x57\x99\x58\x11\xbf\x01\x3f\xb8\xf6\x8b\x69\x00\xa2\xeb\xad\x04\x9f\xbc\x91\xbd\x5e\x85\x00\x0c\x0a\x1f\x44\xdc\x0e\x3b\x63\xc7\xd5\x7c\xe5\xe0\x46\x48\xcd\xa9\x64\x87\xd7\x07\x17\x72\x9a\x53\xb4\x0f\x74\x1d\xb6\xfa\x01\x5e\xcd\x3d\xd4\x94\x4c\xcc\x5f\x93\xb8\xb2\xc6\x28\xd9\x17\xaf\x0d\x4d\x57\xfc\xe3\xa8\x9e\x7e\xda\x66\x98\xfc\x57\xed\x67\xaa\x9a\x1b\x3b\x40\xbc\xe0\xd5\x7b\xac\xec\xf0\x19\x20\x92\x2f\x7b\x9f\x1b\xeb\x60\x4a\x86\x9a\x21\x8f\xce\xcf\x9f\x58\x98\x47\x0f\xef\x24\x55\xbf\xff\xf9\xd4\xfe\xfa\xe4\x33\x38\xca\xed\xf8\x36\x53\x69\x55\x79\x46\xab\x8a\xd5\x17\x6b\xba\x64\xe4\x34\xe2\xaf\x97\xac\xe0\x19\x9e\x5a\xf0\x92\x4d\xa3\xe6\x7f\xba\xbe\x7e\xfd\x9c\x97\x2c\xdd\x43\x7f\xb6\x75\x39\x25\x83\x95\x52\x1b\x39\x9d\x4c\xaa\x19\x35\x41\x27\xe3\xb9\x58\x4f\xa4\xa2\x8a\xcf\x27\x7c\xbd\x9c\x28\xb1\x79\xa8\xbf\x7f\x58\x8a\xa5\x78\xb8\x12\x35\xff\x45\x6b\x09\xe5\xc3\xdd\x8a\x2b\x36\x96\x37\xcb\x41\x72\x8c\x0c\x13\xac\xf5\x3c\xcc\x56\xe7\x7a\xa6\x13\x79\xb3\xfc\xd7\x0f\xeb\xb2\x0d\xa5\x4d\x73\xb0\x27\xfe\xb6\xa5\x35\xfb\x6f\x44\xa4\x05\xbd\xe1\x73\x51\xd9\xff\xdf\x01\x45\x36\x55\x02\x42\xd6\xe0\x3f\xcc\x70\xe9\xf9\xa1\x73\x76\x70\xf9\xe4\x4c\xef\x97\x87\x7a\x0f\x0c\xd2\x18\x7a\xe5\xe3\xb1\x03\xb9\x16\x1b\x02\xb9\x12\xb8\x24\x7b\xb1\xad\x21\x01\x13\xe6\xcf\x10\xbb\x4a\x2b\x57\x65\x39\xc2\xcb\x9e\x9a\x16\x5a\x74\x2f\xf8\x9c\xd3\x92\x14\x7c\xc9\x15\x2d\x5d\x66\xa9\x59\xc9\xdc\xa3\x1f\x0d\x58\x77\xf9\xf9\xf2\xc9\xd9\x03\x49\x96\x78\x77\xa2\xcc\x8b\x76\xfd\x8b\xfe\x17\xab\x65\x06\x4d\xf6\x41\xb1\xba\xa2\xe5\x8f\x6f\x5e\xc4\x2b\xfd\xac\xf9\x69\x98\x59\xce\x41\x66\x79\x3c\x7e\x9b\xfa\x7f\xa4\x5b\x7b\x5b\x78\xea\xff\x91\x81\x2d\x34\x51\xe4\xb4\x43\xa6\x0d\xd4\x8e\x2b\xc5\xea\x41\xaf\x29\x99\xc6\xc0\x9e\xcd\xf4\x72\x53\x03\xf8\x05\x97\x73\x51\x17\xfd\xe0\x9b\xc6\x00\x9f\x57\x37\x5c\xb1\xbe\xc3\xf0\x4a\x2a\xba\xac\xe9\xba\xdf\x40\xbb\xdd\x6e\xec\xba\xb4\xa6\x93\x96\xd1\x3d\xb6\x4c\x4e\x4c\xfb\xca\x56\x5b\x36\x13\x1b\xdc\x0f\xad\xf6\x6f\x4c\xcd\xa6\x29\x79\x4a\x37\x14\x53\x77\x3e\xfa\xea\x63\x78\x62\xd9\x46\x9f\xbe\x23\xa7\x59\xaa\x2c\x99\x3a\xc3\xf0\x96\xa1\x3d\x85\x10\x93\xfd\x19\x26\x09\x03\x0f\x88\x1d\x84\x33\x48\x23\xdd\x31\xd4\x30\x9c\xd5\x92\xa9\x37\x21\xca\xaf\x9d\x0a\x31\x3c\xf1\xaa\x4d\xfb\x9f\xa4\x54\x71\xf4\xc9\x8b\xca\xb7\xd9\x5f\xf4\x27\x05\x2e\x23\x97\x42\x64\x2c\xa9\x23\xda\xe7\x39\xcd\x7e\xe6\x5b\x35\x25\x5f\x8f\xbf\xfe\xb7\xc3\x4d\x5b\xf2\xcd\x66\x82\x59\xd3\xfa\x3d\x53\x9b\x92\xce\x99\x45\x20\x2d\xda\xed\x27\xcd\x99\xfa\xf3\x2e\x7d\x24\x24\x54\xd7\x28\xaa\xd8\xba\x70\xbe\x5c\xbe\x1b\x48\x6a\x43\x4b\xfe\x0b\x0d\xfc\xb5\x5f\x66\x54\xf8\x5f\xcb\x94\x9e\x4c\xc8\x85\xc5\x82\x35\xf9\x56\xa3\xaa\xf5\x60\xee\xc6\xb5\xb6\xbf\x0e\x7f\x76\x49\x09\x42\x6b\x19\xed\x69\xfb\x52\x33\xf9\x53\x5c\xcd\xcd\x19\xd7\x26\xc8\xc4\x37\xab\x1b\xc3\x1b\x9e\x4a\xb4\x7e\x82\x60\xfe\xab\xed\x66\x53\xee\x01\xc5\xc0\x59\xb6\xb5\x75\xc8\xc3\xdc\x3a\x71\xb9\x80\x64\xf4\x1b\xd6\xb4\xf6\x95\xed\x74\x61\x11\x2c\x12\x90\x35\x30\x4e\x92\x95\xb8\x6c\x60\xa2\x93\x38\x7b\xf7\x90\x35\x91\x0d\x4f\x4b\xc4\x39\xdd\xc4\x71\x7a\x81\xb8\xb2\x68\x73\x29\xb7\x19\x63\xa1\x03\xc7\x24\x25\x02\xf8\x80\xb0\x5c\x0d\xe7\x74\x33\x22\x54\xe5\xed\xa2\x13\x6f\xbe\x01\xb8\x92\x57\xef\x1f\x7d\xf5\x31\x5d\xdb\xf0\xd3\x77\xc3\xac\xa1\x45\x14\xad\x97\x4c\xf5\x26\xf2\x6b\x93\xb5\x01\xdc\x3f\xf5\x91\x0b\xde\x2a\x5d\x1e\x14\x2c\x77\x18\x18\xfa\xc2\x8f\x36\x08\xfd\xd3\xbd\xff\x1f\x00\x00\xff\xff\x46\xa2\x25\xb3\x06\x29\x01\x00" +var _topshotCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7f\x93\x1b\xb7\x91\x00\xfa\xbf\x3e\x05\xc4\x7b\x65\x71\x73\x5c\xd2\x4e\x72\x7e\xf5\x58\x5a\xcb\x2b\xad\x94\xec\x45\x5a\xe9\xb4\x6b\xbb\xae\x54\xaa\x0b\xc8\x01\x49\x44\xc3\x01\x33\x00\x97\xa2\x1d\x7d\xf7\x57\xe8\xc6\xef\xc1\x0c\x87\xda\x95\x73\x97\x84\x7f\xd8\x5a\x12\x68\x34\x1a\x8d\x46\x77\xa3\xd1\x3d\xf9\xcd\x03\x42\x08\xb9\x60\x72\x5e\xf3\x8d\xe2\xa2\x9a\x92\x67\xac\x52\x35\x2d\xc9\xf5\x9a\xd6\x8a\x3c\x13\xfa\xaf\xb9\x22\x0b\x51\x93\xab\xa7\xe7\xe4\x46\x6c\xae\x57\x42\x3d\x80\x8e\x37\x2b\x2e\x89\x84\x86\x73\xdb\x50\xff\x83\xf2\x4a\x12\xb5\x62\x64\x2e\x6a\x46\x16\xdb\x6a\xae\x61\xd3\x92\xab\xbd\x06\x04\x7d\x0d\x30\xa2\xa1\x8d\xc8\xbc\x66\x54\xb1\x82\xcc\xf6\xe4\x82\x6e\x36\xac\x26\x2f\xe9\x4c\xda\x51\x98\x07\xbf\xa6\x15\x5d\x32\x84\x5e\x50\x45\x09\x95\x52\xcc\x39\x74\xde\x71\xb5\x22\xb4\x2c\xe1\xc7\x4d\x49\xf7\x92\xd0\xaa\x20\x92\x29\x09\x80\xd4\x8a\x2a\x42\x6b\x46\xb6\x92\x15\x84\x4a\xa2\xd8\x7a\x53\x52\xc5\x24\x4c\x4f\xf7\x7a\x25\xd6\xac\x52\xe4\xea\xc5\x8d\x19\xfc\xa7\x15\xab\x08\x25\x15\xdb\x91\x37\x25\xdd\x93\x1d\xad\x94\x24\x4a\x90\x19\x23\xb4\x28\x58\xa1\xff\xad\x7b\xd6\x6c\x2e\xea\x42\x8e\x08\xad\xc8\x79\xb1\xe6\x95\x99\x13\x0e\x1d\x40\x90\xaa\xde\xce\x15\x22\xa3\xc9\xa7\x44\xcd\x0a\xc2\x2b\x80\x12\x13\x73\xec\x08\x50\x05\x60\xa9\x05\x0d\x30\xaf\x99\x92\x63\xf8\xaf\xee\x26\xb9\x54\x44\x2c\x08\x25\x9b\xed\xac\xe4\xf3\x70\x34\x80\xe5\x96\xc7\xfc\xce\xab\x85\xa8\xd7\x54\xaf\x0f\xa1\x33\xb1\x55\x84\x6a\x82\x8d\x80\x72\x94\x6c\x6a\x7e\xab\x47\xaa\x99\x14\xdb\x7a\x8e\xa4\x43\x62\x0a\xb2\xe6\x95\x02\x1c\xd6\x40\x35\x49\x66\x54\x13\x56\x2c\x16\x1a\x05\x5c\x00\x98\xe6\x8a\xde\x32\x32\x63\xac\x22\x25\xaf\x3e\x78\x9a\x5d\xb3\x60\x8a\x84\xc2\xf4\xdc\x48\x2b\x8a\xab\xbc\x11\x3b\x56\xeb\x1e\x85\x80\xc5\x15\x0b\xf8\x9a\xaf\x37\xa2\x56\xb4\x52\x84\x02\x77\x21\x9d\xf3\x64\x34\xab\xa8\xe1\x4b\x58\x41\x0d\x6e\xae\x81\x59\xde\x94\xba\x27\xce\xdc\xb0\x0a\xdb\x63\x0b\xb5\x62\xbc\x26\x33\x51\xd7\x62\x77\xcd\x94\xeb\xa1\x41\x2c\x99\x26\x57\xcd\x16\xac\x66\xd5\x9c\x59\xba\x00\x1c\x8b\x8a\x47\x42\x2f\xe3\xc8\x42\xae\xd2\xf1\x85\xc1\x9c\x29\xb2\x95\xbc\x5a\x22\xe5\x1c\x6c\x43\xa7\x4b\xdd\x8a\xeb\x49\xec\x47\x99\x99\xc2\xaa\x71\x25\x49\xc1\x16\xbc\x62\x85\xa3\xa6\x9e\x9f\x62\xba\x09\x80\x81\x9d\xb2\xd4\x4c\x44\x14\xa3\xeb\x9d\xa8\x3f\x8c\xc8\x5f\xb6\x52\x91\x92\x7f\x60\x00\xf8\xb2\x2a\x38\xad\x28\x79\x43\xe7\xac\x96\x38\xd8\x12\x39\x5a\xc1\xe6\xd5\x1d\x01\x98\x66\x37\x4d\x28\xbe\xb6\x58\x02\xb9\x2d\x53\xe8\x0d\xa7\x39\x85\x15\x66\xf2\xfa\x0b\x5e\x71\xc5\x69\xc9\x7f\x76\xdb\xd6\x6c\xbd\x0b\xbd\xa7\x0d\xd3\xd2\x0a\x59\x4d\x77\xa8\x99\xda\xd6\x15\x4a\x08\x8d\x0a\x40\xac\xc7\x19\x09\x41\x4b\x29\xcc\xfc\x25\xa1\xe4\x99\x28\x4b\x86\x2b\x66\x89\x31\x46\xc1\xc5\xb5\x78\x20\x62\xf6\x17\x16\x6e\x10\x76\xcb\xea\xbd\x15\x73\x5a\x10\x10\xb1\xab\x58\x4d\x76\xbc\x2c\x71\xb3\x9a\x95\xe5\x35\xa1\xf3\xb9\xd8\x56\xca\xed\x07\x90\x4d\xe6\x37\xdd\x73\xee\xc6\x0e\x10\x5d\x53\x5e\x39\xc9\x67\x41\x20\x78\x40\x1d\x36\x8b\x5e\x43\xb1\xab\xac\x3c\xf2\x80\x0c\x9b\x2b\x60\xa1\xad\x64\x7a\xdc\x95\x28\x0b\xd7\xc3\x92\xdd\x6f\xbc\x4a\x28\xb2\x67\x0a\x37\xa0\x64\xc8\xfd\x54\x77\xb6\xf4\xbb\x12\x8a\x4d\xc9\x39\x4c\x50\xef\xf6\xf9\x8a\x56\x4b\xcd\x83\x9e\x3d\x01\xbf\x0d\xad\xb4\xc8\x58\x68\xba\xf1\xea\x96\x96\xbc\x20\xb4\x5e\x6e\x01\x47\x8e\xa8\x6d\x6a\x71\xcb\xb5\x5c\x14\x35\x11\x15\xd3\xdc\xa1\x51\xdb\xd4\xec\x74\x2e\xaa\x82\x1b\x6e\xaf\xc9\x46\x48\x60\x5c\xfb\x15\xad\x59\xf5\x48\x91\xb5\x96\x09\x1a\xd0\x0b\x37\x36\x4c\xa5\x10\xf0\xab\x28\xf8\x62\x6f\xd0\xc4\x25\xe1\xeb\x4d\xb9\x37\xfc\x41\xbe\xd6\x90\x2b\x5e\x22\xdf\x54\x05\x51\x2b\x21\x19\x99\x53\xc9\x24\xa9\x18\x8a\x9e\x99\x16\x2e\x55\x51\x7a\x6e\xd2\x7b\xd1\x51\xe3\x12\xe4\x32\xac\x85\x17\x32\x4a\x90\x9a\xad\xd9\x7a\xa6\x65\x91\xe5\x15\xbd\x9c\x7f\x10\x65\xc1\x2a\x72\x0d\x18\xfd\x44\xeb\x9a\x8b\x5a\x92\x59\xc9\x76\x84\x92\xdf\x9d\x7e\x43\x4a\x46\x9d\x78\xff\xed\xd7\xdf\x7c\x0b\x9b\x67\xc1\x2b\x5a\xca\xf1\x83\x07\xbf\x99\x3c\x78\x80\xa3\xe8\x09\x2f\xf9\xac\x64\x37\xe2\x03\xab\xc8\xa2\x16\x6b\xf2\xf5\xc7\x17\x3f\x5c\xfd\xe1\xf2\xe9\xcb\xe7\x37\xaf\xff\xf4\xfc\xea\xfc\xe2\xe2\xed\xf3\xeb\x6b\xdb\xe1\x4a\x54\xd9\x3e\x57\x2f\x6e\x92\x96\xaf\x98\xa2\xfa\xb4\xfc\x91\xb3\x9d\xb4\xcd\x5e\x3d\xbf\x39\xbf\x38\xbf\x39\xff\xf1\xf2\xf9\x4f\xd7\x49\x07\xc3\xff\x2f\xc5\xfc\x03\xf0\x01\xf6\xb8\x79\xfd\xe6\xfa\x8f\xaf\x6f\x5e\xbe\x7e\xf6\xa7\xcb\xab\x3f\x24\x5d\x34\xec\xb7\x4c\x8a\xf2\x96\xd5\x84\xd8\x2e\x1a\xf8\xdb\xe7\xd7\xaf\x5f\xfe\xf8\xfc\xad\xed\xf0\x80\xce\xe7\x4c\xca\x21\x2d\xcb\x13\xbf\x6f\xcd\x90\xd3\xe6\xb4\x7e\x01\x62\x4f\x26\xe4\xf4\x7e\x3e\x16\x9c\xdd\xe4\x05\xdb\x94\x62\x0f\x4c\x7c\x4b\x6b\x4e\x67\xa5\x39\xb5\xef\x71\x48\x37\xe6\x4a\x1f\xdb\x4a\x4b\xdc\xe8\x78\xd0\x2c\x87\x78\xe8\xad\x53\x21\xff\x06\x64\xba\xe5\x6c\xa7\xb7\x23\xb9\xc2\xce\xc3\x13\x32\x25\xd7\xaa\xd6\xab\xf3\x8b\xe5\xfe\xff\xe7\x97\xab\xe7\x37\x3f\xbd\x7e\xfb\xa7\x4f\xe4\x53\x34\x22\x2d\x8a\x9a\x49\xd0\x5b\x76\x2b\x3e\x5f\x91\x5a\xec\x69\xa9\x38\x93\x44\xae\xc4\xb6\x2c\xf4\x9e\x28\xd8\x46\x48\xae\xcc\xf9\x9e\x1d\xfc\x2d\x74\xdb\x9f\x23\x38\xc0\xc1\xfc\xdb\x23\xe1\xd8\xe4\xed\xeb\xff\x3e\x7f\x79\xf3\xdf\x66\xd5\x13\x8c\x36\x54\xad\x9c\x1a\xb0\x9d\x31\x94\x02\x46\xc5\x71\x3a\xc0\x8c\x95\x02\x25\x91\x69\x7a\x1e\x48\xdc\xc9\xc4\x4c\xe6\xb3\xe8\xe8\x07\x85\x31\xaf\x95\xa8\xe9\x92\xbd\xa1\x6a\x65\x48\xeb\xfe\xf6\x53\x9b\x48\xfc\x76\x62\x38\x27\x81\xe1\x67\x78\x5f\x5c\x93\x30\xaa\x9b\xe4\xf3\x5b\x2d\xe3\xbf\x14\x8f\x3e\x5f\x73\x05\xfa\x74\xa2\xfb\x9a\x63\x99\x4b\xab\xae\x37\xa8\xcb\x34\x5e\xd0\xf8\x19\xb6\x18\xf2\x62\x4a\x7e\xb8\xac\xd4\xef\x7e\x3b\xd2\xa2\x1d\xa4\xd0\x94\xfc\x82\x9c\x3b\xc5\xff\x7d\x3a\xe9\x18\x59\xb2\x5a\xb3\xa9\xd6\x06\xe1\x00\x53\x35\x5f\x2e\x59\x8d\xb2\x9b\x1a\xad\xae\x05\x91\x2b\xb6\xbb\x86\xee\xd7\x8a\xd6\x1a\x9b\x8a\xed\x9e\x6d\xeb\x9a\x55\x0a\xbf\xb7\xb8\x9d\xf8\xb9\x03\x65\xc1\x1e\xb8\x66\xea\xf4\x2d\x2b\xc1\xb4\x08\x75\xcc\xc9\xa4\x03\x5d\xad\x22\x1e\x24\xd0\x35\x53\x96\x3e\x92\xa9\xcb\x0b\x4f\x22\x99\xa0\x75\x60\x45\xf4\x39\x65\x8d\x10\xaa\xc1\x76\xac\xc8\xb9\x6e\x78\x23\xae\x99\x4a\x07\xd5\x9a\xba\xff\xbb\x6d\x50\x3b\x60\xcd\x14\xd7\xe4\x07\x01\x0f\x83\xc2\x41\x3b\xa7\x95\x56\x34\x66\xc6\xba\x32\xe6\x41\x07\x3e\x6f\x11\xce\x8b\x5a\xac\x0f\xe2\x34\x22\xd5\x76\x8d\xba\xd0\x41\xe2\x98\x15\x28\xc5\xfc\x83\x56\x39\xd7\x8c\x56\x5a\x80\xbc\x01\x73\xc4\x63\x09\x74\x6b\x5f\x9f\x97\xd0\x3d\xc6\xaa\x6d\x44\xa3\xa4\x71\x69\xf4\xdc\x80\x34\x2d\x03\x60\x8f\x57\xd0\x7a\x88\x1a\x9b\x1d\xe6\xdb\xdf\x37\x27\x9f\x61\x12\x5a\x5e\x6d\xb5\x32\x12\x7c\xeb\x84\x51\x88\x71\x86\xaf\xbd\x46\x7c\x5a\x1f\xc3\xde\x6b\x37\x4d\xad\xb1\x17\x35\xdd\x55\x76\xa6\x1e\x64\xcb\x84\x7f\x32\x3d\x9c\x3c\xd0\xd3\xd4\x9d\xdd\x01\xf2\xa4\x8d\xba\x7e\x58\x77\x40\x69\x63\x46\xf4\x19\xf6\x02\x7b\x44\xa3\x2a\x11\x8e\x79\x70\x49\x0b\x26\x55\xad\x4f\x93\xce\xa5\xbc\xb0\xad\x82\xa1\x5a\x81\x07\xe7\xdd\x61\x51\xe1\xda\x3a\x89\x91\x59\xe7\x11\xa9\xe8\x9a\x59\x85\xa0\x53\xd2\xf6\xc2\x29\x36\xd3\xe5\x86\xcd\xf9\x82\xcf\xcd\x5c\x0f\x62\x6a\x24\x0d\xb6\xce\xb0\x77\x7e\x06\x07\x84\xd2\xaf\x74\xb4\x9e\x96\xec\x96\x95\x64\xc1\x59\x59\xc8\x71\xa0\xb1\x48\x66\x7d\x27\x7a\xb7\x6c\x69\x49\x6e\x69\xb9\x65\xd2\x7b\x95\xba\x3d\x39\x5f\xe8\xac\xc6\x73\x0c\x91\x00\xcf\xc0\x35\x58\x7a\x5a\x6d\xd2\xea\xde\x38\x69\xa7\x0f\x0c\x8d\xd4\x9c\x6d\xac\x0b\xaa\x2a\xf8\x1c\x7c\x60\x94\x2c\x6b\xb1\xdd\x68\x8b\x0d\xdc\x49\x6a\x55\x8b\xed\x72\x65\x0c\x7b\x03\xe7\x15\xad\xf6\xc6\xdb\x44\x2b\xc2\x3e\x72\xa9\x88\x9e\x3f\xb4\x1a\x91\xd9\x56\x11\x51\x95\x7b\x30\xfd\xf0\x30\x1b\x37\x75\x30\x5a\x93\x79\xee\x18\x76\xb3\xfa\xd1\xa8\xe1\x44\xf2\x9f\x19\x29\x38\xfa\x0f\xeb\xbd\xc6\x2d\x50\x45\x64\x08\x5a\xb2\x72\x81\xb0\x35\xeb\x5c\x50\x45\xe5\x94\xfc\x82\x80\xa7\xd0\xeb\x53\x2f\xf8\xd7\x2c\x74\x42\xb4\x0c\x21\xb1\x51\x38\x82\xe9\xd7\x7b\x10\xef\x9b\x69\x1d\x42\x4e\xc9\xf7\x21\xfc\x58\x85\xbe\xbc\x70\x4e\x44\x7b\xe4\x1a\xbf\x20\x9c\x75\xe3\x40\xf4\xd7\x7b\x58\x9f\xe0\x14\x37\x52\xc7\xee\x33\x60\x0c\x29\xf9\xb2\x32\x92\x68\x32\xb1\xbb\xdf\x2a\x1b\x8f\xa4\x1e\x11\x6d\x6a\x06\x52\x82\x57\x73\x6d\x13\x57\xc6\x71\xfb\x4d\x7e\xa5\x2b\xf6\x51\xbd\x89\x36\x73\xcf\x59\xa0\x67\x33\xc2\x3e\xa3\x5d\x4d\x26\x28\x39\xc2\x19\x84\xa8\x4b\xa6\xee\x82\xf9\x75\x28\x95\x22\xc4\x95\x50\xb4\xd4\x7a\xc9\x8c\xd5\x7a\x49\x6f\xc4\x46\x1b\x53\x2a\xf4\x21\xa7\xee\xcf\x04\xf1\xa7\x6c\x4e\xb7\x92\x61\x53\xbd\x9f\xc0\x0a\x33\x27\xc9\x88\x70\x45\x0a\xc1\x64\xf5\x48\x91\x8a\x69\xd4\x68\xcd\xcb\x3d\x68\x34\x7e\xc3\x5b\x58\x35\x5b\xe8\xb3\x10\x7d\xa6\x29\x6e\x30\x00\x37\xfb\x95\x55\x73\x66\xbc\x7d\x40\xa4\x6d\xec\xd4\x98\x4c\x02\x84\x8d\x42\xa3\x04\x29\xa8\x62\x63\x72\x5e\x4a\xe1\xdc\xe7\xcb\x52\xcc\x68\x69\x0f\xe8\xcb\x0b\x54\x2f\x74\x17\x5e\x2d\xf3\x24\x05\xc4\xae\xb7\x9b\x4d\xb9\xb7\xe7\xc1\xaf\x2c\xd9\x9f\x89\x35\x6a\x11\xe4\x66\xbf\x61\xe8\x28\xe4\xa1\xf6\x73\xef\x78\xc0\xd9\xa1\x0f\x08\x20\xf9\x6f\x82\x11\x7f\x03\x04\xd3\x78\x84\x12\xdc\x22\x6c\x01\x68\xc6\x15\x6a\xc5\x9c\xbf\x51\x5a\xe7\xdf\xd8\x00\x0f\x40\x92\x42\x80\xc3\xcf\x9c\x55\x0e\x06\x1e\x59\xe6\x88\xc2\x93\x0b\xa5\x35\xb8\xf2\xa4\xa2\xd5\x9c\x91\xa1\xa8\x8d\x3f\xf4\x44\x73\x8d\x71\xdf\x29\x18\x03\xb0\xb4\xe0\x0c\xaf\x06\xb7\x36\x11\xe6\x38\x19\x77\xd5\x10\x8d\xfa\xc5\x4e\x42\x67\x10\x69\x2d\xc8\xdd\xb0\xac\x44\x59\x48\xa7\x0f\x05\xb7\x45\xce\x85\x80\xde\x67\xa7\xe3\x5c\x3d\x3d\x07\x99\x38\xf2\xae\xf0\x92\x2d\x59\x55\x68\xc9\x6d\x58\x5d\xeb\x4c\xb6\xff\x5b\xba\x27\xe7\x65\xc9\x2a\xb2\xe2\xb8\xa1\x7e\x07\xe2\x87\x63\xdf\x3f\x32\x8a\xf6\xd1\xf5\x66\x5b\xcb\xc0\x0f\xf8\x3b\xe3\x03\x24\x4b\xba\x66\xe4\x5b\x0b\x4e\xd4\xa8\x91\xbd\x84\x05\xb9\x56\x6c\xb3\x62\x95\x14\x15\x7a\x14\x4d\x77\x46\x61\x57\xbf\x64\xb3\x5a\x54\xe4\x3f\xe9\xda\x93\xd5\x9d\xd3\x81\x10\x32\xbe\xe5\xd2\xdf\x26\xe8\x09\xf3\x6a\x59\xe2\x35\x19\x31\x37\x2d\xe8\xe8\x16\x0b\x0b\x83\x2b\x4f\xb9\x31\x7a\x6d\xf0\x52\xad\x66\xe6\xfa\xa8\xdc\x9b\x1d\xce\x67\x25\x1b\x11\x29\x08\xad\xf6\x9a\x6d\xe6\xb4\xf2\x82\x89\x16\xe8\xb2\x6f\x2e\x42\x83\xfa\x80\xce\xe5\x45\x38\x99\x50\x84\x18\x0f\x04\x2c\xf5\x2f\xb8\xf2\x81\x44\xde\x56\xfc\xaf\x5b\x38\x51\xec\x75\x9e\x6e\xe8\x5a\x85\x80\x4a\xa6\x12\x0d\x33\x82\x76\xad\x39\x56\xba\xbb\x44\x8f\x39\xdc\x90\xd9\xeb\x45\x4d\x37\xd0\x13\xb4\x7d\xb9\xa6\x9b\x0d\xaf\x96\x31\x4e\x78\xcb\xa0\xf7\x23\xf0\x91\xa8\x96\x44\xb1\x7a\x4d\x76\x74\x0f\x17\x04\x0e\x30\x2c\xd1\xcc\xea\x90\x63\x72\xa9\x0f\x2d\x0a\x17\x94\xa2\xa6\xf5\x3e\x04\x3b\x17\x95\xa1\xc3\x6e\xc5\x4b\x46\x76\x8c\x2c\xf8\x72\x5b\x33\x82\xd7\x77\x33\xa6\x14\xab\x61\x0c\xbc\x35\x73\x6b\x18\x40\x69\xa5\x4a\xd3\x74\x30\x56\xc5\x27\x4f\x21\x2d\x6c\x86\xed\x0d\x4f\x8c\xc7\xd6\x7e\x36\x35\x4b\xbe\xd1\x1f\x87\x55\xc9\xaa\xa5\x5a\x91\x87\x67\xe4\xeb\x29\x19\x5c\x59\xdf\x86\xa3\x8d\xb7\xd9\xd9\x7a\xa3\xf6\x83\x08\xd2\xa7\xe8\x2f\xad\x3d\x8d\x8d\x46\x73\x66\x4f\x80\xb1\xd7\x40\x9a\x8d\xdd\x28\x67\x6e\xc0\x07\x1e\x76\x40\x30\xb3\x9c\xee\xfa\x8f\xe3\x95\x5a\x65\xbc\x2f\x33\x3a\xff\xb0\xe0\x86\x5f\x00\x7f\xd8\xb3\x62\xfe\x61\xbe\xd2\x36\x83\x61\xf4\xb5\xa8\xb5\xb8\x56\x94\x97\x46\x04\x59\xe8\x85\xbf\x84\xb7\x57\x9c\x1a\x0c\xee\xbb\x19\xab\xd8\x82\xc3\xcd\xee\x8a\xde\xe2\xed\x20\x8b\xba\x70\x6b\x88\xe0\xfe\xdb\x89\x6d\x19\xc3\x9f\x31\x02\xca\xa8\x12\xe4\x43\x25\x76\x68\xa3\x28\x81\xea\xa8\x43\xba\xe0\x35\x9b\xab\x72\x8f\x86\xfd\x8b\x52\xec\x52\x46\xb1\x32\xfe\x04\xbc\xa8\xdb\x8d\xd6\x0b\x6e\xe8\xb2\xe4\x15\x1b\x2a\xfc\xbf\x65\x84\x13\xbb\xb7\x92\xd5\x8f\x08\xff\x6e\x60\x7a\x0f\xde\x93\x33\x62\x20\x3c\x88\xda\xdb\x75\x74\x7a\xfd\xbb\x60\x9d\x75\x2f\xfd\x67\xd4\xc3\xf8\x6b\x83\x66\x0f\x62\x86\xf1\x9a\xf4\xb9\x55\x2a\x8d\xf9\xa3\x89\x6b\xac\x8c\x50\x7d\x13\xf3\xf9\x36\xb0\xee\x6a\x46\x4b\xb2\x13\x75\xe9\xb5\x65\xdd\x74\x4d\x3f\x30\xb2\xdd\xc0\xa5\x30\x7a\x56\x9c\x49\x65\xaf\xf0\x66\xa5\x3e\x79\xe1\x6c\xd1\x1a\xbe\xfe\x69\x46\x25\x9b\xd1\xb2\x0c\xce\x80\x57\x74\xc9\xe7\x64\x4e\xeb\x42\x8e\xc9\x39\xae\x8d\x37\xb8\x78\x45\xd6\xdb\x52\xf1\x4d\xa9\xed\x8a\x05\x08\x75\x05\xe0\xd2\x63\xc0\x1a\x33\xdc\x48\xaa\x7c\xe4\x01\x45\x7b\xd7\x72\x42\xc3\x68\x3d\x77\x42\x9d\xfc\x75\x0b\xea\x38\xb6\x92\x70\x35\x16\x84\x10\x38\x75\xc3\x47\x12\x68\xe5\x60\x4e\xcb\x52\xd3\xf5\x96\xd6\x5c\x6c\x25\x59\x82\x84\x02\x1f\x5d\x78\x14\x53\x14\x93\xac\x6a\x62\x42\x5e\x6b\xa3\x52\xb9\x28\x01\x1b\x1c\x40\x67\xbc\xe4\x6a\x1f\x98\x2c\xe6\x86\x50\x9b\xa9\xb0\xaf\xcd\x82\xd9\x40\x86\xd0\xf0\x1a\x1f\x38\x66\x2c\xf1\xe2\x93\xe6\x87\xc6\x29\x63\xfd\x7c\x29\x18\x2d\x4e\x65\xd3\x7e\x30\x70\xae\xf4\xb9\x6f\xe6\x19\x42\x98\x4c\x08\xfb\x38\x26\x83\x1b\xbe\x66\x12\x95\x01\xdd\xe4\x46\xd4\xa2\x52\x82\xbc\xa5\x1b\x25\x6a\x49\xe6\x2b\xf1\xc1\xf3\xa3\x66\x72\xb1\x58\xc8\x41\x2b\x22\xa1\x83\x28\x3e\xeb\xfa\x78\x10\xc8\x3d\x7a\x11\xc8\xdd\x3c\x09\x79\x2a\x37\xdd\x08\xc4\x1e\x54\xe1\xcc\xfb\x1d\x4d\xba\x87\x3d\x96\xbe\x73\xa7\xd2\xb5\xa1\xe2\xd1\x07\x12\xda\xa7\xf1\x79\x04\x76\x65\xb3\x29\xc0\x3f\x83\x61\x72\x70\x80\xfa\x1e\x50\xe4\x44\x69\x95\x70\x4e\xbe\xb9\x6b\x35\xa5\x2d\x9f\x58\x47\xd7\x4c\xe4\x6f\xfb\x95\x20\xb4\x28\x40\x6f\xad\xd9\x5a\xdc\xb2\x50\xc9\x96\xd6\xeb\x2b\x8d\xeb\x1f\xe2\x80\x8c\x77\x3e\x15\x40\x97\x0d\x51\x63\x77\x22\x8a\x9c\x24\x4a\x46\xab\x90\xa1\x25\xaa\x9a\x71\x41\x2e\x76\xc6\xa8\xa7\x2b\x51\x34\x46\xf5\xe1\x44\x73\xb8\x22\x2a\xac\x3c\x37\xd7\x24\x76\x18\x17\x72\xa3\x9b\x85\xd3\x88\xa4\xba\x57\x9b\xe1\x4f\xbd\xd7\xbc\x3a\x65\x46\x7b\x15\x86\x5d\xf8\x90\x17\xb8\xa4\x82\x11\xad\x86\x57\x6a\x0b\x1c\xcc\xe7\xf0\x72\x33\x9c\xaf\x6e\x8d\xa7\x09\x82\xe0\x6a\xa4\x9b\xef\x98\xd6\xe2\xa5\x3f\xab\x79\x80\x59\x83\x02\x3e\x56\x0c\x02\x19\xf0\xd2\x26\x5c\x3e\x33\x92\xbf\x20\x71\xf4\x30\x17\x3c\x91\x5d\xa5\x01\x55\x02\x34\x58\x56\xe3\x89\x68\x67\x1c\xde\x79\x70\xd5\x58\xff\x45\xb0\x86\x5a\x1d\x92\x7e\xe4\x4a\xa0\x3e\xe4\xae\x66\xa2\xa0\x3a\x3d\xed\xd9\x56\xc5\x06\x0d\x36\x93\xca\x10\x13\xc7\xce\x8c\x89\x73\x38\x2f\xcb\xe1\x09\xb0\xa8\x1e\x59\xff\xb3\x36\xb1\x1e\x05\x28\x6c\xa7\x4a\x9c\xea\xff\x8f\x52\xf2\x6b\x5b\xb6\x14\x36\x98\x6d\x21\x6a\x76\xab\xcd\xef\xaa\xd0\xba\xfc\x0a\xd4\x7d\x51\x33\xe7\xb2\x01\x8d\x4b\x2b\x78\x76\xfe\xa1\x7c\x72\x8c\xab\x01\x1f\x3a\x4a\xe4\x67\x1d\x25\xe7\x75\x4d\xf7\x49\xcc\x9d\x9e\x2a\x25\x1b\x5a\x2b\x3c\x64\xf4\x2e\xb4\xa1\x35\xa6\x9b\x89\x6d\xdc\xa4\x37\x89\x06\x91\x11\xec\xb0\xcb\x0b\x7d\x5c\x4b\x42\x37\x1b\x54\x76\x57\xac\x8e\x05\xb9\xf1\xe2\x15\x82\xa1\xa9\xb3\x84\x23\x56\x4b\x8d\xc2\xb2\x9a\x86\x0e\x38\xe6\xef\x12\x1b\x82\xdd\x2b\x99\xd6\x9f\x2b\xa7\xe4\x1d\xce\xfc\xfd\x83\xf8\x14\xd9\x38\xa7\xf0\xe5\x85\x99\xfb\xa5\x3b\x8d\xf8\xc2\x8d\x56\xf9\xd3\xcd\xac\x5b\xc8\x3d\x31\x49\xf2\x97\xab\xe0\x91\xe3\x12\x4c\x3d\xfc\x7a\x41\x4b\xc9\xc8\x50\xcf\xda\x4c\xe5\xa4\x0b\x9c\x69\x33\x42\x4c\x70\x45\x80\xe0\xf5\x96\x25\x97\xa8\x10\x82\x75\x90\x32\x06\x60\xe0\x85\x7e\x2a\x44\x19\xd9\x2d\x31\x31\x42\x06\xc7\xc3\xa3\xdc\x9b\xab\xd2\x1c\xe2\xb1\xbf\xd5\xce\x7f\x5b\x61\x8f\xb0\x83\xc6\xfe\x8d\xf3\x0e\xd0\xb2\x14\x3b\x17\x6c\x15\x6c\xe9\xdc\x20\x32\xbe\xb0\xcd\x5e\xd4\x46\xfd\xce\xdd\x22\x56\xb0\x2f\x3d\xb9\x90\xdf\x10\x92\x1e\xd0\x62\x3a\x0a\xbb\xa3\xe9\x34\xe7\xd2\x44\x71\xea\x26\x76\xae\x80\x09\x38\x66\xa2\x11\x2f\x17\xcd\x8b\xe5\x2c\x9e\x5e\x64\x1d\x16\x5b\x88\x2c\x80\x89\xd1\xa3\xca\xeb\xf9\x2e\x4c\x36\x27\x15\x34\x0b\x20\x3a\xb8\xf0\xe9\xce\x08\x8d\x19\xbf\x3b\xbc\xae\x16\xb8\x7f\xc5\x22\x3a\xfa\x42\x5c\x1a\xde\x60\x2d\xac\x9c\xc7\x06\xc9\x10\xec\xae\xdc\x12\xa7\x37\xe4\x66\x07\x80\x47\xb0\x19\x04\x6d\x5a\x9b\x53\xd1\x40\x92\x2b\xb1\xc3\x48\xc2\x92\xce\x59\x40\x9a\x11\x61\xcb\x31\xf9\xe6\x77\x7a\x0a\xdf\x7e\x7d\x60\xc3\xe0\x6c\xf1\xe2\xfd\x0d\xab\x35\xf2\xc1\xe6\xc1\xff\xa7\x8e\x8e\x2e\xfd\xf1\x58\xfd\x0e\x05\xf4\x19\x79\xf7\xbe\xf9\x9b\x0d\xac\x38\x23\xbf\x64\x94\x48\xc3\xd4\x67\x28\x73\x32\x9a\x63\x73\x66\x08\x29\x6a\x3a\x99\x10\xbc\x47\xf6\xe1\x2a\x60\xe2\xe0\xf9\x63\xc4\x23\x04\xcd\x63\xa4\x2b\xf0\xa0\x57\xce\x30\xfc\x29\x6b\x9c\xdb\x1b\xb1\x77\x9e\x24\xda\x34\x37\x03\x18\x22\xea\xff\x9e\xe4\xfd\x2b\x7a\xff\x00\xd2\xb4\x28\xa4\x3d\x95\xfc\x61\x94\x73\x5d\x69\xe5\x84\xd6\x74\xcd\xb4\x31\x39\x75\xfe\x3c\x73\x1e\x85\x6e\x0d\x6b\xf2\xce\x98\xde\x11\x3e\xf4\x23\x03\xb0\x66\xa7\xcf\x5c\x50\xea\x34\x3d\xe7\x00\x5a\xc5\x58\xe1\xde\x00\x18\xd3\x45\xc3\xdd\x84\xde\x46\xd3\x01\x8c\x86\xa0\xbd\x16\x16\x4d\xe9\xe9\x40\xcf\x69\xf5\xc8\xec\x38\x5a\xd6\x8c\x16\x7b\xdc\x79\xd1\xd9\x7c\x9d\x27\x47\x28\x19\x16\xdb\xca\x12\x74\x98\xdc\xa4\xf7\xb2\x80\x9a\x2e\x17\xeb\x6d\x79\x78\x46\x2a\x5e\x4e\xc9\xe0\x19\x4a\x3e\xad\x5c\x7b\x3a\x0b\x8d\xdc\xd4\xf8\x92\xcc\xdd\x15\xd0\x67\x3c\x68\x8c\xf1\x30\xe0\xeb\x26\xbc\x70\xfd\x81\x29\x17\x8a\x39\x1d\xc9\x87\x83\x99\xb3\xab\x09\xbd\x6d\x53\xb8\x89\x9c\xd9\x89\x58\xc7\x36\x00\x0d\xa8\x5e\x34\x34\xa2\x71\x6a\xea\xa5\x7b\xeb\x3c\x21\x06\xa8\xbe\x56\x39\x8b\x25\x3d\x89\x44\xc2\x18\xd5\x2b\xb3\x56\x27\x0d\xc0\xaf\x37\xc6\x0d\x00\x90\xb7\x9b\xf0\xa6\xad\x55\x92\xf8\xa9\x1a\xa1\x91\x42\xbd\x74\x51\xf8\xa1\xdc\xc5\x80\x74\x25\xc8\xcf\xac\x16\xbd\x04\x4d\x30\xd0\xd7\xf1\x20\x6c\xcd\xdb\xa2\xcf\xbc\x9c\xf0\xc1\x1e\x76\xfa\x19\x0a\x7b\x09\x21\x51\x44\x38\x0f\x98\x33\xed\x3a\xf6\x46\x56\x54\x48\x2b\x2b\x64\x28\x2c\x02\xfd\x39\x2f\x2e\x52\x4e\xc3\x0f\x85\xd7\x04\xb0\xd8\x47\x6c\x4e\x39\x74\xa8\x58\xf5\x36\xdd\xa0\x7a\xa5\x37\x46\x83\x35\x8d\x33\x1b\x16\xa8\x99\xee\x78\xfd\xff\x93\x16\xef\x44\x4c\x5a\xe4\x18\x60\x2e\xfc\xa7\xb4\x6a\x6b\x68\x2c\x3a\xb3\x19\xdf\x1f\x3c\x52\xfe\x09\x50\x53\x79\xb8\xb3\x98\x0e\xed\xd0\x0c\xc8\x1e\x82\x9a\xcb\xc0\x00\x62\xee\x6c\x0b\xd4\x75\x32\xa4\xb7\x94\x97\xe0\x19\x0f\xb6\xd4\xc9\xc1\xab\x12\xbd\x86\x9e\x68\x9f\x25\x63\xb3\x5b\x35\x15\xaf\xc6\x70\xb7\x24\xca\x89\x56\xa7\x7c\x49\xa6\x1e\x76\x4a\x28\xbe\x30\x42\x37\x19\xf5\x61\x5f\xec\xce\xc0\x54\x79\xd0\x68\xec\xb6\x79\x3e\xa8\xb3\x7d\xab\xc7\x81\x9d\x87\xe4\xcb\xc3\x63\x98\xf9\x1c\x2e\x3c\x0d\x2f\x47\x8f\x02\xbd\xee\x18\x59\x15\xfa\x80\xd9\x51\x78\xc3\x57\xf9\xab\x6f\xc7\x29\x28\x1b\xac\x1b\xc7\xde\xa5\xf4\xd9\x00\x79\xbe\x41\xe7\x44\xfb\x5e\x0f\xf4\xc5\xce\xd5\xf9\xcc\x1d\x6f\x3c\x22\x91\x4b\xc6\xed\xef\x43\x9e\x99\xcf\xdb\x93\x30\x02\x3e\x37\x30\x36\x53\xa2\x09\xa5\x84\x32\x38\xfe\x92\x67\x62\xa3\x11\xb7\x10\xc7\xe9\xcb\xc0\xb1\x69\x13\x60\xd8\x46\x98\xaf\xe7\xd3\x7e\x34\xd4\x8b\x6f\x0e\x4d\xfd\x4f\x69\x94\x6a\xf3\x15\x7a\x4f\xd5\xb6\x36\xee\xd5\x8a\xed\xca\xbd\xb5\xa1\x82\x50\xca\x0c\x1d\x8f\x10\x97\xc1\xc1\xed\xbd\x81\x77\x90\x99\xeb\xad\x6c\x9a\x9f\x30\x97\x59\x64\xd7\xf7\x94\xfc\x6f\x91\x00\x88\xff\xd5\x8b\x1b\x44\x7a\x47\xad\x25\xd8\x67\xbf\x78\x32\xa7\x72\x76\x4a\xbe\xd7\x30\xef\x4d\xda\xc2\xa4\xe0\xc6\x1f\x86\x9b\xe2\x9d\xef\xa6\xbf\x36\x9b\x0a\xd6\x56\xd0\x81\x67\x6c\x03\x72\xdd\x8f\xe4\x74\x5b\xeb\x1d\x3b\xa4\x75\xfe\x81\xa9\x16\x5b\xbe\xc3\x80\x87\xa1\xa3\xf8\x08\xe2\xee\xd0\xb6\x92\xa1\xa7\x99\x4b\x03\xe9\x91\x34\x51\xe7\x66\x8c\xa8\x13\x5c\x2f\x6d\xd7\x97\x95\x31\x3a\x0f\x8a\xf1\xc6\x0c\x5e\x59\xe2\xf8\xd7\xc4\xcd\x11\xd8\xee\x95\x59\x15\x58\xf4\xc7\xa7\x36\x50\xf0\xea\xc5\xcd\x30\x8e\x89\xf7\xd8\xfc\xbb\x61\x95\xe1\x37\x27\xa3\xc6\x9a\x75\x7f\x92\x93\xea\xc8\xde\xcd\xa3\xef\x58\x00\x51\x94\xf4\xd7\x4d\x9b\xe0\xd2\x06\x31\x9a\x1b\x14\xad\xb5\x07\x4b\x7f\x70\xad\x7b\x68\xf3\x59\x3a\xc6\x88\x98\xab\xf6\xc7\xa7\x6e\x7d\x5a\x84\xe5\x8c\xaa\xf9\xea\x55\x43\x62\x6a\x9d\x79\xc6\x55\x4d\xeb\x3d\xf9\xeb\x96\x56\x8a\xab\x7d\x8b\x37\x2a\x11\xa8\x6b\x8c\xbf\x49\x1e\x01\x90\x5e\xd2\x54\x1d\x94\xa6\xe1\xc3\x65\x97\xb4\x80\x34\x0d\x00\x8b\x33\x4a\xb8\xcc\x0c\x8c\xe1\xdf\x2e\xee\x42\x29\x19\xbc\x56\x0e\x1e\x26\xfb\x6b\x3a\xab\xc8\x44\xfb\x7b\xc7\xea\x2e\xf8\xa9\x38\x4d\x16\x62\x98\xbe\x36\xf1\x33\x32\xef\x18\xa6\xe4\xfb\x00\xaf\x5f\x72\x3b\x33\xf8\xdd\xef\x4b\xff\xe5\x30\x61\x9a\x5b\x5a\x13\x6e\xe1\x83\xd5\x18\xfe\x8a\x61\x4d\x9c\x3c\xf6\xe4\xcc\xdc\xd1\x86\x83\x8e\xcd\xd3\x90\xa1\x12\x1f\x58\x35\x25\x8f\x4f\x31\xc6\xa4\x39\x49\x63\x61\x9e\x34\xe0\x71\x72\x46\xb8\x61\xf3\x6f\x7f\xaf\xd9\x3c\xfc\xf5\x53\x3b\xd3\x67\xf8\xaf\x4d\x4b\xf8\x89\xab\x55\xf0\xd0\x22\xa3\x33\xc0\x2d\x92\xdf\xf9\xff\x4b\x74\x88\x88\x50\xb1\x5c\x8a\x41\x06\x98\xeb\x99\xf0\x8a\x3c\x37\x7f\xfe\xf3\xe9\x2a\xf1\x62\x37\x76\x59\xf6\xb9\xd6\xbf\xf4\x99\xbb\xe9\x33\x9e\xa8\xf7\xa3\xd5\x78\x78\x6f\xd9\x22\xf0\xf0\x9b\x40\xec\xb1\x71\x88\x8f\x31\x3d\xc8\xe3\xaf\x92\x07\xc1\xdf\x0d\xf1\x89\x9b\xed\xd6\xf5\xe6\x38\x96\x37\x4f\x9e\x60\xb2\x85\xe1\xe0\x4a\x44\xf2\x20\x8e\x85\xd0\x66\x22\x02\x19\x24\x12\xd6\xe9\x64\x81\xbc\x39\x8b\xe7\x33\x5e\x32\x75\x15\x1f\xff\x01\xbf\xde\x59\x7f\x39\xf0\xb9\x9b\x76\x75\xe0\x13\x6f\xae\xf0\xaf\xa6\x1a\xf5\x45\x74\xcf\x80\xea\xff\x28\x1a\x68\x37\x15\x8f\x54\x46\x5b\x36\x6a\xcc\x9f\xb4\x28\x6e\xc4\xaf\xc3\xa1\xf7\xc6\x8d\xbd\x69\x16\x4f\x55\x32\x73\x6a\xc8\x60\x82\xd5\x02\x26\xe8\x98\x6f\xcc\x8b\xf4\xdc\x08\xff\x1a\x65\x56\xbc\xe1\x59\x3f\xd6\x02\x38\x68\xcb\xdd\xbf\x65\x90\xd7\x92\x0e\xd8\x09\xa9\xe6\xf4\x8f\x6b\x37\x74\xb0\xdb\x67\x2a\x63\xf2\xb0\x36\xf6\x45\x0d\x94\x43\x16\xca\x01\x4d\x2a\xb5\x57\xda\x75\xab\xff\xeb\x56\x4c\x0b\x21\x7e\xed\x23\xf4\x57\x33\x9e\xb2\x89\x5b\x96\x4c\xe1\xcd\xd9\x89\xbf\x33\x4b\x28\x9b\x86\xff\xcb\x63\x80\x9b\x2b\x0c\x0d\x3e\x8e\xaa\xea\x18\x24\xbd\xaa\xea\x31\xcc\xd5\x76\x1d\x09\xd4\x68\x3c\x13\x88\xd2\x31\x62\x46\x24\x07\xa3\x93\x38\x00\x38\x88\xfb\x8f\x36\x6a\x23\x95\x5e\xf0\xc8\x89\xba\xa8\x8b\xc9\x84\x3c\xc3\x1b\x00\x46\x25\x2f\xf7\xf0\x06\x80\x63\x6c\x2b\x3e\x1d\x54\x9c\x2a\xfb\x28\xe5\xcf\xff\xb5\x65\xf5\xde\x84\x7d\xfc\xd9\x08\x09\x0b\x07\x84\xb4\x79\xba\x02\x97\x2a\x92\x29\xff\xdc\xcb\x46\x39\x5e\xe0\x7b\x1c\xab\x35\x87\x00\xed\xa1\xff\x8d\x4b\xc6\xf1\x20\x25\xb2\x09\xde\x0f\x7b\x05\x74\xec\x0e\xaa\x6c\x6b\x15\x05\xcf\xb7\x83\x8a\x82\xd0\x93\x66\xf1\xf3\xf4\x30\x9c\xb1\xb5\x61\x5b\x74\x5f\x96\xb5\xd2\x50\xb0\x56\xa8\x9f\x13\x02\x15\xa7\x41\x39\x2a\x82\x44\x32\x25\xdf\x99\x70\xa0\x87\x61\xc8\x85\x64\xca\xf3\x83\xcb\x1a\x17\x06\x92\x82\x69\xda\x69\x2c\x9a\x15\x24\x67\x64\xf8\x55\x6e\x40\x2a\xc9\x57\xd7\x4c\x3d\x39\x79\x98\xeb\x96\xf0\x59\x10\xc1\xa4\x9a\x5e\xea\x28\xd2\x4b\x76\x46\xef\x1b\x40\xe3\x03\x51\xfc\xb6\x99\x8c\xc3\xf7\x49\x1a\x2b\x26\x99\x1a\x7b\xa1\xd7\x6c\xe7\xe3\xc6\x4c\x4b\x27\xc1\x9a\x6d\xdd\xad\x98\x6e\x9a\xdc\xbe\x91\xee\x50\x32\x03\xbc\x29\xb7\xfe\x09\x25\x77\x4a\x9e\x2f\x25\xbc\x33\x72\x2d\x48\x93\xd9\x7c\x01\xeb\x95\x3f\xf7\x88\x20\x0a\xec\x59\x33\x8c\xfe\xef\x29\x0e\xdb\xc1\xf7\xf5\x1d\x1e\xf1\xe6\xd6\x84\x61\xf9\xd8\x4e\x16\x6b\xab\xce\x6b\x93\xf7\xc8\x91\xd7\x6a\xc5\xea\x1d\x97\x0c\xdf\x37\x9a\x97\x12\x79\xff\x4e\x4e\x74\xa7\x19\x95\xba\x44\x60\x2e\x45\x53\x13\x42\x67\xb0\x68\x8b\x08\x71\x8f\x57\x37\x2d\x0f\x56\xc3\x81\x00\x8c\xff\x33\x65\xe2\x30\x5d\x88\xcb\x77\xca\xd7\x9b\x12\x0c\x75\x6a\x9f\x9a\x52\x32\xdf\x4a\x25\xd6\xfe\xc5\x2d\x72\xbb\xa8\x5d\x9a\xd2\x71\x04\x08\x7e\x8e\x5e\x0e\x6d\xc2\x07\xbb\x87\x9e\xd5\x19\x79\x6b\x72\x60\x05\x99\x29\x43\x86\x4e\x57\x68\xb1\x2d\xcb\xab\xe0\x14\x7e\xd2\xde\x92\xd7\x52\xf5\x6b\x5a\xd2\xbe\x2d\x67\xbc\x56\xab\x82\xaa\xbe\x4d\x81\x91\x0f\xb7\xfd\x0b\xab\x25\xdb\x5b\xae\x39\xd4\xba\xa8\xe9\x42\xdd\x30\xba\xee\xd9\xf4\xbf\x19\xed\x0b\xf5\x9a\x19\x35\xbc\x67\xfb\xb7\x62\x5b\x15\x87\xdb\x2a\x46\xd7\xe7\x66\xa5\xaf\x9e\x9e\xeb\x0d\x73\x4c\x97\xc3\xad\x37\x35\x5f\xd3\x7a\xff\x46\x9b\x4d\xbd\xb0\x5f\x31\xbe\x5c\xf5\x00\xbc\xeb\xd9\x0e\x12\x9a\x68\x42\xcb\xe7\x1f\x37\xfa\x20\xaf\xfa\xac\x7b\x35\xa3\xd7\x8c\xca\x5e\xe4\xa6\x8a\xbd\x5e\xf4\xa6\x47\x49\xf7\xcf\xa8\x62\x4b\x51\xef\xfb\xb5\xbe\xd9\x6f\x7a\x20\xbc\x12\x6b\xa6\x39\xaf\xdf\x6e\xa1\x3b\xba\xef\xdf\xda\xc2\xbe\x9e\x8b\xfa\x08\xe0\x3d\x9b\xa3\x76\x15\x0b\xe6\xae\xd6\x3d\x05\x42\xf6\xc4\xe8\xa2\x73\x0f\x2b\xa3\xa7\x2d\xe2\x02\xe6\x2e\x2b\xe3\xd0\xf1\xf3\x8a\xcf\xac\xe8\xf4\x68\x48\xd0\xd8\x61\xd0\x14\x9b\xf1\xef\x0d\x59\x19\xff\xdc\x14\x90\x99\xdf\x63\xa9\x18\x37\xc8\x8a\xc2\xb8\x49\x53\xfe\x65\x7e\x8f\x84\x5e\xe6\xf7\xa6\xa4\xcb\x34\x8a\xc5\x5b\xdc\xa0\x5d\xa6\xb5\xb7\x6b\x69\xd2\x26\xbd\xe2\x56\x89\xc8\x8a\x7f\xdc\x75\xfd\xd8\x29\x9c\xe2\xa6\x4d\x89\x94\x90\x25\x27\x86\x92\xd9\xe4\x64\x4f\xb3\x49\x24\x70\x92\x99\xe6\xa4\x4c\xdc\x24\x2b\x5a\xf2\x50\x62\x01\x91\x07\xd3\xd5\x26\x2b\x39\xd2\x26\x5d\x7b\x22\x9b\xa7\xb3\x41\x8f\x40\x8b\x4c\x61\xb7\xfd\xd4\x29\x02\x6c\xa3\xac\xf6\x69\x85\x00\x39\x73\xf2\x20\xd3\xc8\x8a\x02\xdd\xca\xfe\x3b\x63\x4b\x52\xd7\xca\xfe\xb3\xd9\xc8\xc9\x05\x72\xe6\x65\x44\x4b\x33\xd4\xfe\xcf\x02\x59\xd1\x6c\x18\x8a\x09\x72\x16\x49\x8d\x66\x63\x27\x30\xc8\x99\x17\x1e\x2d\xcd\xf4\x36\xb1\xcd\xf4\xbf\x5b\x9a\x39\xf1\x61\xdb\xba\x2f\x5a\x3a\x80\x28\xb1\x8d\xe1\x8f\x66\xc3\x86\x48\x21\x67\x4d\x31\xd3\xdd\x2d\xe9\x91\x31\x2c\x62\x59\xa3\x2d\x8c\xf8\x9b\x66\x17\x14\x3c\xe4\xcc\x48\xa0\x66\x83\x9d\x6d\xb0\x6b\x69\x90\x13\x40\x1a\xd3\xcc\xd7\x19\x37\x84\x15\x49\xe4\xcc\x8b\xa7\x0c\x95\x03\xc9\x74\x16\xc9\xa9\xbc\x75\x65\x45\x94\xb1\xb1\xec\x9f\xf9\xc6\x90\x23\xee\xcc\xc9\xad\x0c\x8d\x02\x91\xa5\x29\x15\xfc\xd9\x6c\x1c\x0a\x2f\x72\x16\xc9\xb2\x76\xc8\x20\xa2\x02\xd0\xf0\x77\x3b\x6c\xdb\x3c\xfa\xbb\xcd\x0b\x15\x99\x91\xf6\xcf\xac\xcd\x7a\xe5\x5c\x5b\x79\x6c\xfb\x98\xa5\xe4\x08\x23\xb7\xdb\xcf\xd6\x94\x7f\x18\xac\x98\x7e\x9b\xf7\xaa\x18\x67\x83\x4f\x87\x81\x49\x1e\x36\x35\x93\xe6\xce\x2a\x2e\x04\x44\xf2\xe6\xac\xeb\x7f\xf5\xe2\xa6\x59\xb5\x60\x8c\x81\x3c\xa1\x87\xe2\x0f\x98\x2f\xd1\xa4\x29\x73\x69\x13\x5b\x35\x3d\x9f\x4a\x38\x49\x4e\x06\x66\xb4\xbb\x29\x6c\x26\xae\xca\xd8\x10\x74\x1a\x78\x8e\x1a\xae\x8d\x5c\x3e\xe9\x43\x49\xa8\x73\x77\x6c\xc9\x91\xd3\x88\x0b\x30\x19\x23\x5f\xb9\x8c\x91\x51\x73\xeb\x88\x0d\x92\x44\x06\xee\xd9\xf0\xdb\xf0\xa6\xa9\xc9\x1e\xbc\xc8\x77\x6b\x04\x2d\xa0\x93\x2c\xc8\xef\x86\x1e\x8a\xac\x8c\xa1\xe4\x2c\xa0\xa0\x0f\x3e\xc8\x3e\x6a\x89\x29\x1a\xfe\x75\x92\x79\x1f\xd7\x92\x0d\xdc\xcc\xe5\xd0\xbd\xde\x71\xb7\x80\x61\x88\x40\x81\xde\xe7\x1e\x91\x13\xe9\x7c\x7c\x67\xff\xfd\x41\x18\x1d\x91\x11\xb6\x4d\x92\xb9\x60\x11\x6e\xc5\x30\x17\xf7\x08\x09\x47\x2b\x93\x7b\x5a\x09\xf7\xaa\x3d\x04\xa0\x04\x11\x5b\x25\x79\xc1\x88\x98\x49\x56\xdf\xb2\x5a\xba\x07\x6c\x2e\x2c\x2d\xce\xf0\x4d\xb2\xc9\xad\xdf\x9a\xbd\xee\xf3\x7c\x47\xb3\xf5\x3b\xd5\x86\x4c\xa4\xeb\x96\xdb\x63\xe4\x8c\xf4\xa2\x65\xbc\x13\xe3\x5e\xb9\x55\x8f\x76\xaa\x45\xc8\x2f\xb6\xd7\x10\x0f\xf8\xba\x2b\xba\x66\xc3\x13\x5f\x66\x24\xb6\x07\x33\x4e\xb9\x60\xdb\x19\x5f\xff\x2b\xa6\xa8\xde\x2f\x4f\xf7\x2f\x38\x2b\x0b\x77\x65\xdd\x98\x00\xa6\x03\x9a\x92\xc1\x0b\x03\x73\x70\x42\x9e\x3c\x21\x83\x41\x63\xd0\xd4\x86\xb8\x8f\x41\xdf\x18\x98\xd9\x41\x8d\xe7\x3e\xab\x2f\xeb\xcf\x78\x2e\xaa\x39\x55\xc3\x01\x19\x34\x6f\xc6\xed\x8f\x16\xeb\xae\xdb\x12\xbc\xa3\x83\x00\x88\x2d\x2f\x8b\x0b\x26\xe7\x38\xc5\xce\x45\x48\x6c\x90\x98\x1c\xd7\xf8\xe3\x30\xbf\xed\xdb\x48\x1c\x33\xab\x83\x9b\xe7\xd5\xb1\x12\x16\xcb\x2c\x20\x6f\x42\xb5\x20\x88\xe9\xab\xda\x50\x7c\x12\xc0\x6f\x5f\x9c\xc1\xb9\x2d\x14\xd2\x8c\x64\xb5\x4b\x10\x22\xd3\xbe\x50\x9d\xab\x68\x68\xdd\xd5\x7b\x1d\x06\x72\x87\x97\x0f\xdd\x70\xc3\x13\x22\xc3\x21\x13\xa3\xb3\x64\xb2\x44\x9a\xd8\x30\x2d\x2d\x4d\x26\x45\xb2\xa9\xc5\x86\xd5\xca\xa5\x76\xb4\x19\x7e\x20\x5d\xd9\x88\xcc\x21\x05\x32\x64\x77\xb0\xa5\xe6\x58\xca\x72\x2e\x19\x58\x84\x82\x91\xc8\x8d\x71\x4c\x92\x53\x03\x1f\xca\x92\xc1\x1b\x6a\x99\xe6\xa9\xcc\x0a\x1c\xcd\xf1\x41\x9b\x4e\x6e\x87\x84\x04\x4c\xce\xef\x73\xf7\xdb\x04\x94\x96\xbf\x72\x0c\x66\xc7\x0d\xd2\xc2\x91\x27\xee\x5b\x62\xc0\x37\xf6\x6d\xcb\xc9\x06\xa5\xd6\xb6\x9b\x8d\xa8\x15\x2b\xe2\x7b\x97\x46\x2d\x4a\x5e\xcd\xcb\x6d\x61\x97\xe9\x99\xd6\xee\xb5\x6a\x09\xa5\xbc\xba\xe5\xf7\x92\x29\x68\x05\xf7\xad\x5a\xf8\xb4\xdc\xb6\xbe\x6b\xf0\xa5\x6e\xfc\x38\x2a\x1a\x36\xbe\xe0\x52\xcf\xf6\xbb\x61\x26\x8a\x15\x9a\xb7\x5e\xeb\xb4\x77\x89\x47\x78\x6b\x6b\x52\xf5\xed\x60\x94\xfc\xfe\xed\x3f\x2a\x56\x57\xb4\xfc\xe1\xed\xcb\xbe\x5d\xae\x5e\xdc\xf8\x10\x25\xcd\x55\x9f\xd7\xf1\x10\xed\xe2\xbe\xd7\x20\x0d\xfa\xb6\xbe\xa9\x29\x57\xbd\x69\xf0\x8a\x15\x9c\xea\xd6\x51\xe3\xf7\x21\x9f\xe6\xb5\x02\x7c\xb8\x0c\xe5\xdd\x34\xa4\xe1\xff\x00\x9f\x4d\x61\x8c\x93\x29\x39\xaf\xf6\x68\x97\x3c\x49\xdd\x4e\x3b\xae\xe6\x2b\x64\xca\x66\x94\xc8\x9c\x9a\xd4\xe2\xad\xdc\x36\xcd\xaa\x95\x86\x73\xb3\x9d\x86\xad\x8a\x28\x86\xf1\xb8\x50\x8d\x1c\xc9\xec\xa7\x08\x6b\xe2\xa2\xe8\x08\x25\x54\x7b\x47\xb5\xda\xae\x67\x15\xe5\xe5\x34\xc1\xee\x8f\x37\x37\x6f\x5e\xf0\x92\x0d\xb7\x75\x69\x40\xba\xb6\x69\xf8\xbf\xfd\x34\xbf\x9d\x4c\xc8\xb3\xdc\x6d\xad\x31\x2a\x95\x70\x79\xef\xd3\xb7\x2e\x4d\x92\x77\xed\xd8\x4e\xb2\xb7\x76\x6c\x27\xbd\x57\x15\xef\x51\x43\x6c\x5f\x85\xe0\x36\xe3\xee\xe3\x59\x58\x5d\x03\xfa\xeb\x91\x3b\x8f\xf7\x92\x1e\x1e\x2e\xb8\x6e\xb9\xf3\x78\x4f\x2d\xac\x83\x03\x9a\xfb\x9b\xfb\x19\x11\x80\x75\x0d\x19\xdf\x08\xdd\x79\xd0\xff\x0c\xc0\x75\x0d\x1b\xdc\x32\xdd\x79\xcc\x0b\x0b\xeb\xe0\x80\x78\x6d\x75\x3f\x03\x6a\x58\x07\x07\x0c\xee\xc1\xee\x67\x54\x07\xf0\xe0\xd0\xe6\x76\xed\x7e\x86\x05\x60\x5d\x43\x66\xee\xeb\xee\xae\x31\xa6\x30\xfb\x22\x70\xcf\x63\x77\x0d\xdb\xb8\x5c\xbc\xbb\x95\x1c\x43\xec\x1a\xdc\xde\x59\xde\x79\xcc\x3f\x02\xa0\xae\xa1\x76\xf7\x35\xd4\x4f\x07\x87\xca\xdf\xa7\xde\x7d\x45\x33\x60\xbb\xd0\x08\xee\x6a\xef\x3c\xf6\x95\x85\xd5\xb9\x6b\xa3\xcb\xdf\xbb\xef\xdb\x00\x5c\x27\x07\x47\x17\xca\xf7\xe2\xe4\xb1\xe0\x0e\x0d\x8b\x0e\xa6\x7b\xf4\x2b\x75\x6c\x95\xe8\xd2\xfb\xee\x1b\x26\x00\xd7\x35\x6c\x7c\x91\x7e\xe7\x61\xcf\x03\x70\x7d\x66\x6b\x2e\xde\xef\x6d\xba\x00\xaf\xcf\x7c\xef\x6b\xe0\xf3\x10\x5e\xd7\xc0\xb1\x0f\xec\x18\xd7\x57\x17\xcc\xa6\xb2\x79\xc0\xd5\xd7\x8d\xe0\xe7\x3b\xf7\x5b\x29\xd5\x85\xfc\x51\x57\x10\xd9\x68\x87\x60\xe2\x57\xcd\xdf\x5b\x88\x30\x6a\xc5\xb6\xaf\xf9\xd5\x66\xaf\x06\xae\x88\xbc\xe5\x64\x5f\x91\x58\x37\xea\x92\x29\xd3\x07\x16\x2d\x3f\x3e\xd4\xe3\xa1\x1f\x63\x1f\xd7\xbd\x4c\x97\x3c\x79\x92\x3c\x57\x0b\xc7\xb4\x37\x33\xd5\x42\x90\x33\x92\x9d\x69\x90\xd0\x75\x64\x1c\x9c\xf6\x0a\x64\x98\x67\xa1\x93\x91\x9e\xcb\x14\x26\x84\xde\x33\xd3\x7c\x4d\x3f\x9e\x90\x29\xa9\x78\xd9\x4e\x05\x83\xd1\x4b\x2e\xd5\x94\xbc\xcb\x62\xf4\x9e\x9c\x91\x77\x01\xe6\xef\xfb\x3b\x0e\xec\xea\xb5\x9b\xaf\xc1\xf8\x77\xe4\x14\xe7\xdc\x39\xc2\xb1\x81\x7d\xda\xb1\xeb\xa6\xfb\x1d\x11\x0e\xdd\x72\x7d\xbc\x02\x63\xe3\x25\x7a\x66\xb2\x06\x83\x5f\xc0\xde\x95\xe3\xb9\x5a\xf1\x72\x04\x6e\x0b\x73\xcc\x76\x0f\x7a\xc4\x2e\x8c\x1c\x7c\x47\x10\x38\xe8\x38\xb4\xdb\x13\x37\x99\xfe\xe6\x08\x0c\x72\xfe\xc2\x5f\x8d\x68\xb9\xc1\x3f\x17\xf5\x03\xfe\xb7\x2f\x8f\xbe\x43\xa0\xff\x0c\x9c\x27\x34\x8f\xf3\x64\x42\xe4\x46\xd4\x4a\x92\x9a\x16\xb4\x06\xbb\x8c\xf0\xa2\x5d\xe6\x7c\x9c\x97\xdb\x82\x15\x5a\x40\xcb\x29\x79\x87\x3e\x7d\x10\x33\x19\x03\x30\x2f\x6e\x26\x13\x52\x09\xbc\x3d\xf0\x29\xd3\x15\xe0\xd9\x3a\x2e\xfc\x7c\xe1\xca\xc5\x06\xf5\xd5\x9c\x93\xf5\x13\x39\xcb\x38\x53\xed\x67\x70\x1d\xa8\x1c\x83\xfb\xd2\x39\x06\x46\xc1\x68\x00\xfc\x3c\xad\x63\x70\x1d\xc8\xa8\xc1\xf1\x7a\xc7\x00\x53\x37\x7a\x6c\xf4\xdf\xbc\x5a\x8e\xb9\x34\x49\x1d\xab\x85\x7a\xcb\x16\x53\xf2\x95\x06\x0d\x4f\x01\x7f\xc9\x05\xe9\x7c\xca\x0b\xc8\x4f\x6d\xeb\x49\x8b\x22\x59\xcf\x28\xf6\x26\xfc\xd8\x3b\x72\xbf\x98\xf6\xf8\x5f\xd3\xcd\x1b\x93\x5a\x7b\x58\xf0\xb9\x9a\xa6\xab\x9e\x47\x2a\x2b\xbc\x74\xff\x1b\x81\xcc\x6f\x80\xc5\x83\x8e\x52\x56\x8e\xfe\xec\xbf\xbf\xdc\xdd\xc1\x11\x92\x15\xfb\xb4\x1f\x5d\xcd\xbb\xa7\xf0\x93\x81\xd5\x0e\xca\x7e\x16\xbc\x64\xad\xce\xf7\x83\xbd\xf5\xc7\x7b\xe8\xd7\xac\xe0\xdb\x35\x5f\xd3\x65\x9b\x8e\x16\x7e\x7a\x24\x78\xd1\x00\x29\x8a\xc0\x01\x80\x9d\xfc\x65\xc3\x96\xcd\x4b\xeb\x23\xc0\xfe\xdd\x89\x74\xcb\x0b\x26\xee\x9f\x3c\x00\x76\xb2\xde\xfc\xfe\x00\x75\x5a\x7f\xcd\x8b\xe4\x3e\xb9\x09\x2a\x5e\xb6\xdc\xdc\xbe\x70\x35\xb2\xa0\x0a\xf2\x42\xd4\x70\x9d\xbe\x85\xf7\xef\x11\x39\xe3\x1c\x70\x7e\xbf\x93\x15\x2b\x37\x12\xef\xdb\x89\xd8\xd6\xb8\xf3\x75\x0b\xcc\xa1\x15\xbd\xa5\x0b\x61\x44\xe9\xc9\x7c\x27\xac\x2c\x59\x96\xfa\xa0\x39\x85\x1b\x78\x53\xbd\x3e\x00\x87\xef\xfa\xa3\x3c\xe6\x8d\xc4\x65\x0d\x89\x94\x39\x76\xb4\x9e\x9e\x3b\x8d\xf2\xf7\xf4\xaf\x7c\x6d\xcd\x16\x73\xbb\xd5\xce\x06\x03\x25\x29\x83\xa1\x69\x0d\x26\x94\x49\x84\x6e\xc1\x8f\x3f\xb0\x6c\x8e\x64\x8d\x06\x56\x18\x39\x8b\xda\xbf\xd3\x40\xde\x67\x62\x49\x08\x66\x17\xc6\x3e\x0f\xcf\xc8\x60\xd0\x72\xc8\x6a\xfa\x8c\x79\x25\x59\xad\x86\x1f\xd8\xde\x9a\x41\xd0\xb1\xc9\x8e\x9f\x1e\xb4\xff\x65\xf8\x4d\x03\x6c\x61\xb8\x50\x13\x6d\xe5\x06\x64\x41\x56\x10\x66\x14\x59\xbd\x3b\x6d\xf4\x47\x92\xd3\xaa\x2d\x54\x20\xd0\x77\x5b\xe2\x2f\x6c\xac\xcd\x4a\xa9\x8d\x9c\x4e\x26\xd5\x8c\x2a\xb1\x91\x50\x89\x4e\xac\x27\x38\xce\x64\xe0\x83\x5a\x20\x0e\x2e\x88\xdf\x09\xc3\x21\xe2\x29\x06\xb6\xb0\xcf\xcd\x66\x1f\x00\xe3\xa2\x63\xcd\xc1\xf5\x8c\x57\xb4\x19\xfe\x02\x99\xdc\x30\x48\x99\x56\x45\x1a\x57\x3c\x99\x90\x3f\x3b\x97\xc9\xbf\xe1\x8f\x7f\x3e\x48\x90\xc8\x3e\x27\xbf\x6e\x04\x16\x0b\xe8\xe1\xa2\xae\x5d\x90\xd1\x94\xfc\xdb\xe0\x24\x22\x73\xb0\x75\xb2\xf4\x0e\x96\x2f\x00\x9d\x63\xb9\x2c\x35\xa8\x94\x4c\x61\x9e\xba\x9e\xbc\x01\x3d\xe4\x38\x65\x11\x2d\xde\xfb\x72\x48\xb8\x7c\x36\x7d\x13\x05\xc6\x56\x82\x14\x68\x1f\x10\x5a\x11\x3c\xa3\x89\xe4\x3f\xb3\x82\xc0\x99\xda\x2e\xe4\xc2\xe3\xbc\x63\x45\xf5\x20\x46\x53\x0b\xa6\xee\xe8\xff\x64\xc7\x0b\xb5\x3a\xfb\x8f\x6f\x7e\x3b\xc8\x92\x18\x3b\x42\x45\x8f\xd7\x10\x30\x40\x4b\x48\x26\x25\xf1\xee\x7f\x5b\x97\x23\xbc\xa1\xbe\x60\x25\x5f\x4f\xc9\xe0\xab\x41\x6b\xcd\x8b\xc6\x84\x7d\x84\x41\xa3\x90\xf6\x81\xdd\xae\x29\x10\x84\x1c\xdc\x79\xfe\xbf\xfd\x8f\x6f\xff\x1e\xf3\x07\xbd\xe0\x73\xe6\x6e\xf4\x94\xcf\x9f\xf7\x04\x20\xdc\xd3\x9c\x9f\xb4\xcf\x19\xa0\x48\x2c\xfc\x6f\x60\x91\x8a\xa9\x9d\xa8\x3f\x90\x8d\x06\x0a\x25\x85\x30\xb7\xa9\xb1\xbc\x4d\x1c\x7b\xc1\xf3\xaf\x00\x60\x13\xb7\x22\x87\xf4\x88\xf1\x73\x25\x9c\xb3\xc4\xe2\x0b\x32\xb4\x42\xee\x0a\x31\x1b\x9e\x90\xb3\x33\x32\x50\x4c\xaa\x8a\xa9\x41\xfa\x16\x20\x20\xd5\xb6\x2e\x2d\x49\xfd\x88\x9e\xca\x0e\xc2\xe1\x73\x73\x5b\xb7\xe9\x69\xb6\xca\x55\x85\x41\x89\x61\xde\x32\x93\xd8\x00\x82\x64\xa0\x3e\xbe\xcf\x0f\x47\xb8\xb2\x85\x64\xa0\x4c\x64\x3e\x63\x84\x26\x26\x26\x07\x7b\xae\x61\x87\x09\xc2\xa6\xe4\xfb\xa6\x91\xe9\x1b\xb4\x24\x05\x79\x7c\xea\x4b\xba\x66\xe1\x56\x0b\x15\xb8\x4d\xbe\x77\x94\x7f\x71\xf3\x5d\xf3\x54\x0d\x6a\x5b\x43\xb6\x50\xac\xfd\xac\x8d\x55\x5a\x12\xba\x55\x2b\x51\xf3\x9f\xf1\x0c\x8d\x9e\xc0\xd8\x5e\x90\x38\x17\x23\x37\xc5\xae\x62\xb5\xa6\xc8\x86\xd5\x0b\x51\xaf\x83\x54\x51\x51\xb1\x58\x53\x74\x59\xad\x5c\xa1\x58\x5b\xea\x99\xea\x81\x55\x5c\x60\x67\x04\x65\x7f\x47\x40\xf7\xb8\xde\xea\x83\x94\xd4\x0e\x41\x9c\x4a\xfc\x9e\x06\x69\x85\x75\xb3\xe0\x9f\x36\x99\x32\x7c\x95\xbc\xe5\x30\x79\x00\x25\x56\xf6\xe7\x2e\x63\x30\x96\xb8\x28\xbc\x85\xce\x6d\xbd\x65\xe4\x10\xb9\xa6\xb5\x72\x25\xd0\x02\x70\x21\xe4\x30\x55\xa0\xaf\x8b\x7f\x1e\x82\x5d\x9b\x72\x7c\x2e\x6c\x4b\x71\x55\x32\x5b\xb7\x88\xd7\x24\x55\xf7\xf3\x1f\xf6\x91\xae\x37\xda\x74\xfb\x05\x2e\x17\x59\x4d\x8c\x4f\x66\xf0\x27\x76\xcb\x2b\x72\xb1\xad\x69\xa5\x06\x23\x77\x73\x3e\x25\x83\xff\x97\x2c\x18\x53\x83\x4f\x87\xa1\xdb\xcf\x70\xc6\xe6\x74\x2b\x19\xd9\x41\x1e\x65\xcc\xa8\x12\x0e\x60\x23\x7e\xbf\x7d\xf4\xff\x05\xfb\xb4\x25\x67\x60\x9c\x34\xd1\x2d\x50\x90\x1a\x8c\x74\x27\x55\xf6\x0b\x3d\xf4\xd4\x75\x76\x08\xfe\xff\x53\x5b\xb5\x79\x2f\x0c\xc2\xd1\xa3\x26\x90\x16\x8b\xed\x4c\xa2\xa3\x64\x1c\xfb\xaf\x66\x74\x7b\xc5\x76\xf0\x4a\xcd\x74\xb5\x95\xe6\xd3\xd1\xe3\x27\x50\x97\x17\x61\x15\x25\x0e\x39\x98\xc1\x94\xa4\x4b\xca\xe3\xe7\x8d\x61\x3d\xc1\x37\xf6\xc9\x5c\xe6\xcb\xd6\x0c\x9c\xae\x2c\x0f\x12\xa0\x18\xf2\x62\x9a\x60\x3b\x22\xb9\x99\xa6\x53\xb8\x0e\xaa\x01\xc6\xe5\x9a\x3b\x2a\x02\x6e\x5c\xed\x38\x20\xd4\x7b\x4f\xa9\xbc\xcd\xad\x1b\xe5\xa5\xf9\x84\xdc\x30\x2d\x78\x68\xcd\xcb\x3d\x61\x15\x9d\x95\xac\x40\x32\x66\x43\xe2\x37\xb6\x64\xf1\x8c\x41\x9d\xdf\x05\x2f\xcb\x28\x59\x50\x9f\xf4\xe8\x1b\x53\xc3\x6d\xbb\x29\xe2\x67\x45\xf1\xe6\x51\x18\x3c\xae\x77\xbb\xc4\x93\x12\xf3\x76\xe2\x9a\xa2\x18\x35\x6d\x5c\x64\xf7\x26\x2e\x14\x98\x18\x73\x31\x0a\xad\x9b\x02\xf1\x82\x08\x03\x04\xdf\x48\x8c\xe9\x50\x73\x67\x79\x76\x83\x80\xcf\x79\xbd\x31\xdc\xdf\x5e\xf9\xcf\xe7\xa4\x36\xef\x37\x93\x44\x6d\xf1\x06\x31\x10\xc7\x88\xa6\x45\xd1\xa1\x64\xfe\x91\x55\xa5\x12\xeb\xed\x53\x46\xe8\x43\x01\xd8\x48\xe6\x87\x85\xfd\x63\x49\x1f\xf6\x36\xfc\xab\x6d\x13\x27\x91\x13\x81\x7f\x84\xa8\xc7\x3b\x50\xbd\x66\x55\x6b\x31\xff\x56\x9b\xdd\x2f\xb3\x29\xaf\xdb\x5a\xfc\xd9\x8b\xc0\x6b\x96\x94\x23\x0d\x96\xf4\x80\xd0\x0b\xb1\x22\x5e\xe6\x69\xb2\xf9\x5c\xa7\x1e\x3e\x56\xea\xec\x16\x65\xf8\x4a\xf7\x73\xa4\xd9\x75\x5b\xc5\xd4\x76\x59\x96\x08\xdc\x6b\xa6\xcc\x6b\xb6\xa6\xc4\xbb\x66\xca\x0a\x3c\x63\x75\x87\x1d\x46\x2e\x51\x63\xb6\x8c\xfe\x61\xe1\x17\x31\x0f\xb8\xda\xb2\xf3\x84\x3c\x84\x46\xf2\x3d\x3e\x7d\x68\x70\x38\x56\xf4\x11\x4c\x2d\x8f\xdc\x6d\x6d\xe0\xa0\x20\xbd\xb0\x05\x94\x23\x26\x8e\x36\x4c\x52\x5a\x3f\xa8\xc7\xee\x4a\xe9\x9b\x32\xfa\x44\x54\x1d\xc5\xbd\x02\xc6\x37\x64\x6d\x49\x39\xb7\x17\x5b\xb2\xa3\x8d\x0a\xbe\x4b\xa6\x12\xdc\x0f\x6d\x93\xf3\x78\xa6\x76\x10\xe7\xf1\x34\x03\xa3\xbb\x33\xd5\xf4\xec\x9c\xd8\xc7\x8d\x90\x3d\x12\x0f\x3b\x67\x87\xa3\x78\x92\xf6\x72\x0a\xb9\x24\xef\x9e\xfc\xd2\x14\x50\xc0\x61\xb0\x5e\xaa\xad\x8e\x16\x15\x65\xe8\x51\x26\x21\xe5\x85\xb0\x04\x86\xb3\x68\xd2\x7e\x5a\xaf\xfb\xf3\x57\x7f\x0e\x1f\xcd\x9a\x42\x77\x09\x24\x93\xe0\x59\x03\x53\x69\xf2\x03\x03\xbd\x77\xda\xcd\x98\xa9\xa5\xa2\xb5\xba\xd2\x1b\x02\xde\xec\x81\xb5\x0b\x92\x10\x77\xa2\x7d\xcb\x07\x09\x66\x8d\xc4\x09\x33\xaf\x9a\x22\xde\xa6\x15\x46\x9f\x68\x45\x86\x56\xf8\x4c\x8a\xaa\x34\xf1\xbc\xad\x1e\xcb\x23\x36\x81\x62\x7e\xf8\x5a\x0d\x85\x64\x04\xb1\x8f\x10\xef\xd5\x29\x95\xe5\xf1\xec\x87\x1d\x8a\xeb\xf3\xaa\xc8\xd1\x05\x8f\x37\x6d\x97\xe0\xd9\x27\x2a\x96\xf6\x4c\x48\x17\x9b\x34\x59\x84\x43\xbe\x8d\x24\x62\x20\xa7\xe3\xef\xbb\xf5\x4e\x37\xc1\x6b\x8d\x29\x2b\x86\x15\xdb\x3d\x0b\xfb\xf7\x13\xc0\x49\xa0\x41\xd4\xb4\x5b\x45\x08\x12\xec\x1b\xb5\xc0\x6a\x0c\x70\x1e\xba\x9f\x5f\xd1\x4d\xc6\x10\x0e\x59\xc4\xaa\x73\xb6\x94\x4c\x94\x73\xde\x03\xca\x3f\xc7\x0b\x4e\xef\xb8\xfc\x87\x45\xab\x51\xe1\xb0\xad\xca\x88\xa4\xb7\xec\xf1\xf7\x8d\x1a\x23\xc1\xf1\x1d\xff\x34\x3c\x19\x11\x25\x8e\x2d\x3f\x92\xec\xd4\x4c\x61\x02\xa2\x11\x91\x64\xb7\xe2\xf3\x70\xfa\xe1\xa3\xc5\x19\x2b\x45\xb5\x94\xed\x32\x3e\x52\xa3\x16\x99\xd3\xe4\xea\xc5\x4d\x9b\xbd\xda\x95\xf4\xfe\x08\x74\x62\x98\x9d\x27\xda\x51\x05\x92\xf2\xe6\xc4\x67\x54\x6c\x6c\xc8\x8d\x8e\x22\x11\x5d\xa9\xef\x1b\xb9\x3b\x36\x9d\xd5\x6a\xe3\xc2\x37\xe8\x78\xf9\x15\x4b\xdf\x90\xfb\x28\x7f\x93\xe0\xdf\x5d\x5f\x63\x81\x5a\x61\x9f\xc2\x1a\x47\x54\xab\x4e\xf7\x7c\x6a\xaf\x04\xdb\xa9\x9f\xa7\x2a\x10\x34\x19\x7f\x55\x42\x60\x47\xa4\xcf\x37\x63\xb2\xb5\x34\xc2\xcf\x3d\x79\xba\x7a\xfa\x8c\x02\x82\x1d\xeb\x39\x0a\xd7\x5c\xcf\xd5\xfa\xbb\xdd\x04\xac\x2f\xe9\x80\x2b\xe9\x1f\x61\x67\xd8\xeb\x8a\x64\x83\xe4\x09\x85\xf7\xda\x8e\x4c\x4d\x57\x58\x8e\xe5\xaf\xd8\x0e\x49\x13\x33\xfc\x61\xb6\xcc\x2f\x9e\x05\x07\xce\x75\xeb\x06\xce\xcc\xe8\xf1\xa9\x39\x05\x4d\xeb\x56\xaf\xb8\x4d\x86\x0c\xa5\x0f\x2a\xc5\xea\x05\xb5\x49\xa0\xb6\x92\xd5\xd2\x98\x45\x52\x19\x76\x35\xb2\x3a\xb8\x41\xa0\xd6\x5f\x0d\xf6\x57\x59\x8a\x1d\x11\x6a\x05\xc9\x65\x04\x31\x45\x3c\x9c\x92\xc0\x2b\xc7\xf8\x41\xa9\x0f\x72\xa9\x08\x2d\xa5\xb0\xde\xf6\x85\xa8\x49\xcd\x68\x61\xd5\x5c\xa3\xe2\x9a\xda\xf4\x1e\x96\x49\x02\xe0\xe0\x98\xc6\x13\x72\xc1\x36\x35\xd3\xba\x7c\x31\x75\x33\xac\x04\xd1\xe7\x1e\xab\x7d\xb0\x4a\xc1\x16\x1c\xb4\x64\x24\x36\x5a\x87\xa2\x24\xb4\xda\xaf\x45\xcd\xc6\xed\x1e\x78\x4f\x2a\xc4\xc6\x23\xf1\x66\x3b\x2b\xf9\x9c\x64\x72\x60\x35\xda\xe4\x0b\x31\xb8\x9a\x2f\x17\x61\x01\x14\x79\xe8\x32\xe5\xa4\x1d\x18\x6c\x3d\x53\xfa\xd1\x27\xe7\xd1\x26\x5c\x70\x77\x92\x3e\x55\xf7\x09\x2e\x6a\x26\xb7\xa5\xf5\x67\x40\xe4\x2a\x30\x4b\x11\xd4\x04\xdf\xd6\x15\x2b\xfc\x01\x9e\x02\x32\x75\xae\x67\x68\x5b\x48\x08\x4c\x40\x96\xa3\xf5\x72\xbb\x36\x49\x8b\xc0\x7a\x4d\x13\x6d\xe8\xcf\x46\xc8\xd4\xd2\xd4\x9f\xa1\x41\xec\x0c\x6c\xc9\x13\xf2\xb7\xbf\xd9\xaf\x9e\x40\xd6\xab\x33\xc2\x8b\x96\xe8\xbc\xc4\xec\x4c\x15\x90\x54\x5d\x69\xce\x50\x33\x14\xaf\xe6\xa2\xae\xd9\xbc\x61\x9b\xb6\xed\xb5\x60\xd3\x70\xf4\x5c\x84\x39\xd7\xd8\x2d\xab\xf7\xb0\xe9\xc8\x6e\x25\x88\xd8\x55\x32\xcc\xb8\x86\xca\xb7\x44\xf7\x4b\x65\xf6\x90\x91\xb2\xa0\x8b\xd3\x8a\x2e\x99\xf9\xfe\xea\xc5\xcd\xf5\x03\x72\xe0\x16\xc9\xa3\x33\x6d\xe1\xe2\x51\x17\x13\x07\x2b\xa2\x77\x9c\x3f\xf2\x7c\x2e\xb6\xb9\xa8\x16\xa2\x5e\xa3\x1f\x58\x33\x71\xd8\xe3\xea\xc5\x4d\x4a\x86\xfd\x86\x19\x7f\x86\x4d\x20\x75\x79\x91\x38\x95\xd2\x32\x1f\x62\x57\xb1\x42\x93\x49\xef\x0f\xec\x34\x25\xf9\xd0\xd6\xb4\x8e\x47\x36\x27\xa8\x83\x47\x1e\x9f\x86\x31\x57\xb1\x6c\xc7\x93\x99\x50\x52\x72\x09\xc9\xe7\xa0\x40\xe6\x7e\xc3\x64\x90\xa0\xbf\x66\x73\xc6\x6f\x19\xac\x12\xdb\xa8\xc3\xf9\x49\xae\x6d\x12\x94\xab\x17\x37\x37\x1a\x18\x54\x52\xc0\xbb\xce\x5c\xe9\x06\x3c\x81\x4d\x1f\xe8\x90\x34\x3f\x4b\xa3\xc6\xe2\xd6\xef\x72\x17\xa8\xef\x73\x55\xe2\xdd\x39\x19\x76\xef\xa6\xcd\x6e\xc5\xf4\x29\x40\x44\x0d\x5e\x71\x48\x78\xc7\x6f\x59\x85\xab\xac\x17\x1e\xa8\x82\x95\x73\xf0\x1a\x25\x53\x82\x8c\x9c\x07\xdf\x9b\xa2\x3d\xb4\x32\x7d\xb5\x9c\x46\x70\x46\xc0\xfc\x65\x2b\xad\x67\x10\xe6\xa0\x41\x17\x6c\x41\xb7\xe5\x81\x88\x2f\x2e\x53\xda\x0f\x95\xbb\x62\x3e\x41\x72\x36\x2f\xfd\x61\xe8\xb3\xb3\xec\x3d\x74\xfb\x85\x7f\x83\xb8\xd9\xcb\xfc\x05\x2d\x65\x36\x24\xc9\x53\x18\xe4\xe7\xda\x16\x17\x04\x9e\x05\xf1\x50\xf8\x8b\xa9\x06\x45\xdb\x58\xef\x25\x24\xf2\xd1\xfc\x76\x59\xa5\xb2\x36\x8c\xe9\x70\xdb\xc3\xa4\xfe\x69\xc1\xf0\x9f\x34\xe0\x20\xf6\x95\xa8\x55\x51\xd3\x1d\xa9\xd9\x5a\xdc\x82\x9f\xca\x8a\x45\x53\x1d\x96\x45\x5a\x54\x55\x10\x6c\xd7\x4a\x84\x76\x9b\xc5\x8e\x75\xd0\x71\x80\x77\x13\xb6\x9a\x1e\x62\x56\xe4\xf0\x69\x19\xb4\xb6\x16\xc9\xf7\xd9\x0c\x9f\x70\xbd\xa7\xff\xf2\xc5\x82\x2d\x6a\x0d\x16\x6c\x00\xf8\xc9\xb4\xc4\x15\xb6\xfd\x86\xe1\xdc\x7c\x09\xee\xbc\x84\xcf\x5c\xfc\x3c\xc5\x13\xbe\x5a\xa0\xeb\x76\xbe\x62\xf3\x0f\x7a\xef\x66\xca\xfd\xc0\xa5\xca\x42\xd9\x98\x27\xd4\x0d\xae\x5e\xdc\x04\x28\x74\x99\x20\x91\x4a\x31\x35\x8c\xef\x14\x86\xe4\x42\x90\x2f\x0e\xbe\xd4\xa8\x16\x2a\x27\x45\xe2\xd1\x2c\x6a\xd3\x20\x31\x24\x4e\xad\x11\x31\x94\x52\xe6\x2d\xac\x3e\x5a\x94\x8b\x2c\x53\x36\xa8\x83\x6b\xfb\xf8\x34\x95\x05\xc8\x48\x18\xfd\x7b\x14\xb1\x1a\xe8\xc7\xb7\xa8\x4d\x41\x96\x1a\x70\xe0\x5c\xb5\x9c\x03\xca\x2d\xe0\x08\xc5\x41\xd1\xb2\x74\xa8\xd6\x4f\xc6\xb4\x28\x6a\x26\x33\xb7\x5a\x81\x44\x75\x0c\x8b\x90\xf2\x02\x23\xfe\x29\x53\xc0\xd3\xa2\xe4\xc0\x49\xb2\xde\x96\x8a\x6f\x4a\xb3\x43\xe4\x7d\x14\xe2\xe4\x85\x9c\x92\xf3\x8a\xd0\xba\xa6\xa0\x77\x69\x0b\x49\x09\x37\xe8\x21\xbf\x42\x73\x17\x87\x3a\x61\xe6\xe8\x35\x65\x6e\xda\x7c\x20\x1d\x9f\x98\xb4\xeb\xf6\xd2\xe3\xfd\xc4\x43\x44\xe4\x21\xd0\xe1\x1d\x4a\x87\xf7\xc7\x9e\x02\xc1\x71\x05\xa6\x79\x7a\x62\x45\x8d\xb5\xca\x09\x63\x1f\x59\x1d\x53\x5b\x53\x8a\xd5\x78\xbb\x54\x8b\xed\x72\x65\x8c\x28\xe4\x03\x77\x58\x00\x23\x1c\xda\x8a\xfa\x08\xe5\x70\xca\xeb\xfe\x4d\x11\x91\x20\xd8\x52\x49\x33\x2b\x61\x79\x71\x72\x58\x6e\xb4\xed\x15\x99\xdf\x2c\x09\x3a\x2d\xdb\xc6\x7a\x0a\x14\xfd\x00\x5e\x12\x23\x10\x34\x75\x68\x51\x84\xc7\xa2\x07\x15\xba\xfe\xba\xb6\x0b\xee\x16\x33\x7d\x65\xeb\xd9\xc3\x19\x68\x86\xed\x54\x9a\x3a\xbc\x32\x09\x69\x5b\xce\xa5\x93\x5c\x44\x82\xf1\xa9\x04\x18\xa0\x78\x05\x31\x10\x68\x48\x68\xdc\x7d\x60\x44\x6e\xeb\x86\x65\xcd\x95\x75\xde\x18\x5b\xb4\x79\x39\x19\x09\x6e\x3b\xc4\x43\x12\xaa\x31\xd9\xdb\x54\x77\x98\x3f\x92\x24\xc9\x3b\x8e\xf9\xb8\x21\x77\x3d\x0a\xdb\x06\x80\xf3\xa2\x70\xbe\x4a\xa3\x11\x98\x00\xa5\xe6\x82\x59\x88\xa2\x2c\x6e\xf2\x07\xcc\x3b\x5e\xbc\x77\xd8\x37\xc6\x7a\x5d\x95\x7b\x93\x02\xd9\x71\x11\x26\x2a\xe6\x8b\xae\x6d\xa4\xc9\x07\x5e\x24\x34\x28\xb4\x22\xfd\x48\x66\x83\xb8\xf8\x22\x77\x8c\x98\x4b\xec\xcc\x06\x04\x64\xac\xfb\x46\x1f\x4a\xfa\x38\x52\xa2\xe5\x30\x0a\x7b\x36\xb7\x9b\x49\xb2\x8c\x45\xe0\x40\x34\x89\xb2\x48\xb5\xac\x81\x51\xe5\x62\x4f\x84\xc9\xe5\xec\x08\xdb\x75\x60\x5d\x24\xdb\xaf\x59\xda\x98\x9a\xba\xd3\xe8\xb0\x49\x1d\xf4\x86\xf0\x92\x30\x3a\x5f\xd9\x83\x82\x15\x68\xe5\xa3\xd3\x8f\xcb\xdc\x4a\xdc\x87\xeb\x2b\xb3\xbd\x20\x1e\x20\x38\x19\xad\xff\x30\xd9\xf5\x0d\x26\x84\xe7\x53\x86\xb1\xe5\x78\xc9\xd4\xe5\x85\xec\x29\xcc\xa1\x6b\x43\x8a\x84\xd4\x41\xe2\xa4\x17\xd4\x5a\x9c\x7f\x60\x70\x77\xd1\xf2\x78\xcb\xa4\x5c\x4c\xa4\xb8\xc1\x31\x2b\xc7\x3f\xb0\xfd\x41\x41\xde\xe4\xac\x96\x8d\x62\xf9\x28\x11\xf2\x31\x17\x69\xad\xd3\x71\x0f\xb2\x27\x2f\x50\x7c\x93\x62\x5b\x63\x88\x35\xd7\x66\xe4\x5c\xd8\x78\x7e\xdd\x47\xc6\xf6\x89\x2b\x05\x80\xe1\x81\x54\xb9\xce\x07\x35\x84\x1f\x20\xb8\x0e\xb9\x48\x43\x0e\x7c\x9d\x23\x07\x65\x4a\x7e\x78\xc1\x3f\x7e\xfb\xfb\x4c\x76\xfe\x2f\xa4\x10\xf3\xa2\x87\x22\xac\xf1\xfd\x6c\x25\xd8\x4a\x72\x2d\x76\xae\x5e\xdc\x20\x1d\x8a\xe1\x57\xfe\x3c\xd9\xaa\x55\x3b\xbd\x5a\x5f\x82\xa7\x04\xda\x50\x29\x43\x1b\x0f\x25\x7a\x89\x06\x4c\x33\x54\x90\xd8\xf0\x16\x13\x31\x06\x51\x70\x26\xf8\x84\xdb\x02\x9c\x33\x3a\xff\xf0\x19\x27\x41\x62\x3c\x69\x1c\xb4\xa5\x56\x2d\xd4\xd4\x1d\x14\xe1\xa2\xdb\x7f\x25\x93\x3a\x46\x42\xbe\x0c\x18\x3c\x14\x2c\x86\xd5\x65\x3b\xaf\x87\xa0\xf4\x81\x8d\xb2\x43\x66\x35\x41\xd8\x12\x28\x27\x6c\x80\xac\x79\x5a\xcf\x8a\xcf\xdb\x0a\x0e\xf9\x58\x4d\xee\xb5\x25\xba\x74\x56\xdc\xf0\x2b\xb6\x3e\x4a\x37\x75\x85\x77\xdd\xb9\x98\x5b\xa4\xb0\x47\x9b\x0f\x76\x5b\x75\x88\x1c\xa5\xb4\x44\x03\x71\x6f\xda\xc5\xa1\xaf\x09\xff\x60\x1b\x7d\x56\xb9\x4a\x9e\xb3\xad\xe4\x95\x3e\xe5\x4b\xb1\xe4\x73\x42\x6b\x28\x5d\x64\x80\xb1\x92\x2f\xf9\x8c\x97\x5c\x35\x42\x92\x3b\xd7\x02\xbb\x87\x97\x30\xff\x12\x43\x47\x8b\xa1\x37\x59\x31\x14\xaf\xa8\x0f\xf4\x54\x2b\x06\x1e\x4e\xbd\xf3\x1a\xc2\x26\x0c\x68\xd5\x3f\xba\x60\x3f\x77\x0b\x70\x27\x7d\xb5\x8d\xcb\x62\x39\x75\x07\x99\xf4\x43\xb4\x07\x72\x52\xe9\x18\xd9\x83\xf8\x19\xe9\x83\xba\xf3\x9e\xd0\x9a\x19\x76\x2f\x1b\x4f\x49\x0f\xcb\x9d\x1f\x2c\xc3\x87\x06\xfa\x71\x72\xc6\x62\xf5\x79\xa2\x26\xd8\x71\xe9\x0e\x68\x13\x2c\x66\x01\xec\x35\xb3\xf9\x53\x5a\xa7\x05\x6e\x04\x2e\x5b\x2e\x2c\x02\x74\x7d\x8f\x80\x96\x89\xe3\xf1\x08\xe7\x8e\x16\x4f\x61\x95\x20\xbc\x71\x07\x6d\xd6\xd4\x61\xe9\x14\x16\x7d\xd6\x2c\x9e\x7a\xf7\xb2\xa1\xe0\x09\x19\xbc\x6f\x0c\x48\xb2\x2d\x72\x81\x20\xd1\x6f\xc7\x44\x81\x24\x62\xa0\x77\x24\xc8\x21\x66\x3a\x5e\x30\x93\x3b\x0a\x67\x92\x13\xd0\x66\x81\x3a\x64\xf4\x3c\xf0\xe0\xb9\xb7\xe5\xf1\xb3\xf2\x64\xea\x66\x7a\xcf\xd1\x82\x76\xae\x28\x34\xa1\x57\xac\x66\x2e\x58\x7e\x53\x52\xb5\x10\xf5\x5a\x92\x42\xc0\xa8\x2b\x7a\xcb\xf0\x8c\x2d\x58\x2d\x95\xde\xae\x66\x01\x4e\x5d\x42\x20\x80\x03\x27\xb1\x64\xe6\x11\xa5\x5c\xf1\x0d\x99\xaf\x68\xb5\x6c\x16\x90\x81\x3b\xbf\x5d\xe8\x3e\x15\x5b\x05\xd9\x0e\xea\x9a\xc9\x8d\xa8\xa0\xfa\x83\x35\xa8\xd6\x8c\x9a\xaa\xdb\x68\x68\x92\xbf\x6e\x99\x04\xf5\x6b\x45\x21\xe4\x03\x1f\x6d\x1a\x5b\x3b\x6f\xa8\x47\xee\xe3\x63\x1c\xc7\x06\x5d\xbb\x06\x2b\x78\x3f\x13\xa6\x99\xb0\x0f\x03\x33\x97\x0d\x04\x32\xe8\x36\x76\x8f\x91\x57\x4f\xf7\x97\x17\x4e\x66\x35\xfa\x45\xf6\x58\x2f\x91\x86\x76\xac\x7f\x34\x91\x33\x8c\xa1\x46\x89\x0b\x2e\x38\x64\xaa\x87\x97\x87\x60\x22\x7b\x41\xd1\xeb\xfa\x50\x5b\xba\x6d\x27\x9b\xbd\x78\xb1\x8e\x6a\x42\xcd\x77\x51\x04\x06\xbc\xf6\x70\x65\x41\xda\xef\xaf\xa2\xa7\x1e\x78\xa5\x06\x77\xc8\x35\xa3\x05\xe1\x2a\x72\x6e\x75\x49\xe3\xcc\xd5\x9a\xc6\x61\x69\x5c\x65\x1e\xb1\x85\x38\x18\x2d\x9f\x79\xcb\x11\xdf\xd4\x85\xbd\xae\x04\x64\xb6\xd7\x47\x8e\xa8\xca\x7d\xf8\x24\xd9\x4c\x07\x5e\xbe\xd3\x22\x89\x13\xbc\x7a\x71\x33\x0a\xe1\x68\x4e\x84\x1b\x73\xcc\x41\x11\xa7\xec\x1a\x93\x37\x25\xa3\x12\x62\xbb\xa3\x88\xa1\x24\x4c\x18\xc6\xb1\xc2\xc7\xd5\xb7\x27\xed\x5e\xd2\xe4\x25\x89\xd6\x7e\xfe\x87\xc4\x51\x48\x79\xc5\x2f\x0d\x48\x32\x7c\xf4\x55\x53\xd5\xea\xe4\x23\x17\xdb\xd3\x8f\x95\xfa\x32\x0e\x26\x11\xaa\x8a\xf8\xc9\x10\x9c\x09\x5c\x8d\x23\x53\x43\x9f\xfc\xba\x1f\xbe\xad\xc0\xdb\x57\xc7\x7c\x51\x14\x6d\x5c\x2b\x2f\x5a\x3c\x51\xc3\xda\x99\xa5\x95\x0c\x0a\xef\xe9\x6f\xdf\xf8\x94\x46\x49\x12\x08\xad\xd3\xee\x13\x29\xe0\x9e\x3f\xe0\x73\x35\x51\x9b\x91\xcd\x6d\x14\x35\xa5\x75\x84\x64\x61\xde\xa4\xd4\x45\x13\x3f\x03\xcf\xb2\xc0\xdf\x73\xfb\x74\xb0\xdf\xb1\x51\x70\xa1\xf0\xf2\x0c\xcc\x8b\x13\xf0\xa1\x47\x3d\x73\x5c\xd8\x81\xc9\x8f\x9c\xed\xde\x62\xba\x8a\x3a\xc1\xe7\x97\xf0\xb7\xb1\xfd\x47\x63\x43\xf0\x45\x70\x65\x9d\xd9\x16\x1d\x59\xfe\x52\x50\xc1\x54\xe1\xa6\x5c\xb6\x22\xd1\x72\xdc\x90\xce\x74\x61\x3e\x04\xee\xf4\x7e\x3e\x16\x5c\xfa\x4c\xf5\xb4\x64\xb7\xac\x74\x51\x84\x26\xc0\xd3\x3f\x47\xb9\x47\x0c\x2c\xbc\x6c\xc8\x48\x1c\xed\x3b\x6a\x46\xc1\x18\x9f\xba\x91\x30\x16\x16\xc5\xf0\x3f\x2d\x2c\x64\xfc\xce\x32\x88\xf5\xb3\xda\xb4\xed\xf4\x1a\x76\x81\x16\x32\xa0\x8d\x45\xae\x7b\xd7\xd9\x74\x1a\x79\x3b\x84\xce\xe0\x2a\xda\x46\xa9\x59\x68\x61\x70\x6d\x4d\x2b\x49\xf1\xa2\xcd\x8e\xf6\x20\xe5\xea\xf6\x68\x9c\x28\x6a\xe6\x98\x4b\x59\xbe\x20\xa6\x2f\x79\xd8\x2b\xb8\xca\x6a\xff\x26\x06\xcf\x6a\x5d\x2e\x5a\x6d\x90\x4b\xb5\x95\x06\x4a\xdb\x11\xa2\x3b\xdc\x98\x79\x97\x4c\x9d\x97\x25\xe6\xc8\x70\xe7\x49\x59\x12\xfb\x3a\x1d\xa9\x86\xa7\x6b\x48\xaf\x48\x74\x05\xaa\x57\xdc\x17\x8e\x1a\x58\x42\x28\xc4\x69\xde\x41\x37\x08\x1e\x2a\x5e\x16\x1b\xac\x69\x66\x26\xa0\xbf\x09\x75\xb0\xe4\xcd\x98\x7b\xca\x3e\x86\x0c\x6d\xb2\x39\xc7\x30\x27\x5d\x63\x9e\xee\x1d\x43\x7a\xda\x50\xaf\x4f\xb8\x94\x12\x7e\xfe\x6d\x19\x06\x7c\x14\xb1\x7f\x12\xc4\x25\x99\x31\x7d\x0e\x49\x46\xeb\xf9\xca\xd0\x20\x43\xcb\x9b\x18\x1f\x42\x6d\x7a\x1e\x25\xec\xbf\xec\xf3\x0b\x9b\x39\xa8\x93\x9c\xd9\x64\x7c\xee\xbd\x6b\x9a\x62\xe3\x49\x93\xc6\xae\x9e\x73\x94\x2b\xe0\xc9\x38\x4a\x60\xd8\x4a\x6b\x93\x6e\x3f\x0c\x0a\xe9\x20\xb7\x05\xd2\xf2\x71\x8b\x01\xc7\xb8\xcb\x7e\x17\x22\xd2\xde\xf9\xf9\xc7\x69\x54\x61\x65\x80\xc1\xc7\x76\x96\x42\xab\x3b\x41\x6c\x7e\xcb\xa7\xe4\x1f\x18\x19\xbc\x62\xeb\x8d\x56\x7a\xfe\x50\xf3\x9f\x7f\x2e\x39\x93\x83\x2f\xc0\x1a\xd1\xb8\x06\xf3\x1b\xfb\x18\x1a\x4d\x4f\xdd\xde\xe9\x16\x87\x98\x09\xfb\x85\x2c\xf5\xfa\x58\x06\x4a\x8b\x27\xd8\xe7\x66\x06\xbb\x24\xa3\xd4\x93\x24\x9a\x5a\x54\x8f\xe0\x0a\x6c\xce\x20\x40\xfa\x96\xd5\xee\x36\xdb\x28\x6c\xa2\x36\x58\xc2\x1d\xf6\x2d\x2d\x83\xe4\xcd\x46\x33\xd8\x1c\x4a\x62\x91\xd5\x75\xf4\x8f\x8e\x63\xdf\xc1\x18\x81\x86\x4d\x58\x29\xd3\x47\xde\xd9\x83\xbf\xc1\xea\xd7\x46\x67\x0d\xd9\x1b\x5f\x44\x59\x1d\xdb\x5f\x74\xd8\xfc\x0c\xf1\xca\x72\x99\x6e\x83\x71\x07\x2f\x05\x8f\x18\x3d\x2b\xb9\x47\x8c\x47\x09\x99\xff\xda\xb2\x7a\x6f\xf1\xc7\x07\x6a\x56\x5c\x7b\xc9\xe8\xb3\x41\x71\x88\x7a\xc7\x5b\x20\x3a\x13\x5b\x97\x20\x02\xc9\x93\x1e\x9f\x9e\x36\x8d\x37\xf6\xe1\xc0\x4f\xe2\x23\x32\xf7\xd4\xfc\x2c\x17\x90\x90\x5b\x9d\x8e\x55\x0c\x87\x8c\x0a\x7b\xb7\xbf\x21\xf2\x89\x1d\xa3\xc5\x85\xf7\x73\xff\xfb\x17\x37\x97\xad\xa4\x35\x42\x3f\xce\x5f\xe9\xd6\xe9\xe8\x4d\x8c\xe6\x57\x66\xeb\x26\xa7\xb5\x31\xf4\xec\x0a\x3f\x81\x52\x8d\x59\xf2\x9b\x67\xe8\xe1\x02\x98\xa7\xed\xbd\x97\xe0\xef\xb8\x08\x29\xaa\x1a\x4a\xf2\x4e\xb9\x63\x4d\xe2\x2c\xee\x6e\x55\xf0\x1f\xbf\xc6\xaa\x48\xff\x02\x3f\x5d\x97\xcb\x0b\xf9\x74\xdf\xd8\x1b\xce\xe3\xd6\x58\x17\xe2\x56\x38\x73\xb2\x1e\xbd\x3e\x57\x6d\x49\x79\x8e\x5c\xa3\xf3\x8c\xc7\x30\x00\xc6\x17\xda\x54\x01\x1f\xb4\x1c\xc1\x93\x0f\x5e\xea\x2f\x4d\x0a\x8f\xac\xd5\x90\x90\x67\x98\x24\x8e\xb5\x0e\xc5\xdf\xfd\xf6\x7d\xb8\x82\xb7\xb4\xc6\x65\x92\xfe\x77\x72\x46\xde\xbd\x8f\x8b\xe5\x27\xf7\x49\x56\x46\xdb\x85\xc3\x37\xc5\x4e\x27\x70\xe2\xca\xc1\xd0\x5f\x5a\x27\x0b\x6f\x2e\xbc\xd1\x9d\x9b\x06\xb9\xcd\xbb\x7b\x76\x66\xbb\xc3\x8e\xcd\x5f\x28\x98\xf7\x75\x36\xa3\xef\x42\x6c\xab\x62\xe4\x9e\x89\x00\x95\x1b\xdd\x70\xee\x26\xb7\xe6\xd0\x8e\x91\x08\x68\xd2\xe1\x0a\x8e\x07\xc5\xbd\x10\x8e\x1b\x9e\x13\x87\xb7\xcb\x95\xc1\x3d\xa3\x81\x18\x4c\x4d\x89\xe8\xb3\x33\xf2\xf5\xdd\x0e\x26\x84\xd7\x75\x08\x81\x2d\x74\x59\x85\xe9\x81\x20\x40\xc5\xbc\xd1\x02\x35\x32\xe7\xea\xf6\xd2\xf0\x0b\x4a\xb9\x70\x07\x59\x4c\x0e\x2a\x93\x38\x9b\x86\x60\xcb\x6d\x8c\xfb\x13\x6d\x5e\xac\x81\x61\x9a\xd0\x99\xcb\xe7\x36\x91\x88\xe2\x35\x2b\x22\xcf\xaa\x28\x19\x35\x61\x89\x36\x9b\x0e\xdc\x7e\x52\x4d\xb0\x09\x26\xa7\x14\xeb\x99\x68\xb5\x1c\x86\xf0\x74\x78\xc7\x25\x83\x34\x8b\x95\x89\x3a\x34\xef\xb0\x4f\x08\x3c\xab\x83\x71\xc7\xad\x30\x2e\x17\x41\x97\xa0\xc7\x48\xcb\x28\xa9\xd0\x92\x59\x43\x90\x87\x67\x80\x51\x2b\xb8\xd9\xd6\x3f\x5f\x9e\xd3\x2a\x78\x47\x3c\x63\x36\xa3\x4e\xe4\xf7\xbd\x4f\x36\x8a\x30\xb9\x37\xc3\xf9\xa9\x59\x28\xb3\x46\xc1\xbd\x55\x93\x6a\xe6\x01\x5f\x56\x84\xa7\xbc\x30\xec\x4e\xad\x81\x03\x3f\x09\xa3\x35\x8d\xa5\x22\x99\x32\xb9\xf1\x6d\xc1\xa1\xac\x06\x9a\x89\xf3\xbc\x66\xcc\xe2\xfe\xc6\x14\xf6\xb7\x88\x9b\x0b\x5a\x2e\x1b\xe9\xde\x4a\x94\x10\xd0\xea\xcc\x0e\xae\x47\xb5\xf3\x38\xb1\x26\x52\x57\xf4\xbb\x85\x20\x15\x55\xdb\x6c\xec\xbb\x69\xd1\x14\x6f\x29\xd4\x4b\xcf\x0e\x3b\x7a\x40\x28\x93\x7e\x16\x17\x97\xd7\x4c\xe1\x93\xa2\xfe\x5b\x34\xc7\x75\xee\x45\xd1\x58\xa3\xc9\xd5\x23\xfb\x77\x76\xcb\xd8\x94\xa2\x99\xbd\x02\x25\x17\x20\xd1\x56\x7e\xb7\xa5\x1b\x0d\xb7\x6a\xb2\xc9\xde\x18\x5f\x19\x48\x34\x17\xad\xf5\x2b\x68\xa9\xed\x7b\x06\x14\x20\x4b\x94\xb6\xed\x12\x3e\x35\xb5\xeb\xd2\x90\xeb\x76\x7b\x04\x9c\x71\xef\x32\x3d\xb8\x8b\x8e\x0e\xcf\x4c\x25\xbd\x50\x15\xc1\xfc\x58\x61\xfa\x85\xd8\x5f\x79\xc0\x17\x14\x2e\x21\x25\x73\x56\xeb\x65\xb3\xd2\xe6\xff\x8a\xd8\x84\x52\x23\x42\xd1\xb2\x49\x8d\xc6\xb8\x89\x37\x37\x9a\xbf\x9b\x78\x9b\x5e\xdc\x51\xd5\xb0\x55\xb4\x36\x8d\x9d\x3b\xcb\xd6\xb7\xf6\x4e\xb9\xda\xae\x5f\xc1\x04\xde\xb0\xba\x91\x2f\x58\x8f\x61\x9e\x21\x47\xb2\x14\x2f\x31\xa3\x7e\x6d\x72\xd5\xf0\x19\x42\xe9\x56\x06\xbd\xb0\x94\x89\xb0\xbc\x83\xac\x5c\xe6\xf2\x7a\x85\x2a\x64\xaf\x44\x5a\x79\x06\xee\xcc\xe7\xe5\xbb\xb8\x97\xb5\x76\x1d\xfd\x90\xf0\xfe\x46\xaf\x26\xda\x57\x61\xc7\xee\xf2\x25\xad\x99\xb1\x4e\xa6\x4d\x6e\xc9\xa7\xf3\xc1\x44\xfe\x5f\x3a\x97\xcf\x9d\xf2\xf8\xb4\xe4\xf0\xe9\xa2\x02\xfc\x2f\x7f\xbb\x13\xe6\x95\x4a\xef\x3e\x64\xf0\x9b\xbf\xe9\x69\x50\x2d\xca\xea\xd3\xf3\x0a\x28\x04\xfd\x79\x17\x41\x01\xe2\xc3\x93\x29\xf9\xea\x5d\x73\x19\xde\xff\x1f\x5e\xee\x03\xab\xed\xff\xee\xbe\xdb\xf2\x48\x3e\xdd\x5f\x5e\xc4\xde\xb2\x34\x07\x19\x61\x95\xb2\x01\xde\x2d\x87\x53\x23\xf7\x5e\x70\x46\x85\x22\xe3\xd8\x53\x26\x9f\x0f\xad\x3d\x6f\x48\x38\xa9\x61\x2e\xeb\x5d\x18\xe6\x10\x00\xff\x67\xe1\x87\x77\x21\x4d\xde\x3f\x4c\xf8\x02\x42\xab\x30\x6f\x3a\xc4\xc0\x20\x3f\x6c\x30\x49\x13\x64\x63\x0e\x7a\xfb\xb8\xcf\xb6\x24\x73\x84\x56\x45\x22\xd6\x91\x05\x8c\xd6\xd0\xcc\xee\x90\xe1\x02\x5c\x36\xfb\x35\x3e\xa5\xfc\xe8\x40\xf0\xea\x33\xf0\xea\xe4\xa1\xab\x04\xdc\xd0\x9e\x11\xff\xb8\x3c\x92\x52\xf0\x81\x57\x0d\xb4\x61\x99\x4c\x34\x93\xb1\xc9\x04\xe2\x81\x36\xda\x27\x19\x6a\xe6\xd0\x36\x92\x26\xbb\x25\xc3\x76\x31\xe9\xfd\xbe\xce\x87\x1a\xd9\xfa\xda\xd6\x97\xda\xde\xaa\xbd\x82\x44\x92\x2c\x29\x9f\x4a\x33\x1c\x64\xd4\x01\xac\x11\xb1\x91\x4d\x14\xad\xa1\x59\x7f\xe1\xc3\x33\xf2\xf5\x94\x0c\xae\xe2\x5c\x87\xe0\xb5\x9c\x9b\x44\x1b\xe6\xd5\x62\x5b\xf6\x2d\x62\x9f\x00\x84\xa8\x6b\x7e\x4d\x97\x3c\x6a\x6c\xca\x92\x47\xce\x60\xf7\xe3\xda\xd7\xf0\x6b\xd4\x24\x8c\x74\xca\x6c\xbe\xad\x94\xa3\xe2\xfa\x2d\xaf\xe8\x46\x1f\x1d\xde\xb2\xa0\xa5\x96\x45\x7b\x6b\x3a\x58\xce\xda\x4a\x7d\x88\x78\x58\x51\xac\xe1\x4f\x2b\x56\x99\x34\x06\x46\x47\x4d\x18\x51\xb3\x31\x02\x1c\x91\x6f\x80\xa7\xad\x51\x6e\xcb\xd5\x18\x48\x5e\xd0\x80\x07\x65\x4d\x37\x36\x4f\xd3\x07\xb6\x1f\x69\x83\x74\x8d\xa9\x9b\x30\xc2\x1c\xea\xd0\x55\x4b\x22\x16\x21\x90\x6b\x0c\x6e\x7c\xe3\x43\x0c\x1b\xfb\x2d\xa0\x96\x0d\xe2\x32\xfc\x1b\x9b\x0f\xbe\xa3\xe7\x2e\xe4\xc2\x4f\x39\x32\x06\x33\xc6\xcc\xbc\x59\xb5\x3d\x89\xd3\x34\xf3\xc4\x22\x0d\xd2\xbc\x54\x84\xc7\x30\x9a\x64\xbc\x5a\x8e\xbb\x51\x5e\xa7\xfa\xe6\x94\xd8\x94\x64\x39\x54\x8d\x49\x60\xb5\x03\x9b\x54\xb9\x91\xbe\x58\x46\x68\x3e\x87\x34\x71\x8a\xaf\x19\xa1\x51\x16\x54\x2e\xad\xaa\x18\xa7\x6f\x35\x97\x46\x7c\x59\x45\xcf\x4e\xec\x31\x14\x67\x13\x45\x5b\x83\x62\xa6\xed\xca\x64\xb9\xc3\xc4\xd9\xb8\xdc\xdf\x74\xd0\x00\xab\x28\xc4\x42\xb5\x29\xa8\x26\x13\xf2\x23\xad\x39\xc4\x9f\x49\xfe\x73\x98\x12\x20\x59\x39\x14\x8e\x8d\xbc\x69\x31\xd1\x93\x93\xde\x90\xfc\x77\xbf\x9d\x06\x90\xfe\x95\x8b\xf6\x1f\x30\x17\x6d\xc3\x09\x61\x0b\x62\xa0\x1c\x4f\x0f\xf7\xa8\xb9\xad\xf7\xe1\x31\x3f\x0b\xa6\x91\x1c\x76\x00\xd7\x9e\x75\x49\x12\xd8\xb6\x32\x41\x59\x1c\xda\x70\x6b\xcf\x1d\x9f\x9c\x5f\xcd\x02\x42\x01\x2f\x44\x1d\xb1\xf4\x87\xfb\xd1\x55\x00\xb9\xf3\xc4\x7a\x14\xe9\xc8\x7a\x53\x5c\x48\x2e\x88\x3b\x84\xf2\x48\xeb\x49\xbf\x5a\xd6\xf4\xb0\xeb\x91\xde\x96\x0e\x5e\xbe\xa3\xd7\x25\x89\x1d\x6c\x9c\x20\xef\x00\x42\xdb\x0b\x87\xa6\x97\xed\x20\xc5\xa3\x13\xa0\x87\x5f\xd7\x79\x2e\x05\x56\x8c\x08\xe4\x6d\x72\x98\x6c\xa5\xc9\xea\xca\x65\x58\x87\xb6\xe6\xce\x5f\xda\x63\x1d\x5b\x33\xcf\x3b\x75\xa6\x71\x25\xd0\x26\x04\x3b\x32\xcf\x1f\x0f\xac\x67\x96\x7d\x54\xce\x50\xe3\x58\xe7\x06\xe9\xc7\x8f\xe4\x2a\x5d\x95\x51\xaa\x0e\xba\xf5\xc8\x9e\x06\xad\x62\xb7\x8b\x63\xba\x5d\xcc\xf9\x6c\xfa\x2d\xc9\xc1\x8d\xdf\x59\x13\x3b\x92\xb1\x30\x42\xf0\x14\xd1\xbe\x4f\x6c\x16\xeb\x75\x55\x71\x83\x41\xdb\x8a\xf9\xf2\x05\x79\x88\x82\xb5\x6d\x6a\x63\x7b\x51\xf4\x27\xb6\x1f\x36\x10\xcb\xa5\xd9\x3b\x00\x2f\xac\x77\xdd\x80\x37\x32\xd2\xfc\xeb\xcc\x63\x55\xb3\xdb\x5d\x8b\xb0\xc1\xa7\x36\xb1\xd0\x8a\xc7\xbb\xc6\xd8\xef\xdb\xaa\xcc\xd0\xa2\xb8\x11\x7d\xa5\x85\x53\xfa\x24\xf9\xa6\xdd\x38\xb8\xa3\xd0\xf8\x97\x0c\x98\xf4\xd9\xb2\xdd\x0b\xf7\x59\x9b\xf6\x57\xdf\xac\x5f\x74\xb7\xda\x17\xd2\x90\x02\xb8\x12\x8a\x2c\xb8\xd6\xd2\x7d\x50\x9d\xeb\xfa\x70\xd0\xbe\xdf\x8e\xde\x68\x4e\x9b\x3b\x66\x73\x46\xaa\x5e\xb0\x51\x43\x9e\xfb\x57\x95\x99\x7f\xfc\x2a\x33\x7d\xdc\x61\x0f\xf3\x2a\x61\xb4\x3b\xf0\x26\x8b\x4c\xc9\x20\x94\xe5\x56\xec\x1a\xf1\x63\x55\x07\xd4\x68\x1f\x76\x96\x52\x6b\x19\x33\x3c\xef\x32\x25\x62\x72\x59\x59\x43\xbb\xb7\x60\xc5\x8d\x30\x6f\x2f\x11\xf8\x97\xaa\x35\xd3\x9e\xd9\xbd\x31\xa9\x4c\x7a\xf4\xce\xfd\xdc\xd2\x3e\x31\xcf\xda\xa0\x36\x6d\xc1\x6f\xf2\xbe\xc3\xc9\xe4\x3e\x5e\x46\x3e\xb3\xf9\x6f\x5e\x19\x3b\xee\x47\xce\x76\xf2\x3e\x06\x30\x30\xa2\x50\x28\xe7\x51\x00\x73\x08\x13\xe1\xd3\x5b\xca\x4b\xf0\xf2\x38\x7e\x8c\x52\x84\x4d\x0e\xdc\x61\xdb\x19\x00\xe2\x43\xeb\x35\xf1\x4f\x0a\x9f\xc0\xa3\xb7\xfd\x86\x65\x1e\xbb\x61\x66\xfb\x68\xea\xe3\xab\x17\x37\xfe\x6d\x9f\x5e\xaa\xef\x86\x27\x23\x72\xb0\x21\x56\xda\x6f\x6b\xfb\x56\xec\x69\xa9\x38\x93\xdf\x0d\x4f\xde\xc7\xab\xa8\x09\x64\xab\xd1\x07\x73\x7f\x24\x63\x6a\xc9\xc3\xc4\x30\x55\xed\x43\x82\xe4\xe8\x31\x82\x1e\xd1\x9b\xcb\xf3\x6a\x7f\x0d\x3e\xac\xd0\xe6\xcc\x94\xd3\x88\x2a\x69\x90\xbf\xfd\xcd\x7c\xf1\x70\xbc\x64\xf0\x10\x13\xcb\xd9\x7b\xf0\x83\x9b\xb0\x2a\x06\x20\xba\xde\x4a\xf0\xc9\x1b\xd9\x1b\xe4\xfa\xc7\x70\xf0\x41\xc2\xed\xb0\x33\x76\x5c\xcd\x57\x0e\x6e\x82\xd4\x9c\x4a\x76\x78\x7d\x70\x21\x9b\x65\x3e\x0c\x27\x1c\xe8\x3a\x6c\xf4\x03\xbc\xfc\x3d\xd4\x94\x4c\xcc\x5f\x93\xb4\x46\xc6\x28\xdb\x17\xaf\x0d\x4d\x57\xfc\xe3\xa8\x9e\x61\x06\x66\x98\xfc\x57\xcd\x97\xa9\x9a\x1b\x3b\x40\xbc\xe4\xd5\x07\xac\xd1\xf0\x19\x20\xb2\x8f\x79\x5f\x18\xeb\x60\x4a\x86\x9a\x21\x8f\xce\xb4\x9f\x59\x98\xc7\xa7\xf7\x92\x74\x3f\xfc\x7c\x6a\x7e\x7d\xf2\x19\x1c\xe5\x76\x7c\x93\xa9\xb4\xaa\x3c\xa3\x55\xc5\xea\xcb\x35\x5d\x32\x72\x96\xf0\xd7\x2b\x56\xf0\x16\x9e\x5a\xf0\x92\x4d\x93\xe6\x7f\xbc\xb9\x79\xf3\x82\x97\x2c\xdf\x43\x7f\xb6\x75\x39\x25\x83\x95\x52\x1b\x39\x9d\x4c\xaa\x19\x35\x41\x27\xe3\xb9\x58\x4f\xa4\xa2\x8a\xcf\x27\x7c\xbd\x9c\x28\xb1\x39\xd5\xdf\x9f\x96\x62\x29\x4e\x57\xa2\xe6\x3f\x6b\x2d\xa1\x3c\xdd\xad\xb8\x62\x63\x79\xbb\x1c\x64\xc7\x68\x61\x82\xb5\x9e\x87\xd9\xea\x5c\xcf\x74\x22\x6f\x97\xff\xfe\x71\x5d\x36\xa1\x34\x69\x0e\xf6\xc4\x5f\xb7\xb4\x66\xff\x8b\x88\xb4\xa0\xb7\x7c\x2e\x2a\xfb\xff\x5f\x97\x22\x3d\x64\x11\x32\x5d\x7e\x8e\xe8\xa0\x1d\x5c\x3d\x3d\xd7\x7b\xe6\x54\xef\x83\x41\x1e\xcb\xa0\xfc\x3b\x76\x20\x37\x62\x43\x20\x45\x02\x97\x64\x2f\xb6\x35\xa4\x5d\xc2\xb4\x19\x62\x57\x69\x05\xab\x2c\x47\x78\xe1\x53\xd3\x42\x8b\xef\x05\x9f\x73\x5a\x92\x82\x2f\xb9\xa2\xa5\xcb\x27\x35\x2b\x99\x7b\xf2\xa3\x01\xeb\x2e\x3f\x5d\x3d\x3d\x7f\x24\xc9\x12\xef\x4f\x94\x79\xc8\xae\x7f\xd1\xff\x62\xb5\x6c\x41\x93\x7d\x54\xac\xae\x68\xf9\xc3\xdb\x97\xe9\x6a\x3f\xf7\x3f\x0d\x5b\x96\x74\xd0\xb2\x44\x01\xcf\x4d\xc3\x3f\xf2\xad\x83\x6d\x3c\x0d\xff\x68\x81\x2d\x34\x51\xe4\xb4\x43\xae\x0d\xd4\x8e\x2b\xc5\xea\x41\xaf\x29\x99\xc6\xc0\xa2\x7e\x7a\x6d\x53\x03\xf8\x05\x97\x73\x51\x17\xfd\xe0\x9b\xc6\x00\x9f\x57\xb7\x5c\xb1\xbe\xc3\xf0\x4a\x2a\xba\xac\xe9\xba\xdf\x40\xbb\xdd\x6e\xec\xba\x34\xa6\x93\x97\xd3\x3d\xb6\x4c\x9b\xa8\x0e\x15\xae\x7c\x6d\x2f\x08\xee\x87\x56\xfb\xb7\xa6\x02\xd3\x94\x3c\xa3\x1b\x8a\xf9\x3a\x1f\x7f\xf5\x4b\x7c\x6a\xd9\x46\x9f\xbe\x23\x67\xad\x54\x59\x32\x75\x8e\x21\x2e\x43\x7b\x12\x21\x26\xfb\x73\x4c\x0d\x06\x5e\x10\x3b\x08\x67\x90\x3a\xba\x63\xa8\x61\x3c\xab\x25\x53\x6f\x63\x94\xdf\x38\x35\x62\x78\x12\x54\x8e\x0e\x3f\x59\xa9\xe2\xe8\xd3\x2e\x2e\xdf\xb5\xfe\xa2\x3f\x39\x70\x2d\x72\x29\x46\xc6\x92\x3a\xa1\x7d\x3b\xa7\xd9\xcf\x7c\xab\xa6\xe4\xeb\xf1\xd7\xff\x71\xb8\x69\x43\xbe\xd9\x04\x30\x6b\x5a\x7f\x60\x6a\x53\xd2\x39\xb3\x08\xe4\xc5\xbb\xfd\xe4\x39\x53\x7f\xde\xe7\x8f\x85\x8c\xfa\x9a\x44\x16\x5b\x37\xce\x97\x4b\x73\x03\xb9\x6c\x68\xc9\x7f\xa6\x91\xcf\xf6\xcb\x8c\x0a\xff\x6b\x98\xd3\x93\x09\xb9\xb4\x58\x30\x9f\x65\x35\xa9\x3a\x0f\x26\x6f\x5a\x37\xfb\xeb\xf8\x67\x97\x8e\x20\xb6\x98\xd1\xa6\xb6\xef\x34\xb3\x3f\xa5\xb5\xd9\x9c\x81\x6d\x02\x4d\x42\xd3\xda\x1b\xdf\xf0\x58\xa2\xf1\x13\xc4\xf3\x5f\x6f\x37\x9b\x72\x0f\x28\x46\x0e\xb3\xad\xad\x29\x1e\xa7\xd4\x49\x4b\x04\x64\x23\xe0\xb0\x3e\x75\xa8\x70\xe7\xeb\x84\x60\x61\x80\x56\x23\xe3\x24\x5b\x57\xcb\x06\x27\x3a\x89\xb3\x77\xcf\x58\x33\x39\xf0\xb4\x44\x9c\xd3\x4d\x1a\xab\x17\x89\x2b\x8b\x36\x97\x72\xdb\x62\x30\x74\xe0\x98\xa5\x44\x04\x1f\x10\x96\xab\xe1\x9c\x6e\x46\x84\xaa\x76\xdb\xe8\xa4\xb1\x04\xe0\xbc\x83\x82\x9b\x47\x12\xbf\x51\x12\x3c\x2a\x04\xee\xa6\x63\xe6\x0a\x3f\xda\xa0\xf0\x4f\xff\x7f\x00\x00\x00\xff\xff\xb6\x95\xb2\xf1\x0e\x28\x01\x00" func topshotCdcBytes() ([]byte, error) { return bindataRead( @@ -133,7 +133,7 @@ func topshotCdc() (*asset, error) { } info := bindataFileInfo{name: "TopShot.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2d, 0x14, 0xbf, 0xbe, 0xae, 0x12, 0x70, 0x99, 0xdf, 0x10, 0x43, 0xdb, 0xe, 0xb0, 0xe0, 0xe8, 0xc3, 0xb, 0x2f, 0x62, 0xbf, 0x16, 0xbb, 0x77, 0xe9, 0xd7, 0x28, 0x95, 0xd, 0xfb, 0x3a, 0xa6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0x5f, 0x40, 0x39, 0x33, 0x62, 0xea, 0xf5, 0x32, 0xb7, 0xff, 0x3, 0xce, 0x40, 0x7f, 0x89, 0x39, 0x6a, 0xc3, 0x36, 0xbc, 0xe9, 0x38, 0xf, 0xba, 0xf1, 0x46, 0x99, 0x19, 0x50, 0xe0, 0xa5}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 8934b50..22d2bf9 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -101,7 +101,7 @@ // ../../../transactions/scripts/subeditions/get_nextSubeditionID.cdc (325B) // ../../../transactions/scripts/subeditions/get_nft_subedition.cdc (236B) // ../../../transactions/scripts/subeditions/get_subedition_by_id.cdc (445B) -// ../../../transactions/scripts/users/is_account_all_set_up.cdc (471B) +// ../../../transactions/scripts/users/is_account_all_set_up.cdc (470B) // ../../../transactions/shardedCollection/batch_from_sharded.cdc (1.14kB) // ../../../transactions/shardedCollection/setup_sharded_collection.cdc (1.254kB) // ../../../transactions/shardedCollection/transfer_from_sharded.cdc (1.096kB) @@ -2207,7 +2207,7 @@ func TransactionsScriptsSubeditionsGet_subedition_by_idCdc() (*asset, error) { return a, nil } -var _TransactionsScriptsUsersIs_account_all_set_upCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xc1\x6e\xf2\x30\x10\x84\xef\x7e\x8a\xf9\x39\x20\x72\x49\xee\xe8\xa7\x12\x45\xe2\x56\x14\xa9\x79\x01\xc7\x2c\xc4\xc2\xd9\x8d\xec\xb5\x7a\xa8\xfa\xee\x15\x60\x52\xb5\xbd\xd4\x27\xcf\xce\x8c\x3f\xdb\x7e\x9c\x24\x2a\x0e\xc2\xfb\xcc\x67\xdf\x07\xea\xe4\x42\x8c\x53\x94\x11\x8b\x9f\xe3\x85\x29\xf9\xd6\xba\xcb\x61\xdf\x95\x58\x51\xb3\xdb\xc9\xf4\x3a\x88\x16\xb7\xa8\x85\x31\x4d\xd3\x60\x37\x90\xbb\xc0\x9f\x60\x19\xd6\x39\xc9\xac\x18\x6c\x42\x4f\xc4\x48\xa4\xc8\x13\x54\x30\x48\x38\xa2\xf5\xcc\xd6\x05\xc2\x61\xdf\xa5\xfa\x5a\x37\xd6\x39\x4a\x69\x65\x43\xa8\x70\xca\x8c\xd1\x7a\x5e\xd9\xe3\x31\x52\x4a\x6b\x6c\xef\x9b\x6a\x8d\x67\x91\x80\x77\x03\x00\x81\x74\x26\x6d\x70\x26\xdd\xde\xc5\xa3\x56\xdd\x52\x91\x34\xc7\xf9\x4a\xb5\xb3\x93\xed\x7d\xf0\xea\x29\xd5\xbd\xc4\x28\x6f\xff\x6f\xb9\xeb\x5a\x96\x27\xd5\x3b\x09\x81\x9c\x7a\xe1\xa7\x55\x33\xe5\x3e\x78\xd7\xbc\xc8\x48\xac\x5f\x4e\x85\x7f\x1b\xb0\x0f\x58\x2e\xe7\x03\xfe\x46\x29\xdf\xfa\x8d\xf2\x7b\xd6\xde\xb0\xad\xd5\xe1\x41\x32\x1f\xe6\x33\x00\x00\xff\xff\x7d\x76\x7b\xb7\xd7\x01\x00\x00" +var _TransactionsScriptsUsersIs_account_all_set_upCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\xf9\x73\x08\xf1\xc5\xbe\x87\x3f\x85\x34\x90\x5b\x83\xa1\x7e\x01\x59\x5e\xc7\xc2\xb2\xd6\x48\x2b\x7a\x28\x7d\xf7\x12\x47\x71\x69\x7b\xa9\x4e\x9a\x9d\xd9\xfd\x96\xb5\xd3\xcc\x41\x70\x61\x7f\x4e\xfe\x6a\x5b\x47\x0d\x8f\xe4\xd1\x07\x9e\xb0\xf9\x59\xde\xa8\x9c\xaf\xb5\x19\x2f\xe7\x26\xc7\xb2\x5a\xdd\x86\xe7\xd7\x81\x25\xbb\x59\x6d\x94\xaa\xaa\x0a\xa7\x81\xcc\x08\xdb\x43\x7b\x68\x63\x38\x79\xc1\xa0\x23\x5a\x22\x8f\x48\x82\x34\x43\x18\x03\xbb\x6e\x9d\x73\x39\x37\xb1\xbc\x75\x2b\x6d\x0c\xc5\xb8\xd3\xce\x15\xe8\x93\xc7\xa4\xad\xdf\xe9\xae\x0b\x14\xe3\x1e\xc7\xfb\xa7\xd8\xe3\x99\xd9\xe1\x5d\x01\x80\x23\x59\x41\x07\x5c\x49\x8e\x77\xf1\x68\x2b\x96\x54\x20\x49\x61\xdd\xa8\x34\x7a\xd6\xad\x75\x56\x2c\xc5\xb2\xe5\x10\xf8\xed\xff\x92\xbb\xbd\x6d\xde\xab\x3c\xb1\x73\x64\xc4\xb2\x7f\xda\x55\x73\x6a\x9d\x35\xd5\x0b\x4f\xe4\xe5\xcb\x29\xf0\xef\x00\x6f\x1d\xb6\xdb\x75\xc0\xdf\x28\xf9\xaa\xdf\x28\xbf\x6b\xf5\x82\xad\xb5\x0c\x0f\x92\xfa\x50\x9f\x01\x00\x00\xff\xff\xa8\x5b\xad\x21\xd6\x01\x00\x00" func TransactionsScriptsUsersIs_account_all_set_upCdcBytes() ([]byte, error) { return bindataRead( @@ -2223,7 +2223,7 @@ func TransactionsScriptsUsersIs_account_all_set_upCdc() (*asset, error) { } info := bindataFileInfo{name: "../../../transactions/scripts/users/is_account_all_set_up.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0x0, 0x3b, 0x96, 0x17, 0xb4, 0x4, 0x47, 0x2, 0xe, 0x1b, 0xb3, 0x76, 0x37, 0xa, 0x90, 0x39, 0xff, 0x58, 0x9e, 0x38, 0x30, 0x10, 0xea, 0x7e, 0x11, 0x33, 0xf6, 0x37, 0x31, 0xad, 0x53}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0x8a, 0x4b, 0xdf, 0x17, 0x4, 0x6, 0xc9, 0x99, 0x84, 0xfb, 0x7e, 0x8, 0x43, 0x1b, 0x2b, 0x64, 0xd6, 0x25, 0x2, 0xee, 0xae, 0x60, 0x50, 0xe6, 0x16, 0x6b, 0x9f, 0xc8, 0x1c, 0xd6, 0x1}} return a, nil }