ERC-721
Overview
Max Total Supply
928 GM
Holders
167
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 GMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GamerMonkeys
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-03 */ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // 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 v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/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 v4.4.1 (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 overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = 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 || getApproved(tokenId) == spender || isApprovedForAll(owner, 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); } /** * @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); } /** * @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 of token that is not own"); 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); } /** * @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 {} } // File: contracts/GamerMonkeys.sol //SPDX-License-Identifier: MIT /* __ _________ _____ ___________ _____ ____ ____ | | __ ____ ___.__. ______ / ___\__ \ / \_/ __ \_ __ \ / \ / _ \ / \| |/ // __ < | |/ ___/ / /_/ > __ \| Y Y \ ___/| | \/ | Y Y ( <_> ) | \ <\ ___/\___ |\___ \ \___ (____ /__|_| /\___ >__| |__|_| /\____/|___| /__|_ \\___ > ____/____ > /_____/ \/ \/ \/ \/ \/ \/ \/\/ \/ */ pragma solidity ^0.8.0; contract GamerMonkeys is ERC721, Ownable { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private tokenIdCounter; string baseURI; string public baseExtension = ".json"; string public preRevealURI; uint256 public currentPrice = 0.025 ether; uint256 public totalGamerMonkeys = 5555; uint256 public maxFreeGamerMonkeys = 555; bool public paused = true; bool public revealed = false; constructor(string memory _initBaseURI, string memory _preRevealURI) ERC721("Gamer Monkeys", "GM") { setBaseURI(_initBaseURI); setPreRevealURI(_preRevealURI); } function _baseURI() internal view override returns (string memory) { return baseURI; } function freeGamerMonkey(uint256 mintAmount) public { uint256 supply = tokenIdCounter.current(); require(!paused, "Sale paused"); require(supply + mintAmount < maxFreeGamerMonkeys, "No more free Gamer Monkeys left"); mintGamerMonkeys(msg.sender, mintAmount); } function mint(uint256 mintAmount) external payable { uint256 supply = tokenIdCounter.current(); require(!paused, "Sale paused"); require(mintAmount < 21, "You can only mint 20 Gamer Monkeys"); require( supply + mintAmount < totalGamerMonkeys + 1, "Exceeds maximum Gamer Monkey supply" ); require( msg.value >= currentPrice * mintAmount, "Not enough Ether sent" ); mintGamerMonkeys(msg.sender, mintAmount); } function mintGamerMonkeys(address addr, uint256 mintAmount) private { for (uint256 i = 0; i < mintAmount; i++) { tokenIdCounter.increment(); _safeMint(addr, tokenIdCounter.current()); } } function getCurrentId() external view returns (uint256) { return tokenIdCounter.current(); } function totalSupply() public view returns (uint256) { return tokenIdCounter.current(); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return preRevealURI; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, tokenId.toString(), baseExtension ) ) : ""; } //----------------Owner functions-------------------- function pause(bool val) public onlyOwner { paused = val; } //one way change, cannot be reverted function reveal() public onlyOwner { revealed = true; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setPreRevealURI(string memory _newPreRevealURI) public onlyOwner { preRevealURI = _newPreRevealURI; } function withdraw() public onlyOwner { uint256 amount = address(this).balance; (bool success, ) = msg.sender.call{value: amount}(""); require(success, "Failed to send Ether"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_preRevealURI","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":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"freeGamerMonkey","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeGamerMonkeys","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preRevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newPreRevealURI","type":"string"}],"name":"setPreRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalGamerMonkeys","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600991906200024c565b506658d15e17628000600b556115b3600c5561022b600d55600e805461ff001960ff199091166001171690553480156200006157600080fd5b50604051620027d6380380620027d683398101604081905262000084916200039d565b604080518082018252600d81526c47616d6572204d6f6e6b65797360981b602080830191825283518085019094526002845261474d60f01b908401528151919291620000d3916000916200024c565b508051620000e99060019060208401906200024c565b50505062000106620001006200012460201b60201c565b62000128565b62000111826200017a565b6200011c81620001e2565b50506200048c565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200018462000124565b6001600160a01b0316620001976200023d565b6001600160a01b031614620001c95760405162461bcd60e51b8152600401620001c09062000404565b60405180910390fd5b8051620001de9060089060208401906200024c565b5050565b620001ec62000124565b6001600160a01b0316620001ff6200023d565b6001600160a01b031614620002285760405162461bcd60e51b8152600401620001c09062000404565b8051620001de90600a9060208401906200024c565b6006546001600160a01b031690565b8280546200025a9062000439565b90600052602060002090601f0160209004810192826200027e5760008555620002c9565b82601f106200029957805160ff1916838001178555620002c9565b82800160010185558215620002c9579182015b82811115620002c9578251825591602001919060010190620002ac565b50620002d7929150620002db565b5090565b5b80821115620002d75760008155600101620002dc565b600082601f83011262000303578081fd5b81516001600160401b038082111562000320576200032062000476565b6040516020601f8401601f191682018101838111838210171562000348576200034862000476565b60405283825285840181018710156200035f578485fd5b8492505b8383101562000382578583018101518284018201529182019162000363565b838311156200039357848185840101525b5095945050505050565b60008060408385031215620003b0578182fd5b82516001600160401b0380821115620003c7578384fd5b620003d586838701620002f2565b93506020850151915080821115620003eb578283fd5b50620003fa85828601620002f2565b9150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200044e57607f821691505b602082108114156200047057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61233a806200049c6000396000f3fe6080604052600436106101e35760003560e01c80636c14386211610102578063a0712d6811610095578063c668286211610064578063c6682862146104eb578063c87b56dd14610500578063e985e9c514610520578063f2fde38b14610540576101e3565b8063a0712d6814610483578063a22cb46514610496578063a475b5dd146104b6578063b88d4fde146104cb576101e3565b80638da5cb5b116100d15780638da5cb5b1461042457806395d89b41146104395780639b6272e91461044e5780639d1b464a1461046e576101e3565b80636c143862146102e657806370a08231146103da578063715018a6146103fa57806379b6ed361461040f576101e3565b806323b872dd1161017a5780635183022711610149578063518302271461037057806355f804b3146103855780635c975abb146103a55780636352211e146103ba576101e3565b806323b872dd146102fb5780632a85db551461031b5780633ccfd60b1461033b57806342842e0e14610350576101e3565b8063081812fc116101b6578063081812fc14610284578063095ea7b3146102b15780630a6d5495146102d157806318160ddd146102e6576101e3565b806301ffc9a7146101e8578063022c10801461021e57806302329a291461024057806306fdde0314610262575b600080fd5b3480156101f457600080fd5b50610208610203366004611902565b610560565b6040516102159190611ad9565b60405180910390f35b34801561022a57600080fd5b506102336105da565b604051610215919061219f565b34801561024c57600080fd5b5061026061025b3660046118e8565b6105e0565b005b34801561026e57600080fd5b5061027761063b565b6040516102159190611ae4565b34801561029057600080fd5b506102a461029f366004611980565b6106cd565b6040516102159190611a89565b3480156102bd57600080fd5b506102606102cc3660046118bf565b610710565b3480156102dd57600080fd5b506102336107a8565b3480156102f257600080fd5b506102336107ae565b34801561030757600080fd5b506102606103163660046117e2565b6107bf565b34801561032757600080fd5b5061026061033636600461193a565b6107f7565b34801561034757600080fd5b5061026061084d565b34801561035c57600080fd5b5061026061036b3660046117e2565b610904565b34801561037c57600080fd5b5061020861091f565b34801561039157600080fd5b506102606103a036600461193a565b61092d565b3480156103b157600080fd5b5061020861097f565b3480156103c657600080fd5b506102a46103d5366004611980565b610988565b3480156103e657600080fd5b506102336103f5366004611796565b6109bd565b34801561040657600080fd5b50610260610a01565b34801561041b57600080fd5b50610277610a4c565b34801561043057600080fd5b506102a4610ada565b34801561044557600080fd5b50610277610ae9565b34801561045a57600080fd5b50610260610469366004611980565b610af8565b34801561047a57600080fd5b50610233610b5e565b610260610491366004611980565b610b64565b3480156104a257600080fd5b506102606104b1366004611896565b610c18565b3480156104c257600080fd5b50610260610c2a565b3480156104d757600080fd5b506102606104e636600461181d565b610c7a565b3480156104f757600080fd5b50610277610cb9565b34801561050c57600080fd5b5061027761051b366004611980565b610cc6565b34801561052c57600080fd5b5061020861053b3660046117b0565b610ded565b34801561054c57600080fd5b5061026061055b366004611796565b610e1b565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806105c357506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105d257506105d282610e8c565b90505b919050565b600d5481565b6105e8610ebe565b6001600160a01b03166105f9610ada565b6001600160a01b0316146106285760405162461bcd60e51b815260040161061f90611f99565b60405180910390fd5b600e805460ff1916911515919091179055565b60606000805461064a90612242565b80601f016020809104026020016040519081016040528092919081815260200182805461067690612242565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b60006106d882610ec2565b6106f45760405162461bcd60e51b815260040161061f90611f4d565b506000908152600460205260409020546001600160a01b031690565b600061071b82610988565b9050806001600160a01b0316836001600160a01b0316141561074f5760405162461bcd60e51b815260040161061f90612088565b806001600160a01b0316610761610ebe565b6001600160a01b0316148061077d575061077d8161053b610ebe565b6107995760405162461bcd60e51b815260040161061f90611dca565b6107a38383610edf565b505050565b600c5481565b60006107ba6007610f5a565b905090565b6107d06107ca610ebe565b82610f5e565b6107ec5760405162461bcd60e51b815260040161061f90612142565b6107a3838383610fe3565b6107ff610ebe565b6001600160a01b0316610810610ada565b6001600160a01b0316146108365760405162461bcd60e51b815260040161061f90611f99565b805161084990600a906020840190611666565b5050565b610855610ebe565b6001600160a01b0316610866610ada565b6001600160a01b03161461088c5760405162461bcd60e51b815260040161061f90611f99565b6040514790600090339083906108a190611a86565b60006040518083038185875af1925050503d80600081146108de576040519150601f19603f3d011682016040523d82523d6000602084013e6108e3565b606091505b50509050806108495760405162461bcd60e51b815260040161061f90611cb3565b6107a383838360405180602001604052806000815250610c7a565b600e54610100900460ff1681565b610935610ebe565b6001600160a01b0316610946610ada565b6001600160a01b03161461096c5760405162461bcd60e51b815260040161061f90611f99565b8051610849906008906020840190611666565b600e5460ff1681565b6000818152600260205260408120546001600160a01b0316806105d25760405162461bcd60e51b815260040161061f90611e84565b60006001600160a01b0382166109e55760405162461bcd60e51b815260040161061f90611e27565b506001600160a01b031660009081526003602052604090205490565b610a09610ebe565b6001600160a01b0316610a1a610ada565b6001600160a01b031614610a405760405162461bcd60e51b815260040161061f90611f99565b610a4a600061111d565b565b600a8054610a5990612242565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8590612242565b8015610ad25780601f10610aa757610100808354040283529160200191610ad2565b820191906000526020600020905b815481529060010190602001808311610ab557829003601f168201915b505050505081565b6006546001600160a01b031690565b60606001805461064a90612242565b6000610b046007610f5a565b600e5490915060ff1615610b2a5760405162461bcd60e51b815260040161061f90611af7565b600d54610b3783836121b4565b10610b545760405162461bcd60e51b815260040161061f90611ee1565b610849338361117c565b600b5481565b6000610b706007610f5a565b600e5490915060ff1615610b965760405162461bcd60e51b815260040161061f90611af7565b60158210610bb65760405162461bcd60e51b815260040161061f90611c56565b600c54610bc49060016121b4565b610bce83836121b4565b10610beb5760405162461bcd60e51b815260040161061f906120e5565b81600b54610bf991906121e0565b341015610b545760405162461bcd60e51b815260040161061f90611b2e565b610849610c23610ebe565b83836111b6565b610c32610ebe565b6001600160a01b0316610c43610ada565b6001600160a01b031614610c695760405162461bcd60e51b815260040161061f90611f99565b600e805461ff001916610100179055565b610c8b610c85610ebe565b83610f5e565b610ca75760405162461bcd60e51b815260040161061f90612142565b610cb384848484611259565b50505050565b60098054610a5990612242565b6060610cd182610ec2565b610ced5760405162461bcd60e51b815260040161061f9061202b565b600e54610100900460ff16610d8e57600a8054610d0990612242565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3590612242565b8015610d825780601f10610d5757610100808354040283529160200191610d82565b820191906000526020600020905b815481529060010190602001808311610d6557829003601f168201915b505050505090506105d5565b6000610d9861128c565b90506000815111610db85760405180602001604052806000815250610de6565b80610dc28461129b565b6009604051602001610dd6939291906119c4565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610e23610ebe565b6001600160a01b0316610e34610ada565b6001600160a01b031614610e5a5760405162461bcd60e51b815260040161061f90611f99565b6001600160a01b038116610e805760405162461bcd60e51b815260040161061f90611bc2565b610e898161111d565b50565b6001600160e01b031981167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b3390565b6000908152600260205260409020546001600160a01b0316151590565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190610f2182610988565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b6000610f6982610ec2565b610f855760405162461bcd60e51b815260040161061f90611d7e565b6000610f9083610988565b9050806001600160a01b0316846001600160a01b03161480610fcb5750836001600160a01b0316610fc0846106cd565b6001600160a01b0316145b80610fdb5750610fdb8185610ded565b949350505050565b826001600160a01b0316610ff682610988565b6001600160a01b03161461101c5760405162461bcd60e51b815260040161061f90611fce565b6001600160a01b0382166110425760405162461bcd60e51b815260040161061f90611cea565b61104d8383836107a3565b611058600082610edf565b6001600160a01b03831660009081526003602052604081208054600192906110819084906121ff565b90915550506001600160a01b03821660009081526003602052604081208054600192906110af9084906121b4565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b818110156107a35761119160076113ea565b6111a48361119f6007610f5a565b6113f3565b806111ae8161227d565b91505061117f565b816001600160a01b0316836001600160a01b031614156111e85760405162461bcd60e51b815260040161061f90611d47565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319061124c908590611ad9565b60405180910390a3505050565b611264848484610fe3565b6112708484848461140d565b610cb35760405162461bcd60e51b815260040161061f90611b65565b60606008805461064a90612242565b6060816112dc575060408051808201909152600181527f300000000000000000000000000000000000000000000000000000000000000060208201526105d5565b8160005b811561130657806112f08161227d565b91506112ff9050600a836121cc565b91506112e0565b60008167ffffffffffffffff81111561132f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611359576020820181803683370190505b5090505b8415610fdb5761136e6001836121ff565b915061137b600a86612298565b6113869060306121b4565b60f81b8183815181106113a957634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506113e3600a866121cc565b945061135d565b80546001019055565b610849828260405180602001604052806000815250611541565b6000611421846001600160a01b0316611574565b1561153657836001600160a01b031663150b7a0261143d610ebe565b8786866040518563ffffffff1660e01b815260040161145f9493929190611a9d565b602060405180830381600087803b15801561147957600080fd5b505af19250505080156114a9575060408051601f3d908101601f191682019092526114a69181019061191e565b60015b611503573d8080156114d7576040519150601f19603f3d011682016040523d82523d6000602084013e6114dc565b606091505b5080516114fb5760405162461bcd60e51b815260040161061f90611b65565b805181602001fd5b6001600160e01b0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050610fdb565b506001949350505050565b61154b838361157a565b611558600084848461140d565b6107a35760405162461bcd60e51b815260040161061f90611b65565b3b151590565b6001600160a01b0382166115a05760405162461bcd60e51b815260040161061f90611f18565b6115a981610ec2565b156115c65760405162461bcd60e51b815260040161061f90611c1f565b6115d2600083836107a3565b6001600160a01b03821660009081526003602052604081208054600192906115fb9084906121b4565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461167290612242565b90600052602060002090601f01602090048101928261169457600085556116da565b82601f106116ad57805160ff19168380011785556116da565b828001600101855582156116da579182015b828111156116da5782518255916020019190600101906116bf565b506116e69291506116ea565b5090565b5b808211156116e657600081556001016116eb565b600067ffffffffffffffff8084111561171a5761171a6122d8565b604051601f8501601f19168101602001828111828210171561173e5761173e6122d8565b60405284815291508183850186101561175657600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105d557600080fd5b803580151581146105d557600080fd5b6000602082840312156117a7578081fd5b610de68261176f565b600080604083850312156117c2578081fd5b6117cb8361176f565b91506117d96020840161176f565b90509250929050565b6000806000606084860312156117f6578081fd5b6117ff8461176f565b925061180d6020850161176f565b9150604084013590509250925092565b60008060008060808587031215611832578081fd5b61183b8561176f565b93506118496020860161176f565b925060408501359150606085013567ffffffffffffffff81111561186b578182fd5b8501601f8101871361187b578182fd5b61188a878235602084016116ff565b91505092959194509250565b600080604083850312156118a8578182fd5b6118b18361176f565b91506117d960208401611786565b600080604083850312156118d1578182fd5b6118da8361176f565b946020939093013593505050565b6000602082840312156118f9578081fd5b610de682611786565b600060208284031215611913578081fd5b8135610de6816122ee565b60006020828403121561192f578081fd5b8151610de6816122ee565b60006020828403121561194b578081fd5b813567ffffffffffffffff811115611961578182fd5b8201601f81018413611971578182fd5b610fdb848235602084016116ff565b600060208284031215611991578081fd5b5035919050565b600081518084526119b0816020860160208601612216565b601f01601f19169290920160200192915050565b6000845160206119d78285838a01612216565b8551918401916119ea8184848a01612216565b8554920191839060028104600180831680611a0657607f831692505b858310811415611a2457634e487b7160e01b88526022600452602488fd5b808015611a385760018114611a4957611a75565b60ff19851688528388019550611a75565b611a528b6121a8565b895b85811015611a6d5781548a820152908401908801611a54565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611acf6080830184611998565b9695505050505050565b901515815260200190565b600060208252610de66020830184611998565b6020808252600b908201527f53616c6520706175736564000000000000000000000000000000000000000000604082015260600190565b60208082526015908201527f4e6f7420656e6f7567682045746865722073656e740000000000000000000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526022908201527f596f752063616e206f6e6c79206d696e742032302047616d6572204d6f6e6b6560408201527f7973000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526014908201527f4661696c656420746f2073656e64204574686572000000000000000000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560408201527f726f206164647265737300000000000000000000000000000000000000000000606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f4e6f206d6f726520667265652047616d6572204d6f6e6b657973206c65667400604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560408201527f7200000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526023908201527f45786365656473206d6178696d756d2047616d6572204d6f6e6b65792073757060408201527f706c790000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b90815260200190565b60009081526020902090565b600082198211156121c7576121c76122ac565b500190565b6000826121db576121db6122c2565b500490565b60008160001904831182151516156121fa576121fa6122ac565b500290565b600082821015612211576122116122ac565b500390565b60005b83811015612231578181015183820152602001612219565b83811115610cb35750506000910152565b60028104600182168061225657607f821691505b6020821081141561227757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612291576122916122ac565b5060010190565b6000826122a7576122a76122c2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e8957600080fdfea26469706673582212205ddcabeabf3c155cbecc79a8806f1243fde7d52c431911b3a8a7c9ea329b451e64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d59443435683276396476594d5871773566436659464b7256665a514167694e705975633241536931356471522f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d51556a533548797356677257353450704e546368677967654b6a52465a685a427a5075394534395654744e6a2f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101e35760003560e01c80636c14386211610102578063a0712d6811610095578063c668286211610064578063c6682862146104eb578063c87b56dd14610500578063e985e9c514610520578063f2fde38b14610540576101e3565b8063a0712d6814610483578063a22cb46514610496578063a475b5dd146104b6578063b88d4fde146104cb576101e3565b80638da5cb5b116100d15780638da5cb5b1461042457806395d89b41146104395780639b6272e91461044e5780639d1b464a1461046e576101e3565b80636c143862146102e657806370a08231146103da578063715018a6146103fa57806379b6ed361461040f576101e3565b806323b872dd1161017a5780635183022711610149578063518302271461037057806355f804b3146103855780635c975abb146103a55780636352211e146103ba576101e3565b806323b872dd146102fb5780632a85db551461031b5780633ccfd60b1461033b57806342842e0e14610350576101e3565b8063081812fc116101b6578063081812fc14610284578063095ea7b3146102b15780630a6d5495146102d157806318160ddd146102e6576101e3565b806301ffc9a7146101e8578063022c10801461021e57806302329a291461024057806306fdde0314610262575b600080fd5b3480156101f457600080fd5b50610208610203366004611902565b610560565b6040516102159190611ad9565b60405180910390f35b34801561022a57600080fd5b506102336105da565b604051610215919061219f565b34801561024c57600080fd5b5061026061025b3660046118e8565b6105e0565b005b34801561026e57600080fd5b5061027761063b565b6040516102159190611ae4565b34801561029057600080fd5b506102a461029f366004611980565b6106cd565b6040516102159190611a89565b3480156102bd57600080fd5b506102606102cc3660046118bf565b610710565b3480156102dd57600080fd5b506102336107a8565b3480156102f257600080fd5b506102336107ae565b34801561030757600080fd5b506102606103163660046117e2565b6107bf565b34801561032757600080fd5b5061026061033636600461193a565b6107f7565b34801561034757600080fd5b5061026061084d565b34801561035c57600080fd5b5061026061036b3660046117e2565b610904565b34801561037c57600080fd5b5061020861091f565b34801561039157600080fd5b506102606103a036600461193a565b61092d565b3480156103b157600080fd5b5061020861097f565b3480156103c657600080fd5b506102a46103d5366004611980565b610988565b3480156103e657600080fd5b506102336103f5366004611796565b6109bd565b34801561040657600080fd5b50610260610a01565b34801561041b57600080fd5b50610277610a4c565b34801561043057600080fd5b506102a4610ada565b34801561044557600080fd5b50610277610ae9565b34801561045a57600080fd5b50610260610469366004611980565b610af8565b34801561047a57600080fd5b50610233610b5e565b610260610491366004611980565b610b64565b3480156104a257600080fd5b506102606104b1366004611896565b610c18565b3480156104c257600080fd5b50610260610c2a565b3480156104d757600080fd5b506102606104e636600461181d565b610c7a565b3480156104f757600080fd5b50610277610cb9565b34801561050c57600080fd5b5061027761051b366004611980565b610cc6565b34801561052c57600080fd5b5061020861053b3660046117b0565b610ded565b34801561054c57600080fd5b5061026061055b366004611796565b610e1b565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806105c357506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105d257506105d282610e8c565b90505b919050565b600d5481565b6105e8610ebe565b6001600160a01b03166105f9610ada565b6001600160a01b0316146106285760405162461bcd60e51b815260040161061f90611f99565b60405180910390fd5b600e805460ff1916911515919091179055565b60606000805461064a90612242565b80601f016020809104026020016040519081016040528092919081815260200182805461067690612242565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b60006106d882610ec2565b6106f45760405162461bcd60e51b815260040161061f90611f4d565b506000908152600460205260409020546001600160a01b031690565b600061071b82610988565b9050806001600160a01b0316836001600160a01b0316141561074f5760405162461bcd60e51b815260040161061f90612088565b806001600160a01b0316610761610ebe565b6001600160a01b0316148061077d575061077d8161053b610ebe565b6107995760405162461bcd60e51b815260040161061f90611dca565b6107a38383610edf565b505050565b600c5481565b60006107ba6007610f5a565b905090565b6107d06107ca610ebe565b82610f5e565b6107ec5760405162461bcd60e51b815260040161061f90612142565b6107a3838383610fe3565b6107ff610ebe565b6001600160a01b0316610810610ada565b6001600160a01b0316146108365760405162461bcd60e51b815260040161061f90611f99565b805161084990600a906020840190611666565b5050565b610855610ebe565b6001600160a01b0316610866610ada565b6001600160a01b03161461088c5760405162461bcd60e51b815260040161061f90611f99565b6040514790600090339083906108a190611a86565b60006040518083038185875af1925050503d80600081146108de576040519150601f19603f3d011682016040523d82523d6000602084013e6108e3565b606091505b50509050806108495760405162461bcd60e51b815260040161061f90611cb3565b6107a383838360405180602001604052806000815250610c7a565b600e54610100900460ff1681565b610935610ebe565b6001600160a01b0316610946610ada565b6001600160a01b03161461096c5760405162461bcd60e51b815260040161061f90611f99565b8051610849906008906020840190611666565b600e5460ff1681565b6000818152600260205260408120546001600160a01b0316806105d25760405162461bcd60e51b815260040161061f90611e84565b60006001600160a01b0382166109e55760405162461bcd60e51b815260040161061f90611e27565b506001600160a01b031660009081526003602052604090205490565b610a09610ebe565b6001600160a01b0316610a1a610ada565b6001600160a01b031614610a405760405162461bcd60e51b815260040161061f90611f99565b610a4a600061111d565b565b600a8054610a5990612242565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8590612242565b8015610ad25780601f10610aa757610100808354040283529160200191610ad2565b820191906000526020600020905b815481529060010190602001808311610ab557829003601f168201915b505050505081565b6006546001600160a01b031690565b60606001805461064a90612242565b6000610b046007610f5a565b600e5490915060ff1615610b2a5760405162461bcd60e51b815260040161061f90611af7565b600d54610b3783836121b4565b10610b545760405162461bcd60e51b815260040161061f90611ee1565b610849338361117c565b600b5481565b6000610b706007610f5a565b600e5490915060ff1615610b965760405162461bcd60e51b815260040161061f90611af7565b60158210610bb65760405162461bcd60e51b815260040161061f90611c56565b600c54610bc49060016121b4565b610bce83836121b4565b10610beb5760405162461bcd60e51b815260040161061f906120e5565b81600b54610bf991906121e0565b341015610b545760405162461bcd60e51b815260040161061f90611b2e565b610849610c23610ebe565b83836111b6565b610c32610ebe565b6001600160a01b0316610c43610ada565b6001600160a01b031614610c695760405162461bcd60e51b815260040161061f90611f99565b600e805461ff001916610100179055565b610c8b610c85610ebe565b83610f5e565b610ca75760405162461bcd60e51b815260040161061f90612142565b610cb384848484611259565b50505050565b60098054610a5990612242565b6060610cd182610ec2565b610ced5760405162461bcd60e51b815260040161061f9061202b565b600e54610100900460ff16610d8e57600a8054610d0990612242565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3590612242565b8015610d825780601f10610d5757610100808354040283529160200191610d82565b820191906000526020600020905b815481529060010190602001808311610d6557829003601f168201915b505050505090506105d5565b6000610d9861128c565b90506000815111610db85760405180602001604052806000815250610de6565b80610dc28461129b565b6009604051602001610dd6939291906119c4565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610e23610ebe565b6001600160a01b0316610e34610ada565b6001600160a01b031614610e5a5760405162461bcd60e51b815260040161061f90611f99565b6001600160a01b038116610e805760405162461bcd60e51b815260040161061f90611bc2565b610e898161111d565b50565b6001600160e01b031981167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b3390565b6000908152600260205260409020546001600160a01b0316151590565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190610f2182610988565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b6000610f6982610ec2565b610f855760405162461bcd60e51b815260040161061f90611d7e565b6000610f9083610988565b9050806001600160a01b0316846001600160a01b03161480610fcb5750836001600160a01b0316610fc0846106cd565b6001600160a01b0316145b80610fdb5750610fdb8185610ded565b949350505050565b826001600160a01b0316610ff682610988565b6001600160a01b03161461101c5760405162461bcd60e51b815260040161061f90611fce565b6001600160a01b0382166110425760405162461bcd60e51b815260040161061f90611cea565b61104d8383836107a3565b611058600082610edf565b6001600160a01b03831660009081526003602052604081208054600192906110819084906121ff565b90915550506001600160a01b03821660009081526003602052604081208054600192906110af9084906121b4565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b818110156107a35761119160076113ea565b6111a48361119f6007610f5a565b6113f3565b806111ae8161227d565b91505061117f565b816001600160a01b0316836001600160a01b031614156111e85760405162461bcd60e51b815260040161061f90611d47565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319061124c908590611ad9565b60405180910390a3505050565b611264848484610fe3565b6112708484848461140d565b610cb35760405162461bcd60e51b815260040161061f90611b65565b60606008805461064a90612242565b6060816112dc575060408051808201909152600181527f300000000000000000000000000000000000000000000000000000000000000060208201526105d5565b8160005b811561130657806112f08161227d565b91506112ff9050600a836121cc565b91506112e0565b60008167ffffffffffffffff81111561132f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611359576020820181803683370190505b5090505b8415610fdb5761136e6001836121ff565b915061137b600a86612298565b6113869060306121b4565b60f81b8183815181106113a957634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506113e3600a866121cc565b945061135d565b80546001019055565b610849828260405180602001604052806000815250611541565b6000611421846001600160a01b0316611574565b1561153657836001600160a01b031663150b7a0261143d610ebe565b8786866040518563ffffffff1660e01b815260040161145f9493929190611a9d565b602060405180830381600087803b15801561147957600080fd5b505af19250505080156114a9575060408051601f3d908101601f191682019092526114a69181019061191e565b60015b611503573d8080156114d7576040519150601f19603f3d011682016040523d82523d6000602084013e6114dc565b606091505b5080516114fb5760405162461bcd60e51b815260040161061f90611b65565b805181602001fd5b6001600160e01b0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050610fdb565b506001949350505050565b61154b838361157a565b611558600084848461140d565b6107a35760405162461bcd60e51b815260040161061f90611b65565b3b151590565b6001600160a01b0382166115a05760405162461bcd60e51b815260040161061f90611f18565b6115a981610ec2565b156115c65760405162461bcd60e51b815260040161061f90611c1f565b6115d2600083836107a3565b6001600160a01b03821660009081526003602052604081208054600192906115fb9084906121b4565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461167290612242565b90600052602060002090601f01602090048101928261169457600085556116da565b82601f106116ad57805160ff19168380011785556116da565b828001600101855582156116da579182015b828111156116da5782518255916020019190600101906116bf565b506116e69291506116ea565b5090565b5b808211156116e657600081556001016116eb565b600067ffffffffffffffff8084111561171a5761171a6122d8565b604051601f8501601f19168101602001828111828210171561173e5761173e6122d8565b60405284815291508183850186101561175657600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105d557600080fd5b803580151581146105d557600080fd5b6000602082840312156117a7578081fd5b610de68261176f565b600080604083850312156117c2578081fd5b6117cb8361176f565b91506117d96020840161176f565b90509250929050565b6000806000606084860312156117f6578081fd5b6117ff8461176f565b925061180d6020850161176f565b9150604084013590509250925092565b60008060008060808587031215611832578081fd5b61183b8561176f565b93506118496020860161176f565b925060408501359150606085013567ffffffffffffffff81111561186b578182fd5b8501601f8101871361187b578182fd5b61188a878235602084016116ff565b91505092959194509250565b600080604083850312156118a8578182fd5b6118b18361176f565b91506117d960208401611786565b600080604083850312156118d1578182fd5b6118da8361176f565b946020939093013593505050565b6000602082840312156118f9578081fd5b610de682611786565b600060208284031215611913578081fd5b8135610de6816122ee565b60006020828403121561192f578081fd5b8151610de6816122ee565b60006020828403121561194b578081fd5b813567ffffffffffffffff811115611961578182fd5b8201601f81018413611971578182fd5b610fdb848235602084016116ff565b600060208284031215611991578081fd5b5035919050565b600081518084526119b0816020860160208601612216565b601f01601f19169290920160200192915050565b6000845160206119d78285838a01612216565b8551918401916119ea8184848a01612216565b8554920191839060028104600180831680611a0657607f831692505b858310811415611a2457634e487b7160e01b88526022600452602488fd5b808015611a385760018114611a4957611a75565b60ff19851688528388019550611a75565b611a528b6121a8565b895b85811015611a6d5781548a820152908401908801611a54565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611acf6080830184611998565b9695505050505050565b901515815260200190565b600060208252610de66020830184611998565b6020808252600b908201527f53616c6520706175736564000000000000000000000000000000000000000000604082015260600190565b60208082526015908201527f4e6f7420656e6f7567682045746865722073656e740000000000000000000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526022908201527f596f752063616e206f6e6c79206d696e742032302047616d6572204d6f6e6b6560408201527f7973000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526014908201527f4661696c656420746f2073656e64204574686572000000000000000000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560408201527f726f206164647265737300000000000000000000000000000000000000000000606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f4e6f206d6f726520667265652047616d6572204d6f6e6b657973206c65667400604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560408201527f7200000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526023908201527f45786365656473206d6178696d756d2047616d6572204d6f6e6b65792073757060408201527f706c790000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b90815260200190565b60009081526020902090565b600082198211156121c7576121c76122ac565b500190565b6000826121db576121db6122c2565b500490565b60008160001904831182151516156121fa576121fa6122ac565b500290565b600082821015612211576122116122ac565b500390565b60005b83811015612231578181015183820152602001612219565b83811115610cb35750506000910152565b60028104600182168061225657607f821691505b6020821081141561227757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612291576122916122ac565b5060010190565b6000826122a7576122a76122c2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e8957600080fdfea26469706673582212205ddcabeabf3c155cbecc79a8806f1243fde7d52c431911b3a8a7c9ea329b451e64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d59443435683276396476594d5871773566436659464b7256665a514167694e705975633241536931356471522f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d51556a533548797356677257353450704e546368677967654b6a52465a685a427a5075394534395654744e6a2f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmYD45h2v9dvYMXqw5fCfYFKrVfZQAgiNpYuc2ASi15dqR/
Arg [1] : _preRevealURI (string): ipfs://QmQUjS5HysVgrW54PpNTchgygeKjRFZhZBzPu9E49VTtNj/hidden.json
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d59443435683276396476594d5871773566436659464b72
Arg [4] : 56665a514167694e705975633241536931356471522f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [6] : 697066733a2f2f516d51556a533548797356677257353450704e546368677967
Arg [7] : 654b6a52465a685a427a5075394534395654744e6a2f68696464656e2e6a736f
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
38325:3585:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25207:305;;;;;;;;;;-1:-1:-1;25207:305:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38689:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41254:73::-;;;;;;;;;;-1:-1:-1;41254:73:0;;;;;:::i;:::-;;:::i;:::-;;26152:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27711:221::-;;;;;;;;;;-1:-1:-1;27711:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27234:411::-;;;;;;;;;;-1:-1:-1;27234:411:0;;;;;:::i;:::-;;:::i;38643:39::-;;;;;;;;;;;;;:::i;40345:103::-;;;;;;;;;;;;;:::i;28461:339::-;;;;;;;;;;-1:-1:-1;28461:339:0;;;;;:::i;:::-;;:::i;41566:124::-;;;;;;;;;;-1:-1:-1;41566:124:0;;;;;:::i;:::-;;:::i;41698:209::-;;;;;;;;;;;;;:::i;28871:185::-;;;;;;;;;;-1:-1:-1;28871:185:0;;;;;:::i;:::-;;:::i;38768:28::-;;;;;;;;;;;;;:::i;41454:104::-;;;;;;;;;;-1:-1:-1;41454:104:0;;;;;:::i;:::-;;:::i;38736:25::-;;;;;;;;;;;;;:::i;25846:239::-;;;;;;;;;;-1:-1:-1;25846:239:0;;;;;:::i;:::-;;:::i;25576:208::-;;;;;;;;;;-1:-1:-1;25576:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;38562:26::-;;;;;;;;;;;;;:::i;5544:87::-;;;;;;;;;;;;;:::i;26321:104::-;;;;;;;;;;;;;:::i;39130:301::-;;;;;;;;;;-1:-1:-1;39130:301:0;;;;;:::i;:::-;;:::i;38595:41::-;;;;;;;;;;;;;:::i;39439:538::-;;;;;;:::i;:::-;;:::i;28004:155::-;;;;;;;;;;-1:-1:-1;28004:155:0;;;;;:::i;:::-;;:::i;41377:69::-;;;;;;;;;;;;;:::i;29127:328::-;;;;;;;;;;-1:-1:-1;29127:328:0;;;;;:::i;:::-;;:::i;38518:37::-;;;;;;;;;;;;;:::i;40464:723::-;;;;;;;;;;-1:-1:-1;40464:723:0;;;;;:::i;:::-;;:::i;28230:164::-;;;;;;;;;;-1:-1:-1;28230:164:0;;;;;:::i;:::-;;:::i;6453:201::-;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;25207:305::-;25309:4;-1:-1:-1;;;;;;25346:40:0;;25361:25;25346:40;;:105;;-1:-1:-1;;;;;;;25403:48:0;;25418:33;25403:48;25346:105;:158;;;;25468:36;25492:11;25468:23;:36::i;:::-;25326:178;;25207:305;;;;:::o;38689:40::-;;;;:::o;41254:73::-;5775:12;:10;:12::i;:::-;-1:-1:-1;;;;;5764:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5764:23:0;;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;;;;;;;;;41307:6:::1;:12:::0;;-1:-1:-1;;41307:12:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41254:73::o;26152:100::-;26206:13;26239:5;26232:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26152:100;:::o;27711:221::-;27787:7;27815:16;27823:7;27815;:16::i;:::-;27807:73;;;;-1:-1:-1;;;27807:73:0;;;;;;;:::i;:::-;-1:-1:-1;27900:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27900:24:0;;27711:221::o;27234:411::-;27315:13;27331:23;27346:7;27331:14;:23::i;:::-;27315:39;;27379:5;-1:-1:-1;;;;;27373:11:0;:2;-1:-1:-1;;;;;27373:11:0;;;27365:57;;;;-1:-1:-1;;;27365:57:0;;;;;;;:::i;:::-;27473:5;-1:-1:-1;;;;;27457:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;27457:21:0;;:62;;;;27482:37;27499:5;27506:12;:10;:12::i;27482:37::-;27435:168;;;;-1:-1:-1;;;27435:168:0;;;;;;;:::i;:::-;27616:21;27625:2;27629:7;27616:8;:21::i;:::-;27234:411;;;:::o;38643:39::-;;;;:::o;40345:103::-;40389:7;40416:24;:14;:22;:24::i;:::-;40409:31;;40345:103;:::o;28461:339::-;28656:41;28675:12;:10;:12::i;:::-;28689:7;28656:18;:41::i;:::-;28648:103;;;;-1:-1:-1;;;28648:103:0;;;;;;;:::i;:::-;28764:28;28774:4;28780:2;28784:7;28764:9;:28::i;41566:124::-;5775:12;:10;:12::i;:::-;-1:-1:-1;;;;;5764:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5764:23:0;;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;41651:31;;::::1;::::0;:12:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41566:124:::0;:::o;41698:209::-;5775:12;:10;:12::i;:::-;-1:-1:-1;;;;;5764:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5764:23:0;;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;41814:34:::1;::::0;41763:21:::1;::::0;41746:14:::1;::::0;41814:10:::1;::::0;41763:21;;41814:34:::1;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41795:53;;;41867:7;41859:40;;;;-1:-1:-1::0;;;41859:40:0::1;;;;;;;:::i;28871:185::-:0;29009:39;29026:4;29032:2;29036:7;29009:39;;;;;;;;;;;;:16;:39::i;38768:28::-;;;;;;;;;:::o;41454:104::-;5775:12;:10;:12::i;:::-;-1:-1:-1;;;;;5764:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5764:23:0;;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;41529:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;38736:25::-:0;;;;;;:::o;25846:239::-;25918:7;25954:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25954:16:0;25989:19;25981:73;;;;-1:-1:-1;;;25981:73:0;;;;;;;:::i;25576:208::-;25648:7;-1:-1:-1;;;;;25676:19:0;;25668:74;;;;-1:-1:-1;;;25668:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;25760:16:0;;;;;:9;:16;;;;;;;25576:208::o;6195:103::-;5775:12;:10;:12::i;:::-;-1:-1:-1;;;;;5764:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5764:23:0;;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;38562:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5544:87::-;5617:6;;-1:-1:-1;;;;;5617:6:0;5544:87;:::o;26321:104::-;26377:13;26410:7;26403:14;;;;;:::i;39130:301::-;39193:14;39210:24;:14;:22;:24::i;:::-;39254:6;;39193:41;;-1:-1:-1;39254:6:0;;39253:7;39245:31;;;;-1:-1:-1;;;39245:31:0;;;;;;;:::i;:::-;39317:19;;39295;39304:10;39295:6;:19;:::i;:::-;:41;39287:85;;;;-1:-1:-1;;;39287:85:0;;;;;;;:::i;:::-;39383:40;39400:10;39412;39383:16;:40::i;38595:41::-;;;;:::o;39439:538::-;39501:14;39518:24;:14;:22;:24::i;:::-;39562:6;;39501:41;;-1:-1:-1;39562:6:0;;39561:7;39553:31;;;;-1:-1:-1;;;39553:31:0;;;;;;;:::i;:::-;39616:2;39603:10;:15;39595:62;;;;-1:-1:-1;;;39595:62:0;;;;;;;:::i;:::-;39712:17;;:21;;39732:1;39712:21;:::i;:::-;39690:19;39699:10;39690:6;:19;:::i;:::-;:43;39668:128;;;;-1:-1:-1;;;39668:128:0;;;;;;;:::i;:::-;39857:10;39842:12;;:25;;;;:::i;:::-;39829:9;:38;;39807:109;;;;-1:-1:-1;;;39807:109:0;;;;;;;:::i;28004:155::-;28099:52;28118:12;:10;:12::i;:::-;28132:8;28142;28099:18;:52::i;41377:69::-;5775:12;:10;:12::i;:::-;-1:-1:-1;;;;;5764:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5764:23:0;;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;41423:8:::1;:15:::0;;-1:-1:-1;;41423:15:0::1;;;::::0;;41377:69::o;29127:328::-;29302:41;29321:12;:10;:12::i;:::-;29335:7;29302:18;:41::i;:::-;29294:103;;;;-1:-1:-1;;;29294:103:0;;;;;;;:::i;:::-;29408:39;29422:4;29428:2;29432:7;29441:5;29408:13;:39::i;:::-;29127:328;;;;:::o;38518:37::-;;;;;;;:::i;40464:723::-;40582:13;40635:16;40643:7;40635;:16::i;:::-;40613:113;;;;-1:-1:-1;;;40613:113:0;;;;;;;:::i;:::-;40743:8;;;;;;;40739:69;;40784:12;40777:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40739:69;40820:28;40851:10;:8;:10::i;:::-;40820:41;;40923:1;40898:14;40892:28;:32;:287;;;;;;;;;;;;;;;;;41016:14;41057:18;:7;:16;:18::i;:::-;41102:13;40973:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40892:287;40872:307;40464:723;-1:-1:-1;;;40464:723:0:o;28230:164::-;-1:-1:-1;;;;;28351:25:0;;;28327:4;28351:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28230:164::o;6453:201::-;5775:12;:10;:12::i;:::-;-1:-1:-1;;;;;5764:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5764:23:0;;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;;-1:-1:-1::0;;;6534:73:0::1;;;;;;;:::i;:::-;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;17976:157::-;-1:-1:-1;;;;;;18085:40:0;;18100:25;18085:40;17976:157;;;:::o;4268:98::-;4348:10;4268:98;:::o;30965:127::-;31030:4;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;:30;;;30965:127::o;34947:174::-;35022:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;35022:29:0;-1:-1:-1;;;;;35022:29:0;;;;;;;;:24;;35076:23;35022:24;35076:14;:23::i;:::-;-1:-1:-1;;;;;35067:46:0;;;;;;;;;;;34947:174;;:::o;872:114::-;964:14;;872:114::o;31259:348::-;31352:4;31377:16;31385:7;31377;:16::i;:::-;31369:73;;;;-1:-1:-1;;;31369:73:0;;;;;;;:::i;:::-;31453:13;31469:23;31484:7;31469:14;:23::i;:::-;31453:39;;31522:5;-1:-1:-1;;;;;31511:16:0;:7;-1:-1:-1;;;;;31511:16:0;;:51;;;;31555:7;-1:-1:-1;;;;;31531:31:0;:20;31543:7;31531:11;:20::i;:::-;-1:-1:-1;;;;;31531:31:0;;31511:51;:87;;;;31566:32;31583:5;31590:7;31566:16;:32::i;:::-;31503:96;31259:348;-1:-1:-1;;;;31259:348:0:o;34251:578::-;34410:4;-1:-1:-1;;;;;34383:31:0;:23;34398:7;34383:14;:23::i;:::-;-1:-1:-1;;;;;34383:31:0;;34375:85;;;;-1:-1:-1;;;34375:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34479:16:0;;34471:65;;;;-1:-1:-1;;;34471:65:0;;;;;;;:::i;:::-;34549:39;34570:4;34576:2;34580:7;34549:20;:39::i;:::-;34653:29;34670:1;34674:7;34653:8;:29::i;:::-;-1:-1:-1;;;;;34695:15:0;;;;;;:9;:15;;;;;:20;;34714:1;;34695:15;:20;;34714:1;;34695:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34726:13:0;;;;;;:9;:13;;;;;:18;;34743:1;;34726:13;:18;;34743:1;;34726:18;:::i;:::-;;;;-1:-1:-1;;34755:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;34755:21:0;-1:-1:-1;;;;;34755:21:0;;;;;;;;;34794:27;;34755:16;;34794:27;;;;;;;34251:578;;;:::o;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6814:191;;:::o;39985:236::-;40069:9;40064:150;40088:10;40084:1;:14;40064:150;;;40120:26;:14;:24;:26::i;:::-;40161:41;40171:4;40177:24;:14;:22;:24::i;:::-;40161:9;:41::i;:::-;40100:3;;;;:::i;:::-;;;;40064:150;;35263:315;35418:8;-1:-1:-1;;;;;35409:17:0;:5;-1:-1:-1;;;;;35409:17:0;;;35401:55;;;;-1:-1:-1;;;35401:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35467:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;35467:46:0;;;;;;;35529:41;;;;;35467:46;;35529:41;:::i;:::-;;;;;;;;35263:315;;;:::o;30337:::-;30494:28;30504:4;30510:2;30514:7;30494:9;:28::i;:::-;30541:48;30564:4;30570:2;30574:7;30583:5;30541:22;:48::i;:::-;30533:111;;;;-1:-1:-1;;;30533:111:0;;;;;;;:::i;39020:100::-;39072:13;39105:7;39098:14;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;2134:10:0;;;;;;;;;;;;;;;;;;;2103:53;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;-1:-1:-1;;;2332:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;-1:-1:-1;;;2420:14:0;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;994:127;1083:19;;1101:1;1083:19;;;994:127::o;31949:110::-;32025:26;32035:2;32039:7;32025:26;;;;;;;;;;;;:9;:26::i;36143:799::-;36298:4;36319:15;:2;-1:-1:-1;;;;;36319:13:0;;:15::i;:::-;36315:620;;;36371:2;-1:-1:-1;;;;;36355:36:0;;36392:12;:10;:12::i;:::-;36406:4;36412:7;36421:5;36355:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36355:72:0;;;;;;;;-1:-1:-1;;36355:72:0;;;;;;;;;;;;:::i;:::-;;;36351:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36597:13:0;;36593:272;;36640:60;;-1:-1:-1;;;36640:60:0;;;;;;;:::i;36593:272::-;36815:6;36809:13;36800:6;36796:2;36792:15;36785:38;36351:529;-1:-1:-1;;;;;;36478:51:0;36488:41;36478:51;;-1:-1:-1;36471:58:0;;36315:620;-1:-1:-1;36919:4:0;36143:799;;;;;;:::o;32286:321::-;32416:18;32422:2;32426:7;32416:5;:18::i;:::-;32467:54;32498:1;32502:2;32506:7;32515:5;32467:22;:54::i;:::-;32445:154;;;;-1:-1:-1;;;32445:154:0;;;;;;;:::i;7832:387::-;8155:20;8203:8;;;7832:387::o;32943:382::-;-1:-1:-1;;;;;33023:16:0;;33015:61;;;;-1:-1:-1;;;33015:61:0;;;;;;;:::i;:::-;33096:16;33104:7;33096;:16::i;:::-;33095:17;33087:58;;;;-1:-1:-1;;;33087:58:0;;;;;;;:::i;:::-;33158:45;33187:1;33191:2;33195:7;33158:20;:45::i;:::-;-1:-1:-1;;;;;33216:13:0;;;;;;:9;:13;;;;;:18;;33233:1;;33216:13;:18;;33233:1;;33216:18;:::i;:::-;;;;-1:-1:-1;;33245:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;33245:21:0;-1:-1:-1;;;;;33245:21:0;;;;;;;;33284:33;;33245:16;;;33284:33;;33245:16;;33284:33;32943:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:198::-;696:20;;-1:-1:-1;;;;;745:54:1;;735:65;;725:2;;814:1;811;804:12;829:162;896:20;;952:13;;945:21;935:32;;925:2;;981:1;978;971:12;996:198;;1108:2;1096:9;1087:7;1083:23;1079:32;1076:2;;;1129:6;1121;1114:22;1076:2;1157:31;1178:9;1157:31;:::i;1199:274::-;;;1328:2;1316:9;1307:7;1303:23;1299:32;1296:2;;;1349:6;1341;1334:22;1296:2;1377:31;1398:9;1377:31;:::i;:::-;1367:41;;1427:40;1463:2;1452:9;1448:18;1427:40;:::i;:::-;1417:50;;1286:187;;;;;:::o;1478:342::-;;;;1624:2;1612:9;1603:7;1599:23;1595:32;1592:2;;;1645:6;1637;1630:22;1592:2;1673:31;1694:9;1673:31;:::i;:::-;1663:41;;1723:40;1759:2;1748:9;1744:18;1723:40;:::i;:::-;1713:50;;1810:2;1799:9;1795:18;1782:32;1772:42;;1582:238;;;;;:::o;1825:702::-;;;;;1997:3;1985:9;1976:7;1972:23;1968:33;1965:2;;;2019:6;2011;2004:22;1965:2;2047:31;2068:9;2047:31;:::i;:::-;2037:41;;2097:40;2133:2;2122:9;2118:18;2097:40;:::i;:::-;2087:50;;2184:2;2173:9;2169:18;2156:32;2146:42;;2239:2;2228:9;2224:18;2211:32;2266:18;2258:6;2255:30;2252:2;;;2303:6;2295;2288:22;2252:2;2331:22;;2384:4;2376:13;;2372:27;-1:-1:-1;2362:2:1;;2418:6;2410;2403:22;2362:2;2446:75;2513:7;2508:2;2495:16;2490:2;2486;2482:11;2446:75;:::i;:::-;2436:85;;;1955:572;;;;;;;:::o;2532:268::-;;;2658:2;2646:9;2637:7;2633:23;2629:32;2626:2;;;2679:6;2671;2664:22;2626:2;2707:31;2728:9;2707:31;:::i;:::-;2697:41;;2757:37;2790:2;2779:9;2775:18;2757:37;:::i;2805:266::-;;;2934:2;2922:9;2913:7;2909:23;2905:32;2902:2;;;2955:6;2947;2940:22;2902:2;2983:31;3004:9;2983:31;:::i;:::-;2973:41;3061:2;3046:18;;;;3033:32;;-1:-1:-1;;;2892:179:1:o;3076:192::-;;3185:2;3173:9;3164:7;3160:23;3156:32;3153:2;;;3206:6;3198;3191:22;3153:2;3234:28;3252:9;3234:28;:::i;3273:257::-;;3384:2;3372:9;3363:7;3359:23;3355:32;3352:2;;;3405:6;3397;3390:22;3352:2;3449:9;3436:23;3468:32;3494:5;3468:32;:::i;3535:261::-;;3657:2;3645:9;3636:7;3632:23;3628:32;3625:2;;;3678:6;3670;3663:22;3625:2;3715:9;3709:16;3734:32;3760:5;3734:32;:::i;3801:482::-;;3923:2;3911:9;3902:7;3898:23;3894:32;3891:2;;;3944:6;3936;3929:22;3891:2;3989:9;3976:23;4022:18;4014:6;4011:30;4008:2;;;4059:6;4051;4044:22;4008:2;4087:22;;4140:4;4132:13;;4128:27;-1:-1:-1;4118:2:1;;4174:6;4166;4159:22;4118:2;4202:75;4269:7;4264:2;4251:16;4246:2;4242;4238:11;4202:75;:::i;4288:190::-;;4400:2;4388:9;4379:7;4375:23;4371:32;4368:2;;;4421:6;4413;4406:22;4368:2;-1:-1:-1;4449:23:1;;4358:120;-1:-1:-1;4358:120:1:o;4483:259::-;;4564:5;4558:12;4591:6;4586:3;4579:19;4607:63;4663:6;4656:4;4651:3;4647:14;4640:4;4633:5;4629:16;4607:63;:::i;:::-;4724:2;4703:15;-1:-1:-1;;4699:29:1;4690:39;;;;4731:4;4686:50;;4534:208;-1:-1:-1;;4534:208:1:o;4747:1589::-;;5009:6;5003:13;5035:4;5048:51;5092:6;5087:3;5082:2;5074:6;5070:15;5048:51;:::i;:::-;5162:13;;5121:16;;;;5184:55;5162:13;5121:16;5206:15;;;5184:55;:::i;:::-;5330:13;;5261:20;;;5301:3;;5407:1;5392:17;;5428:1;5464:18;;;;5491:2;;5569:4;5559:8;5555:19;5543:31;;5491:2;5632;5622:8;5619:16;5599:18;5596:40;5593:2;;;-1:-1:-1;;;5666:3:1;5659:90;5772:4;5769:1;5762:15;5802:4;5797:3;5790:17;5593:2;5833:18;5860:110;;;;5984:1;5979:332;;;;5826:485;;5860:110;-1:-1:-1;;5895:24:1;;5881:39;;5940:20;;;;-1:-1:-1;5860:110:1;;5979:332;6015:39;6047:6;6015:39;:::i;:::-;6076:3;6092:169;6106:8;6103:1;6100:15;6092:169;;;6188:14;;6173:13;;;6166:37;6231:16;;;;6123:10;;6092:169;;;6096:3;;6292:8;6285:5;6281:20;6274:27;;5826:485;-1:-1:-1;6327:3:1;;4979:1357;-1:-1:-1;;;;;;;;;;;4979:1357:1:o;6341:205::-;6541:3;6532:14::o;6551:226::-;-1:-1:-1;;;;;6715:55:1;;;;6697:74;;6685:2;6670:18;;6652:125::o;6782:513::-;;-1:-1:-1;;;;;7086:2:1;7078:6;7074:15;7063:9;7056:34;7138:2;7130:6;7126:15;7121:2;7110:9;7106:18;7099:43;;7178:6;7173:2;7162:9;7158:18;7151:34;7221:3;7216:2;7205:9;7201:18;7194:31;7242:47;7284:3;7273:9;7269:19;7261:6;7242:47;:::i;:::-;7234:55;6985:310;-1:-1:-1;;;;;;6985:310:1:o;7300:187::-;7465:14;;7458:22;7440:41;;7428:2;7413:18;;7395:92::o;7492:221::-;;7641:2;7630:9;7623:21;7661:46;7703:2;7692:9;7688:18;7680:6;7661:46;:::i;7718:335::-;7920:2;7902:21;;;7959:2;7939:18;;;7932:30;7998:13;7993:2;7978:18;;7971:41;8044:2;8029:18;;7892:161::o;8058:345::-;8260:2;8242:21;;;8299:2;8279:18;;;8272:30;8338:23;8333:2;8318:18;;8311:51;8394:2;8379:18;;8232:171::o;8408:414::-;8610:2;8592:21;;;8649:2;8629:18;;;8622:30;8688:34;8683:2;8668:18;;8661:62;8759:20;8754:2;8739:18;;8732:48;8812:3;8797:19;;8582:240::o;8827:402::-;9029:2;9011:21;;;9068:2;9048:18;;;9041:30;9107:34;9102:2;9087:18;;9080:62;9178:8;9173:2;9158:18;;9151:36;9219:3;9204:19;;9001:228::o;9234:352::-;9436:2;9418:21;;;9475:2;9455:18;;;9448:30;9514;9509:2;9494:18;;9487:58;9577:2;9562:18;;9408:178::o;9591:398::-;9793:2;9775:21;;;9832:2;9812:18;;;9805:30;9871:34;9866:2;9851:18;;9844:62;9942:4;9937:2;9922:18;;9915:32;9979:3;9964:19;;9765:224::o;9994:344::-;10196:2;10178:21;;;10235:2;10215:18;;;10208:30;10274:22;10269:2;10254:18;;10247:50;10329:2;10314:18;;10168:170::o;10343:400::-;10545:2;10527:21;;;10584:2;10564:18;;;10557:30;10623:34;10618:2;10603:18;;10596:62;10694:6;10689:2;10674:18;;10667:34;10733:3;10718:19;;10517:226::o;10748:349::-;10950:2;10932:21;;;10989:2;10969:18;;;10962:30;11028:27;11023:2;11008:18;;11001:55;11088:2;11073:18;;10922:175::o;11102:408::-;11304:2;11286:21;;;11343:2;11323:18;;;11316:30;11382:34;11377:2;11362:18;;11355:62;-1:-1:-1;;;11448:2:1;11433:18;;11426:42;11500:3;11485:19;;11276:234::o;11515:420::-;11717:2;11699:21;;;11756:2;11736:18;;;11729:30;11795:34;11790:2;11775:18;;11768:62;11866:26;11861:2;11846:18;;11839:54;11925:3;11910:19;;11689:246::o;11940:406::-;12142:2;12124:21;;;12181:2;12161:18;;;12154:30;12220:34;12215:2;12200:18;;12193:62;12291:12;12286:2;12271:18;;12264:40;12336:3;12321:19;;12114:232::o;12351:405::-;12553:2;12535:21;;;12592:2;12572:18;;;12565:30;12631:34;12626:2;12611:18;;12604:62;12702:11;12697:2;12682:18;;12675:39;12746:3;12731:19;;12525:231::o;12761:355::-;12963:2;12945:21;;;13002:2;12982:18;;;12975:30;13041:33;13036:2;13021:18;;13014:61;13107:2;13092:18;;12935:181::o;13121:356::-;13323:2;13305:21;;;13342:18;;;13335:30;13401:34;13396:2;13381:18;;13374:62;13468:2;13453:18;;13295:182::o;13482:408::-;13684:2;13666:21;;;13723:2;13703:18;;;13696:30;13762:34;13757:2;13742:18;;13735:62;-1:-1:-1;;;13828:2:1;13813:18;;13806:42;13880:3;13865:19;;13656:234::o;13895:356::-;14097:2;14079:21;;;14116:18;;;14109:30;14175:34;14170:2;14155:18;;14148:62;14242:2;14227:18;;14069:182::o;14256:405::-;14458:2;14440:21;;;14497:2;14477:18;;;14470:30;14536:34;14531:2;14516:18;;14509:62;14607:11;14602:2;14587:18;;14580:39;14651:3;14636:19;;14430:231::o;14666:411::-;14868:2;14850:21;;;14907:2;14887:18;;;14880:30;14946:34;14941:2;14926:18;;14919:62;15017:17;15012:2;14997:18;;14990:45;15067:3;15052:19;;14840:237::o;15082:397::-;15284:2;15266:21;;;15323:2;15303:18;;;15296:30;15362:34;15357:2;15342:18;;15335:62;15433:3;15428:2;15413:18;;15406:31;15469:3;15454:19;;15256:223::o;15484:399::-;15686:2;15668:21;;;15725:2;15705:18;;;15698:30;15764:34;15759:2;15744:18;;15737:62;15835:5;15830:2;15815:18;;15808:33;15873:3;15858:19;;15658:225::o;15888:413::-;16090:2;16072:21;;;16129:2;16109:18;;;16102:30;16168:34;16163:2;16148:18;;16141:62;16239:19;16234:2;16219:18;;16212:47;16291:3;16276:19;;16062:239::o;16306:177::-;16452:25;;;16440:2;16425:18;;16407:76::o;16488:129::-;;16556:17;;;16606:4;16590:21;;;16546:71::o;16622:128::-;;16693:1;16689:6;16686:1;16683:13;16680:2;;;16699:18;;:::i;:::-;-1:-1:-1;16735:9:1;;16670:80::o;16755:120::-;;16821:1;16811:2;;16826:18;;:::i;:::-;-1:-1:-1;16860:9:1;;16801:74::o;16880:168::-;;16986:1;16982;16978:6;16974:14;16971:1;16968:21;16963:1;16956:9;16949:17;16945:45;16942:2;;;16993:18;;:::i;:::-;-1:-1:-1;17033:9:1;;16932:116::o;17053:125::-;;17121:1;17118;17115:8;17112:2;;;17126:18;;:::i;:::-;-1:-1:-1;17163:9:1;;17102:76::o;17183:258::-;17255:1;17265:113;17279:6;17276:1;17273:13;17265:113;;;17355:11;;;17349:18;17336:11;;;17329:39;17301:2;17294:10;17265:113;;;17396:6;17393:1;17390:13;17387:2;;;-1:-1:-1;;17431:1:1;17413:16;;17406:27;17236:205::o;17446:437::-;17531:1;17521:12;;17578:1;17568:12;;;17589:2;;17643:4;17635:6;17631:17;17621:27;;17589:2;17696;17688:6;17685:14;17665:18;17662:38;17659:2;;;-1:-1:-1;;;17730:1:1;17723:88;17834:4;17831:1;17824:15;17862:4;17859:1;17852:15;17659:2;;17501:382;;;:::o;17888:135::-;;-1:-1:-1;;17948:17:1;;17945:2;;;17968:18;;:::i;:::-;-1:-1:-1;18015:1:1;18004:13;;17935:88::o;18028:112::-;;18086:1;18076:2;;18091:18;;:::i;:::-;-1:-1:-1;18125:9:1;;18066:74::o;18145:184::-;-1:-1:-1;;;18194:1:1;18187:88;18294:4;18291:1;18284:15;18318:4;18315:1;18308:15;18334:184;-1:-1:-1;;;18383:1:1;18376:88;18483:4;18480:1;18473:15;18507:4;18504:1;18497:15;18523:184;-1:-1:-1;;;18572:1:1;18565:88;18672:4;18669:1;18662:15;18696:4;18693:1;18686:15;18712:179;-1:-1:-1;;;;;;18792:5:1;18788:78;18781:5;18778:89;18768:2;;18881:1;18878;18871:12
Swarm Source
ipfs://5ddcabeabf3c155cbecc79a8806f1243fde7d52c431911b3a8a7c9ea329b451e
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.