Overview
TokenID
1086
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MuttsNFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-16 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.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 functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(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) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (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 `IERC721.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 v4.4.1 (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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; } // 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.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (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() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // 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: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/ERC721A.sol pragma solidity ^0.8.0; /** * @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..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable, Ownable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // 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) private _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; // Revealed bool private revealed; string public notRevealedUri; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_, string memory notRevealedUri_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; revealed = false; notRevealedUri = notRevealedUri_; } /** * @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) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). 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) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) return notRevealedUri; string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ""; } function reveal() public onlyOwner { revealed = true; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @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 Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); 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())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, 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] = TokenOwnership( prevOwnership.addr, 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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @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("ERC721A: transfer to non ERC721Receiver implementer"); } 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: contracts/MuttNFT.sol pragma solidity ^0.8.0; contract MuttsNFT is ERC721A, ReentrancyGuard { uint256 public immutable publicTxLimit; uint32 public publicSaleStartTime; uint64 public publicPrice; bool public paused; mapping(address => bool) internal teamWallets; constructor( uint256 maxBatchSize_, // max amount to mint in one transaction uint256 collectionSize_, string memory notRevealedUri_ ) ERC721A( "Mutts", "MUTT", maxBatchSize_, collectionSize_, notRevealedUri_ ) { publicTxLimit = maxBatchSize_; publicSaleStartTime = 1647453600; publicPrice = 0.05 ether; paused = false; } // ~~~ Modifiers Start ~~~ modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } modifier checkPrice(uint64 price, uint8 quantity) { require( msg.value >= price * quantity, "checkPrice: not enough ether for this amount" ); _; } modifier checkTeamWallets() { require( teamWallets[msg.sender] || msg.sender == owner(), "checkTeamWallets: current user isn't a part of the team" ); _; } // ~~~ Modifiers End ~~~ // ~~~ Mint Start ~~~ function publicMint(uint8 quantity) external payable callerIsUser checkPrice(publicPrice, quantity) { require(paused == false, "publicMint: public sale has been paused"); require( totalSupply() + quantity <= collectionSize, "reservedMint: too many already minted" ); require( block.timestamp >= publicSaleStartTime, "publicMint: public sale has not begun yet" ); require( quantity <= publicTxLimit, "publicMint: can not mint this many in one transaction" ); _safeMint(msg.sender, quantity); } function reservedMint(uint256 quantity) external checkTeamWallets { require( totalSupply() + quantity <= collectionSize, "reservedMint: too many already minted" ); uint256 numChunks = quantity / maxBatchSize; for (uint256 i = 0; i < numChunks; i++) { _safeMint(msg.sender, maxBatchSize); } uint256 remainder = quantity % maxBatchSize; _safeMint(msg.sender, remainder); } function aidropToWallet(uint256 quantity, address wallet) external checkTeamWallets { require( totalSupply() + quantity <= collectionSize, "aidropToWallet: too many already minted" ); uint256 numChunks = quantity / maxBatchSize; for (uint256 i = 0; i < numChunks; i++) { _safeMint(wallet, maxBatchSize); } uint256 remainder = quantity % maxBatchSize; _safeMint(wallet, remainder); } // ~~~ Mint End ~~~ // ~~~ Utils Start ~~~ function withdrawMoney() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "withdrawMoney: Transfer failed."); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } // metadata URI string private _baseTokenURI; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } // ~~~ Utils End ~~~ // ~~~ Setters Start ~~~ function setBaseURI(string calldata baseURI) external checkTeamWallets { _baseTokenURI = baseURI; } function changePaused() external checkTeamWallets { paused = !paused; } function setPublicPrice(uint64 publicPrice_) external checkTeamWallets { publicPrice = publicPrice_; } function setSaleTime(uint32 publicSaleStartTime_) external checkTeamWallets { if (publicSaleStartTime_ != 0) { publicSaleStartTime = publicSaleStartTime_; } } function addTeamWallets(address[] calldata _users) public checkTeamWallets { for (uint16 i = 0; i < _users.length; i++) { teamWallets[_users[i]] = true; } } function removeTeamWallets(address[] calldata _users) public checkTeamWallets { for (uint16 i = 0; i < _users.length; i++) { teamWallets[_users[i]] = false; } } // ~~~ Setters End ~~~ }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"string","name":"notRevealedUri_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addTeamWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"}],"name":"aidropToWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"changePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStartTime","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"removeTeamWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"publicPrice_","type":"uint64"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"publicSaleStartTime_","type":"uint32"}],"name":"setSaleTime","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":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e060405260006001556000600a553480156200001b57600080fd5b5060405162003444380380620034448339810160408190526200003e91620002ea565b604051806040016040528060058152602001644d7574747360d81b815250604051806040016040528060048152602001631355551560e21b8152508484846200009662000090620001f060201b60201c565b620001f4565b60008211620001035760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008311620001655760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000fa565b84516200017a90600290602088019062000244565b5083516200019090600390602087019062000244565b5060a083905260808290526008805460ff191690558051620001ba90600990602084019062000244565b50506001600b5550505060c0939093525050600c80546001600160681b0319166ab1a2bc2ec50000623225a01790555062000430565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200025290620003dd565b90600052602060002090601f016020900481019282620002765760008555620002c1565b82601f106200029157805160ff1916838001178555620002c1565b82800160010185558215620002c1579182015b82811115620002c1578251825591602001919060010190620002a4565b50620002cf929150620002d3565b5090565b5b80821115620002cf5760008155600101620002d4565b6000806000606084860312156200030057600080fd5b835160208086015160408701519295509350906001600160401b03808211156200032957600080fd5b818701915087601f8301126200033e57600080fd5b8151818111156200035357620003536200041a565b604051601f8201601f19908116603f011681019083821181831017156200037e576200037e6200041a565b816040528281528a868487010111156200039757600080fd5b600093505b82841015620003bb57848401860151818501870152928501926200039c565b82841115620003cd5760008684830101525b8096505050505050509250925092565b600181811c90821680620003f257607f821691505b602082108114156200041457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c051612f97620004ad6000396000818161062601526111e501526000818161131f01528181611357015281816113950152818161196001528181611998015281816119d601528181611f4f01528181611f790152612455015260008181611125015281816112c701526118c80152612f976000f3fe6080604052600436106102305760003560e01c8063858e83b51161012e578063af29a0c6116100ab578063d77a4ada1161006f578063d77a4ada146106be578063dc33e681146106de578063e985e9c5146106fe578063f2c4ce1e14610747578063f2fde38b1461076757600080fd5b8063af29a0c614610614578063b88d4fde14610648578063c87b56dd14610668578063d084e14214610688578063d7224ba0146106a857600080fd5b80639eb4eae5116100f25780639eb4eae514610575578063a22cb4651461058a578063a475b5dd146105aa578063a945bf80146105bf578063ac446002146105ff57600080fd5b8063858e83b5146104c25780638c74bf0e146104d55780638da5cb5b146104f55780639231ab2a1461051357806395d89b411461056057600080fd5b806323b872dd116101bc5780635c975abb116101805780635c975abb1461041a5780636352211e1461043b5780636bb7b1d91461045b57806370a082311461048d578063715018a6146104ad57600080fd5b806323b872dd1461037a5780632f745c591461039a57806342842e0e146103ba5780634f6ccce7146103da57806355f804b3146103fa57600080fd5b8063095ea7b311610203578063095ea7b3146102d95780630c29dbae146102fb5780631260927d1461031b57806313cdf22d1461033b57806318160ddd1461035b57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063081c8c44146102c4575b600080fd5b34801561024157600080fd5b506102556102503660046129eb565b610787565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f6107f4565b6040516102619190612c22565b34801561029857600080fd5b506102ac6102a7366004612acc565b610886565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b5061027f610916565b3480156102e557600080fd5b506102f96102f436600461294d565b6109a4565b005b34801561030757600080fd5b506102f9610316366004612b2e565b610abc565b34801561032757600080fd5b506102f9610336366004612977565b610b2f565b34801561034757600080fd5b506102f9610356366004612977565b610bed565b34801561036757600080fd5b506001545b604051908152602001610261565b34801561038657600080fd5b506102f961039536600461285a565b610cab565b3480156103a657600080fd5b5061036c6103b536600461294d565b610cb6565b3480156103c657600080fd5b506102f96103d536600461285a565b610e2e565b3480156103e657600080fd5b5061036c6103f5366004612acc565b610e49565b34801561040657600080fd5b506102f9610415366004612a25565b610eb2565b34801561042657600080fd5b50600c5461025590600160601b900460ff1681565b34801561044757600080fd5b506102ac610456366004612acc565b610f02565b34801561046757600080fd5b50600c546104789063ffffffff1681565b60405163ffffffff9091168152602001610261565b34801561049957600080fd5b5061036c6104a836600461280c565b610f14565b3480156104b957600080fd5b506102f9610fa5565b6102f96104d0366004612b57565b610fdb565b3480156104e157600080fd5b506102f96104f0366004612acc565b611281565b34801561050157600080fd5b506000546001600160a01b03166102ac565b34801561051f57600080fd5b5061053361052e366004612acc565b6113c6565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610261565b34801561056c57600080fd5b5061027f6113e3565b34801561058157600080fd5b506102f96113f2565b34801561059657600080fd5b506102f96105a5366004612911565b611457565b3480156105b657600080fd5b506102f961151c565b3480156105cb57600080fd5b50600c546105e79064010000000090046001600160401b031681565b6040516001600160401b039091168152602001610261565b34801561060b57600080fd5b506102f9611555565b34801561062057600080fd5b5061036c7f000000000000000000000000000000000000000000000000000000000000000081565b34801561065457600080fd5b506102f9610663366004612896565b611677565b34801561067457600080fd5b5061027f610683366004612acc565b6116b0565b34801561069457600080fd5b506102f96106a3366004612b08565b611819565b3480156106b457600080fd5b5061036c600a5481565b3480156106ca57600080fd5b506102f96106d9366004612ae5565b611882565b3480156106ea57600080fd5b5061036c6106f936600461280c565b611a07565b34801561070a57600080fd5b50610255610719366004612827565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561075357600080fd5b506102f9610762366004612a84565b611a12565b34801561077357600080fd5b506102f961078236600461280c565b611a53565b60006001600160e01b031982166380ac58cd60e01b14806107b857506001600160e01b03198216635b5e139f60e01b145b806107d357506001600160e01b0319821663780e9d6360e01b145b806107ee57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461080390612e67565b80601f016020809104026020016040519081016040528092919081815260200182805461082f90612e67565b801561087c5780601f106108515761010080835404028352916020019161087c565b820191906000526020600020905b81548152906001019060200180831161085f57829003601f168201915b5050505050905090565b6000610893826001541190565b6108fa5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6009805461092390612e67565b80601f016020809104026020016040519081016040528092919081815260200182805461094f90612e67565b801561099c5780601f106109715761010080835404028352916020019161099c565b820191906000526020600020905b81548152906001019060200180831161097f57829003601f168201915b505050505081565b60006109af82610f02565b9050806001600160a01b0316836001600160a01b03161415610a1e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108f1565b336001600160a01b0382161480610a3a5750610a3a8133610719565b610aac5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108f1565b610ab7838383611aeb565b505050565b336000908152600d602052604090205460ff1680610ae457506000546001600160a01b031633145b610b005760405162461bcd60e51b81526004016108f190612d02565b600c80546001600160401b03909216640100000000026bffffffffffffffff0000000019909216919091179055565b336000908152600d602052604090205460ff1680610b5757506000546001600160a01b031633145b610b735760405162461bcd60e51b81526004016108f190612d02565b60005b61ffff8116821115610ab7576000600d600085858561ffff16818110610b9e57610b9e612f1f565b9050602002016020810190610bb3919061280c565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610be581612ea2565b915050610b76565b336000908152600d602052604090205460ff1680610c1557506000546001600160a01b031633145b610c315760405162461bcd60e51b81526004016108f190612d02565b60005b61ffff8116821115610ab7576001600d600085858561ffff16818110610c5c57610c5c612f1f565b9050602002016020810190610c71919061280c565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610ca381612ea2565b915050610c34565b610ab7838383611b47565b6000610cc183610f14565b8210610d1a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108f1565b6000610d2560015490565b905060008060005b83811015610dce576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610d7f57805192505b876001600160a01b0316836001600160a01b03161415610dbb5786841415610dad575093506107ee92505050565b83610db781612ec4565b9450505b5080610dc681612ec4565b915050610d2d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108f1565b610ab783838360405180602001604052806000815250611677565b6000610e5460015490565b8210610eae5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108f1565b5090565b336000908152600d602052604090205460ff1680610eda57506000546001600160a01b031633145b610ef65760405162461bcd60e51b81526004016108f190612d02565b610ab7600e8383612672565b6000610f0d82611ecd565b5192915050565b60006001600160a01b038216610f805760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108f1565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610fcf5760405162461bcd60e51b81526004016108f190612c35565b610fd96000612076565b565b32331461102a5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108f1565b600c5464010000000090046001600160401b03168161104c60ff821683612db6565b6001600160401b03163410156110b95760405162461bcd60e51b815260206004820152602c60248201527f636865636b50726963653a206e6f7420656e6f75676820657468657220666f7260448201526b081d1a1a5cc8185b5bdd5b9d60a21b60648201526084016108f1565b600c54600160601b900460ff16156111235760405162461bcd60e51b815260206004820152602760248201527f7075626c69634d696e743a207075626c69632073616c6520686173206265656e604482015266081c185d5cd95960ca1b60648201526084016108f1565b7f00000000000000000000000000000000000000000000000000000000000000008360ff1661115160015490565b61115b9190612d8a565b11156111795760405162461bcd60e51b81526004016108f190612cbd565b600c5463ffffffff164210156111e35760405162461bcd60e51b815260206004820152602960248201527f7075626c69634d696e743a207075626c69632073616c6520686173206e6f7420604482015268189959dd5b881e595d60ba1b60648201526084016108f1565b7f00000000000000000000000000000000000000000000000000000000000000008360ff1611156112745760405162461bcd60e51b815260206004820152603560248201527f7075626c69634d696e743a2063616e206e6f74206d696e742074686973206d61604482015274373c9034b71037b732903a3930b739b0b1ba34b7b760591b60648201526084016108f1565b610ab7338460ff166120c6565b336000908152600d602052604090205460ff16806112a957506000546001600160a01b031633145b6112c55760405162461bcd60e51b81526004016108f190612d02565b7f0000000000000000000000000000000000000000000000000000000000000000816112f060015490565b6112fa9190612d8a565b11156113185760405162461bcd60e51b81526004016108f190612cbd565b60006113447f000000000000000000000000000000000000000000000000000000000000000083612da2565b905060005b8181101561138d5761137b337f00000000000000000000000000000000000000000000000000000000000000006120c6565b8061138581612ec4565b915050611349565b5060006113ba7f000000000000000000000000000000000000000000000000000000000000000084612edf565b9050610ab733826120c6565b60408051808201909152600080825260208201526107ee82611ecd565b60606003805461080390612e67565b336000908152600d602052604090205460ff168061141a57506000546001600160a01b031633145b6114365760405162461bcd60e51b81526004016108f190612d02565b600c805460ff60601b198116600160601b9182900460ff1615909102179055565b6001600160a01b0382163314156114b05760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108f1565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146115465760405162461bcd60e51b81526004016108f190612c35565b6008805460ff19166001179055565b6000546001600160a01b0316331461157f5760405162461bcd60e51b81526004016108f190612c35565b6002600b5414156115d25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108f1565b6002600b55604051600090339047908381818185875af1925050503d8060008114611619576040519150601f19603f3d011682016040523d82523d6000602084013e61161e565b606091505b505090508061166f5760405162461bcd60e51b815260206004820152601f60248201527f77697468647261774d6f6e65793a205472616e73666572206661696c65642e0060448201526064016108f1565b506001600b55565b611682848484611b47565b61168e848484846120e0565b6116aa5760405162461bcd60e51b81526004016108f190612c6a565b50505050565b60606116bd826001541190565b6117215760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f1565b60085460ff166117bd576009805461173890612e67565b80601f016020809104026020016040519081016040528092919081815260200182805461176490612e67565b80156117b15780601f10611786576101008083540402835291602001916117b1565b820191906000526020600020905b81548152906001019060200180831161179457829003601f168201915b50505050509050919050565b60006117c76121ee565b905060008151116117e75760405180602001604052806000815250611812565b806117f1846121fd565b604051602001611802929190612ba6565b6040516020818303038152906040525b9392505050565b336000908152600d602052604090205460ff168061184157506000546001600160a01b031633145b61185d5760405162461bcd60e51b81526004016108f190612d02565b63ffffffff81161561187f57600c805463ffffffff191663ffffffff83161790555b50565b336000908152600d602052604090205460ff16806118aa57506000546001600160a01b031633145b6118c65760405162461bcd60e51b81526004016108f190612d02565b7f0000000000000000000000000000000000000000000000000000000000000000826118f160015490565b6118fb9190612d8a565b11156119595760405162461bcd60e51b815260206004820152602760248201527f616964726f70546f57616c6c65743a20746f6f206d616e7920616c7265616479604482015266081b5a5b9d195960ca1b60648201526084016108f1565b60006119857f000000000000000000000000000000000000000000000000000000000000000084612da2565b905060005b818110156119ce576119bc837f00000000000000000000000000000000000000000000000000000000000000006120c6565b806119c681612ec4565b91505061198a565b5060006119fb7f000000000000000000000000000000000000000000000000000000000000000085612edf565b90506116aa83826120c6565b60006107ee826122fa565b6000546001600160a01b03163314611a3c5760405162461bcd60e51b81526004016108f190612c35565b8051611a4f9060099060208401906126f2565b5050565b6000546001600160a01b03163314611a7d5760405162461bcd60e51b81526004016108f190612c35565b6001600160a01b038116611ae25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f1565b61187f81612076565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b5282611ecd565b80519091506000906001600160a01b0316336001600160a01b03161480611b89575033611b7e84610886565b6001600160a01b0316145b80611b9b57508151611b9b9033610719565b905080611c055760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108f1565b846001600160a01b031682600001516001600160a01b031614611c795760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108f1565b6001600160a01b038416611cdd5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108f1565b611ced6000848460000151611aeb565b6001600160a01b0385166000908152600560205260408120805460019290611d1f9084906001600160801b0316612de5565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611d6b91859116612d5f565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611df2846001612d8a565b6000818152600460205260409020549091506001600160a01b0316611e8357611e1c816001541190565b15611e835760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611eec826001541190565b611f4b5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108f1565b60007f00000000000000000000000000000000000000000000000000000000000000008310611fac57611f9e7f000000000000000000000000000000000000000000000000000000000000000084612e0d565b611fa9906001612d8a565b90505b825b818110612015576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561200257949350505050565b508061200d81612e50565b915050611fae565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108f1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611a4f828260405180602001604052806000815250612398565b60006001600160a01b0384163b156121e257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612124903390899088908890600401612be5565b602060405180830381600087803b15801561213e57600080fd5b505af192505050801561216e575060408051601f3d908101601f1916820190925261216b91810190612a08565b60015b6121c8573d80801561219c576040519150601f19603f3d011682016040523d82523d6000602084013e6121a1565b606091505b5080516121c05760405162461bcd60e51b81526004016108f190612c6a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121e6565b5060015b949350505050565b6060600e805461080390612e67565b6060816122215750506040805180820190915260018152600360fc1b602082015290565b8160005b811561224b578061223581612ec4565b91506122449050600a83612da2565b9150612225565b6000816001600160401b0381111561226557612265612f35565b6040519080825280601f01601f19166020018201604052801561228f576020820181803683370190505b5090505b84156121e6576122a4600183612e0d565b91506122b1600a86612edf565b6122bc906030612d8a565b60f81b8183815181106122d1576122d1612f1f565b60200101906001600160f81b031916908160001a9053506122f3600a86612da2565b9450612293565b60006001600160a01b03821661236c5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016108f1565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166123fb5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108f1565b612406816001541190565b156124535760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108f1565b7f00000000000000000000000000000000000000000000000000000000000000008311156124ce5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108f1565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061252a908790612d5f565b6001600160801b031681526020018583602001516125489190612d5f565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126675760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461262b60008884886120e0565b6126475760405162461bcd60e51b81526004016108f190612c6a565b8161265181612ec4565b925050808061265f90612ec4565b9150506125de565b506001819055611ec5565b82805461267e90612e67565b90600052602060002090601f0160209004810192826126a057600085556126e6565b82601f106126b95782800160ff198235161785556126e6565b828001600101855582156126e6579182015b828111156126e65782358255916020019190600101906126cb565b50610eae929150612766565b8280546126fe90612e67565b90600052602060002090601f01602090048101928261272057600085556126e6565b82601f1061273957805160ff19168380011785556126e6565b828001600101855582156126e6579182015b828111156126e657825182559160200191906001019061274b565b5b80821115610eae5760008155600101612767565b60006001600160401b038084111561279557612795612f35565b604051601f8501601f19908116603f011681019082821181831017156127bd576127bd612f35565b816040528093508581528686860111156127d657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461280757600080fd5b919050565b60006020828403121561281e57600080fd5b611812826127f0565b6000806040838503121561283a57600080fd5b612843836127f0565b9150612851602084016127f0565b90509250929050565b60008060006060848603121561286f57600080fd5b612878846127f0565b9250612886602085016127f0565b9150604084013590509250925092565b600080600080608085870312156128ac57600080fd5b6128b5856127f0565b93506128c3602086016127f0565b92506040850135915060608501356001600160401b038111156128e557600080fd5b8501601f810187136128f657600080fd5b6129058782356020840161277b565b91505092959194509250565b6000806040838503121561292457600080fd5b61292d836127f0565b91506020830135801515811461294257600080fd5b809150509250929050565b6000806040838503121561296057600080fd5b612969836127f0565b946020939093013593505050565b6000806020838503121561298a57600080fd5b82356001600160401b03808211156129a157600080fd5b818501915085601f8301126129b557600080fd5b8135818111156129c457600080fd5b8660208260051b85010111156129d957600080fd5b60209290920196919550909350505050565b6000602082840312156129fd57600080fd5b813561181281612f4b565b600060208284031215612a1a57600080fd5b815161181281612f4b565b60008060208385031215612a3857600080fd5b82356001600160401b0380821115612a4f57600080fd5b818501915085601f830112612a6357600080fd5b813581811115612a7257600080fd5b8660208285010111156129d957600080fd5b600060208284031215612a9657600080fd5b81356001600160401b03811115612aac57600080fd5b8201601f81018413612abd57600080fd5b6121e68482356020840161277b565b600060208284031215612ade57600080fd5b5035919050565b60008060408385031215612af857600080fd5b82359150612851602084016127f0565b600060208284031215612b1a57600080fd5b813563ffffffff8116811461181257600080fd5b600060208284031215612b4057600080fd5b81356001600160401b038116811461181257600080fd5b600060208284031215612b6957600080fd5b813560ff8116811461181257600080fd5b60008151808452612b92816020860160208601612e24565b601f01601f19169290920160200192915050565b60008351612bb8818460208801612e24565b835190830190612bcc818360208801612e24565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c1890830184612b7a565b9695505050505050565b6020815260006118126020830184612b7a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526025908201527f72657365727665644d696e743a20746f6f206d616e7920616c7265616479206d6040820152641a5b9d195960da1b606082015260800190565b60208082526037908201527f636865636b5465616d57616c6c6574733a2063757272656e742075736572206960408201527f736e277420612070617274206f6620746865207465616d000000000000000000606082015260800190565b60006001600160801b03808316818516808303821115612d8157612d81612ef3565b01949350505050565b60008219821115612d9d57612d9d612ef3565b500190565b600082612db157612db1612f09565b500490565b60006001600160401b0380831681851681830481118215151615612ddc57612ddc612ef3565b02949350505050565b60006001600160801b0383811690831681811015612e0557612e05612ef3565b039392505050565b600082821015612e1f57612e1f612ef3565b500390565b60005b83811015612e3f578181015183820152602001612e27565b838111156116aa5750506000910152565b600081612e5f57612e5f612ef3565b506000190190565b600181811c90821680612e7b57607f821691505b60208210811415612e9c57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415612eba57612eba612ef3565b6001019392505050565b6000600019821415612ed857612ed8612ef3565b5060010190565b600082612eee57612eee612f09565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461187f57600080fdfea2646970667358221220cf3e7eaf995130d2ee2206fd6343834ee7ec03cf04431bfa494d3e8dc0aa68a064736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000001e6100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d50554d6839397a753442394c484c76385676345641325a4a7674697a6571556272706b7076763761333873322f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102305760003560e01c8063858e83b51161012e578063af29a0c6116100ab578063d77a4ada1161006f578063d77a4ada146106be578063dc33e681146106de578063e985e9c5146106fe578063f2c4ce1e14610747578063f2fde38b1461076757600080fd5b8063af29a0c614610614578063b88d4fde14610648578063c87b56dd14610668578063d084e14214610688578063d7224ba0146106a857600080fd5b80639eb4eae5116100f25780639eb4eae514610575578063a22cb4651461058a578063a475b5dd146105aa578063a945bf80146105bf578063ac446002146105ff57600080fd5b8063858e83b5146104c25780638c74bf0e146104d55780638da5cb5b146104f55780639231ab2a1461051357806395d89b411461056057600080fd5b806323b872dd116101bc5780635c975abb116101805780635c975abb1461041a5780636352211e1461043b5780636bb7b1d91461045b57806370a082311461048d578063715018a6146104ad57600080fd5b806323b872dd1461037a5780632f745c591461039a57806342842e0e146103ba5780634f6ccce7146103da57806355f804b3146103fa57600080fd5b8063095ea7b311610203578063095ea7b3146102d95780630c29dbae146102fb5780631260927d1461031b57806313cdf22d1461033b57806318160ddd1461035b57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063081c8c44146102c4575b600080fd5b34801561024157600080fd5b506102556102503660046129eb565b610787565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f6107f4565b6040516102619190612c22565b34801561029857600080fd5b506102ac6102a7366004612acc565b610886565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b5061027f610916565b3480156102e557600080fd5b506102f96102f436600461294d565b6109a4565b005b34801561030757600080fd5b506102f9610316366004612b2e565b610abc565b34801561032757600080fd5b506102f9610336366004612977565b610b2f565b34801561034757600080fd5b506102f9610356366004612977565b610bed565b34801561036757600080fd5b506001545b604051908152602001610261565b34801561038657600080fd5b506102f961039536600461285a565b610cab565b3480156103a657600080fd5b5061036c6103b536600461294d565b610cb6565b3480156103c657600080fd5b506102f96103d536600461285a565b610e2e565b3480156103e657600080fd5b5061036c6103f5366004612acc565b610e49565b34801561040657600080fd5b506102f9610415366004612a25565b610eb2565b34801561042657600080fd5b50600c5461025590600160601b900460ff1681565b34801561044757600080fd5b506102ac610456366004612acc565b610f02565b34801561046757600080fd5b50600c546104789063ffffffff1681565b60405163ffffffff9091168152602001610261565b34801561049957600080fd5b5061036c6104a836600461280c565b610f14565b3480156104b957600080fd5b506102f9610fa5565b6102f96104d0366004612b57565b610fdb565b3480156104e157600080fd5b506102f96104f0366004612acc565b611281565b34801561050157600080fd5b506000546001600160a01b03166102ac565b34801561051f57600080fd5b5061053361052e366004612acc565b6113c6565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610261565b34801561056c57600080fd5b5061027f6113e3565b34801561058157600080fd5b506102f96113f2565b34801561059657600080fd5b506102f96105a5366004612911565b611457565b3480156105b657600080fd5b506102f961151c565b3480156105cb57600080fd5b50600c546105e79064010000000090046001600160401b031681565b6040516001600160401b039091168152602001610261565b34801561060b57600080fd5b506102f9611555565b34801561062057600080fd5b5061036c7f000000000000000000000000000000000000000000000000000000000000003281565b34801561065457600080fd5b506102f9610663366004612896565b611677565b34801561067457600080fd5b5061027f610683366004612acc565b6116b0565b34801561069457600080fd5b506102f96106a3366004612b08565b611819565b3480156106b457600080fd5b5061036c600a5481565b3480156106ca57600080fd5b506102f96106d9366004612ae5565b611882565b3480156106ea57600080fd5b5061036c6106f936600461280c565b611a07565b34801561070a57600080fd5b50610255610719366004612827565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561075357600080fd5b506102f9610762366004612a84565b611a12565b34801561077357600080fd5b506102f961078236600461280c565b611a53565b60006001600160e01b031982166380ac58cd60e01b14806107b857506001600160e01b03198216635b5e139f60e01b145b806107d357506001600160e01b0319821663780e9d6360e01b145b806107ee57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461080390612e67565b80601f016020809104026020016040519081016040528092919081815260200182805461082f90612e67565b801561087c5780601f106108515761010080835404028352916020019161087c565b820191906000526020600020905b81548152906001019060200180831161085f57829003601f168201915b5050505050905090565b6000610893826001541190565b6108fa5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6009805461092390612e67565b80601f016020809104026020016040519081016040528092919081815260200182805461094f90612e67565b801561099c5780601f106109715761010080835404028352916020019161099c565b820191906000526020600020905b81548152906001019060200180831161097f57829003601f168201915b505050505081565b60006109af82610f02565b9050806001600160a01b0316836001600160a01b03161415610a1e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108f1565b336001600160a01b0382161480610a3a5750610a3a8133610719565b610aac5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108f1565b610ab7838383611aeb565b505050565b336000908152600d602052604090205460ff1680610ae457506000546001600160a01b031633145b610b005760405162461bcd60e51b81526004016108f190612d02565b600c80546001600160401b03909216640100000000026bffffffffffffffff0000000019909216919091179055565b336000908152600d602052604090205460ff1680610b5757506000546001600160a01b031633145b610b735760405162461bcd60e51b81526004016108f190612d02565b60005b61ffff8116821115610ab7576000600d600085858561ffff16818110610b9e57610b9e612f1f565b9050602002016020810190610bb3919061280c565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610be581612ea2565b915050610b76565b336000908152600d602052604090205460ff1680610c1557506000546001600160a01b031633145b610c315760405162461bcd60e51b81526004016108f190612d02565b60005b61ffff8116821115610ab7576001600d600085858561ffff16818110610c5c57610c5c612f1f565b9050602002016020810190610c71919061280c565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610ca381612ea2565b915050610c34565b610ab7838383611b47565b6000610cc183610f14565b8210610d1a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108f1565b6000610d2560015490565b905060008060005b83811015610dce576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610d7f57805192505b876001600160a01b0316836001600160a01b03161415610dbb5786841415610dad575093506107ee92505050565b83610db781612ec4565b9450505b5080610dc681612ec4565b915050610d2d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108f1565b610ab783838360405180602001604052806000815250611677565b6000610e5460015490565b8210610eae5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108f1565b5090565b336000908152600d602052604090205460ff1680610eda57506000546001600160a01b031633145b610ef65760405162461bcd60e51b81526004016108f190612d02565b610ab7600e8383612672565b6000610f0d82611ecd565b5192915050565b60006001600160a01b038216610f805760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108f1565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610fcf5760405162461bcd60e51b81526004016108f190612c35565b610fd96000612076565b565b32331461102a5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108f1565b600c5464010000000090046001600160401b03168161104c60ff821683612db6565b6001600160401b03163410156110b95760405162461bcd60e51b815260206004820152602c60248201527f636865636b50726963653a206e6f7420656e6f75676820657468657220666f7260448201526b081d1a1a5cc8185b5bdd5b9d60a21b60648201526084016108f1565b600c54600160601b900460ff16156111235760405162461bcd60e51b815260206004820152602760248201527f7075626c69634d696e743a207075626c69632073616c6520686173206265656e604482015266081c185d5cd95960ca1b60648201526084016108f1565b7f0000000000000000000000000000000000000000000000000000000000001e618360ff1661115160015490565b61115b9190612d8a565b11156111795760405162461bcd60e51b81526004016108f190612cbd565b600c5463ffffffff164210156111e35760405162461bcd60e51b815260206004820152602960248201527f7075626c69634d696e743a207075626c69632073616c6520686173206e6f7420604482015268189959dd5b881e595d60ba1b60648201526084016108f1565b7f00000000000000000000000000000000000000000000000000000000000000328360ff1611156112745760405162461bcd60e51b815260206004820152603560248201527f7075626c69634d696e743a2063616e206e6f74206d696e742074686973206d61604482015274373c9034b71037b732903a3930b739b0b1ba34b7b760591b60648201526084016108f1565b610ab7338460ff166120c6565b336000908152600d602052604090205460ff16806112a957506000546001600160a01b031633145b6112c55760405162461bcd60e51b81526004016108f190612d02565b7f0000000000000000000000000000000000000000000000000000000000001e61816112f060015490565b6112fa9190612d8a565b11156113185760405162461bcd60e51b81526004016108f190612cbd565b60006113447f000000000000000000000000000000000000000000000000000000000000003283612da2565b905060005b8181101561138d5761137b337f00000000000000000000000000000000000000000000000000000000000000326120c6565b8061138581612ec4565b915050611349565b5060006113ba7f000000000000000000000000000000000000000000000000000000000000003284612edf565b9050610ab733826120c6565b60408051808201909152600080825260208201526107ee82611ecd565b60606003805461080390612e67565b336000908152600d602052604090205460ff168061141a57506000546001600160a01b031633145b6114365760405162461bcd60e51b81526004016108f190612d02565b600c805460ff60601b198116600160601b9182900460ff1615909102179055565b6001600160a01b0382163314156114b05760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108f1565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146115465760405162461bcd60e51b81526004016108f190612c35565b6008805460ff19166001179055565b6000546001600160a01b0316331461157f5760405162461bcd60e51b81526004016108f190612c35565b6002600b5414156115d25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108f1565b6002600b55604051600090339047908381818185875af1925050503d8060008114611619576040519150601f19603f3d011682016040523d82523d6000602084013e61161e565b606091505b505090508061166f5760405162461bcd60e51b815260206004820152601f60248201527f77697468647261774d6f6e65793a205472616e73666572206661696c65642e0060448201526064016108f1565b506001600b55565b611682848484611b47565b61168e848484846120e0565b6116aa5760405162461bcd60e51b81526004016108f190612c6a565b50505050565b60606116bd826001541190565b6117215760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f1565b60085460ff166117bd576009805461173890612e67565b80601f016020809104026020016040519081016040528092919081815260200182805461176490612e67565b80156117b15780601f10611786576101008083540402835291602001916117b1565b820191906000526020600020905b81548152906001019060200180831161179457829003601f168201915b50505050509050919050565b60006117c76121ee565b905060008151116117e75760405180602001604052806000815250611812565b806117f1846121fd565b604051602001611802929190612ba6565b6040516020818303038152906040525b9392505050565b336000908152600d602052604090205460ff168061184157506000546001600160a01b031633145b61185d5760405162461bcd60e51b81526004016108f190612d02565b63ffffffff81161561187f57600c805463ffffffff191663ffffffff83161790555b50565b336000908152600d602052604090205460ff16806118aa57506000546001600160a01b031633145b6118c65760405162461bcd60e51b81526004016108f190612d02565b7f0000000000000000000000000000000000000000000000000000000000001e61826118f160015490565b6118fb9190612d8a565b11156119595760405162461bcd60e51b815260206004820152602760248201527f616964726f70546f57616c6c65743a20746f6f206d616e7920616c7265616479604482015266081b5a5b9d195960ca1b60648201526084016108f1565b60006119857f000000000000000000000000000000000000000000000000000000000000003284612da2565b905060005b818110156119ce576119bc837f00000000000000000000000000000000000000000000000000000000000000326120c6565b806119c681612ec4565b91505061198a565b5060006119fb7f000000000000000000000000000000000000000000000000000000000000003285612edf565b90506116aa83826120c6565b60006107ee826122fa565b6000546001600160a01b03163314611a3c5760405162461bcd60e51b81526004016108f190612c35565b8051611a4f9060099060208401906126f2565b5050565b6000546001600160a01b03163314611a7d5760405162461bcd60e51b81526004016108f190612c35565b6001600160a01b038116611ae25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f1565b61187f81612076565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b5282611ecd565b80519091506000906001600160a01b0316336001600160a01b03161480611b89575033611b7e84610886565b6001600160a01b0316145b80611b9b57508151611b9b9033610719565b905080611c055760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108f1565b846001600160a01b031682600001516001600160a01b031614611c795760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108f1565b6001600160a01b038416611cdd5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108f1565b611ced6000848460000151611aeb565b6001600160a01b0385166000908152600560205260408120805460019290611d1f9084906001600160801b0316612de5565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611d6b91859116612d5f565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611df2846001612d8a565b6000818152600460205260409020549091506001600160a01b0316611e8357611e1c816001541190565b15611e835760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611eec826001541190565b611f4b5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108f1565b60007f00000000000000000000000000000000000000000000000000000000000000328310611fac57611f9e7f000000000000000000000000000000000000000000000000000000000000003284612e0d565b611fa9906001612d8a565b90505b825b818110612015576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561200257949350505050565b508061200d81612e50565b915050611fae565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108f1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611a4f828260405180602001604052806000815250612398565b60006001600160a01b0384163b156121e257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612124903390899088908890600401612be5565b602060405180830381600087803b15801561213e57600080fd5b505af192505050801561216e575060408051601f3d908101601f1916820190925261216b91810190612a08565b60015b6121c8573d80801561219c576040519150601f19603f3d011682016040523d82523d6000602084013e6121a1565b606091505b5080516121c05760405162461bcd60e51b81526004016108f190612c6a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121e6565b5060015b949350505050565b6060600e805461080390612e67565b6060816122215750506040805180820190915260018152600360fc1b602082015290565b8160005b811561224b578061223581612ec4565b91506122449050600a83612da2565b9150612225565b6000816001600160401b0381111561226557612265612f35565b6040519080825280601f01601f19166020018201604052801561228f576020820181803683370190505b5090505b84156121e6576122a4600183612e0d565b91506122b1600a86612edf565b6122bc906030612d8a565b60f81b8183815181106122d1576122d1612f1f565b60200101906001600160f81b031916908160001a9053506122f3600a86612da2565b9450612293565b60006001600160a01b03821661236c5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016108f1565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166123fb5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108f1565b612406816001541190565b156124535760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108f1565b7f00000000000000000000000000000000000000000000000000000000000000328311156124ce5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108f1565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061252a908790612d5f565b6001600160801b031681526020018583602001516125489190612d5f565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126675760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461262b60008884886120e0565b6126475760405162461bcd60e51b81526004016108f190612c6a565b8161265181612ec4565b925050808061265f90612ec4565b9150506125de565b506001819055611ec5565b82805461267e90612e67565b90600052602060002090601f0160209004810192826126a057600085556126e6565b82601f106126b95782800160ff198235161785556126e6565b828001600101855582156126e6579182015b828111156126e65782358255916020019190600101906126cb565b50610eae929150612766565b8280546126fe90612e67565b90600052602060002090601f01602090048101928261272057600085556126e6565b82601f1061273957805160ff19168380011785556126e6565b828001600101855582156126e6579182015b828111156126e657825182559160200191906001019061274b565b5b80821115610eae5760008155600101612767565b60006001600160401b038084111561279557612795612f35565b604051601f8501601f19908116603f011681019082821181831017156127bd576127bd612f35565b816040528093508581528686860111156127d657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461280757600080fd5b919050565b60006020828403121561281e57600080fd5b611812826127f0565b6000806040838503121561283a57600080fd5b612843836127f0565b9150612851602084016127f0565b90509250929050565b60008060006060848603121561286f57600080fd5b612878846127f0565b9250612886602085016127f0565b9150604084013590509250925092565b600080600080608085870312156128ac57600080fd5b6128b5856127f0565b93506128c3602086016127f0565b92506040850135915060608501356001600160401b038111156128e557600080fd5b8501601f810187136128f657600080fd5b6129058782356020840161277b565b91505092959194509250565b6000806040838503121561292457600080fd5b61292d836127f0565b91506020830135801515811461294257600080fd5b809150509250929050565b6000806040838503121561296057600080fd5b612969836127f0565b946020939093013593505050565b6000806020838503121561298a57600080fd5b82356001600160401b03808211156129a157600080fd5b818501915085601f8301126129b557600080fd5b8135818111156129c457600080fd5b8660208260051b85010111156129d957600080fd5b60209290920196919550909350505050565b6000602082840312156129fd57600080fd5b813561181281612f4b565b600060208284031215612a1a57600080fd5b815161181281612f4b565b60008060208385031215612a3857600080fd5b82356001600160401b0380821115612a4f57600080fd5b818501915085601f830112612a6357600080fd5b813581811115612a7257600080fd5b8660208285010111156129d957600080fd5b600060208284031215612a9657600080fd5b81356001600160401b03811115612aac57600080fd5b8201601f81018413612abd57600080fd5b6121e68482356020840161277b565b600060208284031215612ade57600080fd5b5035919050565b60008060408385031215612af857600080fd5b82359150612851602084016127f0565b600060208284031215612b1a57600080fd5b813563ffffffff8116811461181257600080fd5b600060208284031215612b4057600080fd5b81356001600160401b038116811461181257600080fd5b600060208284031215612b6957600080fd5b813560ff8116811461181257600080fd5b60008151808452612b92816020860160208601612e24565b601f01601f19169290920160200192915050565b60008351612bb8818460208801612e24565b835190830190612bcc818360208801612e24565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c1890830184612b7a565b9695505050505050565b6020815260006118126020830184612b7a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526025908201527f72657365727665644d696e743a20746f6f206d616e7920616c7265616479206d6040820152641a5b9d195960da1b606082015260800190565b60208082526037908201527f636865636b5465616d57616c6c6574733a2063757272656e742075736572206960408201527f736e277420612070617274206f6620746865207465616d000000000000000000606082015260800190565b60006001600160801b03808316818516808303821115612d8157612d81612ef3565b01949350505050565b60008219821115612d9d57612d9d612ef3565b500190565b600082612db157612db1612f09565b500490565b60006001600160401b0380831681851681830481118215151615612ddc57612ddc612ef3565b02949350505050565b60006001600160801b0383811690831681811015612e0557612e05612ef3565b039392505050565b600082821015612e1f57612e1f612ef3565b500390565b60005b83811015612e3f578181015183820152602001612e27565b838111156116aa5750506000910152565b600081612e5f57612e5f612ef3565b506000190190565b600181811c90821680612e7b57607f821691505b60208210811415612e9c57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415612eba57612eba612ef3565b6001019392505050565b6000600019821415612ed857612ed8612ef3565b5060010190565b600082612eee57612eee612f09565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461187f57600080fdfea2646970667358221220cf3e7eaf995130d2ee2206fd6343834ee7ec03cf04431bfa494d3e8dc0aa68a064736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000001e6100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d50554d6839397a753442394c484c76385676345641325a4a7674697a6571556272706b7076763761333873322f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 50
Arg [1] : collectionSize_ (uint256): 7777
Arg [2] : notRevealedUri_ (string): ipfs://QmPUMh99zu4B9LHLv8Vv4VA2ZJvtizeqUbrpkpvv7a38s2/hidden.json
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001e61
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [4] : 697066733a2f2f516d50554d6839397a753442394c484c76385676345641325a
Arg [5] : 4a7674697a6571556272706b7076763761333873322f68696464656e2e6a736f
Arg [6] : 6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
45543:4862:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32908:370;;;;;;;;;;-1:-1:-1;32908:370:0;;;;;:::i;:::-;;:::i;:::-;;;8343:14:1;;8336:22;8318:41;;8306:2;8291:18;32908:370:0;;;;;;;;34634:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36417:204::-;;;;;;;;;;-1:-1:-1;36417:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7641:32:1;;;7623:51;;7611:2;7596:18;36417:204:0;7477:203:1;30666:28:0;;;;;;;;;;;;;:::i;35980:379::-;;;;;;;;;;-1:-1:-1;35980:379:0;;;;;:::i;:::-;;:::i;:::-;;49652:116;;;;;;;;;;-1:-1:-1;49652:116:0;;;;;:::i;:::-;;:::i;50178:196::-;;;;;;;;;;-1:-1:-1;50178:196:0;;;;;:::i;:::-;;:::i;49978:192::-;;;;;;;;;;-1:-1:-1;49978:192:0;;;;;:::i;:::-;;:::i;31469:94::-;;;;;;;;;;-1:-1:-1;31545:12:0;;31469:94;;;21551:25:1;;;21539:2;21524:18;31469:94:0;21405:177:1;37267:142:0;;;;;;;;;;-1:-1:-1;37267:142:0;;;;;:::i;:::-;;:::i;32100:744::-;;;;;;;;;;-1:-1:-1;32100:744:0;;;;;:::i;:::-;;:::i;37472:157::-;;;;;;;;;;-1:-1:-1;37472:157:0;;;;;:::i;:::-;;:::i;31632:177::-;;;;;;;;;;-1:-1:-1;31632:177:0;;;;;:::i;:::-;;:::i;49438:113::-;;;;;;;;;;-1:-1:-1;49438:113:0;;;;;:::i;:::-;;:::i;45717:18::-;;;;;;;;;;-1:-1:-1;45717:18:0;;;;-1:-1:-1;;;45717:18:0;;;;;;34457:118;;;;;;;;;;-1:-1:-1;34457:118:0;;;;;:::i;:::-;;:::i;45643:33::-;;;;;;;;;;-1:-1:-1;45643:33:0;;;;;;;;;;;21761:10:1;21749:23;;;21731:42;;21719:2;21704:18;45643:33:0;21587:192:1;33334:211:0;;;;;;;;;;-1:-1:-1;33334:211:0;;;;;:::i;:::-;;:::i;28148:103::-;;;;;;;;;;;;;:::i;46949:688::-;;;;;;:::i;:::-;;:::i;47645:481::-;;;;;;;;;;-1:-1:-1;47645:481:0;;;;;:::i;:::-;;:::i;27497:87::-;;;;;;;;;;-1:-1:-1;27543:7:0;27570:6;-1:-1:-1;;;;;27570:6:0;27497:87;;49025:167;;;;;;;;;;-1:-1:-1;49025:167:0;;;;;:::i;:::-;;:::i;:::-;;;;21270:13:1;;-1:-1:-1;;;;;21266:39:1;21248:58;;21366:4;21354:17;;;21348:24;-1:-1:-1;;;;;21344:49:1;21322:20;;;21315:79;;;;21221:18;49025:167:0;21040:360:1;34789:98:0;;;;;;;;;;;;;:::i;49559:85::-;;;;;;;;;;;;;:::i;36685:274::-;;;;;;;;;;-1:-1:-1;36685:274:0;;;;;:::i;:::-;;:::i;35411:63::-;;;;;;;;;;;;;:::i;45683:25::-;;;;;;;;;;-1:-1:-1;45683:25:0;;;;;;;-1:-1:-1;;;;;45683:25:0;;;;;;-1:-1:-1;;;;;21946:31:1;;;21928:50;;21916:2;21901:18;45683:25:0;21784:200:1;48690:206:0;;;;;;;;;;;;;:::i;45596:38::-;;;;;;;;;;;;;;;37692:311;;;;;;;;;;-1:-1:-1;37692:311:0;;;;;:::i;:::-;;:::i;34950:455::-;;;;;;;;;;-1:-1:-1;34950:455:0;;;;;:::i;:::-;;:::i;49776:194::-;;;;;;;;;;-1:-1:-1;49776:194:0;;;;;:::i;:::-;;:::i;42107:43::-;;;;;;;;;;;;;;;;48134:493;;;;;;;;;;-1:-1:-1;48134:493:0;;;;;:::i;:::-;;:::i;48904:113::-;;;;;;;;;;-1:-1:-1;48904:113:0;;;;;:::i;:::-;;:::i;37022:186::-;;;;;;;;;;-1:-1:-1;37022:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;37167:25:0;;;37144:4;37167:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37022:186;35480:120;;;;;;;;;;-1:-1:-1;35480:120:0;;;;;:::i;:::-;;:::i;28406:201::-;;;;;;;;;;-1:-1:-1;28406:201:0;;;;;:::i;:::-;;:::i;32908:370::-;33035:4;-1:-1:-1;;;;;;33065:40:0;;-1:-1:-1;;;33065:40:0;;:99;;-1:-1:-1;;;;;;;33116:48:0;;-1:-1:-1;;;33116:48:0;33065:99;:160;;;-1:-1:-1;;;;;;;33175:50:0;;-1:-1:-1;;;33175:50:0;33065:160;:207;;;-1:-1:-1;;;;;;;;;;11460:40:0;;;33236:36;33051:221;32908:370;-1:-1:-1;;32908:370:0:o;34634:94::-;34688:13;34717:5;34710:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34634:94;:::o;36417:204::-;36485:7;36509:16;36517:7;38329:12;;-1:-1:-1;38319:22:0;38242:105;36509:16;36501:74;;;;-1:-1:-1;;;36501:74:0;;20425:2:1;36501:74:0;;;20407:21:1;20464:2;20444:18;;;20437:30;20503:34;20483:18;;;20476:62;-1:-1:-1;;;20554:18:1;;;20547:43;20607:19;;36501:74:0;;;;;;;;;-1:-1:-1;36591:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36591:24:0;;36417:204::o;30666:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35980:379::-;36049:13;36065:24;36081:7;36065:15;:24::i;:::-;36049:40;;36110:5;-1:-1:-1;;;;;36104:11:0;:2;-1:-1:-1;;;;;36104:11:0;;;36096:58;;;;-1:-1:-1;;;36096:58:0;;16413:2:1;36096:58:0;;;16395:21:1;16452:2;16432:18;;;16425:30;16491:34;16471:18;;;16464:62;-1:-1:-1;;;16542:18:1;;;16535:32;16584:19;;36096:58:0;16211:398:1;36096:58:0;26301:10;-1:-1:-1;;;;;36179:21:0;;;;:62;;-1:-1:-1;36204:37:0;36221:5;26301:10;37022:186;:::i;36204:37::-;36163:153;;;;-1:-1:-1;;;36163:153:0;;12434:2:1;36163:153:0;;;12416:21:1;12473:2;12453:18;;;12446:30;12512:34;12492:18;;;12485:62;12583:27;12563:18;;;12556:55;12628:19;;36163:153:0;12232:421:1;36163:153:0;36325:28;36334:2;36338:7;36347:5;36325:8;:28::i;:::-;36042:317;35980:379;;:::o;49652:116::-;46741:10;46729:23;;;;:11;:23;;;;;;;;;:48;;-1:-1:-1;27543:7:0;27570:6;-1:-1:-1;;;;;27570:6:0;46756:10;:21;46729:48;46707:153;;;;-1:-1:-1;;;46707:153:0;;;;;;;:::i;:::-;49734:11:::1;:26:::0;;-1:-1:-1;;;;;49734:26:0;;::::1;::::0;::::1;-1:-1:-1::0;;49734:26:0;;::::1;::::0;;;::::1;::::0;;49652:116::o;50178:196::-;46741:10;46729:23;;;;:11;:23;;;;;;;;;:48;;-1:-1:-1;27543:7:0;27570:6;-1:-1:-1;;;;;27570:6:0;46756:10;:21;46729:48;46707:153;;;;-1:-1:-1;;;46707:153:0;;;;;;;:::i;:::-;50272:8:::1;50267:100;50286:17;::::0;::::1;::::0;-1:-1:-1;50267:100:0::1;;;50350:5;50325:11;:22;50337:6;;50344:1;50337:9;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50325:22:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;50325:22:0;:30;;-1:-1:-1;;50325:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50305:3;::::1;::::0;::::1;:::i;:::-;;;;50267:100;;49978:192:::0;46741:10;46729:23;;;;:11;:23;;;;;;;;;:48;;-1:-1:-1;27543:7:0;27570:6;-1:-1:-1;;;;;27570:6:0;46756:10;:21;46729:48;46707:153;;;;-1:-1:-1;;;46707:153:0;;;;;;;:::i;:::-;50069:8:::1;50064:99;50083:17;::::0;::::1;::::0;-1:-1:-1;50064:99:0::1;;;50147:4;50122:11;:22;50134:6;;50141:1;50134:9;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50122:22:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;50122:22:0;:29;;-1:-1:-1;;50122:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50102:3;::::1;::::0;::::1;:::i;:::-;;;;50064:99;;37267:142:::0;37375:28;37385:4;37391:2;37395:7;37375:9;:28::i;32100:744::-;32209:7;32244:16;32254:5;32244:9;:16::i;:::-;32236:5;:24;32228:71;;;;-1:-1:-1;;;32228:71:0;;8796:2:1;32228:71:0;;;8778:21:1;8835:2;8815:18;;;8808:30;8874:34;8854:18;;;8847:62;-1:-1:-1;;;8925:18:1;;;8918:32;8967:19;;32228:71:0;8594:398:1;32228:71:0;32306:22;32331:13;31545:12;;;31469:94;32331:13;32306:38;;32351:19;32381:25;32431:9;32426:350;32450:14;32446:1;:18;32426:350;;;32480:31;32514:14;;;:11;:14;;;;;;;;;32480:48;;;;;;;;;-1:-1:-1;;;;;32480:48:0;;;;;-1:-1:-1;;;32480:48:0;;;-1:-1:-1;;;;;32480:48:0;;;;;;;;32541:28;32537:89;;32602:14;;;-1:-1:-1;32537:89:0;32659:5;-1:-1:-1;;;;;32638:26:0;:17;-1:-1:-1;;;;;32638:26:0;;32634:135;;;32696:5;32681:11;:20;32677:59;;;-1:-1:-1;32723:1:0;-1:-1:-1;32716:8:0;;-1:-1:-1;;;32716:8:0;32677:59;32746:13;;;;:::i;:::-;;;;32634:135;-1:-1:-1;32466:3:0;;;;:::i;:::-;;;;32426:350;;;-1:-1:-1;32782:56:0;;-1:-1:-1;;;32782:56:0;;18402:2:1;32782:56:0;;;18384:21:1;18441:2;18421:18;;;18414:30;18480:34;18460:18;;;18453:62;-1:-1:-1;;;18531:18:1;;;18524:44;18585:19;;32782:56:0;18200:410:1;37472:157:0;37584:39;37601:4;37607:2;37611:7;37584:39;;;;;;;;;;;;:16;:39::i;31632:177::-;31699:7;31731:13;31545:12;;;31469:94;31731:13;31723:5;:21;31715:69;;;;-1:-1:-1;;;31715:69:0;;10425:2:1;31715:69:0;;;10407:21:1;10464:2;10444:18;;;10437:30;10503:34;10483:18;;;10476:62;-1:-1:-1;;;10554:18:1;;;10547:33;10597:19;;31715:69:0;10223:399:1;31715:69:0;-1:-1:-1;31798:5:0;31632:177::o;49438:113::-;46741:10;46729:23;;;;:11;:23;;;;;;;;;:48;;-1:-1:-1;27543:7:0;27570:6;-1:-1:-1;;;;;27570:6:0;46756:10;:21;46729:48;46707:153;;;;-1:-1:-1;;;46707:153:0;;;;;;;:::i;:::-;49520:23:::1;:13;49536:7:::0;;49520:23:::1;:::i;34457:118::-:0;34521:7;34544:20;34556:7;34544:11;:20::i;:::-;:25;;34457:118;-1:-1:-1;;34457:118:0:o;33334:211::-;33398:7;-1:-1:-1;;;;;33422:19:0;;33414:75;;;;-1:-1:-1;;;33414:75:0;;13220:2:1;33414:75:0;;;13202:21:1;13259:2;13239:18;;;13232:30;13298:34;13278:18;;;13271:62;-1:-1:-1;;;13349:18:1;;;13342:41;13400:19;;33414:75:0;13018:407:1;33414:75:0;-1:-1:-1;;;;;;33511:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;33511:27:0;;33334:211::o;28148:103::-;27543:7;27570:6;-1:-1:-1;;;;;27570:6:0;26301:10;27717:23;27709:68;;;;-1:-1:-1;;;27709:68:0;;;;;;;:::i;:::-;28213:30:::1;28240:1;28213:18;:30::i;:::-;28148:103::o:0;46949:688::-;46370:9;46383:10;46370:23;46362:66;;;;-1:-1:-1;;;46362:66:0;;12075:2:1;46362:66:0;;;12057:21:1;12114:2;12094:18;;;12087:30;12153:32;12133:18;;;12126:60;12203:18;;46362:66:0;11873:354:1;46362:66:0;47062:11:::1;::::0;;;::::1;-1:-1:-1::0;;;;;47062:11:0::1;47075:8:::0;46552:16:::1;;::::0;::::1;47062:11:::0;46552:16:::1;:::i;:::-;-1:-1:-1::0;;;;;46539:29:0::1;:9;:29;;46517:123;;;::::0;-1:-1:-1;;;46517:123:0;;16000:2:1;46517:123:0::1;::::0;::::1;15982:21:1::0;16039:2;16019:18;;;16012:30;16078:34;16058:18;;;16051:62;-1:-1:-1;;;16129:18:1;;;16122:42;16181:19;;46517:123:0::1;15798:408:1::0;46517:123:0::1;47109:6:::2;::::0;-1:-1:-1;;;47109:6:0;::::2;;;:15;47101:67;;;::::0;-1:-1:-1;;;47101:67:0;;10017:2:1;47101:67:0::2;::::0;::::2;9999:21:1::0;10056:2;10036:18;;;10029:30;10095:34;10075:18;;;10068:62;-1:-1:-1;;;10146:18:1;;;10139:37;10193:19;;47101:67:0::2;9815:403:1::0;47101:67:0::2;47229:14;47217:8;47201:24;;:13;31545:12:::0;;;31469:94;47201:13:::2;:24;;;;:::i;:::-;:42;;47179:129;;;;-1:-1:-1::0;;;47179:129:0::2;;;;;;;:::i;:::-;47360:19;::::0;::::2;;47341:15;:38;;47319:129;;;::::0;-1:-1:-1;;;47319:129:0;;14400:2:1;47319:129:0::2;::::0;::::2;14382:21:1::0;14439:2;14419:18;;;14412:30;14478:34;14458:18;;;14451:62;-1:-1:-1;;;14529:18:1;;;14522:39;14578:19;;47319:129:0::2;14198:405:1::0;47319:129:0::2;47493:13;47481:8;:25;;;;47459:128;;;::::0;-1:-1:-1;;;47459:128:0;;11653:2:1;47459:128:0::2;::::0;::::2;11635:21:1::0;11692:2;11672:18;;;11665:30;11731:34;11711:18;;;11704:62;-1:-1:-1;;;11782:18:1;;;11775:51;11843:19;;47459:128:0::2;11451:417:1::0;47459:128:0::2;47598:31;47608:10;47620:8;47598:31;;:9;:31::i;47645:481::-:0;46741:10;46729:23;;;;:11;:23;;;;;;;;;:48;;-1:-1:-1;27543:7:0;27570:6;-1:-1:-1;;;;;27570:6:0;46756:10;:21;46729:48;46707:153;;;;-1:-1:-1;;;46707:153:0;;;;;;;:::i;:::-;47772:14:::1;47760:8;47744:13;31545:12:::0;;;31469:94;47744:13:::1;:24;;;;:::i;:::-;:42;;47722:129;;;;-1:-1:-1::0;;;47722:129:0::1;;;;;;;:::i;:::-;47864:17;47884:23;47895:12;47884:8:::0;:23:::1;:::i;:::-;47864:43;;47923:9;47918:102;47942:9;47938:1;:13;47918:102;;;47973:35;47983:10;47995:12;47973:9;:35::i;:::-;47953:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47918:102;;;-1:-1:-1::0;48032:17:0::1;48052:23;48063:12;48052:8:::0;:23:::1;:::i;:::-;48032:43;;48086:32;48096:10;48108:9;48086;:32::i;49025:167::-:0;-1:-1:-1;;;;;;;;;;;;;;;;;49164:20:0;49176:7;49164:11;:20::i;34789:98::-;34845:13;34874:7;34867:14;;;;;:::i;49559:85::-;46741:10;46729:23;;;;:11;:23;;;;;;;;;:48;;-1:-1:-1;27543:7:0;27570:6;-1:-1:-1;;;;;27570:6:0;46756:10;:21;46729:48;46707:153;;;;-1:-1:-1;;;46707:153:0;;;;;;;:::i;:::-;49630:6:::1;::::0;;-1:-1:-1;;;;49620:16:0;::::1;-1:-1:-1::0;;;49630:6:0;;;::::1;;;49629:7;49620:16:::0;;::::1;;::::0;;49559:85::o;36685:274::-;-1:-1:-1;;;;;36776:24:0;;26301:10;36776:24;;36768:63;;;;-1:-1:-1;;;36768:63:0;;15226:2:1;36768:63:0;;;15208:21:1;15265:2;15245:18;;;15238:30;15304:28;15284:18;;;15277:56;15350:18;;36768:63:0;15024:350:1;36768:63:0;26301:10;36840:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36840:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36840:53:0;;;;;;;;;;36905:48;;8318:41:1;;;36840:42:0;;26301:10;36905:48;;8291:18:1;36905:48:0;;;;;;;36685:274;;:::o;35411:63::-;27543:7;27570:6;-1:-1:-1;;;;;27570:6:0;26301:10;27717:23;27709:68;;;;-1:-1:-1;;;27709:68:0;;;;;;;:::i;:::-;35453:8:::1;:15:::0;;-1:-1:-1;;35453:15:0::1;35464:4;35453:15;::::0;;35411:63::o;48690:206::-;27543:7;27570:6;-1:-1:-1;;;;;27570:6:0;26301:10;27717:23;27709:68;;;;-1:-1:-1;;;27709:68:0;;;;;;;:::i;:::-;24595:1:::1;25193:7;;:19;;25185:63;;;::::0;-1:-1:-1;;;25185:63:0;;18817:2:1;25185:63:0::1;::::0;::::1;18799:21:1::0;18856:2;18836:18;;;18829:30;18895:33;18875:18;;;18868:61;18946:18;;25185:63:0::1;18615:355:1::0;25185:63:0::1;24595:1;25326:7;:18:::0;48777:49:::2;::::0;48759:12:::2;::::0;48777:10:::2;::::0;48800:21:::2;::::0;48759:12;48777:49;48759:12;48777:49;48800:21;48777:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48758:68;;;48845:7;48837:51;;;::::0;-1:-1:-1;;;48837:51:0;;12860:2:1;48837:51:0::2;::::0;::::2;12842:21:1::0;12899:2;12879:18;;;12872:30;12938:33;12918:18;;;12911:61;12989:18;;48837:51:0::2;12658:355:1::0;48837:51:0::2;-1:-1:-1::0;24551:1:0::1;25505:7;:22:::0;48690:206::o;37692:311::-;37829:28;37839:4;37845:2;37849:7;37829:9;:28::i;:::-;37880:48;37903:4;37909:2;37913:7;37922:5;37880:22;:48::i;:::-;37864:133;;;;-1:-1:-1;;;37864:133:0;;;;;;;:::i;:::-;37692:311;;;;:::o;34950:455::-;35048:13;35089:16;35097:7;38329:12;;-1:-1:-1;38319:22:0;38242:105;35089:16;35073:97;;;;-1:-1:-1;;;35073:97:0;;14810:2:1;35073:97:0;;;14792:21:1;14849:2;14829:18;;;14822:30;14888:34;14868:18;;;14861:62;-1:-1:-1;;;14939:18:1;;;14932:45;14994:19;;35073:97:0;14608:411:1;35073:97:0;35182:8;;;;35179:43;;35208:14;35201:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34950:455;;;:::o;35179:43::-;35231:21;35255:10;:8;:10::i;:::-;35231:34;;35310:1;35292:7;35286:21;:25;:113;;;;;;;;;;;;;;;;;35347:7;35356:18;:7;:16;:18::i;:::-;35330:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35286:113;35272:127;34950:455;-1:-1:-1;;;34950:455:0:o;49776:194::-;46741:10;46729:23;;;;:11;:23;;;;;;;;;:48;;-1:-1:-1;27543:7:0;27570:6;-1:-1:-1;;;;;27570:6:0;46756:10;:21;46729:48;46707:153;;;;-1:-1:-1;;;46707:153:0;;;;;;;:::i;:::-;49867:25:::1;::::0;::::1;::::0;49863:100:::1;;49909:19;:42:::0;;-1:-1:-1;;49909:42:0::1;;::::0;::::1;;::::0;;49863:100:::1;49776:194:::0;:::o;48134:493::-;46741:10;46729:23;;;;:11;:23;;;;;;;;;:48;;-1:-1:-1;27543:7:0;27570:6;-1:-1:-1;;;;;27570:6:0;46756:10;:21;46729:48;46707:153;;;;-1:-1:-1;;;46707:153:0;;;;;;;:::i;:::-;48279:14:::1;48267:8;48251:13;31545:12:::0;;;31469:94;48251:13:::1;:24;;;;:::i;:::-;:42;;48229:131;;;::::0;-1:-1:-1;;;48229:131:0;;20017:2:1;48229:131:0::1;::::0;::::1;19999:21:1::0;20056:2;20036:18;;;20029:30;20095:34;20075:18;;;20068:62;-1:-1:-1;;;20146:18:1;;;20139:37;20193:19;;48229:131:0::1;19815:403:1::0;48229:131:0::1;48373:17;48393:23;48404:12;48393:8:::0;:23:::1;:::i;:::-;48373:43;;48432:9;48427:98;48451:9;48447:1;:13;48427:98;;;48482:31;48492:6;48500:12;48482:9;:31::i;:::-;48462:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48427:98;;;-1:-1:-1::0;48537:17:0::1;48557:23;48568:12;48557:8:::0;:23:::1;:::i;:::-;48537:43;;48591:28;48601:6;48609:9;48591;:28::i;48904:113::-:0;48962:7;48989:20;49003:5;48989:13;:20::i;35480:120::-;27543:7;27570:6;-1:-1:-1;;;;;27570:6:0;26301:10;27717:23;27709:68;;;;-1:-1:-1;;;27709:68:0;;;;;;;:::i;:::-;35562:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;35480:120:::0;:::o;28406:201::-;27543:7;27570:6;-1:-1:-1;;;;;27570:6:0;26301:10;27717:23;27709:68;;;;-1:-1:-1;;;27709:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28495:22:0;::::1;28487:73;;;::::0;-1:-1:-1;;;28487:73:0;;9199:2:1;28487:73:0::1;::::0;::::1;9181:21:1::0;9238:2;9218:18;;;9211:30;9277:34;9257:18;;;9250:62;-1:-1:-1;;;9328:18:1;;;9321:36;9374:19;;28487:73:0::1;8997:402:1::0;28487:73:0::1;28571:28;28590:8;28571:18;:28::i;41929:172::-:0;42026:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42026:29:0;-1:-1:-1;;;;;42026:29:0;;;;;;;;;42067:28;;42026:24;;42067:28;;;;;;;41929:172;;;:::o;40294:1529::-;40391:35;40429:20;40441:7;40429:11;:20::i;:::-;40500:18;;40391:58;;-1:-1:-1;40458:22:0;;-1:-1:-1;;;;;40484:34:0;26301:10;-1:-1:-1;;;;;40484:34:0;;:81;;;-1:-1:-1;26301:10:0;40529:20;40541:7;40529:11;:20::i;:::-;-1:-1:-1;;;;;40529:36:0;;40484:81;:142;;;-1:-1:-1;40593:18:0;;40576:50;;26301:10;37022:186;:::i;40576:50::-;40458:169;;40652:17;40636:101;;;;-1:-1:-1;;;40636:101:0;;15581:2:1;40636:101:0;;;15563:21:1;15620:2;15600:18;;;15593:30;15659:34;15639:18;;;15632:62;-1:-1:-1;;;15710:18:1;;;15703:48;15768:19;;40636:101:0;15379:414:1;40636:101:0;40784:4;-1:-1:-1;;;;;40762:26:0;:13;:18;;;-1:-1:-1;;;;;40762:26:0;;40746:98;;;;-1:-1:-1;;;40746:98:0;;13632:2:1;40746:98:0;;;13614:21:1;13671:2;13651:18;;;13644:30;13710:34;13690:18;;;13683:62;-1:-1:-1;;;13761:18:1;;;13754:36;13807:19;;40746:98:0;13430:402:1;40746:98:0;-1:-1:-1;;;;;40859:16:0;;40851:66;;;;-1:-1:-1;;;40851:66:0;;10829:2:1;40851:66:0;;;10811:21:1;10868:2;10848:18;;;10841:30;10907:34;10887:18;;;10880:62;-1:-1:-1;;;10958:18:1;;;10951:35;11003:19;;40851:66:0;10627:401:1;40851:66:0;41026:49;41043:1;41047:7;41056:13;:18;;;41026:8;:49::i;:::-;-1:-1:-1;;;;;41084:18:0;;;;;;:12;:18;;;;;:31;;41114:1;;41084:18;:31;;41114:1;;-1:-1:-1;;;;;41084:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;41084:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41122:16:0;;-1:-1:-1;41122:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;41122:16:0;;:29;;-1:-1:-1;;41122:29:0;;:::i;:::-;;;-1:-1:-1;;;;;41122:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41181:43:0;;;;;;;;-1:-1:-1;;;;;41181:43:0;;;;;-1:-1:-1;;;;;41207:15:0;41181:43;;;;;;;;;-1:-1:-1;41158:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;41158:66:0;-1:-1:-1;;;;;;41158:66:0;;;;;;;;;;;41474:11;41170:7;-1:-1:-1;41474:11:0;:::i;:::-;41537:1;41496:24;;;:11;:24;;;;;:29;41452:33;;-1:-1:-1;;;;;;41496:29:0;41492:236;;41554:20;41562:11;38329:12;;-1:-1:-1;38319:22:0;38242:105;41554:20;41550:171;;;41614:97;;;;;;;;41641:18;;-1:-1:-1;;;;;41614:97:0;;;;;;41672:28;;;;-1:-1:-1;;;;;41614:97:0;;;;;;;;;-1:-1:-1;41587:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;41587:124:0;-1:-1:-1;;;;;;41587:124:0;;;;;;;;;;;;41550:171;41760:7;41756:2;-1:-1:-1;;;;;41741:27:0;41750:4;-1:-1:-1;;;;;41741:27:0;;;;;;;;;;;41775:42;40384:1439;;;40294:1529;;;:::o;33797:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;33914:16:0;33922:7;38329:12;;-1:-1:-1;38319:22:0;38242:105;33914:16;33906:71;;;;-1:-1:-1;;;33906:71:0;;9606:2:1;33906:71:0;;;9588:21:1;9645:2;9625:18;;;9618:30;9684:34;9664:18;;;9657:62;-1:-1:-1;;;9735:18:1;;;9728:40;9785:19;;33906:71:0;9404:406:1;33906:71:0;33986:26;34034:12;34023:7;:23;34019:93;;34078:22;34088:12;34078:7;:22;:::i;:::-;:26;;34103:1;34078:26;:::i;:::-;34057:47;;34019:93;34140:7;34120:212;34157:18;34149:4;:26;34120:212;;34194:31;34228:17;;;:11;:17;;;;;;;;;34194:51;;;;;;;;;-1:-1:-1;;;;;34194:51:0;;;;;-1:-1:-1;;;34194:51:0;;;-1:-1:-1;;;;;34194:51:0;;;;;;;;34258:28;34254:71;;34306:9;33797:606;-1:-1:-1;;;;33797:606:0:o;34254:71::-;-1:-1:-1;34177:6:0;;;;:::i;:::-;;;;34120:212;;;-1:-1:-1;34340:57:0;;-1:-1:-1;;;34340:57:0;;19177:2:1;34340:57:0;;;19159:21:1;19216:2;19196:18;;;19189:30;19255:34;19235:18;;;19228:62;-1:-1:-1;;;19306:18:1;;;19299:45;19361:19;;34340:57:0;18975:411:1;28767:191:0;28841:16;28860:6;;-1:-1:-1;;;;;28877:17:0;;;-1:-1:-1;;;;;;28877:17:0;;;;;;28910:40;;28860:6;;;;;;;28910:40;;28841:16;28910:40;28830:128;28767:191;:::o;38353:98::-;38418:27;38428:2;38432:8;38418:27;;;;;;;;;;;;:9;:27::i;43644:690::-;43781:4;-1:-1:-1;;;;;43798:13:0;;1563:19;:23;43794:535;;43837:72;;-1:-1:-1;;;43837:72:0;;-1:-1:-1;;;;;43837:36:0;;;;;:72;;26301:10;;43888:4;;43894:7;;43903:5;;43837:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43837:72:0;;;;;;;;-1:-1:-1;;43837:72:0;;;;;;;;;;;;:::i;:::-;;;43824:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44068:13:0;;44064:215;;44101:61;;-1:-1:-1;;;44101:61:0;;;;;;;:::i;44064:215::-;44247:6;44241:13;44232:6;44228:2;44224:15;44217:38;43824:464;-1:-1:-1;;;;;;43959:55:0;-1:-1:-1;;;43959:55:0;;-1:-1:-1;43952:62:0;;43794:535;-1:-1:-1;44317:4:0;43794:535;43644:690;;;;;;:::o;49258:114::-;49318:13;49351;49344:20;;;;;:::i;21024:723::-;21080:13;21301:10;21297:53;;-1:-1:-1;;21328:10:0;;;;;;;;;;;;-1:-1:-1;;;21328:10:0;;;;;21024:723::o;21297:53::-;21375:5;21360:12;21416:78;21423:9;;21416:78;;21449:8;;;;:::i;:::-;;-1:-1:-1;21472:10:0;;-1:-1:-1;21480:2:0;21472:10;;:::i;:::-;;;21416:78;;;21504:19;21536:6;-1:-1:-1;;;;;21526:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21526:17:0;;21504:39;;21554:154;21561:10;;21554:154;;21588:11;21598:1;21588:11;;:::i;:::-;;-1:-1:-1;21657:10:0;21665:2;21657:5;:10;:::i;:::-;21644:24;;:2;:24;:::i;:::-;21631:39;;21614:6;21621;21614:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21614:56:0;;;;;;;;-1:-1:-1;21685:11:0;21694:2;21685:11;;:::i;:::-;;;21554:154;;33551:240;33612:7;-1:-1:-1;;;;;33644:19:0;;33628:102;;;;-1:-1:-1;;;33628:102:0;;11235:2:1;33628:102:0;;;11217:21:1;11274:2;11254:18;;;11247:30;11313:34;11293:18;;;11286:62;-1:-1:-1;;;11364:18:1;;;11357:47;11421:19;;33628:102:0;11033:413:1;33628:102:0;-1:-1:-1;;;;;;33752:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;33752:32:0;;-1:-1:-1;;;;;33752:32:0;;33551:240::o;38790:1272::-;38918:12;;-1:-1:-1;;;;;38945:16:0;;38937:62;;;;-1:-1:-1;;;38937:62:0;;17594:2:1;38937:62:0;;;17576:21:1;17633:2;17613:18;;;17606:30;17672:34;17652:18;;;17645:62;-1:-1:-1;;;17723:18:1;;;17716:31;17764:19;;38937:62:0;17392:397:1;38937:62:0;39136:21;39144:12;38329;;-1:-1:-1;38319:22:0;38242:105;39136:21;39135:22;39127:64;;;;-1:-1:-1;;;39127:64:0;;17236:2:1;39127:64:0;;;17218:21:1;17275:2;17255:18;;;17248:30;17314:31;17294:18;;;17287:59;17363:18;;39127:64:0;17034:353:1;39127:64:0;39218:12;39206:8;:24;;39198:71;;;;-1:-1:-1;;;39198:71:0;;20839:2:1;39198:71:0;;;20821:21:1;20878:2;20858:18;;;20851:30;20917:34;20897:18;;;20890:62;-1:-1:-1;;;20968:18:1;;;20961:32;21010:19;;39198:71:0;20637:398:1;39198:71:0;-1:-1:-1;;;;;39381:16:0;;39348:30;39381:16;;;:12;:16;;;;;;;;;39348:49;;;;;;;;;-1:-1:-1;;;;;39348:49:0;;;;;-1:-1:-1;;;39348:49:0;;;;;;;;;;;39423:119;;;;;;;;39443:19;;39348:49;;39423:119;;;39443:39;;39473:8;;39443:39;:::i;:::-;-1:-1:-1;;;;;39423:119:0;;;;;39526:8;39491:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;39423:119:0;;;;;;-1:-1:-1;;;;;39404:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;39404:138:0;;;;;;;;;;;;39577:43;;;;;;;;;;-1:-1:-1;;;;;39603:15:0;39577:43;;;;;;;;39549:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;39549:71:0;-1:-1:-1;;;;;;39549:71:0;;;;;;;;;;;;;;;;;;39561:12;;39673:281;39697:8;39693:1;:12;39673:281;;;39726:38;;39751:12;;-1:-1:-1;;;;;39726:38:0;;;39743:1;;39726:38;;39743:1;;39726:38;39791:59;39822:1;39826:2;39830:12;39844:5;39791:22;:59::i;:::-;39773:150;;;;-1:-1:-1;;;39773:150:0;;;;;;;:::i;:::-;39932:14;;;;:::i;:::-;;;;39707:3;;;;;:::i;:::-;;;;39673:281;;;-1:-1:-1;39962:12:0;:27;;;39996:60;37692:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;-1:-1:-1;;;;;2036:6:1;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:615::-;2985:6;2993;3046:2;3034:9;3025:7;3021:23;3017:32;3014:52;;;3062:1;3059;3052:12;3014:52;3102:9;3089:23;-1:-1:-1;;;;;3172:2:1;3164:6;3161:14;3158:34;;;3188:1;3185;3178:12;3158:34;3226:6;3215:9;3211:22;3201:32;;3271:7;3264:4;3260:2;3256:13;3252:27;3242:55;;3293:1;3290;3283:12;3242:55;3333:2;3320:16;3359:2;3351:6;3348:14;3345:34;;;3375:1;3372;3365:12;3345:34;3428:7;3423:2;3413:6;3410:1;3406:14;3402:2;3398:23;3394:32;3391:45;3388:65;;;3449:1;3446;3439:12;3388:65;3480:2;3472:11;;;;;3502:6;;-1:-1:-1;2899:615:1;;-1:-1:-1;;;;2899:615:1:o;3519:245::-;3577:6;3630:2;3618:9;3609:7;3605:23;3601:32;3598:52;;;3646:1;3643;3636:12;3598:52;3685:9;3672:23;3704:30;3728:5;3704:30;:::i;3769:249::-;3838:6;3891:2;3879:9;3870:7;3866:23;3862:32;3859:52;;;3907:1;3904;3897:12;3859:52;3939:9;3933:16;3958:30;3982:5;3958:30;:::i;4023:592::-;4094:6;4102;4155:2;4143:9;4134:7;4130:23;4126:32;4123:52;;;4171:1;4168;4161:12;4123:52;4211:9;4198:23;-1:-1:-1;;;;;4281:2:1;4273:6;4270:14;4267:34;;;4297:1;4294;4287:12;4267:34;4335:6;4324:9;4320:22;4310:32;;4380:7;4373:4;4369:2;4365:13;4361:27;4351:55;;4402:1;4399;4392:12;4351:55;4442:2;4429:16;4468:2;4460:6;4457:14;4454:34;;;4484:1;4481;4474:12;4454:34;4529:7;4524:2;4515:6;4511:2;4507:15;4503:24;4500:37;4497:57;;;4550:1;4547;4540:12;4620:450;4689:6;4742:2;4730:9;4721:7;4717:23;4713:32;4710:52;;;4758:1;4755;4748:12;4710:52;4798:9;4785:23;-1:-1:-1;;;;;4823:6:1;4820:30;4817:50;;;4863:1;4860;4853:12;4817:50;4886:22;;4939:4;4931:13;;4927:27;-1:-1:-1;4917:55:1;;4968:1;4965;4958:12;4917:55;4991:73;5056:7;5051:2;5038:16;5033:2;5029;5025:11;4991:73;:::i;5075:180::-;5134:6;5187:2;5175:9;5166:7;5162:23;5158:32;5155:52;;;5203:1;5200;5193:12;5155:52;-1:-1:-1;5226:23:1;;5075:180;-1:-1:-1;5075:180:1:o;5260:254::-;5328:6;5336;5389:2;5377:9;5368:7;5364:23;5360:32;5357:52;;;5405:1;5402;5395:12;5357:52;5441:9;5428:23;5418:33;;5470:38;5504:2;5493:9;5489:18;5470:38;:::i;5519:276::-;5577:6;5630:2;5618:9;5609:7;5605:23;5601:32;5598:52;;;5646:1;5643;5636:12;5598:52;5685:9;5672:23;5735:10;5728:5;5724:22;5717:5;5714:33;5704:61;;5761:1;5758;5751:12;5800:284;5858:6;5911:2;5899:9;5890:7;5886:23;5882:32;5879:52;;;5927:1;5924;5917:12;5879:52;5966:9;5953:23;-1:-1:-1;;;;;6009:5:1;6005:30;5998:5;5995:41;5985:69;;6050:1;6047;6040:12;6089:269;6146:6;6199:2;6187:9;6178:7;6174:23;6170:32;6167:52;;;6215:1;6212;6205:12;6167:52;6254:9;6241:23;6304:4;6297:5;6293:16;6286:5;6283:27;6273:55;;6324:1;6321;6314:12;6363:257;6404:3;6442:5;6436:12;6469:6;6464:3;6457:19;6485:63;6541:6;6534:4;6529:3;6525:14;6518:4;6511:5;6507:16;6485:63;:::i;:::-;6602:2;6581:15;-1:-1:-1;;6577:29:1;6568:39;;;;6609:4;6564:50;;6363:257;-1:-1:-1;;6363:257:1:o;6625:637::-;6905:3;6943:6;6937:13;6959:53;7005:6;7000:3;6993:4;6985:6;6981:17;6959:53;:::i;:::-;7075:13;;7034:16;;;;7097:57;7075:13;7034:16;7131:4;7119:17;;7097:57;:::i;:::-;-1:-1:-1;;;7176:20:1;;7205:22;;;7254:1;7243:13;;6625:637;-1:-1:-1;;;;6625:637:1:o;7685:488::-;-1:-1:-1;;;;;7954:15:1;;;7936:34;;8006:15;;8001:2;7986:18;;7979:43;8053:2;8038:18;;8031:34;;;8101:3;8096:2;8081:18;;8074:31;;;7879:4;;8122:45;;8147:19;;8139:6;8122:45;:::i;:::-;8114:53;7685:488;-1:-1:-1;;;;;;7685:488:1:o;8370:219::-;8519:2;8508:9;8501:21;8482:4;8539:44;8579:2;8568:9;8564:18;8556:6;8539:44;:::i;13837:356::-;14039:2;14021:21;;;14058:18;;;14051:30;14117:34;14112:2;14097:18;;14090:62;14184:2;14169:18;;13837:356::o;16614:415::-;16816:2;16798:21;;;16855:2;16835:18;;;16828:30;16894:34;16889:2;16874:18;;16867:62;-1:-1:-1;;;16960:2:1;16945:18;;16938:49;17019:3;17004:19;;16614:415::o;17794:401::-;17996:2;17978:21;;;18035:2;18015:18;;;18008:30;18074:34;18069:2;18054:18;;18047:62;-1:-1:-1;;;18140:2:1;18125:18;;18118:35;18185:3;18170:19;;17794:401::o;19391:419::-;19593:2;19575:21;;;19632:2;19612:18;;;19605:30;19671:34;19666:2;19651:18;;19644:62;19742:25;19737:2;19722:18;;19715:53;19800:3;19785:19;;19391:419::o;21989:253::-;22029:3;-1:-1:-1;;;;;22118:2:1;22115:1;22111:10;22148:2;22145:1;22141:10;22179:3;22175:2;22171:12;22166:3;22163:21;22160:47;;;22187:18;;:::i;:::-;22223:13;;21989:253;-1:-1:-1;;;;21989:253:1:o;22247:128::-;22287:3;22318:1;22314:6;22311:1;22308:13;22305:39;;;22324:18;;:::i;:::-;-1:-1:-1;22360:9:1;;22247:128::o;22380:120::-;22420:1;22446;22436:35;;22451:18;;:::i;:::-;-1:-1:-1;22485:9:1;;22380:120::o;22505:270::-;22544:7;-1:-1:-1;;;;;22621:2:1;22618:1;22614:10;22651:2;22648:1;22644:10;22707:3;22703:2;22699:12;22694:3;22691:21;22684:3;22677:11;22670:19;22666:47;22663:73;;;22716:18;;:::i;:::-;22756:13;;22505:270;-1:-1:-1;;;;22505:270:1:o;22780:246::-;22820:4;-1:-1:-1;;;;;22933:10:1;;;;22903;;22955:12;;;22952:38;;;22970:18;;:::i;:::-;23007:13;;22780:246;-1:-1:-1;;;22780:246:1:o;23031:125::-;23071:4;23099:1;23096;23093:8;23090:34;;;23104:18;;:::i;:::-;-1:-1:-1;23141:9:1;;23031:125::o;23161:258::-;23233:1;23243:113;23257:6;23254:1;23251:13;23243:113;;;23333:11;;;23327:18;23314:11;;;23307:39;23279:2;23272:10;23243:113;;;23374:6;23371:1;23368:13;23365:48;;;-1:-1:-1;;23409:1:1;23391:16;;23384:27;23161:258::o;23424:136::-;23463:3;23491:5;23481:39;;23500:18;;:::i;:::-;-1:-1:-1;;;23536:18:1;;23424:136::o;23565:380::-;23644:1;23640:12;;;;23687;;;23708:61;;23762:4;23754:6;23750:17;23740:27;;23708:61;23815:2;23807:6;23804:14;23784:18;23781:38;23778:161;;;23861:10;23856:3;23852:20;23849:1;23842:31;23896:4;23893:1;23886:15;23924:4;23921:1;23914:15;23778:161;;23565:380;;;:::o;23950:197::-;23988:3;24016:6;24057:2;24050:5;24046:14;24084:2;24075:7;24072:15;24069:41;;;24090:18;;:::i;:::-;24139:1;24126:15;;23950:197;-1:-1:-1;;;23950:197:1:o;24152:135::-;24191:3;-1:-1:-1;;24212:17:1;;24209:43;;;24232:18;;:::i;:::-;-1:-1:-1;24279:1:1;24268:13;;24152:135::o;24292:112::-;24324:1;24350;24340:35;;24355:18;;:::i;:::-;-1:-1:-1;24389:9:1;;24292:112::o;24409:127::-;24470:10;24465:3;24461:20;24458:1;24451:31;24501:4;24498:1;24491:15;24525:4;24522:1;24515:15;24541:127;24602:10;24597:3;24593:20;24590:1;24583:31;24633:4;24630:1;24623:15;24657:4;24654:1;24647:15;24673:127;24734:10;24729:3;24725:20;24722:1;24715:31;24765:4;24762:1;24755:15;24789:4;24786:1;24779:15;24805:127;24866:10;24861:3;24857:20;24854:1;24847:31;24897:4;24894:1;24887:15;24921:4;24918:1;24911:15;24937:131;-1:-1:-1;;;;;;25011:32:1;;25001:43;;24991:71;;25058:1;25055;25048:12
Swarm Source
ipfs://cf3e7eaf995130d2ee2206fd6343834ee7ec03cf04431bfa494d3e8dc0aa68a0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.