Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
173 TTMC
Holders
16
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 TTMCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
TotheMoon
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-09 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Math/SafeMath.sol // 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/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree 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 Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(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++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Context.sol // 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/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * 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(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores 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 via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @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() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 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`, * 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, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` 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](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/extensions/IERC721AQueryable.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721AQueryable. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File: erc721a/contracts/extensions/IERC721ABurnable.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721ABurnable. */ interface IERC721ABurnable is IERC721A { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) external; } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // 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 `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID 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 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual 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 virtual { 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; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ 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: [ERC165](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. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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 ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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 initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev 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); } /** * @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 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)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns 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)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 virtual { uint256 startTokenId = _currentIndex; 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 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _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 virtual { 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 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 virtual { _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 Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @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) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(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++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { 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 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 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; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @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 virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: erc721a/contracts/extensions/ERC721AQueryable.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] calldata tokenIds) external view virtual override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } // File: erc721a/contracts/extensions/ERC721ABurnable.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721ABurnable. * * @dev ERC721A token that can be irreversibly burned (destroyed). */ abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual override { _burn(tokenId, true); } } // File: ToTheMoon.sol // creator : Jason Siauw / jason9071.eth // contact : [email protected] pragma solidity ^0.8.4; /* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&&&&&@&&&&&&&&&&&&&&@&&&&@&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&@@&&&&&&&&&&&&&&&&&&&&&&&&&&&&@&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@&&@@@@@@@@&&@@@@@@@&&&&&&&&&&&&&&&@@@@@@&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@&@@&@@@@@@&#BGPP5YYJJJJJJ???7777?JY5PB##&@@@@&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@&&@&@@@@&#G5J?!~~!!!!!!77!!!!!!~~^::..:::^~!?YG#&@@@@@@&@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@&#G5J??7!!7???77!!!!!!!~~~^^^^~~^^~~^::^^::^~?PB&@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@&G5JJJYYYYYJJJJ??J???7!~~~~~~~~~~!!!7~~~~^^^~^^^^::~JG&@@@@&@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@&B5JJYY5555Y55Y7!!777!77~^^~~~~~~!!~~~!7!~~~~~~~!~~!7!^::~JB&@@@&@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@B5JJY555YY555555?!~~~^^^^^^^^^^~~~^^^^^^~~~~77~~~~~~~~^~~~^:.:!5#@@&@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@&BY?J5P55Y555555Y?7~^::^^^^^::::^^^^^^^:::^~~~~!~~^^^^^~~~^^^~~^:::!Y#@@&@@@@@@@@@@@@ @@@@@@@@@@@@@&B5JJYJJ55555555Y?77777~^~~~!~~^^^^^~^^^^^~~~!!~~!!!~~^^^^^^^~^~~~^:::^!5#@@@@@@@@@@@@@ @@@@@@@@@@@@&PY5?JJ??Y55P5PPYJ?JJJJ7^~!!!!!!!~~~~!!~~~^^~!!!!~~~~~~~~~^^^^^~~~~~^^::^~7G&@@@@@@@@@@@ @@@@@@@@@@&GY55J??YPPPPPPPPP5Y5555J?!^^^~~~~!77!~!!!!~~~~~^~~~^^^~~~~~~~^^^~~^~~^~~^^~~7P&@@@@@@@@@@ @@@@@@@@@#Y7?J77J5GPPP55PPPPPPPP5?7!!~:.:^~7JJJJJJJJJ??7~~~~~~~^^^^^^^^^~~^^^~~~~^^^^~!^7Y#@@@@@@@@@ @@@@@@@@B?~~~!7JPPPPPPPPPPPPPPPP5J7!!~::^!7JYYYYYYYYYYY?77?!!~^^~^^^^^^~~^~^~^~~^^::::~!!?Y#@@@@@@@@ @@@@@@@BJ~^:~7?5PPPPPPPPPPPPP555Y5Y?7~^:~?YYY55555555555Y??7!~~~~^^^:^:^^^^^^^~~~~^...^~!?J5#@@@@@@@ @@@@@@G?~^^^~7J5PPPPPP5P555PP5YY?JJJ!^^~~7?55555555PP5555Y7!7!~~~^^::^^:::^^^~~~~!!~^^~~~7JYP&@@@@@@ @@@@@B!~^^^~~!7Y55PP5YJY55P555YJJ??JJ!~~~~!?YYY55555Y?JJY?!!!~^~~~~^^~~^^~~~^77!!7?7?!!~!~7J5B&@@@@@ @@@@#!^^^^^^::^!Y55Y?~~7JY5YYJJYJJJYYJ7!~~!!!777????!~!77!~~~~!77!!~!!~~^!~~^!7?!7?7??7!!!7?Y5#@@@@@ @@@@Y~^:^^:.:~7JYYJ!!!!!77?JYY55Y5555557!~!!!!!7??!!!!!!7~~~!!7J?7!!?YJ7!!!!~!!!77777?7!7777JYB&@@@@ @@@#!~^^^^^:~7?JJJ7!!!7777?55555555555P5J77!!!!~7?7?JJJ777~!!!~7????Y5YJ7!^^!!7777777??7!7?7JJG#@@@@ @@@5~~~^::::^~!??7!!!^~7???Y555Y5P555P5555YJ??7!77JJJJ?J77!~!!~~!7JYY55Y?J?~!!77777???77!7??JJP#&@@@ @@&?^^^^^^^.::^!!?77~^^~7JYY55555555555555 To the Moon 7~!7~~!!!777??JY5YYYJ??7777??????77?JYYPB&@@@ @@#~^^^^~^:..:~!7?YJ?!~^!7JJ55555555YYYJJYYY??JJJ??7!7777!!~~~^~!77JY??JYYYYJJ77777???7????JY5PB&@@@ @@G~^~^~^^^:..~?JYYJJ?~^~7?JY55555YYYYJYYYYJ?7!77?7?777??7!!7~~~!!!7????77??J???7!7??????77JY5PB&@@@ @@G^^^^^^~^^::!?JYYJ?!~~!!???YY5YYJJJ??7!!7???7777!7777777777777J??YJJ?77!7?J?7?7!?777?7777?J5PB&@@@ @@B:::::~~^^^^^!?YY5J^~!!!7!77?JJJJJ??!~^::~77!777?77777!!77?JJYYJ5555YY????J?77!7!777??77?JJ5G#@@@@ @@B:..:~~~^:::~777???7!?7!!7?!!7JYYJ??7!~~!!!~!777!77!!7!!7??JYYY5PPPPPY???7??!~!77?77J?!77JYPG#@@@@ @@&^.:^~^::::^~~~~~!??7!??7?JJ?JJJJJ77!777!~!!!!!!!!!!777777JJJYY5Y55YYJ7777!!~~777!!7?J?!75YPB&@@@@ @@@? :^^::^^^^:^^~!7!!~!7777JJYJ77J77????7!!!7!!!!!!~!!7!!!77Y5YYJJ??JJ77!??77777!!~77???7?J5G#&@@@@ @&@G.....^^:^^^^~~~!~^~~^^~!77?7~^~~!7???7!!777777777!!!!!!!!??JY???777777?77??!!!!!7JJ777?YGB&@@@@@ @@&@? .::^^:^~~~~^^~^~~^^^^^^!!~~~^^~!7777777??7!~!!!!7!~~!!!!77!!!!!777!77!77777!7?J?7777JPG#&@@@@@ @@@@#: :::^^^^^~~^^^^^^^:.:::^^~~~^~~!!!!!77777!!!!!!!!!~!!!~~!!!!!!~!!7!77??7??7?JJJJ?77?5P#&@@@@@@ @@@&@G. ..:::^^^^^^^^^^^:.....::^:^:^^~!!!7!7!!!!!!~^~~~~~^~~~~~!!~!!!!7!????777??JJYY??JJ5#&@@@@@@@ @@@@@@5 .::.:^^^^^^^^^^::. ....::::^^~~~^~!7!!!!!!~~^~!!:^~~~~^!~~!777??JJ??7!77?JYYJ7?YYB&@@@@@@@@ @@@@@&&Y..:::^^^::^^^^^^:..... .:^~^^^^^^~7777!77!!~!777!!~~~!!~~777777?????7??JJY5JJ?YG#&@@@@@@@@@ @@@@@&&@5. ::::.:::::::::..::.:::^^::::^^~!7!77!7!~~!!7!7!!!!77!!!!!777????7?JYYY555YYPG#&@@@@@@@@@@ @@@@@@&&@B~ .:::..:....:::^~~^:^~^^^^~~~~~~!!!!!7~^^~~!7!!!77!!!!!~~!7??JJ?7JY5YY555PGB&&@@@@@@@@@@@ @@@@@@@&&@&J. ..:::....::^~~~~~~~~~~^^~~~~~~~~^!!~~~~!77777!77777!~!7?JJJJJJYYJJ5P5PB#&@@@@@@@@@@@@@ @@@@@@@@&&@@B! .:...::^^~~~!!~~!!!!!!~~~!!^~!!77?77!!7?7777?77???JJJYYYYJYJJJJ55PGB&&@@@@@@@@@@@@@@ @@@@@@@@@@&&@&P~....::::^~^^~~^~~~~!!!7!!777J?7??JYY??JYY???????JY5YJJJYJJYYY555BBB&@@@@@@@@@@@@@@@@ @@@@@@@@@@@&&&@&P!. .::::^^^^^^^~!!!!~??J???JJJ??JJYYYJYYJ?JJJ?JJJYYYYYYY55PPPGB&&@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@&&@@&G?: ..::^^^^!77!7??YJ?777?7?JJYYYYYJJYYJJYYJJ?J?JJYYYY5PGBB&&@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@&&&@@#5!. ..::^^~~?JJJJ7?YY????JY5YJJJYYYJJJY???7??JY5PPGB&&@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@&&&&@9^. ..::::~!77!7??J?????JJJJJJJJYYJJJ?JJJ55PPG##&&@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@&&&@@@&B57~:.:::^~!!!?777777???7??JYJJY?YYY55GG#&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@&&&&&&@@@&#PYJ7!!~~^~~!!7?7?77???JJJ55YPGB##&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@&@&&&&&&&@@@@&&#BBGP5YJJJYYJJYY5G###&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@&@&&&&&&&&&&@@@@@@@@@@@&&&@@@@@@@@@@@&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@&@@@@@&@@&&&@&&&&&&@&&&&&&&&&&@&&&&&&&&@&@@@@@&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */ contract TotheMoon is ERC721A, ERC721ABurnable, ERC721AQueryable, Ownable { string public baseURI; uint256 public maxSupply; bool allowMint; uint256 price; constructor() ERC721A("ToTheMoonCake", "TTMC") { baseURI = "ipfs://QmX3Vda5DaXZTEmbarPpjdQ3ByMq1jduqBQgeNquergq5A/"; maxSupply = 3000; price = 0.001 ether; } // modifier // modifier notContract() { require(!_isContract(msg.sender), "contract not allowed"); require(msg.sender == tx.origin, "proxy contract not allowed"); _; } // modifier // // user function // function toTheMoon( uint256 quantity ) external payable notContract { require( totalSupply() + quantity <= maxSupply, "out of max supply" ); require( allowMint, "not allow to mint now" ); require( msg.value >= quantity * price , "not enough ether" ); _mint(msg.sender, quantity); } function sendYourFriendToTheMoon( address to, uint256 quantity ) external payable notContract { require( totalSupply() + quantity <= maxSupply, "out of max supply" ); require( allowMint, "not allow to mint now" ); require( msg.value >= quantity * price , "not enough ether" ); _mint(to, quantity); } function tokenURI( uint256 tokenId ) public view virtual override returns (string memory) { require(_exists(tokenId), "Token does not exist."); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json")) : ''; } // user function // // admin function // function withdraw() external onlyOwner { require(address(this).balance > 0, "insufficient balance"); payable(msg.sender).transfer(address(this).balance); } function setPrice(uint256 newPrice) external onlyOwner { price = newPrice; } function setMaxSupply(uint256 newMaxSupply) external onlyOwner { maxSupply = newMaxSupply; } function setBaseURI(string calldata newBaseURI) external onlyOwner { baseURI = newBaseURI; } function filpAllowMint() external onlyOwner { allowMint = !allowMint; } // admin function // // prop function // function _isContract( address _addr ) internal view returns (bool) { uint size; assembly { size := extcodesize(_addr) } return size > 0; } // prop function // }
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":"InvalidQueryRange","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"filpAllowMint","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"sendYourFriendToTheMoon","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":"quantity","type":"uint256"}],"name":"toTheMoon","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600d81526020017f546f5468654d6f6f6e43616b65000000000000000000000000000000000000008152506040518060400160405280600481526020017f54544d43000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000969291906200020a565b508060039080519060200190620000af9291906200020a565b50620000c06200013760201b60201c565b6000819055505050620000e8620000dc6200013c60201b60201c565b6200014460201b60201c565b60405180606001604052806036815260200162003f156036913960099080519060200190620001199291906200020a565b50610bb8600a8190555066038d7ea4c68000600c819055506200031f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021890620002ba565b90600052602060002090601f0160209004810192826200023c576000855562000288565b82601f106200025757805160ff191683800117855562000288565b8280016001018555821562000288579182015b82811115620002875782518255916020019190600101906200026a565b5b5090506200029791906200029b565b5090565b5b80821115620002b65760008160009055506001016200029c565b5090565b60006002820490506001821680620002d357607f821691505b60208210811415620002ea57620002e9620002f0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613be6806200032f6000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd1461068a578063d5abeb01146106c7578063e985e9c5146106f2578063f2fde38b1461072f576101d8565b8063a22cb465146105df578063a994a23b14610608578063b88d4fde14610624578063c23dc68f1461064d576101d8565b806391b7f5ed116100d157806391b7f5ed1461053257806395d89b411461055b57806399a2557a1461058657806399a5ca99146105c3576101d8565b806370a0823114610476578063715018a6146104b35780638462151c146104ca5780638da5cb5b14610507576101d8565b80633ccfd60b1161017a5780635bbb2177116101495780635bbb2177146103a85780636352211e146103e55780636c0360eb146104225780636f8b44b01461044d576101d8565b80633ccfd60b1461031657806342842e0e1461032d57806342966c681461035657806355f804b31461037f576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780633c1e6328146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612cc0565b610758565b60405161021191906132fc565b60405180910390f35b34801561022657600080fd5b5061022f6107ea565b60405161023c9190613317565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612d67565b61087c565b6040516102799190613251565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612be0565b6108fb565b005b3480156102b757600080fd5b506102c0610a3f565b6040516102cd9190613474565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612aca565b610a56565b005b34801561030b57600080fd5b50610314610d7b565b005b34801561032257600080fd5b5061032b610daf565b005b34801561033957600080fd5b50610354600480360381019061034f9190612aca565b610e43565b005b34801561036257600080fd5b5061037d60048036038101906103789190612d67565b610e63565b005b34801561038b57600080fd5b506103a660048036038101906103a19190612d1a565b610e71565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190612c73565b610e8f565b6040516103dc91906132b8565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190612d67565b610f52565b6040516104199190613251565b60405180910390f35b34801561042e57600080fd5b50610437610f64565b6040516104449190613317565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f9190612d67565b610ff2565b005b34801561048257600080fd5b5061049d60048036038101906104989190612a5d565b611004565b6040516104aa9190613474565b60405180910390f35b3480156104bf57600080fd5b506104c86110bd565b005b3480156104d657600080fd5b506104f160048036038101906104ec9190612a5d565b6110d1565b6040516104fe91906132da565b60405180910390f35b34801561051357600080fd5b5061051c61121b565b6040516105299190613251565b60405180910390f35b34801561053e57600080fd5b5061055960048036038101906105549190612d67565b611245565b005b34801561056757600080fd5b50610570611257565b60405161057d9190613317565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190612c20565b6112e9565b6040516105ba91906132da565b60405180910390f35b6105dd60048036038101906105d89190612be0565b6114fd565b005b3480156105eb57600080fd5b5061060660048036038101906106019190612ba0565b6116b8565b005b610622600480360381019061061d9190612d67565b611830565b005b34801561063057600080fd5b5061064b60048036038101906106469190612b1d565b6119ea565b005b34801561065957600080fd5b50610674600480360381019061066f9190612d67565b611a5d565b6040516106819190613459565b60405180910390f35b34801561069657600080fd5b506106b160048036038101906106ac9190612d67565b611ac7565b6040516106be9190613317565b60405180910390f35b3480156106d357600080fd5b506106dc611b70565b6040516106e99190613474565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190612a8a565b611b76565b60405161072691906132fc565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190612a5d565b611c0a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107f99061379d565b80601f01602080910402602001604051908101604052809291908181526020018280546108259061379d565b80156108725780601f1061084757610100808354040283529160200191610872565b820191906000526020600020905b81548152906001019060200180831161085557829003601f168201915b5050505050905090565b600061088782611c8e565b6108bd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090682610f52565b90508073ffffffffffffffffffffffffffffffffffffffff16610927611ced565b73ffffffffffffffffffffffffffffffffffffffff161461098a576109538161094e611ced565b611b76565b610989576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a49611cf5565b6001546000540303905090565b6000610a6182611cfa565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ac8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ad484611dc8565b91509150610aea8187610ae5611ced565b611def565b610b3657610aff86610afa611ced565b611b76565b610b35576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b9d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610baa8686866001611e33565b8015610bb557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8385610c5f888887611e39565b7c020000000000000000000000000000000000000000000000000000000017611e61565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d0b576000600185019050600060046000838152602001908152602001600020541415610d09576000548114610d08578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d738686866001611e8c565b505050505050565b610d83611e92565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b610db7611e92565b60004711610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df1906133f9565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e40573d6000803e3d6000fd5b50565b610e5e838383604051806020016040528060008152506119ea565b505050565b610e6e816001611f10565b50565b610e79611e92565b818160099190610e8a9291906127e6565b505050565b6060600083839050905060008167ffffffffffffffff811115610eb557610eb4613936565b5b604051908082528060200260200182016040528015610eee57816020015b610edb61286c565b815260200190600190039081610ed35790505b50905060005b828114610f4657610f1d868683818110610f1157610f10613907565b5b90506020020135611a5d565b828281518110610f3057610f2f613907565b5b6020026020010181905250806001019050610ef4565b50809250505092915050565b6000610f5d82611cfa565b9050919050565b60098054610f719061379d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9d9061379d565b8015610fea5780601f10610fbf57610100808354040283529160200191610fea565b820191906000526020600020905b815481529060010190602001808311610fcd57829003601f168201915b505050505081565b610ffa611e92565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110c5611e92565b6110cf6000612164565b565b606060008060006110e185611004565b905060008167ffffffffffffffff8111156110ff576110fe613936565b5b60405190808252806020026020018201604052801561112d5781602001602082028036833780820191505090505b50905061113861286c565b6000611142611cf5565b90505b83861461120d576111558161222a565b915081604001511561116657611202565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146111a657816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561120157808387806001019850815181106111f4576111f3613907565b5b6020026020010181815250505b5b806001019050611145565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61124d611e92565b80600c8190555050565b6060600380546112669061379d565b80601f01602080910402602001604051908101604052809291908181526020018280546112929061379d565b80156112df5780601f106112b4576101008083540402835291602001916112df565b820191906000526020600020905b8154815290600101906020018083116112c257829003601f168201915b5050505050905090565b6060818310611324576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061132f612255565b9050611339611cf5565b85101561134b57611348611cf5565b94505b80841115611357578093505b600061136287611004565b90508486101561138557600086860390508181101561137f578091505b5061138a565b600090505b60008167ffffffffffffffff8111156113a6576113a5613936565b5b6040519080825280602002602001820160405280156113d45781602001602082028036833780820191505090505b50905060008214156113ec57809450505050506114f6565b60006113f788611a5d565b90506000816040015161140c57816000015190505b60008990505b8881141580156114225750848714155b156114e8576114308161222a565b9250826040015115611441576114dd565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461148157826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114dc57808488806001019950815181106114cf576114ce613907565b5b6020026020010181815250505b5b806001019050611412565b508583528296505050505050505b9392505050565b6115063361225e565b15611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d906133d9565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab90613339565b60405180910390fd5b600a54816115c0610a3f565b6115ca91906135af565b111561160b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611602906133b9565b60405180910390fd5b600b60009054906101000a900460ff1661165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190613419565b60405180910390fd5b600c54816116689190613636565b3410156116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190613439565b60405180910390fd5b6116b48282612271565b5050565b6116c0611ced565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611725576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611732611ced565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117df611ced565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161182491906132fc565b60405180910390a35050565b6118393361225e565b15611879576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611870906133d9565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613339565b60405180910390fd5b600a54816118f3610a3f565b6118fd91906135af565b111561193e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611935906133b9565b60405180910390fd5b600b60009054906101000a900460ff1661198d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198490613419565b60405180910390fd5b600c548161199b9190613636565b3410156119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d490613439565b60405180910390fd5b6119e73382612271565b50565b6119f5848484610a56565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a5757611a208484848461242e565b611a56576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a6561286c565b611a6d61286c565b611a75611cf5565b831080611a895750611a85612255565b8310155b15611a975780915050611ac2565b611aa08361222a565b9050806040015115611ab55780915050611ac2565b611abe8361258e565b9150505b919050565b6060611ad282611c8e565b611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0890613379565b60405180910390fd5b600060098054611b209061379d565b90501415611b3d5760405180602001604052806000815250611b69565b6009611b48836125ae565b604051602001611b59929190613222565b6040516020818303038152906040525b9050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c12611e92565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7990613359565b60405180910390fd5b611c8b81612164565b50565b600081611c99611cf5565b11158015611ca8575060005482105b8015611ce6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611d09611cf5565b11611d9157600054811015611d905760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d8e575b6000811415611d84576004600083600190039350838152602001908152602001600020549050611d59565b8092505050611dc3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e5086868461270f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611e9a612718565b73ffffffffffffffffffffffffffffffffffffffff16611eb861121b565b73ffffffffffffffffffffffffffffffffffffffff1614611f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0590613399565b60405180910390fd5b565b6000611f1b83611cfa565b90506000819050600080611f2e86611dc8565b915091508415611f9757611f4a8184611f45611ced565b611def565b611f9657611f5f83611f5a611ced565b611b76565b611f95576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611fa5836000886001611e33565b8015611fb057600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120588361201585600088611e39565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611e61565b600460008881526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000851614156120e05760006001870190506000600460008381526020019081526020016000205414156120de5760005481146120dd578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461214a836000886001611e8c565b600160008154809291906001019190505550505050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61223261286c565b61224e6004600084815260200190815260200160002054612720565b9050919050565b60008054905090565b600080823b905060008111915050919050565b60008054905060008214156122b2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122bf6000848385611e33565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612336836123276000866000611e39565b612330856127d6565b17611e61565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123d757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061239c565b506000821415612413576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124296000848385611e8c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612454611ced565b8786866040518563ffffffff1660e01b8152600401612476949392919061326c565b602060405180830381600087803b15801561249057600080fd5b505af19250505080156124c157506040513d601f19601f820116820180604052508101906124be9190612ced565b60015b61253b573d80600081146124f1576040519150601f19603f3d011682016040523d82523d6000602084013e6124f6565b606091505b50600081511415612533576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61259661286c565b6125a76125a283611cfa565b612720565b9050919050565b606060008214156125f6576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061270a565b600082905060005b6000821461262857808061261190613800565b915050600a826126219190613605565b91506125fe565b60008167ffffffffffffffff81111561264457612643613936565b5b6040519080825280601f01601f1916602001820160405280156126765781602001600182028036833780820191505090505b5090505b600085146127035760018261268f9190613690565b9150600a8561269e9190613849565b60306126aa91906135af565b60f81b8183815181106126c0576126bf613907565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126fc9190613605565b945061267a565b8093505050505b919050565b60009392505050565b600033905090565b61272861286c565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60006001821460e11b9050919050565b8280546127f29061379d565b90600052602060002090601f016020900481019282612814576000855561285b565b82601f1061282d57803560ff191683800117855561285b565b8280016001018555821561285b579182015b8281111561285a57823582559160200191906001019061283f565b5b50905061286891906128bb565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b808211156128d45760008160009055506001016128bc565b5090565b60006128eb6128e6846134b4565b61348f565b90508281526020810184848401111561290757612906613974565b5b61291284828561375b565b509392505050565b60008135905061292981613b54565b92915050565b60008083601f8401126129455761294461396a565b5b8235905067ffffffffffffffff81111561296257612961613965565b5b60208301915083602082028301111561297e5761297d61396f565b5b9250929050565b60008135905061299481613b6b565b92915050565b6000813590506129a981613b82565b92915050565b6000815190506129be81613b82565b92915050565b600082601f8301126129d9576129d861396a565b5b81356129e98482602086016128d8565b91505092915050565b60008083601f840112612a0857612a0761396a565b5b8235905067ffffffffffffffff811115612a2557612a24613965565b5b602083019150836001820283011115612a4157612a4061396f565b5b9250929050565b600081359050612a5781613b99565b92915050565b600060208284031215612a7357612a7261397e565b5b6000612a818482850161291a565b91505092915050565b60008060408385031215612aa157612aa061397e565b5b6000612aaf8582860161291a565b9250506020612ac08582860161291a565b9150509250929050565b600080600060608486031215612ae357612ae261397e565b5b6000612af18682870161291a565b9350506020612b028682870161291a565b9250506040612b1386828701612a48565b9150509250925092565b60008060008060808587031215612b3757612b3661397e565b5b6000612b458782880161291a565b9450506020612b568782880161291a565b9350506040612b6787828801612a48565b925050606085013567ffffffffffffffff811115612b8857612b87613979565b5b612b94878288016129c4565b91505092959194509250565b60008060408385031215612bb757612bb661397e565b5b6000612bc58582860161291a565b9250506020612bd685828601612985565b9150509250929050565b60008060408385031215612bf757612bf661397e565b5b6000612c058582860161291a565b9250506020612c1685828601612a48565b9150509250929050565b600080600060608486031215612c3957612c3861397e565b5b6000612c478682870161291a565b9350506020612c5886828701612a48565b9250506040612c6986828701612a48565b9150509250925092565b60008060208385031215612c8a57612c8961397e565b5b600083013567ffffffffffffffff811115612ca857612ca7613979565b5b612cb48582860161292f565b92509250509250929050565b600060208284031215612cd657612cd561397e565b5b6000612ce48482850161299a565b91505092915050565b600060208284031215612d0357612d0261397e565b5b6000612d11848285016129af565b91505092915050565b60008060208385031215612d3157612d3061397e565b5b600083013567ffffffffffffffff811115612d4f57612d4e613979565b5b612d5b858286016129f2565b92509250509250929050565b600060208284031215612d7d57612d7c61397e565b5b6000612d8b84828501612a48565b91505092915050565b6000612da0838361313c565b60808301905092915050565b6000612db883836131f5565b60208301905092915050565b612dcd816136c4565b82525050565b612ddc816136c4565b82525050565b6000612ded8261351a565b612df78185613560565b9350612e02836134e5565b8060005b83811015612e33578151612e1a8882612d94565b9750612e2583613546565b925050600181019050612e06565b5085935050505092915050565b6000612e4b82613525565b612e558185613571565b9350612e60836134f5565b8060005b83811015612e91578151612e788882612dac565b9750612e8383613553565b925050600181019050612e64565b5085935050505092915050565b612ea7816136d6565b82525050565b612eb6816136d6565b82525050565b6000612ec782613530565b612ed18185613582565b9350612ee181856020860161376a565b612eea81613983565b840191505092915050565b6000612f008261353b565b612f0a8185613593565b9350612f1a81856020860161376a565b612f2381613983565b840191505092915050565b6000612f398261353b565b612f4381856135a4565b9350612f5381856020860161376a565b80840191505092915050565b60008154612f6c8161379d565b612f7681866135a4565b94506001821660008114612f915760018114612fa257612fd5565b60ff19831686528186019350612fd5565b612fab85613505565b60005b83811015612fcd57815481890152600182019150602081019050612fae565b838801955050505b50505092915050565b6000612feb601a83613593565b9150612ff682613994565b602082019050919050565b600061300e602683613593565b9150613019826139bd565b604082019050919050565b6000613031601583613593565b915061303c82613a0c565b602082019050919050565b60006130546005836135a4565b915061305f82613a35565b600582019050919050565b6000613077602083613593565b915061308282613a5e565b602082019050919050565b600061309a601183613593565b91506130a582613a87565b602082019050919050565b60006130bd601483613593565b91506130c882613ab0565b602082019050919050565b60006130e0601483613593565b91506130eb82613ad9565b602082019050919050565b6000613103601583613593565b915061310e82613b02565b602082019050919050565b6000613126601083613593565b915061313182613b2b565b602082019050919050565b6080820160008201516131526000850182612dc4565b5060208201516131656020850182613213565b5060408201516131786040850182612e9e565b50606082015161318b60608501826131e6565b50505050565b6080820160008201516131a76000850182612dc4565b5060208201516131ba6020850182613213565b5060408201516131cd6040850182612e9e565b5060608201516131e060608501826131e6565b50505050565b6131ef8161372e565b82525050565b6131fe8161373d565b82525050565b61320d8161373d565b82525050565b61321c81613747565b82525050565b600061322e8285612f5f565b915061323a8284612f2e565b915061324582613047565b91508190509392505050565b60006020820190506132666000830184612dd3565b92915050565b60006080820190506132816000830187612dd3565b61328e6020830186612dd3565b61329b6040830185613204565b81810360608301526132ad8184612ebc565b905095945050505050565b600060208201905081810360008301526132d28184612de2565b905092915050565b600060208201905081810360008301526132f48184612e40565b905092915050565b60006020820190506133116000830184612ead565b92915050565b600060208201905081810360008301526133318184612ef5565b905092915050565b6000602082019050818103600083015261335281612fde565b9050919050565b6000602082019050818103600083015261337281613001565b9050919050565b6000602082019050818103600083015261339281613024565b9050919050565b600060208201905081810360008301526133b28161306a565b9050919050565b600060208201905081810360008301526133d28161308d565b9050919050565b600060208201905081810360008301526133f2816130b0565b9050919050565b60006020820190508181036000830152613412816130d3565b9050919050565b60006020820190508181036000830152613432816130f6565b9050919050565b6000602082019050818103600083015261345281613119565b9050919050565b600060808201905061346e6000830184613191565b92915050565b60006020820190506134896000830184613204565b92915050565b60006134996134aa565b90506134a582826137cf565b919050565b6000604051905090565b600067ffffffffffffffff8211156134cf576134ce613936565b5b6134d882613983565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135ba8261373d565b91506135c58361373d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135fa576135f961387a565b5b828201905092915050565b60006136108261373d565b915061361b8361373d565b92508261362b5761362a6138a9565b5b828204905092915050565b60006136418261373d565b915061364c8361373d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136855761368461387a565b5b828202905092915050565b600061369b8261373d565b91506136a68361373d565b9250828210156136b9576136b861387a565b5b828203905092915050565b60006136cf8261370e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561378857808201518184015260208101905061376d565b83811115613797576000848401525b50505050565b600060028204905060018216806137b557607f821691505b602082108114156137c9576137c86138d8565b5b50919050565b6137d882613983565b810181811067ffffffffffffffff821117156137f7576137f6613936565b5b80604052505050565b600061380b8261373d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561383e5761383d61387a565b5b600182019050919050565b60006138548261373d565b915061385f8361373d565b92508261386f5761386e6138a9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f70726f787920636f6e7472616374206e6f7420616c6c6f776564000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6f7574206f66206d617820737570706c79000000000000000000000000000000600082015250565b7f636f6e7472616374206e6f7420616c6c6f776564000000000000000000000000600082015250565b7f696e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b7f6e6f7420616c6c6f7720746f206d696e74206e6f770000000000000000000000600082015250565b7f6e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b613b5d816136c4565b8114613b6857600080fd5b50565b613b74816136d6565b8114613b7f57600080fd5b50565b613b8b816136e2565b8114613b9657600080fd5b50565b613ba28161373d565b8114613bad57600080fd5b5056fea26469706673582212207a746446177cf42a0bfd7160edf9ea4593109b468109442ddaf6ddd48f67cbe664736f6c63430008070033697066733a2f2f516d5833566461354461585a54456d62617250706a64513342794d71316a647571425167654e71756572677135412f
Deployed Bytecode
0x6080604052600436106101d85760003560e01c806370a0823111610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd1461068a578063d5abeb01146106c7578063e985e9c5146106f2578063f2fde38b1461072f576101d8565b8063a22cb465146105df578063a994a23b14610608578063b88d4fde14610624578063c23dc68f1461064d576101d8565b806391b7f5ed116100d157806391b7f5ed1461053257806395d89b411461055b57806399a2557a1461058657806399a5ca99146105c3576101d8565b806370a0823114610476578063715018a6146104b35780638462151c146104ca5780638da5cb5b14610507576101d8565b80633ccfd60b1161017a5780635bbb2177116101495780635bbb2177146103a85780636352211e146103e55780636c0360eb146104225780636f8b44b01461044d576101d8565b80633ccfd60b1461031657806342842e0e1461032d57806342966c681461035657806355f804b31461037f576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780633c1e6328146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612cc0565b610758565b60405161021191906132fc565b60405180910390f35b34801561022657600080fd5b5061022f6107ea565b60405161023c9190613317565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612d67565b61087c565b6040516102799190613251565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612be0565b6108fb565b005b3480156102b757600080fd5b506102c0610a3f565b6040516102cd9190613474565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612aca565b610a56565b005b34801561030b57600080fd5b50610314610d7b565b005b34801561032257600080fd5b5061032b610daf565b005b34801561033957600080fd5b50610354600480360381019061034f9190612aca565b610e43565b005b34801561036257600080fd5b5061037d60048036038101906103789190612d67565b610e63565b005b34801561038b57600080fd5b506103a660048036038101906103a19190612d1a565b610e71565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190612c73565b610e8f565b6040516103dc91906132b8565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190612d67565b610f52565b6040516104199190613251565b60405180910390f35b34801561042e57600080fd5b50610437610f64565b6040516104449190613317565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f9190612d67565b610ff2565b005b34801561048257600080fd5b5061049d60048036038101906104989190612a5d565b611004565b6040516104aa9190613474565b60405180910390f35b3480156104bf57600080fd5b506104c86110bd565b005b3480156104d657600080fd5b506104f160048036038101906104ec9190612a5d565b6110d1565b6040516104fe91906132da565b60405180910390f35b34801561051357600080fd5b5061051c61121b565b6040516105299190613251565b60405180910390f35b34801561053e57600080fd5b5061055960048036038101906105549190612d67565b611245565b005b34801561056757600080fd5b50610570611257565b60405161057d9190613317565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190612c20565b6112e9565b6040516105ba91906132da565b60405180910390f35b6105dd60048036038101906105d89190612be0565b6114fd565b005b3480156105eb57600080fd5b5061060660048036038101906106019190612ba0565b6116b8565b005b610622600480360381019061061d9190612d67565b611830565b005b34801561063057600080fd5b5061064b60048036038101906106469190612b1d565b6119ea565b005b34801561065957600080fd5b50610674600480360381019061066f9190612d67565b611a5d565b6040516106819190613459565b60405180910390f35b34801561069657600080fd5b506106b160048036038101906106ac9190612d67565b611ac7565b6040516106be9190613317565b60405180910390f35b3480156106d357600080fd5b506106dc611b70565b6040516106e99190613474565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190612a8a565b611b76565b60405161072691906132fc565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190612a5d565b611c0a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107f99061379d565b80601f01602080910402602001604051908101604052809291908181526020018280546108259061379d565b80156108725780601f1061084757610100808354040283529160200191610872565b820191906000526020600020905b81548152906001019060200180831161085557829003601f168201915b5050505050905090565b600061088782611c8e565b6108bd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090682610f52565b90508073ffffffffffffffffffffffffffffffffffffffff16610927611ced565b73ffffffffffffffffffffffffffffffffffffffff161461098a576109538161094e611ced565b611b76565b610989576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a49611cf5565b6001546000540303905090565b6000610a6182611cfa565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ac8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ad484611dc8565b91509150610aea8187610ae5611ced565b611def565b610b3657610aff86610afa611ced565b611b76565b610b35576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b9d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610baa8686866001611e33565b8015610bb557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8385610c5f888887611e39565b7c020000000000000000000000000000000000000000000000000000000017611e61565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d0b576000600185019050600060046000838152602001908152602001600020541415610d09576000548114610d08578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d738686866001611e8c565b505050505050565b610d83611e92565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b610db7611e92565b60004711610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df1906133f9565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e40573d6000803e3d6000fd5b50565b610e5e838383604051806020016040528060008152506119ea565b505050565b610e6e816001611f10565b50565b610e79611e92565b818160099190610e8a9291906127e6565b505050565b6060600083839050905060008167ffffffffffffffff811115610eb557610eb4613936565b5b604051908082528060200260200182016040528015610eee57816020015b610edb61286c565b815260200190600190039081610ed35790505b50905060005b828114610f4657610f1d868683818110610f1157610f10613907565b5b90506020020135611a5d565b828281518110610f3057610f2f613907565b5b6020026020010181905250806001019050610ef4565b50809250505092915050565b6000610f5d82611cfa565b9050919050565b60098054610f719061379d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9d9061379d565b8015610fea5780601f10610fbf57610100808354040283529160200191610fea565b820191906000526020600020905b815481529060010190602001808311610fcd57829003601f168201915b505050505081565b610ffa611e92565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110c5611e92565b6110cf6000612164565b565b606060008060006110e185611004565b905060008167ffffffffffffffff8111156110ff576110fe613936565b5b60405190808252806020026020018201604052801561112d5781602001602082028036833780820191505090505b50905061113861286c565b6000611142611cf5565b90505b83861461120d576111558161222a565b915081604001511561116657611202565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146111a657816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561120157808387806001019850815181106111f4576111f3613907565b5b6020026020010181815250505b5b806001019050611145565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61124d611e92565b80600c8190555050565b6060600380546112669061379d565b80601f01602080910402602001604051908101604052809291908181526020018280546112929061379d565b80156112df5780601f106112b4576101008083540402835291602001916112df565b820191906000526020600020905b8154815290600101906020018083116112c257829003601f168201915b5050505050905090565b6060818310611324576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061132f612255565b9050611339611cf5565b85101561134b57611348611cf5565b94505b80841115611357578093505b600061136287611004565b90508486101561138557600086860390508181101561137f578091505b5061138a565b600090505b60008167ffffffffffffffff8111156113a6576113a5613936565b5b6040519080825280602002602001820160405280156113d45781602001602082028036833780820191505090505b50905060008214156113ec57809450505050506114f6565b60006113f788611a5d565b90506000816040015161140c57816000015190505b60008990505b8881141580156114225750848714155b156114e8576114308161222a565b9250826040015115611441576114dd565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461148157826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114dc57808488806001019950815181106114cf576114ce613907565b5b6020026020010181815250505b5b806001019050611412565b508583528296505050505050505b9392505050565b6115063361225e565b15611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d906133d9565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab90613339565b60405180910390fd5b600a54816115c0610a3f565b6115ca91906135af565b111561160b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611602906133b9565b60405180910390fd5b600b60009054906101000a900460ff1661165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190613419565b60405180910390fd5b600c54816116689190613636565b3410156116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190613439565b60405180910390fd5b6116b48282612271565b5050565b6116c0611ced565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611725576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611732611ced565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117df611ced565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161182491906132fc565b60405180910390a35050565b6118393361225e565b15611879576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611870906133d9565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613339565b60405180910390fd5b600a54816118f3610a3f565b6118fd91906135af565b111561193e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611935906133b9565b60405180910390fd5b600b60009054906101000a900460ff1661198d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198490613419565b60405180910390fd5b600c548161199b9190613636565b3410156119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d490613439565b60405180910390fd5b6119e73382612271565b50565b6119f5848484610a56565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a5757611a208484848461242e565b611a56576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a6561286c565b611a6d61286c565b611a75611cf5565b831080611a895750611a85612255565b8310155b15611a975780915050611ac2565b611aa08361222a565b9050806040015115611ab55780915050611ac2565b611abe8361258e565b9150505b919050565b6060611ad282611c8e565b611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0890613379565b60405180910390fd5b600060098054611b209061379d565b90501415611b3d5760405180602001604052806000815250611b69565b6009611b48836125ae565b604051602001611b59929190613222565b6040516020818303038152906040525b9050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c12611e92565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7990613359565b60405180910390fd5b611c8b81612164565b50565b600081611c99611cf5565b11158015611ca8575060005482105b8015611ce6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611d09611cf5565b11611d9157600054811015611d905760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d8e575b6000811415611d84576004600083600190039350838152602001908152602001600020549050611d59565b8092505050611dc3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e5086868461270f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611e9a612718565b73ffffffffffffffffffffffffffffffffffffffff16611eb861121b565b73ffffffffffffffffffffffffffffffffffffffff1614611f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0590613399565b60405180910390fd5b565b6000611f1b83611cfa565b90506000819050600080611f2e86611dc8565b915091508415611f9757611f4a8184611f45611ced565b611def565b611f9657611f5f83611f5a611ced565b611b76565b611f95576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611fa5836000886001611e33565b8015611fb057600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120588361201585600088611e39565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611e61565b600460008881526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000851614156120e05760006001870190506000600460008381526020019081526020016000205414156120de5760005481146120dd578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461214a836000886001611e8c565b600160008154809291906001019190505550505050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61223261286c565b61224e6004600084815260200190815260200160002054612720565b9050919050565b60008054905090565b600080823b905060008111915050919050565b60008054905060008214156122b2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122bf6000848385611e33565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612336836123276000866000611e39565b612330856127d6565b17611e61565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123d757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061239c565b506000821415612413576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124296000848385611e8c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612454611ced565b8786866040518563ffffffff1660e01b8152600401612476949392919061326c565b602060405180830381600087803b15801561249057600080fd5b505af19250505080156124c157506040513d601f19601f820116820180604052508101906124be9190612ced565b60015b61253b573d80600081146124f1576040519150601f19603f3d011682016040523d82523d6000602084013e6124f6565b606091505b50600081511415612533576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61259661286c565b6125a76125a283611cfa565b612720565b9050919050565b606060008214156125f6576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061270a565b600082905060005b6000821461262857808061261190613800565b915050600a826126219190613605565b91506125fe565b60008167ffffffffffffffff81111561264457612643613936565b5b6040519080825280601f01601f1916602001820160405280156126765781602001600182028036833780820191505090505b5090505b600085146127035760018261268f9190613690565b9150600a8561269e9190613849565b60306126aa91906135af565b60f81b8183815181106126c0576126bf613907565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126fc9190613605565b945061267a565b8093505050505b919050565b60009392505050565b600033905090565b61272861286c565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60006001821460e11b9050919050565b8280546127f29061379d565b90600052602060002090601f016020900481019282612814576000855561285b565b82601f1061282d57803560ff191683800117855561285b565b8280016001018555821561285b579182015b8281111561285a57823582559160200191906001019061283f565b5b50905061286891906128bb565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b808211156128d45760008160009055506001016128bc565b5090565b60006128eb6128e6846134b4565b61348f565b90508281526020810184848401111561290757612906613974565b5b61291284828561375b565b509392505050565b60008135905061292981613b54565b92915050565b60008083601f8401126129455761294461396a565b5b8235905067ffffffffffffffff81111561296257612961613965565b5b60208301915083602082028301111561297e5761297d61396f565b5b9250929050565b60008135905061299481613b6b565b92915050565b6000813590506129a981613b82565b92915050565b6000815190506129be81613b82565b92915050565b600082601f8301126129d9576129d861396a565b5b81356129e98482602086016128d8565b91505092915050565b60008083601f840112612a0857612a0761396a565b5b8235905067ffffffffffffffff811115612a2557612a24613965565b5b602083019150836001820283011115612a4157612a4061396f565b5b9250929050565b600081359050612a5781613b99565b92915050565b600060208284031215612a7357612a7261397e565b5b6000612a818482850161291a565b91505092915050565b60008060408385031215612aa157612aa061397e565b5b6000612aaf8582860161291a565b9250506020612ac08582860161291a565b9150509250929050565b600080600060608486031215612ae357612ae261397e565b5b6000612af18682870161291a565b9350506020612b028682870161291a565b9250506040612b1386828701612a48565b9150509250925092565b60008060008060808587031215612b3757612b3661397e565b5b6000612b458782880161291a565b9450506020612b568782880161291a565b9350506040612b6787828801612a48565b925050606085013567ffffffffffffffff811115612b8857612b87613979565b5b612b94878288016129c4565b91505092959194509250565b60008060408385031215612bb757612bb661397e565b5b6000612bc58582860161291a565b9250506020612bd685828601612985565b9150509250929050565b60008060408385031215612bf757612bf661397e565b5b6000612c058582860161291a565b9250506020612c1685828601612a48565b9150509250929050565b600080600060608486031215612c3957612c3861397e565b5b6000612c478682870161291a565b9350506020612c5886828701612a48565b9250506040612c6986828701612a48565b9150509250925092565b60008060208385031215612c8a57612c8961397e565b5b600083013567ffffffffffffffff811115612ca857612ca7613979565b5b612cb48582860161292f565b92509250509250929050565b600060208284031215612cd657612cd561397e565b5b6000612ce48482850161299a565b91505092915050565b600060208284031215612d0357612d0261397e565b5b6000612d11848285016129af565b91505092915050565b60008060208385031215612d3157612d3061397e565b5b600083013567ffffffffffffffff811115612d4f57612d4e613979565b5b612d5b858286016129f2565b92509250509250929050565b600060208284031215612d7d57612d7c61397e565b5b6000612d8b84828501612a48565b91505092915050565b6000612da0838361313c565b60808301905092915050565b6000612db883836131f5565b60208301905092915050565b612dcd816136c4565b82525050565b612ddc816136c4565b82525050565b6000612ded8261351a565b612df78185613560565b9350612e02836134e5565b8060005b83811015612e33578151612e1a8882612d94565b9750612e2583613546565b925050600181019050612e06565b5085935050505092915050565b6000612e4b82613525565b612e558185613571565b9350612e60836134f5565b8060005b83811015612e91578151612e788882612dac565b9750612e8383613553565b925050600181019050612e64565b5085935050505092915050565b612ea7816136d6565b82525050565b612eb6816136d6565b82525050565b6000612ec782613530565b612ed18185613582565b9350612ee181856020860161376a565b612eea81613983565b840191505092915050565b6000612f008261353b565b612f0a8185613593565b9350612f1a81856020860161376a565b612f2381613983565b840191505092915050565b6000612f398261353b565b612f4381856135a4565b9350612f5381856020860161376a565b80840191505092915050565b60008154612f6c8161379d565b612f7681866135a4565b94506001821660008114612f915760018114612fa257612fd5565b60ff19831686528186019350612fd5565b612fab85613505565b60005b83811015612fcd57815481890152600182019150602081019050612fae565b838801955050505b50505092915050565b6000612feb601a83613593565b9150612ff682613994565b602082019050919050565b600061300e602683613593565b9150613019826139bd565b604082019050919050565b6000613031601583613593565b915061303c82613a0c565b602082019050919050565b60006130546005836135a4565b915061305f82613a35565b600582019050919050565b6000613077602083613593565b915061308282613a5e565b602082019050919050565b600061309a601183613593565b91506130a582613a87565b602082019050919050565b60006130bd601483613593565b91506130c882613ab0565b602082019050919050565b60006130e0601483613593565b91506130eb82613ad9565b602082019050919050565b6000613103601583613593565b915061310e82613b02565b602082019050919050565b6000613126601083613593565b915061313182613b2b565b602082019050919050565b6080820160008201516131526000850182612dc4565b5060208201516131656020850182613213565b5060408201516131786040850182612e9e565b50606082015161318b60608501826131e6565b50505050565b6080820160008201516131a76000850182612dc4565b5060208201516131ba6020850182613213565b5060408201516131cd6040850182612e9e565b5060608201516131e060608501826131e6565b50505050565b6131ef8161372e565b82525050565b6131fe8161373d565b82525050565b61320d8161373d565b82525050565b61321c81613747565b82525050565b600061322e8285612f5f565b915061323a8284612f2e565b915061324582613047565b91508190509392505050565b60006020820190506132666000830184612dd3565b92915050565b60006080820190506132816000830187612dd3565b61328e6020830186612dd3565b61329b6040830185613204565b81810360608301526132ad8184612ebc565b905095945050505050565b600060208201905081810360008301526132d28184612de2565b905092915050565b600060208201905081810360008301526132f48184612e40565b905092915050565b60006020820190506133116000830184612ead565b92915050565b600060208201905081810360008301526133318184612ef5565b905092915050565b6000602082019050818103600083015261335281612fde565b9050919050565b6000602082019050818103600083015261337281613001565b9050919050565b6000602082019050818103600083015261339281613024565b9050919050565b600060208201905081810360008301526133b28161306a565b9050919050565b600060208201905081810360008301526133d28161308d565b9050919050565b600060208201905081810360008301526133f2816130b0565b9050919050565b60006020820190508181036000830152613412816130d3565b9050919050565b60006020820190508181036000830152613432816130f6565b9050919050565b6000602082019050818103600083015261345281613119565b9050919050565b600060808201905061346e6000830184613191565b92915050565b60006020820190506134896000830184613204565b92915050565b60006134996134aa565b90506134a582826137cf565b919050565b6000604051905090565b600067ffffffffffffffff8211156134cf576134ce613936565b5b6134d882613983565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135ba8261373d565b91506135c58361373d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135fa576135f961387a565b5b828201905092915050565b60006136108261373d565b915061361b8361373d565b92508261362b5761362a6138a9565b5b828204905092915050565b60006136418261373d565b915061364c8361373d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136855761368461387a565b5b828202905092915050565b600061369b8261373d565b91506136a68361373d565b9250828210156136b9576136b861387a565b5b828203905092915050565b60006136cf8261370e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561378857808201518184015260208101905061376d565b83811115613797576000848401525b50505050565b600060028204905060018216806137b557607f821691505b602082108114156137c9576137c86138d8565b5b50919050565b6137d882613983565b810181811067ffffffffffffffff821117156137f7576137f6613936565b5b80604052505050565b600061380b8261373d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561383e5761383d61387a565b5b600182019050919050565b60006138548261373d565b915061385f8361373d565b92508261386f5761386e6138a9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f70726f787920636f6e7472616374206e6f7420616c6c6f776564000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6f7574206f66206d617820737570706c79000000000000000000000000000000600082015250565b7f636f6e7472616374206e6f7420616c6c6f776564000000000000000000000000600082015250565b7f696e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b7f6e6f7420616c6c6f7720746f206d696e74206e6f770000000000000000000000600082015250565b7f6e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b613b5d816136c4565b8114613b6857600080fd5b50565b613b74816136d6565b8114613b7f57600080fd5b50565b613b8b816136e2565b8114613b9657600080fd5b50565b613ba28161373d565b8114613bad57600080fd5b5056fea26469706673582212207a746446177cf42a0bfd7160edf9ea4593109b468109442ddaf6ddd48f67cbe664736f6c63430008070033
Deployed Bytecode Sourcemap
87997:2603:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43280:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44182:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50665:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50106:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39933:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54372:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90236:85;;;;;;;;;;;;;:::i;:::-;;89722:180;;;;;;;;;;;;;:::i;:::-;;57285:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82626:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90122:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77339:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45575:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88078:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90008:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41117:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21039:103;;;;;;;;;;;;;:::i;:::-;;81215:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20391:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89910:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44358:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78255:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88988:365;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51223:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88642:338;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58068:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76752:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89363:296;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88106:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51688:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21297:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43280:639;43365:4;43704:10;43689:25;;:11;:25;;;;:102;;;;43781:10;43766:25;;:11;:25;;;;43689:102;:179;;;;43858:10;43843:25;;:11;:25;;;;43689:179;43669:199;;43280:639;;;:::o;44182:100::-;44236:13;44269:5;44262:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44182:100;:::o;50665:218::-;50741:7;50766:16;50774:7;50766;:16::i;:::-;50761:64;;50791:34;;;;;;;;;;;;;;50761:64;50845:15;:24;50861:7;50845:24;;;;;;;;;;;:30;;;;;;;;;;;;50838:37;;50665:218;;;:::o;50106:400::-;50187:13;50203:16;50211:7;50203;:16::i;:::-;50187:32;;50259:5;50236:28;;:19;:17;:19::i;:::-;:28;;;50232:175;;50284:44;50301:5;50308:19;:17;:19::i;:::-;50284:16;:44::i;:::-;50279:128;;50356:35;;;;;;;;;;;;;;50279:128;50232:175;50452:2;50419:15;:24;50435:7;50419:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;50490:7;50486:2;50470:28;;50479:5;50470:28;;;;;;;;;;;;50176:330;50106:400;;:::o;39933:323::-;39994:7;40222:15;:13;:15::i;:::-;40207:12;;40191:13;;:28;:46;40184:53;;39933:323;:::o;54372:2817::-;54506:27;54536;54555:7;54536:18;:27::i;:::-;54506:57;;54621:4;54580:45;;54596:19;54580:45;;;54576:86;;54634:28;;;;;;;;;;;;;;54576:86;54676:27;54705:23;54732:35;54759:7;54732:26;:35::i;:::-;54675:92;;;;54867:68;54892:15;54909:4;54915:19;:17;:19::i;:::-;54867:24;:68::i;:::-;54862:180;;54955:43;54972:4;54978:19;:17;:19::i;:::-;54955:16;:43::i;:::-;54950:92;;55007:35;;;;;;;;;;;;;;54950:92;54862:180;55073:1;55059:16;;:2;:16;;;55055:52;;;55084:23;;;;;;;;;;;;;;55055:52;55120:43;55142:4;55148:2;55152:7;55161:1;55120:21;:43::i;:::-;55256:15;55253:160;;;55396:1;55375:19;55368:30;55253:160;55793:18;:24;55812:4;55793:24;;;;;;;;;;;;;;;;55791:26;;;;;;;;;;;;55862:18;:22;55881:2;55862:22;;;;;;;;;;;;;;;;55860:24;;;;;;;;;;;56184:146;56221:2;56270:45;56285:4;56291:2;56295:19;56270:14;:45::i;:::-;36332:8;56242:73;56184:18;:146::i;:::-;56155:17;:26;56173:7;56155:26;;;;;;;;;;;:175;;;;56501:1;36332:8;56450:19;:47;:52;56446:627;;;56523:19;56555:1;56545:7;:11;56523:33;;56712:1;56678:17;:30;56696:11;56678:30;;;;;;;;;;;;:35;56674:384;;;56816:13;;56801:11;:28;56797:242;;56996:19;56963:17;:30;56981:11;56963:30;;;;;;;;;;;:52;;;;56797:242;56674:384;56504:569;56446:627;57120:7;57116:2;57101:27;;57110:4;57101:27;;;;;;;;;;;;57139:42;57160:4;57166:2;57170:7;57179:1;57139:20;:42::i;:::-;54495:2694;;;54372:2817;;;:::o;90236:85::-;20277:13;:11;:13::i;:::-;90304:9:::1;;;;;;;;;;;90303:10;90291:9;;:22;;;;;;;;;;;;;;;;;;90236:85::o:0;89722:180::-;20277:13;:11;:13::i;:::-;89804:1:::1;89780:21;:25;89772:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;89851:10;89843:28;;:51;89872:21;89843:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;89722:180::o:0;57285:185::-;57423:39;57440:4;57446:2;57450:7;57423:39;;;;;;;;;;;;:16;:39::i;:::-;57285:185;;;:::o;82626:94::-;82692:20;82698:7;82707:4;82692:5;:20::i;:::-;82626:94;:::o;90122:106::-;20277:13;:11;:13::i;:::-;90210:10:::1;;90200:7;:20;;;;;;;:::i;:::-;;90122:106:::0;;:::o;77339:528::-;77483:23;77549:22;77574:8;;:15;;77549:40;;77604:34;77662:14;77641:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;77604:73;;77697:9;77692:125;77713:14;77708:1;:19;77692:125;;77769:32;77789:8;;77798:1;77789:11;;;;;;;:::i;:::-;;;;;;;;77769:19;:32::i;:::-;77753:10;77764:1;77753:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;77729:3;;;;;77692:125;;;;77838:10;77831:17;;;;77339:528;;;;:::o;45575:152::-;45647:7;45690:27;45709:7;45690:18;:27::i;:::-;45667:52;;45575:152;;;:::o;88078:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;90008:106::-;20277:13;:11;:13::i;:::-;90094:12:::1;90082:9;:24;;;;90008:106:::0;:::o;41117:233::-;41189:7;41230:1;41213:19;;:5;:19;;;41209:60;;;41241:28;;;;;;;;;;;;;;41209:60;35276:13;41287:18;:25;41306:5;41287:25;;;;;;;;;;;;;;;;:55;41280:62;;41117:233;;;:::o;21039:103::-;20277:13;:11;:13::i;:::-;21104:30:::1;21131:1;21104:18;:30::i;:::-;21039:103::o:0;81215:900::-;81293:16;81347:19;81381:25;81421:22;81446:16;81456:5;81446:9;:16::i;:::-;81421:41;;81477:25;81519:14;81505:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81477:57;;81549:31;;:::i;:::-;81600:9;81612:15;:13;:15::i;:::-;81600:27;;81595:472;81644:14;81629:11;:29;81595:472;;81696:15;81709:1;81696:12;:15::i;:::-;81684:27;;81734:9;:16;;;81730:73;;;81775:8;;81730:73;81851:1;81825:28;;:9;:14;;;:28;;;81821:111;;81898:9;:14;;;81878:34;;81821:111;81975:5;81954:26;;:17;:26;;;81950:102;;;82031:1;82005:8;82014:13;;;;;;82005:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;81950:102;81595:472;81660:3;;;;;81595:472;;;;82088:8;82081:15;;;;;;;81215:900;;;:::o;20391:87::-;20437:7;20464:6;;;;;;;;;;;20457:13;;20391:87;:::o;89910:90::-;20277:13;:11;:13::i;:::-;89984:8:::1;89976:5;:16;;;;89910:90:::0;:::o;44358:104::-;44414:13;44447:7;44440:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44358:104;:::o;78255:2513::-;78398:16;78465:4;78456:5;:13;78452:45;;78478:19;;;;;;;;;;;;;;78452:45;78512:19;78546:17;78566:14;:12;:14::i;:::-;78546:34;;78666:15;:13;:15::i;:::-;78658:5;:23;78654:87;;;78710:15;:13;:15::i;:::-;78702:23;;78654:87;78817:9;78810:4;:16;78806:73;;;78854:9;78847:16;;78806:73;78893:25;78921:16;78931:5;78921:9;:16::i;:::-;78893:44;;79115:4;79107:5;:12;79103:278;;;79140:19;79169:5;79162:4;:12;79140:34;;79211:17;79197:11;:31;79193:111;;;79273:11;79253:31;;79193:111;79121:198;79103:278;;;79364:1;79344:21;;79103:278;79395:25;79437:17;79423:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79395:60;;79495:1;79474:17;:22;79470:78;;;79524:8;79517:15;;;;;;;;79470:78;79692:31;79726:26;79746:5;79726:19;:26::i;:::-;79692:60;;79767:25;80012:9;:16;;;80007:92;;80069:9;:14;;;80049:34;;80007:92;80118:9;80130:5;80118:17;;80113:478;80142:4;80137:1;:9;;:45;;;;;80165:17;80150:11;:32;;80137:45;80113:478;;;80220:15;80233:1;80220:12;:15::i;:::-;80208:27;;80258:9;:16;;;80254:73;;;80299:8;;80254:73;80375:1;80349:28;;:9;:14;;;:28;;;80345:111;;80422:9;:14;;;80402:34;;80345:111;80499:5;80478:26;;:17;:26;;;80474:102;;;80555:1;80529:8;80538:13;;;;;;80529:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;80474:102;80113:478;80184:3;;;;;80113:478;;;;80693:11;80683:8;80676:29;80741:8;80734:15;;;;;;;;78255:2513;;;;;;:::o;88988:365::-;88442:23;88454:10;88442:11;:23::i;:::-;88441:24;88433:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;88523:9;88509:23;;:10;:23;;;88501:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;89153:9:::1;;89141:8;89125:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;89116:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;89205:9;;;;;;;;;;;89196:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;89285:5;;89274:8;:16;;;;:::i;:::-;89261:9;:29;;89252:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;89326:19;89332:2;89336:8;89326:5;:19::i;:::-;88988:365:::0;;:::o;51223:308::-;51334:19;:17;:19::i;:::-;51322:31;;:8;:31;;;51318:61;;;51362:17;;;;;;;;;;;;;;51318:61;51444:8;51392:18;:39;51411:19;:17;:19::i;:::-;51392:39;;;;;;;;;;;;;;;:49;51432:8;51392:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;51504:8;51468:55;;51483:19;:17;:19::i;:::-;51468:55;;;51514:8;51468:55;;;;;;:::i;:::-;;;;;;;;51223:308;;:::o;88642:338::-;88442:23;88454:10;88442:11;:23::i;:::-;88441:24;88433:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;88523:9;88509:23;;:10;:23;;;88501:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;88772:9:::1;;88760:8;88744:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;88735:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;88824:9;;;;;;;;;;;88815:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;88904:5;;88893:8;:16;;;;:::i;:::-;88880:9;:29;;88871:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;88945:27;88951:10;88963:8;88945:5;:27::i;:::-;88642:338:::0;:::o;58068:399::-;58235:31;58248:4;58254:2;58258:7;58235:12;:31::i;:::-;58299:1;58281:2;:14;;;:19;58277:183;;58320:56;58351:4;58357:2;58361:7;58370:5;58320:30;:56::i;:::-;58315:145;;58404:40;;;;;;;;;;;;;;58315:145;58277:183;58068:399;;;;:::o;76752:428::-;76836:21;;:::i;:::-;76870:31;;:::i;:::-;76926:15;:13;:15::i;:::-;76916:7;:25;:54;;;;76956:14;:12;:14::i;:::-;76945:7;:25;;76916:54;76912:103;;;76994:9;76987:16;;;;;76912:103;77037:21;77050:7;77037:12;:21::i;:::-;77025:33;;77073:9;:16;;;77069:65;;;77113:9;77106:16;;;;;77069:65;77151:21;77164:7;77151:12;:21::i;:::-;77144:28;;;76752:428;;;;:::o;89363:296::-;89452:13;89486:16;89494:7;89486;:16::i;:::-;89478:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;89573:1;89554:7;89548:21;;;;;:::i;:::-;;;:26;;:103;;;;;;;;;;;;;;;;;89601:7;89610:25;89627:7;89610:16;:25::i;:::-;89584:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;89548:103;89541:110;;89363:296;;;:::o;88106:24::-;;;;:::o;51688:164::-;51785:4;51809:18;:25;51828:5;51809:25;;;;;;;;;;;;;;;:35;51835:8;51809:35;;;;;;;;;;;;;;;;;;;;;;;;;51802:42;;51688:164;;;;:::o;21297:201::-;20277:13;:11;:13::i;:::-;21406:1:::1;21386:22;;:8;:22;;;;21378:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21462:28;21481:8;21462:18;:28::i;:::-;21297:201:::0;:::o;52110:282::-;52175:4;52231:7;52212:15;:13;:15::i;:::-;:26;;:66;;;;;52265:13;;52255:7;:23;52212:66;:153;;;;;52364:1;36052:8;52316:17;:26;52334:7;52316:26;;;;;;;;;;;;:44;:49;52212:153;52192:173;;52110:282;;;:::o;73876:105::-;73936:7;73963:10;73956:17;;73876:105;:::o;39449:92::-;39505:7;39449:92;:::o;46730:1275::-;46797:7;46817:12;46832:7;46817:22;;46900:4;46881:15;:13;:15::i;:::-;:23;46877:1061;;46934:13;;46927:4;:20;46923:1015;;;46972:14;46989:17;:23;47007:4;46989:23;;;;;;;;;;;;46972:40;;47106:1;36052:8;47078:6;:24;:29;47074:845;;;47743:113;47760:1;47750:6;:11;47743:113;;;47803:17;:25;47821:6;;;;;;;47803:25;;;;;;;;;;;;47794:34;;47743:113;;;47889:6;47882:13;;;;;;47074:845;46949:989;46923:1015;46877:1061;47966:31;;;;;;;;;;;;;;46730:1275;;;;:::o;53273:479::-;53375:27;53404:23;53445:38;53486:15;:24;53502:7;53486:24;;;;;;;;;;;53445:65;;53657:18;53634:41;;53714:19;53708:26;53689:45;;53619:126;53273:479;;;:::o;52501:659::-;52650:11;52815:16;52808:5;52804:28;52795:37;;52975:16;52964:9;52960:32;52947:45;;53125:15;53114:9;53111:30;53103:5;53092:9;53089:20;53086:56;53076:66;;52501:659;;;;;:::o;59129:159::-;;;;;:::o;73185:311::-;73320:7;73340:16;36456:3;73366:19;:41;;73340:68;;36456:3;73434:31;73445:4;73451:2;73455:9;73434:10;:31::i;:::-;73426:40;;:62;;73419:69;;;73185:311;;;;;:::o;48553:450::-;48633:14;48801:16;48794:5;48790:28;48781:37;;48978:5;48964:11;48939:23;48935:41;48932:52;48925:5;48922:63;48912:73;;48553:450;;;;:::o;59953:158::-;;;;;:::o;20556:132::-;20631:12;:10;:12::i;:::-;20620:23;;:7;:5;:7::i;:::-;:23;;;20612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20556:132::o;68405:3081::-;68485:27;68515;68534:7;68515:18;:27::i;:::-;68485:57;;68555:12;68586:19;68555:52;;68621:27;68650:23;68677:35;68704:7;68677:26;:35::i;:::-;68620:92;;;;68729:13;68725:316;;;68850:68;68875:15;68892:4;68898:19;:17;:19::i;:::-;68850:24;:68::i;:::-;68845:184;;68942:43;68959:4;68965:19;:17;:19::i;:::-;68942:16;:43::i;:::-;68937:92;;68994:35;;;;;;;;;;;;;;68937:92;68845:184;68725:316;69053:51;69075:4;69089:1;69093:7;69102:1;69053:21;:51::i;:::-;69197:15;69194:160;;;69337:1;69316:19;69309:30;69194:160;70015:1;35541:3;69985:1;:26;;69984:32;69956:18;:24;69975:4;69956:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;70283:176;70320:4;70391:53;70406:4;70420:1;70424:19;70391:14;:53::i;:::-;36332:8;36052;70344:43;70343:101;70283:18;:176::i;:::-;70254:17;:26;70272:7;70254:26;;;;;;;;;;;:205;;;;70630:1;36332:8;70579:19;:47;:52;70575:627;;;70652:19;70684:1;70674:7;:11;70652:33;;70841:1;70807:17;:30;70825:11;70807:30;;;;;;;;;;;;:35;70803:384;;;70945:13;;70930:11;:28;70926:242;;71125:19;71092:17;:30;71110:11;71092:30;;;;;;;;;;;:52;;;;70926:242;70803:384;70633:569;70575:627;71257:7;71253:1;71230:35;;71239:4;71230:35;;;;;;;;;;;;71276:50;71297:4;71311:1;71315:7;71324:1;71276:20;:50::i;:::-;71453:12;;:14;;;;;;;;;;;;;68474:3012;;;;68405:3081;;:::o;21658:191::-;21732:16;21751:6;;;;;;;;;;;21732:25;;21777:8;21768:6;;:17;;;;;;;;;;;;;;;;;;21832:8;21801:40;;21822:8;21801:40;;;;;;;;;;;;21721:128;21658:191;:::o;46178:161::-;46246:21;;:::i;:::-;46287:44;46306:17;:24;46324:5;46306:24;;;;;;;;;;;;46287:18;:44::i;:::-;46280:51;;46178:161;;;:::o;39620:103::-;39675:7;39702:13;;39695:20;;39620:103;:::o;90386:184::-;90461:4;90478:9;90529:5;90517:18;90509:26;;90561:1;90554:4;:8;90547:15;;;90386:184;;;:::o;61729:2454::-;61802:20;61825:13;;61802:36;;61865:1;61853:8;:13;61849:44;;;61875:18;;;;;;;;;;;;;;61849:44;61906:61;61936:1;61940:2;61944:12;61958:8;61906:21;:61::i;:::-;62450:1;35414:2;62420:1;:26;;62419:32;62407:8;:45;62381:18;:22;62400:2;62381:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;62729:139;62766:2;62820:33;62843:1;62847:2;62851:1;62820:14;:33::i;:::-;62787:30;62808:8;62787:20;:30::i;:::-;:66;62729:18;:139::i;:::-;62695:17;:31;62713:12;62695:31;;;;;;;;;;;:173;;;;62885:16;62916:11;62945:8;62930:12;:23;62916:37;;63200:16;63196:2;63192:25;63180:37;;63572:12;63532:8;63491:1;63429:25;63370:1;63309;63282:335;63697:1;63683:12;63679:20;63637:346;63738:3;63729:7;63726:16;63637:346;;63956:7;63946:8;63943:1;63916:25;63913:1;63910;63905:59;63791:1;63782:7;63778:15;63767:26;;63637:346;;;63641:77;64028:1;64016:8;:13;64012:45;;;64038:19;;;;;;;;;;;;;;64012:45;64090:3;64074:13;:19;;;;62155:1950;;64115:60;64144:1;64148:2;64152:12;64166:8;64115:20;:60::i;:::-;61791:2392;61729:2454;;:::o;60551:716::-;60714:4;60760:2;60735:45;;;60781:19;:17;:19::i;:::-;60802:4;60808:7;60817:5;60735:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;60731:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61035:1;61018:6;:13;:18;61014:235;;;61064:40;;;;;;;;;;;;;;61014:235;61207:6;61201:13;61192:6;61188:2;61184:15;61177:38;60731:529;60904:54;;;60894:64;;;:6;:64;;;;60887:71;;;60551:716;;;;;;:::o;45916:166::-;45986:21;;:::i;:::-;46027:47;46046:27;46065:7;46046:18;:27::i;:::-;46027:18;:47::i;:::-;46020:54;;45916:166;;;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;72886:147::-;73023:6;72886:147;;;;;:::o;18942:98::-;18995:7;19022:10;19015:17;;18942:98;:::o;48104:366::-;48170:31;;:::i;:::-;48247:6;48214:9;:14;;:41;;;;;;;;;;;35935:3;48300:6;:33;;48266:9;:24;;:68;;;;;;;;;;;48392:1;36052:8;48364:6;:24;:29;;48345:9;:16;;:48;;;;;;;;;;;36456:3;48433:6;:28;;48404:9;:19;;:58;;;;;;;;;;;48104:366;;;:::o;49105:324::-;49175:14;49408:1;49398:8;49395:15;49369:24;49365:46;49355:56;;49105:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1159:133::-;1202:5;1240:6;1227:20;1218:29;;1256:30;1280:5;1256:30;:::i;:::-;1159:133;;;;:::o;1298:137::-;1343:5;1381:6;1368:20;1359:29;;1397:32;1423:5;1397:32;:::i;:::-;1298:137;;;;:::o;1441:141::-;1497:5;1528:6;1522:13;1513:22;;1544:32;1570:5;1544:32;:::i;:::-;1441:141;;;;:::o;1601:338::-;1656:5;1705:3;1698:4;1690:6;1686:17;1682:27;1672:122;;1713:79;;:::i;:::-;1672:122;1830:6;1817:20;1855:78;1929:3;1921:6;1914:4;1906:6;1902:17;1855:78;:::i;:::-;1846:87;;1662:277;1601:338;;;;:::o;1959:553::-;2017:8;2027:6;2077:3;2070:4;2062:6;2058:17;2054:27;2044:122;;2085:79;;:::i;:::-;2044:122;2198:6;2185:20;2175:30;;2228:18;2220:6;2217:30;2214:117;;;2250:79;;:::i;:::-;2214:117;2364:4;2356:6;2352:17;2340:29;;2418:3;2410:4;2402:6;2398:17;2388:8;2384:32;2381:41;2378:128;;;2425:79;;:::i;:::-;2378:128;1959:553;;;;;:::o;2518:139::-;2564:5;2602:6;2589:20;2580:29;;2618:33;2645:5;2618:33;:::i;:::-;2518:139;;;;:::o;2663:329::-;2722:6;2771:2;2759:9;2750:7;2746:23;2742:32;2739:119;;;2777:79;;:::i;:::-;2739:119;2897:1;2922:53;2967:7;2958:6;2947:9;2943:22;2922:53;:::i;:::-;2912:63;;2868:117;2663:329;;;;:::o;2998:474::-;3066:6;3074;3123:2;3111:9;3102:7;3098:23;3094:32;3091:119;;;3129:79;;:::i;:::-;3091:119;3249:1;3274:53;3319:7;3310:6;3299:9;3295:22;3274:53;:::i;:::-;3264:63;;3220:117;3376:2;3402:53;3447:7;3438:6;3427:9;3423:22;3402:53;:::i;:::-;3392:63;;3347:118;2998:474;;;;;:::o;3478:619::-;3555:6;3563;3571;3620:2;3608:9;3599:7;3595:23;3591:32;3588:119;;;3626:79;;:::i;:::-;3588:119;3746:1;3771:53;3816:7;3807:6;3796:9;3792:22;3771:53;:::i;:::-;3761:63;;3717:117;3873:2;3899:53;3944:7;3935:6;3924:9;3920:22;3899:53;:::i;:::-;3889:63;;3844:118;4001:2;4027:53;4072:7;4063:6;4052:9;4048:22;4027:53;:::i;:::-;4017:63;;3972:118;3478:619;;;;;:::o;4103:943::-;4198:6;4206;4214;4222;4271:3;4259:9;4250:7;4246:23;4242:33;4239:120;;;4278:79;;:::i;:::-;4239:120;4398:1;4423:53;4468:7;4459:6;4448:9;4444:22;4423:53;:::i;:::-;4413:63;;4369:117;4525:2;4551:53;4596:7;4587:6;4576:9;4572:22;4551:53;:::i;:::-;4541:63;;4496:118;4653:2;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4624:118;4809:2;4798:9;4794:18;4781:32;4840:18;4832:6;4829:30;4826:117;;;4862:79;;:::i;:::-;4826:117;4967:62;5021:7;5012:6;5001:9;4997:22;4967:62;:::i;:::-;4957:72;;4752:287;4103:943;;;;;;;:::o;5052:468::-;5117:6;5125;5174:2;5162:9;5153:7;5149:23;5145:32;5142:119;;;5180:79;;:::i;:::-;5142:119;5300:1;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5271:117;5427:2;5453:50;5495:7;5486:6;5475:9;5471:22;5453:50;:::i;:::-;5443:60;;5398:115;5052:468;;;;;:::o;5526:474::-;5594:6;5602;5651:2;5639:9;5630:7;5626:23;5622:32;5619:119;;;5657:79;;:::i;:::-;5619:119;5777:1;5802:53;5847:7;5838:6;5827:9;5823:22;5802:53;:::i;:::-;5792:63;;5748:117;5904:2;5930:53;5975:7;5966:6;5955:9;5951:22;5930:53;:::i;:::-;5920:63;;5875:118;5526:474;;;;;:::o;6006:619::-;6083:6;6091;6099;6148:2;6136:9;6127:7;6123:23;6119:32;6116:119;;;6154:79;;:::i;:::-;6116:119;6274:1;6299:53;6344:7;6335:6;6324:9;6320:22;6299:53;:::i;:::-;6289:63;;6245:117;6401:2;6427:53;6472:7;6463:6;6452:9;6448:22;6427:53;:::i;:::-;6417:63;;6372:118;6529:2;6555:53;6600:7;6591:6;6580:9;6576:22;6555:53;:::i;:::-;6545:63;;6500:118;6006:619;;;;;:::o;6631:559::-;6717:6;6725;6774:2;6762:9;6753:7;6749:23;6745:32;6742:119;;;6780:79;;:::i;:::-;6742:119;6928:1;6917:9;6913:17;6900:31;6958:18;6950:6;6947:30;6944:117;;;6980:79;;:::i;:::-;6944:117;7093:80;7165:7;7156:6;7145:9;7141:22;7093:80;:::i;:::-;7075:98;;;;6871:312;6631:559;;;;;:::o;7196:327::-;7254:6;7303:2;7291:9;7282:7;7278:23;7274:32;7271:119;;;7309:79;;:::i;:::-;7271:119;7429:1;7454:52;7498:7;7489:6;7478:9;7474:22;7454:52;:::i;:::-;7444:62;;7400:116;7196:327;;;;:::o;7529:349::-;7598:6;7647:2;7635:9;7626:7;7622:23;7618:32;7615:119;;;7653:79;;:::i;:::-;7615:119;7773:1;7798:63;7853:7;7844:6;7833:9;7829:22;7798:63;:::i;:::-;7788:73;;7744:127;7529:349;;;;:::o;7884:529::-;7955:6;7963;8012:2;8000:9;7991:7;7987:23;7983:32;7980:119;;;8018:79;;:::i;:::-;7980:119;8166:1;8155:9;8151:17;8138:31;8196:18;8188:6;8185:30;8182:117;;;8218:79;;:::i;:::-;8182:117;8331:65;8388:7;8379:6;8368:9;8364:22;8331:65;:::i;:::-;8313:83;;;;8109:297;7884:529;;;;;:::o;8419:329::-;8478:6;8527:2;8515:9;8506:7;8502:23;8498:32;8495:119;;;8533:79;;:::i;:::-;8495:119;8653:1;8678:53;8723:7;8714:6;8703:9;8699:22;8678:53;:::i;:::-;8668:63;;8624:117;8419:329;;;;:::o;8754:307::-;8887:10;8908:110;9014:3;9006:6;8908:110;:::i;:::-;9050:4;9045:3;9041:14;9027:28;;8754:307;;;;:::o;9067:179::-;9136:10;9157:46;9199:3;9191:6;9157:46;:::i;:::-;9235:4;9230:3;9226:14;9212:28;;9067:179;;;;:::o;9252:108::-;9329:24;9347:5;9329:24;:::i;:::-;9324:3;9317:37;9252:108;;:::o;9366:118::-;9453:24;9471:5;9453:24;:::i;:::-;9448:3;9441:37;9366:118;;:::o;9566:988::-;9749:3;9778:86;9858:5;9778:86;:::i;:::-;9880:118;9991:6;9986:3;9880:118;:::i;:::-;9873:125;;10022:88;10104:5;10022:88;:::i;:::-;10133:7;10164:1;10149:380;10174:6;10171:1;10168:13;10149:380;;;10250:6;10244:13;10277:127;10400:3;10385:13;10277:127;:::i;:::-;10270:134;;10427:92;10512:6;10427:92;:::i;:::-;10417:102;;10209:320;10196:1;10193;10189:9;10184:14;;10149:380;;;10153:14;10545:3;10538:10;;9754:800;;;9566:988;;;;:::o;10590:732::-;10709:3;10738:54;10786:5;10738:54;:::i;:::-;10808:86;10887:6;10882:3;10808:86;:::i;:::-;10801:93;;10918:56;10968:5;10918:56;:::i;:::-;10997:7;11028:1;11013:284;11038:6;11035:1;11032:13;11013:284;;;11114:6;11108:13;11141:63;11200:3;11185:13;11141:63;:::i;:::-;11134:70;;11227:60;11280:6;11227:60;:::i;:::-;11217:70;;11073:224;11060:1;11057;11053:9;11048:14;;11013:284;;;11017:14;11313:3;11306:10;;10714:608;;;10590:732;;;;:::o;11328:99::-;11399:21;11414:5;11399:21;:::i;:::-;11394:3;11387:34;11328:99;;:::o;11433:109::-;11514:21;11529:5;11514:21;:::i;:::-;11509:3;11502:34;11433:109;;:::o;11548:360::-;11634:3;11662:38;11694:5;11662:38;:::i;:::-;11716:70;11779:6;11774:3;11716:70;:::i;:::-;11709:77;;11795:52;11840:6;11835:3;11828:4;11821:5;11817:16;11795:52;:::i;:::-;11872:29;11894:6;11872:29;:::i;:::-;11867:3;11863:39;11856:46;;11638:270;11548:360;;;;:::o;11914:364::-;12002:3;12030:39;12063:5;12030:39;:::i;:::-;12085:71;12149:6;12144:3;12085:71;:::i;:::-;12078:78;;12165:52;12210:6;12205:3;12198:4;12191:5;12187:16;12165:52;:::i;:::-;12242:29;12264:6;12242:29;:::i;:::-;12237:3;12233:39;12226:46;;12006:272;11914:364;;;;:::o;12284:377::-;12390:3;12418:39;12451:5;12418:39;:::i;:::-;12473:89;12555:6;12550:3;12473:89;:::i;:::-;12466:96;;12571:52;12616:6;12611:3;12604:4;12597:5;12593:16;12571:52;:::i;:::-;12648:6;12643:3;12639:16;12632:23;;12394:267;12284:377;;;;:::o;12691:845::-;12794:3;12831:5;12825:12;12860:36;12886:9;12860:36;:::i;:::-;12912:89;12994:6;12989:3;12912:89;:::i;:::-;12905:96;;13032:1;13021:9;13017:17;13048:1;13043:137;;;;13194:1;13189:341;;;;13010:520;;13043:137;13127:4;13123:9;13112;13108:25;13103:3;13096:38;13163:6;13158:3;13154:16;13147:23;;13043:137;;13189:341;13256:38;13288:5;13256:38;:::i;:::-;13316:1;13330:154;13344:6;13341:1;13338:13;13330:154;;;13418:7;13412:14;13408:1;13403:3;13399:11;13392:35;13468:1;13459:7;13455:15;13444:26;;13366:4;13363:1;13359:12;13354:17;;13330:154;;;13513:6;13508:3;13504:16;13497:23;;13196:334;;13010:520;;12798:738;;12691:845;;;;:::o;13542:366::-;13684:3;13705:67;13769:2;13764:3;13705:67;:::i;:::-;13698:74;;13781:93;13870:3;13781:93;:::i;:::-;13899:2;13894:3;13890:12;13883:19;;13542:366;;;:::o;13914:::-;14056:3;14077:67;14141:2;14136:3;14077:67;:::i;:::-;14070:74;;14153:93;14242:3;14153:93;:::i;:::-;14271:2;14266:3;14262:12;14255:19;;13914:366;;;:::o;14286:::-;14428:3;14449:67;14513:2;14508:3;14449:67;:::i;:::-;14442:74;;14525:93;14614:3;14525:93;:::i;:::-;14643:2;14638:3;14634:12;14627:19;;14286:366;;;:::o;14658:400::-;14818:3;14839:84;14921:1;14916:3;14839:84;:::i;:::-;14832:91;;14932:93;15021:3;14932:93;:::i;:::-;15050:1;15045:3;15041:11;15034:18;;14658:400;;;:::o;15064:366::-;15206:3;15227:67;15291:2;15286:3;15227:67;:::i;:::-;15220:74;;15303:93;15392:3;15303:93;:::i;:::-;15421:2;15416:3;15412:12;15405:19;;15064:366;;;:::o;15436:::-;15578:3;15599:67;15663:2;15658:3;15599:67;:::i;:::-;15592:74;;15675:93;15764:3;15675:93;:::i;:::-;15793:2;15788:3;15784:12;15777:19;;15436:366;;;:::o;15808:::-;15950:3;15971:67;16035:2;16030:3;15971:67;:::i;:::-;15964:74;;16047:93;16136:3;16047:93;:::i;:::-;16165:2;16160:3;16156:12;16149:19;;15808:366;;;:::o;16180:::-;16322:3;16343:67;16407:2;16402:3;16343:67;:::i;:::-;16336:74;;16419:93;16508:3;16419:93;:::i;:::-;16537:2;16532:3;16528:12;16521:19;;16180:366;;;:::o;16552:::-;16694:3;16715:67;16779:2;16774:3;16715:67;:::i;:::-;16708:74;;16791:93;16880:3;16791:93;:::i;:::-;16909:2;16904:3;16900:12;16893:19;;16552:366;;;:::o;16924:::-;17066:3;17087:67;17151:2;17146:3;17087:67;:::i;:::-;17080:74;;17163:93;17252:3;17163:93;:::i;:::-;17281:2;17276:3;17272:12;17265:19;;16924:366;;;:::o;17368:866::-;17519:4;17514:3;17510:14;17606:4;17599:5;17595:16;17589:23;17625:63;17682:4;17677:3;17673:14;17659:12;17625:63;:::i;:::-;17534:164;17790:4;17783:5;17779:16;17773:23;17809:61;17864:4;17859:3;17855:14;17841:12;17809:61;:::i;:::-;17708:172;17964:4;17957:5;17953:16;17947:23;17983:57;18034:4;18029:3;18025:14;18011:12;17983:57;:::i;:::-;17890:160;18137:4;18130:5;18126:16;18120:23;18156:61;18211:4;18206:3;18202:14;18188:12;18156:61;:::i;:::-;18060:167;17488:746;17368:866;;:::o;18312:876::-;18473:4;18468:3;18464:14;18560:4;18553:5;18549:16;18543:23;18579:63;18636:4;18631:3;18627:14;18613:12;18579:63;:::i;:::-;18488:164;18744:4;18737:5;18733:16;18727:23;18763:61;18818:4;18813:3;18809:14;18795:12;18763:61;:::i;:::-;18662:172;18918:4;18911:5;18907:16;18901:23;18937:57;18988:4;18983:3;18979:14;18965:12;18937:57;:::i;:::-;18844:160;19091:4;19084:5;19080:16;19074:23;19110:61;19165:4;19160:3;19156:14;19142:12;19110:61;:::i;:::-;19014:167;18442:746;18312:876;;:::o;19194:105::-;19269:23;19286:5;19269:23;:::i;:::-;19264:3;19257:36;19194:105;;:::o;19305:108::-;19382:24;19400:5;19382:24;:::i;:::-;19377:3;19370:37;19305:108;;:::o;19419:118::-;19506:24;19524:5;19506:24;:::i;:::-;19501:3;19494:37;19419:118;;:::o;19543:105::-;19618:23;19635:5;19618:23;:::i;:::-;19613:3;19606:36;19543:105;;:::o;19654:695::-;19932:3;19954:92;20042:3;20033:6;19954:92;:::i;:::-;19947:99;;20063:95;20154:3;20145:6;20063:95;:::i;:::-;20056:102;;20175:148;20319:3;20175:148;:::i;:::-;20168:155;;20340:3;20333:10;;19654:695;;;;;:::o;20355:222::-;20448:4;20486:2;20475:9;20471:18;20463:26;;20499:71;20567:1;20556:9;20552:17;20543:6;20499:71;:::i;:::-;20355:222;;;;:::o;20583:640::-;20778:4;20816:3;20805:9;20801:19;20793:27;;20830:71;20898:1;20887:9;20883:17;20874:6;20830:71;:::i;:::-;20911:72;20979:2;20968:9;20964:18;20955:6;20911:72;:::i;:::-;20993;21061:2;21050:9;21046:18;21037:6;20993:72;:::i;:::-;21112:9;21106:4;21102:20;21097:2;21086:9;21082:18;21075:48;21140:76;21211:4;21202:6;21140:76;:::i;:::-;21132:84;;20583:640;;;;;;;:::o;21229:501::-;21436:4;21474:2;21463:9;21459:18;21451:26;;21523:9;21517:4;21513:20;21509:1;21498:9;21494:17;21487:47;21551:172;21718:4;21709:6;21551:172;:::i;:::-;21543:180;;21229:501;;;;:::o;21736:373::-;21879:4;21917:2;21906:9;21902:18;21894:26;;21966:9;21960:4;21956:20;21952:1;21941:9;21937:17;21930:47;21994:108;22097:4;22088:6;21994:108;:::i;:::-;21986:116;;21736:373;;;;:::o;22115:210::-;22202:4;22240:2;22229:9;22225:18;22217:26;;22253:65;22315:1;22304:9;22300:17;22291:6;22253:65;:::i;:::-;22115:210;;;;:::o;22331:313::-;22444:4;22482:2;22471:9;22467:18;22459:26;;22531:9;22525:4;22521:20;22517:1;22506:9;22502:17;22495:47;22559:78;22632:4;22623:6;22559:78;:::i;:::-;22551:86;;22331:313;;;;:::o;22650:419::-;22816:4;22854:2;22843:9;22839:18;22831:26;;22903:9;22897:4;22893:20;22889:1;22878:9;22874:17;22867:47;22931:131;23057:4;22931:131;:::i;:::-;22923:139;;22650:419;;;:::o;23075:::-;23241:4;23279:2;23268:9;23264:18;23256:26;;23328:9;23322:4;23318:20;23314:1;23303:9;23299:17;23292:47;23356:131;23482:4;23356:131;:::i;:::-;23348:139;;23075:419;;;:::o;23500:::-;23666:4;23704:2;23693:9;23689:18;23681:26;;23753:9;23747:4;23743:20;23739:1;23728:9;23724:17;23717:47;23781:131;23907:4;23781:131;:::i;:::-;23773:139;;23500:419;;;:::o;23925:::-;24091:4;24129:2;24118:9;24114:18;24106:26;;24178:9;24172:4;24168:20;24164:1;24153:9;24149:17;24142:47;24206:131;24332:4;24206:131;:::i;:::-;24198:139;;23925:419;;;:::o;24350:::-;24516:4;24554:2;24543:9;24539:18;24531:26;;24603:9;24597:4;24593:20;24589:1;24578:9;24574:17;24567:47;24631:131;24757:4;24631:131;:::i;:::-;24623:139;;24350:419;;;:::o;24775:::-;24941:4;24979:2;24968:9;24964:18;24956:26;;25028:9;25022:4;25018:20;25014:1;25003:9;24999:17;24992:47;25056:131;25182:4;25056:131;:::i;:::-;25048:139;;24775:419;;;:::o;25200:::-;25366:4;25404:2;25393:9;25389:18;25381:26;;25453:9;25447:4;25443:20;25439:1;25428:9;25424:17;25417:47;25481:131;25607:4;25481:131;:::i;:::-;25473:139;;25200:419;;;:::o;25625:::-;25791:4;25829:2;25818:9;25814:18;25806:26;;25878:9;25872:4;25868:20;25864:1;25853:9;25849:17;25842:47;25906:131;26032:4;25906:131;:::i;:::-;25898:139;;25625:419;;;:::o;26050:::-;26216:4;26254:2;26243:9;26239:18;26231:26;;26303:9;26297:4;26293:20;26289:1;26278:9;26274:17;26267:47;26331:131;26457:4;26331:131;:::i;:::-;26323:139;;26050:419;;;:::o;26475:351::-;26632:4;26670:3;26659:9;26655:19;26647:27;;26684:135;26816:1;26805:9;26801:17;26792:6;26684:135;:::i;:::-;26475:351;;;;:::o;26832:222::-;26925:4;26963:2;26952:9;26948:18;26940:26;;26976:71;27044:1;27033:9;27029:17;27020:6;26976:71;:::i;:::-;26832:222;;;;:::o;27060:129::-;27094:6;27121:20;;:::i;:::-;27111:30;;27150:33;27178:4;27170:6;27150:33;:::i;:::-;27060:129;;;:::o;27195:75::-;27228:6;27261:2;27255:9;27245:19;;27195:75;:::o;27276:307::-;27337:4;27427:18;27419:6;27416:30;27413:56;;;27449:18;;:::i;:::-;27413:56;27487:29;27509:6;27487:29;:::i;:::-;27479:37;;27571:4;27565;27561:15;27553:23;;27276:307;;;:::o;27589:164::-;27688:4;27711:3;27703:11;;27741:4;27736:3;27732:14;27724:22;;27589:164;;;:::o;27759:132::-;27826:4;27849:3;27841:11;;27879:4;27874:3;27870:14;27862:22;;27759:132;;;:::o;27897:141::-;27946:4;27969:3;27961:11;;27992:3;27989:1;27982:14;28026:4;28023:1;28013:18;28005:26;;27897:141;;;:::o;28044:146::-;28143:6;28177:5;28171:12;28161:22;;28044:146;;;:::o;28196:114::-;28263:6;28297:5;28291:12;28281:22;;28196:114;;;:::o;28316:98::-;28367:6;28401:5;28395:12;28385:22;;28316:98;;;:::o;28420:99::-;28472:6;28506:5;28500:12;28490:22;;28420:99;;;:::o;28525:145::-;28627:4;28659;28654:3;28650:14;28642:22;;28525:145;;;:::o;28676:113::-;28746:4;28778;28773:3;28769:14;28761:22;;28676:113;;;:::o;28795:216::-;28926:11;28960:6;28955:3;28948:19;29000:4;28995:3;28991:14;28976:29;;28795:216;;;;:::o;29017:184::-;29116:11;29150:6;29145:3;29138:19;29190:4;29185:3;29181:14;29166:29;;29017:184;;;;:::o;29207:168::-;29290:11;29324:6;29319:3;29312:19;29364:4;29359:3;29355:14;29340:29;;29207:168;;;;:::o;29381:169::-;29465:11;29499:6;29494:3;29487:19;29539:4;29534:3;29530:14;29515:29;;29381:169;;;;:::o;29556:148::-;29658:11;29695:3;29680:18;;29556:148;;;;:::o;29710:305::-;29750:3;29769:20;29787:1;29769:20;:::i;:::-;29764:25;;29803:20;29821:1;29803:20;:::i;:::-;29798:25;;29957:1;29889:66;29885:74;29882:1;29879:81;29876:107;;;29963:18;;:::i;:::-;29876:107;30007:1;30004;30000:9;29993:16;;29710:305;;;;:::o;30021:185::-;30061:1;30078:20;30096:1;30078:20;:::i;:::-;30073:25;;30112:20;30130:1;30112:20;:::i;:::-;30107:25;;30151:1;30141:35;;30156:18;;:::i;:::-;30141:35;30198:1;30195;30191:9;30186:14;;30021:185;;;;:::o;30212:348::-;30252:7;30275:20;30293:1;30275:20;:::i;:::-;30270:25;;30309:20;30327:1;30309:20;:::i;:::-;30304:25;;30497:1;30429:66;30425:74;30422:1;30419:81;30414:1;30407:9;30400:17;30396:105;30393:131;;;30504:18;;:::i;:::-;30393:131;30552:1;30549;30545:9;30534:20;;30212:348;;;;:::o;30566:191::-;30606:4;30626:20;30644:1;30626:20;:::i;:::-;30621:25;;30660:20;30678:1;30660:20;:::i;:::-;30655:25;;30699:1;30696;30693:8;30690:34;;;30704:18;;:::i;:::-;30690:34;30749:1;30746;30742:9;30734:17;;30566:191;;;;:::o;30763:96::-;30800:7;30829:24;30847:5;30829:24;:::i;:::-;30818:35;;30763:96;;;:::o;30865:90::-;30899:7;30942:5;30935:13;30928:21;30917:32;;30865:90;;;:::o;30961:149::-;30997:7;31037:66;31030:5;31026:78;31015:89;;30961:149;;;:::o;31116:126::-;31153:7;31193:42;31186:5;31182:54;31171:65;;31116:126;;;:::o;31248:91::-;31284:7;31324:8;31317:5;31313:20;31302:31;;31248:91;;;:::o;31345:77::-;31382:7;31411:5;31400:16;;31345:77;;;:::o;31428:101::-;31464:7;31504:18;31497:5;31493:30;31482:41;;31428:101;;;:::o;31535:154::-;31619:6;31614:3;31609;31596:30;31681:1;31672:6;31667:3;31663:16;31656:27;31535:154;;;:::o;31695:307::-;31763:1;31773:113;31787:6;31784:1;31781:13;31773:113;;;31872:1;31867:3;31863:11;31857:18;31853:1;31848:3;31844:11;31837:39;31809:2;31806:1;31802:10;31797:15;;31773:113;;;31904:6;31901:1;31898:13;31895:101;;;31984:1;31975:6;31970:3;31966:16;31959:27;31895:101;31744:258;31695:307;;;:::o;32008:320::-;32052:6;32089:1;32083:4;32079:12;32069:22;;32136:1;32130:4;32126:12;32157:18;32147:81;;32213:4;32205:6;32201:17;32191:27;;32147:81;32275:2;32267:6;32264:14;32244:18;32241:38;32238:84;;;32294:18;;:::i;:::-;32238:84;32059:269;32008:320;;;:::o;32334:281::-;32417:27;32439:4;32417:27;:::i;:::-;32409:6;32405:40;32547:6;32535:10;32532:22;32511:18;32499:10;32496:34;32493:62;32490:88;;;32558:18;;:::i;:::-;32490:88;32598:10;32594:2;32587:22;32377:238;32334:281;;:::o;32621:233::-;32660:3;32683:24;32701:5;32683:24;:::i;:::-;32674:33;;32729:66;32722:5;32719:77;32716:103;;;32799:18;;:::i;:::-;32716:103;32846:1;32839:5;32835:13;32828:20;;32621:233;;;:::o;32860:176::-;32892:1;32909:20;32927:1;32909:20;:::i;:::-;32904:25;;32943:20;32961:1;32943:20;:::i;:::-;32938:25;;32982:1;32972:35;;32987:18;;:::i;:::-;32972:35;33028:1;33025;33021:9;33016:14;;32860:176;;;;:::o;33042:180::-;33090:77;33087:1;33080:88;33187:4;33184:1;33177:15;33211:4;33208:1;33201:15;33228:180;33276:77;33273:1;33266:88;33373:4;33370:1;33363:15;33397:4;33394:1;33387:15;33414:180;33462:77;33459:1;33452:88;33559:4;33556:1;33549:15;33583:4;33580:1;33573:15;33600:180;33648:77;33645:1;33638:88;33745:4;33742:1;33735:15;33769:4;33766:1;33759:15;33786:180;33834:77;33831:1;33824:88;33931:4;33928:1;33921:15;33955:4;33952:1;33945:15;33972:117;34081:1;34078;34071:12;34095:117;34204:1;34201;34194:12;34218:117;34327:1;34324;34317:12;34341:117;34450:1;34447;34440:12;34464:117;34573:1;34570;34563:12;34587:117;34696:1;34693;34686:12;34710:102;34751:6;34802:2;34798:7;34793:2;34786:5;34782:14;34778:28;34768:38;;34710:102;;;:::o;34818:176::-;34958:28;34954:1;34946:6;34942:14;34935:52;34818:176;:::o;35000:225::-;35140:34;35136:1;35128:6;35124:14;35117:58;35209:8;35204:2;35196:6;35192:15;35185:33;35000:225;:::o;35231:171::-;35371:23;35367:1;35359:6;35355:14;35348:47;35231:171;:::o;35408:155::-;35548:7;35544:1;35536:6;35532:14;35525:31;35408:155;:::o;35569:182::-;35709:34;35705:1;35697:6;35693:14;35686:58;35569:182;:::o;35757:167::-;35897:19;35893:1;35885:6;35881:14;35874:43;35757:167;:::o;35930:170::-;36070:22;36066:1;36058:6;36054:14;36047:46;35930:170;:::o;36106:::-;36246:22;36242:1;36234:6;36230:14;36223:46;36106:170;:::o;36282:171::-;36422:23;36418:1;36410:6;36406:14;36399:47;36282:171;:::o;36459:166::-;36599:18;36595:1;36587:6;36583:14;36576:42;36459:166;:::o;36631:122::-;36704:24;36722:5;36704:24;:::i;:::-;36697:5;36694:35;36684:63;;36743:1;36740;36733:12;36684:63;36631:122;:::o;36759:116::-;36829:21;36844:5;36829:21;:::i;:::-;36822:5;36819:32;36809:60;;36865:1;36862;36855:12;36809:60;36759:116;:::o;36881:120::-;36953:23;36970:5;36953:23;:::i;:::-;36946:5;36943:34;36933:62;;36991:1;36988;36981:12;36933:62;36881:120;:::o;37007:122::-;37080:24;37098:5;37080:24;:::i;:::-;37073:5;37070:35;37060:63;;37119:1;37116;37109:12;37060:63;37007:122;:::o
Swarm Source
ipfs://7a746446177cf42a0bfd7160edf9ea4593109b468109442ddaf6ddd48f67cbe6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.