Overview
TokenID
754
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
Dopey
Compiler Version
v0.8.28+commit.7893614a
ZkSolc Version
v1.5.11
Optimization Enabled:
Yes with Mode 3
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.28;import {ERC721A} from "erc721a/contracts/ERC721A.sol";import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";import {ERC2981} from "@openzeppelin/contracts/token/common/ERC2981.sol";import {BitMaps} from "@openzeppelin/contracts/utils/structs/BitMaps.sol";import {OperatorFilterer} from "closedsea/src/OperatorFilterer.sol";import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";error MaxSupplyExceeded();error PublicSaleClosed();error TransfersLocked();error NotAllowedByRegistry();error RegistryNotSet();error WrongWeiSent();error MaxFeeExceeded();error InputLengthsMismatch();error InvalidMerkleProof();error InvalidLaunchpadFee();error InvalidLaunchpadFeeAddress();error TransferFailed();interface IRegistry {function isAllowedOperator(address operator) external view returns (bool);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v4.2.3// Creator: Chiru Labspragma solidity ^0.8.4;import './IERC721A.sol';/*** @dev Interface of ERC721 token receiver.*/interface ERC721A__IERC721Receiver {function onERC721Received(address operator,address from,uint256 tokenId,bytes calldata data) external returns (bytes4);}/*** @title ERC721A** @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)* Non-Fungible Token Standard, including the Metadata extension.* Optimized for lower gas during batch mints.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)pragma solidity ^0.8.20;import {Context} from "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** The initial owner is set to the address provided by the deployer. This can* later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;/*** @dev The caller account is not authorized to perform an operation.*/error OwnableUnauthorizedAccount(address account);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/common/ERC2981.sol)pragma solidity ^0.8.20;import {IERC2981} from "../../interfaces/IERC2981.sol";import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol";/*** @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.** Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for* specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.** Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the* fee is specified in basis points by default.** IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See* https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the ERC. Marketplaces are expected to* voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.*/abstract contract ERC2981 is IERC2981, ERC165 {struct RoyaltyInfo {address receiver;uint96 royaltyFraction;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/structs/BitMaps.sol)pragma solidity ^0.8.20;/*** @dev Library for managing uint256 to bool mapping in a compact and efficient way, provided the keys are sequential.* Largely inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor].** BitMaps pack 256 booleans across each bit of a single 256-bit slot of `uint256` type.* Hence booleans corresponding to 256 _sequential_ indices would only consume a single slot,* unlike the regular `bool` which would consume an entire slot for a single value.** This results in gas savings in two ways:** - Setting a zero value to non-zero only once every 256 times* - Accessing the same warm slot for every 256 _sequential_ indices*/library BitMaps {struct BitMap {mapping(uint256 bucket => uint256) _data;}/*** @dev Returns whether the bit at `index` is set.*/function get(BitMap storage bitmap, uint256 index) internal view returns (bool) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.4;/// @notice Optimized and flexible operator filterer to abide to OpenSea's/// mandatory on-chain royalty enforcement in order for new collections to/// receive royalties./// For more information, see:/// See: https://github.com/ProjectOpenSea/operator-filter-registryabstract contract OperatorFilterer {/// @dev The default OpenSea operator blocklist subscription.address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;/// @dev The OpenSea operator filter registry.address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;/// @dev Registers the current contract to OpenSea's operator filter,/// and subscribe to the default OpenSea operator blocklist./// Note: Will not revert nor update existing settings for repeated registration.function _registerForOperatorFiltering() internal virtual {_registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);}/// @dev Registers the current contract to OpenSea's operator filter./// Note: Will not revert nor update existing settings for repeated registration.function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)internal
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/MerkleProof.sol)// This file was procedurally generated from scripts/generate/templates/MerkleProof.js.pragma solidity ^0.8.20;import {Hashes} from "./Hashes.sol";/*** @dev These functions deal with verification of Merkle Tree proofs.** The tree and the proofs can be generated using our* https://github.com/OpenZeppelin/merkle-tree[JavaScript library].* You will find a quickstart guide in the readme.** WARNING: You should avoid using leaf values that are 64 bytes long prior to* hashing, or use a hash function other than keccak256 for hashing leaves.* This is because the concatenation of a sorted pair of internal nodes in* the Merkle tree could be reinterpreted as a leaf value.* OpenZeppelin's JavaScript library generates Merkle trees that are safe* against this attack out of the box.** IMPORTANT: Consider memory side-effects when using custom hashing functions* that access memory in an unsafe way.** NOTE: This library supports proof verification for merkle trees built using
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v4.2.3// Creator: Chiru Labspragma solidity ^0.8.4;/*** @dev Interface of ERC721A.*/interface IERC721A {/*** The caller must own the token or be an approved operator.*/error ApprovalCallerNotOwnerNorApproved();/*** The token does not exist.*/error ApprovalQueryForNonexistentToken();/*** Cannot query the balance for the zero address.*/error BalanceQueryForZeroAddress();/**
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)pragma solidity ^0.8.20;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}function _contextSuffixLength() internal view virtual returns (uint256) {return 0;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC2981.sol)pragma solidity ^0.8.20;import {IERC165} from "../utils/introspection/IERC165.sol";/*** @dev Interface for the NFT Royalty Standard.** A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal* support for royalty payments across all NFT marketplaces and ecosystem participants.*/interface IERC2981 is IERC165 {/*** @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of* exchange. The royalty amount is denominated and should be paid in that same unit of exchange.** NOTE: ERC-2981 allows setting the royalty to 100% of the price. In that case all the price would be sent to the* royalty receiver and 0 tokens to the seller. Contracts dealing with royalty should consider empty transfers.*/function royaltyInfo(uint256 tokenId,uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol)pragma solidity ^0.8.20;import {IERC165} from "./IERC165.sol";/*** @dev Implementation of the {IERC165} interface.** Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check* for the additional interface id that will be supported. For example:** ```solidity* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);* }* ```*/abstract contract ERC165 is IERC165 {/*** @dev See {IERC165-supportsInterface}.*/function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {return interfaceId == type(IERC165).interfaceId;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/Hashes.sol)pragma solidity ^0.8.20;/*** @dev Library of standard hash functions.** _Available since v5.1._*/library Hashes {/*** @dev Commutative Keccak256 hash of a sorted pair of bytes32. Frequently used when working with merkle proofs.** NOTE: Equivalent to the `standardNodeHash` in our https://github.com/OpenZeppelin/merkle-tree[JavaScript library].*/function commutativeKeccak256(bytes32 a, bytes32 b) internal pure returns (bytes32) {return a < b ? efficientKeccak256(a, b) : efficientKeccak256(b, a);}/*** @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory.*/function efficientKeccak256(bytes32 a, bytes32 b) internal pure returns (bytes32 value) {assembly ("memory-safe") {mstore(0x00, a)
12345678910111213141516171819202122232425// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)pragma solidity ^0.8.20;/*** @dev Interface of the ERC-165 standard, as defined in the* https://eips.ethereum.org/EIPS/eip-165[ERC].** Implementers can declare support of contract interfaces, which can then be* queried by others ({ERC165Checker}).** For an implementation, see {ERC165}.*/interface IERC165 {/*** @dev Returns true if this contract implements the interface defined by* `interfaceId`. See the corresponding* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]* to learn more about how these ids are created.** This function call must use less than 30 000 gas.*/function supportsInterface(bytes4 interfaceId) external view returns (bool);}
1234567891011121314151617181920212223242526{"viaIR": false,"codegen": "yul","remappings": ["@rari-capital/solmate/=lib/solmate/","ds-test/=lib/ds-test/src/","forge-std/=lib/forge-std/src/","murky/=lib/murky/src/","@openzeppelin/=lib/openzeppelin-contracts/","solarray/=lib/solarray/src/","solady/=lib/solady/","seaport-sol/=lib/seaport-sol/","seaport-types/=lib/seaport-types/","seaport-core/=lib/seaport-core/","seaport/=contracts/","closedsea/=lib/closedsea/","erc721a/=lib/closedsea/lib/erc721a/","erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/","erc721a-upgradeable/=lib/closedsea/lib/erc721a-upgradeable/contracts/","halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/","openzeppelin-contracts-upgradeable/=lib/closedsea/lib/openzeppelin-contracts-upgradeable/","openzeppelin-contracts/=lib/openzeppelin-contracts/","operator-filter-registry/=lib/closedsea/lib/operator-filter-registry/","solmate/=lib/solmate/src/"],"evmVersion": "cancun",
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidDefaultRoyalty","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidDefaultRoyaltyReceiver","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidTokenRoyalty","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidTokenRoyaltyReceiver","type":"error"},{"inputs":[],"name":"InputLengthsMismatch","type":"error"},{"inputs":[],"name":"InvalidLaunchpadFee","type":"error"},{"inputs":[],"name":"InvalidLaunchpadFeeAddress","type":"error"},{"inputs":[],"name":"InvalidMerkleProof","type":"error"},{"inputs":[],"name":"MaxFeeExceeded","type":"error"},{"inputs":[],"name":"MaxSupplyExceeded","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotAllowedByRegistry","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"PublicSaleClosed","type":"error"},{"inputs":[],"name":"RegistryNotSet","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"TransfersLocked","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WrongWeiSent","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"feeAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"feeAmount","type":"uint256"}],"name":"LaunchpadFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"breakLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endTimePhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endTimePhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endTimePhase3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endTimePhase4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialTransferLockOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRegistryActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchpadCutBps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchpadFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchpadFeeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPhase3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPhase4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyPhase3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyPhase4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootPhase1","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootPhase2","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootPhase3","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootPhase4","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPhase1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPhase2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPhase3","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPhase4","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePhase3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePhase4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"registryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newEndTime","type":"uint256"}],"name":"setEndTimePhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newEndTime","type":"uint256"}],"name":"setEndTimePhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newEndTime","type":"uint256"}],"name":"setEndTimePhase3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newEndTime","type":"uint256"}],"name":"setEndTimePhase4","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isRegistryActive","type":"bool"}],"name":"setIsRegistryActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"}],"name":"setMaxPerWalletPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"}],"name":"setMaxPerWalletPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"}],"name":"setMaxPerWalletPhase3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"}],"name":"setMaxPerWalletPhase4","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupplyPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupplyPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupplyPhase3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupplyPhase4","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRootPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRootPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRootPhase3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRootPhase4","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"placeholderURI","type":"string"}],"name":"setPlaceholderBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPricePhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPricePhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPricePhase3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPricePhase4","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_registryAddress","type":"address"}],"name":"setRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newStartTime","type":"uint256"}],"name":"setStartTimePhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newStartTime","type":"uint256"}],"name":"setStartTimePhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newStartTime","type":"uint256"}],"name":"setStartTimePhase3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newStartTime","type":"uint256"}],"name":"setStartTimePhase4","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTimePhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTimePhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTimePhase3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTimePhase4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyPhase3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyPhase4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMintsPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMintsPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMintsPhase3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMintsPhase4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010007db989ea76dfd1ba892ef46399ed239436ccfe85e2ebdff745fcb4ecff200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0002000000000002000b00000000000200010000000103550000006003100270000006d90030019d0000008004000039000000400040043f0000000100200190000000290000c13d000a00000004001d000006d902300197000000040020008c0000193f0000413d000000000301043b000000e0033002700000070e0030009c000000580000a13d0000070f0030009c000000760000213d000007310030009c000000dc0000a13d000007320030009c000001780000a13d000007330030009c000003280000a13d000007340030009c000004e50000213d000007370030009c00000b440000613d000007380030009c0000193f0000c13d0000000001000416000000000001004b0000193f0000c13d1b5f1a140000040f0000000f01000039000000000201041a000007d402200197000000000021041b000000000100001900001b600001042e0000000001000416000000000001004b0000193f0000c13d0000000501000039000000800010043f000006da01000041000000a00010043f0000010001000039000000400010043f0000000401000039000000c00010043f000006db01000041000000e00010043f0000000001000411000006dc061001980000003e0000c13d0000079901000041000000000010043f000000040000043f000007050100004100001b6100010430000000000100041a000006dd02100197000000000262019f000000000020041b0000000002000414000006dc05100197000006d90020009c000006d902008041000000c001200210000006de011001c70000800d020000390000000303000039000006df04000041000a00000006001d1b5f1b550000040f00000001002001900000193f0000613d000000800400043d000006e00040009c000000ae0000413d000007b401000041000000000010043f0000004101000039000000040010043f000007050100004100001b6100010430000007520030009c000000870000a13d000007530030009c000000cd0000a13d000007540030009c0000013e0000a13d000007550030009c0000031d0000a13d000007560030009c0000039f0000213d000007590030009c0000096d0000613d0000075a0030009c0000193f0000c13d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b1b5f1b0a0000040f000006dc01100197000000400200043d0000000000120435000006d90020009c000006d90200804100000040012002100000079a011001c700001b600001042e000007100030009c000000f50000a13d000007110030009c000001850000a13d000007120030009c000003890000a13d000007130030009c000004f40000213d000007160030009c00000b490000613d000007170030009c0000193f0000c13d0000000001000416000000000001004b0000193f0000c13d0000002b0100003900000e480000013d000007740030009c000000be0000213d000007840030009c000001510000213d0000078c0030009c000001fd0000213d000007900030009c000005030000613d000007910030009c000009780000613d000007920030009c0000193f0000c13d000000440020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000402100370000000000202043b000b00000002001d000006dc0020009c0000193f0000213d0000002401100370000000000101043b000a00000001001d000007b80010009c0000193f0000213d000000000100041a000006dc021001970000000001000411000000000012004b00000ec80000c13d0000000a01000029000003e90010008c000008840000813d0000000b0000006b0000120e0000c13d000007ce010000410000003a0000013d0000000506000039000000000106041a000000010210019000000001031002700000007f0330618f0000001f0030008c00000000010000390000000101002039000000000012004b0000010a0000613d000007b401000041000000000010043f0000002201000039000000040010043f000007050100004100001b6100010430000007750030009c000001650000213d0000077d0030009c0000022a0000213d000007810030009c0000050f0000613d000007820030009c000009920000613d000007830030009c0000193f0000c13d0000000001000416000000000001004b0000193f0000c13d0000002d0100003900000e480000013d000007650030009c000001920000213d0000076d0030009c0000028f0000213d000007710030009c0000065e0000613d000007720030009c00000c030000613d000007730030009c0000193f0000c13d0000000001000416000000000001004b0000193f0000c13d000000130100003900000e480000013d000007430030009c000001d80000213d0000074b0030009c000002bf0000213d0000074f0030009c000008060000613d000007500030009c00000c5e0000613d000007510030009c0000193f0000c13d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000006dc0010009c0000193f0000213d000000000001004b00000f010000c13d000007b101000041000000000010043f000007a20100004100001b6100010430000007220030009c000001e50000213d0000072a0030009c000002ea0000213d0000072e0030009c000008110000613d0000072f0030009c00000c690000613d000007300030009c0000193f0000c13d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f000000130100003900000e400000013d000000200030008c0000012a0000413d000900000003001d000b00000004001d000000000060043f0000000001000414000006d90010009c000006d901008041000000c001100210000006e1011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d0000000b040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000009010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000005060000390000012a0000813d000000000002041b0000000102200039000000000012004b000001260000413d0000001f0040008c000003940000a13d000b00000004001d000000000060043f0000000001000414000006d90010009c000006d901008041000000c001100210000006e1011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d0000000b07000029000007d502700198000000000101043b00000e4c0000c13d0000002003000039000000050600003900000e590000013d0000075e0030009c000001f20000213d000007620030009c0000051a0000613d000007630030009c000008230000613d000007640030009c0000193f0000c13d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f000000180100003900000e400000013d000007850030009c0000023b0000213d000007890030009c0000051f0000613d0000078a0030009c00000a270000613d0000078b0030009c0000193f0000c13d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000006dc0010009c0000193f0000213d000000000010043f000000210100003900000c290000013d000007760030009c0000024d0000213d0000077a0030009c000005930000613d0000077b0030009c00000a320000613d0000077c0030009c0000193f0000c13d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f0000001e0100003900000e400000013d0000073c0030009c000002710000213d000007400030009c000006630000613d000007410030009c00000a380000613d000007420030009c0000193f0000c13d0000000001000416000000000001004b0000193f0000c13d000000250100003900000e480000013d0000071b0030009c000002820000213d0000071f0030009c000006680000613d000007200030009c00000a400000613d000007210030009c0000193f0000c13d0000000001000416000000000001004b0000193f0000c13d000000170100003900000e480000013d000007660030009c000002ae0000213d0000076a0030009c000006730000613d0000076b0030009c00000c080000613d0000076c0030009c0000193f0000c13d000000240020008c0000193f0000413d0000000003000416000000000003004b0000193f0000c13d0000000403100370000000000403043b000006e20040009c0000193f0000213d0000002303400039000000000023004b0000193f0000813d0000000405400039000000000351034f000000000303043b000006e20030009c0000193f0000213d00000024044000390000000006430019000000000026004b0000193f0000213d000000000200041a000006dc062001970000000002000411000000000026004b00000eab0000c13d0000001102000039000000000702041a000000010070019000000001067002700000007f0660618f0000001f0060008c00000000080000390000000108002039000000000787013f0000000100700190000000b80000c13d000000200060008c000001d00000413d000000000020043f0000001f073000390000000507700270000006e80770009a000000200030008c000006eb070040410000001f066000390000000506600270000006e80660009a000000000067004b000001d00000813d000000000007041b0000000107700039000000000067004b000001cc0000413d0000001f0030008c000012190000a13d000000000020043f000007d506300198000013220000c13d000006eb050000410000000007000019000013370000013d000007440030009c000002fb0000213d000007480030009c000008280000613d000007490030009c00000c740000613d0000074a0030009c0000193f0000c13d0000000001000416000000000001004b0000193f0000c13d0000001b0100003900000e480000013d000007230030009c0000030c0000213d000007270030009c000008330000613d000007280030009c00000c7f0000613d000007290030009c0000193f0000c13d0000000001000416000000000001004b0000193f0000c13d000000230100003900000e480000013d0000075f0030009c000005bf0000613d000007600030009c0000086e0000613d000007610030009c0000193f0000c13d0000000001000416000000000001004b0000193f0000c13d0000001f0100003900000e480000013d0000078d0030009c000005fd0000613d0000078e0030009c00000a4b0000613d0000078f0030009c0000193f0000c13d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000201043b000000000002004b00000eb00000613d0000000301000039000000000101041a000000000021004b00000eb00000a13d000b00000002001d000000000020043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000101041a0000079b001001980000000b0100002900000eb00000c13d000000000010043f0000000901000039000000200010043f000000400200003900000000010000191b5f1b400000040f000000000101041a0000006e0000013d0000077e0030009c0000061c0000613d0000077f0030009c00000a500000613d000007800030009c0000193f0000c13d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f0000002e0100003900000e400000013d000007860030009c000006270000613d000007870030009c00000a550000613d000007880030009c0000193f0000c13d0000000001000416000000000001004b0000193f0000c13d0000000401000039000000000101041a000007d6011001670000000302000039000000000202041a0000000001120019000000800010043f000007930100004100001b600001042e000007770030009c000006590000613d000007780030009c00000a5c0000613d000007790030009c0000193f0000c13d0000000001000416000000000001004b0000193f0000c13d000000000100041a000006dc011001970000000002000411000000000021004b00000eab0000c13d000007b0010000410000000000100443000000000100041000000004001004430000000001000414000006d90010009c000006d901008041000000c001100210000007a8011001c70000800a020000391b5f1b5a0000040f0000000100200190000016ab0000613d000000000301043b0000000001000414000006d90010009c000006d901008041000000c001100210000000000003004b000010ae0000c13d0000000002000411000010b20000013d0000073d0030009c000006960000613d0000073e0030009c00000a680000613d0000073f0030009c0000193f0000c13d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f000000200100003900000e400000013d0000071c0030009c000006b50000613d0000071d0030009c00000b1f0000613d0000071e0030009c0000193f0000c13d0000000001000416000000000001004b0000193f0000c13d0000000f01000039000000000101041a000000180110027000000a3c0000013d0000076e0030009c000006ba0000613d0000076f0030009c00000c130000613d000007700030009c0000193f0000c13d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b0000193f0000c13d000000000200041a000006dc032001970000000002000411000000000023004b00000eab0000c13d0000000f02000039000000000302041a000007ab00300198000010cf0000c13d000007bc01000041000000000010043f000007a20100004100001b6100010430000007670030009c000008010000613d000007680030009c00000c1e0000613d000007690030009c0000193f0000c13d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f0000002b0100003900000e400000013d0000074c0030009c000008880000613d0000074d0030009c00000c840000613d0000074e0030009c0000193f0000c13d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d000006dc0010009c0000193f0000213d000000000100041a000006dc021001970000000001000411000000000012004b00000ec80000c13d000007b0010000410000000000100443000000000100041000000004001004430000000001000414000006d90010009c000006d901008041000000c001100210000007a8011001c70000800a020000391b5f1b5a0000040f0000000100200190000016ab0000613d000000000301043b0000000001000414000006d90010009c000006d901008041000000c001100210000000000003004b000010fa0000c13d0000000b02000029000010fe0000013d0000072b0030009c0000089c0000613d0000072c0030009c00000c8f0000613d0000072d0030009c0000193f0000c13d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f0000001c0100003900000e400000013d000007450030009c000008b10000613d000007460030009c00000e270000613d000007470030009c0000193f0000c13d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f000000140100003900000e400000013d000007240030009c000009680000613d000007250030009c00000e2c0000613d000007260030009c0000193f0000c13d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f0000001b0100003900000e400000013d0000075b0030009c00000b3a0000613d0000075c0030009c00000e310000613d0000075d0030009c0000193f0000c13d0000000001000416000000000001004b0000193f0000c13d0000001e0100003900000e480000013d000007390030009c00000c2e0000613d0000073a0030009c00000e360000613d0000073b0030009c0000193f0000c13d000000440020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000402100370000000000202043b000b00000002001d000006dc0020009c0000193f0000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000a00000002001d000000000012004b0000193f0000c13d0000000f01000039000000000101041a000000ff00100190000003560000613d000007a401000041000000000010043f00000000010004100000001a0010043f0000000b010000290000003a0010043f0000000001000414000006d90010009c000006d901008041000000c001100210000007a5011001c7000006fe020000411b5f1b5a0000040f00000001002001900000112b0000613d0000003a0000043f0000000f01000039000000000101041a0000ff0000100190000015300000c13d0000000001000411000000000010043f0000000a01000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b0000000b02000029000000000020043f000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000201041a000007d7022001970000000a03000029000000000232019f000000000021041b000000400100043d0000000000310435000006d90010009c000006d90100804100000040011002100000000002000414000006d90020009c000006d902008041000000c002200210000000000112019f000006e1011001c70000800d020000390000000303000039000007ad0400004100000000050004110000000b0600002900000c4e0000013d000007180030009c00000c330000613d000007190030009c00000e440000613d0000071a0030009c0000193f0000c13d0000000001000416000000000001004b0000193f0000c13d0000002c0100003900000e480000013d000000000004004b0000000001000019000003980000613d000000a00100043d0000000302400210000007d60220027f000007d602200167000000000121016f0000000102400210000000000121019f00000e650000013d000007570030009c00000b3f0000613d000007580030009c0000193f0000c13d000000440020008c0000193f0000413d0000000003000416000000000003004b0000193f0000c13d0000000403100370000000000303043b000006e20030009c0000193f0000213d0000002304300039000000000024004b0000193f0000813d0000000404300039000000000441034f000000000504043b000006e20050009c000000520000213d00000005045002100000003f064000390000079406600197000007a30060009c000000520000213d0000008006600039000000400060043f000000800050043f00000024033000390000000004340019000000000024004b0000193f0000213d000000000005004b000003cb0000613d000000a005000039000000000631034f000000000606043b000006dc0060009c0000193f0000213d00000000056504360000002003300039000000000043004b000003c30000413d0000002403100370000000000303043b000006e20030009c0000193f0000213d0000002304300039000000000024004b0000000005000019000007b205008041000007b204400197000000000004004b0000000006000019000007b206004041000007b20040009c000000000605c019000000000006004b0000193f0000c13d0000000404300039000000000441034f000000000404043b000006e20040009c000000520000213d00000005054002100000003f065000390000079406600197000000400700043d0000000006670019000500000007001d000000000076004b00000000070000390000000107004039000006e20060009c000000520000213d0000000100700190000000520000c13d000000400060043f00000005060000290000000006460436000600000006001d00000024033000390000000005350019000000000025004b0000193f0000213d000000000004004b000003ff0000613d0000000502000029000000000431034f000000000404043b000000200220003900000000004204350000002003300039000000000053004b000003f80000413d000000000100041a000006dc011001970000000002000411000000000021004b000015240000c13d00000005010000290000000002010433000000800100043d000000000021004b000016290000c13d000000000001004b000011290000613d000800000000001d000000050100002900000000010104330000000e02000039000000000302041a000000000003004b000004240000613d0000000806000029000000000061004b0000182b0000a13d0000000402000039000000000202041a000007d6022001670000000304000039000000000404041a0000000004240019000000050260021000000006052000290000000005050433000000000054001a000012d30000413d0000000004540019000000000034004b000004260000a13d00000efd0000013d00000008060000290000000502600210000000000061004b0000182b0000a13d00000006012000290000000001010433000900000001001d000000000001004b0000183d0000613d000000a00120003900000000030104330000000301000039000000000101041a000b00000001001d0000000f01000039000000000201041a00000703002001980000047f0000613d000700000003001d000000400400043d000a00000004001d00000704010000410000000000140435000000040140003900000000030004110000000000310435000006d90040009c000006d901000041000000000104401900000040011002100000000003000414000006d90030009c000006d903008041000000c003300210000000000113019f00000705011001c70000001802200270000006dc022001971b5f1b5a0000040f0000000a0a0000290000006003100270000006d903300197000000200030008c00000020040000390000000004034019000000200640019000000000056a00190000045a0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000004560000c13d0000001f07400190000004670000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f00000000006504350000000100200190000018450000613d0000001f01400039000000600210018f0000000001a20019000000000021004b00000000020000390000000102004039000006e20010009c000000520000213d0000000100200190000000520000c13d000000400010043f000000200030008c0000193f0000413d00000000010a0433000000000001004b0000000002000039000000010200c039000000000021004b0000193f0000c13d000000000001004b0000000703000029000011dd0000613d000006dc01300197000a00000001001d000000000010043f0000000801000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d0000000902000029000007b5022000d1000000000101043b000000000301041a0000000002230019000000000021041b0000070a0100004100000000001004430000000001000414000006d90010009c000006d901008041000000c0011002100000070b011001c70000800b020000391b5f1b5a0000040f0000000100200190000016ab0000613d000000000101043b000700000001001d0000000b01000029000000000010043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d0000000702000029000000a0022002100000000903000029000000010030008c0000000003000019000007a603006041000000000223019f0000000a06000029000000000262019f000000000101043b000000000021041b0000000001000414000006d90010009c000006d901008041000000c001100210000006de011001c70000800d0200003900000004030000390000070c0400004100000000050000190000000b070000291b5f1b550000040f00000001002001900000193f0000613d0000000b02000029000900090020002d0000000b070000290000000107700039000000090070006c000004da0000613d0000000001000414000006d90010009c000006d901008041000000c001100210000006de011001c70000800d0200003900000004030000390000070c0400004100000000050000190000000a06000029000b00000007001d1b5f1b550000040f0000000100200190000004c70000c13d0000193f0000013d0000000a0000006b000018410000613d00000003010000390000000902000029000000000021041b0000000802000029000800010020003d000000800100043d000000080010006b0000040c0000413d000011290000013d000007350030009c00000c520000613d000007360030009c0000193f0000c13d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f0000001a0100003900000e400000013d000007140030009c00000c570000613d000007150030009c0000193f0000c13d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f000000300100003900000e400000013d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000006dc0010009c0000193f0000213d000000000010043f000000290100003900000c290000013d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f000000220100003900000e400000013d0000000001000416000000000001004b0000193f0000c13d000000220100003900000e480000013d000000440020008c0000193f0000413d0000000402100370000000000202043b000a00000002001d000006dc0020009c0000193f0000213d0000002401100370000000000201043b0000000f01000039000000000101041a000000ff00100190000005400000613d000900000002001d000007a401000041000000000010043f00000000010004100000001a0010043f0000000a010000290000003a0010043f0000000001000414000006d90010009c000006d901008041000000c001100210000007a5011001c7000006fe020000411b5f1b5a0000040f0000000100200190000010d70000613d0000003a0000043f0000000f01000039000000000101041a00000009020000290000ff0000100190000015300000c13d000000000002004b000011890000613d000900000002001d000000000020043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000101041a0000079b00100198000011890000c13d000000000001004b000005700000c13d0000000301000039000000000101041a0000000902000029000000000021004b000011890000a13d000b00000002001d0000000b01000029000000010110008a000b00000001001d000000000010043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000101041a000000000001004b0000055d0000613d000b06dc0010019b00000000020004110000000b0020006c000013480000c13d0000000901000029000000000010043f0000000901000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d0000000a02000029000006dc06200197000000000101043b000000000201041a000006dd02200197000000000262019f000000000021041b0000000001000414000006d90010009c000006d901008041000000c001100210000006de011001c70000800d020000390000000403000039000007ca040000410000000b05000029000000090700002900000c4e0000013d000000440020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000002402100370000000000202043b000b00000002001d0000000401100370000000000101043b000000000010043f0000000201000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000101041a000006dc02100198000005b00000c13d0000000101000039000000000101041a000006dc02100197000a00000002001d000000a0021002700000000b010000291b5f1a060000040f000027100110011a000000400200043d000000200320003900000000001304350000000a010000290000000000120435000006d90020009c000006d9020080410000004001200210000007be011001c700001b600001042e000000240020008c0000193f0000413d0000000003000416000000000003004b0000193f0000c13d0000000403100370000000000403043b000006e20040009c0000193f0000213d0000002303400039000000000023004b0000193f0000813d0000000405400039000000000351034f000000000303043b000006e20030009c0000193f0000213d00000024044000390000000006430019000000000026004b0000193f0000213d000000000200041a000006dc062001970000000002000411000000000026004b00000eab0000c13d0000001002000039000000000702041a000000010070019000000001067002700000007f0660618f0000001f0060008c00000000080000390000000108002039000000000787013f0000000100700190000000b80000c13d000000200060008c000005f50000413d000000000020043f0000001f073000390000000507700270000006e70770009a000000200030008c000006e6070040410000001f066000390000000506600270000006e70660009a000000000067004b000005f50000813d000000000007041b0000000107700039000000000067004b000005f10000413d0000001f0030008c000012190000a13d000000000020043f000007d5063001980000132d0000c13d000006e6050000410000000007000019000013370000013d0000000001000416000000000001004b0000193f0000c13d0000000503000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000b80000c13d000000800010043f000000000004004b00000ecd0000613d000000000030043f000000000001004b000000000200001900000ed20000613d000007cd030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000006140000413d00000ed20000013d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f000000120100003900000e400000013d000000240020008c0000193f0000413d0000000401100370000000000401043b0000002a01000039000000000101041a000000000001004b000006400000613d000a00000001001d000b00000004001d0000070a0100004100000000001004430000000001000414000006d90010009c000006d901008041000000c0011002100000070b011001c70000800b020000391b5f1b5a0000040f0000000100200190000016ab0000613d000000000101043b0000000a0010006c0000000b04000029000006550000413d0000002b01000039000000000101041a000000000001004b00000ee30000613d000a00000001001d000b00000004001d0000070a0100004100000000001004430000000001000414000006d90010009c000006d901008041000000c0011002100000070b011001c70000800b020000391b5f1b5a0000040f0000000100200190000016ab0000613d000000000101043b0000000a0010006c0000000b0400002900000ee30000a13d000007c301000041000000000010043f000007a20100004100001b61000104300000000001000416000000000001004b0000193f0000c13d0000001c0100003900000e480000013d0000000001000416000000000001004b0000193f0000c13d000000260100003900000e480000013d0000000001000416000000000001004b0000193f0000c13d0000000b0100003900000e480000013d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f000000160100003900000e400000013d000000440020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000402100370000000000302043b000006dc0030009c0000193f0000213d0000002401100370000000000201043b000000000100041a000006dc041001970000000001000411000000000014004b00000ec80000c13d0000000e01000039000000000101041a000000000001004b000006920000613d0000000404000039000000000404041a000007d6044001670000000305000039000000000505041a0000000004450019000000000024001a000012d30000413d0000000004240019000000000014004b00000efd0000213d00000000010300191b5f1a1f0000040f000000000100001900001b600001042e0000000001000416000000000001004b0000193f0000c13d0000000603000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000b80000c13d000000800010043f000000000004004b00000ecd0000613d000000000030043f000000000001004b000000000200001900000ed20000613d000007ae030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000006ad0000413d00000ed20000013d0000000001000416000000000001004b0000193f0000c13d000000160100003900000e480000013d000000640020008c0000193f0000413d0000000402100370000000000202043b000a00000002001d000006dc0020009c0000193f0000213d0000002402100370000000000202043b000900000002001d000006dc0020009c0000193f0000213d0000004401100370000000000201043b00000000030004110000000a0030006b000006cf0000613d0000000f01000039000000000101041a000000ff00100190000011450000c13d000000a001000039000700000001001d000000400010043f000800800000003d000000800000043f000000000002004b000011890000613d000600000002001d000000000020043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000201041a0000079b00200198000011890000c13d0000000001020019000000000002004b000007030000c13d0000000301000039000000000101041a0000000602000029000000000021004b000011890000a13d000b00000002001d0000000b01000029000000010110008a000b00000001001d000000000010043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000101041a000000000001004b000006f00000613d000b00000001001d000006dc011001970000000a0010006c000012980000c13d0000000601000029000000000010043f0000000901000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000300000001001d000000000101041a000400000001001d0000000001000411000006dc02100197000500000002001d0000000a0020006c0000073e0000613d0000000402000029000000050020006b0000073e0000613d0000000a01000029000000000010043f0000000a01000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b0000000502000029000000000020043f000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000101041a000000ff0010019000000a230000613d0000000901000029000206dc0010019c000014d30000613d0000000f01000039000000000201041a0000000a0000006b000007470000613d0000ff0000200190000015300000c13d0000070300200198000017810000c13d000000040000006b0000074d0000613d0000000301000029000000000001041b0000000a01000029000000000010043f0000000801000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000201000029000000000010043f0000000801000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000201041a0000000102200039000000000021041b0000070a0100004100000000001004430000000001000414000006d90010009c000006d901008041000000c0011002100000070b011001c70000800b020000391b5f1b5a0000040f0000000100200190000016ab0000613d000000000101043b000400000001001d0000000601000029000000000010043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d0000000402000029000000a00220021000000002022001af000007a6022001c7000000000101043b000000000021041b0000000b01000029000007a600100198000007b90000c13d00000006010000290000000101100039000400000001001d000000000010043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000101041a000000000001004b000007b90000c13d0000000301000039000000000101041a000000040010006b000007b90000613d0000000401000029000000000010043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b0000000b02000029000000000021041b0000000001000414000006d90010009c000006d901008041000000c001100210000006de011001c70000800d0200003900000004030000390000070c040000410000000a05000029000000020600002900000006070000291b5f1b550000040f00000001002001900000193f0000613d000007a7010000410000000000100443000000090100002900000004001004430000000001000414000006d90010009c000006d901008041000000c001100210000007a8011001c700008002020000391b5f1b5a0000040f0000000100200190000016ab0000613d000000000101043b000000000001004b000011290000613d000000400300043d00000064013000390000008002000039000900000002001d000000000021043500000044013000390000000602000029000000000021043500000024013000390000000a020000290000000000210435000007a90100004100000000001304350000000401300039000000050200002900000000002104350000000801000029000000000101043300000084023000390000000000120435000007d5051001970000001f0410018f000b00000003001d000000a403300039000000070030006b000018510000813d000000000005004b000007fd0000613d00000007074000290000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c000007f70000c13d000000000004004b000018680000613d00000000060300190000185d0000013d0000000001000416000000000001004b0000193f0000c13d0000001a0100003900000e480000013d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f000000230100003900000e400000013d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d000006dc0010009c0000193f0000213d1b5f1a140000040f0000000b010000290000001801100210000007ab011001970000000f02000039000000000302041a000007ac03300197000010d30000013d0000000001000416000000000001004b0000193f0000c13d000000150100003900000e480000013d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f0000002f0100003900000e400000013d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000201043b000000000002004b00000eb40000613d0000000301000039000000000101041a000000000021004b00000eb40000a13d000b00000002001d000000000020043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000101041a0000079b0010019800000eb40000c13d0000001004000039000000000204041a000000010620019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000332013f0000000100300190000000b80000c13d000000400500043d0000000003150436000000000006004b0000129c0000613d000000000040043f000000000001004b0000000002000019000012a10000613d000006e60400004100000000020000190000000006230019000000000704041a000000000076043500000001044000390000002002200039000000000012004b000008660000413d000012a10000013d000000640020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000402100370000000000202043b0000002403100370000000000303043b000006dc0030009c0000193f0000213d0000004401100370000000000101043b000007b80010009c0000193f0000213d000000000400041a000006dc054001970000000004000411000000000045004b000010f10000c13d000003e80010008c0000118d0000a13d000007cf01000041000000000010043f000007a20100004100001b61000104300000000001000416000000000001004b0000193f0000c13d000000000100041a000006dc021001970000000005000411000000000052004b00000eb80000c13d000006dd01100197000000000010041b0000000001000414000006d90010009c000006d901008041000000c001100210000006de011001c70000800d020000390000000303000039000006df04000041000000000600001900000c4e0000013d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000201043b000000000002004b0000000001000039000000010100c039000b00000002001d000000000012004b0000193f0000c13d1b5f1a140000040f0000000f01000039000000000201041a000007d7022001970000000b022001af000000000021041b000000000100001900001b600001042e000000440020008c0000193f0000413d0000000403100370000000000303043b000006e20030009c0000193f0000213d0000002304300039000000000024004b0000193f0000813d000800040030003d0000000804100360000000000404043b000b00000004001d000006e20040009c0000193f0000213d00000024033000390000000b040000290000000504400210000600000003001d000a00000004001d000700000034001d000000070020006b0000193f0000213d0000002401100370000000000101043b000500000001001d0000001201000039000000000101041a000900000001001d000000000001004b000008de0000613d0000070a0100004100000000001004430000000001000414000006d90010009c000006d901008041000000c0011002100000070b011001c70000800b020000391b5f1b5a0000040f0000000100200190000016ab0000613d000000000101043b000000090010006c000006550000413d0000001301000039000000000101041a000900000001001d000000000001004b000011e10000c13d0000000e01000039000000000101041a000000000001004b0000000504000029000008f30000613d0000000402000039000000000202041a000007d6022001670000000303000039000000000303041a0000000002230019000000000042001a000012d30000413d0000000002420019000000000012004b00000efd0000213d0000001401000039000000000201041a000000000002004b000008fe0000613d0000001503000039000000000303041a000000000043001a000012d30000413d0000000003430019000000000023004b00000efd0000213d0000001602000039000000000202041a0000000b03000039000000000303041a000400000003001d000000000023001a000012d30000413d000000040320002a00000000024300a90000090b0000613d00000000033200d9000000000043004b000012d30000c13d0000000003000416000000000023004b000010f60000c13d0000001802000039000000000202041a000300000002001d000000000002004b0000136b0000c13d0000001701000039000000000101041a000b00000001001d000000000001004b00000005030000290000092f0000613d0000000001000411000006dc01100197000000000010043f0000001901000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000101041a0000000503000029000000000031001a000012d30000413d00000000013100190000000b0010006c00000efd0000213d000000040000006b00000000010000190000093b0000613d0000000d01000039000000000101041a000006dc0010019800000000010000190000093b0000613d00000004013000b900000004021000fa000000000032004b000012d30000c13d0000000c02000039000000000202041a000000000002004b00000000030000190000094d0000613d0000000d03000039000000000303041a000006dc0030019800000000030000190000094d0000613d0000000003000416000000000413004b000012d30000413d00000000032400a900000000022300d9000000000042004b000012d30000c13d000027100330011a000000000013001a000012d30000413d000b00000013001e000015340000c13d0000000001000411000006dc01100197000000000010043f0000001901000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000301041a0000000502000029000000000023001a000012d30000413d0000000003230019000000000031041b000000150100003900000bff0000013d0000000001000416000000000001004b0000193f0000c13d0000000c0100003900000e480000013d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f0000002a0100003900000e400000013d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000201043b000007aa002001980000193f0000c13d0000000101000039000006ff02200197000007d00020009c0000098e0000613d000007d10020009c0000098e0000613d000007d20020009c0000098e0000613d000007d00020009c00000000010000390000000101006039000007d30020009c00000001011061bf000000010110018f000000800010043f000007930100004100001b600001042e000000640020008c0000193f0000413d0000000402100370000000000202043b000a00000002001d000006dc0020009c0000193f0000213d0000002402100370000000000202043b000900000002001d000006dc0020009c0000193f0000213d0000004401100370000000000201043b00000000030004110000000a0030006b000009b90000613d0000000f01000039000000000101041a000000ff00100190000009b90000613d000800000002001d000007a401000041000000000010043f00000000010004100000001a0010043f00000000010004110000003a0010043f0000000001000414000006d90010009c000006d901008041000000c001100210000007a5011001c7000006fe020000411b5f1b5a0000040f0000000100200190000012250000613d0000003a0000043f0000000802000029000000000002004b000011890000613d000800000002001d000000000020043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000201041a0000079b00200198000011890000c13d0000000001020019000000000002004b000009e80000c13d0000000301000039000000000101041a0000000802000029000000000021004b000011890000a13d000b00000002001d0000000b01000029000000010110008a000b00000001001d000000000010043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000101041a000000000001004b000009d50000613d000b00000001001d000006dc011001970000000a0010006c000012980000c13d0000000801000029000000000010043f0000000901000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000500000001001d000000000101041a000600000001001d0000000001000411000006dc02100197000700000002001d0000000a0020006c000014d00000613d0000000702000029000000060020006c000014d00000613d0000000a01000029000000000010043f0000000a01000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b0000000702000029000000000020043f000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000101041a000000ff00100190000014d00000c13d000007c001000041000000000010043f000007a20100004100001b6100010430000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f000000240100003900000e400000013d0000000001000416000000000001004b0000193f0000c13d0000000d01000039000000000101041a00000a3c0000013d0000000001000416000000000001004b0000193f0000c13d000000000100041a000006dc01100197000000800010043f000007930100004100001b600001042e000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f0000002c0100003900000e400000013d0000000001000416000000000001004b0000193f0000c13d000000140100003900000e480000013d0000000001000416000000000001004b0000193f0000c13d0000002f0100003900000e480000013d0000000001000416000000000001004b0000193f0000c13d0000000f01000039000000000101041a0000ff000010019000000c6f0000013d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000006dc0010009c0000193f0000213d000000000010043f000000190100003900000c290000013d000000440020008c0000193f0000413d0000000403100370000000000303043b000006e20030009c0000193f0000213d0000002304300039000000000024004b0000193f0000813d000800040030003d0000000804100360000000000404043b000b00000004001d000006e20040009c0000193f0000213d00000024033000390000000b040000290000000504400210000600000003001d000a00000004001d000700000034001d000000070020006b0000193f0000213d0000002401100370000000000101043b000500000001001d0000001a01000039000000000101041a000900000001001d000000000001004b00000a950000613d0000070a0100004100000000001004430000000001000414000006d90010009c000006d901008041000000c0011002100000070b011001c70000800b020000391b5f1b5a0000040f0000000100200190000016ab0000613d000000000101043b000000090010006c000006550000413d0000001b01000039000000000101041a000900000001001d000000000001004b000011f00000c13d0000000e01000039000000000101041a000000000001004b000000050400002900000aaa0000613d0000000402000039000000000202041a000007d6022001670000000303000039000000000303041a0000000002230019000000000042001a000012d30000413d0000000002420019000000000012004b00000efd0000213d0000001c01000039000000000101041a000000000001004b00000ab50000613d0000001d02000039000000000202041a000000000042001a000012d30000413d0000000002420019000000000012004b00000efd0000213d0000001e01000039000000000101041a0000000b02000039000000000202041a000400000002001d000000000012001a000012d30000413d000000040210002a00000000014200a900000ac20000613d00000000022100d9000000000042004b000012d30000c13d0000000002000416000000000012004b000010f60000c13d0000002001000039000000000101041a000300000001001d000000000001004b000013ce0000c13d0000001f01000039000000000101041a000b00000001001d000000000001004b000000050300002900000ae60000613d0000000001000411000006dc01100197000000000010043f0000002101000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000101041a0000000503000029000000000031001a000012d30000413d00000000013100190000000b0010006c00000efd0000213d000000040000006b000000000100001900000af20000613d0000000d01000039000000000101041a000006dc00100198000000000100001900000af20000613d00000004013000b900000004021000fa000000000032004b000012d30000c13d0000000c02000039000000000202041a000000000002004b000000000300001900000b040000613d0000000d03000039000000000303041a000006dc00300198000000000300001900000b040000613d0000000003000416000000000413004b000012d30000413d00000000032400a900000000022300d9000000000042004b000012d30000c13d000027100330011a000000000013001a000012d30000413d000b00000013001e0000155c0000c13d0000000001000411000006dc01100197000000000010043f0000002101000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000301041a0000000502000029000000000023001a000012d30000413d0000000003230019000000000031041b0000001d0100003900000bff0000013d000000440020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000402100370000000000202043b000006dc0020009c0000193f0000213d0000002401100370000000000101043b000b00000001001d000006dc0010009c0000193f0000213d000000000020043f0000000a01000039000000200010043f000000400200003900000000010000191b5f1b400000040f0000000b020000291b5f19710000040f000000000101041a000000ff001001900000000001000039000000010100c0390000006f0000013d0000000001000416000000000001004b0000193f0000c13d0000001d0100003900000e480000013d0000000001000416000000000001004b0000193f0000c13d000000180100003900000e480000013d0000000001000416000000000001004b0000193f0000c13d000000280100003900000e480000013d000000440020008c0000193f0000413d0000000403100370000000000303043b000006e20030009c0000193f0000213d0000002304300039000000000024004b0000193f0000813d000800040030003d0000000804100360000000000404043b000b00000004001d000006e20040009c0000193f0000213d00000024033000390000000b040000290000000504400210000600000003001d000a00000004001d000700000034001d000000070020006b0000193f0000213d0000002401100370000000000101043b000500000001001d0000002201000039000000000101041a000900000001001d000000000001004b00000b760000613d0000070a0100004100000000001004430000000001000414000006d90010009c000006d901008041000000c0011002100000070b011001c70000800b020000391b5f1b5a0000040f0000000100200190000016ab0000613d000000000101043b000000090010006c000006550000413d0000002301000039000000000101041a000900000001001d000000000001004b000011ff0000c13d0000000e01000039000000000101041a000000000001004b000000050400002900000b8b0000613d0000000402000039000000000202041a000007d6022001670000000303000039000000000303041a0000000002230019000000000042001a000012d30000413d0000000002420019000000000012004b00000efd0000213d0000002401000039000000000101041a000000000001004b00000b960000613d0000002502000039000000000202041a000000000042001a000012d30000413d0000000002420019000000000012004b00000efd0000213d0000002601000039000000000101041a0000000b02000039000000000202041a000400000002001d000000000012001a000012d30000413d000000040210002a00000000014200a900000ba30000613d00000000022100d9000000000042004b000012d30000c13d0000000002000416000000000012004b000010f60000c13d0000002801000039000000000101041a000300000001001d000000000001004b000014320000c13d0000002701000039000000000101041a000b00000001001d000000000001004b000000050300002900000bc70000613d0000000001000411000006dc01100197000000000010043f0000002901000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000101041a0000000503000029000000000031001a000012d30000413d00000000013100190000000b0010006c00000efd0000213d000000040000006b000000000100001900000bd30000613d0000000d01000039000000000101041a000006dc00100198000000000100001900000bd30000613d00000004013000b900000004021000fa000000000032004b000012d30000c13d0000000c02000039000000000202041a000000000002004b000000000300001900000be50000613d0000000d03000039000000000303041a000006dc00300198000000000300001900000be50000613d0000000003000416000000000413004b000012d30000413d00000000032400a900000000022300d9000000000042004b000012d30000c13d000027100330011a000000000013001a000012d30000413d000b00000013001e000015840000c13d0000000001000411000006dc01100197000000000010043f0000002901000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000301041a0000000502000029000000000023001a000012d30000413d0000000003230019000000000031041b0000002501000039000000000301041a000000000023001a000012d30000413d00000f6c0000013d0000000001000416000000000001004b0000193f0000c13d0000002a0100003900000e480000013d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f000000170100003900000e400000013d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f0000001f0100003900000e400000013d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000006dc0010009c0000193f0000213d000000000010043f0000003101000039000000200010043f000000400200003900000000010000191b5f1b400000040f00000e480000013d0000000001000416000000000001004b0000193f0000c13d0000002e0100003900000e480000013d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000601043b000006dc0060009c0000193f0000213d000000000100041a000006dc021001970000000005000411000000000052004b00000eb80000c13d000000000006004b000000390000613d000006dd01100197000000000161019f000000000010041b0000000001000414000006d90010009c000006d901008041000000c001100210000006de011001c70000800d020000390000000303000039000006df040000411b5f1b550000040f00000001002001900000193f0000613d000011290000013d0000000001000416000000000001004b0000193f0000c13d000000120100003900000e480000013d0000000001000416000000000001004b0000193f0000c13d0000000f01000039000000000101041a000000ff0010019000000c6f0000013d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f0000000e0100003900000e400000013d0000000001000416000000000001004b0000193f0000c13d0000000f01000039000000000101041a00000703001001980000000001000039000000010100c039000000800010043f000007930100004100001b600001042e000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f000000270100003900000e400000013d0000000001000416000000000001004b0000193f0000c13d000000270100003900000e480000013d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f000000260100003900000e400000013d000000840020008c0000193f0000413d0000000403100370000000000303043b000900000003001d000006dc0030009c0000193f0000213d0000002403100370000000000303043b000800000003001d000006dc0030009c0000193f0000213d0000004403100370000000000303043b000700000003001d0000006403100370000000000403043b000006e20040009c0000193f0000213d0000002303400039000000000023004b0000193f0000813d0000000405400039000000000351034f000000000303043b000006e20030009c000000520000213d0000001f06300039000007d5066001970000003f06600039000007d506600197000007a30060009c000000520000213d0000008006600039000000400060043f000000800030043f00000000043400190000002404400039000000000024004b0000193f0000213d0000002002500039000000000221034f000007d5043001980000001f0530018f000000a00140003900000cc30000613d000000a006000039000000000702034f000000007807043c0000000006860436000000000016004b00000cbf0000c13d000000000005004b00000cd00000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000000a00130003900000000000104350000000002000411000000090020006b00000cfd0000613d0000000f01000039000000000101041a000000ff0010019000000cfd0000613d000007a401000041000000000010043f00000000010004100000001a0010043f00000000010004110000003a0010043f0000000001000414000006d90010009c000006d901008041000000c001100210000007a5011001c7000006fe020000411b5f1b5a0000040f0000000100200190000014d70000613d0000003a0000043f0000000f01000039000000000101041a000000ff0010019000000cfd0000613d000007a401000041000000000010043f00000000010004100000001a0010043f00000000010004110000003a0010043f0000000001000414000006d90010009c000006d901008041000000c001100210000007a5011001c7000006fe020000411b5f1b5a0000040f0000000100200190000016ac0000613d0000003a0000043f000000070000006b000011890000613d0000000701000029000000000010043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000201041a0000079b00200198000011890000c13d0000000001020019000000000002004b00000d2b0000c13d0000000301000039000000000101041a000000070010006c000011890000a13d000b00070000002d0000000b01000029000000010110008a000b00000001001d000000000010043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000101041a000000000001004b00000d180000613d000b00000001001d000006dc01100197000000090010006c000012980000c13d0000000701000029000000000010043f0000000901000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000400000001001d000000000101041a000500000001001d0000000001000411000006dc02100197000600000002001d000000090020006c00000d660000613d0000000502000029000000060020006b00000d660000613d0000000901000029000000000010043f0000000a01000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000101041a000000ff0010019000000a230000613d0000000801000029000306dc0010019c000014d30000613d0000000f01000039000000000201041a000000090000006b00000d6f0000613d0000ff0000200190000015300000c13d0000070300200198000017e20000c13d000000050000006b00000d750000613d0000000401000029000000000001041b0000000901000029000000000010043f0000000801000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000301000029000000000010043f0000000801000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000201041a0000000102200039000000000021041b0000070a0100004100000000001004430000000001000414000006d90010009c000006d901008041000000c0011002100000070b011001c70000800b020000391b5f1b5a0000040f0000000100200190000016ab0000613d000000000101043b000500000001001d0000000701000029000000000010043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d0000000502000029000000a00220021000000003022001af000007a6022001c7000000000101043b000000000021041b0000000b01000029000007a60010019800000de10000c13d00000007010000290000000101100039000500000001001d000000000010043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000101041a000000000001004b00000de10000c13d0000000301000039000000000101041a000000050010006b00000de10000613d0000000501000029000000000010043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b0000000b02000029000000000021041b0000000001000414000006d90010009c000006d901008041000000c001100210000006de011001c70000800d0200003900000004030000390000070c040000410000000905000029000000030600002900000007070000291b5f1b550000040f00000001002001900000193f0000613d000007a7010000410000000000100443000000080100002900000004001004430000000001000414000006d90010009c000006d901008041000000c001100210000007a8011001c700008002020000391b5f1b5a0000040f0000000100200190000016ab0000613d000000000101043b000000000001004b000011290000613d000000400500043d000000640150003900000080020000390000000000210435000000440150003900000007020000290000000000210435000000240150003900000009020000290000000000210435000007a90100004100000000001504350000000401500039000000060200002900000000002104350000008402500039000000800100043d0000000000120435000007d5041001970000001f0310018f000b00000005001d000000a402500039000000a10020008c000018ea0000413d000000000004004b00000e220000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c00000e1c0000c13d000000000003004b000019000000613d000000a0040000390000000005020019000018f60000013d0000000001000416000000000001004b0000193f0000c13d000000240100003900000e480000013d0000000001000416000000000001004b0000193f0000c13d0000000e0100003900000e480000013d0000000001000416000000000001004b0000193f0000c13d000000300100003900000e480000013d000000240020008c0000193f0000413d0000000002000416000000000002004b0000193f0000c13d0000000401100370000000000101043b000b00000001001d1b5f1a140000040f00000028010000390000000b02000029000000000021041b000000000100001900001b600001042e0000000001000416000000000001004b0000193f0000c13d0000002001000039000000000101041a000000800010043f000007930100004100001b600001042e000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000050600003900000080053000390000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000e520000c13d000000000072004b00000e630000813d0000000302700210000000f80220018f000007d60220027f000007d60220016700000080033000390000000003030433000000000223016f000000000021041b000000010170021000000001011001bf000000000016041b000000c00400043d000006e20040009c000000520000213d0000000607000039000000000107041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f00000001001001900000000506000039000000b80000c13d000000200030008c00000e960000413d000900000003001d000b00000004001d000000000070043f0000000001000414000006d90010009c000006d901008041000000c001100210000006e1011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d0000000b040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000009010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000506000039000000060700003900000e960000813d000000000002041b0000000102200039000000000012004b00000e920000413d000000200040008c00000ebd0000413d000b00000004001d000000000070043f0000000001000414000006d90010009c000006d901008041000000c001100210000006e1011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d0000000b08000029000007d502800198000000000101043b00000f720000c13d00000020030000390000000506000039000000060700003900000f800000013d0000079801000041000000000010043f000000040020043f000007050100004100001b6100010430000007cc01000041000000000010043f000007a20100004100001b6100010430000007a101000041000000000010043f000007a20100004100001b61000104300000079801000041000000000010043f000000040050043f000007050100004100001b6100010430000000000004004b000000000100001900000f8c0000613d0000000301400210000007d60110027f000007d601100167000000e00200043d000000000112016f0000000102400210000000000121019f00000f8c0000013d0000079802000041000000000020043f000000040010043f000007050100004100001b6100010430000007d702200197000000a00020043f000000000001004b00000020020000390000000002006039000000200220003900000080010000391b5f19e80000040f000000400100043d000b00000001001d00000080020000391b5f19b30000040f0000000b020000290000000001210049000006d90010009c000006d9010080410000006001100210000006d90020009c000006d9020080410000004002200210000000000121019f00001b600001042e0000000e01000039000000000101041a000000000001004b00000ef20000613d0000000402000039000000000202041a000007d6022001670000000303000039000000000303041a0000000002230019000000000042001a000012d30000413d0000000002420019000000000012004b00000efd0000213d0000002c01000039000000000101041a000000000001004b00000f0c0000613d0000002d02000039000000000202041a000000000042001a000012d30000413d0000000002420019000000000012004b00000f0c0000a13d000007c501000041000000000010043f000007a20100004100001b6100010430000000000010043f0000000801000039000000200010043f000000400200003900000000010000191b5f1b400000040f000000000101041a000006e201100197000000800010043f000007930100004100001b600001042e0000002e01000039000000000101041a0000000b02000039000000000302041a000000000013001a000012d30000413d000000000213001a00000000014200a900000f180000613d00000000022100d9000000000042004b000012d30000c13d0000000002000416000000000012004b000010f60000c13d0000002f01000039000000000101041a000a00000001001d000000000001004b000b00000004001d00000f390000613d000900000003001d0000000001000411000006dc01100197000000000010043f0000003101000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000101041a0000000b04000029000000000041001a0000000903000029000012d30000413d00000000014100190000000a0010006c00000efd0000213d000000000003004b000000000100001900000f450000613d0000000d01000039000000000101041a000006dc00100198000000000100001900000f450000613d00000000014300a900000000023100d9000000000042004b000012d30000c13d0000000c02000039000000000202041a000000000002004b000000000300001900000f4f0000613d0000000d03000039000000000303041a000006dc003001980000000003000019000012c80000c13d000000000013001a000012d30000413d000a00000013001e000012900000c13d0000000001000411000006dc01100197000000000010043f0000003101000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000301041a0000000b02000029000000000023001a000012d30000413d0000000003230019000000000031041b0000002d01000039000000000301041a000000000023001a000012d30000413d0000000003230019000000000031041b00000000010004111b5f1a1f0000040f000000000100001900001b600001042e000000010320008a000000050330027000000000043100190000002003000039000000010440003900000005060000390000000607000039000000c0053000390000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000f790000c13d000000000082004b00000f8a0000813d0000000302800210000000f80220018f000007d60220027f000007d602200167000000c0033000390000000003030433000000000223016f000000000021041b000000010180021000000001011001bf000000000017041b00000001050000390000000301000039000000000051041b000006e3010000410000000b02000039000000000012041b00000384010000390000000c02000039000000000012041b0000000d01000039000000000201041a000006dd02200197000006e4022001c7000000000021041b0000093b010000390000000e02000039000000000012041b0000000f02000039000000000102041a000006e50110019700000101011001bf000000000012041b0000001001000039000000000301041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000000b80000c13d000000200020008c00000fb80000413d000006e6030000410000001f022000390000000502200270000006e70220009a000000000003041b0000000103300039000000000023004b00000fb40000413d000000000001041b0000001101000039000000000301041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000000b80000c13d000000200020008c00000fd00000413d000000810020008c00000fd00000413d0000001f022000390000000502200270000006e80220009a000006e903000041000000000003041b0000000103300039000000000023004b00000fcc0000413d000000c502000039000000000021041b000006ea01000041000006eb02000041000000000012041b000006ec01000041000006ed02000041000000000012041b000006ee01000041000006ef02000041000000000012041b000006f001000041000006f102000041000000000012041b000006f2010000410000001202000039000000000012041b000006f3020000410000001301000039000000000021041b00000139010000390000001403000039000000000013041b0000001601000039000000000001041b00000002010000390000001703000039000000000013041b000006f4030000410000001804000039000000000034041b0000001a03000039000000000023041b000006f5020000410000001b03000039000000000023041b000003e8030000390000001c04000039000000000034041b0000001e04000039000000000004041b0000001f04000039000000000054041b000006f6040000410000002005000039000000000045041b0000002204000039000000000024041b000006f7020000410000002304000039000000000024041b0000002404000039000000000034041b000006f8030000410000002604000039000000000034041b0000002704000039000000000014041b000006f9010000410000002804000039000000000014041b0000002a01000039000000000021041b000006fa010000410000002b02000039000000000012041b0000002c01000039000000000001041b0000002e01000039000000000031041b0000002f01000039000000000061041b0000003001000039000000000001041b000006fb01000041000000000010043f0000000001000410000000040010043f000006fc01000041000000240010043f0000000001000414000006d90010009c000006d901008041000000c001100210000006fd011001c7000006fe020000411b5f1b550000040f0000006003100270000006d903300197000000040030008c0000000403008039000000000000004b000010330000613d000000000401034f0000000005000019000000004604043c0000000000650435000000200550003a0000102f0000c13d000000000003004b000010400000613d0000000303300210000000000400043d00000000043401cf000000000434022f00000100033000890000000001100370000000000101043b000000000131022f00000000013101cf000000000141019f000000000010043f0000000100200190000010460000c13d000000000100043d000006ff01100197000006fb0010009c0000193f0000613d000000240000043f000000400100043d000007000010009c000000520000213d0000004002100039000000400020043f0000002002100039000002bc0300003900000000003204350000070102000041000000000021043500000702010000410000000102000039000000000012041b0000000301000039000000000101041a000b00000001001d0000000f01000039000000000201041a0000070300200198000011950000c13d0000070701000041000000000010043f0000000801000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000201041a000007090220009a000000000021041b0000070a0100004100000000001004430000000001000414000006d90010009c000006d901008041000000c0011002100000070b011001c70000800b020000391b5f1b5a0000040f0000000100200190000016ab0000613d000000000101043b000a00000001001d0000000b01000029000000000010043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b0000000a02000029000000a00220021000000707022001c7000000000021041b0000000001000414000006d90010009c000006d901008041000000c001100210000006de011001c70000800d0200003900000004030000390000070c04000041000000000500001900000707060000410000000b070000291b5f1b550000040f00000001002001900000193f0000613d0000000b01000029000a00320010003d0000000b0700002900000001077000390000000a0070006c0000151c0000613d0000000001000414000006d90010009c000006d901008041000000c001100210000006de011001c70000800d0200003900000004030000390000070c0400004100000000050000190000070706000041000b00000007001d1b5f1b550000040f00000001002001900000109b0000c13d0000193f0000013d000006de011001c70000800902000039000000000400041100000000050000191b5f1b550000040f0000006003100270000006d903300198000011270000613d0000001f0430003900000795044001970000003f044000390000079604400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000006e20040009c000000520000213d0000000100600190000000520000c13d000000400040043f0000001f0430018f0000000006350436000007060530019800000000035600190000111a0000613d000000000701034f000000007807043c0000000006860436000000000036004b000010ca0000c13d0000111a0000013d000000000001004b0000000001000019000007ba0100c041000007bb03300197000000000113019f000000000012041b000000000100001900001b600001042e00000060041002700000001f0340018f0000070602400198000010e10000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000010dd0000c13d000006d904400197000000000003004b000010ef0000613d000000000121034f0000000303300210000000000502043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000120435000000600140021000001b61000104300000079801000041000000000010043f000000040040043f000007050100004100001b6100010430000007c401000041000000000010043f000007a20100004100001b6100010430000006de011001c700008009020000390000000b0400002900000000050000191b5f1b550000040f0000006003100270000006d903300198000011270000613d0000001f0430003900000795044001970000003f044000390000079604400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000006e20040009c000000520000213d0000000100600190000000520000c13d000000400040043f0000001f0430018f0000000006350436000007060530019800000000035600190000111a0000613d000000000701034f000000007807043c0000000006860436000000000036004b000011160000c13d000000000004004b000011270000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000100200190000015ac0000613d000000000100001900001b600001042e00000060041002700000001f0340018f0000070602400198000011350000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000011310000c13d000006d904400197000000000003004b000011430000613d000000000121034f0000000303300210000000000502043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000120435000000600140021000001b6100010430000600000002001d000007a401000041000000000010043f00000000010004100000001a0010043f0000003a0030043f0000000001000414000006d90010009c000006d901008041000000c001100210000007a5011001c7000006fe020000411b5f1b5a0000040f00000001002001900000123f0000613d0000003a0000043f000000400100043d000800000001001d000007a00010009c000000520000213d0000000f01000039000000000101041a00000008030000290000002002300039000700000002001d000000400020043f0000000000030435000000ff00100190000011860000613d000007a401000041000000000010043f00000000010004100000001a0010043f00000000010004110000003a0010043f0000000001000414000006d90010009c000006d901008041000000c001100210000007a5011001c7000006fe020000411b5f1b5a0000040f0000000100200190000014990000613d0000003a0000043f0000000f01000039000000000101041a000000ff00100190000011860000613d000007a401000041000000000010043f00000000010004100000001a0010043f00000000010004110000003a0010043f0000000001000414000006d90010009c000006d901008041000000c001100210000007a5011001c7000006fe020000411b5f1b5a0000040f0000000100200190000015b00000613d0000003a0000043f0000000602000029000000000002004b000006d60000c13d000007cb01000041000000000010043f000007a20100004100001b6100010430000000000003004b000012590000c13d000007b901000041000000000010043f000000040020043f000000240000043f000006fd0100004100001b6100010430000000400400043d000900000004001d0000070401000041000000000014043500000004014000390000000a030000290000000000310435000006d90040009c000006d901000041000000000104401900000040011002100000000003000414000006d90030009c000006d903008041000000c003300210000000000113019f00000705011001c70000001802200270000006dc022001971b5f1b5a0000040f0000006003100270000006d903300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090b0000290000000905700029000011b90000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000011b50000c13d000000000006004b000011c60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000012720000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000006e20010009c000000520000213d0000000100200190000000520000c13d000000400010043f000000200030008c0000193f0000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b0000193f0000c13d000000000001004b0000105b0000c13d000007c101000041000000000010043f000007a20100004100001b61000104300000070a0100004100000000001004430000000001000414000006d90010009c000006d901008041000000c0011002100000070b011001c70000800b020000391b5f1b5a0000040f0000000100200190000016ab0000613d000000000101043b000000090010006c000006550000213d000008e30000013d0000070a0100004100000000001004430000000001000414000006d90010009c000006d901008041000000c0011002100000070b011001c70000800b020000391b5f1b5a0000040f0000000100200190000016ab0000613d000000000101043b000000090010006c000006550000213d00000a9a0000013d0000070a0100004100000000001004430000000001000414000006d90010009c000006d901008041000000c0011002100000070b011001c70000800b020000391b5f1b5a0000040f0000000100200190000016ab0000613d000000000101043b000000090010006c000006550000213d00000b7b0000013d1b5f19fa0000040f0000000b0200002900000000012104360000000a030000290000000000310435000000a001300210000000000121019f0000000102000039000000000012041b000000000100001900001b600001042e000000000003004b00000000040000190000121f0000613d0000002004500039000000000141034f000000000401043b0000000301300210000007d60110027f000007d601100167000000000414016f0000000101300210000013440000013d00000060041002700000001f0340018f00000706024001980000122f0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b0000122b0000c13d000006d904400197000000000003004b0000123d0000613d000000000121034f0000000303300210000000000502043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000120435000000600140021000001b610001043000000060041002700000001f0340018f0000070602400198000012490000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000012450000c13d000006d904400197000000000003004b000012570000613d000000000121034f0000000303300210000000000502043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000120435000000600140021000001b6100010430000000c004000039000000400040043f000000800030043f000000a00010043f000000000020043f0000000201000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000800200043d000006dc02200197000000a00300043d000000a003300210000000000223019f000000000101043b000000000021041b000000000100001900001b600001042e0000001f0530018f0000070606300198000000400200043d00000000046200190000127d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012790000c13d000000000005004b0000128a0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000006d90020009c000006d9020080410000004002200210000000000112019f00001b61000104300000000d01000039000000000101041a000006dc04100198000012d90000c13d000007c701000041000000000010043f000007a20100004100001b6100010430000007bf01000041000000000010043f000007a20100004100001b6100010430000007d7022001970000000000230435000000000001004b000000200200003900000000020060390000003f01200039000007d5011001970000000004510019000000000014004b00000000010000390000000101004039000006e20040009c000000520000213d0000000100100190000000520000c13d000000400040043f0000001108000039000000000708041a000000010970019000000001017002700000007f0110618f0000001f0010008c00000000060000390000000106002039000000000667013f0000000100600190000000b80000c13d0000000006140436000000000009004b000014b30000613d000000000080043f000000000001004b0000000007000019000014b80000613d000006eb0800004100000000070000190000000009760019000000000a08041a0000000000a9043500000001088000390000002007700039000000000017004b000012c00000413d000014b80000013d0000000003000416000000000413004b000012d30000413d00000000032400a900000000022300d9000000000042004b000012d30000c13d000027100330011a000000000013001a000012d30000413d00000f510000013d000007b401000041000000000010043f0000001101000039000000040010043f000007050100004100001b61000104300000000001000414000006d90010009c000006d901008041000000c001100210000006de011001c700008009020000390000000a0300002900000000050000191b5f1b550000040f0000006003100270000006d9033001980000130a0000613d0000001f0430003900000795044001970000003f044000390000079604400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000006e20040009c000000520000213d0000000100600190000000520000c13d000000400040043f0000001f0430018f000000000635043600000706053001980000000003560019000012fd0000613d000000000701034f000000007807043c0000000006860436000000000036004b000012f90000c13d000000000004004b0000130a0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000100200190000015ac0000613d0000000d01000039000000000201041a000000400100043d0000000a030000290000000000310435000006d90010009c000006d90100804100000040011002100000000003000414000006d90030009c000006d903008041000000c003300210000000000113019f000006e1011001c7000006dc052001970000800d02000039000000020300003900000797040000411b5f1b550000040f000000010020019000000f530000c13d0000193f0000013d000006eb0500004100000000070000190000000008470019000000000881034f000000000808043b000000000085041b00000001055000390000002007700039000000000067004b000013240000413d000013370000013d000006e60500004100000000070000190000000008470019000000000881034f000000000808043b000000000085041b00000001055000390000002007700039000000000067004b0000132f0000413d000000000036004b000013420000813d0000000306300210000000f80660018f000007d60660027f000007d6066001670000000004470019000000000141034f000000000101043b000000000161016f000000000015041b00000001010000390000000104300210000000000114019f000000000012041b000000000100001900001b600001042e0000000b01000029000000000010043f0000000a01000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b0000000002000411000006dc02200197000000000020043f000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000101041a000000ff00100190000005740000c13d000007c901000041000000000010043f000007a20100004100001b6100010430000000400200043d0000000001120436000000000300041100000060033002100000000000310435000007000020009c000000520000213d0000004003200039000000400030043f000006d90010009c000006d90100804100000040011002100000000002020433000006d90020009c000006d9020080410000006002200210000000000112019f0000000002000414000006d90020009c000006d902008041000000c002200210000000000112019f000006de011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b0000000a020000290000003f022000390000079402200197000000400300043d0000000002230019000a00000003001d000000000032004b00000000030000390000000103004039000006e20020009c000000520000213d0000000100300190000000520000c13d000000400020043f0000000b020000290000000a040000290000000002240436000900000002001d0000000702000029000000000020007c0000193f0000213d0000000b0000006b000013cb0000613d0000000802000029000000200220003900000001022003670000000a03000029000000060500002900000007060000290000002003300039000000002402043c00000000004304350000002005500039000000000065004b000013a40000413d0000000a020000290000000002020433000000000002004b000013cb0000613d0000000003000019000b00000003001d000000050230021000000009022000290000000002020433000000000021004b000013b90000813d000000000010043f000000200020043f0000000001000414000013bc0000013d000000000020043f000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b0000000b0300002900000001033000390000000a020000290000000002020433000000000023004b000013af0000413d000000030010006c000009130000613d000014950000013d000000400100043d00000014020000390000000002210436000000000300041100000060033002100000000000320435000007000010009c000000520000213d0000004003100039000000400030043f000006d90020009c000006d90200804100000040022002100000000001010433000006d90010009c000006d9010080410000006001100210000000000121019f0000000002000414000006d90020009c000006d902008041000000c002200210000000000112019f000006de011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b0000000a020000290000003f022000390000079402200197000000400300043d0000000002230019000a00000003001d000000000032004b00000000030000390000000103004039000006e20020009c000000520000213d0000000100300190000000520000c13d000000400020043f0000000b020000290000000a040000290000000002240436000900000002001d0000000702000029000000000020007c0000193f0000213d0000000b0000006b0000142f0000613d0000000802000029000000200220003900000001022003670000000a03000029000000060500002900000007060000290000002003300039000000002402043c00000000004304350000002005500039000000000065004b000014080000413d0000000a020000290000000002020433000000000002004b0000142f0000613d0000000003000019000b00000003001d000000050230021000000009022000290000000002020433000000000021004b0000141d0000813d000000000010043f000000200020043f0000000001000414000014200000013d000000000020043f000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b0000000b0300002900000001033000390000000a020000290000000002020433000000000023004b000014130000413d000000030010006c00000aca0000613d000014950000013d000000400100043d00000014020000390000000002210436000000000300041100000060033002100000000000320435000007000010009c000000520000213d0000004003100039000000400030043f000006d90020009c000006d90200804100000040022002100000000001010433000006d90010009c000006d9010080410000006001100210000000000121019f0000000002000414000006d90020009c000006d902008041000000c002200210000000000112019f000006de011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b0000000a020000290000003f022000390000079402200197000000400300043d0000000002230019000a00000003001d000000000032004b00000000030000390000000103004039000006e20020009c000000520000213d0000000100300190000000520000c13d000000400020043f0000000b020000290000000a040000290000000002240436000900000002001d0000000702000029000000000020007c0000193f0000213d0000000b0000006b000014930000613d0000000802000029000000200220003900000001022003670000000a03000029000000060500002900000007060000290000002003300039000000002402043c00000000004304350000002005500039000000000065004b0000146c0000413d0000000a020000290000000002020433000000000002004b000014930000613d0000000003000019000b00000003001d000000050230021000000009022000290000000002020433000000000021004b000014810000813d000000000010043f000000200020043f0000000001000414000014840000013d000000000020043f000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b0000000b0300002900000001033000390000000a020000290000000002020433000000000023004b000014770000413d000000030010006c00000bab0000613d000007af01000041000000000010043f000007a20100004100001b610001043000000060041002700000001f0340018f0000070602400198000014a30000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b0000149f0000c13d000006d904400197000000000003004b000014b10000613d000000000121034f0000000303300210000000000502043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000120435000000600140021000001b6100010430000007d7077001970000000000760435000000000001004b000000200700003900000000070060390000003f01700039000007d5061001970000000001460019000000000061004b00000000060000390000000106004039000006e20010009c000000520000213d0000000100600190000000520000c13d000000400010043f0000000006050433000000000006004b000014f10000c13d0000000002040433000000000002004b000015ca0000c13d000007a00010009c000000520000213d0000002002100039000000400020043f0000000000010435000000400300043d000016240000013d0000000901000029000906dc0010019c0000152a0000c13d000007c201000041000000000010043f000007a20100004100001b610001043000000060041002700000001f0340018f0000070602400198000014e10000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000014dd0000c13d000006d904400197000000000003004b000014ef0000613d000000000121034f0000000303300210000000000502043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000120435000000600140021000001b6100010430000000a004100039000000400040043f000000800410003900000000000404350000000b090000290000000006040019000000090090008c0000000a4990011a000000f807400210000000010460008a00000000080404330000079c08800197000000000787019f0000079d077001c70000000000740435000014f60000213d00000000016100490000008101100039000000210660008a00000000001604350000000005050433000007d5095001970000001f0850018f000000400100043d0000002007100039000000000073004b000015cd0000813d000000000009004b000015180000613d000000000b830019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c000015120000c13d000000000008004b000015e30000613d000000000a070019000015d90000013d00000003010000390000000a02000029000000000021041b0000002001000039000001000010044300000120000004430000070d0100004100001b600001042e0000079801000041000000000010043f0000000001000411000000040010043f000007050100004100001b61000104300000000f01000039000000000201041a0000000a0000006b0000162d0000613d0000ff00002001900000162d0000613d000007c801000041000000000010043f000007a20100004100001b61000104300000000d01000039000000000101041a000006dc04100198000012940000613d0000000001000414000006d90010009c000006d901008041000000c001100210000006de011001c700008009020000390000000b0300002900000000050000191b5f1b550000040f0000006003100270000006d9033001980000170f0000c13d0000000100200190000015ac0000613d0000000d01000039000000000201041a000000400100043d0000000b030000290000000000310435000006d90010009c000006d90100804100000040011002100000000003000414000006d90030009c000006d903008041000000c003300210000000000113019f000006e1011001c7000006dc052001970000800d02000039000000020300003900000797040000411b5f1b550000040f0000000100200190000009510000c13d0000193f0000013d0000000d01000039000000000101041a000006dc04100198000012940000613d0000000001000414000006d90010009c000006d901008041000000c001100210000006de011001c700008009020000390000000b0300002900000000050000191b5f1b550000040f0000006003100270000006d903300198000017350000c13d0000000100200190000015ac0000613d0000000d01000039000000000201041a000000400100043d0000000b030000290000000000310435000006d90010009c000006d90100804100000040011002100000000003000414000006d90030009c000006d903008041000000c003300210000000000113019f000006e1011001c7000006dc052001970000800d02000039000000020300003900000797040000411b5f1b550000040f000000010020019000000b080000c13d0000193f0000013d0000000d01000039000000000101041a000006dc04100198000012940000613d0000000001000414000006d90010009c000006d901008041000000c001100210000006de011001c700008009020000390000000b0300002900000000050000191b5f1b550000040f0000006003100270000006d9033001980000175b0000c13d0000000100200190000015ac0000613d0000000d01000039000000000201041a000000400100043d0000000b030000290000000000310435000006d90010009c000006d90100804100000040011002100000000003000414000006d90030009c000006d903008041000000c003300210000000000113019f000006e1011001c7000006dc052001970000800d02000039000000020300003900000797040000411b5f1b550000040f000000010020019000000be90000c13d0000193f0000013d000007c601000041000000000010043f000007a20100004100001b610001043000000060041002700000001f0340018f0000070602400198000015ba0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000015b60000c13d000006d904400197000000000003004b000015c80000613d000000000121034f0000000303300210000000000502043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000120435000000600140021000001b610001043000000000030100190000000001040019000016240000013d000000000a970019000000000009004b000015d60000613d000000000b030019000000000c07001900000000bd0b0434000000000cdc04360000000000ac004b000015d20000c13d000000000008004b000015e30000613d0000000003930019000000030880021000000000090a043300000000098901cf000000000989022f00000000030304330000010008800089000000000383022f00000000038301cf000000000393019f00000000003a043500000000057500190000079e0300004100000000003504350000000003060433000007d5073001970000001f0630018f0000000105500039000000000054004b000015fc0000813d000000000007004b000015f80000613d00000000096400190000000008650019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000015f20000c13d000000000006004b000016120000613d0000000008050019000016080000013d0000000008750019000000000007004b000016050000613d0000000009040019000000000a050019000000009b090434000000000aba043600000000008a004b000016010000c13d000000000006004b000016120000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f000000000048043500000000035300190000079f04000041000000000043043500000000031300490000001b0430008a00000000004104350000002403300039000007d5023001970000000004120019000000000024004b00000000020000390000000102004039000006e20040009c000000520000213d0000000100200190000000520000c13d0000000003040019000000400040043f0000002002000039000b00000003001d00000000022304361b5f19810000040f00000ed90000013d000007b301000041000000000010043f000007a20100004100001b61000104300000070300200198000016c60000c13d000000060000006b000016330000613d0000000501000029000000000001041b0000000a01000029000000000010043f0000000801000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000901000029000000000010043f0000000801000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000201041a0000000102200039000000000021041b0000070a0100004100000000001004430000000001000414000006d90010009c000006d901008041000000c0011002100000070b011001c70000800b020000391b5f1b5a0000040f0000000100200190000016ab0000613d000000000101043b000700000001001d0000000801000029000000000010043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d0000000702000029000000a00220021000000009022001af000007a6022001c7000000000101043b000000000021041b0000000b01000029000007a6001001980000169f0000c13d00000008010000290000000101100039000700000001001d000000000010043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b000000000101041a000000000001004b0000169f0000c13d0000000301000039000000000101041a000000070010006b0000169f0000613d0000000701000029000000000010043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000193f0000613d000000000101043b0000000b02000029000000000021041b0000000001000414000006d90010009c000006d901008041000000c001100210000006de011001c70000800d0200003900000004030000390000070c040000410000000a050000290000000906000029000000080700002900000c4e0000013d000000000001042f00000060041002700000001f0340018f0000070602400198000016b60000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000016b20000c13d000006d904400197000000000003004b000016c40000613d000000000121034f0000000303300210000000000502043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000120435000000600140021000001b6100010430000000400400043d000400000004001d00000704010000410000000000140435000000040140003900000007030000290000000000310435000006d90040009c000006d901000041000000000104401900000040011002100000000003000414000006d90030009c000006d903008041000000c003300210000000000113019f00000705011001c70000001802200270000006dc022001971b5f1b5a0000040f0000006003100270000006d903300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000040b0000290000000405700029000016ea0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000016e60000c13d000000000006004b000016f70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000017ca0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000006e20010009c000000520000213d0000000100200190000000520000c13d000000400010043f000000200030008c0000193f0000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b0000193f0000c13d000000000001004b000011dd0000613d0000162f0000013d0000001f0430003900000795044001970000003f044000390000079604400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000006e20040009c000000520000213d0000000100600190000000520000c13d000000400040043f0000001f0430018f000000000635043600000706053001980000000003560019000017270000613d000000000701034f000000007807043c0000000006860436000000000036004b000017230000c13d000000000004004b000015440000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000015440000013d0000001f0430003900000795044001970000003f044000390000079604400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000006e20040009c000000520000213d0000000100600190000000520000c13d000000400040043f0000001f0430018f0000000006350436000007060530019800000000035600190000174d0000613d000000000701034f000000007807043c0000000006860436000000000036004b000017490000c13d000000000004004b0000156c0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000156c0000013d0000001f0430003900000795044001970000003f044000390000079604400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000006e20040009c000000520000213d0000000100600190000000520000c13d000000400040043f0000001f0430018f000000000635043600000706053001980000000003560019000017730000613d000000000701034f000000007807043c0000000006860436000000000036004b0000176f0000c13d000000000004004b000015940000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000015940000013d000000400400043d000100000004001d00000704010000410000000000140435000000040140003900000005030000290000000000310435000006d90040009c000006d901000041000000000104401900000040011002100000000003000414000006d90030009c000006d903008041000000c003300210000000000113019f00000705011001c70000001802200270000006dc022001971b5f1b5a0000040f0000006003100270000006d903300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000010b0000290000000105700029000017a50000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000017a10000c13d000000000006004b000017b20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000017d60000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000006e20010009c000000520000213d0000000100200190000000520000c13d000000400010043f000000200030008c0000193f0000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b0000193f0000c13d000000000001004b000007490000c13d000011dd0000013d0000001f0530018f0000070606300198000000400200043d00000000046200190000127d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017d10000c13d0000127d0000013d0000001f0530018f0000070606300198000000400200043d00000000046200190000127d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017dd0000c13d0000127d0000013d000000400400043d000200000004001d00000704010000410000000000140435000000040140003900000006030000290000000000310435000006d90040009c000006d901000041000000000104401900000040011002100000000003000414000006d90030009c000006d903008041000000c003300210000000000113019f00000705011001c70000001802200270000006dc022001971b5f1b5a0000040f0000006003100270000006d903300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000020b0000290000000205700029000018060000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000018020000c13d000000000006004b000018130000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000018310000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000006e20010009c000000520000213d0000000100200190000000520000c13d000000400010043f000000200030008c0000193f0000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b0000193f0000c13d000000000001004b00000d710000c13d000011dd0000013d000007b401000041000000000010043f0000003201000039000000040010043f000007050100004100001b61000104300000001f0530018f0000070606300198000000400200043d00000000046200190000127d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018380000c13d0000127d0000013d000007b701000041000000000010043f000007a20100004100001b6100010430000007b601000041000000000010043f000007a20100004100001b61000104300000001f0530018f0000070606300198000000400200043d00000000046200190000127d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000184c0000c13d0000127d0000013d0000000006530019000000000005004b0000185a0000613d0000000707000029000000000803001900000000790704340000000008980436000000000068004b000018560000c13d000000000004004b000018680000613d000700070050002d0000000304400210000000000506043300000000054501cf000000000545022f000000070700002900000000070704330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000001f04100039000007d50240019700000000013100190000000000010435000000a401200039000006d90010009c000006d90100804100000060011002100000000b02000029000006d90020009c000006d9020080410000004002200210000000000121019f0000000002000414000006d90020009c000006d902008041000000c002200210000000000121019f00000002020000291b5f1b550000040f0000006003100270000006d903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b057000290000188b0000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b000018870000c13d000000000006004b000018980000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000018af0000613d0000001f01400039000000600210018f0000000b01200029000000000021004b00000000020000390000000102004039000006e20010009c000000520000213d0000000100200190000000520000c13d000000400010043f000000200030008c0000193f0000413d0000000b010000290000000001010433000007aa001001980000193f0000c13d000006ff01100197000007a90010009c000011290000613d000018b50000013d000000000003004b000018b90000c13d00000060020000390000000001020433000000000001004b000018e10000c13d000007bd01000041000000000010043f000007a20100004100001b61000104300000001f0230003900000795022001970000003f022000390000079604200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000006e20040009c000000520000213d0000000100500190000000520000c13d000000400040043f0000001f0430018f00000000063204360000070605300198000900000006001d0000000003560019000018d30000613d000000000601034f0000000907000029000000006806043c0000000007870436000000000037004b000018cf0000c13d000000000004004b000018b20000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000018b20000013d0000000902000029000006d90020009c000006d9020080410000004002200210000006d90010009c000006d9010080410000006001100210000000000121019f00001b61000104300000000005420019000000000004004b000018f30000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b000018ef0000c13d000000000003004b000019000000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000001f03100039000007d50330019700000000012100190000000000010435000000a401300039000006d90010009c000006d90100804100000060011002100000000b02000029000006d90020009c000006d9020080410000004002200210000000000121019f0000000002000414000006d90020009c000006d902008041000000c002200210000000000121019f00000003020000291b5f1b550000040f0000006003100270000006d903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b05700029000019230000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b0000191f0000c13d000000000006004b000019300000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000019410000613d0000001f01400039000000600210018f0000000b01200029000000000021004b00000000020000390000000102004039000006e20010009c000000520000213d0000000100200190000000520000c13d000000400010043f000000200030008c000018a70000813d000000000100001900001b6100010430000000000003004b000019450000c13d00000060020000390000196c0000013d0000001f0230003900000795022001970000003f022000390000079604200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000006e20040009c000000520000213d0000000100500190000000520000c13d000000400040043f0000001f0430018f00000000063204360000070605300198000a00000006001d00000000035600190000195f0000613d000000000601034f0000000a07000029000000006806043c0000000007870436000000000037004b0000195b0000c13d000000000004004b0000196c0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000018b50000613d0000000a02000029000018e20000013d000006dc02200197000000000020043f000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f00000001002001900000197f0000613d000000000101043b000000000001042d000000000100001900001b610001043000000000430104340000000001320436000007d5063001970000001f0530018f000000000014004b000019970000813d000000000006004b000019930000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c0000198d0000c13d000000000005004b000019ad0000613d0000000007010019000019a30000013d0000000007610019000000000006004b000019a00000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b0000199c0000c13d000000000005004b000019ad0000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000431001900000000000404350000001f03300039000007d5023001970000000001210019000000000001042d0000002003000039000000000331043600000000420204340000000000230435000007d5062001970000001f0520018f0000004001100039000000000014004b000019cc0000813d000000000006004b000019c80000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000019c20000c13d000000000005004b000019e20000613d0000000007010019000019d80000013d0000000007610019000000000006004b000019d50000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b000019d10000c13d000000000005004b000019e20000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000412001900000000000404350000001f02200039000007d5022001970000000001120019000000000001042d0000001f02200039000007d5022001970000000001120019000000000021004b00000000020000390000000102004039000006e20010009c000019f40000213d0000000100200190000019f40000c13d000000400010043f000000000001042d000007b401000041000000000010043f0000004101000039000000040010043f000007050100004100001b6100010430000000400100043d000007d80010009c00001a000000813d0000004002100039000000400020043f000000000001042d000007b401000041000000000010043f0000004101000039000000040010043f000007050100004100001b6100010430000000000301001900000000011200a9000000000003004b00001a0d0000613d00000000033100d9000000000023004b00001a0e0000c13d000000000001042d000007b401000041000000000010043f0000001101000039000000040010043f000007050100004100001b6100010430000000000100041a000006dc021001970000000001000411000000000012004b00001a1a0000c13d000000000001042d0000079802000041000000000020043f000000040010043f000007050100004100001b61000104300004000000000002000200000002001d000000000002004b00001ad90000613d00000000030100190000000301000039000000000101041a000400000001001d0000000f01000039000000000201041a000007030020019800001a760000613d000100000003001d000000400400043d000300000004001d000007040100004100000000001404350000000001000411000006dc0110019700000004034000390000000000130435000006d90040009c000006d901000041000000000104401900000040011002100000000003000414000006d90030009c000006d903008041000000c003300210000000000113019f00000705011001c70000001802200270000006dc022001971b5f1b5a0000040f000000030b0000290000006003100270000006d903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900001a510000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00001a4d0000c13d000000000006004b00001a5e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001ae20000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000006e20010009c00001b000000213d000000010020019000001b000000c13d000000400010043f0000001f0030008c00001ad10000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b00001ad10000c13d000000000001004b000000010300002900001b060000613d000006dc01300197000300000001001d000000000010043f0000000801000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f000000010020019000001ad10000613d0000000202000029000007b5022000d1000000000101043b000000000301041a0000000002230019000000000021041b0000070a0100004100000000001004430000000001000414000006d90010009c000006d901008041000000c0011002100000070b011001c70000800b020000391b5f1b5a0000040f000000010020019000001add0000613d000000000101043b000100000001001d0000000401000029000000000010043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f000000010020019000001ad10000613d0000000102000029000000a0022002100000000203000029000000010030008c0000000003000019000007a603006041000000000223019f0000000306000029000000000262019f000000000101043b000000000021041b0000000001000414000006d90010009c000006d901008041000000c001100210000006de011001c70000800d0200003900000004030000390000070c04000041000000000500001900000004070000291b5f1b550000040f0000000407000029000000010020019000001ad10000613d000200020070002d0000000107700039000000020070006c00001ad30000613d0000000001000414000006d90010009c000006d901008041000000c001100210000006de011001c70000800d0200003900000004030000390000070c0400004100000000050000190000000306000029000400000007001d00000004070000291b5f1b550000040f0000000407000029000000010020019000001abe0000c13d000000000100001900001b6100010430000000030000006b00001ade0000613d00000003010000390000000202000029000000000021041b000000000001042d000007b701000041000000000010043f000007a20100004100001b6100010430000000000001042f000007b601000041000000000010043f000007a20100004100001b61000104300000001f0530018f0000070606300198000000400200043d000000000462001900001aed0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ae90000c13d000000000005004b00001afa0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000006d90020009c000006d9020080410000004002200210000000000112019f00001b6100010430000007b401000041000000000010043f0000004101000039000000040010043f000007050100004100001b6100010430000007c101000041000000000010043f000007a20100004100001b61000104300001000000000002000000000001004b00001b3b0000613d000100000001001d000000000010043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f000000010020019000001b390000613d000000000101043b000000000101041a0000079b00100198000000010200002900001b3b0000c13d000000000001004b00001b380000c13d0000000301000039000000000101041a000000000021004b00001b3b0000a13d000000010220008a000100000002001d000000000020043f0000000701000039000000200010043f0000000001000414000006d90010009c000006d901008041000000c00110021000000708011001c700008010020000391b5f1b5a0000040f000000010020019000001b390000613d000000000101043b000000000101041a000000000001004b000000010200002900001b250000613d000000000001042d000000000100001900001b6100010430000007cb01000041000000000010043f000007a20100004100001b6100010430000000000001042f000006d90010009c000006d9010080410000004001100210000006d90020009c000006d9020080410000006002200210000000000112019f0000000002000414000006d90020009c000006d902008041000000c002200210000000000112019f000006de011001c700008010020000391b5f1b5a0000040f000000010020019000001b530000613d000000000101043b000000000001042d000000000100001900001b610001043000001b58002104210000000102000039000000000001042d0000000002000019000000000001042d00001b5d002104230000000102000039000000000001042d0000000002000019000000000001042d00001b5f0000043200001b600001042e00001b61000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff446f706579000000000000000000000000000000000000000000000000000000446f706500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000000000000000000000000000000000000000000000100000000000000000200000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000000000000000000000000000000000000000019844a0614e660000000000000000000000002dcc7c4ab800bf67380e2553be1e6891a36f18e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00001b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672e497b8238be5e4f32f72d877ba0627e627848cb8a6504aa01d21a347d565198ece133de58ba1c6975fb16a8f1bbda43e7057fe6397fd7e694ab92e9963dff39831ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6c68747470733a2f2f6d696e746966792d6c61756e63687061642e6e7963332e6331ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c68646e2e6469676974616c6f6365616e7370616365732e636f6d2f62653065613831ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6938632d366665632d346265632d383461642d3565313737396439373065382e6731ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6a696600000000000000000000000000000000000000000000000000000000000031ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6b0000000000000000000000000000000000000000000000000000000067c9bac80000000000000000000000000000000000000000000000000000000067c9c8d83c4c2a1259661d4f5190d8cf56f34da106f7efae1de26b2169e8e9a29105dbac0000000000000000000000000000000000000000000000000000000067c9e4f8f5faedf70f99e04704be9f7b08fa7f06302815c22985134be45fca0aa77e28e70000000000000000000000000000000000000000000000000000000067ca01180000000000000000000000000000000000000000000000000020af59ebef00001c8efba8758fccd9d68e4f3833a53a7b9a3f61b2706563ce6e974081c4d39de70000000000000000000000000000000000000000000000000000000067ca1d387d3e3dbe000000000000000000000000000000000000000000000000000000000000000000000000000000003cc6cdda760b79bafa08df41ecfa224f810dceb60000000000000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000aaeb6d7670e522a718067333cd4effffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf0000000000000000000000009ea1c1f6ba095b33974a677db01864830fc94b710000000000000000000002bc9ea1c1f6ba095b33974a677db01864830fc94b710000000000000000000000000000000000000000000000000000000000ff0000e18bc08a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000a95a2d7c7cb7a68195009435277b4896f520cce90200000000000000000000000000000000000040000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffcdffffffffffffffce796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320200000200000000000000000000000000000004000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000004000000100000000000000000000000000000000000000000000000000000000000000000000000000691ce96f00000000000000000000000000000000000000000000000000000000ab7b499200000000000000000000000000000000000000000000000000000000e1136b3c00000000000000000000000000000000000000000000000000000000f2fde38a00000000000000000000000000000000000000000000000000000000f695963a00000000000000000000000000000000000000000000000000000000fb796e6b00000000000000000000000000000000000000000000000000000000fb796e6c00000000000000000000000000000000000000000000000000000000fea87d2200000000000000000000000000000000000000000000000000000000f695963b00000000000000000000000000000000000000000000000000000000fb65ba9800000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f3f119f100000000000000000000000000000000000000000000000000000000f432ca6700000000000000000000000000000000000000000000000000000000e5e2a0f500000000000000000000000000000000000000000000000000000000e5e2a0f600000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000ed9aab5100000000000000000000000000000000000000000000000000000000e1136b3d00000000000000000000000000000000000000000000000000000000e23edee500000000000000000000000000000000000000000000000000000000e56e9ac000000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000d2762b4500000000000000000000000000000000000000000000000000000000d2762b4600000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000e079e46100000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000cafd705f00000000000000000000000000000000000000000000000000000000d1c026c900000000000000000000000000000000000000000000000000000000b7c0b8e700000000000000000000000000000000000000000000000000000000b7c0b8e800000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000c3d923a600000000000000000000000000000000000000000000000000000000ab7b499300000000000000000000000000000000000000000000000000000000abd017ea00000000000000000000000000000000000000000000000000000000ac19701b00000000000000000000000000000000000000000000000000000000871215d30000000000000000000000000000000000000000000000000000000097e4007d00000000000000000000000000000000000000000000000000000000a42c05b900000000000000000000000000000000000000000000000000000000aa0678fe00000000000000000000000000000000000000000000000000000000aa0678ff00000000000000000000000000000000000000000000000000000000aa60bdd000000000000000000000000000000000000000000000000000000000a42c05ba00000000000000000000000000000000000000000000000000000000a70138c10000000000000000000000000000000000000000000000000000000097e4007e000000000000000000000000000000000000000000000000000000009e5f94a700000000000000000000000000000000000000000000000000000000a22cb4650000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000096ce3bfa0000000000000000000000000000000000000000000000000000000096db3e8900000000000000000000000000000000000000000000000000000000871215d4000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000008e9a85f3000000000000000000000000000000000000000000000000000000007537c802000000000000000000000000000000000000000000000000000000007d4b5a20000000000000000000000000000000000000000000000000000000007d4b5a21000000000000000000000000000000000000000000000000000000007f371aa000000000000000000000000000000000000000000000000000000000858633f2000000000000000000000000000000000000000000000000000000007537c8030000000000000000000000000000000000000000000000000000000076ee01530000000000000000000000000000000000000000000000000000000079544c8600000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000071be5e140000000000000000000000000000000000000000000000000000000072b0d90c00000000000000000000000000000000000000000000000000000000691ce970000000000000000000000000000000000000000000000000000000006f8b44b00000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000406466a60000000000000000000000000000000000000000000000000000000054389436000000000000000000000000000000000000000000000000000000005c1afeca000000000000000000000000000000000000000000000000000000005e5dddeb0000000000000000000000000000000000000000000000000000000064f52a1e0000000000000000000000000000000000000000000000000000000064f52a1f0000000000000000000000000000000000000000000000000000000065216a41000000000000000000000000000000000000000000000000000000005e5dddec000000000000000000000000000000000000000000000000000000006352211e000000000000000000000000000000000000000000000000000000005c1afecb000000000000000000000000000000000000000000000000000000005d0e956e000000000000000000000000000000000000000000000000000000005d99a0cf0000000000000000000000000000000000000000000000000000000055f804b20000000000000000000000000000000000000000000000000000000055f804b3000000000000000000000000000000000000000000000000000000005944c7530000000000000000000000000000000000000000000000000000000059a2f3bd000000000000000000000000000000000000000000000000000000005438943700000000000000000000000000000000000000000000000000000000545b70b20000000000000000000000000000000000000000000000000000000055f5f06600000000000000000000000000000000000000000000000000000000484b973b000000000000000000000000000000000000000000000000000000004f115db0000000000000000000000000000000000000000000000000000000004f115db10000000000000000000000000000000000000000000000000000000052476ecb0000000000000000000000000000000000000000000000000000000053f6d3c600000000000000000000000000000000000000000000000000000000484b973c000000000000000000000000000000000000000000000000000000004b21839e000000000000000000000000000000000000000000000000000000004ed69eaf0000000000000000000000000000000000000000000000000000000042842e0d0000000000000000000000000000000000000000000000000000000042842e0e00000000000000000000000000000000000000000000000000000000462fed140000000000000000000000000000000000000000000000000000000046fff98d00000000000000000000000000000000000000000000000000000000406466a70000000000000000000000000000000000000000000000000000000040eefc470000000000000000000000000000000000000000000000000000000041d94c980000000000000000000000000000000000000000000000000000000021b8acd6000000000000000000000000000000000000000000000000000000002a552059000000000000000000000000000000000000000000000000000000003bf30393000000000000000000000000000000000000000000000000000000003bf30394000000000000000000000000000000000000000000000000000000003c6d5762000000000000000000000000000000000000000000000000000000003ccfd60b000000000000000000000000000000000000000000000000000000002a55205a0000000000000000000000000000000000000000000000000000000030a089650000000000000000000000000000000000000000000000000000000030db1d5b00000000000000000000000000000000000000000000000000000000251c21eb00000000000000000000000000000000000000000000000000000000251c21ec0000000000000000000000000000000000000000000000000000000025816cc5000000000000000000000000000000000000000000000000000000002761948e0000000000000000000000000000000000000000000000000000000021b8acd70000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000023cca1af00000000000000000000000000000000000000000000000000000000095ea7b20000000000000000000000000000000000000000000000000000000010d2f7160000000000000000000000000000000000000000000000000000000010d2f7170000000000000000000000000000000000000000000000000000000012b365100000000000000000000000000000000000000000000000000000000018160ddd00000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000c92b631000000000000000000000000000000000000000000000000000000000d4c18280000000000000000000000000000000000000000000000000000000006fdde020000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000000000000000000000000759f2d800000000000000000000000000000000000000000000000000000000081812fc000000000000000000000000000000000000000000000000000000000141a4490000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000004634d8d00000000000000000000000000000000000000200000008000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe02b5dffd9914ddb43acdb6963bacf053a87bf9354300844f6339f17741e25145a118cdaa7000000000000000000000000000000000000000000000000000000001e4fbdf7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30000000000000000000000000000000000000000000000000000000000000002f000000000000000000000000000000000000000000000000000000000000002e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdfa14c4b50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f00000000000000000000000000000000000000000000c6171134001122334455000000000000000000000000000000000000004400000016000000000000000000000002000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000150b7a020000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000ffffffffffffffffffffffffffffffffffffffff000000ffffffffffffffffff0000000000000000000000000000000000000000ffffff17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31f652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3fb05e92fa000000000000000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f398f4eb604000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000fc4c6036000000000000000000000000000000000000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000012e07630000000000000000000000000000000000000000000000000000000000b562e8dd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff969f0852000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffe048e71000000000000000000000000000000000000000000000000000000000d1a57ed6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a11481000000000000000000000000000000000000000000000000000000000059c896be000000000000000000000000000000000000000000000000000000004c80d8be00000000000000000000000000000000000000000000000000000000ea553b3400000000000000000000000000000000000000000000000000000000dd4e010600000000000000000000000000000000000000000000000000000000327c6a56000000000000000000000000000000000000000000000000000000008a164f630000000000000000000000000000000000000000000000000000000090b8ec1800000000000000000000000000000000000000000000000000000000cd0081c200000000000000000000000000000000000000000000000000000000db89e3f400000000000000000000000000000000000000000000000000000000cfb3b942000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925df2d9b4200000000000000000000000000000000000000000000000000000000cf4700e400000000000000000000000000000000000000000000000000000000036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0b6d9900a00000000000000000000000000000000000000000000000000000000f4df6ae50000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd000000000000000000000000000000000000000000000000000000002a55205a00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000ffffffffffffffc00000000000000000000000000000000000000000000000000000000000000000d52939c06a4bc43307e78f6d1bc961e3075198f97cc512c7aa618da7d7ef474d
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.