Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
104 WP
Holders
47
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 WPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
projunio
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-20 */ // SPDX-License-Identifier: MIT // File: contracts/Constants.sol pragma solidity ^0.8.13; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; // File: contracts/IOperatorFilterRegistry.sol pragma solidity >= 0.8.13 <=0.9.0; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File: contracts/OperatorFilterer.sol pragma solidity >= 0.8.13 <=0.9.0; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } _; } } // File: contracts/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. * @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { /// @dev The constructor that is called when the contract is being deployed. constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {} } // 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 virtual 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 virtual 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 virtual 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/junio.sol pragma solidity >= 0.8.6 <=0.9.0; contract projunio is Ownable, ReentrancyGuard, ERC721A, DefaultOperatorFilterer { using Strings for uint256; uint256 public maxMintAmount = 10; uint256 public constant Price = 0.0013 ether; uint256 maxSupply = 10000; bool public paused = true; bool public revealed = false; uint256 W_PRICE = 0 ether; string private baseTokenUri; string public placeholderTokenUri; struct SaleConfig {uint256 Price; uint256 AmountForW;} SaleConfig public saleConfig; constructor() ERC721A("Witch Pepe", "WP") { } function _baseURI() internal view virtual override returns (string memory) {return baseTokenUri;} modifier callerIsUser() {require(tx.origin == msg.sender, "The caller is another contract"); _;} 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"); if (quantity == 1) { _safeMint(msg.sender, 1); } else { require(msg.value == Price * quantity, "incorrect value"); for (uint256 i = 0; i < quantity; i++) { _safeMint(msg.sender, 1); } } } 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 setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {maxMintAmount = _newmaxMintAmount;} function setPrice(uint256 price) external onlyOwner {saleConfig.Price = price;} function withdrawMoney() external onlyOwner { (bool success, ) = 0x2ACCf8898D255A7451AEeB1FECDe6148526BEf58.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);} function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":[],"name":"Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[{"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":"maxMintAmount","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":"AmountForW","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":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600a60098190556127109055600b805461ffff191660011790556000600c553480156200003057600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600a8152602001695769746368205065706560b01b81525060405180604001604052806002815260200161057560f41b815250620000a06200009a6200021160201b60201c565b62000215565b600180556003620000b283826200030a565b506004620000c182826200030a565b5050506daaeb6d7670e522a718067333cd4e3b15620002095780156200015757604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200013857600080fd5b505af11580156200014d573d6000803e3d6000fd5b5050505062000209565b6001600160a01b03821615620001a85760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200011d565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001ef57600080fd5b505af115801562000204573d6000803e3d6000fd5b505050505b5050620003d6565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200029057607f821691505b602082108103620002b157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200030557600081815260208120601f850160051c81016020861015620002e05750805b601f850160051c820191505b818110156200030157828155600101620002ec565b5050505b505050565b81516001600160401b0381111562000326576200032662000265565b6200033e816200033784546200027b565b84620002b7565b602080601f8311600181146200037657600084156200035d5750858301515b600019600386901b1c1916600185901b17855562000301565b600085815260208120601f198616915b82811015620003a75788860151825594840194600190910190840162000386565b5085821015620003c65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61247180620003e66000396000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063a0712d68116100a0578063b88d4fde1161006f578063b88d4fde14610613578063c87b56dd14610633578063dc33e68114610653578063e985e9c514610673578063f2fde38b146106bc57600080fd5b8063a0712d68146105b6578063a22cb465146105c9578063a475b5dd146105e9578063ac446002146105fe57600080fd5b806390aa0b0f116100e757806390aa0b0f146104e857806391b7f5ed146105185780639231ab2a1461053857806395d89b41146105865780639dfde2011461059b57600080fd5b806370a0823114610475578063715018a6146104955780637f00c7a6146104aa5780638da5cb5b146104ca57600080fd5b80632f745c591161019b5780634f6ccce71161016a5780634f6ccce7146103dc57806351830227146103fc57806356faa0231461041b5780635c975abb1461043b5780636352211e1461045557600080fd5b80632f745c591461035a57806342842e0e1461037a578063438b63001461039a5780634cf5f7a4146103c757600080fd5b8063081812fc116101e2578063081812fc146102ad578063095ea7b3146102e557806318160ddd14610305578063239c70ae1461032457806323b872dd1461033a57600080fd5b806301ffc9a71461021457806302329a29146102495780630675b7c61461026b57806306fdde031461028b575b600080fd5b34801561022057600080fd5b5061023461022f366004611e16565b6106dc565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50610269610264366004611e41565b610749565b005b34801561027757600080fd5b50610269610286366004611eea565b610764565b34801561029757600080fd5b506102a061077c565b6040516102409190611f83565b3480156102b957600080fd5b506102cd6102c8366004611f96565b61080e565b6040516001600160a01b039091168152602001610240565b3480156102f157600080fd5b50610269610300366004611fcb565b610854565b34801561031157600080fd5b506002545b604051908152602001610240565b34801561033057600080fd5b5061031660095481565b34801561034657600080fd5b50610269610355366004611ff5565b610922565b34801561036657600080fd5b50610316610375366004611fcb565b6109fb565b34801561038657600080fd5b50610269610395366004611ff5565b610b72565b3480156103a657600080fd5b506103ba6103b5366004612031565b610c40565b604051610240919061204c565b3480156103d357600080fd5b506102a0610ce2565b3480156103e857600080fd5b506103166103f7366004611f96565b610d70565b34801561040857600080fd5b50600b5461023490610100900460ff1681565b34801561042757600080fd5b50610269610436366004611eea565b610d9e565b34801561044757600080fd5b50600b546102349060ff1681565b34801561046157600080fd5b506102cd610470366004611f96565b610db2565b34801561048157600080fd5b50610316610490366004612031565b610dc4565b3480156104a157600080fd5b50610269610e12565b3480156104b657600080fd5b506102696104c5366004611f96565b610e26565b3480156104d657600080fd5b506000546001600160a01b03166102cd565b3480156104f457600080fd5b50600f54601054610503919082565b60408051928352602083019190915201610240565b34801561052457600080fd5b50610269610533366004611f96565b610e33565b34801561054457600080fd5b50610558610553366004611f96565b610e40565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610240565b34801561059257600080fd5b506102a0610e5d565b3480156105a757600080fd5b5061031666049e57d635400081565b6102696105c4366004611f96565b610e6c565b3480156105d557600080fd5b506102696105e4366004612090565b611034565b3480156105f557600080fd5b506102696110f8565b34801561060a57600080fd5b50610269611111565b34801561061f57600080fd5b5061026961062e3660046120c7565b6111b8565b34801561063f57600080fd5b506102a061064e366004611f96565b611294565b34801561065f57600080fd5b5061031661066e366004612031565b611415565b34801561067f57600080fd5b5061023461068e366004612143565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106c857600080fd5b506102696106d7366004612031565b611420565b60006001600160e01b031982166380ac58cd60e01b148061070d57506001600160e01b03198216635b5e139f60e01b145b8061072857506001600160e01b0319821663780e9d6360e01b145b8061074357506301ffc9a760e01b6001600160e01b03198316145b92915050565b610751611496565b600b805460ff1916911515919091179055565b61076c611496565b600d61077882826121fe565b5050565b60606003805461078b90612176565b80601f01602080910402602001604051908101604052809291908181526020018280546107b790612176565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600061081b826002541190565b610838576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b1561091357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156108c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e691906122be565b61091357604051633b79c77360e21b81526001600160a01b03821660048201526024015b60405180910390fd5b61091d83836114f0565b505050565b826daaeb6d7670e522a718067333cd4e3b156109ea57336001600160a01b0382160361095857610953848484611578565b6109f5565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156109a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cb91906122be565b6109ea57604051633b79c77360e21b815233600482015260240161090a565b6109f5848484611578565b50505050565b6000610a0683610dc4565b8210610a5f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161090a565b6000610a6a60025490565b905060008060005b83811015610b12576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ac557805192505b876001600160a01b0316836001600160a01b031603610aff57868403610af15750935061074392505050565b83610afb816122f1565b9450505b5080610b0a816122f1565b915050610a72565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161090a565b826daaeb6d7670e522a718067333cd4e3b15610c3557336001600160a01b03821603610ba357610953848484611583565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610bf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1691906122be565b610c3557604051633b79c77360e21b815233600482015260240161090a565b6109f5848484611583565b60606000610c4d83610dc4565b905060008167ffffffffffffffff811115610c6a57610c6a611e5e565b604051908082528060200260200182016040528015610c93578160200160208202803683370190505b50905060005b82811015610cda57610cab85826109fb565b828281518110610cbd57610cbd61230a565b602090810291909101015280610cd2816122f1565b915050610c99565b509392505050565b600e8054610cef90612176565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1b90612176565b8015610d685780601f10610d3d57610100808354040283529160200191610d68565b820191906000526020600020905b815481529060010190602001808311610d4b57829003601f168201915b505050505081565b6000610d7b60025490565b8210610d9a576040516329c8c00760e21b815260040160405180910390fd5b5090565b610da6611496565b600e61077882826121fe565b6000610dbd8261159e565b5192915050565b60006001600160a01b038216610ded576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160801b031690565b610e1a611496565b610e246000611633565b565b610e2e611496565b600955565b610e3b611496565b600f55565b60408051808201909152600080825260208201526107438261159e565b60606004805461078b90612176565b323314610ebb5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161090a565b600b5460ff1615610f005760405162461bcd60e51b815260206004820152600f60248201526e18dbdb9d1c9858dd081c185d5cd959608a1b604482015260640161090a565b600a5481610f0d60025490565b610f179190612320565b1115610f5a5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b604482015260640161090a565b600954811115610fa55760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b604482015260640161090a565b80600103610fbb57610fb8336001611683565b50565b610fcc8166049e57d6354000612333565b341461100c5760405162461bcd60e51b815260206004820152600f60248201526e696e636f72726563742076616c756560881b604482015260640161090a565b60005b8181101561077857611022336001611683565b8061102c816122f1565b91505061100f565b816daaeb6d7670e522a718067333cd4e3b156110ee57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156110a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c691906122be565b6110ee57604051633b79c77360e21b81526001600160a01b038216600482015260240161090a565b61091d838361169d565b611100611496565b600b805461ff001916610100179055565b611119611496565b604051600090732accf8898d255a7451aeeb1fecde6148526bef589047908381818185875af1925050503d806000811461116f576040519150601f19603f3d011682016040523d82523d6000602084013e611174565b606091505b5050905080610fb85760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161090a565b836daaeb6d7670e522a718067333cd4e3b1561128157336001600160a01b038216036111ef576111ea85858585611732565b61128d565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561123e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126291906122be565b61128157604051633b79c77360e21b815233600482015260240161090a565b61128d85858585611732565b5050505050565b60606112a1826002541190565b6113055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161090a565b6000611312836001612320565b600b54909150610100900460ff166113b757600e805461133190612176565b80601f016020809104026020016040519081016040528092919081815260200182805461135d90612176565b80156113aa5780601f1061137f576101008083540402835291602001916113aa565b820191906000526020600020905b81548152906001019060200180831161138d57829003601f168201915b5050505050915050919050565b6000600d80546113c690612176565b9050116113e2576040518060200160405280600081525061140e565b600d6113ed82611766565b6040516020016113fe92919061234a565b6040516020818303038152906040525b9392505050565b6000610743826117f9565b611428611496565b6001600160a01b03811661148d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090a565b610fb881611633565b6000546001600160a01b03163314610e245760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161090a565b60006114fb82610db2565b9050806001600160a01b0316836001600160a01b03160361152f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061154f575061154d813361068e565b155b1561156d576040516367d9dca160e11b815260040160405180910390fd5b61091d83838361184e565b61091d8383836118aa565b61091d838383604051806020016040528060008152506111b8565b60408051808201909152600080825260208201526115bd826002541190565b6115da57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611629579392505050565b50600019016115dc565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610778828260405180602001604052806000815250611ac6565b336001600160a01b038316036116c65760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61173d8484846118aa565b61174984848484611ad3565b6109f5576040516368d2bf6b60e11b815260040160405180910390fd5b6060600061177383611bd6565b600101905060008167ffffffffffffffff81111561179357611793611e5e565b6040519080825280601f01601f1916602001820160405280156117bd576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846117c757509392505050565b60006001600160a01b038216611822576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160801b90046001600160801b031690565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118b58261159e565b80519091506000906001600160a01b0316336001600160a01b031614806118ec5750336118e18461080e565b6001600160a01b0316145b806118fe575081516118fe903361068e565b90508061191e57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146119535760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661197a57604051633a954ecd60e21b815260040160405180910390fd5b61198a600084846000015161184e565b6001600160a01b03858116600090815260066020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600590935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611a7f57611a32816002541190565b15611a7f578251600082815260056020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461128d565b61091d8383836001611cae565b60006001600160a01b0384163b15611bca57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b179033908990889088906004016123e1565b6020604051808303816000875af1925050508015611b52575060408051601f3d908101601f19168201909252611b4f9181019061241e565b60015b611bb0573d808015611b80576040519150601f19603f3d011682016040523d82523d6000602084013e611b85565b606091505b508051600003611ba8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bce565b5060015b949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611c155772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611c41576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611c5f57662386f26fc10000830492506010015b6305f5e1008310611c77576305f5e100830492506008015b6127108310611c8b57612710830492506004015b60648310611c9d576064830492506002015b600a83106107435760010192915050565b6002546001600160a01b038516611cd757604051622e076360e81b815260040160405180910390fd5b83600003611cf85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526006602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526005909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611df75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611dcd5750611dcb6000888488611ad3565b155b15611deb576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611d76565b5060025561128d565b6001600160e01b031981168114610fb857600080fd5b600060208284031215611e2857600080fd5b813561140e81611e00565b8015158114610fb857600080fd5b600060208284031215611e5357600080fd5b813561140e81611e33565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e8f57611e8f611e5e565b604051601f8501601f19908116603f01168101908282118183101715611eb757611eb7611e5e565b81604052809350858152868686011115611ed057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611efc57600080fd5b813567ffffffffffffffff811115611f1357600080fd5b8201601f81018413611f2457600080fd5b611bce84823560208401611e74565b60005b83811015611f4e578181015183820152602001611f36565b50506000910152565b60008151808452611f6f816020860160208601611f33565b601f01601f19169290920160200192915050565b60208152600061140e6020830184611f57565b600060208284031215611fa857600080fd5b5035919050565b80356001600160a01b0381168114611fc657600080fd5b919050565b60008060408385031215611fde57600080fd5b611fe783611faf565b946020939093013593505050565b60008060006060848603121561200a57600080fd5b61201384611faf565b925061202160208501611faf565b9150604084013590509250925092565b60006020828403121561204357600080fd5b61140e82611faf565b6020808252825182820181905260009190848201906040850190845b8181101561208457835183529284019291840191600101612068565b50909695505050505050565b600080604083850312156120a357600080fd5b6120ac83611faf565b915060208301356120bc81611e33565b809150509250929050565b600080600080608085870312156120dd57600080fd5b6120e685611faf565b93506120f460208601611faf565b925060408501359150606085013567ffffffffffffffff81111561211757600080fd5b8501601f8101871361212857600080fd5b61213787823560208401611e74565b91505092959194509250565b6000806040838503121561215657600080fd5b61215f83611faf565b915061216d60208401611faf565b90509250929050565b600181811c9082168061218a57607f821691505b6020821081036121aa57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561091d57600081815260208120601f850160051c810160208610156121d75750805b601f850160051c820191505b818110156121f6578281556001016121e3565b505050505050565b815167ffffffffffffffff81111561221857612218611e5e565b61222c816122268454612176565b846121b0565b602080601f83116001811461226157600084156122495750858301515b600019600386901b1c1916600185901b1785556121f6565b600085815260208120601f198616915b8281101561229057888601518255948401946001909101908401612271565b50858210156122ae5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156122d057600080fd5b815161140e81611e33565b634e487b7160e01b600052601160045260246000fd5b600060018201612303576123036122db565b5060010190565b634e487b7160e01b600052603260045260246000fd5b80820180821115610743576107436122db565b8082028115828204841417610743576107436122db565b600080845461235881612176565b600182811680156123705760018114612385576123b4565b60ff19841687528215158302870194506123b4565b8860005260208060002060005b858110156123ab5781548a820152908401908201612392565b50505082870194505b5050505083516123c8818360208801611f33565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061241490830184611f57565b9695505050505050565b60006020828403121561243057600080fd5b815161140e81611e0056fea264697066735822122049ce4420f3f92b7730b4adad9ca54b6a19ff1d02ce26a8cc386895975f9931fb64736f6c63430008130033
Deployed Bytecode
0x60806040526004361061020f5760003560e01c806370a0823111610118578063a0712d68116100a0578063b88d4fde1161006f578063b88d4fde14610613578063c87b56dd14610633578063dc33e68114610653578063e985e9c514610673578063f2fde38b146106bc57600080fd5b8063a0712d68146105b6578063a22cb465146105c9578063a475b5dd146105e9578063ac446002146105fe57600080fd5b806390aa0b0f116100e757806390aa0b0f146104e857806391b7f5ed146105185780639231ab2a1461053857806395d89b41146105865780639dfde2011461059b57600080fd5b806370a0823114610475578063715018a6146104955780637f00c7a6146104aa5780638da5cb5b146104ca57600080fd5b80632f745c591161019b5780634f6ccce71161016a5780634f6ccce7146103dc57806351830227146103fc57806356faa0231461041b5780635c975abb1461043b5780636352211e1461045557600080fd5b80632f745c591461035a57806342842e0e1461037a578063438b63001461039a5780634cf5f7a4146103c757600080fd5b8063081812fc116101e2578063081812fc146102ad578063095ea7b3146102e557806318160ddd14610305578063239c70ae1461032457806323b872dd1461033a57600080fd5b806301ffc9a71461021457806302329a29146102495780630675b7c61461026b57806306fdde031461028b575b600080fd5b34801561022057600080fd5b5061023461022f366004611e16565b6106dc565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50610269610264366004611e41565b610749565b005b34801561027757600080fd5b50610269610286366004611eea565b610764565b34801561029757600080fd5b506102a061077c565b6040516102409190611f83565b3480156102b957600080fd5b506102cd6102c8366004611f96565b61080e565b6040516001600160a01b039091168152602001610240565b3480156102f157600080fd5b50610269610300366004611fcb565b610854565b34801561031157600080fd5b506002545b604051908152602001610240565b34801561033057600080fd5b5061031660095481565b34801561034657600080fd5b50610269610355366004611ff5565b610922565b34801561036657600080fd5b50610316610375366004611fcb565b6109fb565b34801561038657600080fd5b50610269610395366004611ff5565b610b72565b3480156103a657600080fd5b506103ba6103b5366004612031565b610c40565b604051610240919061204c565b3480156103d357600080fd5b506102a0610ce2565b3480156103e857600080fd5b506103166103f7366004611f96565b610d70565b34801561040857600080fd5b50600b5461023490610100900460ff1681565b34801561042757600080fd5b50610269610436366004611eea565b610d9e565b34801561044757600080fd5b50600b546102349060ff1681565b34801561046157600080fd5b506102cd610470366004611f96565b610db2565b34801561048157600080fd5b50610316610490366004612031565b610dc4565b3480156104a157600080fd5b50610269610e12565b3480156104b657600080fd5b506102696104c5366004611f96565b610e26565b3480156104d657600080fd5b506000546001600160a01b03166102cd565b3480156104f457600080fd5b50600f54601054610503919082565b60408051928352602083019190915201610240565b34801561052457600080fd5b50610269610533366004611f96565b610e33565b34801561054457600080fd5b50610558610553366004611f96565b610e40565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610240565b34801561059257600080fd5b506102a0610e5d565b3480156105a757600080fd5b5061031666049e57d635400081565b6102696105c4366004611f96565b610e6c565b3480156105d557600080fd5b506102696105e4366004612090565b611034565b3480156105f557600080fd5b506102696110f8565b34801561060a57600080fd5b50610269611111565b34801561061f57600080fd5b5061026961062e3660046120c7565b6111b8565b34801561063f57600080fd5b506102a061064e366004611f96565b611294565b34801561065f57600080fd5b5061031661066e366004612031565b611415565b34801561067f57600080fd5b5061023461068e366004612143565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106c857600080fd5b506102696106d7366004612031565b611420565b60006001600160e01b031982166380ac58cd60e01b148061070d57506001600160e01b03198216635b5e139f60e01b145b8061072857506001600160e01b0319821663780e9d6360e01b145b8061074357506301ffc9a760e01b6001600160e01b03198316145b92915050565b610751611496565b600b805460ff1916911515919091179055565b61076c611496565b600d61077882826121fe565b5050565b60606003805461078b90612176565b80601f01602080910402602001604051908101604052809291908181526020018280546107b790612176565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600061081b826002541190565b610838576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b1561091357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156108c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e691906122be565b61091357604051633b79c77360e21b81526001600160a01b03821660048201526024015b60405180910390fd5b61091d83836114f0565b505050565b826daaeb6d7670e522a718067333cd4e3b156109ea57336001600160a01b0382160361095857610953848484611578565b6109f5565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156109a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cb91906122be565b6109ea57604051633b79c77360e21b815233600482015260240161090a565b6109f5848484611578565b50505050565b6000610a0683610dc4565b8210610a5f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161090a565b6000610a6a60025490565b905060008060005b83811015610b12576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ac557805192505b876001600160a01b0316836001600160a01b031603610aff57868403610af15750935061074392505050565b83610afb816122f1565b9450505b5080610b0a816122f1565b915050610a72565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161090a565b826daaeb6d7670e522a718067333cd4e3b15610c3557336001600160a01b03821603610ba357610953848484611583565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610bf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1691906122be565b610c3557604051633b79c77360e21b815233600482015260240161090a565b6109f5848484611583565b60606000610c4d83610dc4565b905060008167ffffffffffffffff811115610c6a57610c6a611e5e565b604051908082528060200260200182016040528015610c93578160200160208202803683370190505b50905060005b82811015610cda57610cab85826109fb565b828281518110610cbd57610cbd61230a565b602090810291909101015280610cd2816122f1565b915050610c99565b509392505050565b600e8054610cef90612176565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1b90612176565b8015610d685780601f10610d3d57610100808354040283529160200191610d68565b820191906000526020600020905b815481529060010190602001808311610d4b57829003601f168201915b505050505081565b6000610d7b60025490565b8210610d9a576040516329c8c00760e21b815260040160405180910390fd5b5090565b610da6611496565b600e61077882826121fe565b6000610dbd8261159e565b5192915050565b60006001600160a01b038216610ded576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160801b031690565b610e1a611496565b610e246000611633565b565b610e2e611496565b600955565b610e3b611496565b600f55565b60408051808201909152600080825260208201526107438261159e565b60606004805461078b90612176565b323314610ebb5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161090a565b600b5460ff1615610f005760405162461bcd60e51b815260206004820152600f60248201526e18dbdb9d1c9858dd081c185d5cd959608a1b604482015260640161090a565b600a5481610f0d60025490565b610f179190612320565b1115610f5a5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b604482015260640161090a565b600954811115610fa55760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b604482015260640161090a565b80600103610fbb57610fb8336001611683565b50565b610fcc8166049e57d6354000612333565b341461100c5760405162461bcd60e51b815260206004820152600f60248201526e696e636f72726563742076616c756560881b604482015260640161090a565b60005b8181101561077857611022336001611683565b8061102c816122f1565b91505061100f565b816daaeb6d7670e522a718067333cd4e3b156110ee57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156110a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c691906122be565b6110ee57604051633b79c77360e21b81526001600160a01b038216600482015260240161090a565b61091d838361169d565b611100611496565b600b805461ff001916610100179055565b611119611496565b604051600090732accf8898d255a7451aeeb1fecde6148526bef589047908381818185875af1925050503d806000811461116f576040519150601f19603f3d011682016040523d82523d6000602084013e611174565b606091505b5050905080610fb85760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161090a565b836daaeb6d7670e522a718067333cd4e3b1561128157336001600160a01b038216036111ef576111ea85858585611732565b61128d565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561123e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126291906122be565b61128157604051633b79c77360e21b815233600482015260240161090a565b61128d85858585611732565b5050505050565b60606112a1826002541190565b6113055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161090a565b6000611312836001612320565b600b54909150610100900460ff166113b757600e805461133190612176565b80601f016020809104026020016040519081016040528092919081815260200182805461135d90612176565b80156113aa5780601f1061137f576101008083540402835291602001916113aa565b820191906000526020600020905b81548152906001019060200180831161138d57829003601f168201915b5050505050915050919050565b6000600d80546113c690612176565b9050116113e2576040518060200160405280600081525061140e565b600d6113ed82611766565b6040516020016113fe92919061234a565b6040516020818303038152906040525b9392505050565b6000610743826117f9565b611428611496565b6001600160a01b03811661148d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090a565b610fb881611633565b6000546001600160a01b03163314610e245760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161090a565b60006114fb82610db2565b9050806001600160a01b0316836001600160a01b03160361152f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061154f575061154d813361068e565b155b1561156d576040516367d9dca160e11b815260040160405180910390fd5b61091d83838361184e565b61091d8383836118aa565b61091d838383604051806020016040528060008152506111b8565b60408051808201909152600080825260208201526115bd826002541190565b6115da57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611629579392505050565b50600019016115dc565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610778828260405180602001604052806000815250611ac6565b336001600160a01b038316036116c65760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61173d8484846118aa565b61174984848484611ad3565b6109f5576040516368d2bf6b60e11b815260040160405180910390fd5b6060600061177383611bd6565b600101905060008167ffffffffffffffff81111561179357611793611e5e565b6040519080825280601f01601f1916602001820160405280156117bd576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846117c757509392505050565b60006001600160a01b038216611822576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160801b90046001600160801b031690565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118b58261159e565b80519091506000906001600160a01b0316336001600160a01b031614806118ec5750336118e18461080e565b6001600160a01b0316145b806118fe575081516118fe903361068e565b90508061191e57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146119535760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661197a57604051633a954ecd60e21b815260040160405180910390fd5b61198a600084846000015161184e565b6001600160a01b03858116600090815260066020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600590935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611a7f57611a32816002541190565b15611a7f578251600082815260056020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461128d565b61091d8383836001611cae565b60006001600160a01b0384163b15611bca57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b179033908990889088906004016123e1565b6020604051808303816000875af1925050508015611b52575060408051601f3d908101601f19168201909252611b4f9181019061241e565b60015b611bb0573d808015611b80576040519150601f19603f3d011682016040523d82523d6000602084013e611b85565b606091505b508051600003611ba8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bce565b5060015b949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611c155772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611c41576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611c5f57662386f26fc10000830492506010015b6305f5e1008310611c77576305f5e100830492506008015b6127108310611c8b57612710830492506004015b60648310611c9d576064830492506002015b600a83106107435760010192915050565b6002546001600160a01b038516611cd757604051622e076360e81b815260040160405180910390fd5b83600003611cf85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526006602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526005909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611df75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611dcd5750611dcb6000888488611ad3565b155b15611deb576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611d76565b5060025561128d565b6001600160e01b031981168114610fb857600080fd5b600060208284031215611e2857600080fd5b813561140e81611e00565b8015158114610fb857600080fd5b600060208284031215611e5357600080fd5b813561140e81611e33565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e8f57611e8f611e5e565b604051601f8501601f19908116603f01168101908282118183101715611eb757611eb7611e5e565b81604052809350858152868686011115611ed057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611efc57600080fd5b813567ffffffffffffffff811115611f1357600080fd5b8201601f81018413611f2457600080fd5b611bce84823560208401611e74565b60005b83811015611f4e578181015183820152602001611f36565b50506000910152565b60008151808452611f6f816020860160208601611f33565b601f01601f19169290920160200192915050565b60208152600061140e6020830184611f57565b600060208284031215611fa857600080fd5b5035919050565b80356001600160a01b0381168114611fc657600080fd5b919050565b60008060408385031215611fde57600080fd5b611fe783611faf565b946020939093013593505050565b60008060006060848603121561200a57600080fd5b61201384611faf565b925061202160208501611faf565b9150604084013590509250925092565b60006020828403121561204357600080fd5b61140e82611faf565b6020808252825182820181905260009190848201906040850190845b8181101561208457835183529284019291840191600101612068565b50909695505050505050565b600080604083850312156120a357600080fd5b6120ac83611faf565b915060208301356120bc81611e33565b809150509250929050565b600080600080608085870312156120dd57600080fd5b6120e685611faf565b93506120f460208601611faf565b925060408501359150606085013567ffffffffffffffff81111561211757600080fd5b8501601f8101871361212857600080fd5b61213787823560208401611e74565b91505092959194509250565b6000806040838503121561215657600080fd5b61215f83611faf565b915061216d60208401611faf565b90509250929050565b600181811c9082168061218a57607f821691505b6020821081036121aa57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561091d57600081815260208120601f850160051c810160208610156121d75750805b601f850160051c820191505b818110156121f6578281556001016121e3565b505050505050565b815167ffffffffffffffff81111561221857612218611e5e565b61222c816122268454612176565b846121b0565b602080601f83116001811461226157600084156122495750858301515b600019600386901b1c1916600185901b1785556121f6565b600085815260208120601f198616915b8281101561229057888601518255948401946001909101908401612271565b50858210156122ae5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156122d057600080fd5b815161140e81611e33565b634e487b7160e01b600052601160045260246000fd5b600060018201612303576123036122db565b5060010190565b634e487b7160e01b600052603260045260246000fd5b80820180821115610743576107436122db565b8082028115828204841417610743576107436122db565b600080845461235881612176565b600182811680156123705760018114612385576123b4565b60ff19841687528215158302870194506123b4565b8860005260208060002060005b858110156123ab5781548a820152908401908201612392565b50505082870194505b5050505083516123c8818360208801611f33565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061241490830184611f57565b9695505050505050565b60006020828403121561243057600080fd5b815161140e81611e0056fea264697066735822122049ce4420f3f92b7730b4adad9ca54b6a19ff1d02ce26a8cc386895975f9931fb64736f6c63430008130033
Deployed Bytecode Sourcemap
73333:3818:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57815:372;;;;;;;;;;-1:-1:-1;57815:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;57815:372:0;;;;;;;;75962:64;;;;;;;;;;-1:-1:-1;75962:64:0;;;;;:::i;:::-;;:::i;:::-;;75267:99;;;;;;;;;;-1:-1:-1;75267:99:0;;;;;:::i;:::-;;:::i;59631:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;61116:204::-;;;;;;;;;;-1:-1:-1;61116:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3291:32:1;;;3273:51;;3261:2;3246:18;61116:204:0;3127:203:1;76456:152:0;;;;;;;;;;-1:-1:-1;76456:152:0;;;;;:::i;:::-;;:::i;56345:101::-;;;;;;;;;;-1:-1:-1;56425:13:0;;56345:101;;;3918:25:1;;;3906:2;3891:18;56345:101:0;3772:177:1;73448:33:0;;;;;;;;;;;;;;;;76616:158;;;;;;;;;;-1:-1:-1;76616:158:0;;;;;:::i;:::-;;:::i;56999:744::-;;;;;;;;;;-1:-1:-1;56999:744:0;;;;;:::i;:::-;;:::i;76782:166::-;;;;;;;;;;-1:-1:-1;76782:166:0;;;;;:::i;:::-;;:::i;74546:314::-;;;;;;;;;;-1:-1:-1;74546:314:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;73691:35::-;;;;;;;;;;;;;:::i;56523:176::-;;;;;;;;;;-1:-1:-1;56523:176:0;;;;;:::i;:::-;;:::i;73595:28::-;;;;;;;;;;-1:-1:-1;73595:28:0;;;;;;;;;;;75432:120;;;;;;;;;;-1:-1:-1;75432:120:0;;;;;:::i;:::-;;:::i;73565:25::-;;;;;;;;;;-1:-1:-1;73565:25:0;;;;;;;;59440:124;;;;;;;;;;-1:-1:-1;59440:124:0;;;;;:::i;:::-;;:::i;58251:206::-;;;;;;;;;;-1:-1:-1;58251:206:0;;;;;:::i;:::-;;:::i;72443:103::-;;;;;;;;;;;;;:::i;75560:106::-;;;;;;;;;;-1:-1:-1;75560:106:0;;;;;:::i;:::-;;:::i;71795:87::-;;;;;;;;;;-1:-1:-1;71841:7:0;71868:6;-1:-1:-1;;;;;71868:6:0;71795:87;;73791:28;;;;;;;;;;-1:-1:-1;73791:28:0;;;;;;;;;;;;;5289:25:1;;;5345:2;5330:18;;5323:34;;;;5262:18;73791:28:0;5115:248:1;75672:79:0;;;;;;;;;;-1:-1:-1;75672:79:0;;;;;:::i;:::-;;:::i;76143:125::-;;;;;;;;;;-1:-1:-1;76143:125:0;;;;;:::i;:::-;;:::i;:::-;;;;5600:13:1;;-1:-1:-1;;;;;5596:39:1;5578:58;;5696:4;5684:17;;;5678:24;5704:18;5674:49;5652:20;;;5645:79;;;;5551:18;76143:125:0;5368:362:1;59800:104:0;;;;;;;;;;;;;:::i;73486:44::-;;;;;;;;;;;;73518:12;73486:44;;74083:455;;;;;;:::i;:::-;;:::i;76277:171::-;;;;;;;;;;-1:-1:-1;76277:171:0;;;;;:::i;:::-;;:::i;75372:54::-;;;;;;;;;;;;;:::i;75759:197::-;;;;;;;;;;;;;:::i;76956:191::-;;;;;;;;;;-1:-1:-1;76956:191:0;;;;;:::i;:::-;;:::i;74869:391::-;;;;;;;;;;-1:-1:-1;74869:391:0;;;;;:::i;:::-;;:::i;76034:103::-;;;;;;;;;;-1:-1:-1;76034:103:0;;;;;:::i;:::-;;:::i;61750:164::-;;;;;;;;;;-1:-1:-1;61750:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;61871:25:0;;;61847:4;61871:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;61750:164;72701:201;;;;;;;;;;-1:-1:-1;72701:201:0;;;;;:::i;:::-;;:::i;57815:372::-;57917:4;-1:-1:-1;;;;;;57954:40:0;;-1:-1:-1;;;57954:40:0;;:105;;-1:-1:-1;;;;;;;58011:48:0;;-1:-1:-1;;;58011:48:0;57954:105;:172;;;-1:-1:-1;;;;;;;58076:50:0;;-1:-1:-1;;;58076:50:0;57954:172;:225;;;-1:-1:-1;;;;;;;;;;18264:40:0;;;58143:36;57934:245;57815:372;-1:-1:-1;;57815:372:0:o;75962:64::-;71681:13;:11;:13::i;:::-;76009:6:::1;:15:::0;;-1:-1:-1;;76009:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;75962:64::o;75267:99::-;71681:13;:11;:13::i;:::-;75336:12:::1;:28;75351:13:::0;75336:12;:28:::1;:::i;:::-;;75267:99:::0;:::o;59631:100::-;59685:13;59718:5;59711:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59631:100;:::o;61116:204::-;61184:7;61209:16;61217:7;63140:13;;-1:-1:-1;63130:23:0;63049:112;61209:16;61204:64;;61234:34;;-1:-1:-1;;;61234:34:0;;;;;;;;;;;61204:64;-1:-1:-1;61288:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;61288:24:0;;61116:204::o;76456:152::-;76552:8;2997:42;4891:45;:49;4887:225;;4962:67;;-1:-1:-1;;;4962:67:0;;5013:4;4962:67;;;9793:34:1;-1:-1:-1;;;;;9863:15:1;;9843:18;;;9836:43;2997:42:0;;4962;;9728:18:1;;4962:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4957:144;;5057:28;;-1:-1:-1;;;5057:28:0;;-1:-1:-1;;;;;3291:32:1;;5057:28:0;;;3273:51:1;3246:18;;5057:28:0;;;;;;;;4957:144;76573:32:::1;76587:8;76597:7;76573:13;:32::i;:::-;76456:152:::0;;;:::o;76616:158::-;76717:4;2997:42;4145:45;:49;4141:539;;4434:10;-1:-1:-1;;;;;4426:18:0;;;4422:85;;76734:37:::1;76753:4;76759:2;76763:7;76734:18;:37::i;:::-;4485:7:::0;;4422:85;4526:69;;-1:-1:-1;;;4526:69:0;;4577:4;4526:69;;;9793:34:1;4584:10:0;9843:18:1;;;9836:43;2997:42:0;;4526;;9728:18:1;;4526:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4521:148;;4623:30;;-1:-1:-1;;;4623:30:0;;4642:10;4623:30;;;3273:51:1;3246:18;;4623:30:0;3127:203:1;4521:148:0;76734:37:::1;76753:4;76759:2;76763:7;76734:18;:37::i;:::-;76616:158:::0;;;;:::o;56999:744::-;57108:7;57143:16;57153:5;57143:9;:16::i;:::-;57135:5;:24;57127:71;;;;-1:-1:-1;;;57127:71:0;;10342:2:1;57127:71:0;;;10324:21:1;10381:2;10361:18;;;10354:30;10420:34;10400:18;;;10393:62;-1:-1:-1;;;10471:18:1;;;10464:32;10513:19;;57127:71:0;10140:398:1;57127:71:0;57205:22;57230:13;56425;;;56345:101;57230:13;57205:38;;57250:19;57280:25;57330:9;57325:350;57349:14;57345:1;:18;57325:350;;;57379:31;57413:14;;;:11;:14;;;;;;;;;57379:48;;;;;;;;;-1:-1:-1;;;;;57379:48:0;;;;;-1:-1:-1;;;57379:48:0;;;;;;;;;;;;57440:28;57436:89;;57501:14;;;-1:-1:-1;57436:89:0;57558:5;-1:-1:-1;;;;;57537:26:0;:17;-1:-1:-1;;;;;57537:26:0;;57533:135;;57595:5;57580:11;:20;57576:59;;-1:-1:-1;57622:1:0;-1:-1:-1;57615:8:0;;-1:-1:-1;;;57615:8:0;57576:59;57645:13;;;;:::i;:::-;;;;57533:135;-1:-1:-1;57365:3:0;;;;:::i;:::-;;;;57325:350;;;-1:-1:-1;57681:56:0;;-1:-1:-1;;;57681:56:0;;11017:2:1;57681:56:0;;;10999:21:1;11056:2;11036:18;;;11029:30;11095:34;11075:18;;;11068:62;-1:-1:-1;;;11146:18:1;;;11139:44;11200:19;;57681:56:0;10815:410:1;76782:166:0;76887:4;2997:42;4145:45;:49;4141:539;;4434:10;-1:-1:-1;;;;;4426:18:0;;;4422:85;;76904:41:::1;76927:4;76933:2;76937:7;76904:22;:41::i;4422:85::-:0;4526:69;;-1:-1:-1;;;4526:69:0;;4577:4;4526:69;;;9793:34:1;4584:10:0;9843:18:1;;;9836:43;2997:42:0;;4526;;9728:18:1;;4526:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4521:148;;4623:30;;-1:-1:-1;;;4623:30:0;;4642:10;4623:30;;;3273:51:1;3246:18;;4623:30:0;3127:203:1;4521:148:0;76904:41:::1;76927:4;76933:2;76937:7;76904:22;:41::i;74546:314::-:0;74606:16;74631:23;74657:17;74667:6;74657:9;:17::i;:::-;74631:43;;74681:25;74723:15;74709:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;74709:30:0;;74681:58;;74751:9;74746:89;74766:15;74762:1;:19;74746:89;;;74803:30;74823:6;74831:1;74803:19;:30::i;:::-;74789:8;74798:1;74789:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;74783:3;;;;:::i;:::-;;;;74746:89;;;-1:-1:-1;74848:8:0;74546:314;-1:-1:-1;;;74546:314:0:o;73691:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56523:176::-;56590:7;56623:13;56425;;;56345:101;56623:13;56614:5;:22;56610:58;;56645:23;;-1:-1:-1;;;56645:23:0;;;;;;;;;;;56610:58;-1:-1:-1;56686:5:0;56523:176::o;75432:120::-;71681:13;:11;:13::i;:::-;75513:19:::1;:37;75535:15:::0;75513:19;:37:::1;:::i;59440:124::-:0;59504:7;59531:20;59543:7;59531:11;:20::i;:::-;:25;;59440:124;-1:-1:-1;;59440:124:0:o;58251:206::-;58315:7;-1:-1:-1;;;;;58339:19:0;;58335:60;;58367:28;;-1:-1:-1;;;58367:28:0;;;;;;;;;;;58335:60;-1:-1:-1;;;;;;58421:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;58421:27:0;;58251:206::o;72443:103::-;71681:13;:11;:13::i;:::-;72508:30:::1;72535:1;72508:18;:30::i;:::-;72443:103::o:0;75560:106::-;71681:13;:11;:13::i;:::-;75631::::1;:33:::0;75560:106::o;75672:79::-;71681:13;:11;:13::i;:::-;75725:10:::1;:24:::0;75672:79::o;76143:125::-;-1:-1:-1;;;;;;;;;;;;;;;;;76246:20:0;76258:7;76246:11;:20::i;59800:104::-;59856:13;59889:7;59882:14;;;;;:::i;74083:455::-;74012:9;74025:10;74012:23;74004:66;;;;-1:-1:-1;;;74004:66:0;;11564:2:1;74004:66:0;;;11546:21:1;11603:2;11583:18;;;11576:30;11642:32;11622:18;;;11615:60;11692:18;;74004:66:0;11362:354:1;74004:66:0;74159:6:::1;::::0;::::1;;74158:7;74150:35;;;::::0;-1:-1:-1;;;74150:35:0;;11923:2:1;74150:35:0::1;::::0;::::1;11905:21:1::0;11962:2;11942:18;;;11935:30;-1:-1:-1;;;11981:18:1;;;11974:45;12036:18;;74150:35:0::1;11721:339:1::0;74150:35:0::1;74228:9;;74216:8;74200:13;56425::::0;;;56345:101;74200:13:::1;:24;;;;:::i;:::-;:37;;74192:68;;;::::0;-1:-1:-1;;;74192:68:0;;12397:2:1;74192:68:0::1;::::0;::::1;12379:21:1::0;12436:2;12416:18;;;12409:30;-1:-1:-1;;;12455:18:1;;;12448:48;12513:18;;74192:68:0::1;12195:342:1::0;74192:68:0::1;74287:13;;74275:8;:25;;74267:60;;;::::0;-1:-1:-1;;;74267:60:0;;12744:2:1;74267:60:0::1;::::0;::::1;12726:21:1::0;12783:2;12763:18;;;12756:30;-1:-1:-1;;;12802:18:1;;;12795:52;12864:18;;74267:60:0::1;12542:346:1::0;74267:60:0::1;74340:8;74352:1;74340:13:::0;74336:200:::1;;74357:24;74367:10;74379:1;74357:9;:24::i;:::-;74083:455:::0;:::o;74336:200::-:1;74419:16;74427:8:::0;73518:12:::1;74419:16;:::i;:::-;74406:9;:29;74398:57;;;::::0;-1:-1:-1;;;74398:57:0;;13268:2:1;74398:57:0::1;::::0;::::1;13250:21:1::0;13307:2;13287:18;;;13280:30;-1:-1:-1;;;13326:18:1;;;13319:45;13381:18;;74398:57:0::1;13066:339:1::0;74398:57:0::1;74471:9;74466:68;74490:8;74486:1;:12;74466:68;;;74507:24;74517:10;74529:1;74507:9;:24::i;:::-;74500:3:::0;::::1;::::0;::::1;:::i;:::-;;;;74466:68;;76277:171:::0;76381:8;2997:42;4891:45;:49;4887:225;;4962:67;;-1:-1:-1;;;4962:67:0;;5013:4;4962:67;;;9793:34:1;-1:-1:-1;;;;;9863:15:1;;9843:18;;;9836:43;2997:42:0;;4962;;9728:18:1;;4962:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4957:144;;5057:28;;-1:-1:-1;;;5057:28:0;;-1:-1:-1;;;;;3291:32:1;;5057:28:0;;;3273:51:1;3246:18;;5057:28:0;3127:203:1;4957:144:0;76402:43:::1;76426:8;76436;76402:23;:43::i;75372:54::-:0;71681:13;:11;:13::i;:::-;75409:8:::1;:15:::0;;-1:-1:-1;;75409:15:0::1;;;::::0;;75372:54::o;75759:197::-;71681:13;:11;:13::i;:::-;75829:81:::1;::::0;75811:12:::1;::::0;75829:42:::1;::::0;75884:21:::1;::::0;75811:12;75829:81;75811:12;75829:81;75884:21;75829:42;:81:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75810:100;;;75925:7;75917:36;;;::::0;-1:-1:-1;;;75917:36:0;;13822:2:1;75917:36:0::1;::::0;::::1;13804:21:1::0;13861:2;13841:18;;;13834:30;-1:-1:-1;;;13880:18:1;;;13873:46;13936:18;;75917:36:0::1;13620:340:1::0;76956:191:0;77089:4;2997:42;4145:45;:49;4141:539;;4434:10;-1:-1:-1;;;;;4426:18:0;;;4422:85;;77097:47:::1;77120:4;77126:2;77130:7;77139:4;77097:22;:47::i;:::-;4485:7:::0;;4422:85;4526:69;;-1:-1:-1;;;4526:69:0;;4577:4;4526:69;;;9793:34:1;4584:10:0;9843:18:1;;;9836:43;2997:42:0;;4526;;9728:18:1;;4526:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4521:148;;4623:30;;-1:-1:-1;;;4623:30:0;;4642:10;4623:30;;;3273:51:1;3246:18;;4623:30:0;3127:203:1;4521:148:0;77097:47:::1;77120:4;77126:2;77130:7;77139:4;77097:22;:47::i;:::-;76956:191:::0;;;;;:::o;74869:391::-;74942:13;74976:16;74984:7;63140:13;;-1:-1:-1;63130:23:0;63049:112;74976:16;74968:76;;;;-1:-1:-1;;;74968:76:0;;14167:2:1;74968:76:0;;;14149:21:1;14206:2;14186:18;;;14179:30;14245:34;14225:18;;;14218:62;-1:-1:-1;;;14296:18:1;;;14289:45;14351:19;;74968:76:0;13965:411:1;74968:76:0;75055:14;75072:11;:7;75082:1;75072:11;:::i;:::-;75098:8;;75055:28;;-1:-1:-1;75098:8:0;;;;;75094:42;;75115:19;75108:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74869:391;;;:::o;75094:42::-;75182:1;75159:12;75153:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;75210:12;75224:17;:6;:15;:17::i;:::-;75193:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75153:104;75146:111;74869:391;-1:-1:-1;;;74869:391:0:o;76034:103::-;76092:7;76115:20;76129:5;76115:13;:20::i;72701:201::-;71681:13;:11;:13::i;:::-;-1:-1:-1;;;;;72790:22:0;::::1;72782:73;;;::::0;-1:-1:-1;;;72782:73:0;;15775:2:1;72782:73:0::1;::::0;::::1;15757:21:1::0;15814:2;15794:18;;;15787:30;15853:34;15833:18;;;15826:62;-1:-1:-1;;;15904:18:1;;;15897:36;15950:19;;72782:73:0::1;15573:402:1::0;72782:73:0::1;72866:28;72885:8;72866:18;:28::i;71960:132::-:0;71841:7;71868:6;-1:-1:-1;;;;;71868:6:0;53781:10;72024:23;72016:68;;;;-1:-1:-1;;;72016:68:0;;16182:2:1;72016:68:0;;;16164:21:1;;;16201:18;;;16194:30;16260:34;16240:18;;;16233:62;16312:18;;72016:68:0;15980:356:1;60697:353:0;60778:13;60794:24;60810:7;60794:15;:24::i;:::-;60778:40;;60839:5;-1:-1:-1;;;;;60833:11:0;:2;-1:-1:-1;;;;;60833:11:0;;60829:48;;60853:24;;-1:-1:-1;;;60853:24:0;;;;;;;;;;;60829:48;53781:10;-1:-1:-1;;;;;60894:21:0;;;;;;:63;;-1:-1:-1;60920:37:0;60937:5;53781:10;61750:164;:::i;60920:37::-;60919:38;60894:63;60890:111;;;60966:35;;-1:-1:-1;;;60966:35:0;;;;;;;;;;;60890:111;61014:28;61023:2;61027:7;61036:5;61014:8;:28::i;61981:170::-;62115:28;62125:4;62131:2;62135:7;62115:9;:28::i;62222:185::-;62360:39;62377:4;62383:2;62387:7;62360:39;;;;;;;;;;;;:16;:39::i;58874:504::-;-1:-1:-1;;;;;;;;;;;;;;;;;58974:16:0;58982:7;63140:13;;-1:-1:-1;63130:23:0;63049:112;58974:16;58969:61;;58999:31;;-1:-1:-1;;;58999:31:0;;;;;;;;;;;58969:61;59088:7;59068:245;59135:31;59169:17;;;:11;:17;;;;;;;;;59135:51;;;;;;;;;-1:-1:-1;;;;;59135:51:0;;;;;-1:-1:-1;;;59135:51:0;;;;;;;;;;;;59209:28;59205:93;;59269:9;58874:504;-1:-1:-1;;;58874:504:0:o;59205:93::-;-1:-1:-1;;;59108:6:0;59068:245;;73062:191;73136:16;73155:6;;-1:-1:-1;;;;;73172:17:0;;;-1:-1:-1;;;;;;73172:17:0;;;;;;73205:40;;73155:6;;;;;;;73205:40;;73136:16;73205:40;73125:128;73062:191;:::o;63169:104::-;63238:27;63248:2;63252:8;63238:27;;;;;;;;;;;;:9;:27::i;61392:287::-;53781:10;-1:-1:-1;;;;;61491:24:0;;;61487:54;;61524:17;;-1:-1:-1;;;61524:17:0;;;;;;;;;;;61487:54;53781:10;61554:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;61554:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;61554:53:0;;;;;;;;;;61623:48;;540:41:1;;;61554:42:0;;53781:10;61623:48;;513:18:1;61623:48:0;;;;;;;61392:287;;:::o;62478:316::-;62645:28;62655:4;62661:2;62665:7;62645:9;:28::i;:::-;62689:48;62712:4;62718:2;62722:7;62731:5;62689:22;:48::i;:::-;62684:102;;62746:40;;-1:-1:-1;;;62746:40:0;;;;;;;;;;;48182:716;48238:13;48289:14;48306:17;48317:5;48306:10;:17::i;:::-;48326:1;48306:21;48289:38;;48342:20;48376:6;48365:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48365:18:0;-1:-1:-1;48342:41:0;-1:-1:-1;48507:28:0;;;48523:2;48507:28;48564:288;-1:-1:-1;;48596:5:0;-1:-1:-1;;;48733:2:0;48722:14;;48717:30;48596:5;48704:44;48794:2;48785:11;;;-1:-1:-1;48815:21:0;48564:288;48815:21;-1:-1:-1;48873:6:0;48182:716;-1:-1:-1;;;48182:716:0:o;58465:207::-;58526:7;-1:-1:-1;;;;;58550:19:0;;58546:59;;58578:27;;-1:-1:-1;;;58578:27:0;;;;;;;;;;;58546:59;-1:-1:-1;;;;;;58631:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;58631:32:0;;-1:-1:-1;;;;;58631:32:0;;58465:207::o;67812:196::-;67927:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;67927:29:0;-1:-1:-1;;;;;67927:29:0;;;;;;;;;67972:28;;67927:24;;67972:28;;;;;;;67812:196;;;:::o;65732:1962::-;65847:35;65885:20;65897:7;65885:11;:20::i;:::-;65960:18;;65847:58;;-1:-1:-1;65918:22:0;;-1:-1:-1;;;;;65944:34:0;53781:10;-1:-1:-1;;;;;65944:34:0;;:87;;;-1:-1:-1;53781:10:0;65995:20;66007:7;65995:11;:20::i;:::-;-1:-1:-1;;;;;65995:36:0;;65944:87;:154;;;-1:-1:-1;66065:18:0;;66048:50;;53781:10;61750:164;:::i;66048:50::-;65918:181;;66117:17;66112:66;;66143:35;;-1:-1:-1;;;66143:35:0;;;;;;;;;;;66112:66;66215:4;-1:-1:-1;;;;;66193:26:0;:13;:18;;;-1:-1:-1;;;;;66193:26:0;;66189:67;;66228:28;;-1:-1:-1;;;66228:28:0;;;;;;;;;;;66189:67;-1:-1:-1;;;;;66271:16:0;;66267:52;;66296:23;;-1:-1:-1;;;66296:23:0;;;;;;;;;;;66267:52;66440:49;66457:1;66461:7;66470:13;:18;;;66440:8;:49::i;:::-;-1:-1:-1;;;;;66785:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;66785:31:0;;;-1:-1:-1;;;;;66785:31:0;;;-1:-1:-1;;66785:31:0;;;;;;;66831:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;66831:29:0;;;;;;;;;;;;;66877:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;66922:61:0;;;;-1:-1:-1;;;66967:15:0;66922:61;;;;;;67257:11;;;67287:24;;;;;:29;67257:11;;67287:29;67283:295;;67355:20;67363:11;63140:13;;-1:-1:-1;63130:23:0;63049:112;67355:20;67351:212;;;67432:18;;;67400:24;;;:11;:24;;;;;;;;:50;;67515:28;;;;67473:70;;-1:-1:-1;;;67473:70:0;-1:-1:-1;;;;;;67473:70:0;;;-1:-1:-1;;;;;67400:50:0;;;67473:70;;;;;;;67351:212;66760:829;67625:7;67621:2;-1:-1:-1;;;;;67606:27:0;67615:4;-1:-1:-1;;;;;67606:27:0;;;;;;;;;;;67644:42;76616:158;63636:163;63759:32;63765:2;63769:8;63779:5;63786:4;63759:5;:32::i;68573:765::-;68728:4;-1:-1:-1;;;;;68749:13:0;;7419:19;:23;68745:586;;68785:72;;-1:-1:-1;;;68785:72:0;;-1:-1:-1;;;;;68785:36:0;;;;;:72;;53781:10;;68836:4;;68842:7;;68851:5;;68785:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68785:72:0;;;;;;;;-1:-1:-1;;68785:72:0;;;;;;;;;;;;:::i;:::-;;;68781:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69031:6;:13;69048:1;69031:18;69027:234;;69058:40;;-1:-1:-1;;;69058:40:0;;;;;;;;;;;69027:234;69211:6;69205:13;69196:6;69192:2;69188:15;69181:38;68781:495;-1:-1:-1;;;;;;68908:55:0;-1:-1:-1;;;68908:55:0;;-1:-1:-1;68901:62:0;;68745:586;-1:-1:-1;69315:4:0;68745:586;68573:765;;;;;;:::o;45048:922::-;45101:7;;-1:-1:-1;;;45179:15:0;;45175:102;;-1:-1:-1;;;45215:15:0;;;-1:-1:-1;45259:2:0;45249:12;45175:102;45304:6;45295:5;:15;45291:102;;45340:6;45331:15;;;-1:-1:-1;45375:2:0;45365:12;45291:102;45420:6;45411:5;:15;45407:102;;45456:6;45447:15;;;-1:-1:-1;45491:2:0;45481:12;45407:102;45536:5;45527;:14;45523:99;;45571:5;45562:14;;;-1:-1:-1;45605:1:0;45595:11;45523:99;45649:5;45640;:14;45636:99;;45684:5;45675:14;;;-1:-1:-1;45718:1:0;45708:11;45636:99;45762:5;45753;:14;45749:99;;45797:5;45788:14;;;-1:-1:-1;45831:1:0;45821:11;45749:99;45875:5;45866;:14;45862:66;;45911:1;45901:11;45956:6;45048:922;-1:-1:-1;;45048:922:0:o;64058:1420::-;64220:13;;-1:-1:-1;;;;;64248:16:0;;64244:48;;64273:19;;-1:-1:-1;;;64273:19:0;;;;;;;;;;;64244:48;64307:8;64319:1;64307:13;64303:44;;64329:18;;-1:-1:-1;;;64329:18:0;;;;;;;;;;;64303:44;-1:-1:-1;;;;;64700:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;64700:45:0;;-1:-1:-1;;;;;64700:45:0;;;;;;;;;;64760:50;;;;;;;;;;;;;;64827:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;64877:66:0;;;;-1:-1:-1;;;64927:15:0;64877:66;;;;;;;64827:25;;65012:330;65032:8;65028:1;:12;65012:330;;;65071:38;;65096:12;;-1:-1:-1;;;;;65071:38:0;;;65088:1;;65071:38;;65088:1;;65071:38;65132:4;:68;;;;;65141:59;65172:1;65176:2;65180:12;65194:5;65141:22;:59::i;:::-;65140:60;65132:68;65128:164;;;65232:40;;-1:-1:-1;;;65232:40:0;;;;;;;;;;;65128:164;65312:14;;;;;65042:3;65012:330;;;-1:-1:-1;65358:13:0;:28;65410:60;76616:158;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:118::-;678:5;671:13;664:21;657:5;654:32;644:60;;700:1;697;690:12;715:241;771:6;824:2;812:9;803:7;799:23;795:32;792:52;;;840:1;837;830:12;792:52;879:9;866:23;898:28;920:5;898:28;:::i;961:127::-;1022:10;1017:3;1013:20;1010:1;1003:31;1053:4;1050:1;1043:15;1077:4;1074:1;1067:15;1093:632;1158:5;1188:18;1229:2;1221:6;1218:14;1215:40;;;1235:18;;:::i;:::-;1310:2;1304:9;1278:2;1364:15;;-1:-1:-1;;1360:24:1;;;1386:2;1356:33;1352:42;1340:55;;;1410:18;;;1430:22;;;1407:46;1404:72;;;1456:18;;:::i;:::-;1496:10;1492:2;1485:22;1525:6;1516:15;;1555:6;1547;1540:22;1595:3;1586:6;1581:3;1577:16;1574:25;1571:45;;;1612:1;1609;1602:12;1571:45;1662:6;1657:3;1650:4;1642:6;1638:17;1625:44;1717:1;1710:4;1701:6;1693;1689:19;1685:30;1678:41;;;;1093:632;;;;;:::o;1730:451::-;1799:6;1852:2;1840:9;1831:7;1827:23;1823:32;1820:52;;;1868:1;1865;1858:12;1820:52;1908:9;1895:23;1941:18;1933:6;1930:30;1927:50;;;1973:1;1970;1963:12;1927:50;1996:22;;2049:4;2041:13;;2037:27;-1:-1:-1;2027:55:1;;2078:1;2075;2068:12;2027:55;2101:74;2167:7;2162:2;2149:16;2144:2;2140;2136:11;2101:74;:::i;2186:250::-;2271:1;2281:113;2295:6;2292:1;2289:13;2281:113;;;2371:11;;;2365:18;2352:11;;;2345:39;2317:2;2310:10;2281:113;;;-1:-1:-1;;2428:1:1;2410:16;;2403:27;2186:250::o;2441:271::-;2483:3;2521:5;2515:12;2548:6;2543:3;2536:19;2564:76;2633:6;2626:4;2621:3;2617:14;2610:4;2603:5;2599:16;2564:76;:::i;:::-;2694:2;2673:15;-1:-1:-1;;2669:29:1;2660:39;;;;2701:4;2656:50;;2441:271;-1:-1:-1;;2441:271:1:o;2717:220::-;2866:2;2855:9;2848:21;2829:4;2886:45;2927:2;2916:9;2912:18;2904:6;2886:45;:::i;2942:180::-;3001:6;3054:2;3042:9;3033:7;3029:23;3025:32;3022:52;;;3070:1;3067;3060:12;3022:52;-1:-1:-1;3093:23:1;;2942:180;-1:-1:-1;2942:180:1:o;3335:173::-;3403:20;;-1:-1:-1;;;;;3452:31:1;;3442:42;;3432:70;;3498:1;3495;3488:12;3432:70;3335:173;;;:::o;3513:254::-;3581:6;3589;3642:2;3630:9;3621:7;3617:23;3613:32;3610:52;;;3658:1;3655;3648:12;3610:52;3681:29;3700:9;3681:29;:::i;:::-;3671:39;3757:2;3742:18;;;;3729:32;;-1:-1:-1;;;3513:254:1:o;3954:328::-;4031:6;4039;4047;4100:2;4088:9;4079:7;4075:23;4071:32;4068:52;;;4116:1;4113;4106:12;4068:52;4139:29;4158:9;4139:29;:::i;:::-;4129:39;;4187:38;4221:2;4210:9;4206:18;4187:38;:::i;:::-;4177:48;;4272:2;4261:9;4257:18;4244:32;4234:42;;3954:328;;;;;:::o;4287:186::-;4346:6;4399:2;4387:9;4378:7;4374:23;4370:32;4367:52;;;4415:1;4412;4405:12;4367:52;4438:29;4457:9;4438:29;:::i;4478:632::-;4649:2;4701:21;;;4771:13;;4674:18;;;4793:22;;;4620:4;;4649:2;4872:15;;;;4846:2;4831:18;;;4620:4;4915:169;4929:6;4926:1;4923:13;4915:169;;;4990:13;;4978:26;;5059:15;;;;5024:12;;;;4951:1;4944:9;4915:169;;;-1:-1:-1;5101:3:1;;4478:632;-1:-1:-1;;;;;;4478:632:1:o;5735:315::-;5800:6;5808;5861:2;5849:9;5840:7;5836:23;5832:32;5829:52;;;5877:1;5874;5867:12;5829:52;5900:29;5919:9;5900:29;:::i;:::-;5890:39;;5979:2;5968:9;5964:18;5951:32;5992:28;6014:5;5992:28;:::i;:::-;6039:5;6029:15;;;5735:315;;;;;:::o;6055:667::-;6150:6;6158;6166;6174;6227:3;6215:9;6206:7;6202:23;6198:33;6195:53;;;6244:1;6241;6234:12;6195:53;6267:29;6286:9;6267:29;:::i;:::-;6257:39;;6315:38;6349:2;6338:9;6334:18;6315:38;:::i;:::-;6305:48;;6400:2;6389:9;6385:18;6372:32;6362:42;;6455:2;6444:9;6440:18;6427:32;6482:18;6474:6;6471:30;6468:50;;;6514:1;6511;6504:12;6468:50;6537:22;;6590:4;6582:13;;6578:27;-1:-1:-1;6568:55:1;;6619:1;6616;6609:12;6568:55;6642:74;6708:7;6703:2;6690:16;6685:2;6681;6677:11;6642:74;:::i;:::-;6632:84;;;6055:667;;;;;;;:::o;6727:260::-;6795:6;6803;6856:2;6844:9;6835:7;6831:23;6827:32;6824:52;;;6872:1;6869;6862:12;6824:52;6895:29;6914:9;6895:29;:::i;:::-;6885:39;;6943:38;6977:2;6966:9;6962:18;6943:38;:::i;:::-;6933:48;;6727:260;;;;;:::o;6992:380::-;7071:1;7067:12;;;;7114;;;7135:61;;7189:4;7181:6;7177:17;7167:27;;7135:61;7242:2;7234:6;7231:14;7211:18;7208:38;7205:161;;7288:10;7283:3;7279:20;7276:1;7269:31;7323:4;7320:1;7313:15;7351:4;7348:1;7341:15;7205:161;;6992:380;;;:::o;7503:545::-;7605:2;7600:3;7597:11;7594:448;;;7641:1;7666:5;7662:2;7655:17;7711:4;7707:2;7697:19;7781:2;7769:10;7765:19;7762:1;7758:27;7752:4;7748:38;7817:4;7805:10;7802:20;7799:47;;;-1:-1:-1;7840:4:1;7799:47;7895:2;7890:3;7886:12;7883:1;7879:20;7873:4;7869:31;7859:41;;7950:82;7968:2;7961:5;7958:13;7950:82;;;8013:17;;;7994:1;7983:13;7950:82;;;7954:3;;;7503:545;;;:::o;8224:1352::-;8350:3;8344:10;8377:18;8369:6;8366:30;8363:56;;;8399:18;;:::i;:::-;8428:97;8518:6;8478:38;8510:4;8504:11;8478:38;:::i;:::-;8472:4;8428:97;:::i;:::-;8580:4;;8644:2;8633:14;;8661:1;8656:663;;;;9363:1;9380:6;9377:89;;;-1:-1:-1;9432:19:1;;;9426:26;9377:89;-1:-1:-1;;8181:1:1;8177:11;;;8173:24;8169:29;8159:40;8205:1;8201:11;;;8156:57;9479:81;;8626:944;;8656:663;7450:1;7443:14;;;7487:4;7474:18;;-1:-1:-1;;8692:20:1;;;8810:236;8824:7;8821:1;8818:14;8810:236;;;8913:19;;;8907:26;8892:42;;9005:27;;;;8973:1;8961:14;;;;8840:19;;8810:236;;;8814:3;9074:6;9065:7;9062:19;9059:201;;;9135:19;;;9129:26;-1:-1:-1;;9218:1:1;9214:14;;;9230:3;9210:24;9206:37;9202:42;9187:58;9172:74;;9059:201;-1:-1:-1;;;;;9306:1:1;9290:14;;;9286:22;9273:36;;-1:-1:-1;8224:1352:1:o;9890:245::-;9957:6;10010:2;9998:9;9989:7;9985:23;9981:32;9978:52;;;10026:1;10023;10016:12;9978:52;10058:9;10052:16;10077:28;10099:5;10077:28;:::i;10543:127::-;10604:10;10599:3;10595:20;10592:1;10585:31;10635:4;10632:1;10625:15;10659:4;10656:1;10649:15;10675:135;10714:3;10735:17;;;10732:43;;10755:18;;:::i;:::-;-1:-1:-1;10802:1:1;10791:13;;10675:135::o;11230:127::-;11291:10;11286:3;11282:20;11279:1;11272:31;11322:4;11319:1;11312:15;11346:4;11343:1;11336:15;12065:125;12130:9;;;12151:10;;;12148:36;;;12164:18;;:::i;12893:168::-;12966:9;;;12997;;13014:15;;;13008:22;;12994:37;12984:71;;13035:18;;:::i;14381:1187::-;14658:3;14687:1;14720:6;14714:13;14750:36;14776:9;14750:36;:::i;:::-;14805:1;14822:18;;;14849:133;;;;14996:1;14991:356;;;;14815:532;;14849:133;-1:-1:-1;;14882:24:1;;14870:37;;14955:14;;14948:22;14936:35;;14927:45;;;-1:-1:-1;14849:133:1;;14991:356;15022:6;15019:1;15012:17;15052:4;15097:2;15094:1;15084:16;15122:1;15136:165;15150:6;15147:1;15144:13;15136:165;;;15228:14;;15215:11;;;15208:35;15271:16;;;;15165:10;;15136:165;;;15140:3;;;15330:6;15325:3;15321:16;15314:23;;14815:532;;;;;15378:6;15372:13;15394:68;15453:8;15448:3;15441:4;15433:6;15429:17;15394:68;:::i;:::-;-1:-1:-1;;;15484:18:1;;15511:22;;;15560:1;15549:13;;14381:1187;-1:-1:-1;;;;14381:1187:1:o;16473:489::-;-1:-1:-1;;;;;16742:15:1;;;16724:34;;16794:15;;16789:2;16774:18;;16767:43;16841:2;16826:18;;16819:34;;;16889:3;16884:2;16869:18;;16862:31;;;16667:4;;16910:46;;16936:19;;16928:6;16910:46;:::i;:::-;16902:54;16473:489;-1:-1:-1;;;;;;16473:489:1:o;16967:249::-;17036:6;17089:2;17077:9;17068:7;17064:23;17060:32;17057:52;;;17105:1;17102;17095:12;17057:52;17137:9;17131:16;17156:30;17180:5;17156:30;:::i
Swarm Source
ipfs://49ce4420f3f92b7730b4adad9ca54b6a19ff1d02ce26a8cc386895975f9931fb
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.