Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
3,008 HIR
Holders
459
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
12 HIRLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Hiros
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-16 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // 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; } } // 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); } } // 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); } } // 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); } // 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; } } // 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // 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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // 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); } // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract Hiros is ERC721A, Ownable { using Strings for uint256; uint256 public constant PRICE = 0.0 ether; uint16 public constant MAX_SUPPLY = 3008; uint16 public constant MAX_SUPPLY_MINT = 2807; uint8 public constant MAX_MINT_AMOUNT = 10; string private _base_uri = ""; string private _hidden_base_uri = ""; bool public _paused = false; constructor(string memory hidden_base_uri) ERC721A("Hiros", "HIR") { setHiddenBaseURI(hidden_base_uri); mint(8); // Gods setPaused(true); } function mint(uint16 count) public payable { require(!_paused, "The contract is paused!"); require(count > 0, "Amount must be larger than 0!"); require(MAX_SUPPLY >= totalSupply() + count, "Total supply reached!"); if (msg.sender != owner()) { require(MAX_SUPPLY_MINT >= totalSupply() + count, "Total public supply reached!"); require(count <= MAX_MINT_AMOUNT, "Amount needs to be at most MAX_MINT_AMOUNT!"); require(balanceOf(msg.sender) < MAX_MINT_AMOUNT, "Every minter is allowed to mint at most MAX_MINT_AMOUNT!"); } _safeMint(msg.sender, count); } function mintOwnerOnly(address to, uint16 count) public payable onlyOwner { require(count > 0, "Amount must be larger than 0!"); require(MAX_SUPPLY >= totalSupply() + count, "Total supply reached!"); _safeMint(to, count); } function setHiddenBaseURI(string memory hidden_base_uri) public onlyOwner { _hidden_base_uri = hidden_base_uri; } function setBaseURI(string memory base_uri) public onlyOwner { _base_uri = base_uri; } function _HiddenBaseURI() internal view returns(string memory) { return _hidden_base_uri; } function _baseURI() internal view virtual override returns (string memory) { return _base_uri; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if (keccak256(abi.encodePacked(_base_uri)) == keccak256(abi.encodePacked(""))) { return _hidden_base_uri; } string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ""; } function setPaused(bool paused) public onlyOwner { _paused = paused; } // We don't really need this, because of free mint function withdraw() public onlyOwner { (bool success, ) = payable(owner()).call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"hidden_base_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_AMOUNT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY_MINT","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"count","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint16","name":"count","type":"uint16"}],"name":"mintOwnerOnly","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"base_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"hidden_base_uri","type":"string"}],"name":"setHiddenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"setPaused","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":"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
60a06040819052600060808190526200001b9160099162000829565b506040805160208101918290526000908190526200003c91600a9162000829565b50600b805460ff191690553480156200005457600080fd5b506040516200299638038062002996833981016040819052620000779162000914565b60408051808201825260058152644869726f7360d81b6020808301918252835180850190945260038452622424a960e91b908401528151919291620000bf9160029162000829565b508051620000d590600390602084019062000829565b50506000805550620000e73362000111565b620000f28162000163565b620000fe6008620001cb565b6200010a60016200046d565b5062000ab9565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001b25760405162461bcd60e51b815260206004820181905260248201526000805160206200295683398151915260448201526064015b60405180910390fd5b8051620001c790600a90602084019062000829565b5050565b600b5460ff1615620002205760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401620001a9565b60008161ffff1611620002765760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d757374206265206c6172676572207468616e2030210000006044820152606401620001a9565b61ffff8116620002896001546000540390565b620002959190620009cc565b610bc01015620002e85760405162461bcd60e51b815260206004820152601560248201527f546f74616c20737570706c7920726561636865642100000000000000000000006044820152606401620001a9565b6008546001600160a01b031633146200045a5761ffff81166200030e6001546000540390565b6200031a9190620009cc565b610af710156200036d5760405162461bcd60e51b815260206004820152601c60248201527f546f74616c207075626c696320737570706c79207265616368656421000000006044820152606401620001a9565b600a61ffff82161115620003d85760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206e6565647320746f206265206174206d6f7374204d41585f4d60448201526a494e545f414d4f554e542160a81b6064820152608401620001a9565b600a620003e533620004cb565b106200045a5760405162461bcd60e51b815260206004820152603860248201527f4576657279206d696e74657220697320616c6c6f77656420746f206d696e742060448201527f6174206d6f7374204d41585f4d494e545f414d4f554e542100000000000000006064820152608401620001a9565b6200046a3361ffff83166200051a565b50565b6008546001600160a01b03163314620004b85760405162461bcd60e51b81526020600482018190526024820152600080516020620029568339815191526044820152606401620001a9565b600b805460ff1916911515919091179055565b60006001600160a01b038216620004f5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b620001c78282604051806020016040528060008152506200053c60201b60201c565b6200054b838383600162000550565b505050565b6000546001600160a01b0385166200057a57604051622e076360e81b815260040160405180910390fd5b83620005995760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801562000652575062000652876001600160a01b03166200071960201b62000ff51760201c565b15620006d2575b60405182906001600160a01b0389169060009060008051602062002976833981519152908290a46001820191620006969060009089908862000728565b620006b4576040516368d2bf6b60e11b815260040160405180910390fd5b8082141562000659578260005414620006cc57600080fd5b62000708565b5b6040516001830192906001600160a01b0389169060009060008051602062002976833981519152908290a480821415620006d3575b506000555050505050565b50505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200075f903390899088908890600401620009f3565b602060405180830381600087803b1580156200077a57600080fd5b505af1925050508015620007ad575060408051601f3d908101601f19168201909252620007aa9181019062000a49565b60015b6200080c573d808015620007de576040519150601f19603f3d011682016040523d82523d6000602084013e620007e3565b606091505b50805162000804576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054620008379062000a7c565b90600052602060002090601f0160209004810192826200085b5760008555620008a6565b82601f106200087657805160ff1916838001178555620008a6565b82800160010185558215620008a6579182015b82811115620008a657825182559160200191906001019062000889565b50620008b4929150620008b8565b5090565b5b80821115620008b45760008155600101620008b9565b634e487b7160e01b600052604160045260246000fd5b60005b8381101562000902578181015183820152602001620008e8565b83811115620007135750506000910152565b6000602082840312156200092757600080fd5b81516001600160401b03808211156200093f57600080fd5b818401915084601f8301126200095457600080fd5b815181811115620009695762000969620008cf565b604051601f8201601f19908116603f01168101908382118183101715620009945762000994620008cf565b81604052828152876020848701011115620009ae57600080fd5b620009c1836020830160208801620008e5565b979650505050505050565b60008219821115620009ee57634e487b7160e01b600052601160045260246000fd5b500190565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000a328160a0850160208701620008e5565b601f01601f19169190910160a00195945050505050565b60006020828403121562000a5c57600080fd5b81516001600160e01b03198116811462000a7557600080fd5b9392505050565b600181811c9082168062000a9157607f821691505b6020821081141562000ab357634e487b7160e01b600052602260045260246000fd5b50919050565b611e8d8062000ac96000396000f3fe6080604052600436106101b75760003560e01c80636352211e116100ec578063ae4972201161008a578063e03d4de511610064578063e03d4de5146104ab578063e985e9c5146104c1578063f2fde38b1461050a578063fa9b70181461052a57600080fd5b8063ae49722014610458578063b88d4fde1461046b578063c87b56dd1461048b57600080fd5b80638d859f3e116100c65780638d859f3e146103f05780638da5cb5b1461040557806395d89b4114610423578063a22cb4651461043857600080fd5b80636352211e1461039b57806370a08231146103bb578063715018a6146103db57600080fd5b806320ac68501161015957806332cb6b0c1161013357806332cb6b0c1461031d5780633ccfd60b1461034657806342842e0e1461035b57806355f804b31461037b57600080fd5b806320ac6850146102ca57806323b872dd146102ea57806323cf0a221461030a57600080fd5b8063095ea7b311610195578063095ea7b31461024b57806316c38b3c1461026d57806316c61ccc1461028d57806318160ddd146102a757600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611890565b610551565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105a3565b6040516101e89190611905565b34801561021f57600080fd5b5061023361022e366004611918565b610635565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b61026636600461194d565b610679565b005b34801561027957600080fd5b5061026b610288366004611987565b610707565b34801561029957600080fd5b50600b546101dc9060ff1681565b3480156102b357600080fd5b50600154600054035b6040519081526020016101e8565b3480156102d657600080fd5b5061026b6102e5366004611a2e565b61074d565b3480156102f657600080fd5b5061026b610305366004611a77565b61078e565b61026b610318366004611ac5565b610799565b34801561032957600080fd5b50610333610bc081565b60405161ffff90911681526020016101e8565b34801561035257600080fd5b5061026b610a1c565b34801561036757600080fd5b5061026b610376366004611a77565b610aed565b34801561038757600080fd5b5061026b610396366004611a2e565b610b08565b3480156103a757600080fd5b506102336103b6366004611918565b610b45565b3480156103c757600080fd5b506102bc6103d6366004611ae0565b610b57565b3480156103e757600080fd5b5061026b610ba6565b3480156103fc57600080fd5b506102bc600081565b34801561041157600080fd5b506008546001600160a01b0316610233565b34801561042f57600080fd5b50610206610bdc565b34801561044457600080fd5b5061026b610453366004611afb565b610beb565b61026b610466366004611b2e565b610c81565b34801561047757600080fd5b5061026b610486366004611b58565b610d72565b34801561049757600080fd5b506102066104a6366004611918565b610dc3565b3480156104b757600080fd5b50610333610af781565b3480156104cd57600080fd5b506101dc6104dc366004611bd4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561051657600080fd5b5061026b610525366004611ae0565b610f5d565b34801561053657600080fd5b5061053f600a81565b60405160ff90911681526020016101e8565b60006001600160e01b031982166380ac58cd60e01b148061058257506001600160e01b03198216635b5e139f60e01b145b8061059d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105b290611bfe565b80601f01602080910402602001604051908101604052809291908181526020018280546105de90611bfe565b801561062b5780601f106106005761010080835404028352916020019161062b565b820191906000526020600020905b81548152906001019060200180831161060e57829003601f168201915b5050505050905090565b600061064082611004565b61065d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061068482610b45565b9050806001600160a01b0316836001600160a01b031614156106b95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106d957506106d781336104dc565b155b156106f7576040516367d9dca160e11b815260040160405180910390fd5b61070283838361102f565b505050565b6008546001600160a01b0316331461073a5760405162461bcd60e51b815260040161073190611c39565b60405180910390fd5b600b805460ff1916911515919091179055565b6008546001600160a01b031633146107775760405162461bcd60e51b815260040161073190611c39565b805161078a90600a9060208401906117e1565b5050565b61070283838361108b565b600b5460ff16156107ec5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610731565b60008161ffff16116108405760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d757374206265206c6172676572207468616e2030210000006044820152606401610731565b8061ffff166108526001546000540390565b61085c9190611c84565b610bc010156108a55760405162461bcd60e51b8152602060048201526015602482015274546f74616c20737570706c7920726561636865642160581b6044820152606401610731565b6008546001600160a01b03163314610a0b578061ffff166108c96001546000540390565b6108d39190611c84565b610af710156109245760405162461bcd60e51b815260206004820152601c60248201527f546f74616c207075626c696320737570706c79207265616368656421000000006044820152606401610731565b600a61ffff8216111561098d5760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206e6565647320746f206265206174206d6f7374204d41585f4d60448201526a494e545f414d4f554e542160a81b6064820152608401610731565b600a61099833610b57565b10610a0b5760405162461bcd60e51b815260206004820152603860248201527f4576657279206d696e74657220697320616c6c6f77656420746f206d696e742060448201527f6174206d6f7374204d41585f4d494e545f414d4f554e542100000000000000006064820152608401610731565b610a19338261ffff1661127b565b50565b6008546001600160a01b03163314610a465760405162461bcd60e51b815260040161073190611c39565b6000610a5a6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610aa4576040519150601f19603f3d011682016040523d82523d6000602084013e610aa9565b606091505b5050905080610a195760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610731565b61070283838360405180602001604052806000815250610d72565b6008546001600160a01b03163314610b325760405162461bcd60e51b815260040161073190611c39565b805161078a9060099060208401906117e1565b6000610b5082611295565b5192915050565b60006001600160a01b038216610b80576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610bd05760405162461bcd60e51b815260040161073190611c39565b610bda60006113b1565b565b6060600380546105b290611bfe565b6001600160a01b038216331415610c155760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610cab5760405162461bcd60e51b815260040161073190611c39565b60008161ffff1611610cff5760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d757374206265206c6172676572207468616e2030210000006044820152606401610731565b8061ffff16610d116001546000540390565b610d1b9190611c84565b610bc01015610d645760405162461bcd60e51b8152602060048201526015602482015274546f74616c20737570706c7920726561636865642160581b6044820152606401610731565b61078a828261ffff1661127b565b610d7d84848461108b565b6001600160a01b0383163b15158015610d9f5750610d9d84848484611403565b155b15610dbd576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610dce82611004565b610e325760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610731565b6040805160008152602081018083528151902091610e539160099101611c9c565b604051602081830303815290604052805190602001201415610f0157600a8054610e7c90611bfe565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea890611bfe565b8015610ef55780601f10610eca57610100808354040283529160200191610ef5565b820191906000526020600020905b815481529060010190602001808311610ed857829003601f168201915b50505050509050919050565b6000610f0b6114fb565b90506000815111610f2b5760405180602001604052806000815250610f56565b80610f358461150a565b604051602001610f46929190611d38565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610f875760405162461bcd60e51b815260040161073190611c39565b6001600160a01b038116610fec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610731565b610a19816113b1565b6001600160a01b03163b151590565b600080548210801561059d575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061109682611295565b9050836001600160a01b031681600001516001600160a01b0316146110cd5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110eb57506110eb85336104dc565b806111065750336110fb84610635565b6001600160a01b0316145b90508061112657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661114d57604051633a954ecd60e21b815260040160405180910390fd5b6111596000848761102f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661122f57600054821461122f578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b61078a828260405180602001604052806000815250611608565b60408051606081018252600080825260208201819052918101919091528160005481101561139857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113965780516001600160a01b03161561132c579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611391579392505050565b61132c565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611438903390899088908890600401611d77565b602060405180830381600087803b15801561145257600080fd5b505af1925050508015611482575060408051601f3d908101601f1916820190925261147f91810190611db4565b60015b6114dd573d8080156114b0576040519150601f19603f3d011682016040523d82523d6000602084013e6114b5565b606091505b5080516114d5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546105b290611bfe565b60608161152e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611558578061154281611dd1565b91506115519050600a83611e02565b9150611532565b60008167ffffffffffffffff811115611573576115736119a2565b6040519080825280601f01601f19166020018201604052801561159d576020820181803683370190505b5090505b84156114f3576115b2600183611e16565b91506115bf600a86611e2d565b6115ca906030611c84565b60f81b8183815181106115df576115df611e41565b60200101906001600160f81b031916908160001a905350611601600a86611e02565b94506115a1565b61070283838360016000546001600160a01b03851661163957604051622e076360e81b815260040160405180910390fd5b836116575760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561170957506001600160a01b0387163b15155b15611792575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461175a6000888480600101955088611403565b611777576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561170f57826000541461178d57600080fd5b6117d8565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611793575b50600055611274565b8280546117ed90611bfe565b90600052602060002090601f01602090048101928261180f5760008555611855565b82601f1061182857805160ff1916838001178555611855565b82800160010185558215611855579182015b8281111561185557825182559160200191906001019061183a565b50611861929150611865565b5090565b5b808211156118615760008155600101611866565b6001600160e01b031981168114610a1957600080fd5b6000602082840312156118a257600080fd5b8135610f568161187a565b60005b838110156118c85781810151838201526020016118b0565b83811115610dbd5750506000910152565b600081518084526118f18160208601602086016118ad565b601f01601f19169290920160200192915050565b602081526000610f5660208301846118d9565b60006020828403121561192a57600080fd5b5035919050565b80356001600160a01b038116811461194857600080fd5b919050565b6000806040838503121561196057600080fd5b61196983611931565b946020939093013593505050565b8035801515811461194857600080fd5b60006020828403121561199957600080fd5b610f5682611977565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156119d3576119d36119a2565b604051601f8501601f19908116603f011681019082821181831017156119fb576119fb6119a2565b81604052809350858152868686011115611a1457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a4057600080fd5b813567ffffffffffffffff811115611a5757600080fd5b8201601f81018413611a6857600080fd5b6114f3848235602084016119b8565b600080600060608486031215611a8c57600080fd5b611a9584611931565b9250611aa360208501611931565b9150604084013590509250925092565b803561ffff8116811461194857600080fd5b600060208284031215611ad757600080fd5b610f5682611ab3565b600060208284031215611af257600080fd5b610f5682611931565b60008060408385031215611b0e57600080fd5b611b1783611931565b9150611b2560208401611977565b90509250929050565b60008060408385031215611b4157600080fd5b611b4a83611931565b9150611b2560208401611ab3565b60008060008060808587031215611b6e57600080fd5b611b7785611931565b9350611b8560208601611931565b925060408501359150606085013567ffffffffffffffff811115611ba857600080fd5b8501601f81018713611bb957600080fd5b611bc8878235602084016119b8565b91505092959194509250565b60008060408385031215611be757600080fd5b611bf083611931565b9150611b2560208401611931565b600181811c90821680611c1257607f821691505b60208210811415611c3357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611c9757611c97611c6e565b500190565b600080835481600182811c915080831680611cb857607f831692505b6020808410821415611cd857634e487b7160e01b86526022600452602486fd5b818015611cec5760018114611cfd57611d2a565b60ff19861689528489019650611d2a565b60008a81526020902060005b86811015611d225781548b820152908501908301611d09565b505084890196505b509498975050505050505050565b60008351611d4a8184602088016118ad565b835190830190611d5e8183602088016118ad565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611daa908301846118d9565b9695505050505050565b600060208284031215611dc657600080fd5b8151610f568161187a565b6000600019821415611de557611de5611c6e565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611e1157611e11611dec565b500490565b600082821015611e2857611e28611c6e565b500390565b600082611e3c57611e3c611dec565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122023613c2e5bcbd797ef6d356b29db57098a3e42642202945c1d1b9045c065c2b564736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d57686f7243423957656e6568594551317862716e66733878383641353870733941674b35326d6e69573946382f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101b75760003560e01c80636352211e116100ec578063ae4972201161008a578063e03d4de511610064578063e03d4de5146104ab578063e985e9c5146104c1578063f2fde38b1461050a578063fa9b70181461052a57600080fd5b8063ae49722014610458578063b88d4fde1461046b578063c87b56dd1461048b57600080fd5b80638d859f3e116100c65780638d859f3e146103f05780638da5cb5b1461040557806395d89b4114610423578063a22cb4651461043857600080fd5b80636352211e1461039b57806370a08231146103bb578063715018a6146103db57600080fd5b806320ac68501161015957806332cb6b0c1161013357806332cb6b0c1461031d5780633ccfd60b1461034657806342842e0e1461035b57806355f804b31461037b57600080fd5b806320ac6850146102ca57806323b872dd146102ea57806323cf0a221461030a57600080fd5b8063095ea7b311610195578063095ea7b31461024b57806316c38b3c1461026d57806316c61ccc1461028d57806318160ddd146102a757600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611890565b610551565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105a3565b6040516101e89190611905565b34801561021f57600080fd5b5061023361022e366004611918565b610635565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b61026636600461194d565b610679565b005b34801561027957600080fd5b5061026b610288366004611987565b610707565b34801561029957600080fd5b50600b546101dc9060ff1681565b3480156102b357600080fd5b50600154600054035b6040519081526020016101e8565b3480156102d657600080fd5b5061026b6102e5366004611a2e565b61074d565b3480156102f657600080fd5b5061026b610305366004611a77565b61078e565b61026b610318366004611ac5565b610799565b34801561032957600080fd5b50610333610bc081565b60405161ffff90911681526020016101e8565b34801561035257600080fd5b5061026b610a1c565b34801561036757600080fd5b5061026b610376366004611a77565b610aed565b34801561038757600080fd5b5061026b610396366004611a2e565b610b08565b3480156103a757600080fd5b506102336103b6366004611918565b610b45565b3480156103c757600080fd5b506102bc6103d6366004611ae0565b610b57565b3480156103e757600080fd5b5061026b610ba6565b3480156103fc57600080fd5b506102bc600081565b34801561041157600080fd5b506008546001600160a01b0316610233565b34801561042f57600080fd5b50610206610bdc565b34801561044457600080fd5b5061026b610453366004611afb565b610beb565b61026b610466366004611b2e565b610c81565b34801561047757600080fd5b5061026b610486366004611b58565b610d72565b34801561049757600080fd5b506102066104a6366004611918565b610dc3565b3480156104b757600080fd5b50610333610af781565b3480156104cd57600080fd5b506101dc6104dc366004611bd4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561051657600080fd5b5061026b610525366004611ae0565b610f5d565b34801561053657600080fd5b5061053f600a81565b60405160ff90911681526020016101e8565b60006001600160e01b031982166380ac58cd60e01b148061058257506001600160e01b03198216635b5e139f60e01b145b8061059d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105b290611bfe565b80601f01602080910402602001604051908101604052809291908181526020018280546105de90611bfe565b801561062b5780601f106106005761010080835404028352916020019161062b565b820191906000526020600020905b81548152906001019060200180831161060e57829003601f168201915b5050505050905090565b600061064082611004565b61065d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061068482610b45565b9050806001600160a01b0316836001600160a01b031614156106b95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106d957506106d781336104dc565b155b156106f7576040516367d9dca160e11b815260040160405180910390fd5b61070283838361102f565b505050565b6008546001600160a01b0316331461073a5760405162461bcd60e51b815260040161073190611c39565b60405180910390fd5b600b805460ff1916911515919091179055565b6008546001600160a01b031633146107775760405162461bcd60e51b815260040161073190611c39565b805161078a90600a9060208401906117e1565b5050565b61070283838361108b565b600b5460ff16156107ec5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610731565b60008161ffff16116108405760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d757374206265206c6172676572207468616e2030210000006044820152606401610731565b8061ffff166108526001546000540390565b61085c9190611c84565b610bc010156108a55760405162461bcd60e51b8152602060048201526015602482015274546f74616c20737570706c7920726561636865642160581b6044820152606401610731565b6008546001600160a01b03163314610a0b578061ffff166108c96001546000540390565b6108d39190611c84565b610af710156109245760405162461bcd60e51b815260206004820152601c60248201527f546f74616c207075626c696320737570706c79207265616368656421000000006044820152606401610731565b600a61ffff8216111561098d5760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206e6565647320746f206265206174206d6f7374204d41585f4d60448201526a494e545f414d4f554e542160a81b6064820152608401610731565b600a61099833610b57565b10610a0b5760405162461bcd60e51b815260206004820152603860248201527f4576657279206d696e74657220697320616c6c6f77656420746f206d696e742060448201527f6174206d6f7374204d41585f4d494e545f414d4f554e542100000000000000006064820152608401610731565b610a19338261ffff1661127b565b50565b6008546001600160a01b03163314610a465760405162461bcd60e51b815260040161073190611c39565b6000610a5a6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610aa4576040519150601f19603f3d011682016040523d82523d6000602084013e610aa9565b606091505b5050905080610a195760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610731565b61070283838360405180602001604052806000815250610d72565b6008546001600160a01b03163314610b325760405162461bcd60e51b815260040161073190611c39565b805161078a9060099060208401906117e1565b6000610b5082611295565b5192915050565b60006001600160a01b038216610b80576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610bd05760405162461bcd60e51b815260040161073190611c39565b610bda60006113b1565b565b6060600380546105b290611bfe565b6001600160a01b038216331415610c155760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610cab5760405162461bcd60e51b815260040161073190611c39565b60008161ffff1611610cff5760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d757374206265206c6172676572207468616e2030210000006044820152606401610731565b8061ffff16610d116001546000540390565b610d1b9190611c84565b610bc01015610d645760405162461bcd60e51b8152602060048201526015602482015274546f74616c20737570706c7920726561636865642160581b6044820152606401610731565b61078a828261ffff1661127b565b610d7d84848461108b565b6001600160a01b0383163b15158015610d9f5750610d9d84848484611403565b155b15610dbd576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610dce82611004565b610e325760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610731565b6040805160008152602081018083528151902091610e539160099101611c9c565b604051602081830303815290604052805190602001201415610f0157600a8054610e7c90611bfe565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea890611bfe565b8015610ef55780601f10610eca57610100808354040283529160200191610ef5565b820191906000526020600020905b815481529060010190602001808311610ed857829003601f168201915b50505050509050919050565b6000610f0b6114fb565b90506000815111610f2b5760405180602001604052806000815250610f56565b80610f358461150a565b604051602001610f46929190611d38565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610f875760405162461bcd60e51b815260040161073190611c39565b6001600160a01b038116610fec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610731565b610a19816113b1565b6001600160a01b03163b151590565b600080548210801561059d575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061109682611295565b9050836001600160a01b031681600001516001600160a01b0316146110cd5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110eb57506110eb85336104dc565b806111065750336110fb84610635565b6001600160a01b0316145b90508061112657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661114d57604051633a954ecd60e21b815260040160405180910390fd5b6111596000848761102f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661122f57600054821461122f578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b61078a828260405180602001604052806000815250611608565b60408051606081018252600080825260208201819052918101919091528160005481101561139857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113965780516001600160a01b03161561132c579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611391579392505050565b61132c565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611438903390899088908890600401611d77565b602060405180830381600087803b15801561145257600080fd5b505af1925050508015611482575060408051601f3d908101601f1916820190925261147f91810190611db4565b60015b6114dd573d8080156114b0576040519150601f19603f3d011682016040523d82523d6000602084013e6114b5565b606091505b5080516114d5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546105b290611bfe565b60608161152e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611558578061154281611dd1565b91506115519050600a83611e02565b9150611532565b60008167ffffffffffffffff811115611573576115736119a2565b6040519080825280601f01601f19166020018201604052801561159d576020820181803683370190505b5090505b84156114f3576115b2600183611e16565b91506115bf600a86611e2d565b6115ca906030611c84565b60f81b8183815181106115df576115df611e41565b60200101906001600160f81b031916908160001a905350611601600a86611e02565b94506115a1565b61070283838360016000546001600160a01b03851661163957604051622e076360e81b815260040160405180910390fd5b836116575760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561170957506001600160a01b0387163b15155b15611792575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461175a6000888480600101955088611403565b611777576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561170f57826000541461178d57600080fd5b6117d8565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611793575b50600055611274565b8280546117ed90611bfe565b90600052602060002090601f01602090048101928261180f5760008555611855565b82601f1061182857805160ff1916838001178555611855565b82800160010185558215611855579182015b8281111561185557825182559160200191906001019061183a565b50611861929150611865565b5090565b5b808211156118615760008155600101611866565b6001600160e01b031981168114610a1957600080fd5b6000602082840312156118a257600080fd5b8135610f568161187a565b60005b838110156118c85781810151838201526020016118b0565b83811115610dbd5750506000910152565b600081518084526118f18160208601602086016118ad565b601f01601f19169290920160200192915050565b602081526000610f5660208301846118d9565b60006020828403121561192a57600080fd5b5035919050565b80356001600160a01b038116811461194857600080fd5b919050565b6000806040838503121561196057600080fd5b61196983611931565b946020939093013593505050565b8035801515811461194857600080fd5b60006020828403121561199957600080fd5b610f5682611977565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156119d3576119d36119a2565b604051601f8501601f19908116603f011681019082821181831017156119fb576119fb6119a2565b81604052809350858152868686011115611a1457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a4057600080fd5b813567ffffffffffffffff811115611a5757600080fd5b8201601f81018413611a6857600080fd5b6114f3848235602084016119b8565b600080600060608486031215611a8c57600080fd5b611a9584611931565b9250611aa360208501611931565b9150604084013590509250925092565b803561ffff8116811461194857600080fd5b600060208284031215611ad757600080fd5b610f5682611ab3565b600060208284031215611af257600080fd5b610f5682611931565b60008060408385031215611b0e57600080fd5b611b1783611931565b9150611b2560208401611977565b90509250929050565b60008060408385031215611b4157600080fd5b611b4a83611931565b9150611b2560208401611ab3565b60008060008060808587031215611b6e57600080fd5b611b7785611931565b9350611b8560208601611931565b925060408501359150606085013567ffffffffffffffff811115611ba857600080fd5b8501601f81018713611bb957600080fd5b611bc8878235602084016119b8565b91505092959194509250565b60008060408385031215611be757600080fd5b611bf083611931565b9150611b2560208401611931565b600181811c90821680611c1257607f821691505b60208210811415611c3357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611c9757611c97611c6e565b500190565b600080835481600182811c915080831680611cb857607f831692505b6020808410821415611cd857634e487b7160e01b86526022600452602486fd5b818015611cec5760018114611cfd57611d2a565b60ff19861689528489019650611d2a565b60008a81526020902060005b86811015611d225781548b820152908501908301611d09565b505084890196505b509498975050505050505050565b60008351611d4a8184602088016118ad565b835190830190611d5e8183602088016118ad565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611daa908301846118d9565b9695505050505050565b600060208284031215611dc657600080fd5b8151610f568161187a565b6000600019821415611de557611de5611c6e565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611e1157611e11611dec565b500490565b600082821015611e2857611e28611c6e565b500390565b600082611e3c57611e3c611dec565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122023613c2e5bcbd797ef6d356b29db57098a3e42642202945c1d1b9045c065c2b564736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d57686f7243423957656e6568594551317862716e66733878383641353870733941674b35326d6e69573946382f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : hidden_base_uri (string): ipfs://QmWhorCB9WenehYEQ1xbqnfs8x86A58ps9AgK52mniW9F8/hidden.json
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [2] : 697066733a2f2f516d57686f7243423957656e6568594551317862716e667338
Arg [3] : 78383641353870733941674b35326d6e69573946382f68696464656e2e6a736f
Arg [4] : 6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
44134:2795:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26387:305;;;;;;;;;;-1:-1:-1;26387:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26387:305:0;;;;;;;;29500:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31003:204::-;;;;;;;;;;-1:-1:-1;31003:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;31003:204:0;1528:203:1;30566:371:0;;;;;;;;;;-1:-1:-1;30566:371:0;;;;;:::i;:::-;;:::i;:::-;;46599:84;;;;;;;;;;-1:-1:-1;46599:84:0;;;;;:::i;:::-;;:::i;44485:27::-;;;;;;;;;;-1:-1:-1;44485:27:0;;;;;;;;25636:303;;;;;;;;;;-1:-1:-1;25890:12:0;;25680:7;25874:13;:28;25636:303;;;2669:25:1;;;2657:2;2642:18;25636:303:0;2523:177:1;45631:127:0;;;;;;;;;;-1:-1:-1;45631:127:0;;;;;:::i;:::-;;:::i;31868:170::-;;;;;;;;;;-1:-1:-1;31868:170:0;;;;;:::i;:::-;;:::i;44700:660::-;;;;;;:::i;:::-;;:::i;44258:40::-;;;;;;;;;;;;44294:4;44258:40;;;;;4790:6:1;4778:19;;;4760:38;;4748:2;4733:18;44258:40:0;4616:188:1;46747:177:0;;;;;;;;;;;;;:::i;32109:185::-;;;;;;;;;;-1:-1:-1;32109:185:0;;;;;:::i;:::-;;:::i;45770:100::-;;;;;;;;;;-1:-1:-1;45770:100:0;;;;;:::i;:::-;;:::i;29308:125::-;;;;;;;;;;-1:-1:-1;29308:125:0;;;;;:::i;:::-;;:::i;26756:206::-;;;;;;;;;;-1:-1:-1;26756:206:0;;;;;:::i;:::-;;:::i;13043:103::-;;;;;;;;;;;;;:::i;44210:41::-;;;;;;;;;;;;44242:9;44210:41;;12392:87;;;;;;;;;;-1:-1:-1;12465:6:0;;-1:-1:-1;;;;;12465:6:0;12392:87;;29669:104;;;;;;;;;;;;;:::i;31279:287::-;;;;;;;;;;-1:-1:-1;31279:287:0;;;;;:::i;:::-;;:::i;45368:255::-;;;;;;:::i;:::-;;:::i;32365:369::-;;;;;;;;;;-1:-1:-1;32365:369:0;;;;;:::i;:::-;;:::i;46109:482::-;;;;;;;;;;-1:-1:-1;46109:482:0;;;;;:::i;:::-;;:::i;44305:45::-;;;;;;;;;;;;44346:4;44305:45;;31637:164;;;;;;;;;;-1:-1:-1;31637:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31758:25:0;;;31734:4;31758:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31637:164;13301:201;;;;;;;;;;-1:-1:-1;13301:201:0;;;;;:::i;:::-;;:::i;44357:42::-;;;;;;;;;;;;44397:2;44357:42;;;;;6631:4:1;6619:17;;;6601:36;;6589:2;6574:18;44357:42:0;6459:184:1;26387:305:0;26489:4;-1:-1:-1;;;;;;26526:40:0;;-1:-1:-1;;;26526:40:0;;:105;;-1:-1:-1;;;;;;;26583:48:0;;-1:-1:-1;;;26583:48:0;26526:105;:158;;;-1:-1:-1;;;;;;;;;;15614:40:0;;;26648:36;26506:178;26387:305;-1:-1:-1;;26387:305:0:o;29500:100::-;29554:13;29587:5;29580:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29500:100;:::o;31003:204::-;31071:7;31096:16;31104:7;31096;:16::i;:::-;31091:64;;31121:34;;-1:-1:-1;;;31121:34:0;;;;;;;;;;;31091:64;-1:-1:-1;31175:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31175:24:0;;31003:204::o;30566:371::-;30639:13;30655:24;30671:7;30655:15;:24::i;:::-;30639:40;;30700:5;-1:-1:-1;;;;;30694:11:0;:2;-1:-1:-1;;;;;30694:11:0;;30690:48;;;30714:24;;-1:-1:-1;;;30714:24:0;;;;;;;;;;;30690:48;9185:10;-1:-1:-1;;;;;30755:21:0;;;;;;:63;;-1:-1:-1;30781:37:0;30798:5;9185:10;31637:164;:::i;30781:37::-;30780:38;30755:63;30751:138;;;30842:35;;-1:-1:-1;;;30842:35:0;;;;;;;;;;;30751:138;30901:28;30910:2;30914:7;30923:5;30901:8;:28::i;:::-;30628:309;30566:371;;:::o;46599:84::-;12465:6;;-1:-1:-1;;;;;12465:6:0;9185:10;12612:23;12604:68;;;;-1:-1:-1;;;12604:68:0;;;;;;;:::i;:::-;;;;;;;;;46659:7:::1;:16:::0;;-1:-1:-1;;46659:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46599:84::o;45631:127::-;12465:6;;-1:-1:-1;;;;;12465:6:0;9185:10;12612:23;12604:68;;;;-1:-1:-1;;;12604:68:0;;;;;;;:::i;:::-;45716:34;;::::1;::::0;:16:::1;::::0;:34:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45631:127:::0;:::o;31868:170::-;32002:28;32012:4;32018:2;32022:7;32002:9;:28::i;44700:660::-;44763:7;;;;44762:8;44754:44;;;;-1:-1:-1;;;44754:44:0;;7596:2:1;44754:44:0;;;7578:21:1;7635:2;7615:18;;;7608:30;7674:25;7654:18;;;7647:53;7717:18;;44754:44:0;7394:347:1;44754:44:0;44825:1;44817:5;:9;;;44809:51;;;;-1:-1:-1;;;44809:51:0;;7948:2:1;44809:51:0;;;7930:21:1;7987:2;7967:18;;;7960:30;8026:31;8006:18;;;7999:59;8075:18;;44809:51:0;7746:353:1;44809:51:0;44909:5;44893:21;;:13;25890:12;;25680:7;25874:13;:28;;25636:303;44893:13;:21;;;;:::i;:::-;44294:4;44879:35;;44871:69;;;;-1:-1:-1;;;44871:69:0;;8571:2:1;44871:69:0;;;8553:21:1;8610:2;8590:18;;;8583:30;-1:-1:-1;;;8629:18:1;;;8622:51;8690:18;;44871:69:0;8369:345:1;44871:69:0;12465:6;;-1:-1:-1;;;;;12465:6:0;44965:10;:21;44961:353;;45046:5;45030:21;;:13;25890:12;;25680:7;25874:13;:28;;25636:303;45030:13;:21;;;;:::i;:::-;44346:4;45011:40;;45003:81;;;;-1:-1:-1;;;45003:81:0;;8921:2:1;45003:81:0;;;8903:21:1;8960:2;8940:18;;;8933:30;8999;8979:18;;;8972:58;9047:18;;45003:81:0;8719:352:1;45003:81:0;44397:2;45107:24;;;;;45099:80;;;;-1:-1:-1;;;45099:80:0;;9278:2:1;45099:80:0;;;9260:21:1;9317:2;9297:18;;;9290:30;9356:34;9336:18;;;9329:62;-1:-1:-1;;;9407:18:1;;;9400:41;9458:19;;45099:80:0;9076:407:1;45099:80:0;44397:2;45202:21;45212:10;45202:9;:21::i;:::-;:39;45194:108;;;;-1:-1:-1;;;45194:108:0;;9690:2:1;45194:108:0;;;9672:21:1;9729:2;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9839:26;9819:18;;;9812:54;9883:19;;45194:108:0;9488:420:1;45194:108:0;45324:28;45334:10;45346:5;45324:28;;:9;:28::i;:::-;44700:660;:::o;46747:177::-;12465:6;;-1:-1:-1;;;;;12465:6:0;9185:10;12612:23;12604:68;;;;-1:-1:-1;;;12604:68:0;;;;;;;:::i;:::-;46796:12:::1;46822:7;12465:6:::0;;-1:-1:-1;;;;;12465:6:0;;12392:87;46822:7:::1;-1:-1:-1::0;;;;;46814:21:0::1;46843;46814:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46795:74;;;46888:7;46880:36;;;::::0;-1:-1:-1;;;46880:36:0;;10325:2:1;46880:36:0::1;::::0;::::1;10307:21:1::0;10364:2;10344:18;;;10337:30;-1:-1:-1;;;10383:18:1;;;10376:46;10439:18;;46880:36:0::1;10123:340:1::0;32109:185:0;32247:39;32264:4;32270:2;32274:7;32247:39;;;;;;;;;;;;:16;:39::i;45770:100::-;12465:6;;-1:-1:-1;;;;;12465:6:0;9185:10;12612:23;12604:68;;;;-1:-1:-1;;;12604:68:0;;;;;;;:::i;:::-;45842:20;;::::1;::::0;:9:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;29308:125::-:0;29372:7;29399:21;29412:7;29399:12;:21::i;:::-;:26;;29308:125;-1:-1:-1;;29308:125:0:o;26756:206::-;26820:7;-1:-1:-1;;;;;26844:19:0;;26840:60;;26872:28;;-1:-1:-1;;;26872:28:0;;;;;;;;;;;26840:60;-1:-1:-1;;;;;;26926:19:0;;;;;:12;:19;;;;;:27;;;;26756:206::o;13043:103::-;12465:6;;-1:-1:-1;;;;;12465:6:0;9185:10;12612:23;12604:68;;;;-1:-1:-1;;;12604:68:0;;;;;;;:::i;:::-;13108:30:::1;13135:1;13108:18;:30::i;:::-;13043:103::o:0;29669:104::-;29725:13;29758:7;29751:14;;;;;:::i;31279:287::-;-1:-1:-1;;;;;31378:24:0;;9185:10;31378:24;31374:54;;;31411:17;;-1:-1:-1;;;31411:17:0;;;;;;;;;;;31374:54;9185:10;31441:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31441:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31441:53:0;;;;;;;;;;31510:48;;540:41:1;;;31441:42:0;;9185:10;31510:48;;513:18:1;31510:48:0;;;;;;;31279:287;;:::o;45368:255::-;12465:6;;-1:-1:-1;;;;;12465:6:0;9185:10;12612:23;12604:68;;;;-1:-1:-1;;;12604:68:0;;;;;;;:::i;:::-;45469:1:::1;45461:5;:9;;;45453:51;;;::::0;-1:-1:-1;;;45453:51:0;;7948:2:1;45453:51:0::1;::::0;::::1;7930:21:1::0;7987:2;7967:18;;;7960:30;8026:31;8006:18;;;7999:59;8075:18;;45453:51:0::1;7746:353:1::0;45453:51:0::1;45553:5;45537:21;;:13;25890:12:::0;;25680:7;25874:13;:28;;25636:303;45537:13:::1;:21;;;;:::i;:::-;44294:4;45523:35;;45515:69;;;::::0;-1:-1:-1;;;45515:69:0;;8571:2:1;45515:69:0::1;::::0;::::1;8553:21:1::0;8610:2;8590:18;;;8583:30;-1:-1:-1;;;8629:18:1;;;8622:51;8690:18;;45515:69:0::1;8369:345:1::0;45515:69:0::1;45595:20;45605:2;45609:5;45595:20;;:9;:20::i;32365:369::-:0;32532:28;32542:4;32548:2;32552:7;32532:9;:28::i;:::-;-1:-1:-1;;;;;32575:13:0;;1505:19;:23;;32575:76;;;;;32595:56;32626:4;32632:2;32636:7;32645:5;32595:30;:56::i;:::-;32594:57;32575:76;32571:156;;;32675:40;;-1:-1:-1;;;32675:40:0;;;;;;;;;;;32571:156;32365:369;;;;:::o;46109:482::-;46182:13;46216:16;46224:7;46216;:16::i;:::-;46208:76;;;;-1:-1:-1;;;46208:76:0;;10670:2:1;46208:76:0;;;10652:21:1;10709:2;10689:18;;;10682:30;10748:34;10728:18;;;10721:62;-1:-1:-1;;;10799:18:1;;;10792:45;10854:19;;46208:76:0;10468:411:1;46208:76:0;46351:20;;;;;;;;;;;;46341:31;;;;;46309:27;;46326:9;;46309:27;;:::i;:::-;;;;;;;;;;;;;46299:38;;;;;;:73;46295:129;;;46396:16;46389:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46109:482;;;:::o;46295:129::-;46436:21;46460:10;:8;:10::i;:::-;46436:34;;46512:1;46494:7;46488:21;:25;:95;;;;;;;;;;;;;;;;;46540:7;46549:18;:7;:16;:18::i;:::-;46523:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46488:95;46481:102;46109:482;-1:-1:-1;;;46109:482:0:o;13301:201::-;12465:6;;-1:-1:-1;;;;;12465:6:0;9185:10;12612:23;12604:68;;;;-1:-1:-1;;;12604:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13390:22:0;::::1;13382:73;;;::::0;-1:-1:-1;;;13382:73:0;;13169:2:1;13382:73:0::1;::::0;::::1;13151:21:1::0;13208:2;13188:18;;;13181:30;13247:34;13227:18;;;13220:62;-1:-1:-1;;;13298:18:1;;;13291:36;13344:19;;13382:73:0::1;12967:402:1::0;13382:73:0::1;13466:28;13485:8;13466:18;:28::i;1210:326::-:0;-1:-1:-1;;;;;1505:19:0;;:23;;;1210:326::o;32989:174::-;33046:4;33110:13;;33100:7;:23;33070:85;;;;-1:-1:-1;;33128:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33128:27:0;;;;33127:28;;32989:174::o;41146:196::-;41261:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41261:29:0;-1:-1:-1;;;;;41261:29:0;;;;;;;;;41306:28;;41261:24;;41306:28;;;;;;;41146:196;;;:::o;36089:2130::-;36204:35;36242:21;36255:7;36242:12;:21::i;:::-;36204:59;;36302:4;-1:-1:-1;;;;;36280:26:0;:13;:18;;;-1:-1:-1;;;;;36280:26:0;;36276:67;;36315:28;;-1:-1:-1;;;36315:28:0;;;;;;;;;;;36276:67;36356:22;9185:10;-1:-1:-1;;;;;36382:20:0;;;;:73;;-1:-1:-1;36419:36:0;36436:4;9185:10;31637:164;:::i;36419:36::-;36382:126;;;-1:-1:-1;9185:10:0;36472:20;36484:7;36472:11;:20::i;:::-;-1:-1:-1;;;;;36472:36:0;;36382:126;36356:153;;36527:17;36522:66;;36553:35;;-1:-1:-1;;;36553:35:0;;;;;;;;;;;36522:66;-1:-1:-1;;;;;36603:16:0;;36599:52;;36628:23;;-1:-1:-1;;;36628:23:0;;;;;;;;;;;36599:52;36772:35;36789:1;36793:7;36802:4;36772:8;:35::i;:::-;-1:-1:-1;;;;;37103:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37103:31:0;;;;;;;-1:-1:-1;;37103:31:0;;;;;;;37149:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37149:29:0;;;;;;;;;;;37229:20;;;:11;:20;;;;;;37264:18;;-1:-1:-1;;;;;;37297:49:0;;;;-1:-1:-1;;;37330:15:0;37297:49;;;;;;;;;;37620:11;;37680:24;;;;;37723:13;;37229:20;;37680:24;;37723:13;37719:384;;37933:13;;37918:11;:28;37914:174;;37971:20;;38040:28;;;;38014:54;;-1:-1:-1;;;38014:54:0;-1:-1:-1;;;;;;38014:54:0;;;-1:-1:-1;;;;;37971:20:0;;38014:54;;;;37914:174;37078:1036;;;38150:7;38146:2;-1:-1:-1;;;;;38131:27:0;38140:4;-1:-1:-1;;;;;38131:27:0;;;;;;;;;;;38169:42;36193:2026;;36089:2130;;;:::o;33171:104::-;33240:27;33250:2;33254:8;33240:27;;;;;;;;;;;;:9;:27::i;28137:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28248:7:0;28331:13;;28324:4;:20;28293:886;;;28365:31;28399:17;;;:11;:17;;;;;;;;;28365:51;;;;;;;;;-1:-1:-1;;;;;28365:51:0;;;;-1:-1:-1;;;28365:51:0;;;;;;;;;;;-1:-1:-1;;;28365:51:0;;;;;;;;;;;;;;28435:729;;28485:14;;-1:-1:-1;;;;;28485:28:0;;28481:101;;28549:9;28137:1109;-1:-1:-1;;;28137:1109:0:o;28481:101::-;-1:-1:-1;;;28924:6:0;28969:17;;;;:11;:17;;;;;;;;;28957:29;;;;;;;;;-1:-1:-1;;;;;28957:29:0;;;;;-1:-1:-1;;;28957:29:0;;;;;;;;;;;-1:-1:-1;;;28957:29:0;;;;;;;;;;;;;29017:28;29013:109;;29085:9;28137:1109;-1:-1:-1;;;28137:1109:0:o;29013:109::-;28884:261;;;28346:833;28293:886;29207:31;;-1:-1:-1;;;29207:31:0;;;;;;;;;;;13662:191;13755:6;;;-1:-1:-1;;;;;13772:17:0;;;-1:-1:-1;;;;;;13772:17:0;;;;;;;13805:40;;13755:6;;;13772:17;13755:6;;13805:40;;13736:16;;13805:40;13725:128;13662:191;:::o;41834:667::-;42018:72;;-1:-1:-1;;;42018:72:0;;41997:4;;-1:-1:-1;;;;;42018:36:0;;;;;:72;;9185:10;;42069:4;;42075:7;;42084:5;;42018:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42018:72:0;;;;;;;;-1:-1:-1;;42018:72:0;;;;;;;;;;;;:::i;:::-;;;42014:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42252:13:0;;42248:235;;42298:40;;-1:-1:-1;;;42298:40:0;;;;;;;;;;;42248:235;42441:6;42435:13;42426:6;42422:2;42418:15;42411:38;42014:480;-1:-1:-1;;;;;;42137:55:0;-1:-1:-1;;;42137:55:0;;-1:-1:-1;42014:480:0;41834:667;;;;;;:::o;45991:110::-;46051:13;46084:9;46077:16;;;;;:::i;9628:723::-;9684:13;9905:10;9901:53;;-1:-1:-1;;9932:10:0;;;;;;;;;;;;-1:-1:-1;;;9932:10:0;;;;;9628:723::o;9901:53::-;9979:5;9964:12;10020:78;10027:9;;10020:78;;10053:8;;;;:::i;:::-;;-1:-1:-1;10076:10:0;;-1:-1:-1;10084:2:0;10076:10;;:::i;:::-;;;10020:78;;;10108:19;10140:6;10130:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10130:17:0;;10108:39;;10158:154;10165:10;;10158:154;;10192:11;10202:1;10192:11;;:::i;:::-;;-1:-1:-1;10261:10:0;10269:2;10261:5;:10;:::i;:::-;10248:24;;:2;:24;:::i;:::-;10235:39;;10218:6;10225;10218:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10218:56:0;;;;;;;;-1:-1:-1;10289:11:0;10298:2;10289:11;;:::i;:::-;;;10158:154;;33638:163;33761:32;33767:2;33771:8;33781:5;33788:4;34199:20;34222:13;-1:-1:-1;;;;;34250:16:0;;34246:48;;34275:19;;-1:-1:-1;;;34275:19:0;;;;;;;;;;;34246:48;34309:13;34305:44;;34331:18;;-1:-1:-1;;;34331:18:0;;;;;;;;;;;34305:44;-1:-1:-1;;;;;34700:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34759:49:0;;34700:44;;;;;;;;34759:49;;;;-1:-1:-1;;34700:44:0;;;;;;34759:49;;;;;;;;;;;;;;;;34825:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;34875:66:0;;;;-1:-1:-1;;;34925:15:0;34875:66;;;;;;;;;;34825:25;35022:23;;;35066:4;:23;;;;-1:-1:-1;;;;;;35074:13:0;;1505:19;:23;;35074:15;35062:641;;;35110:314;35141:38;;35166:12;;-1:-1:-1;;;;;35141:38:0;;;35158:1;;35141:38;;35158:1;;35141:38;35207:69;35246:1;35250:2;35254:14;;;;;;35270:5;35207:30;:69::i;:::-;35202:174;;35312:40;;-1:-1:-1;;;35312:40:0;;;;;;;;;;;35202:174;35419:3;35403:12;:19;;35110:314;;35505:12;35488:13;;:29;35484:43;;35519:8;;;35484:43;35062:641;;;35568:120;35599:40;;35624:14;;;;;-1:-1:-1;;;;;35599:40:0;;;35616:1;;35599:40;;35616:1;;35599:40;35683:3;35667:12;:19;;35568:120;;35062:641;-1:-1:-1;35717:13:0;:28;35767:60;32365:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:160::-;2238:20;;2294:13;;2287:21;2277:32;;2267:60;;2323:1;2320;2313:12;2338:180;2394:6;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2486:26;2502:9;2486:26;:::i;2705:127::-;2766:10;2761:3;2757:20;2754:1;2747:31;2797:4;2794:1;2787:15;2821:4;2818:1;2811:15;2837:632;2902:5;2932:18;2973:2;2965:6;2962:14;2959:40;;;2979:18;;:::i;:::-;3054:2;3048:9;3022:2;3108:15;;-1:-1:-1;;3104:24:1;;;3130:2;3100:33;3096:42;3084:55;;;3154:18;;;3174:22;;;3151:46;3148:72;;;3200:18;;:::i;:::-;3240:10;3236:2;3229:22;3269:6;3260:15;;3299:6;3291;3284:22;3339:3;3330:6;3325:3;3321:16;3318:25;3315:45;;;3356:1;3353;3346:12;3315:45;3406:6;3401:3;3394:4;3386:6;3382:17;3369:44;3461:1;3454:4;3445:6;3437;3433:19;3429:30;3422:41;;;;2837:632;;;;;:::o;3474:451::-;3543:6;3596:2;3584:9;3575:7;3571:23;3567:32;3564:52;;;3612:1;3609;3602:12;3564:52;3652:9;3639:23;3685:18;3677:6;3674:30;3671:50;;;3717:1;3714;3707:12;3671:50;3740:22;;3793:4;3785:13;;3781:27;-1:-1:-1;3771:55:1;;3822:1;3819;3812:12;3771:55;3845:74;3911:7;3906:2;3893:16;3888:2;3884;3880:11;3845:74;:::i;3930:328::-;4007:6;4015;4023;4076:2;4064:9;4055:7;4051:23;4047:32;4044:52;;;4092:1;4089;4082:12;4044:52;4115:29;4134:9;4115:29;:::i;:::-;4105:39;;4163:38;4197:2;4186:9;4182:18;4163:38;:::i;:::-;4153:48;;4248:2;4237:9;4233:18;4220:32;4210:42;;3930:328;;;;;:::o;4263:159::-;4330:20;;4390:6;4379:18;;4369:29;;4359:57;;4412:1;4409;4402:12;4427:184;4485:6;4538:2;4526:9;4517:7;4513:23;4509:32;4506:52;;;4554:1;4551;4544:12;4506:52;4577:28;4595:9;4577:28;:::i;4809:186::-;4868:6;4921:2;4909:9;4900:7;4896:23;4892:32;4889:52;;;4937:1;4934;4927:12;4889:52;4960:29;4979:9;4960:29;:::i;5000:254::-;5065:6;5073;5126:2;5114:9;5105:7;5101:23;5097:32;5094:52;;;5142:1;5139;5132:12;5094:52;5165:29;5184:9;5165:29;:::i;:::-;5155:39;;5213:35;5244:2;5233:9;5229:18;5213:35;:::i;:::-;5203:45;;5000:254;;;;;:::o;5259:258::-;5326:6;5334;5387:2;5375:9;5366:7;5362:23;5358:32;5355:52;;;5403:1;5400;5393:12;5355:52;5426:29;5445:9;5426:29;:::i;:::-;5416:39;;5474:37;5507:2;5496:9;5492:18;5474:37;:::i;5522:667::-;5617:6;5625;5633;5641;5694:3;5682:9;5673:7;5669:23;5665:33;5662:53;;;5711:1;5708;5701:12;5662:53;5734:29;5753:9;5734:29;:::i;:::-;5724:39;;5782:38;5816:2;5805:9;5801:18;5782:38;:::i;:::-;5772:48;;5867:2;5856:9;5852:18;5839:32;5829:42;;5922:2;5911:9;5907:18;5894:32;5949:18;5941:6;5938:30;5935:50;;;5981:1;5978;5971:12;5935:50;6004:22;;6057:4;6049:13;;6045:27;-1:-1:-1;6035:55:1;;6086:1;6083;6076:12;6035:55;6109:74;6175:7;6170:2;6157:16;6152:2;6148;6144:11;6109:74;:::i;:::-;6099:84;;;5522:667;;;;;;;:::o;6194:260::-;6262:6;6270;6323:2;6311:9;6302:7;6298:23;6294:32;6291:52;;;6339:1;6336;6329:12;6291:52;6362:29;6381:9;6362:29;:::i;:::-;6352:39;;6410:38;6444:2;6433:9;6429:18;6410:38;:::i;6648:380::-;6727:1;6723:12;;;;6770;;;6791:61;;6845:4;6837:6;6833:17;6823:27;;6791:61;6898:2;6890:6;6887:14;6867:18;6864:38;6861:161;;;6944:10;6939:3;6935:20;6932:1;6925:31;6979:4;6976:1;6969:15;7007:4;7004:1;6997:15;6861:161;;6648:380;;;:::o;7033:356::-;7235:2;7217:21;;;7254:18;;;7247:30;7313:34;7308:2;7293:18;;7286:62;7380:2;7365:18;;7033:356::o;8104:127::-;8165:10;8160:3;8156:20;8153:1;8146:31;8196:4;8193:1;8186:15;8220:4;8217:1;8210:15;8236:128;8276:3;8307:1;8303:6;8300:1;8297:13;8294:39;;;8313:18;;:::i;:::-;-1:-1:-1;8349:9:1;;8236:128::o;11221:1099::-;11349:3;11378:1;11411:6;11405:13;11441:3;11463:1;11491:9;11487:2;11483:18;11473:28;;11551:2;11540:9;11536:18;11573;11563:61;;11617:4;11609:6;11605:17;11595:27;;11563:61;11643:2;11691;11683:6;11680:14;11660:18;11657:38;11654:165;;;-1:-1:-1;;;11718:33:1;;11774:4;11771:1;11764:15;11804:4;11725:3;11792:17;11654:165;11835:18;11862:104;;;;11980:1;11975:320;;;;11828:467;;11862:104;-1:-1:-1;;11895:24:1;;11883:37;;11940:16;;;;-1:-1:-1;11862:104:1;;11975:320;11168:1;11161:14;;;11205:4;11192:18;;12070:1;12084:165;12098:6;12095:1;12092:13;12084:165;;;12176:14;;12163:11;;;12156:35;12219:16;;;;12113:10;;12084:165;;;12088:3;;12278:6;12273:3;12269:16;12262:23;;11828:467;-1:-1:-1;12311:3:1;;11221:1099;-1:-1:-1;;;;;;;;11221:1099:1:o;12325:637::-;12605:3;12643:6;12637:13;12659:53;12705:6;12700:3;12693:4;12685:6;12681:17;12659:53;:::i;:::-;12775:13;;12734:16;;;;12797:57;12775:13;12734:16;12831:4;12819:17;;12797:57;:::i;:::-;-1:-1:-1;;;12876:20:1;;12905:22;;;12954:1;12943:13;;12325:637;-1:-1:-1;;;;12325:637:1:o;13374:489::-;-1:-1:-1;;;;;13643:15:1;;;13625:34;;13695:15;;13690:2;13675:18;;13668:43;13742:2;13727:18;;13720:34;;;13790:3;13785:2;13770:18;;13763:31;;;13568:4;;13811:46;;13837:19;;13829:6;13811:46;:::i;:::-;13803:54;13374:489;-1:-1:-1;;;;;;13374:489:1:o;13868:249::-;13937:6;13990:2;13978:9;13969:7;13965:23;13961:32;13958:52;;;14006:1;14003;13996:12;13958:52;14038:9;14032:16;14057:30;14081:5;14057:30;:::i;14122:135::-;14161:3;-1:-1:-1;;14182:17:1;;14179:43;;;14202:18;;:::i;:::-;-1:-1:-1;14249:1:1;14238:13;;14122:135::o;14262:127::-;14323:10;14318:3;14314:20;14311:1;14304:31;14354:4;14351:1;14344:15;14378:4;14375:1;14368:15;14394:120;14434:1;14460;14450:35;;14465:18;;:::i;:::-;-1:-1:-1;14499:9:1;;14394:120::o;14519:125::-;14559:4;14587:1;14584;14581:8;14578:34;;;14592:18;;:::i;:::-;-1:-1:-1;14629:9:1;;14519:125::o;14649:112::-;14681:1;14707;14697:35;;14712:18;;:::i;:::-;-1:-1:-1;14746:9:1;;14649:112::o;14766:127::-;14827:10;14822:3;14818:20;14815:1;14808:31;14858:4;14855:1;14848:15;14882:4;14879:1;14872:15
Swarm Source
ipfs://23613c2e5bcbd797ef6d356b29db57098a3e42642202945c1d1b9045c065c2b5
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.