ERC-721
Overview
Max Total Supply
0 6529G
Holders
76
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 6529GLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Gradient6529
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { 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 virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @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); } /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping (uint256 => address) private _owners; // Mapping owner address to token count mapping (address => uint256) private _balances; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden * in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } } contract Gradient6529 is ERC721, ERC721Burnable, Ownable { // Mapping from token ID to on-chain data mapping (uint256 => string) private _tokenData; // baseURIextended string private _baseURIextended; constructor() ERC721("6529 Gradient", "6529G") { _baseURIextended = ""; for(uint i = 0; i < 101; i++) { _safeMint(address(0xfD22004806A6846EA67ad883356be810F0428793), i); } } function _baseURI() internal view override returns (string memory) { return _baseURIextended; } function setBaseURI(string memory baseURI) public onlyOwner { _baseURIextended = baseURI; } function setTokenData(uint256 tokenId, string memory _data) public onlyOwner { require(_exists(tokenId), "Data set of nonexistent token"); _tokenData[tokenId] = _data; } function tokenData(uint256 tokenId) public view returns (string memory) { require(_exists(tokenId), "Data query for nonexistent token"); return _tokenData[tokenId]; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_data","type":"string"}],"name":"setTokenData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenData","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600d81526020017f36353239204772616469656e74000000000000000000000000000000000000008152506040518060400160405280600581526020017f36353239470000000000000000000000000000000000000000000000000000008152508160009080519060200190620000969291906200069b565b508060019080519060200190620000af9291906200069b565b5050506000620000c4620001db60201b60201c565b905080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060405180602001604052806000815250600890805190602001906200018a9291906200069b565b5060005b6065811015620001d457620001be73fd22004806a6846ea67ad883356be810f042879382620001e360201b60201c565b8080620001cb9062000a80565b9150506200018e565b5062000bf8565b600033905090565b620002058282604051806020016040528060008152506200020960201b60201c565b5050565b6200021b83836200027760201b60201c565b6200023060008484846200045d60201b60201c565b62000272576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026990620008ba565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e190620008fe565b60405180910390fd5b620002fb816200061760201b60201c565b156200033e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033590620008dc565b60405180910390fd5b62000352600083836200068360201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003a491906200094d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006200048b8473ffffffffffffffffffffffffffffffffffffffff166200068860201b6200126e1760201c565b156200060a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620004bd620001db60201b60201c565b8786866040518563ffffffff1660e01b8152600401620004e1949392919062000866565b602060405180830381600087803b158015620004fc57600080fd5b505af19250505080156200053057506040513d601f19601f820116820180604052508101906200052d919062000762565b60015b620005b9573d806000811462000563576040519150601f19603f3d011682016040523d82523d6000602084013e62000568565b606091505b50600081511415620005b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005a890620008ba565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200060f565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b828054620006a99062000a4a565b90600052602060002090601f016020900481019282620006cd576000855562000719565b82601f10620006e857805160ff191683800117855562000719565b8280016001018555821562000719579182015b8281111562000718578251825591602001919060010190620006fb565b5b5090506200072891906200072c565b5090565b5b80821115620007475760008160009055506001016200072d565b5090565b6000815190506200075c8162000bde565b92915050565b6000602082840312156200077557600080fd5b600062000785848285016200074b565b91505092915050565b6200079981620009aa565b82525050565b6000620007ac8262000920565b620007b881856200092b565b9350620007ca81856020860162000a14565b620007d58162000b2c565b840191505092915050565b6000620007ef6032836200093c565b9150620007fc8262000b3d565b604082019050919050565b600062000816601c836200093c565b9150620008238262000b8c565b602082019050919050565b60006200083d6020836200093c565b91506200084a8262000bb5565b602082019050919050565b620008608162000a0a565b82525050565b60006080820190506200087d60008301876200078e565b6200088c60208301866200078e565b6200089b604083018562000855565b8181036060830152620008af81846200079f565b905095945050505050565b60006020820190508181036000830152620008d581620007e0565b9050919050565b60006020820190508181036000830152620008f78162000807565b9050919050565b6000602082019050818103600083015262000919816200082e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200095a8262000a0a565b9150620009678362000a0a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200099f576200099e62000ace565b5b828201905092915050565b6000620009b782620009ea565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000a3457808201518184015260208101905062000a17565b8381111562000a44576000848401525b50505050565b6000600282049050600182168062000a6357607f821691505b6020821081141562000a7a5762000a7962000afd565b5b50919050565b600062000a8d8262000a0a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000ac35762000ac262000ace565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b62000be981620009be565b811462000bf557600080fd5b50565b6130718062000c086000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063b88d4fde11610071578063b88d4fde1461032d578063c87b56dd14610349578063e985e9c514610379578063f2fde38b146103a9578063f61a2699146103c55761012c565b8063715018a61461029b5780638da5cb5b146102a557806395d89b41146102c3578063a22cb465146102e1578063b4b5b48f146102fd5761012c565b806342842e0e116100f457806342842e0e146101e757806342966c681461020357806355f804b31461021f5780636352211e1461023b57806370a082311461026b5761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806323b872dd146101cb575b600080fd5b61014b6004803603810190610146919061201d565b6103e1565b60405161015891906124db565b60405180910390f35b6101696104c3565b60405161017691906124f6565b60405180910390f35b610199600480360381019061019491906120b0565b610555565b6040516101a69190612474565b60405180910390f35b6101c960048036038101906101c49190611fe1565b6105da565b005b6101e560048036038101906101e09190611edb565b6106f2565b005b61020160048036038101906101fc9190611edb565b610752565b005b61021d600480360381019061021891906120b0565b610772565b005b6102396004803603810190610234919061206f565b6107ce565b005b610255600480360381019061025091906120b0565b610864565b6040516102629190612474565b60405180910390f35b61028560048036038101906102809190611e76565b610916565b6040516102929190612738565b60405180910390f35b6102a36109ce565b005b6102ad610b0b565b6040516102ba9190612474565b60405180910390f35b6102cb610b35565b6040516102d891906124f6565b60405180910390f35b6102fb60048036038101906102f69190611fa5565b610bc7565b005b610317600480360381019061031291906120b0565b610d48565b60405161032491906124f6565b60405180910390f35b61034760048036038101906103429190611f2a565b610e35565b005b610363600480360381019061035e91906120b0565b610e97565b60405161037091906124f6565b60405180910390f35b610393600480360381019061038e9190611e9f565b610f3e565b6040516103a091906124db565b60405180910390f35b6103c360048036038101906103be9190611e76565b610fd2565b005b6103df60048036038101906103da91906120d9565b61117e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ac57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104bc57506104bb82611281565b5b9050919050565b6060600080546104d29061298e565b80601f01602080910402602001604051908101604052809291908181526020018280546104fe9061298e565b801561054b5780601f106105205761010080835404028352916020019161054b565b820191906000526020600020905b81548152906001019060200180831161052e57829003601f168201915b5050505050905090565b6000610560826112eb565b61059f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059690612618565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105e582610864565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064d906126b8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610675611357565b73ffffffffffffffffffffffffffffffffffffffff1614806106a457506106a38161069e611357565b610f3e565b5b6106e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106da906125b8565b60405180910390fd5b6106ed838361135f565b505050565b6107036106fd611357565b82611418565b610742576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610739906126d8565b60405180910390fd5b61074d8383836114f6565b505050565b61076d83838360405180602001604052806000815250610e35565b505050565b61078361077d611357565b82611418565b6107c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b9906126f8565b60405180910390fd5b6107cb81611752565b50565b6107d6611357565b73ffffffffffffffffffffffffffffffffffffffff166107f4610b0b565b73ffffffffffffffffffffffffffffffffffffffff161461084a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084190612638565b60405180910390fd5b8060089080519060200190610860929190611c9a565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561090d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610904906125f8565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097e906125d8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109d6611357565b73ffffffffffffffffffffffffffffffffffffffff166109f4610b0b565b73ffffffffffffffffffffffffffffffffffffffff1614610a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4190612638565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610b449061298e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b709061298e565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b610bcf611357565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3490612578565b60405180910390fd5b8060056000610c4a611357565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610cf7611357565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d3c91906124db565b60405180910390a35050565b6060610d53826112eb565b610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990612698565b60405180910390fd5b600760008381526020019081526020016000208054610db09061298e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddc9061298e565b8015610e295780601f10610dfe57610100808354040283529160200191610e29565b820191906000526020600020905b815481529060010190602001808311610e0c57829003601f168201915b50505050509050919050565b610e46610e40611357565b83611418565b610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c906126d8565b60405180910390fd5b610e9184848484611863565b50505050565b6060610ea2826112eb565b610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890612678565b60405180910390fd5b6000610eeb6118bf565b90506000815111610f0b5760405180602001604052806000815250610f36565b80610f1584611951565b604051602001610f26929190612450565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fda611357565b73ffffffffffffffffffffffffffffffffffffffff16610ff8610b0b565b73ffffffffffffffffffffffffffffffffffffffff161461104e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104590612638565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b590612538565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611186611357565b73ffffffffffffffffffffffffffffffffffffffff166111a4610b0b565b73ffffffffffffffffffffffffffffffffffffffff16146111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190612638565b60405180910390fd5b611203826112eb565b611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990612718565b60405180910390fd5b80600760008481526020019081526020016000209080519060200190611269929190611c9a565b505050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113d283610864565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611423826112eb565b611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145990612598565b60405180910390fd5b600061146d83610864565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114dc57508373ffffffffffffffffffffffffffffffffffffffff166114c484610555565b73ffffffffffffffffffffffffffffffffffffffff16145b806114ed57506114ec8185610f3e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661151682610864565b73ffffffffffffffffffffffffffffffffffffffff161461156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390612658565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d390612558565b60405180910390fd5b6115e7838383611afe565b6115f260008261135f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461164291906128a4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611699919061281d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061175d82610864565b905061176b81600084611afe565b61177660008361135f565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c691906128a4565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61186e8484846114f6565b61187a84848484611b03565b6118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090612518565b60405180910390fd5b50505050565b6060600880546118ce9061298e565b80601f01602080910402602001604051908101604052809291908181526020018280546118fa9061298e565b80156119475780601f1061191c57610100808354040283529160200191611947565b820191906000526020600020905b81548152906001019060200180831161192a57829003601f168201915b5050505050905090565b60606000821415611999576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611af9565b600082905060005b600082146119cb5780806119b4906129f1565b915050600a826119c49190612873565b91506119a1565b60008167ffffffffffffffff811115611a0d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a3f5781602001600182028036833780820191505090505b5090505b60008514611af257600182611a5891906128a4565b9150600a85611a679190612a3a565b6030611a73919061281d565b60f81b818381518110611aaf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611aeb9190612873565b9450611a43565b8093505050505b919050565b505050565b6000611b248473ffffffffffffffffffffffffffffffffffffffff1661126e565b15611c8d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b4d611357565b8786866040518563ffffffff1660e01b8152600401611b6f949392919061248f565b602060405180830381600087803b158015611b8957600080fd5b505af1925050508015611bba57506040513d601f19601f82011682018060405250810190611bb79190612046565b60015b611c3d573d8060008114611bea576040519150601f19603f3d011682016040523d82523d6000602084013e611bef565b606091505b50600081511415611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90612518565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611c92565b600190505b949350505050565b828054611ca69061298e565b90600052602060002090601f016020900481019282611cc85760008555611d0f565b82601f10611ce157805160ff1916838001178555611d0f565b82800160010185558215611d0f579182015b82811115611d0e578251825591602001919060010190611cf3565b5b509050611d1c9190611d20565b5090565b5b80821115611d39576000816000905550600101611d21565b5090565b6000611d50611d4b84612778565b612753565b905082815260208101848484011115611d6857600080fd5b611d7384828561294c565b509392505050565b6000611d8e611d89846127a9565b612753565b905082815260208101848484011115611da657600080fd5b611db184828561294c565b509392505050565b600081359050611dc881612fdf565b92915050565b600081359050611ddd81612ff6565b92915050565b600081359050611df28161300d565b92915050565b600081519050611e078161300d565b92915050565b600082601f830112611e1e57600080fd5b8135611e2e848260208601611d3d565b91505092915050565b600082601f830112611e4857600080fd5b8135611e58848260208601611d7b565b91505092915050565b600081359050611e7081613024565b92915050565b600060208284031215611e8857600080fd5b6000611e9684828501611db9565b91505092915050565b60008060408385031215611eb257600080fd5b6000611ec085828601611db9565b9250506020611ed185828601611db9565b9150509250929050565b600080600060608486031215611ef057600080fd5b6000611efe86828701611db9565b9350506020611f0f86828701611db9565b9250506040611f2086828701611e61565b9150509250925092565b60008060008060808587031215611f4057600080fd5b6000611f4e87828801611db9565b9450506020611f5f87828801611db9565b9350506040611f7087828801611e61565b925050606085013567ffffffffffffffff811115611f8d57600080fd5b611f9987828801611e0d565b91505092959194509250565b60008060408385031215611fb857600080fd5b6000611fc685828601611db9565b9250506020611fd785828601611dce565b9150509250929050565b60008060408385031215611ff457600080fd5b600061200285828601611db9565b925050602061201385828601611e61565b9150509250929050565b60006020828403121561202f57600080fd5b600061203d84828501611de3565b91505092915050565b60006020828403121561205857600080fd5b600061206684828501611df8565b91505092915050565b60006020828403121561208157600080fd5b600082013567ffffffffffffffff81111561209b57600080fd5b6120a784828501611e37565b91505092915050565b6000602082840312156120c257600080fd5b60006120d084828501611e61565b91505092915050565b600080604083850312156120ec57600080fd5b60006120fa85828601611e61565b925050602083013567ffffffffffffffff81111561211757600080fd5b61212385828601611e37565b9150509250929050565b612136816128d8565b82525050565b612145816128ea565b82525050565b6000612156826127da565b61216081856127f0565b935061217081856020860161295b565b61217981612b27565b840191505092915050565b600061218f826127e5565b6121998185612801565b93506121a981856020860161295b565b6121b281612b27565b840191505092915050565b60006121c8826127e5565b6121d28185612812565b93506121e281856020860161295b565b80840191505092915050565b60006121fb603283612801565b915061220682612b38565b604082019050919050565b600061221e602683612801565b915061222982612b87565b604082019050919050565b6000612241602483612801565b915061224c82612bd6565b604082019050919050565b6000612264601983612801565b915061226f82612c25565b602082019050919050565b6000612287602c83612801565b915061229282612c4e565b604082019050919050565b60006122aa603883612801565b91506122b582612c9d565b604082019050919050565b60006122cd602a83612801565b91506122d882612cec565b604082019050919050565b60006122f0602983612801565b91506122fb82612d3b565b604082019050919050565b6000612313602c83612801565b915061231e82612d8a565b604082019050919050565b6000612336602083612801565b915061234182612dd9565b602082019050919050565b6000612359602983612801565b915061236482612e02565b604082019050919050565b600061237c602f83612801565b915061238782612e51565b604082019050919050565b600061239f602083612801565b91506123aa82612ea0565b602082019050919050565b60006123c2602183612801565b91506123cd82612ec9565b604082019050919050565b60006123e5603183612801565b91506123f082612f18565b604082019050919050565b6000612408603083612801565b915061241382612f67565b604082019050919050565b600061242b601d83612801565b915061243682612fb6565b602082019050919050565b61244a81612942565b82525050565b600061245c82856121bd565b915061246882846121bd565b91508190509392505050565b6000602082019050612489600083018461212d565b92915050565b60006080820190506124a4600083018761212d565b6124b1602083018661212d565b6124be6040830185612441565b81810360608301526124d0818461214b565b905095945050505050565b60006020820190506124f0600083018461213c565b92915050565b600060208201905081810360008301526125108184612184565b905092915050565b60006020820190508181036000830152612531816121ee565b9050919050565b6000602082019050818103600083015261255181612211565b9050919050565b6000602082019050818103600083015261257181612234565b9050919050565b6000602082019050818103600083015261259181612257565b9050919050565b600060208201905081810360008301526125b18161227a565b9050919050565b600060208201905081810360008301526125d18161229d565b9050919050565b600060208201905081810360008301526125f1816122c0565b9050919050565b60006020820190508181036000830152612611816122e3565b9050919050565b6000602082019050818103600083015261263181612306565b9050919050565b6000602082019050818103600083015261265181612329565b9050919050565b600060208201905081810360008301526126718161234c565b9050919050565b600060208201905081810360008301526126918161236f565b9050919050565b600060208201905081810360008301526126b181612392565b9050919050565b600060208201905081810360008301526126d1816123b5565b9050919050565b600060208201905081810360008301526126f1816123d8565b9050919050565b60006020820190508181036000830152612711816123fb565b9050919050565b600060208201905081810360008301526127318161241e565b9050919050565b600060208201905061274d6000830184612441565b92915050565b600061275d61276e565b905061276982826129c0565b919050565b6000604051905090565b600067ffffffffffffffff82111561279357612792612af8565b5b61279c82612b27565b9050602081019050919050565b600067ffffffffffffffff8211156127c4576127c3612af8565b5b6127cd82612b27565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061282882612942565b915061283383612942565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561286857612867612a6b565b5b828201905092915050565b600061287e82612942565b915061288983612942565b92508261289957612898612a9a565b5b828204905092915050565b60006128af82612942565b91506128ba83612942565b9250828210156128cd576128cc612a6b565b5b828203905092915050565b60006128e382612922565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561297957808201518184015260208101905061295e565b83811115612988576000848401525b50505050565b600060028204905060018216806129a657607f821691505b602082108114156129ba576129b9612ac9565b5b50919050565b6129c982612b27565b810181811067ffffffffffffffff821117156129e8576129e7612af8565b5b80604052505050565b60006129fc82612942565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a2f57612a2e612a6b565b5b600182019050919050565b6000612a4582612942565b9150612a5083612942565b925082612a6057612a5f612a9a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4461746120717565727920666f72206e6f6e6578697374656e7420746f6b656e600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f4461746120736574206f66206e6f6e6578697374656e7420746f6b656e000000600082015250565b612fe8816128d8565b8114612ff357600080fd5b50565b612fff816128ea565b811461300a57600080fd5b50565b613016816128f6565b811461302157600080fd5b50565b61302d81612942565b811461303857600080fd5b5056fea2646970667358221220a23a85b15f2144d82ccdea169e358ecdec79759af1bbfa405e9895d768fd06f364736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063b88d4fde11610071578063b88d4fde1461032d578063c87b56dd14610349578063e985e9c514610379578063f2fde38b146103a9578063f61a2699146103c55761012c565b8063715018a61461029b5780638da5cb5b146102a557806395d89b41146102c3578063a22cb465146102e1578063b4b5b48f146102fd5761012c565b806342842e0e116100f457806342842e0e146101e757806342966c681461020357806355f804b31461021f5780636352211e1461023b57806370a082311461026b5761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806323b872dd146101cb575b600080fd5b61014b6004803603810190610146919061201d565b6103e1565b60405161015891906124db565b60405180910390f35b6101696104c3565b60405161017691906124f6565b60405180910390f35b610199600480360381019061019491906120b0565b610555565b6040516101a69190612474565b60405180910390f35b6101c960048036038101906101c49190611fe1565b6105da565b005b6101e560048036038101906101e09190611edb565b6106f2565b005b61020160048036038101906101fc9190611edb565b610752565b005b61021d600480360381019061021891906120b0565b610772565b005b6102396004803603810190610234919061206f565b6107ce565b005b610255600480360381019061025091906120b0565b610864565b6040516102629190612474565b60405180910390f35b61028560048036038101906102809190611e76565b610916565b6040516102929190612738565b60405180910390f35b6102a36109ce565b005b6102ad610b0b565b6040516102ba9190612474565b60405180910390f35b6102cb610b35565b6040516102d891906124f6565b60405180910390f35b6102fb60048036038101906102f69190611fa5565b610bc7565b005b610317600480360381019061031291906120b0565b610d48565b60405161032491906124f6565b60405180910390f35b61034760048036038101906103429190611f2a565b610e35565b005b610363600480360381019061035e91906120b0565b610e97565b60405161037091906124f6565b60405180910390f35b610393600480360381019061038e9190611e9f565b610f3e565b6040516103a091906124db565b60405180910390f35b6103c360048036038101906103be9190611e76565b610fd2565b005b6103df60048036038101906103da91906120d9565b61117e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ac57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104bc57506104bb82611281565b5b9050919050565b6060600080546104d29061298e565b80601f01602080910402602001604051908101604052809291908181526020018280546104fe9061298e565b801561054b5780601f106105205761010080835404028352916020019161054b565b820191906000526020600020905b81548152906001019060200180831161052e57829003601f168201915b5050505050905090565b6000610560826112eb565b61059f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059690612618565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105e582610864565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064d906126b8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610675611357565b73ffffffffffffffffffffffffffffffffffffffff1614806106a457506106a38161069e611357565b610f3e565b5b6106e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106da906125b8565b60405180910390fd5b6106ed838361135f565b505050565b6107036106fd611357565b82611418565b610742576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610739906126d8565b60405180910390fd5b61074d8383836114f6565b505050565b61076d83838360405180602001604052806000815250610e35565b505050565b61078361077d611357565b82611418565b6107c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b9906126f8565b60405180910390fd5b6107cb81611752565b50565b6107d6611357565b73ffffffffffffffffffffffffffffffffffffffff166107f4610b0b565b73ffffffffffffffffffffffffffffffffffffffff161461084a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084190612638565b60405180910390fd5b8060089080519060200190610860929190611c9a565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561090d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610904906125f8565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097e906125d8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109d6611357565b73ffffffffffffffffffffffffffffffffffffffff166109f4610b0b565b73ffffffffffffffffffffffffffffffffffffffff1614610a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4190612638565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610b449061298e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b709061298e565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b610bcf611357565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3490612578565b60405180910390fd5b8060056000610c4a611357565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610cf7611357565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d3c91906124db565b60405180910390a35050565b6060610d53826112eb565b610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990612698565b60405180910390fd5b600760008381526020019081526020016000208054610db09061298e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddc9061298e565b8015610e295780601f10610dfe57610100808354040283529160200191610e29565b820191906000526020600020905b815481529060010190602001808311610e0c57829003601f168201915b50505050509050919050565b610e46610e40611357565b83611418565b610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c906126d8565b60405180910390fd5b610e9184848484611863565b50505050565b6060610ea2826112eb565b610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890612678565b60405180910390fd5b6000610eeb6118bf565b90506000815111610f0b5760405180602001604052806000815250610f36565b80610f1584611951565b604051602001610f26929190612450565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fda611357565b73ffffffffffffffffffffffffffffffffffffffff16610ff8610b0b565b73ffffffffffffffffffffffffffffffffffffffff161461104e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104590612638565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b590612538565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611186611357565b73ffffffffffffffffffffffffffffffffffffffff166111a4610b0b565b73ffffffffffffffffffffffffffffffffffffffff16146111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190612638565b60405180910390fd5b611203826112eb565b611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990612718565b60405180910390fd5b80600760008481526020019081526020016000209080519060200190611269929190611c9a565b505050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113d283610864565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611423826112eb565b611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145990612598565b60405180910390fd5b600061146d83610864565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114dc57508373ffffffffffffffffffffffffffffffffffffffff166114c484610555565b73ffffffffffffffffffffffffffffffffffffffff16145b806114ed57506114ec8185610f3e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661151682610864565b73ffffffffffffffffffffffffffffffffffffffff161461156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390612658565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d390612558565b60405180910390fd5b6115e7838383611afe565b6115f260008261135f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461164291906128a4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611699919061281d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061175d82610864565b905061176b81600084611afe565b61177660008361135f565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c691906128a4565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61186e8484846114f6565b61187a84848484611b03565b6118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090612518565b60405180910390fd5b50505050565b6060600880546118ce9061298e565b80601f01602080910402602001604051908101604052809291908181526020018280546118fa9061298e565b80156119475780601f1061191c57610100808354040283529160200191611947565b820191906000526020600020905b81548152906001019060200180831161192a57829003601f168201915b5050505050905090565b60606000821415611999576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611af9565b600082905060005b600082146119cb5780806119b4906129f1565b915050600a826119c49190612873565b91506119a1565b60008167ffffffffffffffff811115611a0d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a3f5781602001600182028036833780820191505090505b5090505b60008514611af257600182611a5891906128a4565b9150600a85611a679190612a3a565b6030611a73919061281d565b60f81b818381518110611aaf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611aeb9190612873565b9450611a43565b8093505050505b919050565b505050565b6000611b248473ffffffffffffffffffffffffffffffffffffffff1661126e565b15611c8d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b4d611357565b8786866040518563ffffffff1660e01b8152600401611b6f949392919061248f565b602060405180830381600087803b158015611b8957600080fd5b505af1925050508015611bba57506040513d601f19601f82011682018060405250810190611bb79190612046565b60015b611c3d573d8060008114611bea576040519150601f19603f3d011682016040523d82523d6000602084013e611bef565b606091505b50600081511415611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90612518565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611c92565b600190505b949350505050565b828054611ca69061298e565b90600052602060002090601f016020900481019282611cc85760008555611d0f565b82601f10611ce157805160ff1916838001178555611d0f565b82800160010185558215611d0f579182015b82811115611d0e578251825591602001919060010190611cf3565b5b509050611d1c9190611d20565b5090565b5b80821115611d39576000816000905550600101611d21565b5090565b6000611d50611d4b84612778565b612753565b905082815260208101848484011115611d6857600080fd5b611d7384828561294c565b509392505050565b6000611d8e611d89846127a9565b612753565b905082815260208101848484011115611da657600080fd5b611db184828561294c565b509392505050565b600081359050611dc881612fdf565b92915050565b600081359050611ddd81612ff6565b92915050565b600081359050611df28161300d565b92915050565b600081519050611e078161300d565b92915050565b600082601f830112611e1e57600080fd5b8135611e2e848260208601611d3d565b91505092915050565b600082601f830112611e4857600080fd5b8135611e58848260208601611d7b565b91505092915050565b600081359050611e7081613024565b92915050565b600060208284031215611e8857600080fd5b6000611e9684828501611db9565b91505092915050565b60008060408385031215611eb257600080fd5b6000611ec085828601611db9565b9250506020611ed185828601611db9565b9150509250929050565b600080600060608486031215611ef057600080fd5b6000611efe86828701611db9565b9350506020611f0f86828701611db9565b9250506040611f2086828701611e61565b9150509250925092565b60008060008060808587031215611f4057600080fd5b6000611f4e87828801611db9565b9450506020611f5f87828801611db9565b9350506040611f7087828801611e61565b925050606085013567ffffffffffffffff811115611f8d57600080fd5b611f9987828801611e0d565b91505092959194509250565b60008060408385031215611fb857600080fd5b6000611fc685828601611db9565b9250506020611fd785828601611dce565b9150509250929050565b60008060408385031215611ff457600080fd5b600061200285828601611db9565b925050602061201385828601611e61565b9150509250929050565b60006020828403121561202f57600080fd5b600061203d84828501611de3565b91505092915050565b60006020828403121561205857600080fd5b600061206684828501611df8565b91505092915050565b60006020828403121561208157600080fd5b600082013567ffffffffffffffff81111561209b57600080fd5b6120a784828501611e37565b91505092915050565b6000602082840312156120c257600080fd5b60006120d084828501611e61565b91505092915050565b600080604083850312156120ec57600080fd5b60006120fa85828601611e61565b925050602083013567ffffffffffffffff81111561211757600080fd5b61212385828601611e37565b9150509250929050565b612136816128d8565b82525050565b612145816128ea565b82525050565b6000612156826127da565b61216081856127f0565b935061217081856020860161295b565b61217981612b27565b840191505092915050565b600061218f826127e5565b6121998185612801565b93506121a981856020860161295b565b6121b281612b27565b840191505092915050565b60006121c8826127e5565b6121d28185612812565b93506121e281856020860161295b565b80840191505092915050565b60006121fb603283612801565b915061220682612b38565b604082019050919050565b600061221e602683612801565b915061222982612b87565b604082019050919050565b6000612241602483612801565b915061224c82612bd6565b604082019050919050565b6000612264601983612801565b915061226f82612c25565b602082019050919050565b6000612287602c83612801565b915061229282612c4e565b604082019050919050565b60006122aa603883612801565b91506122b582612c9d565b604082019050919050565b60006122cd602a83612801565b91506122d882612cec565b604082019050919050565b60006122f0602983612801565b91506122fb82612d3b565b604082019050919050565b6000612313602c83612801565b915061231e82612d8a565b604082019050919050565b6000612336602083612801565b915061234182612dd9565b602082019050919050565b6000612359602983612801565b915061236482612e02565b604082019050919050565b600061237c602f83612801565b915061238782612e51565b604082019050919050565b600061239f602083612801565b91506123aa82612ea0565b602082019050919050565b60006123c2602183612801565b91506123cd82612ec9565b604082019050919050565b60006123e5603183612801565b91506123f082612f18565b604082019050919050565b6000612408603083612801565b915061241382612f67565b604082019050919050565b600061242b601d83612801565b915061243682612fb6565b602082019050919050565b61244a81612942565b82525050565b600061245c82856121bd565b915061246882846121bd565b91508190509392505050565b6000602082019050612489600083018461212d565b92915050565b60006080820190506124a4600083018761212d565b6124b1602083018661212d565b6124be6040830185612441565b81810360608301526124d0818461214b565b905095945050505050565b60006020820190506124f0600083018461213c565b92915050565b600060208201905081810360008301526125108184612184565b905092915050565b60006020820190508181036000830152612531816121ee565b9050919050565b6000602082019050818103600083015261255181612211565b9050919050565b6000602082019050818103600083015261257181612234565b9050919050565b6000602082019050818103600083015261259181612257565b9050919050565b600060208201905081810360008301526125b18161227a565b9050919050565b600060208201905081810360008301526125d18161229d565b9050919050565b600060208201905081810360008301526125f1816122c0565b9050919050565b60006020820190508181036000830152612611816122e3565b9050919050565b6000602082019050818103600083015261263181612306565b9050919050565b6000602082019050818103600083015261265181612329565b9050919050565b600060208201905081810360008301526126718161234c565b9050919050565b600060208201905081810360008301526126918161236f565b9050919050565b600060208201905081810360008301526126b181612392565b9050919050565b600060208201905081810360008301526126d1816123b5565b9050919050565b600060208201905081810360008301526126f1816123d8565b9050919050565b60006020820190508181036000830152612711816123fb565b9050919050565b600060208201905081810360008301526127318161241e565b9050919050565b600060208201905061274d6000830184612441565b92915050565b600061275d61276e565b905061276982826129c0565b919050565b6000604051905090565b600067ffffffffffffffff82111561279357612792612af8565b5b61279c82612b27565b9050602081019050919050565b600067ffffffffffffffff8211156127c4576127c3612af8565b5b6127cd82612b27565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061282882612942565b915061283383612942565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561286857612867612a6b565b5b828201905092915050565b600061287e82612942565b915061288983612942565b92508261289957612898612a9a565b5b828204905092915050565b60006128af82612942565b91506128ba83612942565b9250828210156128cd576128cc612a6b565b5b828203905092915050565b60006128e382612922565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561297957808201518184015260208101905061295e565b83811115612988576000848401525b50505050565b600060028204905060018216806129a657607f821691505b602082108114156129ba576129b9612ac9565b5b50919050565b6129c982612b27565b810181811067ffffffffffffffff821117156129e8576129e7612af8565b5b80604052505050565b60006129fc82612942565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a2f57612a2e612a6b565b5b600182019050919050565b6000612a4582612942565b9150612a5083612942565b925082612a6057612a5f612a9a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4461746120717565727920666f72206e6f6e6578697374656e7420746f6b656e600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f4461746120736574206f66206e6f6e6578697374656e7420746f6b656e000000600082015250565b612fe8816128d8565b8114612ff357600080fd5b50565b612fff816128ea565b811461300a57600080fd5b50565b613016816128f6565b811461302157600080fd5b50565b61302d81612942565b811461303857600080fd5b5056fea2646970667358221220a23a85b15f2144d82ccdea169e358ecdec79759af1bbfa405e9895d768fd06f364736f6c63430008040033
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.