ERC-721
Overview
Max Total Supply
864 PB
Holders
161
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PIXELBOT
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-26 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ 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 simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _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} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _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 sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _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}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _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/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _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) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _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/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error UnableDetermineTokenOwner(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal _currentIndex; // 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 ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { if (index >= totalSupply()) revert TokenIndexOutOfBounds(); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken(); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert UnableDetermineTokenOwner(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) revert ApprovalCallerNotOwnerNorApproved(); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer(); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @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. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) revert TransferToNonERC721ReceiverImplementer(); else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // 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: contracts/PIXELBOT.sol pragma solidity >= 0.8.6 <=0.9.0; contract PIXELBOT is Ownable, ReentrancyGuard, ERC721A { using Strings for uint256; uint256 public maxMintAmount = 4; mapping(address => bool) public whitelist; uint256 Price = 0.009 ether; uint256 public maxSupply = 5000; bool public paused = true; bool public revealed = false; uint256 public constant WHITELIST_PRICE = 0 ether; string private baseTokenUri; string public placeholderTokenUri; struct SaleConfig { uint256 Price; uint256 AmountForWhitelist; } SaleConfig public saleConfig; constructor() ERC721A("PIXEL BOT", "PB") { whitelist[0x99b9b3BfBCDe0ea30a0D9B20A6D7a38b8F50f275] = true; whitelist[0x893D3F68fD0f1Cdaa5DC45b98055d80392F785C9] = true; whitelist[0x42205cE26Bbd01E51050052d22Bb95b52EEf2527] = true; whitelist[0x1F84bfd68A9d5033Ddfd36354a47baCB77C6a878] = true; whitelist[0xcC8BB0e7945522d13a0B54B738F7cD0cbE73DB45] = true; whitelist[0xCAc5894367B71ED955df44c597d111647d418aF1] = true; whitelist[0xb215547965BED8Bc5b07becA0D81f5992fE5beA3] = true; whitelist[0xd3CA7303626563CD27D1A57b0bB731bf4B63013F] = true; whitelist[0xB70eF825C8098b6c0857bba9AD780df9e75bFb2A] = true; whitelist[0x2702Ff48e2B708A3BEe78C01c5E87D7595519EB1] = true; whitelist[0x2f37E25d543ec6C29E1E5AafdDD3Bb4Bb931f725] = true; whitelist[0x5D7896F73991C12Af4222748a9f3216024721618] = true; whitelist[0xdC40eb33cbd849e91592f07316a2314381769bbC] = true; whitelist[0x29b497411B6dF2516F4599Fe0cefAabdaF4fD8B2] = true; whitelist[0x0F1073578aB08E8D0C7377274A471846d6909560] = true; whitelist[0x1745391565822ECFC28192BD7026D7Cd896cA127] = true; whitelist[0x4A8ce221AeEE731cd7F22EB59D7B69DE11E7a858] = true; whitelist[0x73a87E499c49BD14BeE8D12E3DAa73c97Cd9f9f2] = true; whitelist[0xc1b9aAEBB91399C7E7c002C3EE4b67148d4B2998] = true; whitelist[0x84B24DC780cb6DE5bB4394d0e19EFBabEB2d4F4d] = true; whitelist[0x6d7A28cc6D19D9707B0a2aC313F4E5Bbf05CD56a] = true; whitelist[0x61268541bD16C2ea2d270D8B59532E9fc104c78E] = true; whitelist[0x3AB75553B1101f0e8B35D5E7f65A2cf3588E9984] = true; whitelist[0xA4F6080e72DB588591E85a559E5BCb37219B9CF4] = true; whitelist[0x0e7aE09FB51A9c815a30E081d419c4E3a3803F9c] = true; whitelist[0xfDcF9b9f0F360a4461403c86319E0a0F8a240F13] = true; whitelist[0x3E4d8d89405fB1f4FCE948f6332DfB05f4d19f7f] = true; whitelist[0x65B66f439857B4daF7D6b60fA79773EF38365b29] = true; whitelist[0x5E706cDCb1B6C4ECf2E7507BE257E609Abe03199] = true; whitelist[0xd331B0713E0626288777DBd0D27ba7f9c907B1fc] = true; whitelist[0x884777d7B832aD53B89088E0B9D9A6bF67397bb5] = true; whitelist[0x536dCc00D8eBe2fD78E2A235dAE88322B18bbF83] = true; whitelist[0x0cDA1dC706F432B601168bCdBDC8483608a71d30] = true; whitelist[0xF0b246A787990A10fdb6E36276E6E8cE645F2062] = true; whitelist[0xFEB6613b0a7590e5E45eC834E65a5Fe7FD3336F0] = true; whitelist[0x8a3A99bD4FeF023b8d9A3352a1595581AA9Ac819] = true; whitelist[0x3C65D2E23C8Ac131D0dBD87240225D336D431316] = true; } function _baseURI() internal view virtual override returns (string memory) {return baseTokenUri;} modifier callerIsUser() {require(tx.origin == msg.sender, "The caller is another contract"); _;} function addToWhitelist(address[] calldata toAddAddresses) external onlyOwner { for (uint i = 0; i < toAddAddresses.length; i++) {whitelist[toAddAddresses[i]] = true;} } function getMaxSupply() view public returns(uint256){return maxSupply;} function whitelistMint(uint256 quantity) public payable callerIsUser { require(whitelist[msg.sender], "NOT_IN_WHITELIST"); require(!paused, "contract paused"); require(totalSupply() + quantity <= maxSupply, "reached max supply"); require(numberMinted(msg.sender) + quantity <= saleConfig.AmountForWhitelist, "can not mint this many"); _safeMint(msg.sender, quantity); refundIfOver(WHITELIST_PRICE); } function mint(uint256 quantity) public payable callerIsUser { require(!paused, "contract paused"); require(totalSupply() + quantity <= maxSupply, "reached max supply"); require(quantity <= maxMintAmount, "can not mint this many"); uint256 totalCost = saleConfig.Price * quantity; _safeMint(msg.sender, quantity); refundIfOver(totalCost); } function refundIfOver(uint256 price) private { require(msg.value >= price, "Need to send more ETH."); if (msg.value > price) { payable(msg.sender).transfer(msg.value - price); } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) {tokenIds[i] = tokenOfOwnerByIndex(_owner, i);} return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); uint256 trueId = tokenId + 1; if(!revealed){return placeholderTokenUri;} return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : ""; } function setTokenUri(string memory _baseTokenUri) external onlyOwner{ baseTokenUri = _baseTokenUri;} function reveal() public onlyOwner { revealed = true;} function setPlaceholderTokenUri(string memory _notRevealedURI) public onlyOwner { placeholderTokenUri = _notRevealedURI;} function isPublicSaleOn() public view returns (bool) { return saleConfig.Price != 0; } uint256 public constant PRICE = 0.009 ether; function InitInfoOfSale(uint256 price, uint256 amountForWhitelist) external onlyOwner { saleConfig = SaleConfig(price, amountForWhitelist);} function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount;} function setPrice(uint256 price) external onlyOwner { saleConfig.Price = price;} function withdrawMoney() external onlyOwner { (bool success, ) = 0x832E72F6befaC993e576c93a002DDA4a58909539.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function pause(bool _state) public onlyOwner { paused = _state;} function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner);} function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId);} }
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":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","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":"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":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"amountForWhitelist","type":"uint256"}],"name":"InitInfoOfSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"toAddAddresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":[],"name":"saleConfig","outputs":[{"internalType":"uint256","name":"Price","type":"uint256"},{"internalType":"uint256","name":"AmountForWhitelist","type":"uint256"}],"stateMutability":"view","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":"_notRevealedURI","type":"string"}],"name":"setPlaceholderTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526004600955661ff973cafa8000600b55611388600c55600d805461ffff191660011790553480156200003557600080fd5b50604051806040016040528060098152602001681412561153081093d560ba1b81525060405180604001604052806002815260200161282160f11b8152506200008d62000087620006ca60201b60201c565b620006ce565b6001805560036200009f8382620007c3565b506004620000ae8282620007c3565b5050600a602052507fd3fc7613556efad93efc6c0e4554a0f4bc58a9de5b8370e30f7c5ae3ef4a21cb8054600160ff1991821681179092557ff3a18d1ad97c058bcf581a4b1946f67868eeaaa8a25cc8644dc8aabf3457463380548216831790557ffadaccd2b9961b8ec1f16a5159fff1899ae6a4e5da752afffd1b41c4973030a280548216831790557fef151fcc982de90085c08052b95c146d1a996fb2e7571f7398607b5d8a7dd4af80548216831790557ff880239c2850ceb6ed4c8a1a0994b1c0b75cdb69992745cfc368624160f98f7f80548216831790557fca86286e6b1d40097cfb82833a5ef2f5d4feca3a5a493864709899729db1085b80548216831790557facc3de913d5c0d0a32f98405a170f8bde75e173059d9175de7a4868d23c947b580548216831790557f848e90528a1b8e853ba711a8f3588577a1cef4dd96a2943b716522f715b9c83780548216831790557f3fe3337019f5cae09540d018ac0a3d34cb95b0c86e07da9c5365c5f6ac0c817880548216831790557fa57027aed272c606d02da1c1dde1d03003ef386bde4ade9ec00cb1409c19a48880548216831790557fc88e0ef63102812a7c70938be8828cb49ac54162fbbed6c4a8b6058c3aaf3b1380548216831790557f8a35c546e0db0e126ab0cb572004a7c1580e06427eabbdc6bb92d9ff8bd228d180548216831790557f77bda71daa02f2372d09266ced36a5ad4b166a15c94d9e80fb1de0fc9e3e3d5280548216831790557f16676d3e2c05343be6ffb944e1b94a5a69145fa82565bff4495144ddb249aabc80548216831790557f43ef15973f0b8208fb40d43c846e8df3c89220985e73bd6b579b74fbdb04c54d80548216831790557f7a0dc6bad9b1cab4558476d138e94e1333522065f93df2701a4b7322c7b8918480548216831790557f4effa2caaa0c5bfe9f035182e8d68b77f75055d43f99db8a76b83d163960a8bb80548216831790557f9d2efbb0da5cf9050195f145ed4db7302bb281b173670f1b4152568f08cfb0c980548216831790557f507b5a091c18c9f1a31e5065836e899dfea17e761623ea13625fbec29a4a53ea80548216831790557fe95cca974092ec3be1f3613f6b1625d6d6cbb988202e8c2c6971936a0257b8e380548216831790557fb72ce7f1e77d3eaf603312de9ff88110b6baec5c6764e83ff3f336b5a86ca80380548216831790557fa4bdc23a05d2557abe5db37e21520c93ed071d9b8d7e572742aabd02647e61d380548216831790557f5bf69a39a5b89f43508ff7940d67459171dd7fdb29a2e47ec04417293ac3fecf80548216831790557ff9a5d41db53038f9367ca322f81dab785105ec87537373b16d5f35c3543ac05d80548216831790557f9aad5f91fabce8bf8be1ccf10ae9c5f913dfd79e1a2dd0cf7d5cc77cedce893180548216831790557f8d65907deee7cc02b29ed710cc6ff6e467ad4c0609ca086becb78175facfd16a80548216831790557f48da124c7e6a3803e5386787541379c26514efbd3727eb34e407040b29cd671880548216831790557fcf40db4419381871d808d0b9b0286b49b46bf486cc667510b48472f6a27ac85b80548216831790557f65c291abaa62c18bb77ed2ae6193a2b684583998e01ff72a42da768816fea79880548216831790557fdbb3fe29d60e64363aa681df6ef7032781ae3f7f2fef7d520c5e8c29f4f1dbe280548216831790557f346f5dc4f8336c7b2238fd30df55981b97cd4e244e5480f907e5c4aee629ed9c80548216831790557f9031ab05bbcdde6d309997465b55add3ed2349b3ac1049e415ba12d653ed344a80548216831790557f68d64bc392ea60257dd11074a90e7f6f954baef6a79b7bb91483f971895e00ea80548216831790557f2565d0593ff8b3fe7e6131252c56e7519754b2b38eb451598cae8a068a3aebd980548216831790557f44d43d63e031f20787614e103e21f665e4e3d71e6cc9c8bd5b58c4a6cf43f2da80548216831790557f385b188d90e75001f931e926c58f1df17cc7678bd1dde05e9ef6626ab45dac408054821683179055733c65d2e23c8ac131d0dbd87240225d336d4313166000527fadb2ad0bf982892f7b512e3a5892d5111ceec811646a0c31ffc302f578e0b0af805490911690911790556200088f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200074957607f821691505b6020821081036200076a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007be57600081815260208120601f850160051c81016020861015620007995750805b601f850160051c820191505b81811015620007ba57828155600101620007a5565b5050505b505050565b81516001600160401b03811115620007df57620007df6200071e565b620007f781620007f0845462000734565b8462000770565b602080601f8311600181146200082f5760008415620008165750858301515b600019600386901b1c1916600185901b178555620007ba565b600085815260208120601f198616915b8281101562000860578886015182559484019460019091019084016200083f565b50858210156200087f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61248b806200089f6000396000f3fe6080604052600436106102675760003560e01c806370a08231116101445780639b19251a116100b6578063b88d4fde1161007a578063b88d4fde14610732578063c87b56dd14610752578063d5abeb0114610772578063dc33e68114610788578063e985e9c5146107a8578063f2fde38b146107f157600080fd5b80639b19251a146106a5578063a0712d68146106d5578063a22cb465146106e8578063a475b5dd14610708578063ac4460021461071d57600080fd5b80638d859f3e116101085780638d859f3e146105ba5780638da5cb5b146105d557806390aa0b0f146105f357806391b7f5ed146106235780639231ab2a1461064357806395d89b411461069057600080fd5b806370a0823114610532578063715018a6146105525780637f00c7a6146105675780637f64978314610587578063868ff4a2146105a757600080fd5b80633f5e4741116101dd5780634f6ccce7116101a15780634f6ccce714610479578063518302271461049957806356faa023146104b85780635c975abb146104d85780636352211e146104f257806369bf95091461051257600080fd5b80633f5e4741146103eb57806342842e0e14610402578063438b6300146104225780634c0f38c21461044f5780634cf5f7a41461046457600080fd5b8063095ea7b31161022f578063095ea7b31461033d57806317e7f2951461035d57806318160ddd14610380578063239c70ae1461039557806323b872dd146103ab5780632f745c59146103cb57600080fd5b806301ffc9a71461026c57806302329a29146102a15780630675b7c6146102c357806306fdde03146102e3578063081812fc14610305575b600080fd5b34801561027857600080fd5b5061028c610287366004611db5565b610811565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004611de7565b61087e565b005b3480156102cf57600080fd5b506102c16102de366004611e8d565b610899565b3480156102ef57600080fd5b506102f86108b1565b6040516102989190611f25565b34801561031157600080fd5b50610325610320366004611f38565b610943565b6040516001600160a01b039091168152602001610298565b34801561034957600080fd5b506102c1610358366004611f68565b610989565b34801561036957600080fd5b50610372600081565b604051908152602001610298565b34801561038c57600080fd5b50600254610372565b3480156103a157600080fd5b5061037260095481565b3480156103b757600080fd5b506102c16103c6366004611f92565b610a16565b3480156103d757600080fd5b506103726103e6366004611f68565b610a21565b3480156103f757600080fd5b50601054151561028c565b34801561040e57600080fd5b506102c161041d366004611f92565b610b9c565b34801561042e57600080fd5b5061044261043d366004611fce565b610bb7565b6040516102989190611fe9565b34801561045b57600080fd5b50600c54610372565b34801561047057600080fd5b506102f8610c58565b34801561048557600080fd5b50610372610494366004611f38565b610ce6565b3480156104a557600080fd5b50600d5461028c90610100900460ff1681565b3480156104c457600080fd5b506102c16104d3366004611e8d565b610d14565b3480156104e457600080fd5b50600d5461028c9060ff1681565b3480156104fe57600080fd5b5061032561050d366004611f38565b610d28565b34801561051e57600080fd5b506102c161052d36600461202d565b610d3a565b34801561053e57600080fd5b5061037261054d366004611fce565b610d60565b34801561055e57600080fd5b506102c1610dae565b34801561057357600080fd5b506102c1610582366004611f38565b610dc2565b34801561059357600080fd5b506102c16105a236600461204f565b610dcf565b6102c16105b5366004611f38565b610e49565b3480156105c657600080fd5b50610372661ff973cafa800081565b3480156105e157600080fd5b506000546001600160a01b0316610325565b3480156105ff57600080fd5b5060105460115461060e919082565b60408051928352602083019190915201610298565b34801561062f57600080fd5b506102c161063e366004611f38565b610ffe565b34801561064f57600080fd5b5061066361065e366004611f38565b61100b565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610298565b34801561069c57600080fd5b506102f8611028565b3480156106b157600080fd5b5061028c6106c0366004611fce565b600a6020526000908152604090205460ff1681565b6102c16106e3366004611f38565b611037565b3480156106f457600080fd5b506102c16107033660046120c3565b611196565b34801561071457600080fd5b506102c161122b565b34801561072957600080fd5b506102c1611244565b34801561073e57600080fd5b506102c161074d3660046120f6565b6112eb565b34801561075e57600080fd5b506102f861076d366004611f38565b611325565b34801561077e57600080fd5b50610372600c5481565b34801561079457600080fd5b506103726107a3366004611fce565b6114a6565b3480156107b457600080fd5b5061028c6107c3366004612171565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156107fd57600080fd5b506102c161080c366004611fce565b6114b1565b60006001600160e01b031982166380ac58cd60e01b148061084257506001600160e01b03198216635b5e139f60e01b145b8061085d57506001600160e01b0319821663780e9d6360e01b145b8061087857506301ffc9a760e01b6001600160e01b03198316145b92915050565b610886611527565b600d805460ff1916911515919091179055565b6108a1611527565b600e6108ad8282612223565b5050565b6060600380546108c09061219b565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec9061219b565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b6000610950826002541190565b61096d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061099482610d28565b9050806001600160a01b0316836001600160a01b0316036109c85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109e857506109e681336107c3565b155b15610a06576040516367d9dca160e11b815260040160405180910390fd5b610a11838383611581565b505050565b610a118383836115dd565b6000610a2c83610d60565b8210610a8a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084015b60405180910390fd5b6000610a9560025490565b905060008060005b83811015610b3c576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610aef57805192505b876001600160a01b0316836001600160a01b031603610b2957868403610b1b5750935061087892505050565b83610b25816122f8565b9450505b5080610b34816122f8565b915050610a9d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a81565b610a11838383604051806020016040528060008152506112eb565b60606000610bc483610d60565b90506000816001600160401b03811115610be057610be0611e02565b604051908082528060200260200182016040528015610c09578160200160208202803683370190505b50905060005b82811015610c5057610c218582610a21565b828281518110610c3357610c33612311565b602090810291909101015280610c48816122f8565b915050610c0f565b509392505050565b600f8054610c659061219b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c919061219b565b8015610cde5780601f10610cb357610100808354040283529160200191610cde565b820191906000526020600020905b815481529060010190602001808311610cc157829003601f168201915b505050505081565b6000610cf160025490565b8210610d10576040516329c8c00760e21b815260040160405180910390fd5b5090565b610d1c611527565b600f6108ad8282612223565b6000610d33826117fa565b5192915050565b610d42611527565b60408051808201909152828152602001819052601091909155601155565b60006001600160a01b038216610d89576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160801b031690565b610db6611527565b610dc0600061188e565b565b610dca611527565b600955565b610dd7611527565b60005b81811015610a11576001600a6000858585818110610dfa57610dfa612311565b9050602002016020810190610e0f9190611fce565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610e41816122f8565b915050610dda565b323314610e985760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a81565b336000908152600a602052604090205460ff16610eea5760405162461bcd60e51b815260206004820152601060248201526f1393d517d25397d5d2125511531254d560821b6044820152606401610a81565b600d5460ff1615610f2f5760405162461bcd60e51b815260206004820152600f60248201526e18dbdb9d1c9858dd081c185d5cd959608a1b6044820152606401610a81565b600c5481610f3c60025490565b610f469190612327565b1115610f895760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610a81565b60115481610f96336114a6565b610fa09190612327565b1115610fe75760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610a81565b610ff133826118de565b610ffb60006118f8565b50565b611006611527565b601055565b6040805180820190915260008082526020820152610878826117fa565b6060600480546108c09061219b565b3233146110865760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a81565b600d5460ff16156110cb5760405162461bcd60e51b815260206004820152600f60248201526e18dbdb9d1c9858dd081c185d5cd959608a1b6044820152606401610a81565b600c54816110d860025490565b6110e29190612327565b11156111255760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610a81565b6009548111156111705760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610a81565b60105460009061118190839061233a565b905061118d33836118de565b6108ad816118f8565b336001600160a01b038316036111bf5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611233611527565b600d805461ff001916610100179055565b61124c611527565b60405160009073832e72f6befac993e576c93a002dda4a589095399047908381818185875af1925050503d80600081146112a2576040519150601f19603f3d011682016040523d82523d6000602084013e6112a7565b606091505b5050905080610ffb5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610a81565b6112f68484846115dd565b6113028484848461197f565b61131f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611332826002541190565b6113965760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a81565b60006113a3836001612327565b600d54909150610100900460ff1661144857600f80546113c29061219b565b80601f01602080910402602001604051908101604052809291908181526020018280546113ee9061219b565b801561143b5780601f106114105761010080835404028352916020019161143b565b820191906000526020600020905b81548152906001019060200180831161141e57829003601f168201915b5050505050915050919050565b6000600e80546114579061219b565b905011611473576040518060200160405280600081525061149f565b600e61147e82611a82565b60405160200161148f929190612351565b6040516020818303038152906040525b9392505050565b600061087882611b14565b6114b9611527565b6001600160a01b03811661151e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a81565b610ffb8161188e565b6000546001600160a01b03163314610dc05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115e8826117fa565b80519091506000906001600160a01b0316336001600160a01b0316148061161f57503361161484610943565b6001600160a01b0316145b806116315750815161163190336107c3565b90508061165157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116865760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166116ad57604051633a954ecd60e21b815260040160405180910390fd5b6116bd6000848460000151611581565b6001600160a01b03858116600090815260066020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600590935281842080546001600160e01b031916909117600160a01b426001600160401b0316021790559086018083529120549091166117b057611764816002541190565b156117b057825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611819826002541190565b61183657604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611884579392505050565b5060001901611838565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6108ad828260405180602001604052806000815250611b69565b803410156119415760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610a81565b80341115610ffb57336108fc61195783346123e8565b6040518115909202916000818181858888f193505050501580156108ad573d6000803e3d6000fd5b60006001600160a01b0384163b15611a7657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119c39033908990889088906004016123fb565b6020604051808303816000875af19250505080156119fe575060408051601f3d908101601f191682019092526119fb91810190612438565b60015b611a5c573d808015611a2c576040519150601f19603f3d011682016040523d82523d6000602084013e611a31565b606091505b508051600003611a54576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a7a565b5060015b949350505050565b60606000611a8f83611b76565b60010190506000816001600160401b03811115611aae57611aae611e02565b6040519080825280601f01601f191660200182016040528015611ad8576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611ae257509392505050565b60006001600160a01b038216611b3d576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160801b90046001600160801b031690565b610a118383836001611c4e565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611bb55772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611be1576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611bff57662386f26fc10000830492506010015b6305f5e1008310611c17576305f5e100830492506008015b6127108310611c2b57612710830492506004015b60648310611c3d576064830492506002015b600a83106108785760010192915050565b6002546001600160a01b038516611c7757604051622e076360e81b815260040160405180910390fd5b83600003611c985760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526006602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526005909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b85811015611d965760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611d6c5750611d6a600088848861197f565b155b15611d8a576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611d15565b506002556117f3565b6001600160e01b031981168114610ffb57600080fd5b600060208284031215611dc757600080fd5b813561149f81611d9f565b80358015158114611de257600080fd5b919050565b600060208284031215611df957600080fd5b61149f82611dd2565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611e3257611e32611e02565b604051601f8501601f19908116603f01168101908282118183101715611e5a57611e5a611e02565b81604052809350858152868686011115611e7357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e9f57600080fd5b81356001600160401b03811115611eb557600080fd5b8201601f81018413611ec657600080fd5b611a7a84823560208401611e18565b60005b83811015611ef0578181015183820152602001611ed8565b50506000910152565b60008151808452611f11816020860160208601611ed5565b601f01601f19169290920160200192915050565b60208152600061149f6020830184611ef9565b600060208284031215611f4a57600080fd5b5035919050565b80356001600160a01b0381168114611de257600080fd5b60008060408385031215611f7b57600080fd5b611f8483611f51565b946020939093013593505050565b600080600060608486031215611fa757600080fd5b611fb084611f51565b9250611fbe60208501611f51565b9150604084013590509250925092565b600060208284031215611fe057600080fd5b61149f82611f51565b6020808252825182820181905260009190848201906040850190845b8181101561202157835183529284019291840191600101612005565b50909695505050505050565b6000806040838503121561204057600080fd5b50508035926020909101359150565b6000806020838503121561206257600080fd5b82356001600160401b038082111561207957600080fd5b818501915085601f83011261208d57600080fd5b81358181111561209c57600080fd5b8660208260051b85010111156120b157600080fd5b60209290920196919550909350505050565b600080604083850312156120d657600080fd5b6120df83611f51565b91506120ed60208401611dd2565b90509250929050565b6000806000806080858703121561210c57600080fd5b61211585611f51565b935061212360208601611f51565b92506040850135915060608501356001600160401b0381111561214557600080fd5b8501601f8101871361215657600080fd5b61216587823560208401611e18565b91505092959194509250565b6000806040838503121561218457600080fd5b61218d83611f51565b91506120ed60208401611f51565b600181811c908216806121af57607f821691505b6020821081036121cf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610a1157600081815260208120601f850160051c810160208610156121fc5750805b601f850160051c820191505b8181101561221b57828155600101612208565b505050505050565b81516001600160401b0381111561223c5761223c611e02565b6122508161224a845461219b565b846121d5565b602080601f831160018114612285576000841561226d5750858301515b600019600386901b1c1916600185901b17855561221b565b600085815260208120601f198616915b828110156122b457888601518255948401946001909101908401612295565b50858210156122d25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60006001820161230a5761230a6122e2565b5060010190565b634e487b7160e01b600052603260045260246000fd5b80820180821115610878576108786122e2565b8082028115828204841417610878576108786122e2565b600080845461235f8161219b565b60018281168015612377576001811461238c576123bb565b60ff19841687528215158302870194506123bb565b8860005260208060002060005b858110156123b25781548a820152908401908201612399565b50505082870194505b5050505083516123cf818360208801611ed5565b64173539b7b760d91b9101908152600501949350505050565b81810381811115610878576108786122e2565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061242e90830184611ef9565b9695505050505050565b60006020828403121561244a57600080fd5b815161149f81611d9f56fea2646970667358221220e507d029b9e4025d357837c967bc13f2a7f532c0c25aca4843c60530a2ced0e664736f6c63430008110033
Deployed Bytecode
0x6080604052600436106102675760003560e01c806370a08231116101445780639b19251a116100b6578063b88d4fde1161007a578063b88d4fde14610732578063c87b56dd14610752578063d5abeb0114610772578063dc33e68114610788578063e985e9c5146107a8578063f2fde38b146107f157600080fd5b80639b19251a146106a5578063a0712d68146106d5578063a22cb465146106e8578063a475b5dd14610708578063ac4460021461071d57600080fd5b80638d859f3e116101085780638d859f3e146105ba5780638da5cb5b146105d557806390aa0b0f146105f357806391b7f5ed146106235780639231ab2a1461064357806395d89b411461069057600080fd5b806370a0823114610532578063715018a6146105525780637f00c7a6146105675780637f64978314610587578063868ff4a2146105a757600080fd5b80633f5e4741116101dd5780634f6ccce7116101a15780634f6ccce714610479578063518302271461049957806356faa023146104b85780635c975abb146104d85780636352211e146104f257806369bf95091461051257600080fd5b80633f5e4741146103eb57806342842e0e14610402578063438b6300146104225780634c0f38c21461044f5780634cf5f7a41461046457600080fd5b8063095ea7b31161022f578063095ea7b31461033d57806317e7f2951461035d57806318160ddd14610380578063239c70ae1461039557806323b872dd146103ab5780632f745c59146103cb57600080fd5b806301ffc9a71461026c57806302329a29146102a15780630675b7c6146102c357806306fdde03146102e3578063081812fc14610305575b600080fd5b34801561027857600080fd5b5061028c610287366004611db5565b610811565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004611de7565b61087e565b005b3480156102cf57600080fd5b506102c16102de366004611e8d565b610899565b3480156102ef57600080fd5b506102f86108b1565b6040516102989190611f25565b34801561031157600080fd5b50610325610320366004611f38565b610943565b6040516001600160a01b039091168152602001610298565b34801561034957600080fd5b506102c1610358366004611f68565b610989565b34801561036957600080fd5b50610372600081565b604051908152602001610298565b34801561038c57600080fd5b50600254610372565b3480156103a157600080fd5b5061037260095481565b3480156103b757600080fd5b506102c16103c6366004611f92565b610a16565b3480156103d757600080fd5b506103726103e6366004611f68565b610a21565b3480156103f757600080fd5b50601054151561028c565b34801561040e57600080fd5b506102c161041d366004611f92565b610b9c565b34801561042e57600080fd5b5061044261043d366004611fce565b610bb7565b6040516102989190611fe9565b34801561045b57600080fd5b50600c54610372565b34801561047057600080fd5b506102f8610c58565b34801561048557600080fd5b50610372610494366004611f38565b610ce6565b3480156104a557600080fd5b50600d5461028c90610100900460ff1681565b3480156104c457600080fd5b506102c16104d3366004611e8d565b610d14565b3480156104e457600080fd5b50600d5461028c9060ff1681565b3480156104fe57600080fd5b5061032561050d366004611f38565b610d28565b34801561051e57600080fd5b506102c161052d36600461202d565b610d3a565b34801561053e57600080fd5b5061037261054d366004611fce565b610d60565b34801561055e57600080fd5b506102c1610dae565b34801561057357600080fd5b506102c1610582366004611f38565b610dc2565b34801561059357600080fd5b506102c16105a236600461204f565b610dcf565b6102c16105b5366004611f38565b610e49565b3480156105c657600080fd5b50610372661ff973cafa800081565b3480156105e157600080fd5b506000546001600160a01b0316610325565b3480156105ff57600080fd5b5060105460115461060e919082565b60408051928352602083019190915201610298565b34801561062f57600080fd5b506102c161063e366004611f38565b610ffe565b34801561064f57600080fd5b5061066361065e366004611f38565b61100b565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610298565b34801561069c57600080fd5b506102f8611028565b3480156106b157600080fd5b5061028c6106c0366004611fce565b600a6020526000908152604090205460ff1681565b6102c16106e3366004611f38565b611037565b3480156106f457600080fd5b506102c16107033660046120c3565b611196565b34801561071457600080fd5b506102c161122b565b34801561072957600080fd5b506102c1611244565b34801561073e57600080fd5b506102c161074d3660046120f6565b6112eb565b34801561075e57600080fd5b506102f861076d366004611f38565b611325565b34801561077e57600080fd5b50610372600c5481565b34801561079457600080fd5b506103726107a3366004611fce565b6114a6565b3480156107b457600080fd5b5061028c6107c3366004612171565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156107fd57600080fd5b506102c161080c366004611fce565b6114b1565b60006001600160e01b031982166380ac58cd60e01b148061084257506001600160e01b03198216635b5e139f60e01b145b8061085d57506001600160e01b0319821663780e9d6360e01b145b8061087857506301ffc9a760e01b6001600160e01b03198316145b92915050565b610886611527565b600d805460ff1916911515919091179055565b6108a1611527565b600e6108ad8282612223565b5050565b6060600380546108c09061219b565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec9061219b565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b6000610950826002541190565b61096d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061099482610d28565b9050806001600160a01b0316836001600160a01b0316036109c85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109e857506109e681336107c3565b155b15610a06576040516367d9dca160e11b815260040160405180910390fd5b610a11838383611581565b505050565b610a118383836115dd565b6000610a2c83610d60565b8210610a8a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084015b60405180910390fd5b6000610a9560025490565b905060008060005b83811015610b3c576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610aef57805192505b876001600160a01b0316836001600160a01b031603610b2957868403610b1b5750935061087892505050565b83610b25816122f8565b9450505b5080610b34816122f8565b915050610a9d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a81565b610a11838383604051806020016040528060008152506112eb565b60606000610bc483610d60565b90506000816001600160401b03811115610be057610be0611e02565b604051908082528060200260200182016040528015610c09578160200160208202803683370190505b50905060005b82811015610c5057610c218582610a21565b828281518110610c3357610c33612311565b602090810291909101015280610c48816122f8565b915050610c0f565b509392505050565b600f8054610c659061219b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c919061219b565b8015610cde5780601f10610cb357610100808354040283529160200191610cde565b820191906000526020600020905b815481529060010190602001808311610cc157829003601f168201915b505050505081565b6000610cf160025490565b8210610d10576040516329c8c00760e21b815260040160405180910390fd5b5090565b610d1c611527565b600f6108ad8282612223565b6000610d33826117fa565b5192915050565b610d42611527565b60408051808201909152828152602001819052601091909155601155565b60006001600160a01b038216610d89576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160801b031690565b610db6611527565b610dc0600061188e565b565b610dca611527565b600955565b610dd7611527565b60005b81811015610a11576001600a6000858585818110610dfa57610dfa612311565b9050602002016020810190610e0f9190611fce565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610e41816122f8565b915050610dda565b323314610e985760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a81565b336000908152600a602052604090205460ff16610eea5760405162461bcd60e51b815260206004820152601060248201526f1393d517d25397d5d2125511531254d560821b6044820152606401610a81565b600d5460ff1615610f2f5760405162461bcd60e51b815260206004820152600f60248201526e18dbdb9d1c9858dd081c185d5cd959608a1b6044820152606401610a81565b600c5481610f3c60025490565b610f469190612327565b1115610f895760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610a81565b60115481610f96336114a6565b610fa09190612327565b1115610fe75760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610a81565b610ff133826118de565b610ffb60006118f8565b50565b611006611527565b601055565b6040805180820190915260008082526020820152610878826117fa565b6060600480546108c09061219b565b3233146110865760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a81565b600d5460ff16156110cb5760405162461bcd60e51b815260206004820152600f60248201526e18dbdb9d1c9858dd081c185d5cd959608a1b6044820152606401610a81565b600c54816110d860025490565b6110e29190612327565b11156111255760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610a81565b6009548111156111705760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610a81565b60105460009061118190839061233a565b905061118d33836118de565b6108ad816118f8565b336001600160a01b038316036111bf5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611233611527565b600d805461ff001916610100179055565b61124c611527565b60405160009073832e72f6befac993e576c93a002dda4a589095399047908381818185875af1925050503d80600081146112a2576040519150601f19603f3d011682016040523d82523d6000602084013e6112a7565b606091505b5050905080610ffb5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610a81565b6112f68484846115dd565b6113028484848461197f565b61131f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611332826002541190565b6113965760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a81565b60006113a3836001612327565b600d54909150610100900460ff1661144857600f80546113c29061219b565b80601f01602080910402602001604051908101604052809291908181526020018280546113ee9061219b565b801561143b5780601f106114105761010080835404028352916020019161143b565b820191906000526020600020905b81548152906001019060200180831161141e57829003601f168201915b5050505050915050919050565b6000600e80546114579061219b565b905011611473576040518060200160405280600081525061149f565b600e61147e82611a82565b60405160200161148f929190612351565b6040516020818303038152906040525b9392505050565b600061087882611b14565b6114b9611527565b6001600160a01b03811661151e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a81565b610ffb8161188e565b6000546001600160a01b03163314610dc05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115e8826117fa565b80519091506000906001600160a01b0316336001600160a01b0316148061161f57503361161484610943565b6001600160a01b0316145b806116315750815161163190336107c3565b90508061165157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116865760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166116ad57604051633a954ecd60e21b815260040160405180910390fd5b6116bd6000848460000151611581565b6001600160a01b03858116600090815260066020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600590935281842080546001600160e01b031916909117600160a01b426001600160401b0316021790559086018083529120549091166117b057611764816002541190565b156117b057825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611819826002541190565b61183657604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611884579392505050565b5060001901611838565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6108ad828260405180602001604052806000815250611b69565b803410156119415760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610a81565b80341115610ffb57336108fc61195783346123e8565b6040518115909202916000818181858888f193505050501580156108ad573d6000803e3d6000fd5b60006001600160a01b0384163b15611a7657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119c39033908990889088906004016123fb565b6020604051808303816000875af19250505080156119fe575060408051601f3d908101601f191682019092526119fb91810190612438565b60015b611a5c573d808015611a2c576040519150601f19603f3d011682016040523d82523d6000602084013e611a31565b606091505b508051600003611a54576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a7a565b5060015b949350505050565b60606000611a8f83611b76565b60010190506000816001600160401b03811115611aae57611aae611e02565b6040519080825280601f01601f191660200182016040528015611ad8576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611ae257509392505050565b60006001600160a01b038216611b3d576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160801b90046001600160801b031690565b610a118383836001611c4e565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611bb55772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611be1576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611bff57662386f26fc10000830492506010015b6305f5e1008310611c17576305f5e100830492506008015b6127108310611c2b57612710830492506004015b60648310611c3d576064830492506002015b600a83106108785760010192915050565b6002546001600160a01b038516611c7757604051622e076360e81b815260040160405180910390fd5b83600003611c985760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526006602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526005909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b85811015611d965760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611d6c5750611d6a600088848861197f565b155b15611d8a576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611d15565b506002556117f3565b6001600160e01b031981168114610ffb57600080fd5b600060208284031215611dc757600080fd5b813561149f81611d9f565b80358015158114611de257600080fd5b919050565b600060208284031215611df957600080fd5b61149f82611dd2565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611e3257611e32611e02565b604051601f8501601f19908116603f01168101908282118183101715611e5a57611e5a611e02565b81604052809350858152868686011115611e7357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e9f57600080fd5b81356001600160401b03811115611eb557600080fd5b8201601f81018413611ec657600080fd5b611a7a84823560208401611e18565b60005b83811015611ef0578181015183820152602001611ed8565b50506000910152565b60008151808452611f11816020860160208601611ed5565b601f01601f19169290920160200192915050565b60208152600061149f6020830184611ef9565b600060208284031215611f4a57600080fd5b5035919050565b80356001600160a01b0381168114611de257600080fd5b60008060408385031215611f7b57600080fd5b611f8483611f51565b946020939093013593505050565b600080600060608486031215611fa757600080fd5b611fb084611f51565b9250611fbe60208501611f51565b9150604084013590509250925092565b600060208284031215611fe057600080fd5b61149f82611f51565b6020808252825182820181905260009190848201906040850190845b8181101561202157835183529284019291840191600101612005565b50909695505050505050565b6000806040838503121561204057600080fd5b50508035926020909101359150565b6000806020838503121561206257600080fd5b82356001600160401b038082111561207957600080fd5b818501915085601f83011261208d57600080fd5b81358181111561209c57600080fd5b8660208260051b85010111156120b157600080fd5b60209290920196919550909350505050565b600080604083850312156120d657600080fd5b6120df83611f51565b91506120ed60208401611dd2565b90509250929050565b6000806000806080858703121561210c57600080fd5b61211585611f51565b935061212360208601611f51565b92506040850135915060608501356001600160401b0381111561214557600080fd5b8501601f8101871361215657600080fd5b61216587823560208401611e18565b91505092959194509250565b6000806040838503121561218457600080fd5b61218d83611f51565b91506120ed60208401611f51565b600181811c908216806121af57607f821691505b6020821081036121cf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610a1157600081815260208120601f850160051c810160208610156121fc5750805b601f850160051c820191505b8181101561221b57828155600101612208565b505050505050565b81516001600160401b0381111561223c5761223c611e02565b6122508161224a845461219b565b846121d5565b602080601f831160018114612285576000841561226d5750858301515b600019600386901b1c1916600185901b17855561221b565b600085815260208120601f198616915b828110156122b457888601518255948401946001909101908401612295565b50858210156122d25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60006001820161230a5761230a6122e2565b5060010190565b634e487b7160e01b600052603260045260246000fd5b80820180821115610878576108786122e2565b8082028115828204841417610878576108786122e2565b600080845461235f8161219b565b60018281168015612377576001811461238c576123bb565b60ff19841687528215158302870194506123bb565b8860005260208060002060005b858110156123b25781548a820152908401908201612399565b50505082870194505b5050505083516123cf818360208801611ed5565b64173539b7b760d91b9101908152600501949350505050565b81810381811115610878576108786122e2565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061242e90830184611ef9565b9695505050505050565b60006020828403121561244a57600080fd5b815161149f81611d9f56fea2646970667358221220e507d029b9e4025d357837c967bc13f2a7f532c0c25aca4843c60530a2ced0e664736f6c63430008110033
Deployed Bytecode Sourcemap
67464:6730:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51957:372;;;;;;;;;;-1:-1:-1;51957:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;51957:372:0;;;;;;;;73878:69;;;;;;;;;;-1:-1:-1;73878:69:0;;;;;:::i;:::-;;:::i;:::-;;72843:109;;;;;;;;;;-1:-1:-1;72843:109:0;;;;;:::i;:::-;;:::i;53773:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55250:204::-;;;;;;;;;;-1:-1:-1;55250:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3272:32:1;;;3254:51;;3242:2;3227:18;55250:204:0;3108:203:1;54839:345:0;;;;;;;;;;-1:-1:-1;54839:345:0;;;;;:::i;:::-;;:::i;67768:49::-;;;;;;;;;;;;67810:7;67768:49;;;;;3899:25:1;;;3887:2;3872:18;67768:49:0;3753:177:1;50487:101:0;;;;;;;;;;-1:-1:-1;50567:13:0;;50487:101;;67554:32;;;;;;;;;;;;;;;;56107:170;;;;;;;;;;-1:-1:-1;56107:170:0;;;;;:::i;:::-;;:::i;51141:744::-;;;;;;;;;;-1:-1:-1;51141:744:0;;;;;:::i;:::-;;:::i;73158:94::-;;;;;;;;;;-1:-1:-1;73225:10:0;:16;:21;;73158:94;;56348:185;;;;;;;;;;-1:-1:-1;56348:185:0;;;;;:::i;:::-;;:::i;72115:316::-;;;;;;;;;;-1:-1:-1;72115:316:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;70972:71::-;;;;;;;;;;-1:-1:-1;71032:9:0;;70972:71;;67855:35;;;;;;;;;;;;;:::i;50665:176::-;;;;;;;;;;-1:-1:-1;50665:176:0;;;;;:::i;:::-;;:::i;67735:28::-;;;;;;;;;;-1:-1:-1;67735:28:0;;;;;;;;;;;73025:126;;;;;;;;;;-1:-1:-1;73025:126:0;;;;;:::i;:::-;;:::i;67705:25::-;;;;;;;;;;-1:-1:-1;67705:25:0;;;;;;;;53582:124;;;;;;;;;;-1:-1:-1;53582:124:0;;;;;:::i;:::-;;:::i;73310:145::-;;;;;;;;;;-1:-1:-1;73310:145:0;;;;;:::i;:::-;;:::i;52393:206::-;;;;;;;;;;-1:-1:-1;52393:206:0;;;;;:::i;:::-;;:::i;66561:103::-;;;;;;;;;;;;;:::i;73461:112::-;;;;;;;;;;-1:-1:-1;73461:112:0;;;;;:::i;:::-;;:::i;70772:194::-;;;;;;;;;;-1:-1:-1;70772:194:0;;;;;:::i;:::-;;:::i;71049:448::-;;;;;;:::i;:::-;;:::i;73260:43::-;;;;;;;;;;;;73292:11;73260:43;;65913:87;;;;;;;;;;-1:-1:-1;65959:7:0;65986:6;-1:-1:-1;;;;;65986:6:0;65913:87;;67982:28;;;;;;;;;;-1:-1:-1;67982:28:0;;;;;;;;;;;;;6143:25:1;;;6199:2;6184:18;;6177:34;;;;6116:18;67982:28:0;5969:248:1;73579:85:0;;;;;;;;;;-1:-1:-1;73579:85:0;;;;;:::i;:::-;;:::i;74064:125::-;;;;;;;;;;-1:-1:-1;74064:125:0;;;;;:::i;:::-;;:::i;:::-;;;;6454:13:1;;-1:-1:-1;;;;;6450:39:1;6432:58;;6550:4;6538:17;;;6532:24;-1:-1:-1;;;;;6528:49:1;6506:20;;;6499:79;;;;6405:18;74064:125:0;6222:362:1;53942:104:0;;;;;;;;;;;;;:::i;67591:41::-;;;;;;;;;;-1:-1:-1;67591:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;71509:390;;;;;;:::i;:::-;;:::i;55526:279::-;;;;;;;;;;-1:-1:-1;55526:279:0;;;;;:::i;:::-;;:::i;72958:61::-;;;;;;;;;;;;;:::i;73672:200::-;;;;;;;;;;;;;:::i;56604:308::-;;;;;;;;;;-1:-1:-1;56604:308:0;;;;;:::i;:::-;;:::i;72440:396::-;;;;;;;;;;-1:-1:-1;72440:396:0;;;;;:::i;:::-;;:::i;67669:31::-;;;;;;;;;;;;;;;;73955:103;;;;;;;;;;-1:-1:-1;73955:103:0;;;;;:::i;:::-;;:::i;55876:164::-;;;;;;;;;;-1:-1:-1;55876:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;55997:25:0;;;55973:4;55997:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;55876:164;66819:201;;;;;;;;;;-1:-1:-1;66819:201:0;;;;;:::i;:::-;;:::i;51957:372::-;52059:4;-1:-1:-1;;;;;;52096:40:0;;-1:-1:-1;;;52096:40:0;;:105;;-1:-1:-1;;;;;;;52153:48:0;;-1:-1:-1;;;52153:48:0;52096:105;:172;;;-1:-1:-1;;;;;;;52218:50:0;;-1:-1:-1;;;52218:50:0;52096:172;:225;;;-1:-1:-1;;;;;;;;;;12406:40:0;;;52285:36;52076:245;51957:372;-1:-1:-1;;51957:372:0:o;73878:69::-;65799:13;:11;:13::i;:::-;73930:6:::1;:15:::0;;-1:-1:-1;;73930:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;73878:69::o;72843:109::-;65799:13;:11;:13::i;:::-;72922:12:::1;:28;72937:13:::0;72922:12;:28:::1;:::i;:::-;;72843:109:::0;:::o;53773:100::-;53827:13;53860:5;53853:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53773:100;:::o;55250:204::-;55318:7;55343:16;55351:7;57258:13;;-1:-1:-1;57248:23:0;57167:112;55343:16;55338:64;;55368:34;;-1:-1:-1;;;55368:34:0;;;;;;;;;;;55338:64;-1:-1:-1;55422:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;55422:24:0;;55250:204::o;54839:345::-;54912:13;54928:24;54944:7;54928:15;:24::i;:::-;54912:40;;54973:5;-1:-1:-1;;;;;54967:11:0;:2;-1:-1:-1;;;;;54967:11:0;;54963:48;;54987:24;;-1:-1:-1;;;54987:24:0;;;;;;;;;;;54963:48;47923:10;-1:-1:-1;;;;;55028:21:0;;;;;;:63;;-1:-1:-1;55054:37:0;55071:5;47923:10;55876:164;:::i;55054:37::-;55053:38;55028:63;55024:111;;;55100:35;;-1:-1:-1;;;55100:35:0;;;;;;;;;;;55024:111;55148:28;55157:2;55161:7;55170:5;55148:8;:28::i;:::-;54901:283;54839:345;;:::o;56107:170::-;56241:28;56251:4;56257:2;56261:7;56241:9;:28::i;51141:744::-;51250:7;51285:16;51295:5;51285:9;:16::i;:::-;51277:5;:24;51269:71;;;;-1:-1:-1;;;51269:71:0;;10576:2:1;51269:71:0;;;10558:21:1;10615:2;10595:18;;;10588:30;10654:34;10634:18;;;10627:62;-1:-1:-1;;;10705:18:1;;;10698:32;10747:19;;51269:71:0;;;;;;;;;51347:22;51372:13;50567;;;50487:101;51372:13;51347:38;;51392:19;51422:25;51472:9;51467:350;51491:14;51487:1;:18;51467:350;;;51521:31;51555:14;;;:11;:14;;;;;;;;;51521:48;;;;;;;;;-1:-1:-1;;;;;51521:48:0;;;;;-1:-1:-1;;;51521:48:0;;;-1:-1:-1;;;;;51521:48:0;;;;;;;;51582:28;51578:89;;51643:14;;;-1:-1:-1;51578:89:0;51700:5;-1:-1:-1;;;;;51679:26:0;:17;-1:-1:-1;;;;;51679:26:0;;51675:135;;51737:5;51722:11;:20;51718:59;;-1:-1:-1;51764:1:0;-1:-1:-1;51757:8:0;;-1:-1:-1;;;51757:8:0;51718:59;51787:13;;;;:::i;:::-;;;;51675:135;-1:-1:-1;51507:3:0;;;;:::i;:::-;;;;51467:350;;;-1:-1:-1;51823:56:0;;-1:-1:-1;;;51823:56:0;;11251:2:1;51823:56:0;;;11233:21:1;11290:2;11270:18;;;11263:30;11329:34;11309:18;;;11302:62;-1:-1:-1;;;11380:18:1;;;11373:44;11434:19;;51823:56:0;11049:410:1;56348:185:0;56486:39;56503:4;56509:2;56513:7;56486:39;;;;;;;;;;;;:16;:39::i;72115:316::-;72175:16;72200:23;72226:17;72236:6;72226:9;:17::i;:::-;72200:43;;72250:25;72292:15;-1:-1:-1;;;;;72278:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;72278:30:0;;72250:58;;72320:9;72315:89;72335:15;72331:1;:19;72315:89;;;72372:30;72392:6;72400:1;72372:19;:30::i;:::-;72358:8;72367:1;72358:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;72352:3;;;;:::i;:::-;;;;72315:89;;;-1:-1:-1;72417:8:0;72115:316;-1:-1:-1;;;72115:316:0:o;67855:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50665:176::-;50732:7;50765:13;50567;;;50487:101;50765:13;50756:5;:22;50752:58;;50787:23;;-1:-1:-1;;;50787:23:0;;;;;;;;;;;50752:58;-1:-1:-1;50828:5:0;50665:176::o;73025:126::-;65799:13;:11;:13::i;:::-;73112:19:::1;:37;73134:15:::0;73112:19;:37:::1;:::i;53582:124::-:0;53646:7;53673:20;53685:7;53673:11;:20::i;:::-;:25;;53582:124;-1:-1:-1;;53582:124:0:o;73310:145::-;65799:13;:11;:13::i;:::-;73416:37:::1;::::0;;;;::::1;::::0;;;;;;::::1;;::::0;;;73403:10:::1;:50:::0;;;;;;73310:145::o;52393:206::-;52457:7;-1:-1:-1;;;;;52481:19:0;;52477:60;;52509:28;;-1:-1:-1;;;52509:28:0;;;;;;;;;;;52477:60;-1:-1:-1;;;;;;52563:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;52563:27:0;;52393:206::o;66561:103::-;65799:13;:11;:13::i;:::-;66626:30:::1;66653:1;66626:18;:30::i;:::-;66561:103::o:0;73461:112::-;65799:13;:11;:13::i;:::-;73538::::1;:33:::0;73461:112::o;70772:194::-;65799:13;:11;:13::i;:::-;70877:6:::1;70872:87;70889:25:::0;;::::1;70872:87;;;70953:4;70922:9;:28;70932:14;;70947:1;70932:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;70922:28:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;70922:28:0;:35;;-1:-1:-1;;70922:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;70916:3;::::1;::::0;::::1;:::i;:::-;;;;70872:87;;71049:448:::0;70697:9;70710:10;70697:23;70689:66;;;;-1:-1:-1;;;70689:66:0;;11798:2:1;70689:66:0;;;11780:21:1;11837:2;11817:18;;;11810:30;11876:32;11856:18;;;11849:60;11926:18;;70689:66:0;11596:354:1;70689:66:0;71149:10:::1;71139:21;::::0;;;:9:::1;:21;::::0;;;;;::::1;;71131:50;;;::::0;-1:-1:-1;;;71131:50:0;;12157:2:1;71131:50:0::1;::::0;::::1;12139:21:1::0;12196:2;12176:18;;;12169:30;-1:-1:-1;;;12215:18:1;;;12208:46;12271:18;;71131:50:0::1;11955:340:1::0;71131:50:0::1;71197:6;::::0;::::1;;71196:7;71188:35;;;::::0;-1:-1:-1;;;71188:35:0;;12502:2:1;71188:35:0::1;::::0;::::1;12484:21:1::0;12541:2;12521:18;;;12514:30;-1:-1:-1;;;12560:18:1;;;12553:45;12615:18;;71188:35:0::1;12300:339:1::0;71188:35:0::1;71270:9;;71258:8;71242:13;50567::::0;;;50487:101;71242:13:::1;:24;;;;:::i;:::-;:37;;71234:68;;;::::0;-1:-1:-1;;;71234:68:0;;12976:2:1;71234:68:0::1;::::0;::::1;12958:21:1::0;13015:2;12995:18;;;12988:30;-1:-1:-1;;;13034:18:1;;;13027:48;13092:18;;71234:68:0::1;12774:342:1::0;71234:68:0::1;71357:29:::0;;71345:8;71318:24:::1;71331:10;71318:12;:24::i;:::-;:35;;;;:::i;:::-;:68;;71310:103;;;::::0;-1:-1:-1;;;71310:103:0;;13323:2:1;71310:103:0::1;::::0;::::1;13305:21:1::0;13362:2;13342:18;;;13335:30;-1:-1:-1;;;13381:18:1;;;13374:52;13443:18;;71310:103:0::1;13121:346:1::0;71310:103:0::1;71422:31;71432:10;71444:8;71422:9;:31::i;:::-;71462:29;67810:7;71462:12;:29::i;:::-;71049:448:::0;:::o;73579:85::-;65799:13;:11;:13::i;:::-;73638:10:::1;:24:::0;73579:85::o;74064:125::-;-1:-1:-1;;;;;;;;;;;;;;;;;74167:20:0;74179:7;74167:11;:20::i;53942:104::-;53998:13;54031:7;54024:14;;;;;:::i;71509:390::-;70697:9;70710:10;70697:23;70689:66;;;;-1:-1:-1;;;70689:66:0;;11798:2:1;70689:66:0;;;11780:21:1;11837:2;11817:18;;;11810:30;11876:32;11856:18;;;11849:60;11926:18;;70689:66:0;11596:354:1;70689:66:0;71587:6:::1;::::0;::::1;;71586:7;71578:35;;;::::0;-1:-1:-1;;;71578:35:0;;12502:2:1;71578:35:0::1;::::0;::::1;12484:21:1::0;12541:2;12521:18;;;12514:30;-1:-1:-1;;;12560:18:1;;;12553:45;12615:18;;71578:35:0::1;12300:339:1::0;71578:35:0::1;71662:9;;71650:8;71634:13;50567::::0;;;50487:101;71634:13:::1;:24;;;;:::i;:::-;:37;;71626:68;;;::::0;-1:-1:-1;;;71626:68:0;;12976:2:1;71626:68:0::1;::::0;::::1;12958:21:1::0;13015:2;12995:18;;;12988:30;-1:-1:-1;;;13034:18:1;;;13027:48;13092:18;;71626:68:0::1;12774:342:1::0;71626:68:0::1;71726:13;;71714:8;:25;;71706:60;;;::::0;-1:-1:-1;;;71706:60:0;;13323:2:1;71706:60:0::1;::::0;::::1;13305:21:1::0;13362:2;13342:18;;;13335:30;-1:-1:-1;;;13381:18:1;;;13374:52;13443:18;;71706:60:0::1;13121:346:1::0;71706:60:0::1;71795:10;:16:::0;71775:17:::1;::::0;71795:27:::1;::::0;71814:8;;71795:27:::1;:::i;:::-;71775:47;;71830:31;71840:10;71852:8;71830:9;:31::i;:::-;71870:23;71883:9;71870:12;:23::i;55526:279::-:0;47923:10;-1:-1:-1;;;;;55617:24:0;;;55613:54;;55650:17;;-1:-1:-1;;;55650:17:0;;;;;;;;;;;55613:54;47923:10;55680:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;55680:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;55680:53:0;;;;;;;;;;55749:48;;540:41:1;;;55680:42:0;;47923:10;55749:48;;513:18:1;55749:48:0;;;;;;;55526:279;;:::o;72958:61::-;65799:13;:11;:13::i;:::-;73002:8:::1;:15:::0;;-1:-1:-1;;73002:15:0::1;;;::::0;;72958:61::o;73672:200::-;65799:13;:11;:13::i;:::-;73742:81:::1;::::0;73724:12:::1;::::0;73742:42:::1;::::0;73797:21:::1;::::0;73724:12;73742:81;73724:12;73742:81;73797:21;73742:42;:81:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73723:100;;;73838:7;73830:36;;;::::0;-1:-1:-1;;;73830:36:0;;14057:2:1;73830:36:0::1;::::0;::::1;14039:21:1::0;14096:2;14076:18;;;14069:30;-1:-1:-1;;;14115:18:1;;;14108:46;14171:18;;73830:36:0::1;13855:340:1::0;56604:308:0;56763:28;56773:4;56779:2;56783:7;56763:9;:28::i;:::-;56807:48;56830:4;56836:2;56840:7;56849:5;56807:22;:48::i;:::-;56802:102;;56864:40;;-1:-1:-1;;;56864:40:0;;;;;;;;;;;56802:102;56604:308;;;;:::o;72440:396::-;72513:13;72547:16;72555:7;57258:13;;-1:-1:-1;57248:23:0;57167:112;72547:16;72539:76;;;;-1:-1:-1;;;72539:76:0;;14402:2:1;72539:76:0;;;14384:21:1;14441:2;14421:18;;;14414:30;14480:34;14460:18;;;14453:62;-1:-1:-1;;;14531:18:1;;;14524:45;14586:19;;72539:76:0;14200:411:1;72539:76:0;72626:14;72643:11;:7;72653:1;72643:11;:::i;:::-;72669:8;;72626:28;;-1:-1:-1;72669:8:0;;;;;72665:42;;72686:19;72679:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72440:396;;;:::o;72665:42::-;72753:1;72730:12;72724:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;72781:12;72795:17;:6;:15;:17::i;:::-;72764:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72724:104;72717:111;72440:396;-1:-1:-1;;;72440:396:0:o;73955:103::-;74013:7;74036:20;74050:5;74036:13;:20::i;66819:201::-;65799:13;:11;:13::i;:::-;-1:-1:-1;;;;;66908:22:0;::::1;66900:73;;;::::0;-1:-1:-1;;;66900:73:0;;16010:2:1;66900:73:0::1;::::0;::::1;15992:21:1::0;16049:2;16029:18;;;16022:30;16088:34;16068:18;;;16061:62;-1:-1:-1;;;16139:18:1;;;16132:36;16185:19;;66900:73:0::1;15808:402:1::0;66900:73:0::1;66984:28;67003:8;66984:18;:28::i;66078:132::-:0;65959:7;65986:6;-1:-1:-1;;;;;65986:6:0;47923:10;66142:23;66134:68;;;;-1:-1:-1;;;66134:68:0;;16417:2:1;66134:68:0;;;16399:21:1;;;16436:18;;;16429:30;16495:34;16475:18;;;16468:62;16547:18;;66134:68:0;16215:356:1;61930:196:0;62045:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;62045:29:0;-1:-1:-1;;;;;62045:29:0;;;;;;;;;62090:28;;62045:24;;62090:28;;;;;;;61930:196;;;:::o;59850:1962::-;59965:35;60003:20;60015:7;60003:11;:20::i;:::-;60078:18;;59965:58;;-1:-1:-1;60036:22:0;;-1:-1:-1;;;;;60062:34:0;47923:10;-1:-1:-1;;;;;60062:34:0;;:87;;;-1:-1:-1;47923:10:0;60113:20;60125:7;60113:11;:20::i;:::-;-1:-1:-1;;;;;60113:36:0;;60062:87;:154;;;-1:-1:-1;60183:18:0;;60166:50;;47923:10;55876:164;:::i;60166:50::-;60036:181;;60235:17;60230:66;;60261:35;;-1:-1:-1;;;60261:35:0;;;;;;;;;;;60230:66;60333:4;-1:-1:-1;;;;;60311:26:0;:13;:18;;;-1:-1:-1;;;;;60311:26:0;;60307:67;;60346:28;;-1:-1:-1;;;60346:28:0;;;;;;;;;;;60307:67;-1:-1:-1;;;;;60389:16:0;;60385:52;;60414:23;;-1:-1:-1;;;60414:23:0;;;;;;;;;;;60385:52;60558:49;60575:1;60579:7;60588:13;:18;;;60558:8;:49::i;:::-;-1:-1:-1;;;;;60903:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;60903:31:0;;;-1:-1:-1;;;;;60903:31:0;;;-1:-1:-1;;60903:31:0;;;;;;;60949:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;60949:29:0;;;;;;;;;;;;;60995:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;61040:61:0;;;;-1:-1:-1;;;61085:15:0;-1:-1:-1;;;;;61040:61:0;;;;;61375:11;;;61405:24;;;;;:29;61375:11;;61405:29;61401:295;;61473:20;61481:11;57258:13;;-1:-1:-1;57248:23:0;57167:112;61473:20;61469:212;;;61550:18;;;61518:24;;;:11;:24;;;;;;;;:50;;61633:28;;;;-1:-1:-1;;;;;61591:70:0;-1:-1:-1;;;61591:70:0;-1:-1:-1;;;;;;61591:70:0;;;-1:-1:-1;;;;;61518:50:0;;;61591:70;;;;;;;61469:212;60878:829;61743:7;61739:2;-1:-1:-1;;;;;61724:27:0;61733:4;-1:-1:-1;;;;;61724:27:0;;;;;;;;;;;61762:42;59954:1858;;59850:1962;;;:::o;53016:504::-;-1:-1:-1;;;;;;;;;;;;;;;;;53116:16:0;53124:7;57258:13;;-1:-1:-1;57248:23:0;57167:112;53116:16;53111:61;;53141:31;;-1:-1:-1;;;53141:31:0;;;;;;;;;;;53111:61;53230:7;53210:245;53277:31;53311:17;;;:11;:17;;;;;;;;;53277:51;;;;;;;;;-1:-1:-1;;;;;53277:51:0;;;;;-1:-1:-1;;;53277:51:0;;;-1:-1:-1;;;;;53277:51:0;;;;;;;;53351:28;53347:93;;53411:9;53016:504;-1:-1:-1;;;53016:504:0:o;53347:93::-;-1:-1:-1;;;53250:6:0;53210:245;;67180:191;67254:16;67273:6;;-1:-1:-1;;;;;67290:17:0;;;-1:-1:-1;;;;;;67290:17:0;;;;;;67323:40;;67273:6;;;;;;;67323:40;;67254:16;67323:40;67243:128;67180:191;:::o;57287:104::-;57356:27;57366:2;57370:8;57356:27;;;;;;;;;;;;:9;:27::i;71905:204::-;71978:5;71965:9;:18;;71957:53;;;;-1:-1:-1;;;71957:53:0;;16778:2:1;71957:53:0;;;16760:21:1;16817:2;16797:18;;;16790:30;-1:-1:-1;;;16836:18:1;;;16829:52;16898:18;;71957:53:0;16576:346:1;71957:53:0;72033:5;72021:9;:17;72017:87;;;72057:10;72049:47;72078:17;72090:5;72078:9;:17;:::i;:::-;72049:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62691:765;62846:4;-1:-1:-1;;;;;62867:13:0;;1561:19;:23;62863:586;;62903:72;;-1:-1:-1;;;62903:72:0;;-1:-1:-1;;;;;62903:36:0;;;;;:72;;47923:10;;62954:4;;62960:7;;62969:5;;62903:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62903:72:0;;;;;;;;-1:-1:-1;;62903:72:0;;;;;;;;;;;;:::i;:::-;;;62899:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63149:6;:13;63166:1;63149:18;63145:234;;63176:40;;-1:-1:-1;;;63176:40:0;;;;;;;;;;;63145:234;63329:6;63323:13;63314:6;63310:2;63306:15;63299:38;62899:495;-1:-1:-1;;;;;;63026:55:0;-1:-1:-1;;;63026:55:0;;-1:-1:-1;63019:62:0;;62863:586;-1:-1:-1;63433:4:0;62863:586;62691:765;;;;;;:::o;42324:716::-;42380:13;42431:14;42448:17;42459:5;42448:10;:17::i;:::-;42468:1;42448:21;42431:38;;42484:20;42518:6;-1:-1:-1;;;;;42507:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42507:18:0;-1:-1:-1;42484:41:0;-1:-1:-1;42649:28:0;;;42665:2;42649:28;42706:288;-1:-1:-1;;42738:5:0;-1:-1:-1;;;42875:2:0;42864:14;;42859:30;42738:5;42846:44;42936:2;42927:11;;;-1:-1:-1;42957:21:0;42706:288;42957:21;-1:-1:-1;43015:6:0;42324:716;-1:-1:-1;;;42324:716:0:o;52607:207::-;52668:7;-1:-1:-1;;;;;52692:19:0;;52688:59;;52720:27;;-1:-1:-1;;;52720:27:0;;;;;;;;;;;52688:59;-1:-1:-1;;;;;;52773:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;52773:32:0;;-1:-1:-1;;;;;52773:32:0;;52607:207::o;57754:163::-;57877:32;57883:2;57887:8;57897:5;57904:4;57877:5;:32::i;39190:922::-;39243:7;;-1:-1:-1;;;39321:15:0;;39317:102;;-1:-1:-1;;;39357:15:0;;;-1:-1:-1;39401:2:0;39391:12;39317:102;39446:6;39437:5;:15;39433:102;;39482:6;39473:15;;;-1:-1:-1;39517:2:0;39507:12;39433:102;39562:6;39553:5;:15;39549:102;;39598:6;39589:15;;;-1:-1:-1;39633:2:0;39623:12;39549:102;39678:5;39669;:14;39665:99;;39713:5;39704:14;;;-1:-1:-1;39747:1:0;39737:11;39665:99;39791:5;39782;:14;39778:99;;39826:5;39817:14;;;-1:-1:-1;39860:1:0;39850:11;39778:99;39904:5;39895;:14;39891:99;;39939:5;39930:14;;;-1:-1:-1;39973:1:0;39963:11;39891:99;40017:5;40008;:14;40004:66;;40053:1;40043:11;40098:6;39190:922;-1:-1:-1;;39190:922:0:o;58176:1420::-;58338:13;;-1:-1:-1;;;;;58366:16:0;;58362:48;;58391:19;;-1:-1:-1;;;58391:19:0;;;;;;;;;;;58362:48;58425:8;58437:1;58425:13;58421:44;;58447:18;;-1:-1:-1;;;58447:18:0;;;;;;;;;;;58421:44;-1:-1:-1;;;;;58818:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;58818:45:0;;-1:-1:-1;;;;;58818:45:0;;;;;;;;;;58878:50;;;;;;;;;;;;;;58945:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;58995:66:0;;;;-1:-1:-1;;;59045:15:0;-1:-1:-1;;;;;58995:66:0;;;;;;58945:25;;59130:330;59150:8;59146:1;:12;59130:330;;;59189:38;;59214:12;;-1:-1:-1;;;;;59189:38:0;;;59206:1;;59189:38;;59206:1;;59189:38;59250:4;:68;;;;;59259:59;59290:1;59294:2;59298:12;59312:5;59259:22;:59::i;:::-;59258:60;59250:68;59246:164;;;59350:40;;-1:-1:-1;;;59350:40:0;;;;;;;;;;;59246:164;59430:14;;;;;59160:3;59130:330;;;-1:-1:-1;59476:13:0;:28;59528:60;56604:308;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:127::-;1003:10;998:3;994:20;991:1;984:31;1034:4;1031:1;1024:15;1058:4;1055:1;1048:15;1074:632;1139:5;-1:-1:-1;;;;;1210:2:1;1202:6;1199:14;1196:40;;;1216:18;;:::i;:::-;1291:2;1285:9;1259:2;1345:15;;-1:-1:-1;;1341:24:1;;;1367:2;1337:33;1333:42;1321:55;;;1391:18;;;1411:22;;;1388:46;1385:72;;;1437:18;;:::i;:::-;1477:10;1473:2;1466:22;1506:6;1497:15;;1536:6;1528;1521:22;1576:3;1567:6;1562:3;1558:16;1555:25;1552:45;;;1593:1;1590;1583:12;1552:45;1643:6;1638:3;1631:4;1623:6;1619:17;1606:44;1698:1;1691:4;1682:6;1674;1670:19;1666:30;1659:41;;;;1074:632;;;;;:::o;1711:451::-;1780:6;1833:2;1821:9;1812:7;1808:23;1804:32;1801:52;;;1849:1;1846;1839:12;1801:52;1889:9;1876:23;-1:-1:-1;;;;;1914:6:1;1911:30;1908:50;;;1954:1;1951;1944:12;1908:50;1977:22;;2030:4;2022:13;;2018:27;-1:-1:-1;2008:55:1;;2059:1;2056;2049:12;2008:55;2082:74;2148:7;2143:2;2130:16;2125:2;2121;2117:11;2082:74;:::i;2167:250::-;2252:1;2262:113;2276:6;2273:1;2270:13;2262:113;;;2352:11;;;2346:18;2333:11;;;2326:39;2298:2;2291:10;2262:113;;;-1:-1:-1;;2409:1:1;2391:16;;2384:27;2167:250::o;2422:271::-;2464:3;2502:5;2496:12;2529:6;2524:3;2517:19;2545:76;2614:6;2607:4;2602:3;2598:14;2591:4;2584:5;2580:16;2545:76;:::i;:::-;2675:2;2654:15;-1:-1:-1;;2650:29:1;2641:39;;;;2682:4;2637:50;;2422:271;-1:-1:-1;;2422:271:1:o;2698:220::-;2847:2;2836:9;2829:21;2810:4;2867:45;2908:2;2897:9;2893:18;2885:6;2867:45;:::i;2923:180::-;2982:6;3035:2;3023:9;3014:7;3010:23;3006:32;3003:52;;;3051:1;3048;3041:12;3003:52;-1:-1:-1;3074:23:1;;2923:180;-1:-1:-1;2923:180:1:o;3316:173::-;3384:20;;-1:-1:-1;;;;;3433:31:1;;3423:42;;3413:70;;3479:1;3476;3469:12;3494:254;3562:6;3570;3623:2;3611:9;3602:7;3598:23;3594:32;3591:52;;;3639:1;3636;3629:12;3591:52;3662:29;3681:9;3662:29;:::i;:::-;3652:39;3738:2;3723:18;;;;3710:32;;-1:-1:-1;;;3494:254:1:o;3935:328::-;4012:6;4020;4028;4081:2;4069:9;4060:7;4056:23;4052:32;4049:52;;;4097:1;4094;4087:12;4049:52;4120:29;4139:9;4120:29;:::i;:::-;4110:39;;4168:38;4202:2;4191:9;4187:18;4168:38;:::i;:::-;4158:48;;4253:2;4242:9;4238:18;4225:32;4215:42;;3935:328;;;;;:::o;4268:186::-;4327:6;4380:2;4368:9;4359:7;4355:23;4351:32;4348:52;;;4396:1;4393;4386:12;4348:52;4419:29;4438:9;4419:29;:::i;4459:632::-;4630:2;4682:21;;;4752:13;;4655:18;;;4774:22;;;4601:4;;4630:2;4853:15;;;;4827:2;4812:18;;;4601:4;4896:169;4910:6;4907:1;4904:13;4896:169;;;4971:13;;4959:26;;5040:15;;;;5005:12;;;;4932:1;4925:9;4896:169;;;-1:-1:-1;5082:3:1;;4459:632;-1:-1:-1;;;;;;4459:632:1:o;5096:248::-;5164:6;5172;5225:2;5213:9;5204:7;5200:23;5196:32;5193:52;;;5241:1;5238;5231:12;5193:52;-1:-1:-1;;5264:23:1;;;5334:2;5319:18;;;5306:32;;-1:-1:-1;5096:248:1:o;5349:615::-;5435:6;5443;5496:2;5484:9;5475:7;5471:23;5467:32;5464:52;;;5512:1;5509;5502:12;5464:52;5552:9;5539:23;-1:-1:-1;;;;;5622:2:1;5614:6;5611:14;5608:34;;;5638:1;5635;5628:12;5608:34;5676:6;5665:9;5661:22;5651:32;;5721:7;5714:4;5710:2;5706:13;5702:27;5692:55;;5743:1;5740;5733:12;5692:55;5783:2;5770:16;5809:2;5801:6;5798:14;5795:34;;;5825:1;5822;5815:12;5795:34;5878:7;5873:2;5863:6;5860:1;5856:14;5852:2;5848:23;5844:32;5841:45;5838:65;;;5899:1;5896;5889:12;5838:65;5930:2;5922:11;;;;;5952:6;;-1:-1:-1;5349:615:1;;-1:-1:-1;;;;5349:615:1:o;6589:254::-;6654:6;6662;6715:2;6703:9;6694:7;6690:23;6686:32;6683:52;;;6731:1;6728;6721:12;6683:52;6754:29;6773:9;6754:29;:::i;:::-;6744:39;;6802:35;6833:2;6822:9;6818:18;6802:35;:::i;:::-;6792:45;;6589:254;;;;;:::o;6848:667::-;6943:6;6951;6959;6967;7020:3;7008:9;6999:7;6995:23;6991:33;6988:53;;;7037:1;7034;7027:12;6988:53;7060:29;7079:9;7060:29;:::i;:::-;7050:39;;7108:38;7142:2;7131:9;7127:18;7108:38;:::i;:::-;7098:48;;7193:2;7182:9;7178:18;7165:32;7155:42;;7248:2;7237:9;7233:18;7220:32;-1:-1:-1;;;;;7267:6:1;7264:30;7261:50;;;7307:1;7304;7297:12;7261:50;7330:22;;7383:4;7375:13;;7371:27;-1:-1:-1;7361:55:1;;7412:1;7409;7402:12;7361:55;7435:74;7501:7;7496:2;7483:16;7478:2;7474;7470:11;7435:74;:::i;:::-;7425:84;;;6848:667;;;;;;;:::o;7520:260::-;7588:6;7596;7649:2;7637:9;7628:7;7624:23;7620:32;7617:52;;;7665:1;7662;7655:12;7617:52;7688:29;7707:9;7688:29;:::i;:::-;7678:39;;7736:38;7770:2;7759:9;7755:18;7736:38;:::i;7785:380::-;7864:1;7860:12;;;;7907;;;7928:61;;7982:4;7974:6;7970:17;7960:27;;7928:61;8035:2;8027:6;8024:14;8004:18;8001:38;7998:161;;8081:10;8076:3;8072:20;8069:1;8062:31;8116:4;8113:1;8106:15;8144:4;8141:1;8134:15;7998:161;;7785:380;;;:::o;8296:545::-;8398:2;8393:3;8390:11;8387:448;;;8434:1;8459:5;8455:2;8448:17;8504:4;8500:2;8490:19;8574:2;8562:10;8558:19;8555:1;8551:27;8545:4;8541:38;8610:4;8598:10;8595:20;8592:47;;;-1:-1:-1;8633:4:1;8592:47;8688:2;8683:3;8679:12;8676:1;8672:20;8666:4;8662:31;8652:41;;8743:82;8761:2;8754:5;8751:13;8743:82;;;8806:17;;;8787:1;8776:13;8743:82;;;8747:3;;;8296:545;;;:::o;9017:1352::-;9143:3;9137:10;-1:-1:-1;;;;;9162:6:1;9159:30;9156:56;;;9192:18;;:::i;:::-;9221:97;9311:6;9271:38;9303:4;9297:11;9271:38;:::i;:::-;9265:4;9221:97;:::i;:::-;9373:4;;9437:2;9426:14;;9454:1;9449:663;;;;10156:1;10173:6;10170:89;;;-1:-1:-1;10225:19:1;;;10219:26;10170:89;-1:-1:-1;;8974:1:1;8970:11;;;8966:24;8962:29;8952:40;8998:1;8994:11;;;8949:57;10272:81;;9419:944;;9449:663;8243:1;8236:14;;;8280:4;8267:18;;-1:-1:-1;;9485:20:1;;;9603:236;9617:7;9614:1;9611:14;9603:236;;;9706:19;;;9700:26;9685:42;;9798:27;;;;9766:1;9754:14;;;;9633:19;;9603:236;;;9607:3;9867:6;9858:7;9855:19;9852:201;;;9928:19;;;9922:26;-1:-1:-1;;10011:1:1;10007:14;;;10023:3;10003:24;9999:37;9995:42;9980:58;9965:74;;9852:201;-1:-1:-1;;;;;10099:1:1;10083:14;;;10079:22;10066:36;;-1:-1:-1;9017:1352:1:o;10777:127::-;10838:10;10833:3;10829:20;10826:1;10819:31;10869:4;10866:1;10859:15;10893:4;10890:1;10883:15;10909:135;10948:3;10969:17;;;10966:43;;10989:18;;:::i;:::-;-1:-1:-1;11036:1:1;11025:13;;10909:135::o;11464:127::-;11525:10;11520:3;11516:20;11513:1;11506:31;11556:4;11553:1;11546:15;11580:4;11577:1;11570:15;12644:125;12709:9;;;12730:10;;;12727:36;;;12743:18;;:::i;13472:168::-;13545:9;;;13576;;13593:15;;;13587:22;;13573:37;13563:71;;13614:18;;:::i;14616:1187::-;14893:3;14922:1;14955:6;14949:13;14985:36;15011:9;14985:36;:::i;:::-;15040:1;15057:18;;;15084:133;;;;15231:1;15226:356;;;;15050:532;;15084:133;-1:-1:-1;;15117:24:1;;15105:37;;15190:14;;15183:22;15171:35;;15162:45;;;-1:-1:-1;15084:133:1;;15226:356;15257:6;15254:1;15247:17;15287:4;15332:2;15329:1;15319:16;15357:1;15371:165;15385:6;15382:1;15379:13;15371:165;;;15463:14;;15450:11;;;15443:35;15506:16;;;;15400:10;;15371:165;;;15375:3;;;15565:6;15560:3;15556:16;15549:23;;15050:532;;;;;15613:6;15607:13;15629:68;15688:8;15683:3;15676:4;15668:6;15664:17;15629:68;:::i;:::-;-1:-1:-1;;;15719:18:1;;15746:22;;;15795:1;15784:13;;14616:1187;-1:-1:-1;;;;14616:1187:1:o;16927:128::-;16994:9;;;17015:11;;;17012:37;;;17029:18;;:::i;17060:489::-;-1:-1:-1;;;;;17329:15:1;;;17311:34;;17381:15;;17376:2;17361:18;;17354:43;17428:2;17413:18;;17406:34;;;17476:3;17471:2;17456:18;;17449:31;;;17254:4;;17497:46;;17523:19;;17515:6;17497:46;:::i;:::-;17489:54;17060:489;-1:-1:-1;;;;;;17060:489:1:o;17554:249::-;17623:6;17676:2;17664:9;17655:7;17651:23;17647:32;17644:52;;;17692:1;17689;17682:12;17644:52;17724:9;17718:16;17743:30;17767:5;17743:30;:::i
Swarm Source
ipfs://e507d029b9e4025d357837c967bc13f2a7f532c0c25aca4843c60530a2ced0e6
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.