Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
513 🧬
Holders
270
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
9 🧬Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Seeder
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-14 */ // Sources flattened with hardhat v2.3.0 https://hardhat.org // File openzeppelin-solidity/contracts/GSN/[email protected] pragma solidity ^0.5.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 GSN 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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File openzeppelin-solidity/contracts/introspection/[email protected] pragma solidity ^0.5.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File openzeppelin-solidity/contracts/token/ERC721/[email protected] pragma solidity ^0.5.0; /** * @dev Required interface of an ERC721 compliant contract. */ contract IERC721 is IERC165 { event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of NFTs in `owner`'s account. */ function balanceOf(address owner) public view returns (uint256 balance); /** * @dev Returns the owner of the NFT specified by `tokenId`. */ function ownerOf(uint256 tokenId) public view returns (address owner); /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * * * Requirements: * - `from`, `to` cannot be zero. * - `tokenId` must be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this * NFT by either {approve} or {setApprovalForAll}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public; /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * Requirements: * - If the caller is not `from`, it must be approved to move this NFT by * either {approve} or {setApprovalForAll}. */ function transferFrom(address from, address to, uint256 tokenId) public; function approve(address to, uint256 tokenId) public; function getApproved(uint256 tokenId) public view returns (address operator); function setApprovalForAll(address operator, bool _approved) public; function isApprovedForAll(address owner, address operator) public view returns (bool); function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public; } // File openzeppelin-solidity/contracts/token/ERC721/[email protected] pragma solidity ^0.5.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ contract IERC721Receiver { /** * @notice Handle the receipt of an NFT * @dev The ERC721 smart contract calls this function on the recipient * after a {IERC721-safeTransferFrom}. This function MUST return the function selector, * otherwise the caller will revert the transaction. The selector to be * returned can be obtained as `this.onERC721Received.selector`. This * function MAY throw to revert and reject the transfer. * Note: the ERC721 contract address is always the message sender. * @param operator The address which called `safeTransferFrom` function * @param from The address which previously owned the token * @param tokenId The NFT identifier which is being transferred * @param data Additional data with no specified format * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` */ function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data) public returns (bytes4); } // File openzeppelin-solidity/contracts/math/[email protected] pragma solidity ^0.5.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File openzeppelin-solidity/contracts/utils/[email protected] pragma solidity ^0.5.5; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @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]. * * _Available since v2.4.0._ */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } } // File openzeppelin-solidity/contracts/drafts/[email protected] pragma solidity ^0.5.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath} * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never * directly accessed. */ library Counters { using SafeMath for uint256; struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { // The {SafeMath} overflow check can be skipped here, see the comment at the top counter._value += 1; } function decrement(Counter storage counter) internal { counter._value = counter._value.sub(1); } } // File openzeppelin-solidity/contracts/introspection/[email protected] pragma solidity ^0.5.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } // File openzeppelin-solidity/contracts/token/ERC721/[email protected] pragma solidity ^0.5.0; /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from token ID to owner mapping (uint256 => address) private _tokenOwner; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to number of owned token mapping (address => Counters.Counter) private _ownedTokensCount; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; constructor () public { // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); } /** * @dev Gets the balance of the specified address. * @param owner address to query the balance of * @return uint256 representing the amount owned by the passed address */ function balanceOf(address owner) public view returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _ownedTokensCount[owner].current(); } /** * @dev Gets the owner of the specified token ID. * @param tokenId uint256 ID of the token to query the owner of * @return address currently marked as the owner of the given token ID */ function ownerOf(uint256 tokenId) public view returns (address) { address owner = _tokenOwner[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev Approves another address to transfer the given token ID * The zero address indicates there is no approved address. * There can only be one approved address per token at a given time. * Can only be called by the token owner or an approved operator. * @param to address to be approved for the given token ID * @param tokenId uint256 ID of the token to be approved */ function approve(address to, uint256 tokenId) public { address owner = ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Gets the approved address for a token ID, or zero if no address set * Reverts if the token ID does not exist. * @param tokenId uint256 ID of the token to query the approval of * @return address currently approved for the given token ID */ function getApproved(uint256 tokenId) public view returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev Sets or unsets the approval of a given operator * An operator is allowed to transfer all tokens of the sender on their behalf. * @param to operator address to set the approval * @param approved representing the status of the approval to be set */ function setApprovalForAll(address to, bool approved) public { require(to != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][to] = approved; emit ApprovalForAll(_msgSender(), to, approved); } /** * @dev Tells whether an operator is approved by a given owner. * @param owner owner address which you want to query the approval of * @param operator operator address which you want to query the approval of * @return bool whether the given operator is approved by the given owner */ function isApprovedForAll(address owner, address operator) public view returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Transfers the ownership of a given token ID to another address. * Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * Requires the msg.sender to be the owner, approved, or operator. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function transferFrom(address from, address to, uint256 tokenId) public { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transferFrom(from, to, tokenId); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received}, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function safeTransferFrom(address from, address to, uint256 tokenId) public { safeTransferFrom(from, to, tokenId, ""); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received}, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the _msgSender() to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred * @param _data bytes data to send along with a safe transfer check */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransferFrom(from, to, tokenId, _data); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred * @param _data bytes data to send along with a safe transfer check */ function _safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) internal { _transferFrom(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether the specified token exists. * @param tokenId uint256 ID of the token to query the existence of * @return bool whether the token exists */ function _exists(uint256 tokenId) internal view returns (bool) { address owner = _tokenOwner[tokenId]; return owner != address(0); } /** * @dev Returns whether the given spender can transfer a given token ID. * @param spender address of the spender to query * @param tokenId uint256 ID of the token to be transferred * @return bool whether the msg.sender is approved for the given token ID, * is an operator of the owner, or is the owner of the token */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Internal function to safely mint a new token. * Reverts if the given token ID already exists. * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted */ function _safeMint(address to, uint256 tokenId) internal { _safeMint(to, tokenId, ""); } /** * @dev Internal function to safely mint a new token. * Reverts if the given token ID already exists. * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted * @param _data bytes data to send along with a safe transfer check */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Internal function to mint a new token. * Reverts if the given token ID already exists. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted */ function _mint(address to, uint256 tokenId) internal { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _tokenOwner[tokenId] = to; _ownedTokensCount[to].increment(); emit Transfer(address(0), to, tokenId); } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * Deprecated, use {_burn} instead. * @param owner owner of the token to burn * @param tokenId uint256 ID of the token being burned */ function _burn(address owner, uint256 tokenId) internal { require(ownerOf(tokenId) == owner, "ERC721: burn of token that is not own"); _clearApproval(tokenId); _ownedTokensCount[owner].decrement(); _tokenOwner[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * @param tokenId uint256 ID of the token being burned */ function _burn(uint256 tokenId) internal { _burn(ownerOf(tokenId), tokenId); } /** * @dev Internal function to transfer ownership of a given token ID to another address. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function _transferFrom(address from, address to, uint256 tokenId) internal { require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _clearApproval(tokenId); _ownedTokensCount[from].decrement(); _ownedTokensCount[to].increment(); _tokenOwner[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * This is an internal detail of the `ERC721` contract and its use is deprecated. * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) internal returns (bool) { if (!to.isContract()) { return true; } // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = to.call(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data )); if (!success) { if (returndata.length > 0) { // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert("ERC721: transfer to non ERC721Receiver implementer"); } } else { bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } } /** * @dev Private function to clear current approval of a given token ID. * @param tokenId uint256 ID of the token to be transferred */ function _clearApproval(uint256 tokenId) private { if (_tokenApprovals[tokenId] != address(0)) { _tokenApprovals[tokenId] = address(0); } } } // File openzeppelin-solidity/contracts/token/ERC721/[email protected] pragma solidity ^0.5.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract IERC721Enumerable is IERC721 { function totalSupply() public view returns (uint256); function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256 tokenId); function tokenByIndex(uint256 index) public view returns (uint256); } // File openzeppelin-solidity/contracts/token/ERC721/[email protected] pragma solidity ^0.5.0; /** * @title ERC-721 Non-Fungible Token with optional enumeration extension logic * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721Enumerable is Context, ERC165, ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => uint256[]) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Constructor function. */ constructor () public { // register the supported interface to conform to ERC721Enumerable via ERC165 _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev Gets the token ID at a given index of the tokens list of the requested owner. * @param owner address owning the tokens list to be accessed * @param index uint256 representing the index to be accessed of the requested tokens list * @return uint256 token ID at the given index of the tokens list owned by the requested address */ function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256) { require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev Gets the total amount of tokens stored by the contract. * @return uint256 representing the total amount of tokens */ function totalSupply() public view returns (uint256) { return _allTokens.length; } /** * @dev Gets the token ID at a given index of all the tokens in this contract * Reverts if the index is greater or equal to the total number of tokens. * @param index uint256 representing the index to be accessed of the tokens list * @return uint256 token ID at the given index of the tokens list */ function tokenByIndex(uint256 index) public view returns (uint256) { require(index < totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Internal function to transfer ownership of a given token ID to another address. * As opposed to transferFrom, this imposes no restrictions on msg.sender. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function _transferFrom(address from, address to, uint256 tokenId) internal { super._transferFrom(from, to, tokenId); _removeTokenFromOwnerEnumeration(from, tokenId); _addTokenToOwnerEnumeration(to, tokenId); } /** * @dev Internal function to mint a new token. * Reverts if the given token ID already exists. * @param to address the beneficiary that will own the minted token * @param tokenId uint256 ID of the token to be minted */ function _mint(address to, uint256 tokenId) internal { super._mint(to, tokenId); _addTokenToOwnerEnumeration(to, tokenId); _addTokenToAllTokensEnumeration(tokenId); } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * Deprecated, use {ERC721-_burn} instead. * @param owner owner of the token to burn * @param tokenId uint256 ID of the token being burned */ function _burn(address owner, uint256 tokenId) internal { super._burn(owner, tokenId); _removeTokenFromOwnerEnumeration(owner, tokenId); // Since tokenId will be deleted, we can clear its slot in _ownedTokensIndex to trigger a gas refund _ownedTokensIndex[tokenId] = 0; _removeTokenFromAllTokensEnumeration(tokenId); } /** * @dev Gets the list of token IDs of the requested owner. * @param owner address owning the tokens * @return uint256[] List of token IDs owned by the requested address */ function _tokensOfOwner(address owner) internal view returns (uint256[] storage) { return _ownedTokens[owner]; } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { _ownedTokensIndex[tokenId] = _ownedTokens[to].length; _ownedTokens[to].push(tokenId); } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _ownedTokens[from].length.sub(1); uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array _ownedTokens[from].length--; // Note that _ownedTokensIndex[tokenId] hasn't been cleared: it still points to the old slot (now occupied by // lastTokenId, or just over the end of the array if the token was the last one). } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length.sub(1); uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array _allTokens.length--; _allTokensIndex[tokenId] = 0; } } // File openzeppelin-solidity/contracts/token/ERC721/[email protected] pragma solidity ^0.5.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract IERC721Metadata is IERC721 { function name() external view returns (string memory); function symbol() external view returns (string memory); function tokenURI(uint256 tokenId) external view returns (string memory); } // File openzeppelin-solidity/contracts/token/ERC721/[email protected] pragma solidity ^0.5.0; contract ERC721Metadata is Context, ERC165, ERC721, IERC721Metadata { // Token name string private _name; // Token symbol string private _symbol; // Base URI string private _baseURI; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /** * @dev Constructor function */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721_METADATA); } /** * @dev Gets the token name. * @return string representing the token name */ function name() external view returns (string memory) { return _name; } /** * @dev Gets the token symbol. * @return string representing the token symbol */ function symbol() external view returns (string memory) { return _symbol; } /** * @dev Returns the URI for a given token ID. May return an empty string. * * If the token's URI is non-empty and a base URI was set (via * {_setBaseURI}), it will be added to the token ID's URI as a prefix. * * Reverts if the token ID does not exist. */ function tokenURI(uint256 tokenId) external view returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; // Even if there is a base URI, it is only appended to non-empty token-specific URIs if (bytes(_tokenURI).length == 0) { return ""; } else { // abi.encodePacked is being used to concatenate strings return string(abi.encodePacked(_baseURI, _tokenURI)); } } /** * @dev Internal function to set the token URI for a given token. * * Reverts if the token ID does not exist. * * TIP: if all token IDs share a prefix (e.g. if your URIs look like * `http://api.myproject.com/token/<id>`), use {_setBaseURI} to store * it and save gas. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}. * * _Available since v2.5.0._ */ function _setBaseURI(string memory baseURI) internal { _baseURI = baseURI; } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a preffix in {tokenURI} to each token's URI, when * they are non-empty. * * _Available since v2.5.0._ */ function baseURI() external view returns (string memory) { return _baseURI; } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * Deprecated, use _burn(uint256) instead. * @param owner owner of the token to burn * @param tokenId uint256 ID of the token being burned by the msg.sender */ function _burn(address owner, uint256 tokenId) internal { super._burn(owner, tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File openzeppelin-solidity/contracts/token/ERC721/[email protected] pragma solidity ^0.5.0; /** * @title Full ERC721 Token * @dev This implementation includes all the required and some optional functionality of the ERC721 standard * Moreover, it includes approve all functionality using operator terminology. * * See https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721Full is ERC721, ERC721Enumerable, ERC721Metadata { constructor (string memory name, string memory symbol) public ERC721Metadata(name, symbol) { // solhint-disable-previous-line no-empty-blocks } } // File openzeppelin-solidity/contracts/token/ERC20/[email protected] pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File openzeppelin-solidity/contracts/ownership/[email protected] pragma solidity ^0.5.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. * * 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. */ 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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _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 onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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 onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File openzeppelin-solidity/contracts/access/[email protected] pragma solidity ^0.5.0; /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } // File contracts/helpers/strings.sol /* * @title String & slice utility library for Solidity contracts. * @author Nick Johnson <[email protected]> */ pragma solidity ^0.5.0; library strings { struct slice { uint _len; uint _ptr; } function memcpy(uint dest, uint src, uint len) private pure { // Copy word-length chunks while possible for (; len >= 32; len -= 32) { assembly { mstore(dest, mload(src)) } dest += 32; src += 32; } // Copy remaining bytes uint mask = 256 ** (32 - len) - 1; assembly { let srcpart := and(mload(src), not(mask)) let destpart := and(mload(dest), mask) mstore(dest, or(destpart, srcpart)) } } /* * @dev Returns a slice containing the entire string. * @param self The string to make a slice from. * @return A newly allocated slice containing the entire string. */ function toSlice(string memory self) internal pure returns (slice memory) { uint ptr; assembly { ptr := add(self, 0x20) } return slice(bytes(self).length, ptr); } /* * @dev Returns a newly allocated string containing the concatenation of * `self` and `other`. * @param self The first slice to concatenate. * @param other The second slice to concatenate. * @return The concatenation of the two strings. */ function concat(slice memory self, slice memory other) internal pure returns (string memory) { string memory ret = new string(self._len + other._len); uint retptr; assembly { retptr := add(ret, 32) } memcpy(retptr, self._ptr, self._len); memcpy(retptr + self._len, other._ptr, other._len); return ret; } } // File contracts/Metadata.sol /** * Forked from folia-app/folia-contracts: https://github.com/folia-app/folia-contracts * Many thanks to Billy Rennekamp <https://github.com/okwme> and Folia <https://www.folia.app/> 💚 */ pragma solidity ^0.5.0; /** * Metadata contract is upgradeable and returns metadata about Token */ contract Metadata { using strings for *; function tokenURI(uint256 _tokenId) public pure returns (string memory _infoUrl) { string memory base = "https://seeder.mutant.garden/v1/tokens/"; string memory id = uint2str(_tokenId); return base.toSlice().concat(id.toSlice()); } function uint2str(uint256 i) internal pure returns (string memory) { if (i == 0) return "0"; uint256 j = i; uint256 length; while (j != 0) { length++; j /= 10; } bytes memory bstr = new bytes(length); uint256 k = length - 1; while (i != 0) { uint256 _uint = 48 + (i % 10); bstr[k--] = toBytes(_uint)[31]; i /= 10; } return string(bstr); } function toBytes(uint256 x) public pure returns (bytes memory b) { b = new bytes(32); assembly { mstore(add(b, 32), x) } } } // File contracts/Seeder.sol /** * Forked from folia-app/folia-contracts: https://github.com/folia-app/folia-contracts * Many thanks to Billy Rennekamp <https://github.com/okwme> and Folia <https://www.folia.app/> 💚 */ pragma solidity ^0.5.0; contract Seeder is ERC721Full, Ownable { using Roles for Roles.Role; Roles.Role private _admins; uint8 admins; address public metadata; address public controller; modifier onlyAdminOrController() { require( (_admins.has(msg.sender) || msg.sender == controller), "You are not an admin or controller" ); _; } constructor( string memory name, string memory symbol, address _metadata ) public ERC721Full(name, symbol) { metadata = _metadata; _admins.add(msg.sender); admins += 1; } function mint(address recipient, uint256 tokenId) public onlyAdminOrController returns (uint256) { _mint(recipient, tokenId); } function burn(uint256 tokenId) public onlyAdminOrController { _burn(ownerOf(tokenId), tokenId); } function updateMetadata(address _metadata) public onlyAdminOrController { metadata = _metadata; } function updateController(address _controller) public onlyAdminOrController { controller = _controller; } function addAdmin(address _admin) public onlyOwner { _admins.add(_admin); admins += 1; } function removeAdmin(address _admin) public onlyOwner { require(admins > 1, "Cannot remove the last admin"); _admins.remove(_admin); admins -= 1; } function tokenURI(uint256 _tokenId) external view returns (string memory _infoUrl) { return Metadata(metadata).tokenURI(_tokenId); } /** * @dev Moves Token to a certain address. * @param _to The address to receive the Token. * @param _amount The amount of Token to be transferred. * @param _token The address of the Token to be transferred. */ function moveToken( address _to, uint256 _amount, address _token ) public onlyAdminOrController returns (bool) { require(_amount <= IERC20(_token).balanceOf(address(this))); return IERC20(_token).transfer(_to, _amount); } } // File openzeppelin-solidity/contracts/utils/[email protected] pragma solidity ^0.5.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. * * _Since v2.5.0:_ this module is now much more gas efficient, given net gas * metering changes introduced in the Istanbul hardfork. */ contract ReentrancyGuard { bool private _notEntered; constructor () internal { // Storing an initial non-zero value makes deployment a bit more // expensive, but in exchange the refund on every call to nonReentrant // will be lower in amount. Since refunds are capped to a percetange of // the total transaction's gas, it is best to keep them low in cases // like this one, to increase the likelihood of the full refund coming // into effect. _notEntered = true; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_notEntered, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _notEntered = false; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _notEntered = true; } } // File contracts/SeederController.sol /** * Forked from folia-app/folia-contracts: https://github.com/folia-app/folia-contracts * Many thanks to Billy Rennekamp <https://github.com/okwme> and Folia <https://www.folia.app/> 💚 */ pragma solidity ^0.5.0; contract SeederController is Ownable, ReentrancyGuard { address payable public artist; uint256 public price = 0.33 ether; uint256 public adminSplit = 15; uint256 public minBlockAge = 10; uint256 public maxBlockAge = 64; bool public paused = false; uint256 constant MAX_TOKENS = 512; // mapping (uint256 => uint256) public birthBlocks; // mapping (uint256 => bool) public exists; event updated( address payable artist, uint256 price, uint256 adminSplit, bool paused ); event editionBought( uint256 tokenId, address recipient, uint256 paid, uint256 artistReceived, uint256 adminReceived ); using SafeMath for uint256; address payable public adminWallet; Seeder public seeder; modifier notPaused() { require(!paused, "Controller is paused"); _; } constructor(Seeder _seeder, address payable _adminWallet) public { seeder = _seeder; adminWallet = _adminWallet; } function updatePaused(bool _paused) public onlyOwner { paused = _paused; emit updated( artist, price, adminSplit, paused ); } function updatePrice(uint256 _price) public onlyOwner { price = _price; emit updated( artist, price, adminSplit, paused ); } function buy(address recipient, uint256 tokenId) public payable notPaused nonReentrant { require(msg.value >= price, "You did not send enough ether"); // require(tokenId >= doNotMintBeforeBlock, "That's too far back in history"); require(block.number >= tokenId + minBlockAge, "Cannot mint a mutant in the future"); require(block.number < tokenId + maxBlockAge, "Cannot mint a mutant to far in the past"); uint256 totalSupply = seeder.totalSupply(); require(totalSupply <= MAX_TOKENS, "No more available mutants to mint"); seeder.mint(recipient, tokenId); uint256 adminReceives = msg.value.mul(adminSplit).div(100); uint256 artistReceives = msg.value.sub(adminReceives); bool success; (success, ) = adminWallet.call.value(adminReceives)(""); require(success, "Admin failed to receive"); (success, ) = artist.call.value(artistReceives)(""); require(success, "Artist failed to receive"); emit editionBought( tokenId, recipient, msg.value, artistReceives, adminReceives ); } function updateAdminSplit(uint256 _adminSplit) public onlyOwner { require(adminSplit <= 100, "The admin split must be less or equal to 100"); adminSplit = _adminSplit; emit updated( artist, price, adminSplit, paused ); } function updateAdminWallet(address payable _adminWallet) public onlyOwner { adminWallet = _adminWallet; } function updateArtist(address payable _artist) public onlyOwner { artist = _artist; } function updateMinBlockAge(uint256 _minBlockAge) public onlyOwner { minBlockAge = _minBlockAge; } function updateMaxBlockAge(uint256 _maxBlockAge) public onlyOwner { maxBlockAge = _maxBlockAge; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"_metadata","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"name":"addAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"metadata","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_token","type":"address"}],"name":"moveToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"name":"removeAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"_infoUrl","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"updateController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_metadata","type":"address"}],"name":"updateMetadata","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002a4738038062002a47833981810160405260608110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b50604052602001519150839050828181620001c36301ffc9a760e01b6001600160e01b03620002fc16565b620001de6380ac58cd60e01b6001600160e01b03620002fc16565b620001f963780e9d6360e01b6001600160e01b03620002fc16565b81516200020e9060099060208501906200047c565b5080516200022490600a9060208401906200047c565b5062000240635b5e139f60e01b6001600160e01b03620002fc16565b505050506000620002566200038160201b60201c565b600d80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600f8054610100600160a81b0319166101006001600160a01b03841602179055620002dd600e3362000386602090811b620016b317901c565b5050600f805460ff8082166001011660ff19909116179055506200051e565b6001600160e01b031980821614156200035c576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b335b90565b6200039b82826001600160e01b036200041316565b15620003ee576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b0382166200045c5760405162461bcd60e51b815260040180806020018281038252602281526020018062002a256022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004bf57805160ff1916838001178555620004ef565b82800160010185558215620004ef579182015b82811115620004ef578251825591602001919060010190620004d2565b50620004fd92915062000501565b5090565b6200038391905b80821115620004fd576000815560010162000508565b6124f7806200052e6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80636352211e1161010457806395d89b41116100a2578063c87b56dd11610071578063c87b56dd1461064b578063e985e9c514610668578063f2fde38b14610696578063f77c4791146106bc576101da565b806395d89b4114610529578063a22cb46514610531578063b88d4fde1461055f578063c5e2a7db14610625576101da565b806370a08231116100de57806370a08231146104eb578063715018a6146105115780638da5cb5b146105195780638f32d59b14610521576101da565b80636352211e146104a05780636c0360eb146104bd57806370480275146104c5576101da565b806318160ddd1161017c57806340c10f191161014b57806340c10f191461040457806342842e0e1461043057806342966c68146104665780634f6ccce714610483576101da565b806318160ddd1461038057806323b872dd1461039a5780632f745c59146103d0578063392f37e9146103fc576101da565b806306fdde03116101b857806306fdde0314610278578063081812fc146102f5578063095ea7b31461032e5780631785f53c1461035a576101da565b806301ffc9a7146101df578063048e62ca1461021a57806306cb5b6614610250575b600080fd5b610206600480360360208110156101f557600080fd5b50356001600160e01b0319166106c4565b604080519115158252519081900360200190f35b6102066004803603606081101561023057600080fd5b506001600160a01b038135811691602081013591604090910135166106e3565b6102766004803603602081101561026657600080fd5b50356001600160a01b0316610858565b005b6102806108db565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ba5781810151838201526020016102a2565b50505050905090810190601f1680156102e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103126004803603602081101561030b57600080fd5b5035610972565b604080516001600160a01b039092168252519081900360200190f35b6102766004803603604081101561034457600080fd5b506001600160a01b0381351690602001356109d4565b6102766004803603602081101561037057600080fd5b50356001600160a01b0316610afc565b610388610bcb565b60408051918252519081900360200190f35b610276600480360360608110156103b057600080fd5b506001600160a01b03813581169160208101359091169060400135610bd1565b610388600480360360408110156103e657600080fd5b506001600160a01b038135169060200135610c2d565b610312610cad565b6103886004803603604081101561041a57600080fd5b506001600160a01b038135169060200135610cc1565b6102766004803603606081101561044657600080fd5b506001600160a01b03813581169160208101359091169060400135610d2e565b6102766004803603602081101561047c57600080fd5b5035610d49565b6103886004803603602081101561049957600080fd5b5035610dbf565b610312600480360360208110156104b657600080fd5b5035610e25565b610280610e79565b610276600480360360208110156104db57600080fd5b50356001600160a01b0316610eda565b6103886004803603602081101561050157600080fd5b50356001600160a01b0316610f4b565b610276610fb3565b610312611044565b610206611053565b610280611079565b6102766004803603604081101561054757600080fd5b506001600160a01b03813516906020013515156110da565b6102766004803603608081101561057557600080fd5b6001600160a01b038235811692602081013590911691604082013591908101906080810160608201356401000000008111156105b057600080fd5b8201836020820111156105c257600080fd5b803590602001918460018302840111640100000000831117156105e457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506111df945050505050565b6102766004803603602081101561063b57600080fd5b50356001600160a01b031661123d565b6102806004803603602081101561066157600080fd5b50356112c6565b6102066004803603604081101561067e57600080fd5b506001600160a01b038135811691602001351661140b565b610276600480360360208110156106ac57600080fd5b50356001600160a01b0316611439565b610312611489565b6001600160e01b03191660009081526020819052604090205460ff1690565b60006106f6600e3363ffffffff61149816565b8061070b57506010546001600160a01b031633145b6107465760405162461bcd60e51b815260040180806020018281038252602281526020018061226b6022913960400191505060405180910390fd5b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561078c57600080fd5b505afa1580156107a0573d6000803e3d6000fd5b505050506040513d60208110156107b657600080fd5b50518311156107c457600080fd5b816001600160a01b031663a9059cbb85856040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561082457600080fd5b505af1158015610838573d6000803e3d6000fd5b505050506040513d602081101561084e57600080fd5b5051949350505050565b610869600e3363ffffffff61149816565b8061087e57506010546001600160a01b031633145b6108b95760405162461bcd60e51b815260040180806020018281038252602281526020018061226b6022913960400191505060405180910390fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b505050505090505b90565b600061097d826114ff565b6109b85760405162461bcd60e51b815260040180806020018281038252602c815260200180612389602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b60006109df82610e25565b9050806001600160a01b0316836001600160a01b03161415610a325760405162461bcd60e51b81526004018080602001828103825260218152602001806124206021913960400191505060405180910390fd5b806001600160a01b0316610a4461151c565b6001600160a01b03161480610a655750610a6581610a6061151c565b61140b565b610aa05760405162461bcd60e51b81526004018080602001828103825260388152602001806122dd6038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b04611053565b610b43576040805162461bcd60e51b815260206004820181905260248201526000805160206123b5833981519152604482015290519081900360640190fd5b600f54600160ff90911611610b9f576040805162461bcd60e51b815260206004820152601c60248201527f43616e6e6f742072656d6f766520746865206c6173742061646d696e00000000604482015290519081900360640190fd5b610bb0600e8263ffffffff61152016565b50600f805460ff19811660ff91821660001901909116179055565b60075490565b610be2610bdc61151c565b82611587565b610c1d5760405162461bcd60e51b81526004018080602001828103825260318152602001806124416031913960400191505060405180910390fd5b610c2883838361162b565b505050565b6000610c3883610f4b565b8210610c755760405162461bcd60e51b815260040180806020018281038252602b8152602001806121e8602b913960400191505060405180910390fd5b6001600160a01b0383166000908152600560205260409020805483908110610c9957fe5b906000526020600020015490505b92915050565b600f5461010090046001600160a01b031681565b6000610cd4600e3363ffffffff61149816565b80610ce957506010546001600160a01b031633145b610d245760405162461bcd60e51b815260040180806020018281038252602281526020018061226b6022913960400191505060405180910390fd5b610ca7838361164a565b610c28838383604051806020016040528060008152506111df565b610d5a600e3363ffffffff61149816565b80610d6f57506010546001600160a01b031633145b610daa5760405162461bcd60e51b815260040180806020018281038252602281526020018061226b6022913960400191505060405180910390fd5b610dbc610db682610e25565b8261166b565b50565b6000610dc9610bcb565b8210610e065760405162461bcd60e51b815260040180806020018281038252602c815260200180612472602c913960400191505060405180910390fd5b60078281548110610e1357fe5b90600052602060002001549050919050565b6000818152600160205260408120546001600160a01b031680610ca75760405162461bcd60e51b815260040180806020018281038252602981526020018061233f6029913960400191505060405180910390fd5b600b8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109675780601f1061093c57610100808354040283529160200191610967565b610ee2611053565b610f21576040805162461bcd60e51b815260206004820181905260248201526000805160206123b5833981519152604482015290519081900360640190fd5b610f32600e8263ffffffff6116b316565b50600f805460ff8082166001011660ff19909116179055565b60006001600160a01b038216610f925760405162461bcd60e51b815260040180806020018281038252602a815260200180612315602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600360205260409020610ca790611734565b610fbb611053565b610ffa576040805162461bcd60e51b815260206004820181905260248201526000805160206123b5833981519152604482015290519081900360640190fd5b600d546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600d80546001600160a01b0319169055565b600d546001600160a01b031690565b600d546000906001600160a01b031661106a61151c565b6001600160a01b031614905090565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109675780601f1061093c57610100808354040283529160200191610967565b6110e261151c565b6001600160a01b0316826001600160a01b03161415611148576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b806004600061115561151c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561119961151c565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b6111f06111ea61151c565b83611587565b61122b5760405162461bcd60e51b81526004018080602001828103825260318152602001806124416031913960400191505060405180910390fd5b61123784848484611738565b50505050565b61124e600e3363ffffffff61149816565b8061126357506010546001600160a01b031633145b61129e5760405162461bcd60e51b815260040180806020018281038252602281526020018061226b6022913960400191505060405180910390fd5b600f80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600f546040805163c87b56dd60e01b815260048101849052905160609261010090046001600160a01b03169163c87b56dd916024808301926000929190829003018186803b15801561131757600080fd5b505afa15801561132b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561135457600080fd5b810190808051604051939291908464010000000082111561137457600080fd5b90830190602082018581111561138957600080fd5b82516401000000008111828201881017156113a357600080fd5b82525081516020918201929091019080838360005b838110156113d05781810151838201526020016113b8565b50505050905090810190601f1680156113fd5780820380516001836020036101000a031916815260200191505b506040525050509050919050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b611441611053565b611480576040805162461bcd60e51b815260206004820181905260248201526000805160206123b5833981519152604482015290519081900360640190fd5b610dbc8161178a565b6010546001600160a01b031681565b60006001600160a01b0382166114df5760405162461bcd60e51b81526004018080602001828103825260228152602001806123d56022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6000908152600160205260409020546001600160a01b0316151590565b3390565b61152a8282611498565b6115655760405162461bcd60e51b81526004018080602001828103825260218152602001806123686021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000611592826114ff565b6115cd5760405162461bcd60e51b815260040180806020018281038252602c8152602001806122b1602c913960400191505060405180910390fd5b60006115d883610e25565b9050806001600160a01b0316846001600160a01b031614806116135750836001600160a01b031661160884610972565b6001600160a01b0316145b806116235750611623818561140b565b949350505050565b61163683838361182b565b611640838261196f565b610c288282611a64565b6116548282611aa2565b61165e8282611a64565b61166781611bd3565b5050565b6116758282611c17565b6000818152600c60205260409020546002600019610100600184161502019091160415611667576000818152600c6020526040812061166791612165565b6116bd8282611498565b1561170f576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b5490565b61174384848461162b565b61174f84848484611c43565b6112375760405162461bcd60e51b81526004018080602001828103825260328152602001806122136032913960400191505060405180910390fd5b6001600160a01b0381166117cf5760405162461bcd60e51b81526004018080602001828103825260268152602001806122456026913960400191505060405180910390fd5b600d546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b031661183e82610e25565b6001600160a01b0316146118835760405162461bcd60e51b81526004018080602001828103825260298152602001806123f76029913960400191505060405180910390fd5b6001600160a01b0382166118c85760405162461bcd60e51b815260040180806020018281038252602481526020018061228d6024913960400191505060405180910390fd5b6118d181611e7e565b6001600160a01b03831660009081526003602052604090206118f290611eb9565b6001600160a01b038216600090815260036020526040902061191390611ed0565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821660009081526005602052604081205461199990600163ffffffff611ed916565b600083815260066020526040902054909150808214611a34576001600160a01b03841660009081526005602052604081208054849081106119d657fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b031681526020019081526020016000208381548110611a1457fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b0384166000908152600560205260409020805490611a5d9060001983016121a9565b5050505050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b6001600160a01b038216611afd576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b611b06816114ff565b15611b58576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b038716908117909155835260039091529020611b9790611ed0565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b611c218282611f22565b611c2b828261196f565b60008181526006602052604081205561166781611ff9565b6000611c57846001600160a01b0316612095565b611c6357506001611623565b600060606001600160a01b038616630a85bd0160e11b611c8161151c565b89888860405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611cfa578181015183820152602001611ce2565b50505050905090810190601f168015611d275780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b60208310611d8f5780518252601f199092019160209182019101611d70565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611df1576040519150601f19603f3d011682016040523d82523d6000602084013e611df6565b606091505b509150915081611e4757805115611e105780518082602001fd5b60405162461bcd60e51b81526004018080602001828103825260328152602001806122136032913960400191505060405180910390fd5b6000818060200190516020811015611e5e57600080fd5b50516001600160e01b031916630a85bd0160e11b14935061162392505050565b6000818152600260205260409020546001600160a01b031615610dbc57600090815260026020526040902080546001600160a01b0319169055565b8054611ecc90600163ffffffff611ed916565b9055565b80546001019055565b6000611f1b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120ce565b9392505050565b816001600160a01b0316611f3582610e25565b6001600160a01b031614611f7a5760405162461bcd60e51b815260040180806020018281038252602581526020018061249e6025913960400191505060405180910390fd5b611f8381611e7e565b6001600160a01b0382166000908152600360205260409020611fa490611eb9565b60008181526001602052604080822080546001600160a01b0319169055518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60075460009061201090600163ffffffff611ed916565b6000838152600860205260408120546007805493945090928490811061203257fe5b90600052602060002001549050806007838154811061204d57fe5b600091825260208083209091019290925582815260089091526040902082905560078054906120809060001983016121a9565b50505060009182525060086020526040812055565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611623575050151592915050565b6000818484111561215d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561212257818101518382015260200161210a565b50505050905090810190601f16801561214f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b50805460018160011615610100020316600290046000825580601f1061218b5750610dbc565b601f016020900490600052602060002090810190610dbc91906121c9565b815481835581811115610c2857600083815260209020610c289181019083015b61096f91905b808211156121e357600081556001016121cf565b509056fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373596f7520617265206e6f7420616e2061646d696e206f7220636f6e74726f6c6c65724552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e64734552433732313a206275726e206f6620746f6b656e2074686174206973206e6f74206f776ea265627a7a72315820dba6033f2b09fd5dbc50212c4a1594e9183c3e625c618d7929c9139362a4652564736f6c63430005110032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000cb05165e659da248e7d0ee3d8c85b8cc3be0dc7000000000000000000000000000000000000000000000000000000000000000144d7574616e742047617264656e205365656465720000000000000000000000000000000000000000000000000000000000000000000000000000000000000004f09fa7ac00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80636352211e1161010457806395d89b41116100a2578063c87b56dd11610071578063c87b56dd1461064b578063e985e9c514610668578063f2fde38b14610696578063f77c4791146106bc576101da565b806395d89b4114610529578063a22cb46514610531578063b88d4fde1461055f578063c5e2a7db14610625576101da565b806370a08231116100de57806370a08231146104eb578063715018a6146105115780638da5cb5b146105195780638f32d59b14610521576101da565b80636352211e146104a05780636c0360eb146104bd57806370480275146104c5576101da565b806318160ddd1161017c57806340c10f191161014b57806340c10f191461040457806342842e0e1461043057806342966c68146104665780634f6ccce714610483576101da565b806318160ddd1461038057806323b872dd1461039a5780632f745c59146103d0578063392f37e9146103fc576101da565b806306fdde03116101b857806306fdde0314610278578063081812fc146102f5578063095ea7b31461032e5780631785f53c1461035a576101da565b806301ffc9a7146101df578063048e62ca1461021a57806306cb5b6614610250575b600080fd5b610206600480360360208110156101f557600080fd5b50356001600160e01b0319166106c4565b604080519115158252519081900360200190f35b6102066004803603606081101561023057600080fd5b506001600160a01b038135811691602081013591604090910135166106e3565b6102766004803603602081101561026657600080fd5b50356001600160a01b0316610858565b005b6102806108db565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ba5781810151838201526020016102a2565b50505050905090810190601f1680156102e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103126004803603602081101561030b57600080fd5b5035610972565b604080516001600160a01b039092168252519081900360200190f35b6102766004803603604081101561034457600080fd5b506001600160a01b0381351690602001356109d4565b6102766004803603602081101561037057600080fd5b50356001600160a01b0316610afc565b610388610bcb565b60408051918252519081900360200190f35b610276600480360360608110156103b057600080fd5b506001600160a01b03813581169160208101359091169060400135610bd1565b610388600480360360408110156103e657600080fd5b506001600160a01b038135169060200135610c2d565b610312610cad565b6103886004803603604081101561041a57600080fd5b506001600160a01b038135169060200135610cc1565b6102766004803603606081101561044657600080fd5b506001600160a01b03813581169160208101359091169060400135610d2e565b6102766004803603602081101561047c57600080fd5b5035610d49565b6103886004803603602081101561049957600080fd5b5035610dbf565b610312600480360360208110156104b657600080fd5b5035610e25565b610280610e79565b610276600480360360208110156104db57600080fd5b50356001600160a01b0316610eda565b6103886004803603602081101561050157600080fd5b50356001600160a01b0316610f4b565b610276610fb3565b610312611044565b610206611053565b610280611079565b6102766004803603604081101561054757600080fd5b506001600160a01b03813516906020013515156110da565b6102766004803603608081101561057557600080fd5b6001600160a01b038235811692602081013590911691604082013591908101906080810160608201356401000000008111156105b057600080fd5b8201836020820111156105c257600080fd5b803590602001918460018302840111640100000000831117156105e457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506111df945050505050565b6102766004803603602081101561063b57600080fd5b50356001600160a01b031661123d565b6102806004803603602081101561066157600080fd5b50356112c6565b6102066004803603604081101561067e57600080fd5b506001600160a01b038135811691602001351661140b565b610276600480360360208110156106ac57600080fd5b50356001600160a01b0316611439565b610312611489565b6001600160e01b03191660009081526020819052604090205460ff1690565b60006106f6600e3363ffffffff61149816565b8061070b57506010546001600160a01b031633145b6107465760405162461bcd60e51b815260040180806020018281038252602281526020018061226b6022913960400191505060405180910390fd5b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561078c57600080fd5b505afa1580156107a0573d6000803e3d6000fd5b505050506040513d60208110156107b657600080fd5b50518311156107c457600080fd5b816001600160a01b031663a9059cbb85856040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561082457600080fd5b505af1158015610838573d6000803e3d6000fd5b505050506040513d602081101561084e57600080fd5b5051949350505050565b610869600e3363ffffffff61149816565b8061087e57506010546001600160a01b031633145b6108b95760405162461bcd60e51b815260040180806020018281038252602281526020018061226b6022913960400191505060405180910390fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b505050505090505b90565b600061097d826114ff565b6109b85760405162461bcd60e51b815260040180806020018281038252602c815260200180612389602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b60006109df82610e25565b9050806001600160a01b0316836001600160a01b03161415610a325760405162461bcd60e51b81526004018080602001828103825260218152602001806124206021913960400191505060405180910390fd5b806001600160a01b0316610a4461151c565b6001600160a01b03161480610a655750610a6581610a6061151c565b61140b565b610aa05760405162461bcd60e51b81526004018080602001828103825260388152602001806122dd6038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b04611053565b610b43576040805162461bcd60e51b815260206004820181905260248201526000805160206123b5833981519152604482015290519081900360640190fd5b600f54600160ff90911611610b9f576040805162461bcd60e51b815260206004820152601c60248201527f43616e6e6f742072656d6f766520746865206c6173742061646d696e00000000604482015290519081900360640190fd5b610bb0600e8263ffffffff61152016565b50600f805460ff19811660ff91821660001901909116179055565b60075490565b610be2610bdc61151c565b82611587565b610c1d5760405162461bcd60e51b81526004018080602001828103825260318152602001806124416031913960400191505060405180910390fd5b610c2883838361162b565b505050565b6000610c3883610f4b565b8210610c755760405162461bcd60e51b815260040180806020018281038252602b8152602001806121e8602b913960400191505060405180910390fd5b6001600160a01b0383166000908152600560205260409020805483908110610c9957fe5b906000526020600020015490505b92915050565b600f5461010090046001600160a01b031681565b6000610cd4600e3363ffffffff61149816565b80610ce957506010546001600160a01b031633145b610d245760405162461bcd60e51b815260040180806020018281038252602281526020018061226b6022913960400191505060405180910390fd5b610ca7838361164a565b610c28838383604051806020016040528060008152506111df565b610d5a600e3363ffffffff61149816565b80610d6f57506010546001600160a01b031633145b610daa5760405162461bcd60e51b815260040180806020018281038252602281526020018061226b6022913960400191505060405180910390fd5b610dbc610db682610e25565b8261166b565b50565b6000610dc9610bcb565b8210610e065760405162461bcd60e51b815260040180806020018281038252602c815260200180612472602c913960400191505060405180910390fd5b60078281548110610e1357fe5b90600052602060002001549050919050565b6000818152600160205260408120546001600160a01b031680610ca75760405162461bcd60e51b815260040180806020018281038252602981526020018061233f6029913960400191505060405180910390fd5b600b8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109675780601f1061093c57610100808354040283529160200191610967565b610ee2611053565b610f21576040805162461bcd60e51b815260206004820181905260248201526000805160206123b5833981519152604482015290519081900360640190fd5b610f32600e8263ffffffff6116b316565b50600f805460ff8082166001011660ff19909116179055565b60006001600160a01b038216610f925760405162461bcd60e51b815260040180806020018281038252602a815260200180612315602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600360205260409020610ca790611734565b610fbb611053565b610ffa576040805162461bcd60e51b815260206004820181905260248201526000805160206123b5833981519152604482015290519081900360640190fd5b600d546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600d80546001600160a01b0319169055565b600d546001600160a01b031690565b600d546000906001600160a01b031661106a61151c565b6001600160a01b031614905090565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109675780601f1061093c57610100808354040283529160200191610967565b6110e261151c565b6001600160a01b0316826001600160a01b03161415611148576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b806004600061115561151c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561119961151c565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b6111f06111ea61151c565b83611587565b61122b5760405162461bcd60e51b81526004018080602001828103825260318152602001806124416031913960400191505060405180910390fd5b61123784848484611738565b50505050565b61124e600e3363ffffffff61149816565b8061126357506010546001600160a01b031633145b61129e5760405162461bcd60e51b815260040180806020018281038252602281526020018061226b6022913960400191505060405180910390fd5b600f80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600f546040805163c87b56dd60e01b815260048101849052905160609261010090046001600160a01b03169163c87b56dd916024808301926000929190829003018186803b15801561131757600080fd5b505afa15801561132b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561135457600080fd5b810190808051604051939291908464010000000082111561137457600080fd5b90830190602082018581111561138957600080fd5b82516401000000008111828201881017156113a357600080fd5b82525081516020918201929091019080838360005b838110156113d05781810151838201526020016113b8565b50505050905090810190601f1680156113fd5780820380516001836020036101000a031916815260200191505b506040525050509050919050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b611441611053565b611480576040805162461bcd60e51b815260206004820181905260248201526000805160206123b5833981519152604482015290519081900360640190fd5b610dbc8161178a565b6010546001600160a01b031681565b60006001600160a01b0382166114df5760405162461bcd60e51b81526004018080602001828103825260228152602001806123d56022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6000908152600160205260409020546001600160a01b0316151590565b3390565b61152a8282611498565b6115655760405162461bcd60e51b81526004018080602001828103825260218152602001806123686021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000611592826114ff565b6115cd5760405162461bcd60e51b815260040180806020018281038252602c8152602001806122b1602c913960400191505060405180910390fd5b60006115d883610e25565b9050806001600160a01b0316846001600160a01b031614806116135750836001600160a01b031661160884610972565b6001600160a01b0316145b806116235750611623818561140b565b949350505050565b61163683838361182b565b611640838261196f565b610c288282611a64565b6116548282611aa2565b61165e8282611a64565b61166781611bd3565b5050565b6116758282611c17565b6000818152600c60205260409020546002600019610100600184161502019091160415611667576000818152600c6020526040812061166791612165565b6116bd8282611498565b1561170f576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b5490565b61174384848461162b565b61174f84848484611c43565b6112375760405162461bcd60e51b81526004018080602001828103825260328152602001806122136032913960400191505060405180910390fd5b6001600160a01b0381166117cf5760405162461bcd60e51b81526004018080602001828103825260268152602001806122456026913960400191505060405180910390fd5b600d546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b031661183e82610e25565b6001600160a01b0316146118835760405162461bcd60e51b81526004018080602001828103825260298152602001806123f76029913960400191505060405180910390fd5b6001600160a01b0382166118c85760405162461bcd60e51b815260040180806020018281038252602481526020018061228d6024913960400191505060405180910390fd5b6118d181611e7e565b6001600160a01b03831660009081526003602052604090206118f290611eb9565b6001600160a01b038216600090815260036020526040902061191390611ed0565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821660009081526005602052604081205461199990600163ffffffff611ed916565b600083815260066020526040902054909150808214611a34576001600160a01b03841660009081526005602052604081208054849081106119d657fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b031681526020019081526020016000208381548110611a1457fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b0384166000908152600560205260409020805490611a5d9060001983016121a9565b5050505050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b6001600160a01b038216611afd576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b611b06816114ff565b15611b58576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b038716908117909155835260039091529020611b9790611ed0565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b611c218282611f22565b611c2b828261196f565b60008181526006602052604081205561166781611ff9565b6000611c57846001600160a01b0316612095565b611c6357506001611623565b600060606001600160a01b038616630a85bd0160e11b611c8161151c565b89888860405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611cfa578181015183820152602001611ce2565b50505050905090810190601f168015611d275780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b60208310611d8f5780518252601f199092019160209182019101611d70565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611df1576040519150601f19603f3d011682016040523d82523d6000602084013e611df6565b606091505b509150915081611e4757805115611e105780518082602001fd5b60405162461bcd60e51b81526004018080602001828103825260328152602001806122136032913960400191505060405180910390fd5b6000818060200190516020811015611e5e57600080fd5b50516001600160e01b031916630a85bd0160e11b14935061162392505050565b6000818152600260205260409020546001600160a01b031615610dbc57600090815260026020526040902080546001600160a01b0319169055565b8054611ecc90600163ffffffff611ed916565b9055565b80546001019055565b6000611f1b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120ce565b9392505050565b816001600160a01b0316611f3582610e25565b6001600160a01b031614611f7a5760405162461bcd60e51b815260040180806020018281038252602581526020018061249e6025913960400191505060405180910390fd5b611f8381611e7e565b6001600160a01b0382166000908152600360205260409020611fa490611eb9565b60008181526001602052604080822080546001600160a01b0319169055518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60075460009061201090600163ffffffff611ed916565b6000838152600860205260408120546007805493945090928490811061203257fe5b90600052602060002001549050806007838154811061204d57fe5b600091825260208083209091019290925582815260089091526040902082905560078054906120809060001983016121a9565b50505060009182525060086020526040812055565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611623575050151592915050565b6000818484111561215d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561212257818101518382015260200161210a565b50505050905090810190601f16801561214f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b50805460018160011615610100020316600290046000825580601f1061218b5750610dbc565b601f016020900490600052602060002090810190610dbc91906121c9565b815481835581811115610c2857600083815260209020610c289181019083015b61096f91905b808211156121e357600081556001016121cf565b509056fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373596f7520617265206e6f7420616e2061646d696e206f7220636f6e74726f6c6c65724552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e64734552433732313a206275726e206f6620746f6b656e2074686174206973206e6f74206f776ea265627a7a72315820dba6033f2b09fd5dbc50212c4a1594e9183c3e625c618d7929c9139362a4652564736f6c63430005110032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000cb05165e659da248e7d0ee3d8c85b8cc3be0dc7000000000000000000000000000000000000000000000000000000000000000144d7574616e742047617264656e205365656465720000000000000000000000000000000000000000000000000000000000000000000000000000000000000004f09fa7ac00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Mutant Garden Seeder
Arg [1] : symbol (string): 🧬
Arg [2] : _metadata (address): 0xcB05165E659DA248E7d0ee3d8C85b8cC3Be0dC70
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000cb05165e659da248e7d0ee3d8c85b8cc3be0dc70
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 4d7574616e742047617264656e20536565646572000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : f09fa7ac00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
58195:2242:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;58195:2242:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16672:135;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16672:135:0;-1:-1:-1;;;;;;16672:135:0;;:::i;:::-;;;;;;;;;;;;;;;;;;60158:276;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;60158:276:0;;;;;;;;;;;;;;;;;:::i;59266:142::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;59266:142:0;-1:-1:-1;;;;;59266:142:0;;:::i;:::-;;44539:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;44539:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21648:204;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21648:204:0;;:::i;:::-;;;;-1:-1:-1;;;;;21648:204:0;;;;;;;;;;;;;;20930:425;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20930:425:0;;;;;;;;:::i;59535:179::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;59535:179:0;-1:-1:-1;;;;;59535:179:0;;:::i;36103:96::-;;;:::i;:::-;;;;;;;;;;;;;;;;23331:292;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23331:292:0;;;;;;;;;;;;;;;;;:::i;35712:232::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;35712:232:0;;;;;;;;:::i;58332:23::-;;;:::i;58847:173::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;58847:173:0;;;;;;;;:::i;24285:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24285:134:0;;;;;;;;;;;;;;;;;:::i;59028:111::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;59028:111:0;;:::i;36545:199::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36545:199:0;;:::i;20271:228::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20271:228:0;;:::i;46792:91::-;;;:::i;59416:111::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;59416:111:0;-1:-1:-1;;;;;59416:111:0;;:::i;19834:211::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19834:211:0;-1:-1:-1;;;;;19834:211:0;;:::i;52744:140::-;;;:::i;51933:79::-;;;:::i;52299:94::-;;;:::i;44739:89::-;;;:::i;22153:254::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22153:254:0;;;;;;;;;;:::i;25156:272::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;25156:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;25156:272:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25156:272:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;25156:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25156:272:0;;-1:-1:-1;25156:272:0;;-1:-1:-1;;;;;25156:272:0:i;59147:111::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;59147:111:0;-1:-1:-1;;;;;59147:111:0;;:::i;59722:178::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;59722:178:0;;:::i;22737:147::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22737:147:0;;;;;;;;;;:::i;53039:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;53039:109:0;-1:-1:-1;;;;;53039:109:0;;:::i;58362:25::-;;;:::i;16672:135::-;-1:-1:-1;;;;;;16766:33:0;16742:4;16766:33;;;;;;;;;;;;;;16672:135::o;60158:276::-;60295:4;58463:23;:7;58475:10;58463:23;:11;:23;:::i;:::-;:51;;;-1:-1:-1;58504:10:0;;-1:-1:-1;;;;;58504:10:0;58490;:24;58463:51;58440:137;;;;-1:-1:-1;;;58440:137:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60331:39;;;-1:-1:-1;;;60331:39:0;;60364:4;60331:39;;;;;;-1:-1:-1;;;;;60331:24:0;;;;;:39;;;;;;;;;;;;;;:24;:39;;;5:2:-1;;;;30:1;27;20:12;5:2;60331:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;60331:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;60331:39:0;60320:50;;;60312:59;;;;;;60396:6;-1:-1:-1;;;;;60389:23:0;;60413:3;60418:7;60389:37;;;;;;;;;;;;;-1:-1:-1;;;;;60389:37:0;-1:-1:-1;;;;;60389:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;60389:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;60389:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;60389:37:0;;60158:276;-1:-1:-1;;;;60158:276:0:o;59266:142::-;58463:23;:7;58475:10;58463:23;:11;:23;:::i;:::-;:51;;;-1:-1:-1;58504:10:0;;-1:-1:-1;;;;;58504:10:0;58490;:24;58463:51;58440:137;;;;-1:-1:-1;;;58440:137:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59376:10;:24;;-1:-1:-1;;;;;;59376:24:0;-1:-1:-1;;;;;59376:24:0;;;;;;;;;;59266:142::o;44539:85::-;44611:5;44604:12;;;;;;;;-1:-1:-1;;44604:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44578:13;;44604:12;;44611:5;;44604:12;;44611:5;44604:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44539:85;;:::o;21648:204::-;21707:7;21735:16;21743:7;21735;:16::i;:::-;21727:73;;;;-1:-1:-1;;;21727:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21820:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;21820:24:0;;21648:204::o;20930:425::-;20994:13;21010:16;21018:7;21010;:16::i;:::-;20994:32;;21051:5;-1:-1:-1;;;;;21045:11:0;:2;-1:-1:-1;;;;;21045:11:0;;;21037:57;;;;-1:-1:-1;;;21037:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21131:5;-1:-1:-1;;;;;21115:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;21115:21:0;;:62;;;;21140:37;21157:5;21164:12;:10;:12::i;:::-;21140:16;:37::i;:::-;21107:154;;;;-1:-1:-1;;;21107:154:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21274:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;21274:29:0;-1:-1:-1;;;;;21274:29:0;;;;;;;;;21319:28;;21274:24;;21319:28;;;;;;;20930:425;;;:::o;59535:179::-;52145:9;:7;:9::i;:::-;52137:54;;;;;-1:-1:-1;;;52137:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;52137:54:0;;;;;;;;;;;;;;;59608:6;;59617:1;59608:6;;;;:10;59600:51;;;;;-1:-1:-1;;;59600:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;59662:22;:7;59677:6;59662:22;:14;:22;:::i;:::-;-1:-1:-1;59695:6:0;:11;;-1:-1:-1;;59695:11:0;;;;;;-1:-1:-1;;59695:11:0;;;;;;;59535:179::o;36103:96::-;36174:10;:17;36103:96;:::o;23331:292::-;23475:41;23494:12;:10;:12::i;:::-;23508:7;23475:18;:41::i;:::-;23467:103;;;;-1:-1:-1;;;23467:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23583:32;23597:4;23603:2;23607:7;23583:13;:32::i;:::-;23331:292;;;:::o;35712:232::-;35792:7;35828:16;35838:5;35828:9;:16::i;:::-;35820:5;:24;35812:80;;;;-1:-1:-1;;;35812:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35910:19:0;;;;;;:12;:19;;;;;:26;;35930:5;;35910:26;;;;;;;;;;;;;;35903:33;;35712:232;;;;;:::o;58332:23::-;;;;;;-1:-1:-1;;;;;58332:23:0;;:::o;58847:173::-;58962:7;58463:23;:7;58475:10;58463:23;:11;:23;:::i;:::-;:51;;;-1:-1:-1;58504:10:0;;-1:-1:-1;;;;;58504:10:0;58490;:24;58463:51;58440:137;;;;-1:-1:-1;;;58440:137:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58987:25;58993:9;59004:7;58987:5;:25::i;24285:134::-;24372:39;24389:4;24395:2;24399:7;24372:39;;;;;;;;;;;;:16;:39::i;59028:111::-;58463:23;:7;58475:10;58463:23;:11;:23;:::i;:::-;:51;;;-1:-1:-1;58504:10:0;;-1:-1:-1;;;;;58504:10:0;58490;:24;58463:51;58440:137;;;;-1:-1:-1;;;58440:137:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59099:32;59105:16;59113:7;59105;:16::i;:::-;59123:7;59099:5;:32::i;:::-;59028:111;:::o;36545:199::-;36603:7;36639:13;:11;:13::i;:::-;36631:5;:21;36623:78;;;;-1:-1:-1;;;36623:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36719:10;36730:5;36719:17;;;;;;;;;;;;;;;;36712:24;;36545:199;;;:::o;20271:228::-;20326:7;20362:20;;;:11;:20;;;;;;-1:-1:-1;;;;;20362:20:0;20401:19;20393:73;;;;-1:-1:-1;;;20393:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46792:91;46867:8;46860:15;;;;;;;;-1:-1:-1;;46860:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46834:13;;46860:15;;46867:8;;46860:15;;46867:8;46860:15;;;;;;;;;;;;;;;;;;;;;;;;59416:111;52145:9;:7;:9::i;:::-;52137:54;;;;;-1:-1:-1;;;52137:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;52137:54:0;;;;;;;;;;;;;;;59478:19;:7;59490:6;59478:19;:11;:19;:::i;:::-;-1:-1:-1;59508:6:0;:11;;;;;;59518:1;59508:11;;-1:-1:-1;;59508:11:0;;;;;;59416:111::o;19834:211::-;19889:7;-1:-1:-1;;;;;19917:19:0;;19909:74;;;;-1:-1:-1;;;19909:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20003:24:0;;;;;;:17;:24;;;;;:34;;:32;:34::i;52744:140::-;52145:9;:7;:9::i;:::-;52137:54;;;;;-1:-1:-1;;;52137:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;52137:54:0;;;;;;;;;;;;;;;52827:6;;52806:40;;52843:1;;-1:-1:-1;;;;;52827:6:0;;52806:40;;52843:1;;52806:40;52857:6;:19;;-1:-1:-1;;;;;;52857:19:0;;;52744:140::o;51933:79::-;51998:6;;-1:-1:-1;;;;;51998:6:0;51933:79;:::o;52299:94::-;52379:6;;52339:4;;-1:-1:-1;;;;;52379:6:0;52363:12;:10;:12::i;:::-;-1:-1:-1;;;;;52363:22:0;;52356:29;;52299:94;:::o;44739:89::-;44813:7;44806:14;;;;;;;;-1:-1:-1;;44806:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44780:13;;44806:14;;44813:7;;44806:14;;44813:7;44806:14;;;;;;;;;;;;;;;;;;;;;;;;22153:254;22239:12;:10;:12::i;:::-;-1:-1:-1;;;;;22233:18:0;:2;-1:-1:-1;;;;;22233:18:0;;;22225:56;;;;;-1:-1:-1;;;22225:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22333:8;22294:18;:32;22313:12;:10;:12::i;:::-;-1:-1:-1;;;;;22294:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;22294:32:0;;;:36;;;;;;;;;;;;:47;;-1:-1:-1;;22294:47:0;;;;;;;;;;;22372:12;:10;:12::i;:::-;22357:42;;;;;;;;;;-1:-1:-1;;;;;22357:42:0;;;;;;;;;;;;;;22153:254;;:::o;25156:272::-;25271:41;25290:12;:10;:12::i;:::-;25304:7;25271:18;:41::i;:::-;25263:103;;;;-1:-1:-1;;;25263:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25377:43;25395:4;25401:2;25405:7;25414:5;25377:17;:43::i;:::-;25156:272;;;;:::o;59147:111::-;58463:23;:7;58475:10;58463:23;:11;:23;:::i;:::-;:51;;;-1:-1:-1;58504:10:0;;-1:-1:-1;;;;;58504:10:0;58490;:24;58463:51;58440:137;;;;-1:-1:-1;;;58440:137:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59230:8;:20;;-1:-1:-1;;;;;59230:20:0;;;;;-1:-1:-1;;;;;;59230:20:0;;;;;;;;;59147:111::o;59722:178::-;59864:8;;59855:37;;;-1:-1:-1;;;59855:37:0;;;;;;;;;;59808:22;;59864:8;;;-1:-1:-1;;;;;59864:8:0;;59855:27;;:37;;;;;-1:-1:-1;;59855:37:0;;;;;;;59864:8;59855:37;;;5:2:-1;;;;30:1;27;20:12;5:2;59855:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;59855:37:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;59855:37:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;13:2;5:11;;2:2;;;29:1;26;19:12;2:2;59855:37:0;;;;;;;;;;;;;19:11:-1;14:3;11:20;8:2;;;44:1;41;34:12;8:2;62:21;;;;123:4;114:14;;138:31;;;135:2;;;182:1;179;172:12;135:2;213:10;;261:11;244:29;;285:43;;;282:58;-1:-1;233:115;230:2;;;361:1;358;351:12;230:2;372:25;;-1:-1;59855:37:0;;420:4:-1;411:14;;;;59855:37:0;;;;;411:14:-1;59855:37:0;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;59855:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59848:44;;59722:178;;;:::o;22737:147::-;-1:-1:-1;;;;;22841:25:0;;;22817:4;22841:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22737:147::o;53039:109::-;52145:9;:7;:9::i;:::-;52137:54;;;;;-1:-1:-1;;;52137:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;52137:54:0;;;;;;;;;;;;;;;53112:28;53131:8;53112:18;:28::i;58362:25::-;;;-1:-1:-1;;;;;58362:25:0;;:::o;54369:203::-;54441:4;-1:-1:-1;;;;;54466:21:0;;54458:68;;;;-1:-1:-1;;;54458:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;54544:20:0;:11;:20;;;;;;;;;;;;;;;54369:203::o;26621:155::-;26678:4;26711:20;;;:11;:20;;;;;;-1:-1:-1;;;;;26711:20:0;26749:19;;;26621:155::o;936:98::-;1016:10;936:98;:::o;54091:183::-;54171:18;54175:4;54181:7;54171:3;:18::i;:::-;54163:64;;;;-1:-1:-1;;;54163:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54238:20:0;54261:5;54238:20;;;;;;;;;;;:28;;-1:-1:-1;;54238:28:0;;;54091:183::o;27146:333::-;27231:4;27256:16;27264:7;27256;:16::i;:::-;27248:73;;;;-1:-1:-1;;;27248:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27332:13;27348:16;27356:7;27348;:16::i;:::-;27332:32;;27394:5;-1:-1:-1;;;;;27383:16:0;:7;-1:-1:-1;;;;;27383:16:0;;:51;;;;27427:7;-1:-1:-1;;;;;27403:31:0;:20;27415:7;27403:11;:20::i;:::-;-1:-1:-1;;;;;27403:31:0;;27383:51;:87;;;;27438:32;27455:5;27462:7;27438:16;:32::i;:::-;27375:96;27146:333;-1:-1:-1;;;;27146:333:0:o;37128:245::-;37214:38;37234:4;37240:2;37244:7;37214:19;:38::i;:::-;37265:47;37298:4;37304:7;37265:32;:47::i;:::-;37325:40;37353:2;37357:7;37325:27;:40::i;37638:202::-;37702:24;37714:2;37718:7;37702:11;:24::i;:::-;37739:40;37767:2;37771:7;37739:27;:40::i;:::-;37792;37824:7;37792:31;:40::i;:::-;37638:202;;:::o;47185:247::-;47252:27;47264:5;47271:7;47252:11;:27::i;:::-;47338:19;;;;:10;:19;;;;;47332:33;;-1:-1:-1;;47332:33:0;;;;;;;;;;;:38;47328:97;;47394:19;;;;:10;:19;;;;;47387:26;;;:::i;53833:178::-;53911:18;53915:4;53921:7;53911:3;:18::i;:::-;53910:19;53902:63;;;;;-1:-1:-1;;;53902:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53976:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;53976:27:0;53999:4;53976:27;;;53833:178::o;15247:114::-;15339:14;;15247:114::o;26147:272::-;26257:32;26271:4;26277:2;26281:7;26257:13;:32::i;:::-;26308:48;26331:4;26337:2;26341:7;26350:5;26308:22;:48::i;:::-;26300:111;;;;-1:-1:-1;;;26300:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53254:229;-1:-1:-1;;;;;53328:22:0;;53320:73;;;;-1:-1:-1;;;53320:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53430:6;;53409:38;;-1:-1:-1;;;;;53409:38:0;;;;53430:6;;53409:38;;53430:6;;53409:38;53458:6;:17;;-1:-1:-1;;;;;;53458:17:0;-1:-1:-1;;;;;53458:17:0;;;;;;;;;;53254:229::o;30842:459::-;30956:4;-1:-1:-1;;;;;30936:24:0;:16;30944:7;30936;:16::i;:::-;-1:-1:-1;;;;;30936:24:0;;30928:78;;;;-1:-1:-1;;;30928:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31025:16:0;;31017:65;;;;-1:-1:-1;;;31017:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31095:23;31110:7;31095:14;:23::i;:::-;-1:-1:-1;;;;;31131:23:0;;;;;;:17;:23;;;;;:35;;:33;:35::i;:::-;-1:-1:-1;;;;;31177:21:0;;;;;;:17;:21;;;;;:33;;:31;:33::i;:::-;31223:20;;;;:11;:20;;;;;;:25;;-1:-1:-1;;;;;;31223:25:0;-1:-1:-1;;;;;31223:25:0;;;;;;;;;31266:27;;31223:20;;31266:27;;;;;;;30842:459;;;:::o;40313:1148::-;-1:-1:-1;;;;;40604:18:0;;40579:22;40604:18;;;:12;:18;;;;;:25;:32;;40634:1;40604:32;:29;:32;:::i;:::-;40647:18;40668:26;;;:17;:26;;;;;;40579:57;;-1:-1:-1;40801:28:0;;;40797:328;;-1:-1:-1;;;;;40868:18:0;;40846:19;40868:18;;;:12;:18;;;;;:34;;40887:14;;40868:34;;;;;;;;;;;;;;40846:56;;40952:11;40919:12;:18;40932:4;-1:-1:-1;;;;;40919:18:0;-1:-1:-1;;;;;40919:18:0;;;;;;;;;;;;40938:10;40919:30;;;;;;;;;;;;;;;;;;;:44;;;;41036:30;;;:17;:30;;;;;:43;;;40797:328;-1:-1:-1;;;;;41214:18:0;;;;;;:12;:18;;;;;:27;;;;;-1:-1:-1;;41214:27:0;;;:::i;:::-;;40313:1148;;;;:::o;39135:186::-;-1:-1:-1;;;;;39249:16:0;;;;;;;:12;:16;;;;;;;;:23;;39220:26;;;:17;:26;;;;;:52;;;39283:16;;;39:1:-1;23:18;;45:23;;39283:30:0;;;;;;;;39135:186::o;29231:335::-;-1:-1:-1;;;;;29303:16:0;;29295:61;;;;;-1:-1:-1;;;29295:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29376:16;29384:7;29376;:16::i;:::-;29375:17;29367:58;;;;;-1:-1:-1;;;29367:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29438:20;;;;:11;:20;;;;;;;;:25;;-1:-1:-1;;;;;;29438:25:0;-1:-1:-1;;;;;29438:25:0;;;;;;;;29474:21;;:17;:21;;;;;:33;;:31;:33::i;:::-;29525;;29550:7;;-1:-1:-1;;;;;29525:33:0;;;29542:1;;29525:33;;29542:1;;29525:33;29231:335;;:::o;39522:164::-;39626:10;:17;;39599:24;;;;:15;:24;;;;;:44;;;39:1:-1;23:18;;45:23;;39654:24:0;;;;;;;39522:164::o;38124:372::-;38191:27;38203:5;38210:7;38191:11;:27::i;:::-;38231:48;38264:5;38271:7;38231:32;:48::i;:::-;38429:1;38400:26;;;:17;:26;;;;;:30;38443:45;38418:7;38443:36;:45::i;31953:1079::-;32075:4;32102:15;:2;-1:-1:-1;;;;;32102:13:0;;:15::i;:::-;32097:60;;-1:-1:-1;32141:4:0;32134:11;;32097:60;32228:12;32242:23;-1:-1:-1;;;;;32269:7:0;;-1:-1:-1;;;32374:12:0;:10;:12::i;:::-;32401:4;32420:7;32442:5;32277:181;;;;;;-1:-1:-1;;;;;32277:181:0;-1:-1:-1;;;;;32277:181:0;;;;;;-1:-1:-1;;;;;32277:181:0;-1:-1:-1;;;;;32277:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;32277:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32277:181:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;32277:181:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;;32277:181:0;;;179:29:-1;;;;160:49;;32269:190:0;;;32277:181;;32269:190;;-1:-1:-1;32269:190:0;;-1:-1:-1;25:18;-1:-1;32269:190:0;-1:-1:-1;32269:190:0;;-1:-1:-1;32269:190:0;;-1:-1:-1;25:18;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;32269:190:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;32227:232:0;;;;32475:7;32470:555;;32503:17;;:21;32499:384;;32671:10;32665:17;32732:15;32719:10;32715:2;32711:19;32704:44;32619:148;32807:60;;-1:-1:-1;;;32807:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32470:555;32915:13;32942:10;32931:32;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32931:32:0;-1:-1:-1;;;;;;32986:26:0;-1:-1:-1;;;32986:26:0;;-1:-1:-1;32978:35:0;;-1:-1:-1;;;32978:35:0;33200:175;33300:1;33264:24;;;:15;:24;;;;;;-1:-1:-1;;;;;33264:24:0;:38;33260:108;;33354:1;33319:24;;;:15;:24;;;;;:37;;-1:-1:-1;;;;;;33319:37:0;;;33200:175::o;15558:110::-;15639:14;;:21;;15658:1;15639:21;:18;:21;:::i;:::-;15622:38;;15558:110::o;15369:181::-;15523:19;;15541:1;15523:19;;;15369:181::o;6881:136::-;6939:7;6966:43;6970:1;6973;6966:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;6959:50;6881:136;-1:-1:-1;;;6881:136:0:o;29843:333::-;29938:5;-1:-1:-1;;;;;29918:25:0;:16;29926:7;29918;:16::i;:::-;-1:-1:-1;;;;;29918:25:0;;29910:75;;;;-1:-1:-1;;;29910:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29998:23;30013:7;29998:14;:23::i;:::-;-1:-1:-1;;;;;30034:24:0;;;;;;:17;:24;;;;;:36;;:34;:36::i;:::-;30112:1;30081:20;;;:11;:20;;;;;;:33;;-1:-1:-1;;;;;;30081:33:0;;;30132:36;30093:7;;30112:1;-1:-1:-1;;;;;30132:36:0;;;;;30112:1;;30132:36;29843:333;;:::o;41756:1082::-;42034:10;:17;42009:22;;42034:24;;42056:1;42034:24;:21;:24;:::i;:::-;42069:18;42090:24;;;:15;:24;;;;;;42463:10;:26;;42009:49;;-1:-1:-1;42090:24:0;;42009:49;;42463:26;;;;;;;;;;;;;;42441:48;;42527:11;42502:10;42513;42502:22;;;;;;;;;;;;;;;;;;;:36;;;;42607:28;;;:15;:28;;;;;;:41;;;42772:10;:19;;;;;-1:-1:-1;;42772:19:0;;;:::i;:::-;-1:-1:-1;;;42829:1:0;42802:24;;;-1:-1:-1;42802:15:0;:24;;;;;:28;41756:1082::o;11801:619::-;11861:4;12329:20;;12172:66;12369:23;;;;;;:42;;-1:-1:-1;;12396:15:0;;;12361:51;-1:-1:-1;;11801:619:0:o;7354:192::-;7440:7;7476:12;7468:6;;;;7460:29;;;;-1:-1:-1;;;7460:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7460:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7512:5:0;;;7354:192::o;58195:2242::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://dba6033f2b09fd5dbc50212c4a1594e9183c3e625c618d7929c9139362a46525
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.