Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
2452
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ERC721WithMerkleWhitelist
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-18 */ // Sources flattened with hardhat v2.10.2 https://hardhat.org // File @openzeppelin/contracts/utils/math/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @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; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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. * * By default, the owner account will be the one that deploys the contract. 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; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/cryptography/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * 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. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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[EIP 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); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. * This includes minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File contracts/nft.sol pragma solidity ^0.8.4; contract ERC721WithMerkleWhitelist is ERC721A,Ownable{ using SafeMath for uint; uint public _whitelistStart; uint public _whitelistEnd; uint public _whitelistPrice; uint public _fixedPriceStart; uint public _fixedPriceEnd; uint public _fixedPricePrice; uint public _mintLimit; uint public _whitelistLimit; uint public _whitelistMinted; bytes32 public _merkleRootHash; uint public _fixedPriceLimit; uint public _incrementID; string public URI_PREFIX; address public _receiver; mapping(address => uint) public _fixedPriceAlreadyMint; mapping(address => uint) public _whitelistAlreadyMint; event MintNFT(address to,uint256 tokenId,uint256 price,uint256 time); constructor()ERC721A("METAVERSUS_NFT","METAVERSUS_NFT"){ _incrementID = 1; _mintLimit = 10000; _whitelistLimit = 6003; _fixedPriceLimit = 20; _receiver = 0xea928385de968c227Bc0cdB01b0aF2E510d9042b; } function batchMint(address to,uint amount)public onlyOwner{ _mint(to,amount); } function setIncrement(uint newID)public onlyOwner{ _incrementID = newID; } function setReceiver(address newReceiver)public onlyOwner{ _receiver = newReceiver; } function setLimit(uint white,uint fix)public onlyOwner{ _whitelistLimit = white; _mintLimit = fix; } function amountLeft()public view returns(uint){ if(block.timestamp < _fixedPriceStart){ return _whitelistLimit.sub(_incrementID).add(1); } return _mintLimit.sub(_incrementID).add(1); } function setWhitelistMerkleRootHash(bytes32 merkleRootHash)public onlyOwner{ _merkleRootHash = merkleRootHash; } function setWhitelist(uint start,uint end,uint price)public onlyOwner{ _whitelistStart = start; _whitelistEnd = end; _whitelistPrice = price; } function setFixedPrice(uint start,uint end,uint price,uint limit)public onlyOwner{ _fixedPriceStart = start; _fixedPriceEnd = end; _fixedPricePrice = price; _fixedPriceLimit = limit; } function incrementMint(address to,uint limit)internal{ _mint(to,_incrementID); _incrementID=_incrementID.add(1); require(_incrementID<=limit,"EXCEED MINT LIMIT"); } function Mint(uint64 whitelistLimit,bytes32[] calldata merkleProof,uint64 mintAmount)public payable{ require(mintAmount > 0,"CANNOT MINT ZERO"); require(_incrementID.add(mintAmount) <= _mintLimit , "EXCEED MINT LIMIT");//todo move require(_whitelistStart !=0,"UNINITIALIZE"); require(block.timestamp > _whitelistStart,"WAIT FOR WHITELIST MINT LAUNCH"); if(block.timestamp<=_whitelistEnd){ whitelistMint(whitelistLimit,merkleProof,mintAmount); return; } require(_fixedPriceStart!=0,"UNINITIALIZE"); require(block.timestamp > _fixedPriceStart,"WAIT FOR FIXED PRICE MINT LAUNCH"); if(block.timestamp<=_fixedPriceEnd){ fixedPriceMint(mintAmount); return; } revert("MINT ALREADY END"); } function whitelistMint(uint64 whitelistLimit,bytes32[] calldata merkleProof,uint64 mintAmount)internal{ require(MerkleProof.verify(merkleProof, _merkleRootHash, keccak256(abi.encodePacked(msg.sender,whitelistLimit))) , "INVALID WHITELIST"); uint afterMintAmount = _whitelistAlreadyMint[msg.sender].add(mintAmount); require(afterMintAmount <= whitelistLimit , "EXCEEED WHITELIST MINT LIMIT"); require(msg.value == _whitelistPrice.mul(mintAmount),"VALUE INSUFFICIENT" ); _incrementID=_incrementID.add(mintAmount); require(_incrementID<=_whitelistLimit,"EXCEED MINT LIMIT"); for(uint index=0;index<mintAmount;index++){ emit MintNFT(msg.sender,_nextTokenId()+index,msg.value.div(mintAmount),block.timestamp); } _mint(msg.sender,mintAmount); payable(_receiver).transfer(_whitelistPrice.mul(mintAmount)); _whitelistAlreadyMint[msg.sender] = afterMintAmount; } function fixedPriceMint(uint64 mintAmount)internal{ uint afterMintAmount = _fixedPriceAlreadyMint[msg.sender].add(mintAmount); require(afterMintAmount <= _fixedPriceLimit , "EXCEEED FIXED PRICE MINT LIMIT"); require(msg.value == _fixedPricePrice.mul(mintAmount),"VALUE INSUFFICIENT" ); _incrementID=_incrementID.add(mintAmount); require(_incrementID<=_mintLimit,"EXCEED MINT LIMIT"); for(uint index=0;index<mintAmount;index++){ emit MintNFT(msg.sender,_nextTokenId()+index,msg.value.div(mintAmount),block.timestamp); } _mint(msg.sender,mintAmount); payable(_receiver).transfer(_fixedPricePrice.mul(mintAmount)); _fixedPriceAlreadyMint[msg.sender] = afterMintAmount; } function withdraw(address to,uint amount)public onlyOwner{ payable(to).transfer(amount); } function setPrefix(string memory prefix)public onlyOwner{ URI_PREFIX = prefix; } function _baseURI() internal view override returns (string memory) { return URI_PREFIX; } function _startTokenId() internal view override returns (uint256) { return 1; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"MintNFT","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":"uint64","name":"whitelistLimit","type":"uint64"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint64","name":"mintAmount","type":"uint64"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"URI_PREFIX","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_fixedPriceAlreadyMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fixedPriceEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fixedPriceLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fixedPricePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fixedPriceStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_incrementID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_merkleRootHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_receiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whitelistAlreadyMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_whitelistEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_whitelistLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_whitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_whitelistStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setFixedPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newID","type":"uint256"}],"name":"setIncrement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"white","type":"uint256"},{"internalType":"uint256","name":"fix","type":"uint256"}],"name":"setLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"prefix","type":"string"}],"name":"setPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newReceiver","type":"address"}],"name":"setReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRootHash","type":"bytes32"}],"name":"setWhitelistMerkleRootHash","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600e81526020017f4d4554415645525355535f4e46540000000000000000000000000000000000008152506040518060400160405280600e81526020017f4d4554415645525355535f4e46540000000000000000000000000000000000008152508160029080519060200190620000969291906200023c565b508060039080519060200190620000af9291906200023c565b50620000c06200016560201b60201c565b6000819055505050620000e8620000dc6200016e60201b60201c565b6200017660201b60201c565b6001601481905550612710600f81905550611773601081905550601460138190555073ea928385de968c227bc0cdb01b0af2e510d9042b601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000351565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024a90620002ec565b90600052602060002090601f0160209004810192826200026e5760008555620002ba565b82601f106200028957805160ff1916838001178555620002ba565b82800160010185558215620002ba579182015b82811115620002b95782518255916020019190600101906200029c565b5b509050620002c99190620002cd565b5090565b5b80821115620002e8576000816000905550600101620002ce565b5090565b600060028204905060018216806200030557607f821691505b602082108114156200031c576200031b62000322565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61423880620003616000396000f3fe6080604052600436106102675760003560e01c8063715018a611610144578063c87b56dd116100b6578063e985e9c51161007a578063e985e9c5146108fd578063ed8d55541461093a578063ee88fb0f14610977578063f1cf6409146109a2578063f2fde38b146109cd578063f3fef3a3146109f657610267565b8063c87b56dd14610804578063d1b70b3e14610841578063dd1134ec1461087e578063ddf3fc1a146108a9578063e011ac87146108d257610267565b806392898cf81161010857806392898cf81461071557806395d89b41146107405780639875eaec1461076b578063a22cb46514610787578063a7c50824146107b0578063b88d4fde146107db57610267565b8063715018a614610656578063718da7ee1461066d5780637b5cad691461069657806385cb593b146106c15780638da5cb5b146106ea57610267565b80633b5c855a116101dd578063536dc7e7116101a1578063536dc7e71461053257806358cd5a221461055d5780636352211e14610586578063678364f6146105c357806370a08231146105ee57806370a8ac971461062b57610267565b80633b5c855a1461045f578063409c67221461048a57806341334718146104b557806342842e0e146104e057806343508b051461050957610267565b80630e32170e1161022f5780630e32170e146103655780631214f7cd1461039057806318160ddd146103b9578063207add91146103e457806323b872dd1461040d57806324f2b62e1461043657610267565b806301ffc9a71461026c57806302964ff1146102a957806306fdde03146102d4578063081812fc146102ff578063095ea7b31461033c575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906132bf565b610a1f565b6040516102a091906138aa565b60405180910390f35b3480156102b557600080fd5b506102be610ab1565b6040516102cb91906137fe565b60405180910390f35b3480156102e057600080fd5b506102e9610ad7565b6040516102f691906138e0565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190613362565b610b69565b60405161033391906137fe565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190613252565b610be5565b005b34801561037157600080fd5b5061037a610d26565b6040516103879190613a82565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b29190613292565b610d2c565b005b3480156103c557600080fd5b506103ce610db2565b6040516103db9190613a82565b60405180910390f35b3480156103f057600080fd5b5061040b6004803603810190610406919061338f565b610dc9565b005b34801561041957600080fd5b50610434600480360381019061042f919061313c565b610e57565b005b34801561044257600080fd5b5061045d600480360381019061045891906133cf565b61117c565b005b34801561046b57600080fd5b50610474611212565b6040516104819190613a82565b60405180910390f35b34801561049657600080fd5b5061049f611218565b6040516104ac91906138e0565b60405180910390f35b3480156104c157600080fd5b506104ca6112a6565b6040516104d79190613a82565b60405180910390f35b3480156104ec57600080fd5b506105076004803603810190610502919061313c565b6112ac565b005b34801561051557600080fd5b50610530600480360381019061052b9190613252565b6112cc565b005b34801561053e57600080fd5b50610547611356565b60405161055491906138c5565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f9190613422565b61135c565b005b34801561059257600080fd5b506105ad60048036038101906105a89190613362565b6113fa565b6040516105ba91906137fe565b60405180910390f35b3480156105cf57600080fd5b506105d861140c565b6040516105e59190613a82565b60405180910390f35b3480156105fa57600080fd5b50610615600480360381019061061091906130cf565b611412565b6040516106229190613a82565b60405180910390f35b34801561063757600080fd5b506106406114cb565b60405161064d9190613a82565b60405180910390f35b34801561066257600080fd5b5061066b6114d1565b005b34801561067957600080fd5b50610694600480360381019061068f91906130cf565b611559565b005b3480156106a257600080fd5b506106ab611619565b6040516106b89190613a82565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190613319565b61161f565b005b3480156106f657600080fd5b506106ff6116b5565b60405161070c91906137fe565b60405180910390f35b34801561072157600080fd5b5061072a6116df565b6040516107379190613a82565b60405180910390f35b34801561074c57600080fd5b506107556116e5565b60405161076291906138e0565b60405180910390f35b61078560048036038101906107809190613489565b611777565b005b34801561079357600080fd5b506107ae60048036038101906107a99190613212565b6119ad565b005b3480156107bc57600080fd5b506107c5611b25565b6040516107d29190613a82565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd919061318f565b611b2b565b005b34801561081057600080fd5b5061082b60048036038101906108269190613362565b611b9e565b60405161083891906138e0565b60405180910390f35b34801561084d57600080fd5b50610868600480360381019061086391906130cf565b611c3d565b6040516108759190613a82565b60405180910390f35b34801561088a57600080fd5b50610893611c55565b6040516108a09190613a82565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb9190613362565b611c5b565b005b3480156108de57600080fd5b506108e7611ce1565b6040516108f49190613a82565b60405180910390f35b34801561090957600080fd5b50610924600480360381019061091f91906130fc565b611d4e565b60405161093191906138aa565b60405180910390f35b34801561094657600080fd5b50610961600480360381019061095c91906130cf565b611de2565b60405161096e9190613a82565b60405180910390f35b34801561098357600080fd5b5061098c611dfa565b6040516109999190613a82565b60405180910390f35b3480156109ae57600080fd5b506109b7611e00565b6040516109c49190613a82565b60405180910390f35b3480156109d957600080fd5b506109f460048036038101906109ef91906130cf565b611e06565b005b348015610a0257600080fd5b50610a1d6004803603810190610a189190613252565b611efe565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aaa5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060028054610ae690613d50565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1290613d50565b8015610b5f5780601f10610b3457610100808354040283529160200191610b5f565b820191906000526020600020905b815481529060010190602001808311610b4257829003601f168201915b5050505050905090565b6000610b7482611fc5565b610baa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf0826113fa565b90508073ffffffffffffffffffffffffffffffffffffffff16610c11612024565b73ffffffffffffffffffffffffffffffffffffffff1614610c7457610c3d81610c38612024565b611d4e565b610c73576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a5481565b610d3461202c565b73ffffffffffffffffffffffffffffffffffffffff16610d526116b5565b73ffffffffffffffffffffffffffffffffffffffff1614610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613982565b60405180910390fd5b8060128190555050565b6000610dbc612034565b6001546000540303905090565b610dd161202c565b73ffffffffffffffffffffffffffffffffffffffff16610def6116b5565b73ffffffffffffffffffffffffffffffffffffffff1614610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c90613982565b60405180910390fd5b8160108190555080600f819055505050565b6000610e628261203d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ec9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ed58461210b565b91509150610eeb8187610ee6612024565b61212d565b610f3757610f0086610efb612024565b611d4e565b610f36576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f9e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fab8686866001612171565b8015610fb657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061108485611060888887612177565b7c02000000000000000000000000000000000000000000000000000000001761219f565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561110c57600060018501905060006004600083815260200190815260200160002054141561110a576000548114611109578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461117486868660016121ca565b505050505050565b61118461202c565b73ffffffffffffffffffffffffffffffffffffffff166111a26116b5565b73ffffffffffffffffffffffffffffffffffffffff16146111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90613982565b60405180910390fd5b8260098190555081600a8190555080600b81905550505050565b600c5481565b6015805461122590613d50565b80601f016020809104026020016040519081016040528092919081815260200182805461125190613d50565b801561129e5780601f106112735761010080835404028352916020019161129e565b820191906000526020600020905b81548152906001019060200180831161128157829003601f168201915b505050505081565b600d5481565b6112c783838360405180602001604052806000815250611b2b565b505050565b6112d461202c565b73ffffffffffffffffffffffffffffffffffffffff166112f26116b5565b73ffffffffffffffffffffffffffffffffffffffff1614611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f90613982565b60405180910390fd5b61135282826121d0565b5050565b60125481565b61136461202c565b73ffffffffffffffffffffffffffffffffffffffff166113826116b5565b73ffffffffffffffffffffffffffffffffffffffff16146113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90613982565b60405180910390fd5b83600c8190555082600d8190555081600e819055508060138190555050505050565b60006114058261203d565b9050919050565b60105481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561147a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b60095481565b6114d961202c565b73ffffffffffffffffffffffffffffffffffffffff166114f76116b5565b73ffffffffffffffffffffffffffffffffffffffff161461154d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154490613982565b60405180910390fd5b61155760006123a4565b565b61156161202c565b73ffffffffffffffffffffffffffffffffffffffff1661157f6116b5565b73ffffffffffffffffffffffffffffffffffffffff16146115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90613982565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b61162761202c565b73ffffffffffffffffffffffffffffffffffffffff166116456116b5565b73ffffffffffffffffffffffffffffffffffffffff161461169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290613982565b60405180910390fd5b80601590805190602001906116b1929190612e63565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600380546116f490613d50565b80601f016020809104026020016040519081016040528092919081815260200182805461172090613d50565b801561176d5780601f106117425761010080835404028352916020019161176d565b820191906000526020600020905b81548152906001019060200180831161175057829003601f168201915b5050505050905090565b60008167ffffffffffffffff16116117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb90613a62565b60405180910390fd5b600f546117e68267ffffffffffffffff1660145461246a90919063ffffffff16565b1115611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e90613a42565b60405180910390fd5b6000600954141561186d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186490613962565b60405180910390fd5b60095442116118b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a890613942565b60405180910390fd5b600a5442116118cb576118c684848484612480565b6119a7565b6000600c541415611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890613962565b60405180910390fd5b600c544211611955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194c906139a2565b60405180910390fd5b600d54421161196c5761196781612828565b6119a7565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e90613a02565b60405180910390fd5b50505050565b6119b5612024565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a1a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a27612024565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ad4612024565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b1991906138aa565b60405180910390a35050565b60135481565b611b36848484610e57565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b9857611b6184848484612b10565b611b97576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611ba982611fc5565b611bdf576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611be9612c70565b9050600081511415611c0a5760405180602001604052806000815250611c35565b80611c1484612d02565b604051602001611c259291906137da565b6040516020818303038152906040525b915050919050565b60176020528060005260406000206000915090505481565b60145481565b611c6361202c565b73ffffffffffffffffffffffffffffffffffffffff16611c816116b5565b73ffffffffffffffffffffffffffffffffffffffff1614611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90613982565b60405180910390fd5b8060148190555050565b6000600c54421015611d1e57611d176001611d09601454601054612d5c90919063ffffffff16565b61246a90919063ffffffff16565b9050611d4b565b611d486001611d3a601454600f54612d5c90919063ffffffff16565b61246a90919063ffffffff16565b90505b90565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60186020528060005260406000206000915090505481565b600b5481565b600f5481565b611e0e61202c565b73ffffffffffffffffffffffffffffffffffffffff16611e2c6116b5565b73ffffffffffffffffffffffffffffffffffffffff1614611e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7990613982565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee990613902565b60405180910390fd5b611efb816123a4565b50565b611f0661202c565b73ffffffffffffffffffffffffffffffffffffffff16611f246116b5565b73ffffffffffffffffffffffffffffffffffffffff1614611f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7190613982565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611fc0573d6000803e3d6000fd5b505050565b600081611fd0612034565b11158015611fdf575060005482105b801561201d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b60006001905090565b6000808290508061204c612034565b116120d4576000548110156120d35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156120d1575b60008114156120c757600460008360019003935083815260200190815260200160002054905061209c565b8092505050612106565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861218e868684612d72565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561223d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612278576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122856000848385612171565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506122fc836122ed6000866000612177565b6122f685612d7b565b1761219f565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106123205780600081905550505061239f60008483856121ca565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836124789190613b67565b905092915050565b6124f6838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060125433876040516020016124db9291906137ae565b60405160208183030381529060405280519060200120612d8b565b612535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252c90613922565b60405180910390fd5b60006125938267ffffffffffffffff16601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461246a90919063ffffffff16565b90508467ffffffffffffffff168111156125e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d990613a22565b60405180910390fd5b6126018267ffffffffffffffff16600b54612da290919063ffffffff16565b3414612642576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612639906139c2565b60405180910390fd5b6126618267ffffffffffffffff1660145461246a90919063ffffffff16565b60148190555060105460145411156126ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a590613a42565b60405180910390fd5b60005b8267ffffffffffffffff16811015612741577f5eae8539b4f76cdf9dbd131dd7eaaf4c3f84fed9d282b4bbb2c15be33b426de633826126ee612db8565b6126f89190613b67565b6127158667ffffffffffffffff1634612dc190919063ffffffff16565b426040516127269493929190613865565b60405180910390a1808061273990613db3565b9150506126b1565b50612756338367ffffffffffffffff166121d0565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6127b18467ffffffffffffffff16600b54612da290919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156127dc573d6000803e3d6000fd5b5080601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050505050565b60006128868267ffffffffffffffff16601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461246a90919063ffffffff16565b90506013548111156128cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c4906139e2565b60405180910390fd5b6128ec8267ffffffffffffffff16600e54612da290919063ffffffff16565b341461292d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612924906139c2565b60405180910390fd5b61294c8267ffffffffffffffff1660145461246a90919063ffffffff16565b601481905550600f546014541115612999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299090613a42565b60405180910390fd5b60005b8267ffffffffffffffff16811015612a2c577f5eae8539b4f76cdf9dbd131dd7eaaf4c3f84fed9d282b4bbb2c15be33b426de633826129d9612db8565b6129e39190613b67565b612a008667ffffffffffffffff1634612dc190919063ffffffff16565b42604051612a119493929190613865565b60405180910390a18080612a2490613db3565b91505061299c565b50612a41338367ffffffffffffffff166121d0565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc612a9c8467ffffffffffffffff16600e54612da290919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015612ac7573d6000803e3d6000fd5b5080601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b36612024565b8786866040518563ffffffff1660e01b8152600401612b589493929190613819565b602060405180830381600087803b158015612b7257600080fd5b505af1925050508015612ba357506040513d601f19601f82011682018060405250810190612ba091906132ec565b60015b612c1d573d8060008114612bd3576040519150601f19603f3d011682016040523d82523d6000602084013e612bd8565b606091505b50600081511415612c15576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060158054612c7f90613d50565b80601f0160208091040260200160405190810160405280929190818152602001828054612cab90613d50565b8015612cf85780601f10612ccd57610100808354040283529160200191612cf8565b820191906000526020600020905b815481529060010190602001808311612cdb57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612d4857600183039250600a81066030018353600a81049050612d28565b508181036020830392508083525050919050565b60008183612d6a9190613c48565b905092915050565b60009392505050565b60006001821460e11b9050919050565b600082612d988584612dd7565b1490509392505050565b60008183612db09190613bee565b905092915050565b60008054905090565b60008183612dcf9190613bbd565b905092915050565b60008082905060005b8451811015612e41576000858281518110612dfe57612dfd613ebf565b5b60200260200101519050808311612e2057612e198382612e4c565b9250612e2d565b612e2a8184612e4c565b92505b508080612e3990613db3565b915050612de0565b508091505092915050565b600082600052816020526040600020905092915050565b828054612e6f90613d50565b90600052602060002090601f016020900481019282612e915760008555612ed8565b82601f10612eaa57805160ff1916838001178555612ed8565b82800160010185558215612ed8579182015b82811115612ed7578251825591602001919060010190612ebc565b5b509050612ee59190612ee9565b5090565b5b80821115612f02576000816000905550600101612eea565b5090565b6000612f19612f1484613ac2565b613a9d565b905082815260208101848484011115612f3557612f34613f2c565b5b612f40848285613d0e565b509392505050565b6000612f5b612f5684613af3565b613a9d565b905082815260208101848484011115612f7757612f76613f2c565b5b612f82848285613d0e565b509392505050565b600081359050612f9981614178565b92915050565b60008083601f840112612fb557612fb4613f22565b5b8235905067ffffffffffffffff811115612fd257612fd1613f1d565b5b602083019150836020820283011115612fee57612fed613f27565b5b9250929050565b6000813590506130048161418f565b92915050565b600081359050613019816141a6565b92915050565b60008135905061302e816141bd565b92915050565b600081519050613043816141bd565b92915050565b600082601f83011261305e5761305d613f22565b5b813561306e848260208601612f06565b91505092915050565b600082601f83011261308c5761308b613f22565b5b813561309c848260208601612f48565b91505092915050565b6000813590506130b4816141d4565b92915050565b6000813590506130c9816141eb565b92915050565b6000602082840312156130e5576130e4613f36565b5b60006130f384828501612f8a565b91505092915050565b6000806040838503121561311357613112613f36565b5b600061312185828601612f8a565b925050602061313285828601612f8a565b9150509250929050565b60008060006060848603121561315557613154613f36565b5b600061316386828701612f8a565b935050602061317486828701612f8a565b9250506040613185868287016130a5565b9150509250925092565b600080600080608085870312156131a9576131a8613f36565b5b60006131b787828801612f8a565b94505060206131c887828801612f8a565b93505060406131d9878288016130a5565b925050606085013567ffffffffffffffff8111156131fa576131f9613f31565b5b61320687828801613049565b91505092959194509250565b6000806040838503121561322957613228613f36565b5b600061323785828601612f8a565b925050602061324885828601612ff5565b9150509250929050565b6000806040838503121561326957613268613f36565b5b600061327785828601612f8a565b9250506020613288858286016130a5565b9150509250929050565b6000602082840312156132a8576132a7613f36565b5b60006132b68482850161300a565b91505092915050565b6000602082840312156132d5576132d4613f36565b5b60006132e38482850161301f565b91505092915050565b60006020828403121561330257613301613f36565b5b600061331084828501613034565b91505092915050565b60006020828403121561332f5761332e613f36565b5b600082013567ffffffffffffffff81111561334d5761334c613f31565b5b61335984828501613077565b91505092915050565b60006020828403121561337857613377613f36565b5b6000613386848285016130a5565b91505092915050565b600080604083850312156133a6576133a5613f36565b5b60006133b4858286016130a5565b92505060206133c5858286016130a5565b9150509250929050565b6000806000606084860312156133e8576133e7613f36565b5b60006133f6868287016130a5565b9350506020613407868287016130a5565b9250506040613418868287016130a5565b9150509250925092565b6000806000806080858703121561343c5761343b613f36565b5b600061344a878288016130a5565b945050602061345b878288016130a5565b935050604061346c878288016130a5565b925050606061347d878288016130a5565b91505092959194509250565b600080600080606085870312156134a3576134a2613f36565b5b60006134b1878288016130ba565b945050602085013567ffffffffffffffff8111156134d2576134d1613f31565b5b6134de87828801612f9f565b935093505060406134f1878288016130ba565b91505092959194509250565b61350681613c7c565b82525050565b61351d61351882613c7c565b613dfc565b82525050565b61352c81613c8e565b82525050565b61353b81613c9a565b82525050565b600061354c82613b24565b6135568185613b3a565b9350613566818560208601613d1d565b61356f81613f3b565b840191505092915050565b600061358582613b2f565b61358f8185613b4b565b935061359f818560208601613d1d565b6135a881613f3b565b840191505092915050565b60006135be82613b2f565b6135c88185613b5c565b93506135d8818560208601613d1d565b80840191505092915050565b60006135f1602683613b4b565b91506135fc82613f66565b604082019050919050565b6000613614601183613b4b565b915061361f82613fb5565b602082019050919050565b6000613637601e83613b4b565b915061364282613fde565b602082019050919050565b600061365a600c83613b4b565b915061366582614007565b602082019050919050565b600061367d602083613b4b565b915061368882614030565b602082019050919050565b60006136a0602083613b4b565b91506136ab82614059565b602082019050919050565b60006136c3601283613b4b565b91506136ce82614082565b602082019050919050565b60006136e6601e83613b4b565b91506136f1826140ab565b602082019050919050565b6000613709601083613b4b565b9150613714826140d4565b602082019050919050565b600061372c601c83613b4b565b9150613737826140fd565b602082019050919050565b600061374f601183613b4b565b915061375a82614126565b602082019050919050565b6000613772601083613b4b565b915061377d8261414f565b602082019050919050565b61379181613cf0565b82525050565b6137a86137a382613cfa565b613e20565b82525050565b60006137ba828561350c565b6014820191506137ca8284613797565b6008820191508190509392505050565b60006137e682856135b3565b91506137f282846135b3565b91508190509392505050565b600060208201905061381360008301846134fd565b92915050565b600060808201905061382e60008301876134fd565b61383b60208301866134fd565b6138486040830185613788565b818103606083015261385a8184613541565b905095945050505050565b600060808201905061387a60008301876134fd565b6138876020830186613788565b6138946040830185613788565b6138a16060830184613788565b95945050505050565b60006020820190506138bf6000830184613523565b92915050565b60006020820190506138da6000830184613532565b92915050565b600060208201905081810360008301526138fa818461357a565b905092915050565b6000602082019050818103600083015261391b816135e4565b9050919050565b6000602082019050818103600083015261393b81613607565b9050919050565b6000602082019050818103600083015261395b8161362a565b9050919050565b6000602082019050818103600083015261397b8161364d565b9050919050565b6000602082019050818103600083015261399b81613670565b9050919050565b600060208201905081810360008301526139bb81613693565b9050919050565b600060208201905081810360008301526139db816136b6565b9050919050565b600060208201905081810360008301526139fb816136d9565b9050919050565b60006020820190508181036000830152613a1b816136fc565b9050919050565b60006020820190508181036000830152613a3b8161371f565b9050919050565b60006020820190508181036000830152613a5b81613742565b9050919050565b60006020820190508181036000830152613a7b81613765565b9050919050565b6000602082019050613a976000830184613788565b92915050565b6000613aa7613ab8565b9050613ab38282613d82565b919050565b6000604051905090565b600067ffffffffffffffff821115613add57613adc613eee565b5b613ae682613f3b565b9050602081019050919050565b600067ffffffffffffffff821115613b0e57613b0d613eee565b5b613b1782613f3b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b7282613cf0565b9150613b7d83613cf0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bb257613bb1613e32565b5b828201905092915050565b6000613bc882613cf0565b9150613bd383613cf0565b925082613be357613be2613e61565b5b828204905092915050565b6000613bf982613cf0565b9150613c0483613cf0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c3d57613c3c613e32565b5b828202905092915050565b6000613c5382613cf0565b9150613c5e83613cf0565b925082821015613c7157613c70613e32565b5b828203905092915050565b6000613c8782613cd0565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613d3b578082015181840152602081019050613d20565b83811115613d4a576000848401525b50505050565b60006002820490506001821680613d6857607f821691505b60208210811415613d7c57613d7b613e90565b5b50919050565b613d8b82613f3b565b810181811067ffffffffffffffff82111715613daa57613da9613eee565b5b80604052505050565b6000613dbe82613cf0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613df157613df0613e32565b5b600182019050919050565b6000613e0782613e0e565b9050919050565b6000613e1982613f59565b9050919050565b6000613e2b82613f4c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160c01b9050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f494e56414c49442057484954454c495354000000000000000000000000000000600082015250565b7f5741495420464f522057484954454c495354204d494e54204c41554e43480000600082015250565b7f554e494e495449414c495a450000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5741495420464f52204649584544205052494345204d494e54204c41554e4348600082015250565b7f56414c554520494e53554646494349454e540000000000000000000000000000600082015250565b7f45584345454544204649584544205052494345204d494e54204c494d49540000600082015250565b7f4d494e5420414c524541445920454e4400000000000000000000000000000000600082015250565b7f455843454545442057484954454c495354204d494e54204c494d495400000000600082015250565b7f455843454544204d494e54204c494d4954000000000000000000000000000000600082015250565b7f43414e4e4f54204d494e54205a45524f00000000000000000000000000000000600082015250565b61418181613c7c565b811461418c57600080fd5b50565b61419881613c8e565b81146141a357600080fd5b50565b6141af81613c9a565b81146141ba57600080fd5b50565b6141c681613ca4565b81146141d157600080fd5b50565b6141dd81613cf0565b81146141e857600080fd5b50565b6141f481613cfa565b81146141ff57600080fd5b5056fea26469706673582212203c7b0971d7cebd33ac7f1c8e3647cfe1a81a62c50991a01da129b558ebee451864736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102675760003560e01c8063715018a611610144578063c87b56dd116100b6578063e985e9c51161007a578063e985e9c5146108fd578063ed8d55541461093a578063ee88fb0f14610977578063f1cf6409146109a2578063f2fde38b146109cd578063f3fef3a3146109f657610267565b8063c87b56dd14610804578063d1b70b3e14610841578063dd1134ec1461087e578063ddf3fc1a146108a9578063e011ac87146108d257610267565b806392898cf81161010857806392898cf81461071557806395d89b41146107405780639875eaec1461076b578063a22cb46514610787578063a7c50824146107b0578063b88d4fde146107db57610267565b8063715018a614610656578063718da7ee1461066d5780637b5cad691461069657806385cb593b146106c15780638da5cb5b146106ea57610267565b80633b5c855a116101dd578063536dc7e7116101a1578063536dc7e71461053257806358cd5a221461055d5780636352211e14610586578063678364f6146105c357806370a08231146105ee57806370a8ac971461062b57610267565b80633b5c855a1461045f578063409c67221461048a57806341334718146104b557806342842e0e146104e057806343508b051461050957610267565b80630e32170e1161022f5780630e32170e146103655780631214f7cd1461039057806318160ddd146103b9578063207add91146103e457806323b872dd1461040d57806324f2b62e1461043657610267565b806301ffc9a71461026c57806302964ff1146102a957806306fdde03146102d4578063081812fc146102ff578063095ea7b31461033c575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906132bf565b610a1f565b6040516102a091906138aa565b60405180910390f35b3480156102b557600080fd5b506102be610ab1565b6040516102cb91906137fe565b60405180910390f35b3480156102e057600080fd5b506102e9610ad7565b6040516102f691906138e0565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190613362565b610b69565b60405161033391906137fe565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190613252565b610be5565b005b34801561037157600080fd5b5061037a610d26565b6040516103879190613a82565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b29190613292565b610d2c565b005b3480156103c557600080fd5b506103ce610db2565b6040516103db9190613a82565b60405180910390f35b3480156103f057600080fd5b5061040b6004803603810190610406919061338f565b610dc9565b005b34801561041957600080fd5b50610434600480360381019061042f919061313c565b610e57565b005b34801561044257600080fd5b5061045d600480360381019061045891906133cf565b61117c565b005b34801561046b57600080fd5b50610474611212565b6040516104819190613a82565b60405180910390f35b34801561049657600080fd5b5061049f611218565b6040516104ac91906138e0565b60405180910390f35b3480156104c157600080fd5b506104ca6112a6565b6040516104d79190613a82565b60405180910390f35b3480156104ec57600080fd5b506105076004803603810190610502919061313c565b6112ac565b005b34801561051557600080fd5b50610530600480360381019061052b9190613252565b6112cc565b005b34801561053e57600080fd5b50610547611356565b60405161055491906138c5565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f9190613422565b61135c565b005b34801561059257600080fd5b506105ad60048036038101906105a89190613362565b6113fa565b6040516105ba91906137fe565b60405180910390f35b3480156105cf57600080fd5b506105d861140c565b6040516105e59190613a82565b60405180910390f35b3480156105fa57600080fd5b50610615600480360381019061061091906130cf565b611412565b6040516106229190613a82565b60405180910390f35b34801561063757600080fd5b506106406114cb565b60405161064d9190613a82565b60405180910390f35b34801561066257600080fd5b5061066b6114d1565b005b34801561067957600080fd5b50610694600480360381019061068f91906130cf565b611559565b005b3480156106a257600080fd5b506106ab611619565b6040516106b89190613a82565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190613319565b61161f565b005b3480156106f657600080fd5b506106ff6116b5565b60405161070c91906137fe565b60405180910390f35b34801561072157600080fd5b5061072a6116df565b6040516107379190613a82565b60405180910390f35b34801561074c57600080fd5b506107556116e5565b60405161076291906138e0565b60405180910390f35b61078560048036038101906107809190613489565b611777565b005b34801561079357600080fd5b506107ae60048036038101906107a99190613212565b6119ad565b005b3480156107bc57600080fd5b506107c5611b25565b6040516107d29190613a82565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd919061318f565b611b2b565b005b34801561081057600080fd5b5061082b60048036038101906108269190613362565b611b9e565b60405161083891906138e0565b60405180910390f35b34801561084d57600080fd5b50610868600480360381019061086391906130cf565b611c3d565b6040516108759190613a82565b60405180910390f35b34801561088a57600080fd5b50610893611c55565b6040516108a09190613a82565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb9190613362565b611c5b565b005b3480156108de57600080fd5b506108e7611ce1565b6040516108f49190613a82565b60405180910390f35b34801561090957600080fd5b50610924600480360381019061091f91906130fc565b611d4e565b60405161093191906138aa565b60405180910390f35b34801561094657600080fd5b50610961600480360381019061095c91906130cf565b611de2565b60405161096e9190613a82565b60405180910390f35b34801561098357600080fd5b5061098c611dfa565b6040516109999190613a82565b60405180910390f35b3480156109ae57600080fd5b506109b7611e00565b6040516109c49190613a82565b60405180910390f35b3480156109d957600080fd5b506109f460048036038101906109ef91906130cf565b611e06565b005b348015610a0257600080fd5b50610a1d6004803603810190610a189190613252565b611efe565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aaa5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060028054610ae690613d50565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1290613d50565b8015610b5f5780601f10610b3457610100808354040283529160200191610b5f565b820191906000526020600020905b815481529060010190602001808311610b4257829003601f168201915b5050505050905090565b6000610b7482611fc5565b610baa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf0826113fa565b90508073ffffffffffffffffffffffffffffffffffffffff16610c11612024565b73ffffffffffffffffffffffffffffffffffffffff1614610c7457610c3d81610c38612024565b611d4e565b610c73576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a5481565b610d3461202c565b73ffffffffffffffffffffffffffffffffffffffff16610d526116b5565b73ffffffffffffffffffffffffffffffffffffffff1614610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613982565b60405180910390fd5b8060128190555050565b6000610dbc612034565b6001546000540303905090565b610dd161202c565b73ffffffffffffffffffffffffffffffffffffffff16610def6116b5565b73ffffffffffffffffffffffffffffffffffffffff1614610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c90613982565b60405180910390fd5b8160108190555080600f819055505050565b6000610e628261203d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ec9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ed58461210b565b91509150610eeb8187610ee6612024565b61212d565b610f3757610f0086610efb612024565b611d4e565b610f36576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f9e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fab8686866001612171565b8015610fb657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061108485611060888887612177565b7c02000000000000000000000000000000000000000000000000000000001761219f565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561110c57600060018501905060006004600083815260200190815260200160002054141561110a576000548114611109578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461117486868660016121ca565b505050505050565b61118461202c565b73ffffffffffffffffffffffffffffffffffffffff166111a26116b5565b73ffffffffffffffffffffffffffffffffffffffff16146111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90613982565b60405180910390fd5b8260098190555081600a8190555080600b81905550505050565b600c5481565b6015805461122590613d50565b80601f016020809104026020016040519081016040528092919081815260200182805461125190613d50565b801561129e5780601f106112735761010080835404028352916020019161129e565b820191906000526020600020905b81548152906001019060200180831161128157829003601f168201915b505050505081565b600d5481565b6112c783838360405180602001604052806000815250611b2b565b505050565b6112d461202c565b73ffffffffffffffffffffffffffffffffffffffff166112f26116b5565b73ffffffffffffffffffffffffffffffffffffffff1614611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f90613982565b60405180910390fd5b61135282826121d0565b5050565b60125481565b61136461202c565b73ffffffffffffffffffffffffffffffffffffffff166113826116b5565b73ffffffffffffffffffffffffffffffffffffffff16146113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90613982565b60405180910390fd5b83600c8190555082600d8190555081600e819055508060138190555050505050565b60006114058261203d565b9050919050565b60105481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561147a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b60095481565b6114d961202c565b73ffffffffffffffffffffffffffffffffffffffff166114f76116b5565b73ffffffffffffffffffffffffffffffffffffffff161461154d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154490613982565b60405180910390fd5b61155760006123a4565b565b61156161202c565b73ffffffffffffffffffffffffffffffffffffffff1661157f6116b5565b73ffffffffffffffffffffffffffffffffffffffff16146115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90613982565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b61162761202c565b73ffffffffffffffffffffffffffffffffffffffff166116456116b5565b73ffffffffffffffffffffffffffffffffffffffff161461169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290613982565b60405180910390fd5b80601590805190602001906116b1929190612e63565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600380546116f490613d50565b80601f016020809104026020016040519081016040528092919081815260200182805461172090613d50565b801561176d5780601f106117425761010080835404028352916020019161176d565b820191906000526020600020905b81548152906001019060200180831161175057829003601f168201915b5050505050905090565b60008167ffffffffffffffff16116117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb90613a62565b60405180910390fd5b600f546117e68267ffffffffffffffff1660145461246a90919063ffffffff16565b1115611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e90613a42565b60405180910390fd5b6000600954141561186d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186490613962565b60405180910390fd5b60095442116118b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a890613942565b60405180910390fd5b600a5442116118cb576118c684848484612480565b6119a7565b6000600c541415611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890613962565b60405180910390fd5b600c544211611955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194c906139a2565b60405180910390fd5b600d54421161196c5761196781612828565b6119a7565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e90613a02565b60405180910390fd5b50505050565b6119b5612024565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a1a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a27612024565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ad4612024565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b1991906138aa565b60405180910390a35050565b60135481565b611b36848484610e57565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b9857611b6184848484612b10565b611b97576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611ba982611fc5565b611bdf576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611be9612c70565b9050600081511415611c0a5760405180602001604052806000815250611c35565b80611c1484612d02565b604051602001611c259291906137da565b6040516020818303038152906040525b915050919050565b60176020528060005260406000206000915090505481565b60145481565b611c6361202c565b73ffffffffffffffffffffffffffffffffffffffff16611c816116b5565b73ffffffffffffffffffffffffffffffffffffffff1614611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90613982565b60405180910390fd5b8060148190555050565b6000600c54421015611d1e57611d176001611d09601454601054612d5c90919063ffffffff16565b61246a90919063ffffffff16565b9050611d4b565b611d486001611d3a601454600f54612d5c90919063ffffffff16565b61246a90919063ffffffff16565b90505b90565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60186020528060005260406000206000915090505481565b600b5481565b600f5481565b611e0e61202c565b73ffffffffffffffffffffffffffffffffffffffff16611e2c6116b5565b73ffffffffffffffffffffffffffffffffffffffff1614611e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7990613982565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee990613902565b60405180910390fd5b611efb816123a4565b50565b611f0661202c565b73ffffffffffffffffffffffffffffffffffffffff16611f246116b5565b73ffffffffffffffffffffffffffffffffffffffff1614611f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7190613982565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611fc0573d6000803e3d6000fd5b505050565b600081611fd0612034565b11158015611fdf575060005482105b801561201d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b60006001905090565b6000808290508061204c612034565b116120d4576000548110156120d35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156120d1575b60008114156120c757600460008360019003935083815260200190815260200160002054905061209c565b8092505050612106565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861218e868684612d72565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561223d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612278576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122856000848385612171565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506122fc836122ed6000866000612177565b6122f685612d7b565b1761219f565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106123205780600081905550505061239f60008483856121ca565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836124789190613b67565b905092915050565b6124f6838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060125433876040516020016124db9291906137ae565b60405160208183030381529060405280519060200120612d8b565b612535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252c90613922565b60405180910390fd5b60006125938267ffffffffffffffff16601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461246a90919063ffffffff16565b90508467ffffffffffffffff168111156125e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d990613a22565b60405180910390fd5b6126018267ffffffffffffffff16600b54612da290919063ffffffff16565b3414612642576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612639906139c2565b60405180910390fd5b6126618267ffffffffffffffff1660145461246a90919063ffffffff16565b60148190555060105460145411156126ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a590613a42565b60405180910390fd5b60005b8267ffffffffffffffff16811015612741577f5eae8539b4f76cdf9dbd131dd7eaaf4c3f84fed9d282b4bbb2c15be33b426de633826126ee612db8565b6126f89190613b67565b6127158667ffffffffffffffff1634612dc190919063ffffffff16565b426040516127269493929190613865565b60405180910390a1808061273990613db3565b9150506126b1565b50612756338367ffffffffffffffff166121d0565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6127b18467ffffffffffffffff16600b54612da290919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156127dc573d6000803e3d6000fd5b5080601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050505050565b60006128868267ffffffffffffffff16601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461246a90919063ffffffff16565b90506013548111156128cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c4906139e2565b60405180910390fd5b6128ec8267ffffffffffffffff16600e54612da290919063ffffffff16565b341461292d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612924906139c2565b60405180910390fd5b61294c8267ffffffffffffffff1660145461246a90919063ffffffff16565b601481905550600f546014541115612999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299090613a42565b60405180910390fd5b60005b8267ffffffffffffffff16811015612a2c577f5eae8539b4f76cdf9dbd131dd7eaaf4c3f84fed9d282b4bbb2c15be33b426de633826129d9612db8565b6129e39190613b67565b612a008667ffffffffffffffff1634612dc190919063ffffffff16565b42604051612a119493929190613865565b60405180910390a18080612a2490613db3565b91505061299c565b50612a41338367ffffffffffffffff166121d0565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc612a9c8467ffffffffffffffff16600e54612da290919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015612ac7573d6000803e3d6000fd5b5080601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b36612024565b8786866040518563ffffffff1660e01b8152600401612b589493929190613819565b602060405180830381600087803b158015612b7257600080fd5b505af1925050508015612ba357506040513d601f19601f82011682018060405250810190612ba091906132ec565b60015b612c1d573d8060008114612bd3576040519150601f19603f3d011682016040523d82523d6000602084013e612bd8565b606091505b50600081511415612c15576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060158054612c7f90613d50565b80601f0160208091040260200160405190810160405280929190818152602001828054612cab90613d50565b8015612cf85780601f10612ccd57610100808354040283529160200191612cf8565b820191906000526020600020905b815481529060010190602001808311612cdb57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612d4857600183039250600a81066030018353600a81049050612d28565b508181036020830392508083525050919050565b60008183612d6a9190613c48565b905092915050565b60009392505050565b60006001821460e11b9050919050565b600082612d988584612dd7565b1490509392505050565b60008183612db09190613bee565b905092915050565b60008054905090565b60008183612dcf9190613bbd565b905092915050565b60008082905060005b8451811015612e41576000858281518110612dfe57612dfd613ebf565b5b60200260200101519050808311612e2057612e198382612e4c565b9250612e2d565b612e2a8184612e4c565b92505b508080612e3990613db3565b915050612de0565b508091505092915050565b600082600052816020526040600020905092915050565b828054612e6f90613d50565b90600052602060002090601f016020900481019282612e915760008555612ed8565b82601f10612eaa57805160ff1916838001178555612ed8565b82800160010185558215612ed8579182015b82811115612ed7578251825591602001919060010190612ebc565b5b509050612ee59190612ee9565b5090565b5b80821115612f02576000816000905550600101612eea565b5090565b6000612f19612f1484613ac2565b613a9d565b905082815260208101848484011115612f3557612f34613f2c565b5b612f40848285613d0e565b509392505050565b6000612f5b612f5684613af3565b613a9d565b905082815260208101848484011115612f7757612f76613f2c565b5b612f82848285613d0e565b509392505050565b600081359050612f9981614178565b92915050565b60008083601f840112612fb557612fb4613f22565b5b8235905067ffffffffffffffff811115612fd257612fd1613f1d565b5b602083019150836020820283011115612fee57612fed613f27565b5b9250929050565b6000813590506130048161418f565b92915050565b600081359050613019816141a6565b92915050565b60008135905061302e816141bd565b92915050565b600081519050613043816141bd565b92915050565b600082601f83011261305e5761305d613f22565b5b813561306e848260208601612f06565b91505092915050565b600082601f83011261308c5761308b613f22565b5b813561309c848260208601612f48565b91505092915050565b6000813590506130b4816141d4565b92915050565b6000813590506130c9816141eb565b92915050565b6000602082840312156130e5576130e4613f36565b5b60006130f384828501612f8a565b91505092915050565b6000806040838503121561311357613112613f36565b5b600061312185828601612f8a565b925050602061313285828601612f8a565b9150509250929050565b60008060006060848603121561315557613154613f36565b5b600061316386828701612f8a565b935050602061317486828701612f8a565b9250506040613185868287016130a5565b9150509250925092565b600080600080608085870312156131a9576131a8613f36565b5b60006131b787828801612f8a565b94505060206131c887828801612f8a565b93505060406131d9878288016130a5565b925050606085013567ffffffffffffffff8111156131fa576131f9613f31565b5b61320687828801613049565b91505092959194509250565b6000806040838503121561322957613228613f36565b5b600061323785828601612f8a565b925050602061324885828601612ff5565b9150509250929050565b6000806040838503121561326957613268613f36565b5b600061327785828601612f8a565b9250506020613288858286016130a5565b9150509250929050565b6000602082840312156132a8576132a7613f36565b5b60006132b68482850161300a565b91505092915050565b6000602082840312156132d5576132d4613f36565b5b60006132e38482850161301f565b91505092915050565b60006020828403121561330257613301613f36565b5b600061331084828501613034565b91505092915050565b60006020828403121561332f5761332e613f36565b5b600082013567ffffffffffffffff81111561334d5761334c613f31565b5b61335984828501613077565b91505092915050565b60006020828403121561337857613377613f36565b5b6000613386848285016130a5565b91505092915050565b600080604083850312156133a6576133a5613f36565b5b60006133b4858286016130a5565b92505060206133c5858286016130a5565b9150509250929050565b6000806000606084860312156133e8576133e7613f36565b5b60006133f6868287016130a5565b9350506020613407868287016130a5565b9250506040613418868287016130a5565b9150509250925092565b6000806000806080858703121561343c5761343b613f36565b5b600061344a878288016130a5565b945050602061345b878288016130a5565b935050604061346c878288016130a5565b925050606061347d878288016130a5565b91505092959194509250565b600080600080606085870312156134a3576134a2613f36565b5b60006134b1878288016130ba565b945050602085013567ffffffffffffffff8111156134d2576134d1613f31565b5b6134de87828801612f9f565b935093505060406134f1878288016130ba565b91505092959194509250565b61350681613c7c565b82525050565b61351d61351882613c7c565b613dfc565b82525050565b61352c81613c8e565b82525050565b61353b81613c9a565b82525050565b600061354c82613b24565b6135568185613b3a565b9350613566818560208601613d1d565b61356f81613f3b565b840191505092915050565b600061358582613b2f565b61358f8185613b4b565b935061359f818560208601613d1d565b6135a881613f3b565b840191505092915050565b60006135be82613b2f565b6135c88185613b5c565b93506135d8818560208601613d1d565b80840191505092915050565b60006135f1602683613b4b565b91506135fc82613f66565b604082019050919050565b6000613614601183613b4b565b915061361f82613fb5565b602082019050919050565b6000613637601e83613b4b565b915061364282613fde565b602082019050919050565b600061365a600c83613b4b565b915061366582614007565b602082019050919050565b600061367d602083613b4b565b915061368882614030565b602082019050919050565b60006136a0602083613b4b565b91506136ab82614059565b602082019050919050565b60006136c3601283613b4b565b91506136ce82614082565b602082019050919050565b60006136e6601e83613b4b565b91506136f1826140ab565b602082019050919050565b6000613709601083613b4b565b9150613714826140d4565b602082019050919050565b600061372c601c83613b4b565b9150613737826140fd565b602082019050919050565b600061374f601183613b4b565b915061375a82614126565b602082019050919050565b6000613772601083613b4b565b915061377d8261414f565b602082019050919050565b61379181613cf0565b82525050565b6137a86137a382613cfa565b613e20565b82525050565b60006137ba828561350c565b6014820191506137ca8284613797565b6008820191508190509392505050565b60006137e682856135b3565b91506137f282846135b3565b91508190509392505050565b600060208201905061381360008301846134fd565b92915050565b600060808201905061382e60008301876134fd565b61383b60208301866134fd565b6138486040830185613788565b818103606083015261385a8184613541565b905095945050505050565b600060808201905061387a60008301876134fd565b6138876020830186613788565b6138946040830185613788565b6138a16060830184613788565b95945050505050565b60006020820190506138bf6000830184613523565b92915050565b60006020820190506138da6000830184613532565b92915050565b600060208201905081810360008301526138fa818461357a565b905092915050565b6000602082019050818103600083015261391b816135e4565b9050919050565b6000602082019050818103600083015261393b81613607565b9050919050565b6000602082019050818103600083015261395b8161362a565b9050919050565b6000602082019050818103600083015261397b8161364d565b9050919050565b6000602082019050818103600083015261399b81613670565b9050919050565b600060208201905081810360008301526139bb81613693565b9050919050565b600060208201905081810360008301526139db816136b6565b9050919050565b600060208201905081810360008301526139fb816136d9565b9050919050565b60006020820190508181036000830152613a1b816136fc565b9050919050565b60006020820190508181036000830152613a3b8161371f565b9050919050565b60006020820190508181036000830152613a5b81613742565b9050919050565b60006020820190508181036000830152613a7b81613765565b9050919050565b6000602082019050613a976000830184613788565b92915050565b6000613aa7613ab8565b9050613ab38282613d82565b919050565b6000604051905090565b600067ffffffffffffffff821115613add57613adc613eee565b5b613ae682613f3b565b9050602081019050919050565b600067ffffffffffffffff821115613b0e57613b0d613eee565b5b613b1782613f3b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b7282613cf0565b9150613b7d83613cf0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bb257613bb1613e32565b5b828201905092915050565b6000613bc882613cf0565b9150613bd383613cf0565b925082613be357613be2613e61565b5b828204905092915050565b6000613bf982613cf0565b9150613c0483613cf0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c3d57613c3c613e32565b5b828202905092915050565b6000613c5382613cf0565b9150613c5e83613cf0565b925082821015613c7157613c70613e32565b5b828203905092915050565b6000613c8782613cd0565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613d3b578082015181840152602081019050613d20565b83811115613d4a576000848401525b50505050565b60006002820490506001821680613d6857607f821691505b60208210811415613d7c57613d7b613e90565b5b50919050565b613d8b82613f3b565b810181811067ffffffffffffffff82111715613daa57613da9613eee565b5b80604052505050565b6000613dbe82613cf0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613df157613df0613e32565b5b600182019050919050565b6000613e0782613e0e565b9050919050565b6000613e1982613f59565b9050919050565b6000613e2b82613f4c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160c01b9050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f494e56414c49442057484954454c495354000000000000000000000000000000600082015250565b7f5741495420464f522057484954454c495354204d494e54204c41554e43480000600082015250565b7f554e494e495449414c495a450000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5741495420464f52204649584544205052494345204d494e54204c41554e4348600082015250565b7f56414c554520494e53554646494349454e540000000000000000000000000000600082015250565b7f45584345454544204649584544205052494345204d494e54204c494d49540000600082015250565b7f4d494e5420414c524541445920454e4400000000000000000000000000000000600082015250565b7f455843454545442057484954454c495354204d494e54204c494d495400000000600082015250565b7f455843454544204d494e54204c494d4954000000000000000000000000000000600082015250565b7f43414e4e4f54204d494e54205a45524f00000000000000000000000000000000600082015250565b61418181613c7c565b811461418c57600080fd5b50565b61419881613c8e565b81146141a357600080fd5b50565b6141af81613c9a565b81146141ba57600080fd5b50565b6141c681613ca4565b81146141d157600080fd5b50565b6141dd81613cf0565b81146141e857600080fd5b50565b6141f481613cfa565b81146141ff57600080fd5b5056fea26469706673582212203c7b0971d7cebd33ac7f1c8e3647cfe1a81a62c50991a01da129b558ebee451864736f6c63430008070033
Deployed Bytecode Sourcemap
60889:5543:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27806:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61422:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33453:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35399:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34947:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61013:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62589:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26860:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62217:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44664:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62723:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61081:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61389:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61116:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36289:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61909:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61284:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62906:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33242:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61215:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28485:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60979:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9726:103;;;;;;;;;;;;;:::i;:::-;;62110:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61149:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66123:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9075:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61249:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33622:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63345:854;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35675:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61321:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36545:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33797:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61455:54;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61358:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62010:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62352:229;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36054:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61516:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61045:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61186:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9984:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66010:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27806:615;27891:4;28206:10;28191:25;;:11;:25;;;;:102;;;;28283:10;28268:25;;:11;:25;;;;28191:102;:179;;;;28360:10;28345:25;;:11;:25;;;;28191:179;28171:199;;27806:615;;;:::o;61422:24::-;;;;;;;;;;;;;:::o;33453:100::-;33507:13;33540:5;33533:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33453:100;:::o;35399:204::-;35467:7;35492:16;35500:7;35492;:16::i;:::-;35487:64;;35517:34;;;;;;;;;;;;;;35487:64;35571:15;:24;35587:7;35571:24;;;;;;;;;;;;;;;;;;;;;35564:31;;35399:204;;;:::o;34947:386::-;35020:13;35036:16;35044:7;35036;:16::i;:::-;35020:32;;35092:5;35069:28;;:19;:17;:19::i;:::-;:28;;;35065:175;;35117:44;35134:5;35141:19;:17;:19::i;:::-;35117:16;:44::i;:::-;35112:128;;35189:35;;;;;;;;;;;;;;35112:128;35065:175;35279:2;35252:15;:24;35268:7;35252:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35317:7;35313:2;35297:28;;35306:5;35297:28;;;;;;;;;;;;35009:324;34947:386;;:::o;61013:25::-;;;;:::o;62589:126::-;9306:12;:10;:12::i;:::-;9295:23;;:7;:5;:7::i;:::-;:23;;;9287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62693:14:::1;62675:15;:32;;;;62589:126:::0;:::o;26860:315::-;26913:7;27141:15;:13;:15::i;:::-;27126:12;;27110:13;;:28;:46;27103:53;;26860:315;:::o;62217:123::-;9306:12;:10;:12::i;:::-;9295:23;;:7;:5;:7::i;:::-;:23;;;9287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62300:5:::1;62282:15;:23;;;;62329:3;62316:10;:16;;;;62217:123:::0;;:::o;44664:2800::-;44798:27;44828;44847:7;44828:18;:27::i;:::-;44798:57;;44913:4;44872:45;;44888:19;44872:45;;;44868:86;;44926:28;;;;;;;;;;;;;;44868:86;44968:27;44997:23;45024:28;45044:7;45024:19;:28::i;:::-;44967:85;;;;45152:62;45171:15;45188:4;45194:19;:17;:19::i;:::-;45152:18;:62::i;:::-;45147:174;;45234:43;45251:4;45257:19;:17;:19::i;:::-;45234:16;:43::i;:::-;45229:92;;45286:35;;;;;;;;;;;;;;45229:92;45147:174;45352:1;45338:16;;:2;:16;;;45334:52;;;45363:23;;;;;;;;;;;;;;45334:52;45399:43;45421:4;45427:2;45431:7;45440:1;45399:21;:43::i;:::-;45535:15;45532:160;;;45675:1;45654:19;45647:30;45532:160;46070:18;:24;46089:4;46070:24;;;;;;;;;;;;;;;;46068:26;;;;;;;;;;;;46139:18;:22;46158:2;46139:22;;;;;;;;;;;;;;;;46137:24;;;;;;;;;;;46461:145;46498:2;46546:45;46561:4;46567:2;46571:19;46546:14;:45::i;:::-;24088:8;46519:72;46461:18;:145::i;:::-;46432:17;:26;46450:7;46432:26;;;;;;;;;;;:174;;;;46776:1;24088:8;46726:19;:46;:51;46722:626;;;46798:19;46830:1;46820:7;:11;46798:33;;46987:1;46953:17;:30;46971:11;46953:30;;;;;;;;;;;;:35;46949:384;;;47091:13;;47076:11;:28;47072:242;;47271:19;47238:17;:30;47256:11;47238:30;;;;;;;;;;;:52;;;;47072:242;46949:384;46779:569;46722:626;47395:7;47391:2;47376:27;;47385:4;47376:27;;;;;;;;;;;;47414:42;47435:4;47441:2;47445:7;47454:1;47414:20;:42::i;:::-;44787:2677;;;44664:2800;;;:::o;62723:175::-;9306:12;:10;:12::i;:::-;9295:23;;:7;:5;:7::i;:::-;:23;;;9287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62821:5:::1;62803:15;:23;;;;62853:3;62837:13;:19;;;;62885:5;62867:15;:23;;;;62723:175:::0;;;:::o;61081:28::-;;;;:::o;61389:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61116:26::-;;;;:::o;36289:185::-;36427:39;36444:4;36450:2;36454:7;36427:39;;;;;;;;;;;;:16;:39::i;:::-;36289:185;;;:::o;61909:93::-;9306:12;:10;:12::i;:::-;9295:23;;:7;:5;:7::i;:::-;:23;;;9287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61978:16:::1;61984:2;61987:6;61978:5;:16::i;:::-;61909:93:::0;;:::o;61284:30::-;;;;:::o;62906:225::-;9306:12;:10;:12::i;:::-;9295:23;;:7;:5;:7::i;:::-;:23;;;9287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63017:5:::1;62998:16;:24;;;;63050:3;63033:14;:20;;;;63083:5;63064:16;:24;;;;63118:5;63099:16;:24;;;;62906:225:::0;;;;:::o;33242:144::-;33306:7;33349:27;33368:7;33349:18;:27::i;:::-;33326:52;;33242:144;;;:::o;61215:27::-;;;;:::o;28485:224::-;28549:7;28590:1;28573:19;;:5;:19;;;28569:60;;;28601:28;;;;;;;;;;;;;;28569:60;23040:13;28647:18;:25;28666:5;28647:25;;;;;;;;;;;;;;;;:54;28640:61;;28485:224;;;:::o;60979:27::-;;;;:::o;9726:103::-;9306:12;:10;:12::i;:::-;9295:23;;:7;:5;:7::i;:::-;:23;;;9287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9791:30:::1;9818:1;9791:18;:30::i;:::-;9726:103::o:0;62110:99::-;9306:12;:10;:12::i;:::-;9295:23;;:7;:5;:7::i;:::-;:23;;;9287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62190:11:::1;62178:9;;:23;;;;;;;;;;;;;;;;;;62110:99:::0;:::o;61149:28::-;;;;:::o;66123:94::-;9306:12;:10;:12::i;:::-;9295:23;;:7;:5;:7::i;:::-;:23;;;9287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66203:6:::1;66190:10;:19;;;;;;;;;;;;:::i;:::-;;66123:94:::0;:::o;9075:87::-;9121:7;9148:6;;;;;;;;;;;9141:13;;9075:87;:::o;61249:28::-;;;;:::o;33622:104::-;33678:13;33711:7;33704:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33622:104;:::o;63345:854::-;63476:1;63463:10;:14;;;63455:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;63558:10;;63526:28;63543:10;63526:28;;:12;;:16;;:28;;;;:::i;:::-;:42;;63518:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;63641:1;63623:15;;:19;;63615:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;63695:15;;63677;:33;63669:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;63775:13;;63758:15;:30;63755:134;;63804:52;63818:14;63833:11;;63845:10;63804:13;:52::i;:::-;63871:7;;63755:134;63927:1;63909:16;;:19;;63901:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;63981:16;;63963:15;:34;63955:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;64064:14;;64047:15;:31;64044:109;;64094:26;64109:10;64094:14;:26::i;:::-;64135:7;;64044:109;64165:26;;;;;;;;;;:::i;:::-;;;;;;;;63345:854;;;;;:::o;35675:308::-;35786:19;:17;:19::i;:::-;35774:31;;:8;:31;;;35770:61;;;35814:17;;;;;;;;;;;;;;35770:61;35896:8;35844:18;:39;35863:19;:17;:19::i;:::-;35844:39;;;;;;;;;;;;;;;:49;35884:8;35844:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35956:8;35920:55;;35935:19;:17;:19::i;:::-;35920:55;;;35966:8;35920:55;;;;;;:::i;:::-;;;;;;;;35675:308;;:::o;61321:28::-;;;;:::o;36545:399::-;36712:31;36725:4;36731:2;36735:7;36712:12;:31::i;:::-;36776:1;36758:2;:14;;;:19;36754:183;;36797:56;36828:4;36834:2;36838:7;36847:5;36797:30;:56::i;:::-;36792:145;;36881:40;;;;;;;;;;;;;;36792:145;36754:183;36545:399;;;;:::o;33797:318::-;33870:13;33901:16;33909:7;33901;:16::i;:::-;33896:59;;33926:29;;;;;;;;;;;;;;33896:59;33968:21;33992:10;:8;:10::i;:::-;33968:34;;34045:1;34026:7;34020:21;:26;;:87;;;;;;;;;;;;;;;;;34073:7;34082:18;34092:7;34082:9;:18::i;:::-;34056:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34020:87;34013:94;;;33797:318;;;:::o;61455:54::-;;;;;;;;;;;;;;;;;:::o;61358:24::-;;;;:::o;62010:88::-;9306:12;:10;:12::i;:::-;9295:23;;:7;:5;:7::i;:::-;:23;;;9287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62085:5:::1;62070:12;:20;;;;62010:88:::0;:::o;62352:229::-;62393:4;62430:16;;62412:15;:34;62409:112;;;62469:40;62507:1;62469:33;62489:12;;62469:15;;:19;;:33;;;;:::i;:::-;:37;;:40;;;;:::i;:::-;62462:47;;;;62409:112;62538:35;62571:1;62538:28;62553:12;;62538:10;;:14;;:28;;;;:::i;:::-;:32;;:35;;;;:::i;:::-;62531:42;;62352:229;;:::o;36054:164::-;36151:4;36175:18;:25;36194:5;36175:25;;;;;;;;;;;;;;;:35;36201:8;36175:35;;;;;;;;;;;;;;;;;;;;;;;;;36168:42;;36054:164;;;;:::o;61516:53::-;;;;;;;;;;;;;;;;;:::o;61045:27::-;;;;:::o;61186:22::-;;;;:::o;9984:201::-;9306:12;:10;:12::i;:::-;9295:23;;:7;:5;:7::i;:::-;:23;;;9287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10093:1:::1;10073:22;;:8;:22;;;;10065:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10149:28;10168:8;10149:18;:28::i;:::-;9984:201:::0;:::o;66010:105::-;9306:12;:10;:12::i;:::-;9295:23;;:7;:5;:7::i;:::-;:23;;;9287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66087:2:::1;66079:20;;:28;66100:6;66079:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;66010:105:::0;;:::o;37199:273::-;37256:4;37312:7;37293:15;:13;:15::i;:::-;:26;;:66;;;;;37346:13;;37336:7;:23;37293:66;:152;;;;;37444:1;23810:8;37397:17;:26;37415:7;37397:26;;;;;;;;;;;;:43;:48;37293:152;37273:172;;37199:273;;;:::o;55760:105::-;55820:7;55847:10;55840:17;;55760:105;:::o;7795:98::-;7848:7;7875:10;7868:17;;7795:98;:::o;66336:93::-;66393:7;66420:1;66413:8;;66336:93;:::o;30159:1129::-;30226:7;30246:12;30261:7;30246:22;;30329:4;30310:15;:13;:15::i;:::-;:23;30306:915;;30363:13;;30356:4;:20;30352:869;;;30401:14;30418:17;:23;30436:4;30418:23;;;;;;;;;;;;30401:40;;30534:1;23810:8;30507:6;:23;:28;30503:699;;;31026:113;31043:1;31033:6;:11;31026:113;;;31086:17;:25;31104:6;;;;;;;31086:25;;;;;;;;;;;;31077:34;;31026:113;;;31172:6;31165:13;;;;;;30503:699;30378:843;30352:869;30306:915;31249:31;;;;;;;;;;;;;;30159:1129;;;;:::o;43000:652::-;43095:27;43124:23;43165:53;43221:15;43165:71;;43407:7;43401:4;43394:21;43442:22;43436:4;43429:36;43518:4;43512;43502:21;43479:44;;43614:19;43608:26;43589:45;;43345:300;43000:652;;;:::o;43765:645::-;43907:11;44069:15;44063:4;44059:26;44051:34;;44228:15;44217:9;44213:31;44200:44;;44375:15;44364:9;44361:30;44354:4;44343:9;44340:19;44337:55;44327:65;;43765:645;;;;;:::o;54593:159::-;;;;;:::o;52905:309::-;53040:7;53060:16;24211:3;53086:19;:40;;53060:67;;24211:3;53153:31;53164:4;53170:2;53174:9;53153:10;:31::i;:::-;53145:40;;:61;;53138:68;;;52905:309;;;;;:::o;32733:447::-;32813:14;32981:15;32974:5;32970:27;32961:36;;33155:5;33141:11;33117:22;33113:40;33110:51;33103:5;33100:62;33090:72;;32733:447;;;;:::o;55411:158::-;;;;;:::o;39030:1529::-;39095:20;39118:13;;39095:36;;39160:1;39146:16;;:2;:16;;;39142:48;;;39171:19;;;;;;;;;;;;;;39142:48;39217:1;39205:8;:13;39201:44;;;39227:18;;;;;;;;;;;;;;39201:44;39258:61;39288:1;39292:2;39296:12;39310:8;39258:21;:61::i;:::-;39801:1;23177:2;39772:1;:25;;39771:31;39759:8;:44;39733:18;:22;39752:2;39733:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;40080:139;40117:2;40171:33;40194:1;40198:2;40202:1;40171:14;:33::i;:::-;40138:30;40159:8;40138:20;:30::i;:::-;:66;40080:18;:139::i;:::-;40046:17;:31;40064:12;40046:31;;;;;;;;;;;:173;;;;40236:15;40254:12;40236:30;;40281:11;40310:8;40295:12;:23;40281:37;;40333:101;40385:9;;;;;;40381:2;40360:35;;40377:1;40360:35;;;;;;;;;;;;40429:3;40419:7;:13;40333:101;;40466:3;40450:13;:19;;;;39507:974;;40491:60;40520:1;40524:2;40528:12;40542:8;40491:20;:60::i;:::-;39084:1475;39030:1529;;:::o;10345:191::-;10419:16;10438:6;;;;;;;;;;;10419:25;;10464:8;10455:6;;:17;;;;;;;;;;;;;;;;;;10519:8;10488:40;;10509:8;10488:40;;;;;;;;;;;;10408:128;10345:191;:::o;2945:98::-;3003:7;3034:1;3030;:5;;;;:::i;:::-;3023:12;;2945:98;;;;:::o;64207:998::-;64328:104;64347:11;;64328:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64360:15;;64404:10;64415:14;64387:43;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64377:54;;;;;;64328:18;:104::i;:::-;64320:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;64466:20;64489:49;64527:10;64489:49;;:21;:33;64511:10;64489:33;;;;;;;;;;;;;;;;:37;;:49;;;;:::i;:::-;64466:72;;64576:14;64557:33;;:15;:33;;64549:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;64658:31;64678:10;64658:31;;:15;;:19;;:31;;;;:::i;:::-;64645:9;:44;64637:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;64748:28;64765:10;64748:28;;:12;;:16;;:28;;;;:::i;:::-;64735:12;:41;;;;64809:15;;64795:12;;:29;;64787:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;64860:10;64856:156;64879:10;64873:16;;:5;:16;64856:156;;;64918:82;64926:10;64952:5;64937:14;:12;:14::i;:::-;:20;;;;:::i;:::-;64958:25;64972:10;64958:25;;:9;:13;;:25;;;;:::i;:::-;64984:15;64918:82;;;;;;;;;:::i;:::-;;;;;;;;64890:7;;;;;:::i;:::-;;;;64856:156;;;;65022:28;65028:10;65039;65022:28;;:5;:28::i;:::-;65081:9;;;;;;;;;;;65073:27;;:60;65101:31;65121:10;65101:31;;:15;;:19;;:31;;;;:::i;:::-;65073:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65182:15;65146:21;:33;65168:10;65146:33;;;;;;;;;;;;;;;:51;;;;64309:896;64207:998;;;;:::o;65213:789::-;65274:20;65297:50;65336:10;65297:50;;:22;:34;65320:10;65297:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;65274:73;;65385:16;;65366:15;:35;;65358:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;65471:32;65492:10;65471:32;;:16;;:20;;:32;;;;:::i;:::-;65458:9;:45;65450:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;65552:28;65569:10;65552:28;;:12;;:16;;:28;;;;:::i;:::-;65539:12;:41;;;;65613:10;;65599:12;;:24;;65591:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;65659:10;65655:156;65678:10;65672:16;;:5;:16;65655:156;;;65717:82;65725:10;65751:5;65736:14;:12;:14::i;:::-;:20;;;;:::i;:::-;65757:25;65771:10;65757:25;;:9;:13;;:25;;;;:::i;:::-;65783:15;65717:82;;;;;;;;;:::i;:::-;;;;;;;;65689:7;;;;;:::i;:::-;;;;65655:156;;;;65821:28;65827:10;65838;65821:28;;:5;:28::i;:::-;65878:9;;;;;;;;;;;65870:27;;:61;65898:32;65919:10;65898:32;;:16;;:20;;:32;;;;:::i;:::-;65870:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65979:15;65942:22;:34;65965:10;65942:34;;;;;;;;;;;;;;;:52;;;;65263:739;65213:789;:::o;51415:716::-;51578:4;51624:2;51599:45;;;51645:19;:17;:19::i;:::-;51666:4;51672:7;51681:5;51599:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51595:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51899:1;51882:6;:13;:18;51878:235;;;51928:40;;;;;;;;;;;;;;51878:235;52071:6;52065:13;52056:6;52052:2;52048:15;52041:38;51595:529;51768:54;;;51758:64;;;:6;:64;;;;51751:71;;;51415:716;;;;;;:::o;66225:103::-;66277:13;66310:10;66303:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66225:103;:::o;55971:1960::-;56028:17;56447:3;56440:4;56434:11;56430:21;56423:28;;56538:3;56532:4;56525:17;56644:3;57100:5;57230:1;57225:3;57221:11;57214:18;;57367:2;57361:4;57357:13;57353:2;57349:22;57344:3;57336:36;57408:2;57402:4;57398:13;57390:21;;56992:697;57427:4;56992:697;;;57618:1;57613:3;57609:11;57602:18;;57669:2;57663:4;57659:13;57655:2;57651:22;57646:3;57638:36;57522:2;57516:4;57512:13;57504:21;;56992:697;;;56996:430;57728:3;57723;57719:13;57843:2;57838:3;57834:12;57827:19;;57906:6;57901:3;57894:19;56067:1857;;55971:1960;;;:::o;3326:98::-;3384:7;3415:1;3411;:5;;;;:::i;:::-;3404:12;;3326:98;;;;:::o;53790:147::-;53927:6;53790:147;;;;;:::o;34563:322::-;34633:14;34864:1;34854:8;34851:15;34826:23;34822:45;34812:55;;34563:322;;;:::o;11769:190::-;11894:4;11947;11918:25;11931:5;11938:4;11918:12;:25::i;:::-;:33;11911:40;;11769:190;;;;;:::o;3683:98::-;3741:7;3772:1;3768;:5;;;;:::i;:::-;3761:12;;3683:98;;;;:::o;26555:95::-;26602:7;26629:13;;26622:20;;26555:95;:::o;4082:98::-;4140:7;4171:1;4167;:5;;;;:::i;:::-;4160:12;;4082:98;;;;:::o;12320:675::-;12403:7;12423:20;12446:4;12423:27;;12466:9;12461:497;12485:5;:12;12481:1;:16;12461:497;;;12519:20;12542:5;12548:1;12542:8;;;;;;;;:::i;:::-;;;;;;;;12519:31;;12585:12;12569;:28;12565:382;;12712:42;12727:12;12741;12712:14;:42::i;:::-;12697:57;;12565:382;;;12889:42;12904:12;12918;12889:14;:42::i;:::-;12874:57;;12565:382;12504:454;12499:3;;;;;:::i;:::-;;;;12461:497;;;;12975:12;12968:19;;;12320:675;;;;:::o;13003:224::-;13071:13;13134:1;13128:4;13121:15;13163:1;13157:4;13150:15;13204:4;13198;13188:21;13179:30;;13003:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:137::-;3058:5;3096:6;3083:20;3074:29;;3112:32;3138:5;3112:32;:::i;:::-;3013:137;;;;:::o;3156:329::-;3215:6;3264:2;3252:9;3243:7;3239:23;3235:32;3232:119;;;3270:79;;:::i;:::-;3232:119;3390:1;3415:53;3460:7;3451:6;3440:9;3436:22;3415:53;:::i;:::-;3405:63;;3361:117;3156:329;;;;:::o;3491:474::-;3559:6;3567;3616:2;3604:9;3595:7;3591:23;3587:32;3584:119;;;3622:79;;:::i;:::-;3584:119;3742:1;3767:53;3812:7;3803:6;3792:9;3788:22;3767:53;:::i;:::-;3757:63;;3713:117;3869:2;3895:53;3940:7;3931:6;3920:9;3916:22;3895:53;:::i;:::-;3885:63;;3840:118;3491:474;;;;;:::o;3971:619::-;4048:6;4056;4064;4113:2;4101:9;4092:7;4088:23;4084:32;4081:119;;;4119:79;;:::i;:::-;4081:119;4239:1;4264:53;4309:7;4300:6;4289:9;4285:22;4264:53;:::i;:::-;4254:63;;4210:117;4366:2;4392:53;4437:7;4428:6;4417:9;4413:22;4392:53;:::i;:::-;4382:63;;4337:118;4494:2;4520:53;4565:7;4556:6;4545:9;4541:22;4520:53;:::i;:::-;4510:63;;4465:118;3971:619;;;;;:::o;4596:943::-;4691:6;4699;4707;4715;4764:3;4752:9;4743:7;4739:23;4735:33;4732:120;;;4771:79;;:::i;:::-;4732:120;4891:1;4916:53;4961:7;4952:6;4941:9;4937:22;4916:53;:::i;:::-;4906:63;;4862:117;5018:2;5044:53;5089:7;5080:6;5069:9;5065:22;5044:53;:::i;:::-;5034:63;;4989:118;5146:2;5172:53;5217:7;5208:6;5197:9;5193:22;5172:53;:::i;:::-;5162:63;;5117:118;5302:2;5291:9;5287:18;5274:32;5333:18;5325:6;5322:30;5319:117;;;5355:79;;:::i;:::-;5319:117;5460:62;5514:7;5505:6;5494:9;5490:22;5460:62;:::i;:::-;5450:72;;5245:287;4596:943;;;;;;;:::o;5545:468::-;5610:6;5618;5667:2;5655:9;5646:7;5642:23;5638:32;5635:119;;;5673:79;;:::i;:::-;5635:119;5793:1;5818:53;5863:7;5854:6;5843:9;5839:22;5818:53;:::i;:::-;5808:63;;5764:117;5920:2;5946:50;5988:7;5979:6;5968:9;5964:22;5946:50;:::i;:::-;5936:60;;5891:115;5545:468;;;;;:::o;6019:474::-;6087:6;6095;6144:2;6132:9;6123:7;6119:23;6115:32;6112:119;;;6150:79;;:::i;:::-;6112:119;6270:1;6295:53;6340:7;6331:6;6320:9;6316:22;6295:53;:::i;:::-;6285:63;;6241:117;6397:2;6423:53;6468:7;6459:6;6448:9;6444:22;6423:53;:::i;:::-;6413:63;;6368:118;6019:474;;;;;:::o;6499:329::-;6558:6;6607:2;6595:9;6586:7;6582:23;6578:32;6575:119;;;6613:79;;:::i;:::-;6575:119;6733:1;6758:53;6803:7;6794:6;6783:9;6779:22;6758:53;:::i;:::-;6748:63;;6704:117;6499:329;;;;:::o;6834:327::-;6892:6;6941:2;6929:9;6920:7;6916:23;6912:32;6909:119;;;6947:79;;:::i;:::-;6909:119;7067:1;7092:52;7136:7;7127:6;7116:9;7112:22;7092:52;:::i;:::-;7082:62;;7038:116;6834:327;;;;:::o;7167:349::-;7236:6;7285:2;7273:9;7264:7;7260:23;7256:32;7253:119;;;7291:79;;:::i;:::-;7253:119;7411:1;7436:63;7491:7;7482:6;7471:9;7467:22;7436:63;:::i;:::-;7426:73;;7382:127;7167:349;;;;:::o;7522:509::-;7591:6;7640:2;7628:9;7619:7;7615:23;7611:32;7608:119;;;7646:79;;:::i;:::-;7608:119;7794:1;7783:9;7779:17;7766:31;7824:18;7816:6;7813:30;7810:117;;;7846:79;;:::i;:::-;7810:117;7951:63;8006:7;7997:6;7986:9;7982:22;7951:63;:::i;:::-;7941:73;;7737:287;7522:509;;;;:::o;8037:329::-;8096:6;8145:2;8133:9;8124:7;8120:23;8116:32;8113:119;;;8151:79;;:::i;:::-;8113:119;8271:1;8296:53;8341:7;8332:6;8321:9;8317:22;8296:53;:::i;:::-;8286:63;;8242:117;8037:329;;;;:::o;8372:474::-;8440:6;8448;8497:2;8485:9;8476:7;8472:23;8468:32;8465:119;;;8503:79;;:::i;:::-;8465:119;8623:1;8648:53;8693:7;8684:6;8673:9;8669:22;8648:53;:::i;:::-;8638:63;;8594:117;8750:2;8776:53;8821:7;8812:6;8801:9;8797:22;8776:53;:::i;:::-;8766:63;;8721:118;8372:474;;;;;:::o;8852:619::-;8929:6;8937;8945;8994:2;8982:9;8973:7;8969:23;8965:32;8962:119;;;9000:79;;:::i;:::-;8962:119;9120:1;9145:53;9190:7;9181:6;9170:9;9166:22;9145:53;:::i;:::-;9135:63;;9091:117;9247:2;9273:53;9318:7;9309:6;9298:9;9294:22;9273:53;:::i;:::-;9263:63;;9218:118;9375:2;9401:53;9446:7;9437:6;9426:9;9422:22;9401:53;:::i;:::-;9391:63;;9346:118;8852:619;;;;;:::o;9477:765::-;9563:6;9571;9579;9587;9636:3;9624:9;9615:7;9611:23;9607:33;9604:120;;;9643:79;;:::i;:::-;9604:120;9763:1;9788:53;9833:7;9824:6;9813:9;9809:22;9788:53;:::i;:::-;9778:63;;9734:117;9890:2;9916:53;9961:7;9952:6;9941:9;9937:22;9916:53;:::i;:::-;9906:63;;9861:118;10018:2;10044:53;10089:7;10080:6;10069:9;10065:22;10044:53;:::i;:::-;10034:63;;9989:118;10146:2;10172:53;10217:7;10208:6;10197:9;10193:22;10172:53;:::i;:::-;10162:63;;10117:118;9477:765;;;;;;;:::o;10248:845::-;10350:6;10358;10366;10374;10423:2;10411:9;10402:7;10398:23;10394:32;10391:119;;;10429:79;;:::i;:::-;10391:119;10549:1;10574:52;10618:7;10609:6;10598:9;10594:22;10574:52;:::i;:::-;10564:62;;10520:116;10703:2;10692:9;10688:18;10675:32;10734:18;10726:6;10723:30;10720:117;;;10756:79;;:::i;:::-;10720:117;10869:80;10941:7;10932:6;10921:9;10917:22;10869:80;:::i;:::-;10851:98;;;;10646:313;10998:2;11024:52;11068:7;11059:6;11048:9;11044:22;11024:52;:::i;:::-;11014:62;;10969:117;10248:845;;;;;;;:::o;11099:118::-;11186:24;11204:5;11186:24;:::i;:::-;11181:3;11174:37;11099:118;;:::o;11223:157::-;11328:45;11348:24;11366:5;11348:24;:::i;:::-;11328:45;:::i;:::-;11323:3;11316:58;11223:157;;:::o;11386:109::-;11467:21;11482:5;11467:21;:::i;:::-;11462:3;11455:34;11386:109;;:::o;11501:118::-;11588:24;11606:5;11588:24;:::i;:::-;11583:3;11576:37;11501:118;;:::o;11625:360::-;11711:3;11739:38;11771:5;11739:38;:::i;:::-;11793:70;11856:6;11851:3;11793:70;:::i;:::-;11786:77;;11872:52;11917:6;11912:3;11905:4;11898:5;11894:16;11872:52;:::i;:::-;11949:29;11971:6;11949:29;:::i;:::-;11944:3;11940:39;11933:46;;11715:270;11625:360;;;;:::o;11991:364::-;12079:3;12107:39;12140:5;12107:39;:::i;:::-;12162:71;12226:6;12221:3;12162:71;:::i;:::-;12155:78;;12242:52;12287:6;12282:3;12275:4;12268:5;12264:16;12242:52;:::i;:::-;12319:29;12341:6;12319:29;:::i;:::-;12314:3;12310:39;12303:46;;12083:272;11991:364;;;;:::o;12361:377::-;12467:3;12495:39;12528:5;12495:39;:::i;:::-;12550:89;12632:6;12627:3;12550:89;:::i;:::-;12543:96;;12648:52;12693:6;12688:3;12681:4;12674:5;12670:16;12648:52;:::i;:::-;12725:6;12720:3;12716:16;12709:23;;12471:267;12361:377;;;;:::o;12744:366::-;12886:3;12907:67;12971:2;12966:3;12907:67;:::i;:::-;12900:74;;12983:93;13072:3;12983:93;:::i;:::-;13101:2;13096:3;13092:12;13085:19;;12744:366;;;:::o;13116:::-;13258:3;13279:67;13343:2;13338:3;13279:67;:::i;:::-;13272:74;;13355:93;13444:3;13355:93;:::i;:::-;13473:2;13468:3;13464:12;13457:19;;13116:366;;;:::o;13488:::-;13630:3;13651:67;13715:2;13710:3;13651:67;:::i;:::-;13644:74;;13727:93;13816:3;13727:93;:::i;:::-;13845:2;13840:3;13836:12;13829:19;;13488:366;;;:::o;13860:::-;14002:3;14023:67;14087:2;14082:3;14023:67;:::i;:::-;14016:74;;14099:93;14188:3;14099:93;:::i;:::-;14217:2;14212:3;14208:12;14201:19;;13860:366;;;:::o;14232:::-;14374:3;14395:67;14459:2;14454:3;14395:67;:::i;:::-;14388:74;;14471:93;14560:3;14471:93;:::i;:::-;14589:2;14584:3;14580:12;14573:19;;14232:366;;;:::o;14604:::-;14746:3;14767:67;14831:2;14826:3;14767:67;:::i;:::-;14760:74;;14843:93;14932:3;14843:93;:::i;:::-;14961:2;14956:3;14952:12;14945:19;;14604:366;;;:::o;14976:::-;15118:3;15139:67;15203:2;15198:3;15139:67;:::i;:::-;15132:74;;15215:93;15304:3;15215:93;:::i;:::-;15333:2;15328:3;15324:12;15317:19;;14976:366;;;:::o;15348:::-;15490:3;15511:67;15575:2;15570:3;15511:67;:::i;:::-;15504:74;;15587:93;15676:3;15587:93;:::i;:::-;15705:2;15700:3;15696:12;15689:19;;15348:366;;;:::o;15720:::-;15862:3;15883:67;15947:2;15942:3;15883:67;:::i;:::-;15876:74;;15959:93;16048:3;15959:93;:::i;:::-;16077:2;16072:3;16068:12;16061:19;;15720:366;;;:::o;16092:::-;16234:3;16255:67;16319:2;16314:3;16255:67;:::i;:::-;16248:74;;16331:93;16420:3;16331:93;:::i;:::-;16449:2;16444:3;16440:12;16433:19;;16092:366;;;:::o;16464:::-;16606:3;16627:67;16691:2;16686:3;16627:67;:::i;:::-;16620:74;;16703:93;16792:3;16703:93;:::i;:::-;16821:2;16816:3;16812:12;16805:19;;16464:366;;;:::o;16836:::-;16978:3;16999:67;17063:2;17058:3;16999:67;:::i;:::-;16992:74;;17075:93;17164:3;17075:93;:::i;:::-;17193:2;17188:3;17184:12;17177:19;;16836:366;;;:::o;17208:118::-;17295:24;17313:5;17295:24;:::i;:::-;17290:3;17283:37;17208:118;;:::o;17332:153::-;17435:43;17454:23;17471:5;17454:23;:::i;:::-;17435:43;:::i;:::-;17430:3;17423:56;17332:153;;:::o;17491:392::-;17629:3;17644:75;17715:3;17706:6;17644:75;:::i;:::-;17744:2;17739:3;17735:12;17728:19;;17757:73;17826:3;17817:6;17757:73;:::i;:::-;17855:1;17850:3;17846:11;17839:18;;17874:3;17867:10;;17491:392;;;;;:::o;17889:435::-;18069:3;18091:95;18182:3;18173:6;18091:95;:::i;:::-;18084:102;;18203:95;18294:3;18285:6;18203:95;:::i;:::-;18196:102;;18315:3;18308:10;;17889:435;;;;;:::o;18330:222::-;18423:4;18461:2;18450:9;18446:18;18438:26;;18474:71;18542:1;18531:9;18527:17;18518:6;18474:71;:::i;:::-;18330:222;;;;:::o;18558:640::-;18753:4;18791:3;18780:9;18776:19;18768:27;;18805:71;18873:1;18862:9;18858:17;18849:6;18805:71;:::i;:::-;18886:72;18954:2;18943:9;18939:18;18930:6;18886:72;:::i;:::-;18968;19036:2;19025:9;19021:18;19012:6;18968:72;:::i;:::-;19087:9;19081:4;19077:20;19072:2;19061:9;19057:18;19050:48;19115:76;19186:4;19177:6;19115:76;:::i;:::-;19107:84;;18558:640;;;;;;;:::o;19204:553::-;19381:4;19419:3;19408:9;19404:19;19396:27;;19433:71;19501:1;19490:9;19486:17;19477:6;19433:71;:::i;:::-;19514:72;19582:2;19571:9;19567:18;19558:6;19514:72;:::i;:::-;19596;19664:2;19653:9;19649:18;19640:6;19596:72;:::i;:::-;19678;19746:2;19735:9;19731:18;19722:6;19678:72;:::i;:::-;19204:553;;;;;;;:::o;19763:210::-;19850:4;19888:2;19877:9;19873:18;19865:26;;19901:65;19963:1;19952:9;19948:17;19939:6;19901:65;:::i;:::-;19763:210;;;;:::o;19979:222::-;20072:4;20110:2;20099:9;20095:18;20087:26;;20123:71;20191:1;20180:9;20176:17;20167:6;20123:71;:::i;:::-;19979:222;;;;:::o;20207:313::-;20320:4;20358:2;20347:9;20343:18;20335:26;;20407:9;20401:4;20397:20;20393:1;20382:9;20378:17;20371:47;20435:78;20508:4;20499:6;20435:78;:::i;:::-;20427:86;;20207:313;;;;:::o;20526:419::-;20692:4;20730:2;20719:9;20715:18;20707:26;;20779:9;20773:4;20769:20;20765:1;20754:9;20750:17;20743:47;20807:131;20933:4;20807:131;:::i;:::-;20799:139;;20526:419;;;:::o;20951:::-;21117:4;21155:2;21144:9;21140:18;21132:26;;21204:9;21198:4;21194:20;21190:1;21179:9;21175:17;21168:47;21232:131;21358:4;21232:131;:::i;:::-;21224:139;;20951:419;;;:::o;21376:::-;21542:4;21580:2;21569:9;21565:18;21557:26;;21629:9;21623:4;21619:20;21615:1;21604:9;21600:17;21593:47;21657:131;21783:4;21657:131;:::i;:::-;21649:139;;21376:419;;;:::o;21801:::-;21967:4;22005:2;21994:9;21990:18;21982:26;;22054:9;22048:4;22044:20;22040:1;22029:9;22025:17;22018:47;22082:131;22208:4;22082:131;:::i;:::-;22074:139;;21801:419;;;:::o;22226:::-;22392:4;22430:2;22419:9;22415:18;22407:26;;22479:9;22473:4;22469:20;22465:1;22454:9;22450:17;22443:47;22507:131;22633:4;22507:131;:::i;:::-;22499:139;;22226:419;;;:::o;22651:::-;22817:4;22855:2;22844:9;22840:18;22832:26;;22904:9;22898:4;22894:20;22890:1;22879:9;22875:17;22868:47;22932:131;23058:4;22932:131;:::i;:::-;22924:139;;22651:419;;;:::o;23076:::-;23242:4;23280:2;23269:9;23265:18;23257:26;;23329:9;23323:4;23319:20;23315:1;23304:9;23300:17;23293:47;23357:131;23483:4;23357:131;:::i;:::-;23349:139;;23076:419;;;:::o;23501:::-;23667:4;23705:2;23694:9;23690:18;23682:26;;23754:9;23748:4;23744:20;23740:1;23729:9;23725:17;23718:47;23782:131;23908:4;23782:131;:::i;:::-;23774:139;;23501:419;;;:::o;23926:::-;24092:4;24130:2;24119:9;24115:18;24107:26;;24179:9;24173:4;24169:20;24165:1;24154:9;24150:17;24143:47;24207:131;24333:4;24207:131;:::i;:::-;24199:139;;23926:419;;;:::o;24351:::-;24517:4;24555:2;24544:9;24540:18;24532:26;;24604:9;24598:4;24594:20;24590:1;24579:9;24575:17;24568:47;24632:131;24758:4;24632:131;:::i;:::-;24624:139;;24351:419;;;:::o;24776:::-;24942:4;24980:2;24969:9;24965:18;24957:26;;25029:9;25023:4;25019:20;25015:1;25004:9;25000:17;24993:47;25057:131;25183:4;25057:131;:::i;:::-;25049:139;;24776:419;;;:::o;25201:::-;25367:4;25405:2;25394:9;25390:18;25382:26;;25454:9;25448:4;25444:20;25440:1;25429:9;25425:17;25418:47;25482:131;25608:4;25482:131;:::i;:::-;25474:139;;25201:419;;;:::o;25626:222::-;25719:4;25757:2;25746:9;25742:18;25734:26;;25770:71;25838:1;25827:9;25823:17;25814:6;25770:71;:::i;:::-;25626:222;;;;:::o;25854:129::-;25888:6;25915:20;;:::i;:::-;25905:30;;25944:33;25972:4;25964:6;25944:33;:::i;:::-;25854:129;;;:::o;25989:75::-;26022:6;26055:2;26049:9;26039:19;;25989:75;:::o;26070:307::-;26131:4;26221:18;26213:6;26210:30;26207:56;;;26243:18;;:::i;:::-;26207:56;26281:29;26303:6;26281:29;:::i;:::-;26273:37;;26365:4;26359;26355:15;26347:23;;26070:307;;;:::o;26383:308::-;26445:4;26535:18;26527:6;26524:30;26521:56;;;26557:18;;:::i;:::-;26521:56;26595:29;26617:6;26595:29;:::i;:::-;26587:37;;26679:4;26673;26669:15;26661:23;;26383:308;;;:::o;26697:98::-;26748:6;26782:5;26776:12;26766:22;;26697:98;;;:::o;26801:99::-;26853:6;26887:5;26881:12;26871:22;;26801:99;;;:::o;26906:168::-;26989:11;27023:6;27018:3;27011:19;27063:4;27058:3;27054:14;27039:29;;26906:168;;;;:::o;27080:169::-;27164:11;27198:6;27193:3;27186:19;27238:4;27233:3;27229:14;27214:29;;27080:169;;;;:::o;27255:148::-;27357:11;27394:3;27379:18;;27255:148;;;;:::o;27409:305::-;27449:3;27468:20;27486:1;27468:20;:::i;:::-;27463:25;;27502:20;27520:1;27502:20;:::i;:::-;27497:25;;27656:1;27588:66;27584:74;27581:1;27578:81;27575:107;;;27662:18;;:::i;:::-;27575:107;27706:1;27703;27699:9;27692:16;;27409:305;;;;:::o;27720:185::-;27760:1;27777:20;27795:1;27777:20;:::i;:::-;27772:25;;27811:20;27829:1;27811:20;:::i;:::-;27806:25;;27850:1;27840:35;;27855:18;;:::i;:::-;27840:35;27897:1;27894;27890:9;27885:14;;27720:185;;;;:::o;27911:348::-;27951:7;27974:20;27992:1;27974:20;:::i;:::-;27969:25;;28008:20;28026:1;28008:20;:::i;:::-;28003:25;;28196:1;28128:66;28124:74;28121:1;28118:81;28113:1;28106:9;28099:17;28095:105;28092:131;;;28203:18;;:::i;:::-;28092:131;28251:1;28248;28244:9;28233:20;;27911:348;;;;:::o;28265:191::-;28305:4;28325:20;28343:1;28325:20;:::i;:::-;28320:25;;28359:20;28377:1;28359:20;:::i;:::-;28354:25;;28398:1;28395;28392:8;28389:34;;;28403:18;;:::i;:::-;28389:34;28448:1;28445;28441:9;28433:17;;28265:191;;;;:::o;28462:96::-;28499:7;28528:24;28546:5;28528:24;:::i;:::-;28517:35;;28462:96;;;:::o;28564:90::-;28598:7;28641:5;28634:13;28627:21;28616:32;;28564:90;;;:::o;28660:77::-;28697:7;28726:5;28715:16;;28660:77;;;:::o;28743:149::-;28779:7;28819:66;28812:5;28808:78;28797:89;;28743:149;;;:::o;28898:126::-;28935:7;28975:42;28968:5;28964:54;28953:65;;28898:126;;;:::o;29030:77::-;29067:7;29096:5;29085:16;;29030:77;;;:::o;29113:101::-;29149:7;29189:18;29182:5;29178:30;29167:41;;29113:101;;;:::o;29220:154::-;29304:6;29299:3;29294;29281:30;29366:1;29357:6;29352:3;29348:16;29341:27;29220:154;;;:::o;29380:307::-;29448:1;29458:113;29472:6;29469:1;29466:13;29458:113;;;29557:1;29552:3;29548:11;29542:18;29538:1;29533:3;29529:11;29522:39;29494:2;29491:1;29487:10;29482:15;;29458:113;;;29589:6;29586:1;29583:13;29580:101;;;29669:1;29660:6;29655:3;29651:16;29644:27;29580:101;29429:258;29380:307;;;:::o;29693:320::-;29737:6;29774:1;29768:4;29764:12;29754:22;;29821:1;29815:4;29811:12;29842:18;29832:81;;29898:4;29890:6;29886:17;29876:27;;29832:81;29960:2;29952:6;29949:14;29929:18;29926:38;29923:84;;;29979:18;;:::i;:::-;29923:84;29744:269;29693:320;;;:::o;30019:281::-;30102:27;30124:4;30102:27;:::i;:::-;30094:6;30090:40;30232:6;30220:10;30217:22;30196:18;30184:10;30181:34;30178:62;30175:88;;;30243:18;;:::i;:::-;30175:88;30283:10;30279:2;30272:22;30062:238;30019:281;;:::o;30306:233::-;30345:3;30368:24;30386:5;30368:24;:::i;:::-;30359:33;;30414:66;30407:5;30404:77;30401:103;;;30484:18;;:::i;:::-;30401:103;30531:1;30524:5;30520:13;30513:20;;30306:233;;;:::o;30545:100::-;30584:7;30613:26;30633:5;30613:26;:::i;:::-;30602:37;;30545:100;;;:::o;30651:94::-;30690:7;30719:20;30733:5;30719:20;:::i;:::-;30708:31;;30651:94;;;:::o;30751:::-;30789:7;30818:21;30833:5;30818:21;:::i;:::-;30807:32;;30751:94;;;:::o;30851:180::-;30899:77;30896:1;30889:88;30996:4;30993:1;30986:15;31020:4;31017:1;31010:15;31037:180;31085:77;31082:1;31075:88;31182:4;31179:1;31172:15;31206:4;31203:1;31196:15;31223:180;31271:77;31268:1;31261:88;31368:4;31365:1;31358:15;31392:4;31389:1;31382:15;31409:180;31457:77;31454:1;31447:88;31554:4;31551:1;31544:15;31578:4;31575:1;31568:15;31595:180;31643:77;31640:1;31633:88;31740:4;31737:1;31730:15;31764:4;31761:1;31754:15;31781:117;31890:1;31887;31880:12;31904:117;32013:1;32010;32003:12;32027:117;32136:1;32133;32126:12;32150:117;32259:1;32256;32249:12;32273:117;32382:1;32379;32372:12;32396:117;32505:1;32502;32495:12;32519:102;32560:6;32611:2;32607:7;32602:2;32595:5;32591:14;32587:28;32577:38;;32519:102;;;:::o;32627:96::-;32661:8;32710:5;32705:3;32701:15;32680:36;;32627:96;;;:::o;32729:94::-;32762:8;32810:5;32806:2;32802:14;32781:35;;32729:94;;;:::o;32829:225::-;32969:34;32965:1;32957:6;32953:14;32946:58;33038:8;33033:2;33025:6;33021:15;33014:33;32829:225;:::o;33060:167::-;33200:19;33196:1;33188:6;33184:14;33177:43;33060:167;:::o;33233:180::-;33373:32;33369:1;33361:6;33357:14;33350:56;33233:180;:::o;33419:162::-;33559:14;33555:1;33547:6;33543:14;33536:38;33419:162;:::o;33587:182::-;33727:34;33723:1;33715:6;33711:14;33704:58;33587:182;:::o;33775:::-;33915:34;33911:1;33903:6;33899:14;33892:58;33775:182;:::o;33963:168::-;34103:20;34099:1;34091:6;34087:14;34080:44;33963:168;:::o;34137:180::-;34277:32;34273:1;34265:6;34261:14;34254:56;34137:180;:::o;34323:166::-;34463:18;34459:1;34451:6;34447:14;34440:42;34323:166;:::o;34495:178::-;34635:30;34631:1;34623:6;34619:14;34612:54;34495:178;:::o;34679:167::-;34819:19;34815:1;34807:6;34803:14;34796:43;34679:167;:::o;34852:166::-;34992:18;34988:1;34980:6;34976:14;34969:42;34852:166;:::o;35024:122::-;35097:24;35115:5;35097:24;:::i;:::-;35090:5;35087:35;35077:63;;35136:1;35133;35126:12;35077:63;35024:122;:::o;35152:116::-;35222:21;35237:5;35222:21;:::i;:::-;35215:5;35212:32;35202:60;;35258:1;35255;35248:12;35202:60;35152:116;:::o;35274:122::-;35347:24;35365:5;35347:24;:::i;:::-;35340:5;35337:35;35327:63;;35386:1;35383;35376:12;35327:63;35274:122;:::o;35402:120::-;35474:23;35491:5;35474:23;:::i;:::-;35467:5;35464:34;35454:62;;35512:1;35509;35502:12;35454:62;35402:120;:::o;35528:122::-;35601:24;35619:5;35601:24;:::i;:::-;35594:5;35591:35;35581:63;;35640:1;35637;35630:12;35581:63;35528:122;:::o;35656:120::-;35728:23;35745:5;35728:23;:::i;:::-;35721:5;35718:34;35708:62;;35766:1;35763;35756:12;35708:62;35656:120;:::o
Swarm Source
ipfs://3c7b0971d7cebd33ac7f1c8e3647cfe1a81a62c50991a01da129b558ebee4518
Loading...
Loading
Loading...
Loading
[ 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.