ERC-721
Overview
Max Total Supply
147 DDM
Holders
90
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 DDMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DopeDobes
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-13 */ // SPDX-License-Identifier: MIT // %@@, .@@ // (@ /@( *@,*@ // @@ ,@& %@ @@ // @@ @& &@ *@@@ // @@( @@ @% %@@@@@ // @@* @@ .,,,. @%(@@@@@@@ // @@@ &@@#. *&, ,%@@@@@@@@@@@@ // @@@@@@@ @@@@@@ @@@@@@@ @@@@@@@@ @@@# @@@@@@@@@ @@@@@@@ @@@@@@ @@@@@@@ @@@@@@@@ @@@@@@ // @@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@,/ *@@@. ,@@@%@@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@ // @@! @@@ @@! @@@ @@! @@@ @@! @@@@@ &@@@@#/@###@/%@@@@@@@@@@@@@@ @@! @@@ @@! @@@ @@! @@@ @@! !@@ // !@! @!@ !@! @!@ !@! @!@ !@! @@@@& @@. /@@ %@@@@@@@@@ !@! @!@ !@! @!@ !@ @!@ !@! !@! // @!@ !@! @!@ !@! @!@@!@! @!!!:! @@% @ %@@( @.,@@@@ &@@(@@@@@@@ @!@ !@! @!@ !@! @!@!@!@ @!!!:! !!@@!! // !@! !!! !@! !!! !!@!!! !!!!!: @% .@@@@. (@@@@@, *@@@@@*&& !@! !!! !@! !!! !!!@!!!! !!!!!: !!@!!! // !!: !!! !!: !!! !!: !!: @# *@@@ . . .@ , . @@@@ && !!: !!! !!: !!! !!: !!! !!: !:! // :!: !:! :!: !:! :!: :!: @# .@@@ * ,@ * ,@@@% && :!: !:! :!: !:! :!: !:! :!: !:! // :::: :: ::::: :: :: :: :::: @@ %@@& . @@@ .. @@@@.@& :::: :: ::::: :: :: :::: :: :::: :::: :: // :: : : : : : : : :: :: %@@@@@@@@@@( , #@@@@@@@@@@# :: : : : : : :: : :: : :: :: :: : : // @@@@@@@@@@# @@@@@@@@@@@ // *@@@@@@@@@@@@@@@@@@@@@@@@@ // #@@@@@@@@@@@@@@@@@@@@@@@@@( // *@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@ // ,@@@@@@@@@@@@@@@@@@@@@@@@@ // *@@@@@@@@@@@@@@@@@@@* // *@@@@@@@@@@@@@@@@@* // @@@@@@@@@@@@# // %@@@@@# // 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/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/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: @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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // 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/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: dobeMint.sol pragma solidity >=0.7.0 <0.9.0; contract DopeDobes is ERC721Enumerable, Ownable, ReentrancyGuard{ IERC721 public stakingContract; using Strings for uint256; string public baseURI; string public hiddenURI; address public stakingContractAddress; string public baseExtension = ".json"; uint256 public cost = 0.09 ether; uint256 public presaleCost = 0.07 ether; uint256 public whitelistCost = 0.08 ether; uint256 public maxSupply = 3333; uint256 public maxMintAmount = 10; bool public paused = false; bool public revealed = false; bool public presaleMintOn = false; bool public whitelistMintOn = false; bool public publicMintOn = false; mapping(address => bool) public whitelisted; mapping(uint256 => bool) public preSaleVIP; constructor( string memory _name, string memory _symbol, string memory _initHiddenURI, string memory _initBaseURI ) ERC721 (_name, _symbol) { setHiddenURI(_initHiddenURI); setBaseURI(_initBaseURI); devMint(msg.sender, 10); stakingContract = IERC721(stakingContractAddress); // Dobes NFT contract address } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // Enable Minting // Enable presale mint function turnPresaleMintOn(bool _turnPresaleMintOn) public onlyOwner { presaleMintOn = _turnPresaleMintOn; } // Enable whitelist mint function turnWhitelistMintOn(bool _turnWhitelistMintOn) public onlyOwner { whitelistMintOn = _turnWhitelistMintOn; presaleMintOn = false; } // Enable public mint function turnPublicMintOn(bool _turnPublicMintOn) public onlyOwner { publicMintOn = _turnPublicMintOn; whitelistMintOn = false; } // Reveal function isRevealed(bool _reveal) public onlyOwner { revealed = _reveal; } // Minting // Presale mint function presaleMint(address _to, uint256 _mintAmount) public payable nonReentrant{ require(presaleMintOn == true, "Presale mint has not begun yet"); uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); if (msg.sender != owner()) { require(msg.value >= presaleCost * _mintAmount, "Insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_to, supply + i); if(whitelisted[msg.sender] == true){ preSaleVIP[supply + i] = true; } } setApprovalForAll(stakingContractAddress, true); } // Whitelist mint function whitelistMint(address _to, uint256 _mintAmount) external payable nonReentrant{ require(whitelistMintOn == true, "VIP mint has not begun yet"); require(whitelisted[msg.sender] == true, "Wallet is not on the whitelist"); uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); if (msg.sender != owner()) { require(msg.value >= presaleCost * _mintAmount, "Insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_to, supply + i); } setApprovalForAll(stakingContractAddress, true); whitelisted[_to] = false; } // Mint function mint(address _to, uint256 _mintAmount) public payable nonReentrant{ require(publicMintOn == true, "Public mint has not begun yet"); uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); if (msg.sender != owner()) { require(msg.value >= cost * _mintAmount, "Insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_to, supply + i); } setApprovalForAll(stakingContractAddress, true); } // Dev Mint function devMint(address _to, uint256 _mintAmount) public payable onlyOwner nonReentrant{ uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_to, supply + i); } } // View token ids in a wallet function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false){ return hiddenURI; } else { string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } } // function onERC721Received(address, address, uint256, bytes calldata) external pure returns (bytes4) { // return IERC721Receiver.onERC721Received.selector; // } //only owner functions function setCost(uint256 _newCost) external onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) external onlyOwner { maxMintAmount = _newmaxMintAmount; } function setHiddenURI(string memory _newHiddenURI) public onlyOwner { hiddenURI = _newHiddenURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setStakingContract(address _newStakingContractAddress) public onlyOwner { stakingContractAddress = _newStakingContractAddress; } function setBaseExtension(string memory _newBaseExtension) external onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) external onlyOwner { paused = _state; } function whitelistUser(address _user) external onlyOwner { whitelisted[_user] = true; } function removeWhitelistUser(address _user) external onlyOwner { whitelisted[_user] = false; } function withdraw() external payable onlyOwner nonReentrant{ // Pay donation wallet 6.25% of the initial sale. // ============================================================================= (bool ds, ) = payable(0x562157E4A575eb36e078bE6aF583449bc29a9785).call{value: address(this).balance * 625 / 10000}(""); require(ds); // ============================================================================= // Pay community wallet 18.75% of the initial sale. // ============================================================================= (bool ls, ) = payable(0xFd76FF5Ef400dE7309f22c02099dC775dD3d6bA4).call{value: address(this).balance * 1875 / 10000}(""); require(ls); // ============================================================================= // Pay dev wallet 75% of the contract balance. // ============================================================================= (bool os, ) = payable(0x9a47A0c74DA38D4D6A97c3746171eDb6c4a8c46C).call{value: address(this).balance}(""); require(os); // ============================================================================= } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initHiddenURI","type":"string"},{"internalType":"string","name":"_initBaseURI","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":"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"bool","name":"_reveal","type":"bool"}],"name":"isRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"preSaleVIP","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleMintOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newHiddenURI","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newStakingContractAddress","type":"address"}],"name":"setStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingContract","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_turnPresaleMintOn","type":"bool"}],"name":"turnPresaleMintOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_turnPublicMintOn","type":"bool"}],"name":"turnPublicMintOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_turnWhitelistMintOn","type":"bool"}],"name":"turnWhitelistMintOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a090815262000028916010919062000a19565b5067013fbe85edc9000060115566f8b0a10e47000060125567011c37937e080000601355610d05601455600a6015556016805464ffffffffff191690553480156200007257600080fd5b5060405162003e1d38038062003e1d833981016040819052620000959162000b83565b835184908490620000ae90600090602085019062000a19565b508051620000c490600190602084019062000a19565b505050620000e1620000db6200013660201b60201c565b6200013a565b6001600b55620000f1826200018c565b620000fc81620001f4565b6200010933600a62000254565b5050600f54600c80546001600160a01b0319166001600160a01b039092169190911790555062000dad9050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001db5760405162461bcd60e51b8152602060048201819052602482015260008051602062003dfd83398151915260448201526064015b60405180910390fd5b8051620001f090600e90602084019062000a19565b5050565b600a546001600160a01b031633146200023f5760405162461bcd60e51b8152602060048201819052602482015260008051602062003dfd8339815191526044820152606401620001d2565b8051620001f090600d90602084019062000a19565b600a546001600160a01b031633146200029f5760405162461bcd60e51b8152602060048201819052602482015260008051602062003dfd8339815191526044820152606401620001d2565b6002600b541415620002f45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401620001d2565b6002600b5560006200030560085490565b60165490915060ff16156200031957600080fd5b600082116200032757600080fd5b6015548211156200033757600080fd5b60145462000346838362000c92565b11156200035257600080fd5b60015b828111620003895762000374846200036e838562000c92565b62000394565b80620003808162000d37565b91505062000355565b50506001600b555050565b620001f0828260405180602001604052806000815250620003b660201b60201c565b620003c283836200042e565b620003d1600084848462000584565b620004295760405162461bcd60e51b8152602060048201526032602482015260008051602062003ddd83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001d2565b505050565b6001600160a01b038216620004865760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001d2565b6000818152600260205260409020546001600160a01b031615620004ed5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001d2565b620004fb60008383620006ed565b6001600160a01b03821660009081526003602052604081208054600192906200052690849062000c92565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620005a5846001600160a01b0316620007c960201b62001dac1760201c565b15620006e157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620005df90339089908890889060040162000c3c565b602060405180830381600087803b158015620005fa57600080fd5b505af19250505080156200062d575060408051601f3d908101601f191682019092526200062a9181019062000b50565b60015b620006c6573d8080156200065e576040519150601f19603f3d011682016040523d82523d6000602084013e62000663565b606091505b508051620006be5760405162461bcd60e51b8152602060048201526032602482015260008051602062003ddd83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001d2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620006e5565b5060015b949350505050565b620007058383836200042960201b62000cad1760201c565b6001600160a01b03831662000763576200075d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000789565b816001600160a01b0316836001600160a01b0316146200078957620007898382620007d8565b6001600160a01b038216620007a357620004298162000885565b826001600160a01b0316826001600160a01b03161462000429576200042982826200093f565b6001600160a01b03163b151590565b60006001620007f2846200099060201b620015b71760201c565b620007fe919062000cad565b60008381526007602052604090205490915080821462000852576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620008999060019062000cad565b60008381526009602052604081205460088054939450909284908110620008c457620008c462000d81565b906000526020600020015490508060088381548110620008e857620008e862000d81565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000923576200092362000d6b565b6001900381819060005260206000200160009055905550505050565b600062000957836200099060201b620015b71760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620009fd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620001d2565b506001600160a01b031660009081526003602052604090205490565b82805462000a279062000cfa565b90600052602060002090601f01602090048101928262000a4b576000855562000a96565b82601f1062000a6657805160ff191683800117855562000a96565b8280016001018555821562000a96579182015b8281111562000a9657825182559160200191906001019062000a79565b5062000aa492915062000aa8565b5090565b5b8082111562000aa4576000815560010162000aa9565b600082601f83011262000ad157600080fd5b81516001600160401b038082111562000aee5762000aee62000d97565b604051601f8301601f19908116603f0116810190828211818310171562000b195762000b1962000d97565b8160405283815286602085880101111562000b3357600080fd5b62000b4684602083016020890162000cc7565b9695505050505050565b60006020828403121562000b6357600080fd5b81516001600160e01b03198116811462000b7c57600080fd5b9392505050565b6000806000806080858703121562000b9a57600080fd5b84516001600160401b038082111562000bb257600080fd5b62000bc08883890162000abf565b9550602087015191508082111562000bd757600080fd5b62000be58883890162000abf565b9450604087015191508082111562000bfc57600080fd5b62000c0a8883890162000abf565b9350606087015191508082111562000c2157600080fd5b5062000c308782880162000abf565b91505092959194509250565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000c7b8160a085016020870162000cc7565b601f01601f19169190910160a00195945050505050565b6000821982111562000ca85762000ca862000d55565b500190565b60008282101562000cc25762000cc262000d55565b500390565b60005b8381101562000ce457818101518382015260200162000cca565b8381111562000cf4576000848401525b50505050565b600181811c9082168062000d0f57607f821691505b6020821081141562000d3157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000d4e5762000d4e62000d55565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6130208062000dbd6000396000f3fe6080604052600436106103505760003560e01c80636352211e116101c65780639dd373b9116100f7578063d5abeb0111610095578063e7b99ec71161006f578063e7b99ec714610965578063e985e9c51461097b578063ee99205c146109c4578063f2fde38b146109e457600080fd5b8063d5abeb01146108ff578063d936547e14610915578063da3ef23f1461094557600080fd5b8063bbaac02f116100d1578063bbaac02f1461088a578063c4e3b16d146108aa578063c6682862146108ca578063c87b56dd146108df57600080fd5b80639dd373b91461082a578063a22cb4651461084a578063b88d4fde1461086a57600080fd5b8063715018a6116101645780638da5cb5b1161013e5780638da5cb5b146107d157806395799388146107ef57806395d89b41146108025780639b6a67091461081757600080fd5b8063715018a6146107875780637f00c7a61461079c5780638cc54e7f146107bc57600080fd5b80636d4d6690116101a05780636d4d6690146106f75780636d55b371146107175780636dc64af21461073757806370a082311461076757600080fd5b80636352211e146106a25780636812737a146106c25780636c0360eb146106e257600080fd5b80633535f48b116102a05780634a4c560d1161023e57806355f804b31161021857806355f804b3146106335780635c975abb1461065357806362567b5b1461066d578063627804af1461068f57600080fd5b80634a4c560d146105d45780634f6ccce7146105f4578063518302271461061457600080fd5b806342842e0e1161027a57806342842e0e1461054657806342ffa2d014610566578063438b63001461058757806344a0d68a146105b457600080fd5b80633535f48b1461050b5780633ccfd60b1461052b57806340c10f191461053357600080fd5b806318160ddd1161030d5780632a23d07d116102e75780632a23d07d146104955780632f745c59146104ab578063301f8cfc146104cb57806330cc7ae0146104eb57600080fd5b806318160ddd1461044a578063239c70ae1461045f57806323b872dd1461047557600080fd5b806301ffc9a71461035557806302329a291461038a57806306fdde03146103ac578063081812fc146103ce578063095ea7b31461040657806313faede614610426575b600080fd5b34801561036157600080fd5b50610375610370366004612b13565b610a04565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b506103aa6103a5366004612af8565b610a2f565b005b3480156103b857600080fd5b506103c1610a75565b6040516103819190612d20565b3480156103da57600080fd5b506103ee6103e9366004612b96565b610b07565b6040516001600160a01b039091168152602001610381565b34801561041257600080fd5b506103aa610421366004612ace565b610b9c565b34801561043257600080fd5b5061043c60115481565b604051908152602001610381565b34801561045657600080fd5b5060085461043c565b34801561046b57600080fd5b5061043c60155481565b34801561048157600080fd5b506103aa6104903660046129ec565b610cb2565b3480156104a157600080fd5b5061043c60125481565b3480156104b757600080fd5b5061043c6104c6366004612ace565b610ce3565b3480156104d757600080fd5b506103aa6104e6366004612af8565b610d79565b3480156104f757600080fd5b506103aa61050636600461299e565b610dbd565b34801561051757600080fd5b50600f546103ee906001600160a01b031681565b6103aa610e08565b6103aa610541366004612ace565b610fcb565b34801561055257600080fd5b506103aa6105613660046129ec565b61112a565b34801561057257600080fd5b50601654610375906301000000900460ff1681565b34801561059357600080fd5b506105a76105a236600461299e565b611145565b6040516103819190612cdc565b3480156105c057600080fd5b506103aa6105cf366004612b96565b6111e7565b3480156105e057600080fd5b506103aa6105ef36600461299e565b611216565b34801561060057600080fd5b5061043c61060f366004612b96565b611264565b34801561062057600080fd5b5060165461037590610100900460ff1681565b34801561063f57600080fd5b506103aa61064e366004612b4d565b6112f7565b34801561065f57600080fd5b506016546103759060ff1681565b34801561067957600080fd5b5060165461037590640100000000900460ff1681565b6103aa61069d366004612ace565b611338565b3480156106ae57600080fd5b506103ee6106bd366004612b96565b611411565b3480156106ce57600080fd5b506103aa6106dd366004612af8565b611488565b3480156106ee57600080fd5b506103c16114d7565b34801561070357600080fd5b506103aa610712366004612af8565b611565565b34801561072357600080fd5b506016546103759062010000900460ff1681565b34801561074357600080fd5b50610375610752366004612b96565b60186020526000908152604090205460ff1681565b34801561077357600080fd5b5061043c61078236600461299e565b6115b7565b34801561079357600080fd5b506103aa61163e565b3480156107a857600080fd5b506103aa6107b7366004612b96565b611674565b3480156107c857600080fd5b506103c16116a3565b3480156107dd57600080fd5b50600a546001600160a01b03166103ee565b6103aa6107fd366004612ace565b6116b0565b34801561080e57600080fd5b506103c1611895565b6103aa610825366004612ace565b6118a4565b34801561083657600080fd5b506103aa61084536600461299e565b611a31565b34801561085657600080fd5b506103aa610865366004612aa4565b611a7d565b34801561087657600080fd5b506103aa610885366004612a28565b611a88565b34801561089657600080fd5b506103aa6108a5366004612b4d565b611ac0565b3480156108b657600080fd5b506103aa6108c5366004612af8565b611afd565b3480156108d657600080fd5b506103c1611b43565b3480156108eb57600080fd5b506103c16108fa366004612b96565b611b50565b34801561090b57600080fd5b5061043c60145481565b34801561092157600080fd5b5061037561093036600461299e565b60176020526000908152604090205460ff1681565b34801561095157600080fd5b506103aa610960366004612b4d565b611cd4565b34801561097157600080fd5b5061043c60135481565b34801561098757600080fd5b506103756109963660046129b9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109d057600080fd5b50600c546103ee906001600160a01b031681565b3480156109f057600080fd5b506103aa6109ff36600461299e565b611d11565b60006001600160e01b0319821663780e9d6360e01b1480610a295750610a2982611dbb565b92915050565b600a546001600160a01b03163314610a625760405162461bcd60e51b8152600401610a5990612db1565b60405180910390fd5b6016805460ff1916911515919091179055565b606060008054610a8490612efc565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab090612efc565b8015610afd5780601f10610ad257610100808354040283529160200191610afd565b820191906000526020600020905b815481529060010190602001808311610ae057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a59565b506000908152600460205260409020546001600160a01b031690565b6000610ba782611411565b9050806001600160a01b0316836001600160a01b03161415610c155760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a59565b336001600160a01b0382161480610c315750610c318133610996565b610ca35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a59565b610cad8383611e0b565b505050565b610cbc3382611e79565b610cd85760405162461bcd60e51b8152600401610a5990612de6565b610cad838383611f70565b6000610cee836115b7565b8210610d505760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a59565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610da35760405162461bcd60e51b8152600401610a5990612db1565b601680549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314610de75760405162461bcd60e51b8152600401610a5990612db1565b6001600160a01b03166000908152601760205260409020805460ff19169055565b600a546001600160a01b03163314610e325760405162461bcd60e51b8152600401610a5990612db1565b6002600b541415610e555760405162461bcd60e51b8152600401610a5990612e37565b6002600b55600073562157e4a575eb36e078be6af583449bc29a9785612710610e8047610271612e9a565b610e8a9190612e86565b604051600081818185875af1925050503d8060008114610ec6576040519150601f19603f3d011682016040523d82523d6000602084013e610ecb565b606091505b5050905080610ed957600080fd5b600073fd76ff5ef400de7309f22c02099dc775dd3d6ba4612710610eff47610753612e9a565b610f099190612e86565b604051600081818185875af1925050503d8060008114610f45576040519150601f19603f3d011682016040523d82523d6000602084013e610f4a565b606091505b5050905080610f5857600080fd5b604051600090739a47a0c74da38d4d6a97c3746171edb6c4a8c46c9047908381818185875af1925050503d8060008114610fae576040519150601f19603f3d011682016040523d82523d6000602084013e610fb3565b606091505b5050905080610fc157600080fd5b50506001600b5550565b6002600b541415610fee5760405162461bcd60e51b8152600401610a5990612e37565b6002600b55601654640100000000900460ff1615156001146110525760405162461bcd60e51b815260206004820152601d60248201527f5075626c6963206d696e7420686173206e6f7420626567756e207965740000006044820152606401610a59565b600061105d60085490565b60165490915060ff161561107057600080fd5b6000821161107d57600080fd5b60155482111561108c57600080fd5b6014546110998383612e6e565b11156110a457600080fd5b600a546001600160a01b031633146110e357816011546110c49190612e9a565b3410156110e35760405162461bcd60e51b8152600401610a5990612d85565b60015b82811161111257611100846110fb8385612e6e565b612117565b8061110a81612f37565b9150506110e6565b50600f54610fc1906001600160a01b03166001611a7d565b610cad83838360405180602001604052806000815250611a88565b60606000611152836115b7565b905060008167ffffffffffffffff81111561116f5761116f612fbe565b604051908082528060200260200182016040528015611198578160200160208202803683370190505b50905060005b828110156111df576111b08582610ce3565b8282815181106111c2576111c2612fa8565b6020908102919091010152806111d781612f37565b91505061119e565b509392505050565b600a546001600160a01b031633146112115760405162461bcd60e51b8152600401610a5990612db1565b601155565b600a546001600160a01b031633146112405760405162461bcd60e51b8152600401610a5990612db1565b6001600160a01b03166000908152601760205260409020805460ff19166001179055565b600061126f60085490565b82106112d25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a59565b600882815481106112e5576112e5612fa8565b90600052602060002001549050919050565b600a546001600160a01b031633146113215760405162461bcd60e51b8152600401610a5990612db1565b805161133490600d906020840190612868565b5050565b600a546001600160a01b031633146113625760405162461bcd60e51b8152600401610a5990612db1565b6002600b5414156113855760405162461bcd60e51b8152600401610a5990612e37565b6002600b55600061139560085490565b60165490915060ff16156113a857600080fd5b600082116113b557600080fd5b6015548211156113c457600080fd5b6014546113d18383612e6e565b11156113dc57600080fd5b60015b828111611406576113f4846110fb8385612e6e565b806113fe81612f37565b9150506113df565b50506001600b555050565b6000818152600260205260408120546001600160a01b031680610a295760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a59565b600a546001600160a01b031633146114b25760405162461bcd60e51b8152600401610a5990612db1565b6016805463ffff0000191663010000009215159290920262ff00001916919091179055565b600d80546114e490612efc565b80601f016020809104026020016040519081016040528092919081815260200182805461151090612efc565b801561155d5780601f106115325761010080835404028352916020019161155d565b820191906000526020600020905b81548152906001019060200180831161154057829003601f168201915b505050505081565b600a546001600160a01b0316331461158f5760405162461bcd60e51b8152600401610a5990612db1565b6016805464ffff00000019166401000000009215159290920263ff0000001916919091179055565b60006001600160a01b0382166116225760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a59565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116685760405162461bcd60e51b8152600401610a5990612db1565b6116726000612131565b565b600a546001600160a01b0316331461169e5760405162461bcd60e51b8152600401610a5990612db1565b601555565b600e80546114e490612efc565b6002600b5414156116d35760405162461bcd60e51b8152600401610a5990612e37565b6002600b556016546301000000900460ff1615156001146117365760405162461bcd60e51b815260206004820152601a60248201527f564950206d696e7420686173206e6f7420626567756e207965740000000000006044820152606401610a59565b3360009081526017602052604090205460ff16151560011461179a5760405162461bcd60e51b815260206004820152601e60248201527f57616c6c6574206973206e6f74206f6e207468652077686974656c69737400006044820152606401610a59565b60006117a560085490565b60165490915060ff16156117b857600080fd5b600082116117c557600080fd5b6015548211156117d457600080fd5b6014546117e18383612e6e565b11156117ec57600080fd5b600a546001600160a01b0316331461182b578160125461180c9190612e9a565b34101561182b5760405162461bcd60e51b8152600401610a5990612d85565b60015b82811161185557611843846110fb8385612e6e565b8061184d81612f37565b91505061182e565b50600f5461186d906001600160a01b03166001611a7d565b50506001600160a01b03166000908152601760205260409020805460ff191690556001600b55565b606060018054610a8490612efc565b6002600b5414156118c75760405162461bcd60e51b8152600401610a5990612e37565b6002600b5560165462010000900460ff1615156001146119295760405162461bcd60e51b815260206004820152601e60248201527f50726573616c65206d696e7420686173206e6f7420626567756e2079657400006044820152606401610a59565b600061193460085490565b60165490915060ff161561194757600080fd5b6000821161195457600080fd5b60155482111561196357600080fd5b6014546119708383612e6e565b111561197b57600080fd5b600a546001600160a01b031633146119ba578160125461199b9190612e9a565b3410156119ba5760405162461bcd60e51b8152600401610a5990612d85565b60015b828111611112576119d2846110fb8385612e6e565b3360009081526017602052604090205460ff16151560011415611a1f576001601860006119ff8486612e6e565b81526020810191909152604001600020805460ff19169115159190911790555b80611a2981612f37565b9150506119bd565b600a546001600160a01b03163314611a5b5760405162461bcd60e51b8152600401610a5990612db1565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b611334338383612183565b611a923383611e79565b611aae5760405162461bcd60e51b8152600401610a5990612de6565b611aba84848484612252565b50505050565b600a546001600160a01b03163314611aea5760405162461bcd60e51b8152600401610a5990612db1565b805161133490600e906020840190612868565b600a546001600160a01b03163314611b275760405162461bcd60e51b8152600401610a5990612db1565b60168054911515620100000262ff000019909216919091179055565b601080546114e490612efc565b6000818152600260205260409020546060906001600160a01b0316611bcf5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a59565b601654610100900460ff16611c7057600e8054611beb90612efc565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1790612efc565b8015611c645780601f10611c3957610100808354040283529160200191611c64565b820191906000526020600020905b815481529060010190602001808311611c4757829003601f168201915b50505050509050919050565b6000611c7a612285565b90506000815111611c9a5760405180602001604052806000815250611cc8565b80611ca484612294565b6010604051602001611cb893929190612bdb565b6040516020818303038152906040525b9392505050565b919050565b600a546001600160a01b03163314611cfe5760405162461bcd60e51b8152600401610a5990612db1565b8051611334906010906020840190612868565b600a546001600160a01b03163314611d3b5760405162461bcd60e51b8152600401610a5990612db1565b6001600160a01b038116611da05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a59565b611da981612131565b50565b6001600160a01b03163b151590565b60006001600160e01b031982166380ac58cd60e01b1480611dec57506001600160e01b03198216635b5e139f60e01b145b80610a2957506301ffc9a760e01b6001600160e01b0319831614610a29565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e4082611411565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ef25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a59565b6000611efd83611411565b9050806001600160a01b0316846001600160a01b03161480611f4457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611f685750836001600160a01b0316611f5d84610b07565b6001600160a01b0316145b949350505050565b826001600160a01b0316611f8382611411565b6001600160a01b031614611fe75760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a59565b6001600160a01b0382166120495760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a59565b612054838383612392565b61205f600082611e0b565b6001600160a01b0383166000908152600360205260408120805460019290612088908490612eb9565b90915550506001600160a01b03821660009081526003602052604081208054600192906120b6908490612e6e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61133482826040518060200160405280600081525061244a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156121e55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a59565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61225d848484611f70565b6122698484848461247d565b611aba5760405162461bcd60e51b8152600401610a5990612d33565b6060600d8054610a8490612efc565b6060816122b85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122e257806122cc81612f37565b91506122db9050600a83612e86565b91506122bc565b60008167ffffffffffffffff8111156122fd576122fd612fbe565b6040519080825280601f01601f191660200182016040528015612327576020820181803683370190505b5090505b8415611f685761233c600183612eb9565b9150612349600a86612f52565b612354906030612e6e565b60f81b81838151811061236957612369612fa8565b60200101906001600160f81b031916908160001a90535061238b600a86612e86565b945061232b565b6001600160a01b0383166123ed576123e881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612410565b816001600160a01b0316836001600160a01b03161461241057612410838261258a565b6001600160a01b03821661242757610cad81612627565b826001600160a01b0316826001600160a01b031614610cad57610cad82826126d6565b612454838361271a565b612461600084848461247d565b610cad5760405162461bcd60e51b8152600401610a5990612d33565b60006001600160a01b0384163b1561257f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124c1903390899088908890600401612c9f565b602060405180830381600087803b1580156124db57600080fd5b505af192505050801561250b575060408051601f3d908101601f1916820190925261250891810190612b30565b60015b612565573d808015612539576040519150601f19603f3d011682016040523d82523d6000602084013e61253e565b606091505b50805161255d5760405162461bcd60e51b8152600401610a5990612d33565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f68565b506001949350505050565b60006001612597846115b7565b6125a19190612eb9565b6000838152600760205260409020549091508082146125f4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061263990600190612eb9565b6000838152600960205260408120546008805493945090928490811061266157612661612fa8565b90600052602060002001549050806008838154811061268257612682612fa8565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806126ba576126ba612f92565b6001900381819060005260206000200160009055905550505050565b60006126e1836115b7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166127705760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a59565b6000818152600260205260409020546001600160a01b0316156127d55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a59565b6127e160008383612392565b6001600160a01b038216600090815260036020526040812080546001929061280a908490612e6e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461287490612efc565b90600052602060002090601f01602090048101928261289657600085556128dc565b82601f106128af57805160ff19168380011785556128dc565b828001600101855582156128dc579182015b828111156128dc5782518255916020019190600101906128c1565b506128e89291506128ec565b5090565b5b808211156128e857600081556001016128ed565b600067ffffffffffffffff8084111561291c5761291c612fbe565b604051601f8501601f19908116603f0116810190828211818310171561294457612944612fbe565b8160405280935085815286868601111561295d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ccf57600080fd5b80358015158114611ccf57600080fd5b6000602082840312156129b057600080fd5b611cc882612977565b600080604083850312156129cc57600080fd5b6129d583612977565b91506129e360208401612977565b90509250929050565b600080600060608486031215612a0157600080fd5b612a0a84612977565b9250612a1860208501612977565b9150604084013590509250925092565b60008060008060808587031215612a3e57600080fd5b612a4785612977565b9350612a5560208601612977565b925060408501359150606085013567ffffffffffffffff811115612a7857600080fd5b8501601f81018713612a8957600080fd5b612a9887823560208401612901565b91505092959194509250565b60008060408385031215612ab757600080fd5b612ac083612977565b91506129e36020840161298e565b60008060408385031215612ae157600080fd5b612aea83612977565b946020939093013593505050565b600060208284031215612b0a57600080fd5b611cc88261298e565b600060208284031215612b2557600080fd5b8135611cc881612fd4565b600060208284031215612b4257600080fd5b8151611cc881612fd4565b600060208284031215612b5f57600080fd5b813567ffffffffffffffff811115612b7657600080fd5b8201601f81018413612b8757600080fd5b611f6884823560208401612901565b600060208284031215612ba857600080fd5b5035919050565b60008151808452612bc7816020860160208601612ed0565b601f01601f19169290920160200192915050565b600084516020612bee8285838a01612ed0565b855191840191612c018184848a01612ed0565b8554920191600090600181811c9080831680612c1e57607f831692505b858310811415612c3c57634e487b7160e01b85526022600452602485fd5b808015612c505760018114612c6157612c8e565b60ff19851688528388019550612c8e565b60008b81526020902060005b85811015612c865781548a820152908401908801612c6d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cd290830184612baf565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d1457835183529284019291840191600101612cf8565b50909695505050505050565b602081526000611cc86020830184612baf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260129082015271496e73756666696369656e742066756e647360701b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60008219821115612e8157612e81612f66565b500190565b600082612e9557612e95612f7c565b500490565b6000816000190483118215151615612eb457612eb4612f66565b500290565b600082821015612ecb57612ecb612f66565b500390565b60005b83811015612eeb578181015183820152602001612ed3565b83811115611aba5750506000910152565b600181811c90821680612f1057607f821691505b60208210811415612f3157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f4b57612f4b612f66565b5060010190565b600082612f6157612f61612f7c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611da957600080fdfea2646970667358221220c22c896a2b69ac46b442b474debc9bff29bbe0abb9125619bb7216d54595ad6664736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e2045524337323152654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000010446f706520446f626573204d6166696100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344444d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e697066733a2f2f6261667962656967616a7378697878646a36766f70773469696f35716571346634736174616c6b6d62367667713334656e71336a783375663263342f68696464656e2e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569676f71706d6736676773733277333536786c6537326a6c7732786e626667377669667032357766676475796777757367337772752f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103505760003560e01c80636352211e116101c65780639dd373b9116100f7578063d5abeb0111610095578063e7b99ec71161006f578063e7b99ec714610965578063e985e9c51461097b578063ee99205c146109c4578063f2fde38b146109e457600080fd5b8063d5abeb01146108ff578063d936547e14610915578063da3ef23f1461094557600080fd5b8063bbaac02f116100d1578063bbaac02f1461088a578063c4e3b16d146108aa578063c6682862146108ca578063c87b56dd146108df57600080fd5b80639dd373b91461082a578063a22cb4651461084a578063b88d4fde1461086a57600080fd5b8063715018a6116101645780638da5cb5b1161013e5780638da5cb5b146107d157806395799388146107ef57806395d89b41146108025780639b6a67091461081757600080fd5b8063715018a6146107875780637f00c7a61461079c5780638cc54e7f146107bc57600080fd5b80636d4d6690116101a05780636d4d6690146106f75780636d55b371146107175780636dc64af21461073757806370a082311461076757600080fd5b80636352211e146106a25780636812737a146106c25780636c0360eb146106e257600080fd5b80633535f48b116102a05780634a4c560d1161023e57806355f804b31161021857806355f804b3146106335780635c975abb1461065357806362567b5b1461066d578063627804af1461068f57600080fd5b80634a4c560d146105d45780634f6ccce7146105f4578063518302271461061457600080fd5b806342842e0e1161027a57806342842e0e1461054657806342ffa2d014610566578063438b63001461058757806344a0d68a146105b457600080fd5b80633535f48b1461050b5780633ccfd60b1461052b57806340c10f191461053357600080fd5b806318160ddd1161030d5780632a23d07d116102e75780632a23d07d146104955780632f745c59146104ab578063301f8cfc146104cb57806330cc7ae0146104eb57600080fd5b806318160ddd1461044a578063239c70ae1461045f57806323b872dd1461047557600080fd5b806301ffc9a71461035557806302329a291461038a57806306fdde03146103ac578063081812fc146103ce578063095ea7b31461040657806313faede614610426575b600080fd5b34801561036157600080fd5b50610375610370366004612b13565b610a04565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b506103aa6103a5366004612af8565b610a2f565b005b3480156103b857600080fd5b506103c1610a75565b6040516103819190612d20565b3480156103da57600080fd5b506103ee6103e9366004612b96565b610b07565b6040516001600160a01b039091168152602001610381565b34801561041257600080fd5b506103aa610421366004612ace565b610b9c565b34801561043257600080fd5b5061043c60115481565b604051908152602001610381565b34801561045657600080fd5b5060085461043c565b34801561046b57600080fd5b5061043c60155481565b34801561048157600080fd5b506103aa6104903660046129ec565b610cb2565b3480156104a157600080fd5b5061043c60125481565b3480156104b757600080fd5b5061043c6104c6366004612ace565b610ce3565b3480156104d757600080fd5b506103aa6104e6366004612af8565b610d79565b3480156104f757600080fd5b506103aa61050636600461299e565b610dbd565b34801561051757600080fd5b50600f546103ee906001600160a01b031681565b6103aa610e08565b6103aa610541366004612ace565b610fcb565b34801561055257600080fd5b506103aa6105613660046129ec565b61112a565b34801561057257600080fd5b50601654610375906301000000900460ff1681565b34801561059357600080fd5b506105a76105a236600461299e565b611145565b6040516103819190612cdc565b3480156105c057600080fd5b506103aa6105cf366004612b96565b6111e7565b3480156105e057600080fd5b506103aa6105ef36600461299e565b611216565b34801561060057600080fd5b5061043c61060f366004612b96565b611264565b34801561062057600080fd5b5060165461037590610100900460ff1681565b34801561063f57600080fd5b506103aa61064e366004612b4d565b6112f7565b34801561065f57600080fd5b506016546103759060ff1681565b34801561067957600080fd5b5060165461037590640100000000900460ff1681565b6103aa61069d366004612ace565b611338565b3480156106ae57600080fd5b506103ee6106bd366004612b96565b611411565b3480156106ce57600080fd5b506103aa6106dd366004612af8565b611488565b3480156106ee57600080fd5b506103c16114d7565b34801561070357600080fd5b506103aa610712366004612af8565b611565565b34801561072357600080fd5b506016546103759062010000900460ff1681565b34801561074357600080fd5b50610375610752366004612b96565b60186020526000908152604090205460ff1681565b34801561077357600080fd5b5061043c61078236600461299e565b6115b7565b34801561079357600080fd5b506103aa61163e565b3480156107a857600080fd5b506103aa6107b7366004612b96565b611674565b3480156107c857600080fd5b506103c16116a3565b3480156107dd57600080fd5b50600a546001600160a01b03166103ee565b6103aa6107fd366004612ace565b6116b0565b34801561080e57600080fd5b506103c1611895565b6103aa610825366004612ace565b6118a4565b34801561083657600080fd5b506103aa61084536600461299e565b611a31565b34801561085657600080fd5b506103aa610865366004612aa4565b611a7d565b34801561087657600080fd5b506103aa610885366004612a28565b611a88565b34801561089657600080fd5b506103aa6108a5366004612b4d565b611ac0565b3480156108b657600080fd5b506103aa6108c5366004612af8565b611afd565b3480156108d657600080fd5b506103c1611b43565b3480156108eb57600080fd5b506103c16108fa366004612b96565b611b50565b34801561090b57600080fd5b5061043c60145481565b34801561092157600080fd5b5061037561093036600461299e565b60176020526000908152604090205460ff1681565b34801561095157600080fd5b506103aa610960366004612b4d565b611cd4565b34801561097157600080fd5b5061043c60135481565b34801561098757600080fd5b506103756109963660046129b9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109d057600080fd5b50600c546103ee906001600160a01b031681565b3480156109f057600080fd5b506103aa6109ff36600461299e565b611d11565b60006001600160e01b0319821663780e9d6360e01b1480610a295750610a2982611dbb565b92915050565b600a546001600160a01b03163314610a625760405162461bcd60e51b8152600401610a5990612db1565b60405180910390fd5b6016805460ff1916911515919091179055565b606060008054610a8490612efc565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab090612efc565b8015610afd5780601f10610ad257610100808354040283529160200191610afd565b820191906000526020600020905b815481529060010190602001808311610ae057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a59565b506000908152600460205260409020546001600160a01b031690565b6000610ba782611411565b9050806001600160a01b0316836001600160a01b03161415610c155760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a59565b336001600160a01b0382161480610c315750610c318133610996565b610ca35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a59565b610cad8383611e0b565b505050565b610cbc3382611e79565b610cd85760405162461bcd60e51b8152600401610a5990612de6565b610cad838383611f70565b6000610cee836115b7565b8210610d505760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a59565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610da35760405162461bcd60e51b8152600401610a5990612db1565b601680549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314610de75760405162461bcd60e51b8152600401610a5990612db1565b6001600160a01b03166000908152601760205260409020805460ff19169055565b600a546001600160a01b03163314610e325760405162461bcd60e51b8152600401610a5990612db1565b6002600b541415610e555760405162461bcd60e51b8152600401610a5990612e37565b6002600b55600073562157e4a575eb36e078be6af583449bc29a9785612710610e8047610271612e9a565b610e8a9190612e86565b604051600081818185875af1925050503d8060008114610ec6576040519150601f19603f3d011682016040523d82523d6000602084013e610ecb565b606091505b5050905080610ed957600080fd5b600073fd76ff5ef400de7309f22c02099dc775dd3d6ba4612710610eff47610753612e9a565b610f099190612e86565b604051600081818185875af1925050503d8060008114610f45576040519150601f19603f3d011682016040523d82523d6000602084013e610f4a565b606091505b5050905080610f5857600080fd5b604051600090739a47a0c74da38d4d6a97c3746171edb6c4a8c46c9047908381818185875af1925050503d8060008114610fae576040519150601f19603f3d011682016040523d82523d6000602084013e610fb3565b606091505b5050905080610fc157600080fd5b50506001600b5550565b6002600b541415610fee5760405162461bcd60e51b8152600401610a5990612e37565b6002600b55601654640100000000900460ff1615156001146110525760405162461bcd60e51b815260206004820152601d60248201527f5075626c6963206d696e7420686173206e6f7420626567756e207965740000006044820152606401610a59565b600061105d60085490565b60165490915060ff161561107057600080fd5b6000821161107d57600080fd5b60155482111561108c57600080fd5b6014546110998383612e6e565b11156110a457600080fd5b600a546001600160a01b031633146110e357816011546110c49190612e9a565b3410156110e35760405162461bcd60e51b8152600401610a5990612d85565b60015b82811161111257611100846110fb8385612e6e565b612117565b8061110a81612f37565b9150506110e6565b50600f54610fc1906001600160a01b03166001611a7d565b610cad83838360405180602001604052806000815250611a88565b60606000611152836115b7565b905060008167ffffffffffffffff81111561116f5761116f612fbe565b604051908082528060200260200182016040528015611198578160200160208202803683370190505b50905060005b828110156111df576111b08582610ce3565b8282815181106111c2576111c2612fa8565b6020908102919091010152806111d781612f37565b91505061119e565b509392505050565b600a546001600160a01b031633146112115760405162461bcd60e51b8152600401610a5990612db1565b601155565b600a546001600160a01b031633146112405760405162461bcd60e51b8152600401610a5990612db1565b6001600160a01b03166000908152601760205260409020805460ff19166001179055565b600061126f60085490565b82106112d25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a59565b600882815481106112e5576112e5612fa8565b90600052602060002001549050919050565b600a546001600160a01b031633146113215760405162461bcd60e51b8152600401610a5990612db1565b805161133490600d906020840190612868565b5050565b600a546001600160a01b031633146113625760405162461bcd60e51b8152600401610a5990612db1565b6002600b5414156113855760405162461bcd60e51b8152600401610a5990612e37565b6002600b55600061139560085490565b60165490915060ff16156113a857600080fd5b600082116113b557600080fd5b6015548211156113c457600080fd5b6014546113d18383612e6e565b11156113dc57600080fd5b60015b828111611406576113f4846110fb8385612e6e565b806113fe81612f37565b9150506113df565b50506001600b555050565b6000818152600260205260408120546001600160a01b031680610a295760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a59565b600a546001600160a01b031633146114b25760405162461bcd60e51b8152600401610a5990612db1565b6016805463ffff0000191663010000009215159290920262ff00001916919091179055565b600d80546114e490612efc565b80601f016020809104026020016040519081016040528092919081815260200182805461151090612efc565b801561155d5780601f106115325761010080835404028352916020019161155d565b820191906000526020600020905b81548152906001019060200180831161154057829003601f168201915b505050505081565b600a546001600160a01b0316331461158f5760405162461bcd60e51b8152600401610a5990612db1565b6016805464ffff00000019166401000000009215159290920263ff0000001916919091179055565b60006001600160a01b0382166116225760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a59565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116685760405162461bcd60e51b8152600401610a5990612db1565b6116726000612131565b565b600a546001600160a01b0316331461169e5760405162461bcd60e51b8152600401610a5990612db1565b601555565b600e80546114e490612efc565b6002600b5414156116d35760405162461bcd60e51b8152600401610a5990612e37565b6002600b556016546301000000900460ff1615156001146117365760405162461bcd60e51b815260206004820152601a60248201527f564950206d696e7420686173206e6f7420626567756e207965740000000000006044820152606401610a59565b3360009081526017602052604090205460ff16151560011461179a5760405162461bcd60e51b815260206004820152601e60248201527f57616c6c6574206973206e6f74206f6e207468652077686974656c69737400006044820152606401610a59565b60006117a560085490565b60165490915060ff16156117b857600080fd5b600082116117c557600080fd5b6015548211156117d457600080fd5b6014546117e18383612e6e565b11156117ec57600080fd5b600a546001600160a01b0316331461182b578160125461180c9190612e9a565b34101561182b5760405162461bcd60e51b8152600401610a5990612d85565b60015b82811161185557611843846110fb8385612e6e565b8061184d81612f37565b91505061182e565b50600f5461186d906001600160a01b03166001611a7d565b50506001600160a01b03166000908152601760205260409020805460ff191690556001600b55565b606060018054610a8490612efc565b6002600b5414156118c75760405162461bcd60e51b8152600401610a5990612e37565b6002600b5560165462010000900460ff1615156001146119295760405162461bcd60e51b815260206004820152601e60248201527f50726573616c65206d696e7420686173206e6f7420626567756e2079657400006044820152606401610a59565b600061193460085490565b60165490915060ff161561194757600080fd5b6000821161195457600080fd5b60155482111561196357600080fd5b6014546119708383612e6e565b111561197b57600080fd5b600a546001600160a01b031633146119ba578160125461199b9190612e9a565b3410156119ba5760405162461bcd60e51b8152600401610a5990612d85565b60015b828111611112576119d2846110fb8385612e6e565b3360009081526017602052604090205460ff16151560011415611a1f576001601860006119ff8486612e6e565b81526020810191909152604001600020805460ff19169115159190911790555b80611a2981612f37565b9150506119bd565b600a546001600160a01b03163314611a5b5760405162461bcd60e51b8152600401610a5990612db1565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b611334338383612183565b611a923383611e79565b611aae5760405162461bcd60e51b8152600401610a5990612de6565b611aba84848484612252565b50505050565b600a546001600160a01b03163314611aea5760405162461bcd60e51b8152600401610a5990612db1565b805161133490600e906020840190612868565b600a546001600160a01b03163314611b275760405162461bcd60e51b8152600401610a5990612db1565b60168054911515620100000262ff000019909216919091179055565b601080546114e490612efc565b6000818152600260205260409020546060906001600160a01b0316611bcf5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a59565b601654610100900460ff16611c7057600e8054611beb90612efc565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1790612efc565b8015611c645780601f10611c3957610100808354040283529160200191611c64565b820191906000526020600020905b815481529060010190602001808311611c4757829003601f168201915b50505050509050919050565b6000611c7a612285565b90506000815111611c9a5760405180602001604052806000815250611cc8565b80611ca484612294565b6010604051602001611cb893929190612bdb565b6040516020818303038152906040525b9392505050565b919050565b600a546001600160a01b03163314611cfe5760405162461bcd60e51b8152600401610a5990612db1565b8051611334906010906020840190612868565b600a546001600160a01b03163314611d3b5760405162461bcd60e51b8152600401610a5990612db1565b6001600160a01b038116611da05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a59565b611da981612131565b50565b6001600160a01b03163b151590565b60006001600160e01b031982166380ac58cd60e01b1480611dec57506001600160e01b03198216635b5e139f60e01b145b80610a2957506301ffc9a760e01b6001600160e01b0319831614610a29565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e4082611411565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ef25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a59565b6000611efd83611411565b9050806001600160a01b0316846001600160a01b03161480611f4457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611f685750836001600160a01b0316611f5d84610b07565b6001600160a01b0316145b949350505050565b826001600160a01b0316611f8382611411565b6001600160a01b031614611fe75760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a59565b6001600160a01b0382166120495760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a59565b612054838383612392565b61205f600082611e0b565b6001600160a01b0383166000908152600360205260408120805460019290612088908490612eb9565b90915550506001600160a01b03821660009081526003602052604081208054600192906120b6908490612e6e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61133482826040518060200160405280600081525061244a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156121e55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a59565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61225d848484611f70565b6122698484848461247d565b611aba5760405162461bcd60e51b8152600401610a5990612d33565b6060600d8054610a8490612efc565b6060816122b85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122e257806122cc81612f37565b91506122db9050600a83612e86565b91506122bc565b60008167ffffffffffffffff8111156122fd576122fd612fbe565b6040519080825280601f01601f191660200182016040528015612327576020820181803683370190505b5090505b8415611f685761233c600183612eb9565b9150612349600a86612f52565b612354906030612e6e565b60f81b81838151811061236957612369612fa8565b60200101906001600160f81b031916908160001a90535061238b600a86612e86565b945061232b565b6001600160a01b0383166123ed576123e881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612410565b816001600160a01b0316836001600160a01b03161461241057612410838261258a565b6001600160a01b03821661242757610cad81612627565b826001600160a01b0316826001600160a01b031614610cad57610cad82826126d6565b612454838361271a565b612461600084848461247d565b610cad5760405162461bcd60e51b8152600401610a5990612d33565b60006001600160a01b0384163b1561257f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124c1903390899088908890600401612c9f565b602060405180830381600087803b1580156124db57600080fd5b505af192505050801561250b575060408051601f3d908101601f1916820190925261250891810190612b30565b60015b612565573d808015612539576040519150601f19603f3d011682016040523d82523d6000602084013e61253e565b606091505b50805161255d5760405162461bcd60e51b8152600401610a5990612d33565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f68565b506001949350505050565b60006001612597846115b7565b6125a19190612eb9565b6000838152600760205260409020549091508082146125f4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061263990600190612eb9565b6000838152600960205260408120546008805493945090928490811061266157612661612fa8565b90600052602060002001549050806008838154811061268257612682612fa8565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806126ba576126ba612f92565b6001900381819060005260206000200160009055905550505050565b60006126e1836115b7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166127705760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a59565b6000818152600260205260409020546001600160a01b0316156127d55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a59565b6127e160008383612392565b6001600160a01b038216600090815260036020526040812080546001929061280a908490612e6e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461287490612efc565b90600052602060002090601f01602090048101928261289657600085556128dc565b82601f106128af57805160ff19168380011785556128dc565b828001600101855582156128dc579182015b828111156128dc5782518255916020019190600101906128c1565b506128e89291506128ec565b5090565b5b808211156128e857600081556001016128ed565b600067ffffffffffffffff8084111561291c5761291c612fbe565b604051601f8501601f19908116603f0116810190828211818310171561294457612944612fbe565b8160405280935085815286868601111561295d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ccf57600080fd5b80358015158114611ccf57600080fd5b6000602082840312156129b057600080fd5b611cc882612977565b600080604083850312156129cc57600080fd5b6129d583612977565b91506129e360208401612977565b90509250929050565b600080600060608486031215612a0157600080fd5b612a0a84612977565b9250612a1860208501612977565b9150604084013590509250925092565b60008060008060808587031215612a3e57600080fd5b612a4785612977565b9350612a5560208601612977565b925060408501359150606085013567ffffffffffffffff811115612a7857600080fd5b8501601f81018713612a8957600080fd5b612a9887823560208401612901565b91505092959194509250565b60008060408385031215612ab757600080fd5b612ac083612977565b91506129e36020840161298e565b60008060408385031215612ae157600080fd5b612aea83612977565b946020939093013593505050565b600060208284031215612b0a57600080fd5b611cc88261298e565b600060208284031215612b2557600080fd5b8135611cc881612fd4565b600060208284031215612b4257600080fd5b8151611cc881612fd4565b600060208284031215612b5f57600080fd5b813567ffffffffffffffff811115612b7657600080fd5b8201601f81018413612b8757600080fd5b611f6884823560208401612901565b600060208284031215612ba857600080fd5b5035919050565b60008151808452612bc7816020860160208601612ed0565b601f01601f19169290920160200192915050565b600084516020612bee8285838a01612ed0565b855191840191612c018184848a01612ed0565b8554920191600090600181811c9080831680612c1e57607f831692505b858310811415612c3c57634e487b7160e01b85526022600452602485fd5b808015612c505760018114612c6157612c8e565b60ff19851688528388019550612c8e565b60008b81526020902060005b85811015612c865781548a820152908401908801612c6d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cd290830184612baf565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d1457835183529284019291840191600101612cf8565b50909695505050505050565b602081526000611cc86020830184612baf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260129082015271496e73756666696369656e742066756e647360701b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60008219821115612e8157612e81612f66565b500190565b600082612e9557612e95612f7c565b500490565b6000816000190483118215151615612eb457612eb4612f66565b500290565b600082821015612ecb57612ecb612f66565b500390565b60005b83811015612eeb578181015183820152602001612ed3565b83811115611aba5750506000910152565b600181811c90821680612f1057607f821691505b60208210811415612f3157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f4b57612f4b612f66565b5060010190565b600082612f6157612f61612f7c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611da957600080fdfea2646970667358221220c22c896a2b69ac46b442b474debc9bff29bbe0abb9125619bb7216d54595ad6664736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000010446f706520446f626573204d6166696100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344444d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e697066733a2f2f6261667962656967616a7378697878646a36766f70773469696f35716571346634736174616c6b6d62367667713334656e71336a783375663263342f68696464656e2e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569676f71706d6736676773733277333536786c6537326a6c7732786e626667377669667032357766676475796777757367337772752f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Dope Dobes Mafia
Arg [1] : _symbol (string): DDM
Arg [2] : _initHiddenURI (string): ipfs://bafybeigajsxixxdj6vopw4iio5qeq4f4satalkmb6vgq34enq3jx3uf2c4/hidden.json
Arg [3] : _initBaseURI (string): ipfs://bafybeigoqpmg6ggss2w356xle72jlw2xnbfg7vifp25wfgduygwusg3wru/
-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [5] : 446f706520446f626573204d6166696100000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 44444d0000000000000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000004e
Arg [9] : 697066733a2f2f6261667962656967616a7378697878646a36766f7077346969
Arg [10] : 6f35716571346634736174616c6b6d62367667713334656e71336a7833756632
Arg [11] : 63342f68696464656e2e6a736f6e000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [13] : 697066733a2f2f62616679626569676f71706d6736676773733277333536786c
Arg [14] : 6537326a6c7732786e6266673776696670323577666764757967777573673377
Arg [15] : 72752f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
51289:7840:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44889:224;;;;;;;;;;-1:-1:-1;44889:224:0;;;;;:::i;:::-;;:::i;:::-;;;7807:14:1;;7800:22;7782:41;;7770:2;7755:18;44889:224:0;;;;;;;;57664:75;;;;;;;;;;-1:-1:-1;57664:75:0;;;;;:::i;:::-;;:::i;:::-;;31708:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33268:221::-;;;;;;;;;;-1:-1:-1;33268:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6468:32:1;;;6450:51;;6438:2;6423:18;33268:221:0;6304:203:1;32791:411:0;;;;;;;;;;-1:-1:-1;32791:411:0;;;;;:::i;:::-;;:::i;51563:32::-;;;;;;;;;;;;;;;;;;;17768:25:1;;;17756:2;17741:18;51563:32:0;17622:177:1;45529:113:0;;;;;;;;;;-1:-1:-1;45617:10:0;:17;45529:113;;51726:33;;;;;;;;;;;;;;;;34018:339;;;;;;;;;;-1:-1:-1;34018:339:0;;;;;:::i;:::-;;:::i;51600:39::-;;;;;;;;;;;;;;;;45197:256;;;;;;;;;;-1:-1:-1;45197:256:0;;;;;:::i;:::-;;:::i;53095:86::-;;;;;;;;;;-1:-1:-1;53095:86:0;;;;;:::i;:::-;;:::i;57847:102::-;;;;;;;;;;-1:-1:-1;57847:102:0;;;;;:::i;:::-;;:::i;51479:37::-;;;;;;;;;;-1:-1:-1;51479:37:0;;;;-1:-1:-1;;;;;51479:37:0;;;57955:1169;;;:::i;54799:628::-;;;;;;:::i;:::-;;:::i;34428:185::-;;;;;;;;;;-1:-1:-1;34428:185:0;;;;;:::i;:::-;;:::i;51866:35::-;;;;;;;;;;-1:-1:-1;51866:35:0;;;;;;;;;;;55881:348;;;;;;;;;;-1:-1:-1;55881:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;56953:82::-;;;;;;;;;;-1:-1:-1;56953:82:0;;;;;:::i;:::-;;:::i;57745:95::-;;;;;;;;;;-1:-1:-1;57745:95:0;;;;;:::i;:::-;;:::i;45719:233::-;;;;;;;;;;-1:-1:-1;45719:233:0;;;;;:::i;:::-;;:::i;51795:28::-;;;;;;;;;;-1:-1:-1;51795:28:0;;;;;;;;;;;57279:98;;;;;;;;;;-1:-1:-1;57279:98:0;;;;;:::i;:::-;;:::i;51764:26::-;;;;;;;;;;-1:-1:-1;51764:26:0;;;;;;;;51906:32;;;;;;;;;;-1:-1:-1;51906:32:0;;;;;;;;;;;55452:390;;;;;;:::i;:::-;;:::i;31402:239::-;;;;;;;;;;-1:-1:-1;31402:239:0;;;;;:::i;:::-;;:::i;52731:158::-;;;;;;;;;;-1:-1:-1;52731:158:0;;;;;:::i;:::-;;:::i;51425:21::-;;;;;;;;;;;;;:::i;52924:148::-;;;;;;;;;;-1:-1:-1;52924:148:0;;;;;:::i;:::-;;:::i;51828:33::-;;;;;;;;;;-1:-1:-1;51828:33:0;;;;;;;;;;;51991:42;;;;;;;;;;-1:-1:-1;51991:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31132:208;;;;;;;;;;-1:-1:-1;31132:208:0;;;;;:::i;:::-;;:::i;10266:103::-;;;;;;;;;;;;;:::i;57043:118::-;;;;;;;;;;-1:-1:-1;57043:118:0;;;;;:::i;:::-;;:::i;51451:23::-;;;;;;;;;;;;;:::i;9615:87::-;;;;;;;;;;-1:-1:-1;9688:6:0;;-1:-1:-1;;;;;9688:6:0;9615:87;;54008:770;;;;;;:::i;:::-;;:::i;31877:104::-;;;;;;;;;;;;;:::i;53224:753::-;;;;;;:::i;:::-;;:::i;57383:145::-;;;;;;;;;;-1:-1:-1;57383:145:0;;;;;:::i;:::-;;:::i;33561:155::-;;;;;;;;;;-1:-1:-1;33561:155:0;;;;;:::i;:::-;;:::i;34684:328::-;;;;;;;;;;-1:-1:-1;34684:328:0;;;;;:::i;:::-;;:::i;57167:106::-;;;;;;;;;;-1:-1:-1;57167:106:0;;;;;:::i;:::-;;:::i;52573:120::-;;;;;;;;;;-1:-1:-1;52573:120:0;;;;;:::i;:::-;;:::i;51521:37::-;;;;;;;;;;;;;:::i;56235:505::-;;;;;;;;;;-1:-1:-1;56235:505:0;;;;;:::i;:::-;;:::i;51690:31::-;;;;;;;;;;;;;;;;51943:43;;;;;;;;;;-1:-1:-1;51943:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;57534:124;;;;;;;;;;-1:-1:-1;57534:124:0;;;;;:::i;:::-;;:::i;51644:41::-;;;;;;;;;;;;;;;;33787:164;;;;;;;;;;-1:-1:-1;33787:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33908:25:0;;;33884:4;33908:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33787:164;51358:30;;;;;;;;;;-1:-1:-1;51358:30:0;;;;-1:-1:-1;;;;;51358:30:0;;;10524:201;;;;;;;;;;-1:-1:-1;10524:201:0;;;;;:::i;:::-;;:::i;44889:224::-;44991:4;-1:-1:-1;;;;;;45015:50:0;;-1:-1:-1;;;45015:50:0;;:90;;;45069:36;45093:11;45069:23;:36::i;:::-;45008:97;44889:224;-1:-1:-1;;44889:224:0:o;57664:75::-;9688:6;;-1:-1:-1;;;;;9688:6:0;8419:10;9835:23;9827:68;;;;-1:-1:-1;;;9827:68:0;;;;;;;:::i;:::-;;;;;;;;;57718:6:::1;:15:::0;;-1:-1:-1;;57718:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;57664:75::o;31708:100::-;31762:13;31795:5;31788:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31708:100;:::o;33268:221::-;33344:7;36611:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36611:16:0;33364:73;;;;-1:-1:-1;;;33364:73:0;;14328:2:1;33364:73:0;;;14310:21:1;14367:2;14347:18;;;14340:30;14406:34;14386:18;;;14379:62;-1:-1:-1;;;14457:18:1;;;14450:42;14509:19;;33364:73:0;14126:408:1;33364:73:0;-1:-1:-1;33457:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33457:24:0;;33268:221::o;32791:411::-;32872:13;32888:23;32903:7;32888:14;:23::i;:::-;32872:39;;32936:5;-1:-1:-1;;;;;32930:11:0;:2;-1:-1:-1;;;;;32930:11:0;;;32922:57;;;;-1:-1:-1;;;32922:57:0;;15518:2:1;32922:57:0;;;15500:21:1;15557:2;15537:18;;;15530:30;15596:34;15576:18;;;15569:62;-1:-1:-1;;;15647:18:1;;;15640:31;15688:19;;32922:57:0;15316:397:1;32922:57:0;8419:10;-1:-1:-1;;;;;33014:21:0;;;;:62;;-1:-1:-1;33039:37:0;33056:5;8419:10;33787:164;:::i;33039:37::-;32992:168;;;;-1:-1:-1;;;32992:168:0;;12721:2:1;32992:168:0;;;12703:21:1;12760:2;12740:18;;;12733:30;12799:34;12779:18;;;12772:62;12870:26;12850:18;;;12843:54;12914:19;;32992:168:0;12519:420:1;32992:168:0;33173:21;33182:2;33186:7;33173:8;:21::i;:::-;32861:341;32791:411;;:::o;34018:339::-;34213:41;8419:10;34246:7;34213:18;:41::i;:::-;34205:103;;;;-1:-1:-1;;;34205:103:0;;;;;;;:::i;:::-;34321:28;34331:4;34337:2;34341:7;34321:9;:28::i;45197:256::-;45294:7;45330:23;45347:5;45330:16;:23::i;:::-;45322:5;:31;45314:87;;;;-1:-1:-1;;;45314:87:0;;8483:2:1;45314:87:0;;;8465:21:1;8522:2;8502:18;;;8495:30;8561:34;8541:18;;;8534:62;-1:-1:-1;;;8612:18:1;;;8605:41;8663:19;;45314:87:0;8281:407:1;45314:87:0;-1:-1:-1;;;;;;45419:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;45197:256::o;53095:86::-;9688:6;;-1:-1:-1;;;;;9688:6:0;8419:10;9835:23;9827:68;;;;-1:-1:-1;;;9827:68:0;;;;;;;:::i;:::-;53155:8:::1;:18:::0;;;::::1;;;;-1:-1:-1::0;;53155:18:0;;::::1;::::0;;;::::1;::::0;;53095:86::o;57847:102::-;9688:6;;-1:-1:-1;;;;;9688:6:0;8419:10;9835:23;9827:68;;;;-1:-1:-1;;;9827:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;57917:18:0::1;57938:5;57917:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;57917:26:0::1;::::0;;57847:102::o;57955:1169::-;9688:6;;-1:-1:-1;;;;;9688:6:0;8419:10;9835:23;9827:68;;;;-1:-1:-1;;;9827:68:0;;;;;;;:::i;:::-;4589:1:::1;5187:7;;:19;;5179:63;;;;-1:-1:-1::0;;;5179:63:0::1;;;;;;;:::i;:::-;4589:1;5320:7;:18:::0;58163:7:::2;58184:42;58270:5;58240:27;:21;58264:3;58240:27;:::i;:::-;:35;;;;:::i;:::-;58176:104;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58162:118;;;58295:2;58287:11;;;::::0;::::2;;58537:7;58558:42;58645:5;58614:28;:21;58638:4;58614:28;:::i;:::-;:36;;;;:::i;:::-;58550:105;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58536:119;;;58670:2;58662:11;;;::::0;::::2;;58924:90;::::0;58911:7:::2;::::0;58932:42:::2;::::0;58988:21:::2;::::0;58911:7;58924:90;58911:7;58924:90;58988:21;58932:42;58924:90:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58910:104;;;59029:2;59021:11;;;::::0;::::2;;-1:-1:-1::0;;4545:1:0::1;5499:7;:22:::0;-1:-1:-1;57955:1169:0:o;54799:628::-;4589:1;5187:7;;:19;;5179:63;;;;-1:-1:-1;;;5179:63:0;;;;;;;:::i;:::-;4589:1;5320:7;:18;54891:12:::1;::::0;;;::::1;;;:20;;54907:4;54891:20;54883:62;;;::::0;-1:-1:-1;;;54883:62:0;;15920:2:1;54883:62:0::1;::::0;::::1;15902:21:1::0;15959:2;15939:18;;;15932:30;15998:31;15978:18;;;15971:59;16047:18;;54883:62:0::1;15718:353:1::0;54883:62:0::1;54954:14;54971:13;45617:10:::0;:17;;45529:113;54971:13:::1;55002:6;::::0;54954:30;;-1:-1:-1;55002:6:0::1;;55001:7;54993:16;;;::::0;::::1;;55040:1;55026:11;:15;55018:24;;;::::0;::::1;;55074:13;;55059:11;:28;;55051:37;;;::::0;::::1;;55129:9;::::0;55105:20:::1;55114:11:::0;55105:6;:20:::1;:::i;:::-;:33;;55097:42;;;::::0;::::1;;9688:6:::0;;-1:-1:-1;;;;;9688:6:0;55154:10:::1;:21;55150:112;;55218:11;55211:4;;:18;;;;:::i;:::-;55198:9;:31;;55190:62;;;;-1:-1:-1::0;;;55190:62:0::1;;;;;;;:::i;:::-;55289:1;55272:90;55297:11;55292:1;:16;55272:90;;55326:26;55336:3:::0;55341:10:::1;55350:1:::0;55341:6;:10:::1;:::i;:::-;55326:9;:26::i;:::-;55310:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55272:90;;;-1:-1:-1::0;55390:22:0::1;::::0;55372:47:::1;::::0;-1:-1:-1;;;;;55390:22:0::1;::::0;55372:17:::1;:47::i;34428:185::-:0;34566:39;34583:4;34589:2;34593:7;34566:39;;;;;;;;;;;;:16;:39::i;55881:348::-;55956:16;55984:23;56010:17;56020:6;56010:9;:17::i;:::-;55984:43;;56034:25;56076:15;56062:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56062:30:0;;56034:58;;56104:9;56099:103;56119:15;56115:1;:19;56099:103;;;56164:30;56184:6;56192:1;56164:19;:30::i;:::-;56150:8;56159:1;56150:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;56136:3;;;;:::i;:::-;;;;56099:103;;;-1:-1:-1;56215:8:0;55881:348;-1:-1:-1;;;55881:348:0:o;56953:82::-;9688:6;;-1:-1:-1;;;;;9688:6:0;8419:10;9835:23;9827:68;;;;-1:-1:-1;;;9827:68:0;;;;;;;:::i;:::-;57014:4:::1;:15:::0;56953:82::o;57745:95::-;9688:6;;-1:-1:-1;;;;;9688:6:0;8419:10;9835:23;9827:68;;;;-1:-1:-1;;;9827:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;57809:18:0::1;;::::0;;;:11:::1;:18;::::0;;;;:25;;-1:-1:-1;;57809:25:0::1;57830:4;57809:25;::::0;;57745:95::o;45719:233::-;45794:7;45830:30;45617:10;:17;;45529:113;45830:30;45822:5;:38;45814:95;;;;-1:-1:-1;;;45814:95:0;;16696:2:1;45814:95:0;;;16678:21:1;16735:2;16715:18;;;16708:30;16774:34;16754:18;;;16747:62;-1:-1:-1;;;16825:18:1;;;16818:42;16877:19;;45814:95:0;16494:408:1;45814:95:0;45927:10;45938:5;45927:17;;;;;;;;:::i;:::-;;;;;;;;;45920:24;;45719:233;;;:::o;57279:98::-;9688:6;;-1:-1:-1;;;;;9688:6:0;8419:10;9835:23;9827:68;;;;-1:-1:-1;;;9827:68:0;;;;;;;:::i;:::-;57350:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57279:98:::0;:::o;55452:390::-;9688:6;;-1:-1:-1;;;;;9688:6:0;8419:10;9835:23;9827:68;;;;-1:-1:-1;;;9827:68:0;;;;;;;:::i;:::-;4589:1:::1;5187:7;;:19;;5179:63;;;;-1:-1:-1::0;;;5179:63:0::1;;;;;;;:::i;:::-;4589:1;5320:7;:18:::0;55549:14:::2;55566:13;45617:10:::0;:17;;45529:113;55566:13:::2;55597:6;::::0;55549:30;;-1:-1:-1;55597:6:0::2;;55596:7;55588:16;;;::::0;::::2;;55635:1;55621:11;:15;55613:24;;;::::0;::::2;;55669:13;;55654:11;:28;;55646:37;;;::::0;::::2;;55724:9;::::0;55700:20:::2;55709:11:::0;55700:6;:20:::2;:::i;:::-;:33;;55692:42;;;::::0;::::2;;55762:1;55745:90;55770:11;55765:1;:16;55745:90;;55799:26;55809:3:::0;55814:10:::2;55823:1:::0;55814:6;:10:::2;:::i;55799:26::-;55783:3:::0;::::2;::::0;::::2;:::i;:::-;;;;55745:90;;;-1:-1:-1::0;;4545:1:0::1;5499:7;:22:::0;-1:-1:-1;;55452:390:0:o;31402:239::-;31474:7;31510:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31510:16:0;31545:19;31537:73;;;;-1:-1:-1;;;31537:73:0;;13557:2:1;31537:73:0;;;13539:21:1;13596:2;13576:18;;;13569:30;13635:34;13615:18;;;13608:62;-1:-1:-1;;;13686:18:1;;;13679:39;13735:19;;31537:73:0;13355:405:1;52731:158:0;9688:6;;-1:-1:-1;;;;;9688:6:0;8419:10;9835:23;9827:68;;;;-1:-1:-1;;;9827:68:0;;;;;;;:::i;:::-;52813:15:::1;:38:::0;;-1:-1:-1;;52860:21:0;52813:38;;::::1;;::::0;;;::::1;-1:-1:-1::0;;52860:21:0;;;;;;;52731:158::o;51425:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52924:148::-;9688:6;;-1:-1:-1;;;;;9688:6:0;8419:10;9835:23;9827:68;;;;-1:-1:-1;;;9827:68:0;;;;;;;:::i;:::-;53000:12:::1;:32:::0;;-1:-1:-1;;53041:23:0;53000:32;;::::1;;::::0;;;::::1;-1:-1:-1::0;;53041:23:0;;;;;;;52924:148::o;31132:208::-;31204:7;-1:-1:-1;;;;;31232:19:0;;31224:74;;;;-1:-1:-1;;;31224:74:0;;13146:2:1;31224:74:0;;;13128:21:1;13185:2;13165:18;;;13158:30;13224:34;13204:18;;;13197:62;-1:-1:-1;;;13275:18:1;;;13268:40;13325:19;;31224:74:0;12944:406:1;31224:74:0;-1:-1:-1;;;;;;31316:16:0;;;;;:9;:16;;;;;;;31132:208::o;10266:103::-;9688:6;;-1:-1:-1;;;;;9688:6:0;8419:10;9835:23;9827:68;;;;-1:-1:-1;;;9827:68:0;;;;;;;:::i;:::-;10331:30:::1;10358:1;10331:18;:30::i;:::-;10266:103::o:0;57043:118::-;9688:6;;-1:-1:-1;;;;;9688:6:0;8419:10;9835:23;9827:68;;;;-1:-1:-1;;;9827:68:0;;;;;;;:::i;:::-;57122:13:::1;:33:::0;57043:118::o;51451:23::-;;;;;;;:::i;54008:770::-;4589:1;5187:7;;:19;;5179:63;;;;-1:-1:-1;;;5179:63:0;;;;;;;:::i;:::-;4589:1;5320:7;:18;54111:15:::1;::::0;;;::::1;;;:23;;54130:4;54111:23;54103:62;;;::::0;-1:-1:-1;;;54103:62:0;;17109:2:1;54103:62:0::1;::::0;::::1;17091:21:1::0;17148:2;17128:18;;;17121:30;17187:28;17167:18;;;17160:56;17233:18;;54103:62:0::1;16907:350:1::0;54103:62:0::1;54194:10;54182:23;::::0;;;:11:::1;:23;::::0;;;;;::::1;;:31;;:23:::0;:31:::1;54174:74;;;::::0;-1:-1:-1;;;54174:74:0;;11243:2:1;54174:74:0::1;::::0;::::1;11225:21:1::0;11282:2;11262:18;;;11255:30;11321:32;11301:18;;;11294:60;11371:18;;54174:74:0::1;11041:354:1::0;54174:74:0::1;54257:14;54274:13;45617:10:::0;:17;;45529:113;54274:13:::1;54305:6;::::0;54257:30;;-1:-1:-1;54305:6:0::1;;54304:7;54296:16;;;::::0;::::1;;54343:1;54329:11;:15;54321:24;;;::::0;::::1;;54377:13;;54362:11;:28;;54354:37;;;::::0;::::1;;54432:9;::::0;54408:20:::1;54417:11:::0;54408:6;:20:::1;:::i;:::-;:33;;54400:42;;;::::0;::::1;;9688:6:::0;;-1:-1:-1;;;;;9688:6:0;54457:10:::1;:21;54453:119;;54528:11;54514;;:25;;;;:::i;:::-;54501:9;:38;;54493:69;;;;-1:-1:-1::0;;;54493:69:0::1;;;;;;;:::i;:::-;54599:1;54582:90;54607:11;54602:1;:16;54582:90;;54636:26;54646:3:::0;54651:10:::1;54660:1:::0;54651:6;:10:::1;:::i;54636:26::-;54620:3:::0;::::1;::::0;::::1;:::i;:::-;;;;54582:90;;;-1:-1:-1::0;54700:22:0::1;::::0;54682:47:::1;::::0;-1:-1:-1;;;;;54700:22:0::1;::::0;54682:17:::1;:47::i;:::-;-1:-1:-1::0;;;;;;;54738:16:0::1;54757:5;54738:16:::0;;;:11:::1;:16;::::0;;;;:24;;-1:-1:-1;;54738:24:0::1;::::0;;;5499:7;:22;54008:770::o;31877:104::-;31933:13;31966:7;31959:14;;;;;:::i;53224:753::-;4589:1;5187:7;;:19;;5179:63;;;;-1:-1:-1;;;5179:63:0;;;;;;;:::i;:::-;4589:1;5320:7;:18;53323:13:::1;::::0;;;::::1;;;:21;;53340:4;53323:21;53315:64;;;::::0;-1:-1:-1;;;53315:64:0;;11602:2:1;53315:64:0::1;::::0;::::1;11584:21:1::0;11641:2;11621:18;;;11614:30;11680:32;11660:18;;;11653:60;11730:18;;53315:64:0::1;11400:354:1::0;53315:64:0::1;53388:14;53405:13;45617:10:::0;:17;;45529:113;53405:13:::1;53436:6;::::0;53388:30;;-1:-1:-1;53436:6:0::1;;53435:7;53427:16;;;::::0;::::1;;53474:1;53460:11;:15;53452:24;;;::::0;::::1;;53508:13;;53493:11;:28;;53485:37;;;::::0;::::1;;53563:9;::::0;53539:20:::1;53548:11:::0;53539:6;:20:::1;:::i;:::-;:33;;53531:42;;;::::0;::::1;;9688:6:::0;;-1:-1:-1;;;;;9688:6:0;53588:10:::1;:21;53584:119;;53659:11;53645;;:25;;;;:::i;:::-;53632:9;:38;;53624:69;;;;-1:-1:-1::0;;;53624:69:0::1;;;;;;;:::i;:::-;53730:1;53713:199;53738:11;53733:1;:16;53713:199;;53767:26;53777:3:::0;53782:10:::1;53791:1:::0;53782:6;:10:::1;:::i;53767:26::-;53829:10;53817:23;::::0;;;:11:::1;:23;::::0;;;;;::::1;;:31;;:23:::0;:31:::1;53814:89;;;53887:4;53862:10;:22;53873:10;53882:1:::0;53873:6;:10:::1;:::i;:::-;53862:22:::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;53862:22:0;:29;;-1:-1:-1;;53862:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53814:89:::1;53751:3:::0;::::1;::::0;::::1;:::i;:::-;;;;53713:199;;57383:145:::0;9688:6;;-1:-1:-1;;;;;9688:6:0;8419:10;9835:23;9827:68;;;;-1:-1:-1;;;9827:68:0;;;;;;;:::i;:::-;57471:22:::1;:51:::0;;-1:-1:-1;;;;;;57471:51:0::1;-1:-1:-1::0;;;;;57471:51:0;;;::::1;::::0;;;::::1;::::0;;57383:145::o;33561:155::-;33656:52;8419:10;33689:8;33699;33656:18;:52::i;34684:328::-;34859:41;8419:10;34892:7;34859:18;:41::i;:::-;34851:103;;;;-1:-1:-1;;;34851:103:0;;;;;;;:::i;:::-;34965:39;34979:4;34985:2;34989:7;34998:5;34965:13;:39::i;:::-;34684:328;;;;:::o;57167:106::-;9688:6;;-1:-1:-1;;;;;9688:6:0;8419:10;9835:23;9827:68;;;;-1:-1:-1;;;9827:68:0;;;;;;;:::i;:::-;57242:25;;::::1;::::0;:9:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;52573:120::-:0;9688:6;;-1:-1:-1;;;;;9688:6:0;8419:10;9835:23;9827:68;;;;-1:-1:-1;;;9827:68:0;;;;;;;:::i;:::-;52651:13:::1;:34:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;52651:34:0;;::::1;::::0;;;::::1;::::0;;52573:120::o;51521:37::-;;;;;;;:::i;56235:505::-;36587:4;36611:16;;;:7;:16;;;;;;56333:13;;-1:-1:-1;;;;;36611:16:0;56358:97;;;;-1:-1:-1;;;56358:97:0;;15102:2:1;56358:97:0;;;15084:21:1;15141:2;15121:18;;;15114:30;15180:34;15160:18;;;15153:62;-1:-1:-1;;;15231:18:1;;;15224:45;15286:19;;56358:97:0;14900:411:1;56358:97:0;56467:8;;;;;;;56464:271;;56501:9;56494:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56235:505;;;:::o;56464:271::-;56533:28;56564:10;:8;:10::i;:::-;56533:41;;56621:1;56596:14;56590:28;:32;:137;;;;;;;;;;;;;;;;;56660:14;56676:18;:7;:16;:18::i;:::-;56696:13;56643:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56590:137;56583:144;56235:505;-1:-1:-1;;;56235:505:0:o;56464:271::-;56235:505;;;:::o;57534:124::-;9688:6;;-1:-1:-1;;;;;9688:6:0;8419:10;9835:23;9827:68;;;;-1:-1:-1;;;9827:68:0;;;;;;;:::i;:::-;57619:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;10524:201::-:0;9688:6;;-1:-1:-1;;;;;9688:6:0;8419:10;9835:23;9827:68;;;;-1:-1:-1;;;9827:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10613:22:0;::::1;10605:73;;;::::0;-1:-1:-1;;;10605:73:0;;9314:2:1;10605:73:0::1;::::0;::::1;9296:21:1::0;9353:2;9333:18;;;9326:30;9392:34;9372:18;;;9365:62;-1:-1:-1;;;9443:18:1;;;9436:36;9489:19;;10605:73:0::1;9112:402:1::0;10605:73:0::1;10689:28;10708:8;10689:18;:28::i;:::-;10524:201:::0;:::o;12316:326::-;-1:-1:-1;;;;;12611:19:0;;:23;;;12316:326::o;30763:305::-;30865:4;-1:-1:-1;;;;;;30902:40:0;;-1:-1:-1;;;30902:40:0;;:105;;-1:-1:-1;;;;;;;30959:48:0;;-1:-1:-1;;;30959:48:0;30902:105;:158;;;-1:-1:-1;;;;;;;;;;22531:40:0;;;31024:36;22422:157;40668:174;40743:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40743:29:0;-1:-1:-1;;;;;40743:29:0;;;;;;;;:24;;40797:23;40743:24;40797:14;:23::i;:::-;-1:-1:-1;;;;;40788:46:0;;;;;;;;;;;40668:174;;:::o;36816:348::-;36909:4;36611:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36611:16:0;36926:73;;;;-1:-1:-1;;;36926:73:0;;11961:2:1;36926:73:0;;;11943:21:1;12000:2;11980:18;;;11973:30;12039:34;12019:18;;;12012:62;-1:-1:-1;;;12090:18:1;;;12083:42;12142:19;;36926:73:0;11759:408:1;36926:73:0;37010:13;37026:23;37041:7;37026:14;:23::i;:::-;37010:39;;37079:5;-1:-1:-1;;;;;37068:16:0;:7;-1:-1:-1;;;;;37068:16:0;;:52;;;-1:-1:-1;;;;;;33908:25:0;;;33884:4;33908:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37088:32;37068:87;;;;37148:7;-1:-1:-1;;;;;37124:31:0;:20;37136:7;37124:11;:20::i;:::-;-1:-1:-1;;;;;37124:31:0;;37068:87;37060:96;36816:348;-1:-1:-1;;;;36816:348:0:o;39925:625::-;40084:4;-1:-1:-1;;;;;40057:31:0;:23;40072:7;40057:14;:23::i;:::-;-1:-1:-1;;;;;40057:31:0;;40049:81;;;;-1:-1:-1;;;40049:81:0;;9721:2:1;40049:81:0;;;9703:21:1;9760:2;9740:18;;;9733:30;9799:34;9779:18;;;9772:62;-1:-1:-1;;;9850:18:1;;;9843:35;9895:19;;40049:81:0;9519:401:1;40049:81:0;-1:-1:-1;;;;;40149:16:0;;40141:65;;;;-1:-1:-1;;;40141:65:0;;10484:2:1;40141:65:0;;;10466:21:1;10523:2;10503:18;;;10496:30;10562:34;10542:18;;;10535:62;-1:-1:-1;;;10613:18:1;;;10606:34;10657:19;;40141:65:0;10282:400:1;40141:65:0;40219:39;40240:4;40246:2;40250:7;40219:20;:39::i;:::-;40323:29;40340:1;40344:7;40323:8;:29::i;:::-;-1:-1:-1;;;;;40365:15:0;;;;;;:9;:15;;;;;:20;;40384:1;;40365:15;:20;;40384:1;;40365:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40396:13:0;;;;;;:9;:13;;;;;:18;;40413:1;;40396:13;:18;;40413:1;;40396:18;:::i;:::-;;;;-1:-1:-1;;40425:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40425:21:0;-1:-1:-1;;;;;40425:21:0;;;;;;;;;40464:27;;40425:16;;40464:27;;;;;;;32861:341;32791:411;;:::o;37506:110::-;37582:26;37592:2;37596:7;37582:26;;;;;;;;;;;;:9;:26::i;10885:191::-;10978:6;;;-1:-1:-1;;;;;10995:17:0;;;-1:-1:-1;;;;;;10995:17:0;;;;;;;11028:40;;10978:6;;;10995:17;10978:6;;11028:40;;10959:16;;11028:40;10948:128;10885:191;:::o;40984:315::-;41139:8;-1:-1:-1;;;;;41130:17:0;:5;-1:-1:-1;;;;;41130:17:0;;;41122:55;;;;-1:-1:-1;;;41122:55:0;;10889:2:1;41122:55:0;;;10871:21:1;10928:2;10908:18;;;10901:30;10967:27;10947:18;;;10940:55;11012:18;;41122:55:0;10687:349:1;41122:55:0;-1:-1:-1;;;;;41188:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41188:46:0;;;;;;;;;;41250:41;;7782::1;;;41250::0;;7755:18:1;41250:41:0;;;;;;;40984:315;;;:::o;35894:::-;36051:28;36061:4;36067:2;36071:7;36051:9;:28::i;:::-;36098:48;36121:4;36127:2;36131:7;36140:5;36098:22;:48::i;:::-;36090:111;;;;-1:-1:-1;;;36090:111:0;;;;;;;:::i;52412:104::-;52472:13;52503:7;52496:14;;;;;:::i;5901:723::-;5957:13;6178:10;6174:53;;-1:-1:-1;;6205:10:0;;;;;;;;;;;;-1:-1:-1;;;6205:10:0;;;;;5901:723::o;6174:53::-;6252:5;6237:12;6293:78;6300:9;;6293:78;;6326:8;;;;:::i;:::-;;-1:-1:-1;6349:10:0;;-1:-1:-1;6357:2:0;6349:10;;:::i;:::-;;;6293:78;;;6381:19;6413:6;6403:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6403:17:0;;6381:39;;6431:154;6438:10;;6431:154;;6465:11;6475:1;6465:11;;:::i;:::-;;-1:-1:-1;6534:10:0;6542:2;6534:5;:10;:::i;:::-;6521:24;;:2;:24;:::i;:::-;6508:39;;6491:6;6498;6491:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6491:56:0;;;;;;;;-1:-1:-1;6562:11:0;6571:2;6562:11;;:::i;:::-;;;6431:154;;46565:589;-1:-1:-1;;;;;46771:18:0;;46767:187;;46806:40;46838:7;47981:10;:17;;47954:24;;;;:15;:24;;;;;:44;;;48009:24;;;;;;;;;;;;47877:164;46806:40;46767:187;;;46876:2;-1:-1:-1;;;;;46868:10:0;:4;-1:-1:-1;;;;;46868:10:0;;46864:90;;46895:47;46928:4;46934:7;46895:32;:47::i;:::-;-1:-1:-1;;;;;46968:16:0;;46964:183;;47001:45;47038:7;47001:36;:45::i;46964:183::-;47074:4;-1:-1:-1;;;;;47068:10:0;:2;-1:-1:-1;;;;;47068:10:0;;47064:83;;47095:40;47123:2;47127:7;47095:27;:40::i;37843:321::-;37973:18;37979:2;37983:7;37973:5;:18::i;:::-;38024:54;38055:1;38059:2;38063:7;38072:5;38024:22;:54::i;:::-;38002:154;;;;-1:-1:-1;;;38002:154:0;;;;;;;:::i;41864:799::-;42019:4;-1:-1:-1;;;;;42040:13:0;;12611:19;:23;42036:620;;42076:72;;-1:-1:-1;;;42076:72:0;;-1:-1:-1;;;;;42076:36:0;;;;;:72;;8419:10;;42127:4;;42133:7;;42142:5;;42076:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42076:72:0;;;;;;;;-1:-1:-1;;42076:72:0;;;;;;;;;;;;:::i;:::-;;;42072:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42318:13:0;;42314:272;;42361:60;;-1:-1:-1;;;42361:60:0;;;;;;;:::i;42314:272::-;42536:6;42530:13;42521:6;42517:2;42513:15;42506:38;42072:529;-1:-1:-1;;;;;;42199:51:0;-1:-1:-1;;;42199:51:0;;-1:-1:-1;42192:58:0;;42036:620;-1:-1:-1;42640:4:0;41864:799;;;;;;:::o;48668:988::-;48934:22;48984:1;48959:22;48976:4;48959:16;:22::i;:::-;:26;;;;:::i;:::-;48996:18;49017:26;;;:17;:26;;;;;;48934:51;;-1:-1:-1;49150:28:0;;;49146:328;;-1:-1:-1;;;;;49217:18:0;;49195:19;49217:18;;;:12;:18;;;;;;;;:34;;;;;;;;;49268:30;;;;;;:44;;;49385:30;;:17;:30;;;;;:43;;;49146:328;-1:-1:-1;49570:26:0;;;;:17;:26;;;;;;;;49563:33;;;-1:-1:-1;;;;;49614:18:0;;;;;:12;:18;;;;;:34;;;;;;;49607:41;48668:988::o;49951:1079::-;50229:10;:17;50204:22;;50229:21;;50249:1;;50229:21;:::i;:::-;50261:18;50282:24;;;:15;:24;;;;;;50655:10;:26;;50204:46;;-1:-1:-1;50282:24:0;;50204:46;;50655:26;;;;;;:::i;:::-;;;;;;;;;50633:48;;50719:11;50694:10;50705;50694:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;50799:28;;;:15;:28;;;;;;;:41;;;50971:24;;;;;50964:31;51006:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;50022:1008;;;49951:1079;:::o;47455:221::-;47540:14;47557:20;47574:2;47557:16;:20::i;:::-;-1:-1:-1;;;;;47588:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;47633:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;47455:221:0:o;38500:439::-;-1:-1:-1;;;;;38580:16:0;;38572:61;;;;-1:-1:-1;;;38572:61:0;;13967:2:1;38572:61:0;;;13949:21:1;;;13986:18;;;13979:30;14045:34;14025:18;;;14018:62;14097:18;;38572:61:0;13765:356:1;38572:61:0;36587:4;36611:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36611:16:0;:30;38644:58;;;;-1:-1:-1;;;38644:58:0;;10127:2:1;38644:58:0;;;10109:21:1;10166:2;10146:18;;;10139:30;10205;10185:18;;;10178:58;10253:18;;38644:58:0;9925:352:1;38644:58:0;38715:45;38744:1;38748:2;38752:7;38715:20;:45::i;:::-;-1:-1:-1;;;;;38773:13:0;;;;;;:9;:13;;;;;:18;;38790:1;;38773:13;:18;;38790:1;;38773:18;:::i;:::-;;;;-1:-1:-1;;38802:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38802:21:0;-1:-1:-1;;;;;38802:21:0;;;;;;;;38841:33;;38802:16;;;38841:33;;38802:16;;38841:33;57350:21:::1;57279:98:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;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;828:160;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:1527::-;4786:3;4824:6;4818:13;4850:4;4863:51;4907:6;4902:3;4897:2;4889:6;4885:15;4863:51;:::i;:::-;4977:13;;4936:16;;;;4999:55;4977:13;4936:16;5021:15;;;4999:55;:::i;:::-;5143:13;;5076:20;;;5116:1;;5203;5225:18;;;;5278;;;;5305:93;;5383:4;5373:8;5369:19;5357:31;;5305:93;5446:2;5436:8;5433:16;5413:18;5410:40;5407:167;;;-1:-1:-1;;;5473:33:1;;5529:4;5526:1;5519:15;5559:4;5480:3;5547:17;5407:167;5590:18;5617:110;;;;5741:1;5736:328;;;;5583:481;;5617:110;-1:-1:-1;;5652:24:1;;5638:39;;5697:20;;;;-1:-1:-1;5617:110:1;;5736:328;17877:1;17870:14;;;17914:4;17901:18;;5831:1;5845:169;5859:8;5856:1;5853:15;5845:169;;;5941:14;;5926:13;;;5919:37;5984:16;;;;5876:10;;5845:169;;;5849:3;;6045:8;6038:5;6034:20;6027:27;;5583:481;-1:-1:-1;6080:3:1;;4562:1527;-1:-1:-1;;;;;;;;;;;4562:1527:1:o;6512:488::-;-1:-1:-1;;;;;6781:15:1;;;6763:34;;6833:15;;6828:2;6813:18;;6806:43;6880:2;6865:18;;6858:34;;;6928:3;6923:2;6908:18;;6901:31;;;6706:4;;6949:45;;6974:19;;6966:6;6949:45;:::i;:::-;6941:53;6512:488;-1:-1:-1;;;;;;6512:488:1:o;7005:632::-;7176:2;7228:21;;;7298:13;;7201:18;;;7320:22;;;7147:4;;7176:2;7399:15;;;;7373:2;7358:18;;;7147:4;7442:169;7456:6;7453:1;7450:13;7442:169;;;7517:13;;7505:26;;7586:15;;;;7551:12;;;;7478:1;7471:9;7442:169;;;-1:-1:-1;7628:3:1;;7005:632;-1:-1:-1;;;;;;7005:632:1:o;8057:219::-;8206:2;8195:9;8188:21;8169:4;8226:44;8266:2;8255:9;8251:18;8243:6;8226:44;:::i;8693:414::-;8895:2;8877:21;;;8934:2;8914:18;;;8907:30;8973:34;8968:2;8953:18;;8946:62;-1:-1:-1;;;9039:2:1;9024:18;;9017:48;9097:3;9082:19;;8693:414::o;12172:342::-;12374:2;12356:21;;;12413:2;12393:18;;;12386:30;-1:-1:-1;;;12447:2:1;12432:18;;12425:48;12505:2;12490:18;;12172:342::o;14539:356::-;14741:2;14723:21;;;14760:18;;;14753:30;14819:34;14814:2;14799:18;;14792:62;14886:2;14871:18;;14539:356::o;16076:413::-;16278:2;16260:21;;;16317:2;16297:18;;;16290:30;16356:34;16351:2;16336:18;;16329:62;-1:-1:-1;;;16422:2:1;16407:18;;16400:47;16479:3;16464:19;;16076:413::o;17262:355::-;17464:2;17446:21;;;17503:2;17483:18;;;17476:30;17542:33;17537:2;17522:18;;17515:61;17608:2;17593:18;;17262:355::o;17930:128::-;17970:3;18001:1;17997:6;17994:1;17991:13;17988:39;;;18007:18;;:::i;:::-;-1:-1:-1;18043:9:1;;17930:128::o;18063:120::-;18103:1;18129;18119:35;;18134:18;;:::i;:::-;-1:-1:-1;18168:9:1;;18063:120::o;18188:168::-;18228:7;18294:1;18290;18286:6;18282:14;18279:1;18276:21;18271:1;18264:9;18257:17;18253:45;18250:71;;;18301:18;;:::i;:::-;-1:-1:-1;18341:9:1;;18188:168::o;18361:125::-;18401:4;18429:1;18426;18423:8;18420:34;;;18434:18;;:::i;:::-;-1:-1:-1;18471:9:1;;18361:125::o;18491:258::-;18563:1;18573:113;18587:6;18584:1;18581:13;18573:113;;;18663:11;;;18657:18;18644:11;;;18637:39;18609:2;18602:10;18573:113;;;18704:6;18701:1;18698:13;18695:48;;;-1:-1:-1;;18739:1:1;18721:16;;18714:27;18491:258::o;18754:380::-;18833:1;18829:12;;;;18876;;;18897:61;;18951:4;18943:6;18939:17;18929:27;;18897:61;19004:2;18996:6;18993:14;18973:18;18970:38;18967:161;;;19050:10;19045:3;19041:20;19038:1;19031:31;19085:4;19082:1;19075:15;19113:4;19110:1;19103:15;18967:161;;18754:380;;;:::o;19139:135::-;19178:3;-1:-1:-1;;19199:17:1;;19196:43;;;19219:18;;:::i;:::-;-1:-1:-1;19266:1:1;19255:13;;19139:135::o;19279:112::-;19311:1;19337;19327:35;;19342:18;;:::i;:::-;-1:-1:-1;19376:9:1;;19279:112::o;19396:127::-;19457:10;19452:3;19448:20;19445:1;19438:31;19488:4;19485:1;19478:15;19512:4;19509:1;19502:15;19528:127;19589:10;19584:3;19580:20;19577:1;19570:31;19620:4;19617:1;19610:15;19644:4;19641:1;19634:15;19660:127;19721:10;19716:3;19712:20;19709:1;19702:31;19752:4;19749:1;19742:15;19776:4;19773:1;19766:15;19792:127;19853:10;19848:3;19844:20;19841:1;19834:31;19884:4;19881:1;19874:15;19908:4;19905:1;19898:15;19924:127;19985:10;19980:3;19976:20;19973:1;19966:31;20016:4;20013:1;20006:15;20040:4;20037:1;20030:15;20056:131;-1:-1:-1;;;;;;20130:32:1;;20120:43;;20110:71;;20177:1;20174;20167:12
Swarm Source
ipfs://c22c896a2b69ac46b442b474debc9bff29bbe0abb9125619bb7216d54595ad66
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.