Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
2,951 ANX
Holders
2,225
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 ANXLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Anxiopeth
Compiler Version
v0.8.9+commit.e5eed63a
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.9 <0.9.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; contract Anxiopeth is ERC721Enumerable, Ownable { using Strings for uint256; uint256 public constant MAX_TOKENS = 3000; uint256 public BURN_LIMIT = 1500; uint256 public burnedTokens = 0; uint256 public reservedTokensMinted = 0; uint256 public PRICE = 0.0096 ether; bool public burnIsActive = false; bool public publicIsActive = false; IERC721 public immutable _sociopeth; mapping(address => bool) public publicClaimed; string public uriSuffix = ".json"; string public baseURI = ""; address payable private guy = payable(0xA778705aD62FC052c814b0d6b2F7c64aA1b10AE1); address public constant BLACKHOLE = 0x000000000000000000000000000000000000dEaD; constructor( address sociopeth, string memory _tokenName, string memory _tokenSymbol ) ERC721(_tokenName, _tokenSymbol) { _sociopeth = IERC721(sociopeth); } //Burn function function anxiopethClaim(uint256[] memory tokenIds) external { require(burnIsActive, "Burn must be active to mint"); require(!exists1(tokenIds), "You must not hold 1/1 sociopeth"); require(tokenIds.length >= 2 , "You must hold a sociopeth pairs"); uint32 pairs = uint32(tokenIds.length / 2); require(pairs + burnedTokens <= BURN_LIMIT, "Exceed holder supply"); for (uint256 i = 0; i < pairs*2; i++) { _sociopeth.transferFrom(msg.sender, BLACKHOLE, tokenIds[i]); } for (uint256 i = 0; i < pairs; i++ ) { _safeMint(msg.sender, totalSupply() + 1); burnedTokens++; } } function exists1(uint256[] memory tokenIds) public view returns (bool) { for (uint i = 0; i < tokenIds.length; i++) { if (tokenIds[i] == 3648 || tokenIds[i] == 3454 || tokenIds[i] == 3287 || tokenIds[i] == 3270 || tokenIds[i] == 3257 || tokenIds[i] == 3205 || tokenIds[i] == 3049 || tokenIds[i] == 3051 || tokenIds[i] == 2889 || tokenIds[i] == 2857 || tokenIds[i] == 2848 || tokenIds[i] == 2808 || tokenIds[i] == 2352 || tokenIds[i] == 2270 || tokenIds[i] == 2167 || tokenIds[i] == 1811 || tokenIds[i] == 1793 || tokenIds[i] == 1780 || tokenIds[i] == 1702 || tokenIds[i] == 1306 || tokenIds[i] == 1142 || tokenIds[i] == 1096 || tokenIds[i] == 1100 || tokenIds[i] == 1014 || tokenIds[i] == 897 || tokenIds[i] == 866 || tokenIds[i] == 745 || tokenIds[i] == 717 || tokenIds[i] == 525 || tokenIds[i] == 41 ) { return true; } } return false; } function mint() public payable { require(publicIsActive, "Sale must be active to mint"); require(!publicClaimed[msg.sender], "Address already adopted a sociopeth!"); require(totalSupply() + 1 <= MAX_TOKENS - (50 - reservedTokensMinted), "Purchase would exceed max supply"); require(msg.value >= PRICE * 1, "Insufficient funds!"); publicClaimed[msg.sender] = true; _safeMint(msg.sender, totalSupply() + 1); } function mintReservedTokens(uint256 amount) external onlyOwner { require(reservedTokensMinted + amount <= 50, "This amount is more than max allowed"); for (uint i = 0; i < amount; i++) { _safeMint(msg.sender, totalSupply() + 1); reservedTokensMinted++; } } //Utility function function setPrice(uint256 newPrice) external onlyOwner { PRICE = newPrice; } function flipSaleState() external onlyOwner { publicIsActive = !publicIsActive; } function flipBurnSaleState() external onlyOwner { burnIsActive = !burnIsActive; } function withdraw() external { require(msg.sender == guy || msg.sender == owner(), "Invalid sender"); (bool success, ) = guy.call{value: address(this).balance / 100 * 50}(""); (bool success2, ) = owner().call{value: address(this).balance}(""); require(success, "Transfer 1 failed"); require(success2, "Transfer 2 failed"); } //// //URI management part //// function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory newBaseURI) public onlyOwner { baseURI = newBaseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory _tokenURI = super.tokenURI(tokenId); return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : ""; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @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: address zero is not a valid owner"); 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: invalid token ID"); 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) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token 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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-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` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"sociopeth","type":"address"},{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BLACKHOLE","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BURN_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sociopeth","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"anxiopethClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"exists1","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipBurnSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","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":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintReservedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526105dc600b556000600c556000600d5566221b262dd80000600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060119080519060200190620000a2929190620002b4565b506040518060200160405280600081525060129080519060200190620000ca929190620002b4565b5073a778705ad62fc052c814b0d6b2f7c64aa1b10ae1601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200012d57600080fd5b506040516200561438038062005614833981810160405281019062000153919062000566565b818181600090805190602001906200016d929190620002b4565b50806001908051906020019062000186929190620002b4565b505050620001a96200019d620001e660201b60201c565b620001ee60201b60201c565b8273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505050505062000665565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c2906200062f565b90600052602060002090601f016020900481019282620002e6576000855562000332565b82601f106200030157805160ff191683800117855562000332565b8280016001018555821562000332579182015b828111156200033157825182559160200191906001019062000314565b5b50905062000341919062000345565b5090565b5b808211156200036057600081600090555060010162000346565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003a58262000378565b9050919050565b620003b78162000398565b8114620003c357600080fd5b50565b600081519050620003d781620003ac565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200043282620003e7565b810181811067ffffffffffffffff82111715620004545762000453620003f8565b5b80604052505050565b60006200046962000364565b905062000477828262000427565b919050565b600067ffffffffffffffff8211156200049a5762000499620003f8565b5b620004a582620003e7565b9050602081019050919050565b60005b83811015620004d2578082015181840152602081019050620004b5565b83811115620004e2576000848401525b50505050565b6000620004ff620004f9846200047c565b6200045d565b9050828152602081018484840111156200051e576200051d620003e2565b5b6200052b848285620004b2565b509392505050565b600082601f8301126200054b576200054a620003dd565b5b81516200055d848260208601620004e8565b91505092915050565b6000806000606084860312156200058257620005816200036e565b5b60006200059286828701620003c6565b935050602084015167ffffffffffffffff811115620005b657620005b562000373565b5b620005c48682870162000533565b925050604084015167ffffffffffffffff811115620005e857620005e762000373565b5b620005f68682870162000533565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200064857607f821691505b602082108114156200065f576200065e62000600565b5b50919050565b608051614f8c6200068860003960008181610dce01526113960152614f8c6000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e57806395d89b41116100ab578063c87b56dd1161006f578063c87b56dd1461082e578063e985e9c51461086b578063f2fde38b146108a8578063f3e38821146108d1578063f47c84c5146108fc5761023b565b806395d89b411461075d57806398a01c8f14610788578063a22cb4651461079f578063b5b1cd7c146107c8578063b88d4fde146108055761023b565b806372308778116100f257806372308778146106785780637d5cb4e5146106b55780638d859f3e146106de5780638da5cb5b1461070957806391b7f5ed146107345761023b565b80636352211e1461059157806366caa6ab146105ce5780636c0360eb146105f957806370a0823114610624578063715018a6146106615761023b565b80632910e4bf116101bc57806347b5dd541161018057806347b5dd54146104ac5780634f6ccce7146104d757806353a89e89146105145780635503a0e81461053d57806355f804b3146105685761023b565b80632910e4bf146103ed5780632f745c591461041857806334918dfd146104555780633ccfd60b1461046c57806342842e0e146104835761023b565b80631249c58b116102035780631249c58b1461033957806318160ddd146103435780631cd3a4ac1461036e5780631d9d75501461039957806323b872dd146103c45761023b565b806301ffc9a714610240578063033a02d61461027d57806306fdde03146102a8578063081812fc146102d3578063095ea7b314610310575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906134a4565b610927565b60405161027491906134ec565b60405180910390f35b34801561028957600080fd5b506102926109a1565b60405161029f91906134ec565b60405180910390f35b3480156102b457600080fd5b506102bd6109b4565b6040516102ca91906135a0565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f591906135f8565b610a46565b6040516103079190613666565b60405180910390f35b34801561031c57600080fd5b50610337600480360381019061033291906136ad565b610a8c565b005b610341610ba4565b005b34801561034f57600080fd5b50610358610db9565b60405161036591906136fc565b60405180910390f35b34801561037a57600080fd5b50610383610dc6565b6040516103909190613666565b60405180910390f35b3480156103a557600080fd5b506103ae610dcc565b6040516103bb9190613776565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190613791565b610df0565b005b3480156103f957600080fd5b50610402610e50565b60405161040f91906136fc565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a91906136ad565b610e56565b60405161044c91906136fc565b60405180910390f35b34801561046157600080fd5b5061046a610efb565b005b34801561047857600080fd5b50610481610f2f565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190613791565b611199565b005b3480156104b857600080fd5b506104c16111b9565b6040516104ce91906136fc565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f991906135f8565b6111bf565b60405161050b91906136fc565b60405180910390f35b34801561052057600080fd5b5061053b6004803603810190610536919061392c565b611230565b005b34801561054957600080fd5b506105526114b1565b60405161055f91906135a0565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190613a2a565b61153f565b005b34801561059d57600080fd5b506105b860048036038101906105b391906135f8565b611561565b6040516105c59190613666565b60405180910390f35b3480156105da57600080fd5b506105e3611613565b6040516105f091906134ec565b60405180910390f35b34801561060557600080fd5b5061060e611626565b60405161061b91906135a0565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190613a73565b6116b4565b60405161065891906136fc565b60405180910390f35b34801561066d57600080fd5b5061067661176c565b005b34801561068457600080fd5b5061069f600480360381019061069a919061392c565b611780565b6040516106ac91906134ec565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d791906135f8565b611c2a565b005b3480156106ea57600080fd5b506106f3611cda565b60405161070091906136fc565b60405180910390f35b34801561071557600080fd5b5061071e611ce0565b60405161072b9190613666565b60405180910390f35b34801561074057600080fd5b5061075b600480360381019061075691906135f8565b611d0a565b005b34801561076957600080fd5b50610772611d1c565b60405161077f91906135a0565b60405180910390f35b34801561079457600080fd5b5061079d611dae565b005b3480156107ab57600080fd5b506107c660048036038101906107c19190613acc565b611de2565b005b3480156107d457600080fd5b506107ef60048036038101906107ea9190613a73565b611df8565b6040516107fc91906134ec565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190613bad565b611e18565b005b34801561083a57600080fd5b50610855600480360381019061085091906135f8565b611e7a565b60405161086291906135a0565b60405180910390f35b34801561087757600080fd5b50610892600480360381019061088d9190613c30565b611f18565b60405161089f91906134ec565b60405180910390f35b3480156108b457600080fd5b506108cf60048036038101906108ca9190613a73565b611fac565b005b3480156108dd57600080fd5b506108e6612030565b6040516108f391906136fc565b60405180910390f35b34801561090857600080fd5b50610911612036565b60405161091e91906136fc565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099a57506109998261203c565b5b9050919050565b600f60019054906101000a900460ff1681565b6060600080546109c390613c9f565b80601f01602080910402602001604051908101604052809291908181526020018280546109ef90613c9f565b8015610a3c5780601f10610a1157610100808354040283529160200191610a3c565b820191906000526020600020905b815481529060010190602001808311610a1f57829003601f168201915b5050505050905090565b6000610a518261211e565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9782611561565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90613d43565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b27612169565b73ffffffffffffffffffffffffffffffffffffffff161480610b565750610b5581610b50612169565b611f18565b5b610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90613dd5565b60405180910390fd5b610b9f8383612171565b505050565b600f60019054906101000a900460ff16610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea90613e41565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7790613ed3565b60405180910390fd5b600d546032610c8f9190613f22565b610bb8610c9c9190613f22565b6001610ca6610db9565b610cb09190613f56565b1115610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890613ff8565b60405180910390fd5b6001600e54610d009190614018565b341015610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d39906140be565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610db7336001610da8610db9565b610db29190613f56565b61222a565b565b6000600880549050905090565b61dead81565b7f000000000000000000000000000000000000000000000000000000000000000081565b610e01610dfb612169565b82612248565b610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790614150565b60405180910390fd5b610e4b8383836122dd565b505050565b600b5481565b6000610e61836116b4565b8210610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e99906141e2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610f03612544565b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610fbd5750610f8e611ce0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff39061424e565b60405180910390fd5b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166032606447611046919061429d565b6110509190614018565b60405161105c906142ff565b60006040518083038185875af1925050503d8060008114611099576040519150601f19603f3d011682016040523d82523d6000602084013e61109e565b606091505b5050905060006110ac611ce0565b73ffffffffffffffffffffffffffffffffffffffff16476040516110cf906142ff565b60006040518083038185875af1925050503d806000811461110c576040519150601f19603f3d011682016040523d82523d6000602084013e611111565b606091505b5050905081611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c90614360565b60405180910390fd5b80611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c906143cc565b60405180910390fd5b5050565b6111b483838360405180602001604052806000815250611e18565b505050565b600c5481565b60006111c9610db9565b821061120a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112019061445e565b60405180910390fd5b6008828154811061121e5761121d61447e565b5b90600052602060002001549050919050565b600f60009054906101000a900460ff1661127f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611276906144f9565b60405180910390fd5b61128881611780565b156112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf90614565565b60405180910390fd5b60028151101561130d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611304906145d1565b60405180910390fd5b60006002825161131d919061429d565b9050600b54600c548263ffffffff166113369190613f56565b1115611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e9061463d565b60405180910390fd5b60005b600282611387919061466d565b63ffffffff16811015611452577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd3361dead8685815181106113e7576113e661447e565b5b60200260200101516040518463ffffffff1660e01b815260040161140d939291906146ab565b600060405180830381600087803b15801561142757600080fd5b505af115801561143b573d6000803e3d6000fd5b50505050808061144a906146e2565b91505061137a565b5060005b8163ffffffff168110156114ac57611481336001611472610db9565b61147c9190613f56565b61222a565b600c6000815480929190611494906146e2565b919050555080806114a4906146e2565b915050611456565b505050565b601180546114be90613c9f565b80601f01602080910402602001604051908101604052809291908181526020018280546114ea90613c9f565b80156115375780601f1061150c57610100808354040283529160200191611537565b820191906000526020600020905b81548152906001019060200180831161151a57829003601f168201915b505050505081565b611547612544565b806012908051906020019061155d929190613395565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190614777565b60405180910390fd5b80915050919050565b600f60009054906101000a900460ff1681565b6012805461163390613c9f565b80601f016020809104026020016040519081016040528092919081815260200182805461165f90613c9f565b80156116ac5780601f10611681576101008083540402835291602001916116ac565b820191906000526020600020905b81548152906001019060200180831161168f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171c90614809565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611774612544565b61177e60006125c2565b565b600080600090505b8251811015611c1f57610e408382815181106117a7576117a661447e565b5b602002602001015114806117d65750610d7e8382815181106117cc576117cb61447e565b5b6020026020010151145b806117fc5750610cd78382815181106117f2576117f161447e565b5b6020026020010151145b806118225750610cc68382815181106118185761181761447e565b5b6020026020010151145b806118485750610cb983828151811061183e5761183d61447e565b5b6020026020010151145b8061186e5750610c858382815181106118645761186361447e565b5b6020026020010151145b806118945750610be983828151811061188a5761188961447e565b5b6020026020010151145b806118ba5750610beb8382815181106118b0576118af61447e565b5b6020026020010151145b806118e05750610b498382815181106118d6576118d561447e565b5b6020026020010151145b806119065750610b298382815181106118fc576118fb61447e565b5b6020026020010151145b8061192c5750610b208382815181106119225761192161447e565b5b6020026020010151145b806119525750610af88382815181106119485761194761447e565b5b6020026020010151145b80611978575061093083828151811061196e5761196d61447e565b5b6020026020010151145b8061199e57506108de8382815181106119945761199361447e565b5b6020026020010151145b806119c457506108778382815181106119ba576119b961447e565b5b6020026020010151145b806119ea57506107138382815181106119e0576119df61447e565b5b6020026020010151145b80611a105750610701838281518110611a0657611a0561447e565b5b6020026020010151145b80611a3657506106f4838281518110611a2c57611a2b61447e565b5b6020026020010151145b80611a5c57506106a6838281518110611a5257611a5161447e565b5b6020026020010151145b80611a82575061051a838281518110611a7857611a7761447e565b5b6020026020010151145b80611aa85750610476838281518110611a9e57611a9d61447e565b5b6020026020010151145b80611ace5750610448838281518110611ac457611ac361447e565b5b6020026020010151145b80611af4575061044c838281518110611aea57611ae961447e565b5b6020026020010151145b80611b1a57506103f6838281518110611b1057611b0f61447e565b5b6020026020010151145b80611b405750610381838281518110611b3657611b3561447e565b5b6020026020010151145b80611b665750610362838281518110611b5c57611b5b61447e565b5b6020026020010151145b80611b8c57506102e9838281518110611b8257611b8161447e565b5b6020026020010151145b80611bb257506102cd838281518110611ba857611ba761447e565b5b6020026020010151145b80611bd8575061020d838281518110611bce57611bcd61447e565b5b6020026020010151145b80611bfd57506029838281518110611bf357611bf261447e565b5b6020026020010151145b15611c0c576001915050611c25565b8080611c17906146e2565b915050611788565b50600090505b919050565b611c32612544565b603281600d54611c429190613f56565b1115611c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7a9061489b565b60405180910390fd5b60005b81811015611cd657611cab336001611c9c610db9565b611ca69190613f56565b61222a565b600d6000815480929190611cbe906146e2565b91905055508080611cce906146e2565b915050611c86565b5050565b600e5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d12612544565b80600e8190555050565b606060018054611d2b90613c9f565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5790613c9f565b8015611da45780601f10611d7957610100808354040283529160200191611da4565b820191906000526020600020905b815481529060010190602001808311611d8757829003601f168201915b5050505050905090565b611db6612544565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611df4611ded612169565b8383612688565b5050565b60106020528060005260406000206000915054906101000a900460ff1681565b611e29611e23612169565b83612248565b611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f90614150565b60405180910390fd5b611e74848484846127f5565b50505050565b6060611e8582612851565b611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb9061492d565b60405180910390fd5b6000611ecf836128bd565b90506000815111611eef5760405180602001604052806000815250611f10565b80604051602001611f0091906149d5565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fb4612544565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b90614a69565b60405180910390fd5b61202d816125c2565b50565b600d5481565b610bb881565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061210757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612117575061211682612925565b5b9050919050565b61212781612851565b612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d90614777565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121e483611561565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61224482826040518060200160405280600081525061298f565b5050565b60008061225483611561565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061229657506122958185611f18565b5b806122d457508373ffffffffffffffffffffffffffffffffffffffff166122bc84610a46565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122fd82611561565b73ffffffffffffffffffffffffffffffffffffffff1614612353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234a90614afb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba90614b8d565b60405180910390fd5b6123ce8383836129ea565b6123d9600082612171565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124299190613f22565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124809190613f56565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461253f838383612afe565b505050565b61254c612169565b73ffffffffffffffffffffffffffffffffffffffff1661256a611ce0565b73ffffffffffffffffffffffffffffffffffffffff16146125c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b790614bf9565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee90614c65565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127e891906134ec565b60405180910390a3505050565b6128008484846122dd565b61280c84848484612b03565b61284b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284290614cf7565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606128c88261211e565b60006128d2612c9a565b905060008151116128f2576040518060200160405280600081525061291d565b806128fc84612d2c565b60405160200161290d929190614d17565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6129998383612e8d565b6129a66000848484612b03565b6129e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129dc90614cf7565b60405180910390fd5b505050565b6129f5838383613067565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a3857612a338161306c565b612a77565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a7657612a7583826130b5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aba57612ab581613222565b612af9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612af857612af782826132f3565b5b5b505050565b505050565b6000612b248473ffffffffffffffffffffffffffffffffffffffff16613372565b15612c8d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b4d612169565b8786866040518563ffffffff1660e01b8152600401612b6f9493929190614d90565b602060405180830381600087803b158015612b8957600080fd5b505af1925050508015612bba57506040513d601f19601f82011682018060405250810190612bb79190614df1565b60015b612c3d573d8060008114612bea576040519150601f19603f3d011682016040523d82523d6000602084013e612bef565b606091505b50600081511415612c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2c90614cf7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c92565b600190505b949350505050565b606060128054612ca990613c9f565b80601f0160208091040260200160405190810160405280929190818152602001828054612cd590613c9f565b8015612d225780601f10612cf757610100808354040283529160200191612d22565b820191906000526020600020905b815481529060010190602001808311612d0557829003601f168201915b5050505050905090565b60606000821415612d74576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e88565b600082905060005b60008214612da6578080612d8f906146e2565b915050600a82612d9f919061429d565b9150612d7c565b60008167ffffffffffffffff811115612dc257612dc16137e9565b5b6040519080825280601f01601f191660200182016040528015612df45781602001600182028036833780820191505090505b5090505b60008514612e8157600182612e0d9190613f22565b9150600a85612e1c9190614e1e565b6030612e289190613f56565b60f81b818381518110612e3e57612e3d61447e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e7a919061429d565b9450612df8565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef490614e9b565b60405180910390fd5b612f0681612851565b15612f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3d90614f07565b60405180910390fd5b612f52600083836129ea565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fa29190613f56565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461306360008383612afe565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016130c2846116b4565b6130cc9190613f22565b90506000600760008481526020019081526020016000205490508181146131b1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506132369190613f22565b90506000600960008481526020019081526020016000205490506000600883815481106132665761326561447e565b5b9060005260206000200154905080600883815481106132885761328761447e565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806132d7576132d6614f27565b5b6001900381819060005260206000200160009055905550505050565b60006132fe836116b4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546133a190613c9f565b90600052602060002090601f0160209004810192826133c3576000855561340a565b82601f106133dc57805160ff191683800117855561340a565b8280016001018555821561340a579182015b828111156134095782518255916020019190600101906133ee565b5b509050613417919061341b565b5090565b5b8082111561343457600081600090555060010161341c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134818161344c565b811461348c57600080fd5b50565b60008135905061349e81613478565b92915050565b6000602082840312156134ba576134b9613442565b5b60006134c88482850161348f565b91505092915050565b60008115159050919050565b6134e6816134d1565b82525050565b600060208201905061350160008301846134dd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613541578082015181840152602081019050613526565b83811115613550576000848401525b50505050565b6000601f19601f8301169050919050565b600061357282613507565b61357c8185613512565b935061358c818560208601613523565b61359581613556565b840191505092915050565b600060208201905081810360008301526135ba8184613567565b905092915050565b6000819050919050565b6135d5816135c2565b81146135e057600080fd5b50565b6000813590506135f2816135cc565b92915050565b60006020828403121561360e5761360d613442565b5b600061361c848285016135e3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061365082613625565b9050919050565b61366081613645565b82525050565b600060208201905061367b6000830184613657565b92915050565b61368a81613645565b811461369557600080fd5b50565b6000813590506136a781613681565b92915050565b600080604083850312156136c4576136c3613442565b5b60006136d285828601613698565b92505060206136e3858286016135e3565b9150509250929050565b6136f6816135c2565b82525050565b600060208201905061371160008301846136ed565b92915050565b6000819050919050565b600061373c61373761373284613625565b613717565b613625565b9050919050565b600061374e82613721565b9050919050565b600061376082613743565b9050919050565b61377081613755565b82525050565b600060208201905061378b6000830184613767565b92915050565b6000806000606084860312156137aa576137a9613442565b5b60006137b886828701613698565b93505060206137c986828701613698565b92505060406137da868287016135e3565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61382182613556565b810181811067ffffffffffffffff821117156138405761383f6137e9565b5b80604052505050565b6000613853613438565b905061385f8282613818565b919050565b600067ffffffffffffffff82111561387f5761387e6137e9565b5b602082029050602081019050919050565b600080fd5b60006138a86138a384613864565b613849565b905080838252602082019050602084028301858111156138cb576138ca613890565b5b835b818110156138f457806138e088826135e3565b8452602084019350506020810190506138cd565b5050509392505050565b600082601f830112613913576139126137e4565b5b8135613923848260208601613895565b91505092915050565b60006020828403121561394257613941613442565b5b600082013567ffffffffffffffff8111156139605761395f613447565b5b61396c848285016138fe565b91505092915050565b600080fd5b600067ffffffffffffffff821115613995576139946137e9565b5b61399e82613556565b9050602081019050919050565b82818337600083830152505050565b60006139cd6139c88461397a565b613849565b9050828152602081018484840111156139e9576139e8613975565b5b6139f48482856139ab565b509392505050565b600082601f830112613a1157613a106137e4565b5b8135613a218482602086016139ba565b91505092915050565b600060208284031215613a4057613a3f613442565b5b600082013567ffffffffffffffff811115613a5e57613a5d613447565b5b613a6a848285016139fc565b91505092915050565b600060208284031215613a8957613a88613442565b5b6000613a9784828501613698565b91505092915050565b613aa9816134d1565b8114613ab457600080fd5b50565b600081359050613ac681613aa0565b92915050565b60008060408385031215613ae357613ae2613442565b5b6000613af185828601613698565b9250506020613b0285828601613ab7565b9150509250929050565b600067ffffffffffffffff821115613b2757613b266137e9565b5b613b3082613556565b9050602081019050919050565b6000613b50613b4b84613b0c565b613849565b905082815260208101848484011115613b6c57613b6b613975565b5b613b778482856139ab565b509392505050565b600082601f830112613b9457613b936137e4565b5b8135613ba4848260208601613b3d565b91505092915050565b60008060008060808587031215613bc757613bc6613442565b5b6000613bd587828801613698565b9450506020613be687828801613698565b9350506040613bf7878288016135e3565b925050606085013567ffffffffffffffff811115613c1857613c17613447565b5b613c2487828801613b7f565b91505092959194509250565b60008060408385031215613c4757613c46613442565b5b6000613c5585828601613698565b9250506020613c6685828601613698565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613cb757607f821691505b60208210811415613ccb57613cca613c70565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d2d602183613512565b9150613d3882613cd1565b604082019050919050565b60006020820190508181036000830152613d5c81613d20565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613dbf603e83613512565b9150613dca82613d63565b604082019050919050565b60006020820190508181036000830152613dee81613db2565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b6000613e2b601b83613512565b9150613e3682613df5565b602082019050919050565b60006020820190508181036000830152613e5a81613e1e565b9050919050565b7f4164647265737320616c72656164792061646f70746564206120736f63696f7060008201527f6574682100000000000000000000000000000000000000000000000000000000602082015250565b6000613ebd602483613512565b9150613ec882613e61565b604082019050919050565b60006020820190508181036000830152613eec81613eb0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f2d826135c2565b9150613f38836135c2565b925082821015613f4b57613f4a613ef3565b5b828203905092915050565b6000613f61826135c2565b9150613f6c836135c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fa157613fa0613ef3565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b6000613fe2602083613512565b9150613fed82613fac565b602082019050919050565b6000602082019050818103600083015261401181613fd5565b9050919050565b6000614023826135c2565b915061402e836135c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561406757614066613ef3565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006140a8601383613512565b91506140b382614072565b602082019050919050565b600060208201905081810360008301526140d78161409b565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b600061413a602e83613512565b9150614145826140de565b604082019050919050565b600060208201905081810360008301526141698161412d565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006141cc602b83613512565b91506141d782614170565b604082019050919050565b600060208201905081810360008301526141fb816141bf565b9050919050565b7f496e76616c69642073656e646572000000000000000000000000000000000000600082015250565b6000614238600e83613512565b915061424382614202565b602082019050919050565b600060208201905081810360008301526142678161422b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006142a8826135c2565b91506142b3836135c2565b9250826142c3576142c261426e565b5b828204905092915050565b600081905092915050565b50565b60006142e96000836142ce565b91506142f4826142d9565b600082019050919050565b600061430a826142dc565b9150819050919050565b7f5472616e736665722031206661696c6564000000000000000000000000000000600082015250565b600061434a601183613512565b915061435582614314565b602082019050919050565b600060208201905081810360008301526143798161433d565b9050919050565b7f5472616e736665722032206661696c6564000000000000000000000000000000600082015250565b60006143b6601183613512565b91506143c182614380565b602082019050919050565b600060208201905081810360008301526143e5816143a9565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614448602c83613512565b9150614453826143ec565b604082019050919050565b600060208201905081810360008301526144778161443b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4275726e206d7573742062652061637469766520746f206d696e740000000000600082015250565b60006144e3601b83613512565b91506144ee826144ad565b602082019050919050565b60006020820190508181036000830152614512816144d6565b9050919050565b7f596f75206d757374206e6f7420686f6c6420312f3120736f63696f7065746800600082015250565b600061454f601f83613512565b915061455a82614519565b602082019050919050565b6000602082019050818103600083015261457e81614542565b9050919050565b7f596f75206d75737420686f6c64206120736f63696f7065746820706169727300600082015250565b60006145bb601f83613512565b91506145c682614585565b602082019050919050565b600060208201905081810360008301526145ea816145ae565b9050919050565b7f45786365656420686f6c64657220737570706c79000000000000000000000000600082015250565b6000614627601483613512565b9150614632826145f1565b602082019050919050565b600060208201905081810360008301526146568161461a565b9050919050565b600063ffffffff82169050919050565b60006146788261465d565b91506146838361465d565b92508163ffffffff04831182151516156146a05761469f613ef3565b5b828202905092915050565b60006060820190506146c06000830186613657565b6146cd6020830185613657565b6146da60408301846136ed565b949350505050565b60006146ed826135c2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147205761471f613ef3565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614761601883613512565b915061476c8261472b565b602082019050919050565b6000602082019050818103600083015261479081614754565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006147f3602983613512565b91506147fe82614797565b604082019050919050565b60006020820190508181036000830152614822816147e6565b9050919050565b7f5468697320616d6f756e74206973206d6f7265207468616e206d617820616c6c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b6000614885602483613512565b915061489082614829565b604082019050919050565b600060208201905081810360008301526148b481614878565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614917602f83613512565b9150614922826148bb565b604082019050919050565b600060208201905081810360008301526149468161490a565b9050919050565b600081905092915050565b600061496382613507565b61496d818561494d565b935061497d818560208601613523565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006149bf60058361494d565b91506149ca82614989565b600582019050919050565b60006149e18284614958565b91506149ec826149b2565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a53602683613512565b9150614a5e826149f7565b604082019050919050565b60006020820190508181036000830152614a8281614a46565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614ae5602583613512565b9150614af082614a89565b604082019050919050565b60006020820190508181036000830152614b1481614ad8565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b77602483613512565b9150614b8282614b1b565b604082019050919050565b60006020820190508181036000830152614ba681614b6a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614be3602083613512565b9150614bee82614bad565b602082019050919050565b60006020820190508181036000830152614c1281614bd6565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614c4f601983613512565b9150614c5a82614c19565b602082019050919050565b60006020820190508181036000830152614c7e81614c42565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614ce1603283613512565b9150614cec82614c85565b604082019050919050565b60006020820190508181036000830152614d1081614cd4565b9050919050565b6000614d238285614958565b9150614d2f8284614958565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000614d6282614d3b565b614d6c8185614d46565b9350614d7c818560208601613523565b614d8581613556565b840191505092915050565b6000608082019050614da56000830187613657565b614db26020830186613657565b614dbf60408301856136ed565b8181036060830152614dd18184614d57565b905095945050505050565b600081519050614deb81613478565b92915050565b600060208284031215614e0757614e06613442565b5b6000614e1584828501614ddc565b91505092915050565b6000614e29826135c2565b9150614e34836135c2565b925082614e4457614e4361426e565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614e85602083613512565b9150614e9082614e4f565b602082019050919050565b60006020820190508181036000830152614eb481614e78565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614ef1601c83613512565b9150614efc82614ebb565b602082019050919050565b60006020820190508181036000830152614f2081614ee4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220405f411b388e808cd38ef71b686642bfc1938a7840e90145615c43dc7ed4214964736f6c634300080900330000000000000000000000001d6bb2d0c9dfe9d0da142da3e0aa8c181217e0d3000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000009414e58494f5045544800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003414e580000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061023b5760003560e01c80636352211e1161012e57806395d89b41116100ab578063c87b56dd1161006f578063c87b56dd1461082e578063e985e9c51461086b578063f2fde38b146108a8578063f3e38821146108d1578063f47c84c5146108fc5761023b565b806395d89b411461075d57806398a01c8f14610788578063a22cb4651461079f578063b5b1cd7c146107c8578063b88d4fde146108055761023b565b806372308778116100f257806372308778146106785780637d5cb4e5146106b55780638d859f3e146106de5780638da5cb5b1461070957806391b7f5ed146107345761023b565b80636352211e1461059157806366caa6ab146105ce5780636c0360eb146105f957806370a0823114610624578063715018a6146106615761023b565b80632910e4bf116101bc57806347b5dd541161018057806347b5dd54146104ac5780634f6ccce7146104d757806353a89e89146105145780635503a0e81461053d57806355f804b3146105685761023b565b80632910e4bf146103ed5780632f745c591461041857806334918dfd146104555780633ccfd60b1461046c57806342842e0e146104835761023b565b80631249c58b116102035780631249c58b1461033957806318160ddd146103435780631cd3a4ac1461036e5780631d9d75501461039957806323b872dd146103c45761023b565b806301ffc9a714610240578063033a02d61461027d57806306fdde03146102a8578063081812fc146102d3578063095ea7b314610310575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906134a4565b610927565b60405161027491906134ec565b60405180910390f35b34801561028957600080fd5b506102926109a1565b60405161029f91906134ec565b60405180910390f35b3480156102b457600080fd5b506102bd6109b4565b6040516102ca91906135a0565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f591906135f8565b610a46565b6040516103079190613666565b60405180910390f35b34801561031c57600080fd5b50610337600480360381019061033291906136ad565b610a8c565b005b610341610ba4565b005b34801561034f57600080fd5b50610358610db9565b60405161036591906136fc565b60405180910390f35b34801561037a57600080fd5b50610383610dc6565b6040516103909190613666565b60405180910390f35b3480156103a557600080fd5b506103ae610dcc565b6040516103bb9190613776565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190613791565b610df0565b005b3480156103f957600080fd5b50610402610e50565b60405161040f91906136fc565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a91906136ad565b610e56565b60405161044c91906136fc565b60405180910390f35b34801561046157600080fd5b5061046a610efb565b005b34801561047857600080fd5b50610481610f2f565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190613791565b611199565b005b3480156104b857600080fd5b506104c16111b9565b6040516104ce91906136fc565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f991906135f8565b6111bf565b60405161050b91906136fc565b60405180910390f35b34801561052057600080fd5b5061053b6004803603810190610536919061392c565b611230565b005b34801561054957600080fd5b506105526114b1565b60405161055f91906135a0565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190613a2a565b61153f565b005b34801561059d57600080fd5b506105b860048036038101906105b391906135f8565b611561565b6040516105c59190613666565b60405180910390f35b3480156105da57600080fd5b506105e3611613565b6040516105f091906134ec565b60405180910390f35b34801561060557600080fd5b5061060e611626565b60405161061b91906135a0565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190613a73565b6116b4565b60405161065891906136fc565b60405180910390f35b34801561066d57600080fd5b5061067661176c565b005b34801561068457600080fd5b5061069f600480360381019061069a919061392c565b611780565b6040516106ac91906134ec565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d791906135f8565b611c2a565b005b3480156106ea57600080fd5b506106f3611cda565b60405161070091906136fc565b60405180910390f35b34801561071557600080fd5b5061071e611ce0565b60405161072b9190613666565b60405180910390f35b34801561074057600080fd5b5061075b600480360381019061075691906135f8565b611d0a565b005b34801561076957600080fd5b50610772611d1c565b60405161077f91906135a0565b60405180910390f35b34801561079457600080fd5b5061079d611dae565b005b3480156107ab57600080fd5b506107c660048036038101906107c19190613acc565b611de2565b005b3480156107d457600080fd5b506107ef60048036038101906107ea9190613a73565b611df8565b6040516107fc91906134ec565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190613bad565b611e18565b005b34801561083a57600080fd5b50610855600480360381019061085091906135f8565b611e7a565b60405161086291906135a0565b60405180910390f35b34801561087757600080fd5b50610892600480360381019061088d9190613c30565b611f18565b60405161089f91906134ec565b60405180910390f35b3480156108b457600080fd5b506108cf60048036038101906108ca9190613a73565b611fac565b005b3480156108dd57600080fd5b506108e6612030565b6040516108f391906136fc565b60405180910390f35b34801561090857600080fd5b50610911612036565b60405161091e91906136fc565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099a57506109998261203c565b5b9050919050565b600f60019054906101000a900460ff1681565b6060600080546109c390613c9f565b80601f01602080910402602001604051908101604052809291908181526020018280546109ef90613c9f565b8015610a3c5780601f10610a1157610100808354040283529160200191610a3c565b820191906000526020600020905b815481529060010190602001808311610a1f57829003601f168201915b5050505050905090565b6000610a518261211e565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9782611561565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90613d43565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b27612169565b73ffffffffffffffffffffffffffffffffffffffff161480610b565750610b5581610b50612169565b611f18565b5b610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90613dd5565b60405180910390fd5b610b9f8383612171565b505050565b600f60019054906101000a900460ff16610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea90613e41565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7790613ed3565b60405180910390fd5b600d546032610c8f9190613f22565b610bb8610c9c9190613f22565b6001610ca6610db9565b610cb09190613f56565b1115610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890613ff8565b60405180910390fd5b6001600e54610d009190614018565b341015610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d39906140be565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610db7336001610da8610db9565b610db29190613f56565b61222a565b565b6000600880549050905090565b61dead81565b7f0000000000000000000000001d6bb2d0c9dfe9d0da142da3e0aa8c181217e0d381565b610e01610dfb612169565b82612248565b610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790614150565b60405180910390fd5b610e4b8383836122dd565b505050565b600b5481565b6000610e61836116b4565b8210610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e99906141e2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610f03612544565b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610fbd5750610f8e611ce0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff39061424e565b60405180910390fd5b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166032606447611046919061429d565b6110509190614018565b60405161105c906142ff565b60006040518083038185875af1925050503d8060008114611099576040519150601f19603f3d011682016040523d82523d6000602084013e61109e565b606091505b5050905060006110ac611ce0565b73ffffffffffffffffffffffffffffffffffffffff16476040516110cf906142ff565b60006040518083038185875af1925050503d806000811461110c576040519150601f19603f3d011682016040523d82523d6000602084013e611111565b606091505b5050905081611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c90614360565b60405180910390fd5b80611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c906143cc565b60405180910390fd5b5050565b6111b483838360405180602001604052806000815250611e18565b505050565b600c5481565b60006111c9610db9565b821061120a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112019061445e565b60405180910390fd5b6008828154811061121e5761121d61447e565b5b90600052602060002001549050919050565b600f60009054906101000a900460ff1661127f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611276906144f9565b60405180910390fd5b61128881611780565b156112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf90614565565b60405180910390fd5b60028151101561130d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611304906145d1565b60405180910390fd5b60006002825161131d919061429d565b9050600b54600c548263ffffffff166113369190613f56565b1115611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e9061463d565b60405180910390fd5b60005b600282611387919061466d565b63ffffffff16811015611452577f0000000000000000000000001d6bb2d0c9dfe9d0da142da3e0aa8c181217e0d373ffffffffffffffffffffffffffffffffffffffff166323b872dd3361dead8685815181106113e7576113e661447e565b5b60200260200101516040518463ffffffff1660e01b815260040161140d939291906146ab565b600060405180830381600087803b15801561142757600080fd5b505af115801561143b573d6000803e3d6000fd5b50505050808061144a906146e2565b91505061137a565b5060005b8163ffffffff168110156114ac57611481336001611472610db9565b61147c9190613f56565b61222a565b600c6000815480929190611494906146e2565b919050555080806114a4906146e2565b915050611456565b505050565b601180546114be90613c9f565b80601f01602080910402602001604051908101604052809291908181526020018280546114ea90613c9f565b80156115375780601f1061150c57610100808354040283529160200191611537565b820191906000526020600020905b81548152906001019060200180831161151a57829003601f168201915b505050505081565b611547612544565b806012908051906020019061155d929190613395565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190614777565b60405180910390fd5b80915050919050565b600f60009054906101000a900460ff1681565b6012805461163390613c9f565b80601f016020809104026020016040519081016040528092919081815260200182805461165f90613c9f565b80156116ac5780601f10611681576101008083540402835291602001916116ac565b820191906000526020600020905b81548152906001019060200180831161168f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171c90614809565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611774612544565b61177e60006125c2565b565b600080600090505b8251811015611c1f57610e408382815181106117a7576117a661447e565b5b602002602001015114806117d65750610d7e8382815181106117cc576117cb61447e565b5b6020026020010151145b806117fc5750610cd78382815181106117f2576117f161447e565b5b6020026020010151145b806118225750610cc68382815181106118185761181761447e565b5b6020026020010151145b806118485750610cb983828151811061183e5761183d61447e565b5b6020026020010151145b8061186e5750610c858382815181106118645761186361447e565b5b6020026020010151145b806118945750610be983828151811061188a5761188961447e565b5b6020026020010151145b806118ba5750610beb8382815181106118b0576118af61447e565b5b6020026020010151145b806118e05750610b498382815181106118d6576118d561447e565b5b6020026020010151145b806119065750610b298382815181106118fc576118fb61447e565b5b6020026020010151145b8061192c5750610b208382815181106119225761192161447e565b5b6020026020010151145b806119525750610af88382815181106119485761194761447e565b5b6020026020010151145b80611978575061093083828151811061196e5761196d61447e565b5b6020026020010151145b8061199e57506108de8382815181106119945761199361447e565b5b6020026020010151145b806119c457506108778382815181106119ba576119b961447e565b5b6020026020010151145b806119ea57506107138382815181106119e0576119df61447e565b5b6020026020010151145b80611a105750610701838281518110611a0657611a0561447e565b5b6020026020010151145b80611a3657506106f4838281518110611a2c57611a2b61447e565b5b6020026020010151145b80611a5c57506106a6838281518110611a5257611a5161447e565b5b6020026020010151145b80611a82575061051a838281518110611a7857611a7761447e565b5b6020026020010151145b80611aa85750610476838281518110611a9e57611a9d61447e565b5b6020026020010151145b80611ace5750610448838281518110611ac457611ac361447e565b5b6020026020010151145b80611af4575061044c838281518110611aea57611ae961447e565b5b6020026020010151145b80611b1a57506103f6838281518110611b1057611b0f61447e565b5b6020026020010151145b80611b405750610381838281518110611b3657611b3561447e565b5b6020026020010151145b80611b665750610362838281518110611b5c57611b5b61447e565b5b6020026020010151145b80611b8c57506102e9838281518110611b8257611b8161447e565b5b6020026020010151145b80611bb257506102cd838281518110611ba857611ba761447e565b5b6020026020010151145b80611bd8575061020d838281518110611bce57611bcd61447e565b5b6020026020010151145b80611bfd57506029838281518110611bf357611bf261447e565b5b6020026020010151145b15611c0c576001915050611c25565b8080611c17906146e2565b915050611788565b50600090505b919050565b611c32612544565b603281600d54611c429190613f56565b1115611c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7a9061489b565b60405180910390fd5b60005b81811015611cd657611cab336001611c9c610db9565b611ca69190613f56565b61222a565b600d6000815480929190611cbe906146e2565b91905055508080611cce906146e2565b915050611c86565b5050565b600e5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d12612544565b80600e8190555050565b606060018054611d2b90613c9f565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5790613c9f565b8015611da45780601f10611d7957610100808354040283529160200191611da4565b820191906000526020600020905b815481529060010190602001808311611d8757829003601f168201915b5050505050905090565b611db6612544565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611df4611ded612169565b8383612688565b5050565b60106020528060005260406000206000915054906101000a900460ff1681565b611e29611e23612169565b83612248565b611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f90614150565b60405180910390fd5b611e74848484846127f5565b50505050565b6060611e8582612851565b611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb9061492d565b60405180910390fd5b6000611ecf836128bd565b90506000815111611eef5760405180602001604052806000815250611f10565b80604051602001611f0091906149d5565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fb4612544565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b90614a69565b60405180910390fd5b61202d816125c2565b50565b600d5481565b610bb881565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061210757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612117575061211682612925565b5b9050919050565b61212781612851565b612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d90614777565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121e483611561565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61224482826040518060200160405280600081525061298f565b5050565b60008061225483611561565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061229657506122958185611f18565b5b806122d457508373ffffffffffffffffffffffffffffffffffffffff166122bc84610a46565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122fd82611561565b73ffffffffffffffffffffffffffffffffffffffff1614612353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234a90614afb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba90614b8d565b60405180910390fd5b6123ce8383836129ea565b6123d9600082612171565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124299190613f22565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124809190613f56565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461253f838383612afe565b505050565b61254c612169565b73ffffffffffffffffffffffffffffffffffffffff1661256a611ce0565b73ffffffffffffffffffffffffffffffffffffffff16146125c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b790614bf9565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee90614c65565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127e891906134ec565b60405180910390a3505050565b6128008484846122dd565b61280c84848484612b03565b61284b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284290614cf7565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606128c88261211e565b60006128d2612c9a565b905060008151116128f2576040518060200160405280600081525061291d565b806128fc84612d2c565b60405160200161290d929190614d17565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6129998383612e8d565b6129a66000848484612b03565b6129e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129dc90614cf7565b60405180910390fd5b505050565b6129f5838383613067565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a3857612a338161306c565b612a77565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a7657612a7583826130b5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aba57612ab581613222565b612af9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612af857612af782826132f3565b5b5b505050565b505050565b6000612b248473ffffffffffffffffffffffffffffffffffffffff16613372565b15612c8d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b4d612169565b8786866040518563ffffffff1660e01b8152600401612b6f9493929190614d90565b602060405180830381600087803b158015612b8957600080fd5b505af1925050508015612bba57506040513d601f19601f82011682018060405250810190612bb79190614df1565b60015b612c3d573d8060008114612bea576040519150601f19603f3d011682016040523d82523d6000602084013e612bef565b606091505b50600081511415612c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2c90614cf7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c92565b600190505b949350505050565b606060128054612ca990613c9f565b80601f0160208091040260200160405190810160405280929190818152602001828054612cd590613c9f565b8015612d225780601f10612cf757610100808354040283529160200191612d22565b820191906000526020600020905b815481529060010190602001808311612d0557829003601f168201915b5050505050905090565b60606000821415612d74576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e88565b600082905060005b60008214612da6578080612d8f906146e2565b915050600a82612d9f919061429d565b9150612d7c565b60008167ffffffffffffffff811115612dc257612dc16137e9565b5b6040519080825280601f01601f191660200182016040528015612df45781602001600182028036833780820191505090505b5090505b60008514612e8157600182612e0d9190613f22565b9150600a85612e1c9190614e1e565b6030612e289190613f56565b60f81b818381518110612e3e57612e3d61447e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e7a919061429d565b9450612df8565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef490614e9b565b60405180910390fd5b612f0681612851565b15612f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3d90614f07565b60405180910390fd5b612f52600083836129ea565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fa29190613f56565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461306360008383612afe565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016130c2846116b4565b6130cc9190613f22565b90506000600760008481526020019081526020016000205490508181146131b1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506132369190613f22565b90506000600960008481526020019081526020016000205490506000600883815481106132665761326561447e565b5b9060005260206000200154905080600883815481106132885761328761447e565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806132d7576132d6614f27565b5b6001900381819060005260206000200160009055905550505050565b60006132fe836116b4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546133a190613c9f565b90600052602060002090601f0160209004810192826133c3576000855561340a565b82601f106133dc57805160ff191683800117855561340a565b8280016001018555821561340a579182015b828111156134095782518255916020019190600101906133ee565b5b509050613417919061341b565b5090565b5b8082111561343457600081600090555060010161341c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134818161344c565b811461348c57600080fd5b50565b60008135905061349e81613478565b92915050565b6000602082840312156134ba576134b9613442565b5b60006134c88482850161348f565b91505092915050565b60008115159050919050565b6134e6816134d1565b82525050565b600060208201905061350160008301846134dd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613541578082015181840152602081019050613526565b83811115613550576000848401525b50505050565b6000601f19601f8301169050919050565b600061357282613507565b61357c8185613512565b935061358c818560208601613523565b61359581613556565b840191505092915050565b600060208201905081810360008301526135ba8184613567565b905092915050565b6000819050919050565b6135d5816135c2565b81146135e057600080fd5b50565b6000813590506135f2816135cc565b92915050565b60006020828403121561360e5761360d613442565b5b600061361c848285016135e3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061365082613625565b9050919050565b61366081613645565b82525050565b600060208201905061367b6000830184613657565b92915050565b61368a81613645565b811461369557600080fd5b50565b6000813590506136a781613681565b92915050565b600080604083850312156136c4576136c3613442565b5b60006136d285828601613698565b92505060206136e3858286016135e3565b9150509250929050565b6136f6816135c2565b82525050565b600060208201905061371160008301846136ed565b92915050565b6000819050919050565b600061373c61373761373284613625565b613717565b613625565b9050919050565b600061374e82613721565b9050919050565b600061376082613743565b9050919050565b61377081613755565b82525050565b600060208201905061378b6000830184613767565b92915050565b6000806000606084860312156137aa576137a9613442565b5b60006137b886828701613698565b93505060206137c986828701613698565b92505060406137da868287016135e3565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61382182613556565b810181811067ffffffffffffffff821117156138405761383f6137e9565b5b80604052505050565b6000613853613438565b905061385f8282613818565b919050565b600067ffffffffffffffff82111561387f5761387e6137e9565b5b602082029050602081019050919050565b600080fd5b60006138a86138a384613864565b613849565b905080838252602082019050602084028301858111156138cb576138ca613890565b5b835b818110156138f457806138e088826135e3565b8452602084019350506020810190506138cd565b5050509392505050565b600082601f830112613913576139126137e4565b5b8135613923848260208601613895565b91505092915050565b60006020828403121561394257613941613442565b5b600082013567ffffffffffffffff8111156139605761395f613447565b5b61396c848285016138fe565b91505092915050565b600080fd5b600067ffffffffffffffff821115613995576139946137e9565b5b61399e82613556565b9050602081019050919050565b82818337600083830152505050565b60006139cd6139c88461397a565b613849565b9050828152602081018484840111156139e9576139e8613975565b5b6139f48482856139ab565b509392505050565b600082601f830112613a1157613a106137e4565b5b8135613a218482602086016139ba565b91505092915050565b600060208284031215613a4057613a3f613442565b5b600082013567ffffffffffffffff811115613a5e57613a5d613447565b5b613a6a848285016139fc565b91505092915050565b600060208284031215613a8957613a88613442565b5b6000613a9784828501613698565b91505092915050565b613aa9816134d1565b8114613ab457600080fd5b50565b600081359050613ac681613aa0565b92915050565b60008060408385031215613ae357613ae2613442565b5b6000613af185828601613698565b9250506020613b0285828601613ab7565b9150509250929050565b600067ffffffffffffffff821115613b2757613b266137e9565b5b613b3082613556565b9050602081019050919050565b6000613b50613b4b84613b0c565b613849565b905082815260208101848484011115613b6c57613b6b613975565b5b613b778482856139ab565b509392505050565b600082601f830112613b9457613b936137e4565b5b8135613ba4848260208601613b3d565b91505092915050565b60008060008060808587031215613bc757613bc6613442565b5b6000613bd587828801613698565b9450506020613be687828801613698565b9350506040613bf7878288016135e3565b925050606085013567ffffffffffffffff811115613c1857613c17613447565b5b613c2487828801613b7f565b91505092959194509250565b60008060408385031215613c4757613c46613442565b5b6000613c5585828601613698565b9250506020613c6685828601613698565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613cb757607f821691505b60208210811415613ccb57613cca613c70565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d2d602183613512565b9150613d3882613cd1565b604082019050919050565b60006020820190508181036000830152613d5c81613d20565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613dbf603e83613512565b9150613dca82613d63565b604082019050919050565b60006020820190508181036000830152613dee81613db2565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b6000613e2b601b83613512565b9150613e3682613df5565b602082019050919050565b60006020820190508181036000830152613e5a81613e1e565b9050919050565b7f4164647265737320616c72656164792061646f70746564206120736f63696f7060008201527f6574682100000000000000000000000000000000000000000000000000000000602082015250565b6000613ebd602483613512565b9150613ec882613e61565b604082019050919050565b60006020820190508181036000830152613eec81613eb0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f2d826135c2565b9150613f38836135c2565b925082821015613f4b57613f4a613ef3565b5b828203905092915050565b6000613f61826135c2565b9150613f6c836135c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fa157613fa0613ef3565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b6000613fe2602083613512565b9150613fed82613fac565b602082019050919050565b6000602082019050818103600083015261401181613fd5565b9050919050565b6000614023826135c2565b915061402e836135c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561406757614066613ef3565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006140a8601383613512565b91506140b382614072565b602082019050919050565b600060208201905081810360008301526140d78161409b565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b600061413a602e83613512565b9150614145826140de565b604082019050919050565b600060208201905081810360008301526141698161412d565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006141cc602b83613512565b91506141d782614170565b604082019050919050565b600060208201905081810360008301526141fb816141bf565b9050919050565b7f496e76616c69642073656e646572000000000000000000000000000000000000600082015250565b6000614238600e83613512565b915061424382614202565b602082019050919050565b600060208201905081810360008301526142678161422b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006142a8826135c2565b91506142b3836135c2565b9250826142c3576142c261426e565b5b828204905092915050565b600081905092915050565b50565b60006142e96000836142ce565b91506142f4826142d9565b600082019050919050565b600061430a826142dc565b9150819050919050565b7f5472616e736665722031206661696c6564000000000000000000000000000000600082015250565b600061434a601183613512565b915061435582614314565b602082019050919050565b600060208201905081810360008301526143798161433d565b9050919050565b7f5472616e736665722032206661696c6564000000000000000000000000000000600082015250565b60006143b6601183613512565b91506143c182614380565b602082019050919050565b600060208201905081810360008301526143e5816143a9565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614448602c83613512565b9150614453826143ec565b604082019050919050565b600060208201905081810360008301526144778161443b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4275726e206d7573742062652061637469766520746f206d696e740000000000600082015250565b60006144e3601b83613512565b91506144ee826144ad565b602082019050919050565b60006020820190508181036000830152614512816144d6565b9050919050565b7f596f75206d757374206e6f7420686f6c6420312f3120736f63696f7065746800600082015250565b600061454f601f83613512565b915061455a82614519565b602082019050919050565b6000602082019050818103600083015261457e81614542565b9050919050565b7f596f75206d75737420686f6c64206120736f63696f7065746820706169727300600082015250565b60006145bb601f83613512565b91506145c682614585565b602082019050919050565b600060208201905081810360008301526145ea816145ae565b9050919050565b7f45786365656420686f6c64657220737570706c79000000000000000000000000600082015250565b6000614627601483613512565b9150614632826145f1565b602082019050919050565b600060208201905081810360008301526146568161461a565b9050919050565b600063ffffffff82169050919050565b60006146788261465d565b91506146838361465d565b92508163ffffffff04831182151516156146a05761469f613ef3565b5b828202905092915050565b60006060820190506146c06000830186613657565b6146cd6020830185613657565b6146da60408301846136ed565b949350505050565b60006146ed826135c2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147205761471f613ef3565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614761601883613512565b915061476c8261472b565b602082019050919050565b6000602082019050818103600083015261479081614754565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006147f3602983613512565b91506147fe82614797565b604082019050919050565b60006020820190508181036000830152614822816147e6565b9050919050565b7f5468697320616d6f756e74206973206d6f7265207468616e206d617820616c6c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b6000614885602483613512565b915061489082614829565b604082019050919050565b600060208201905081810360008301526148b481614878565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614917602f83613512565b9150614922826148bb565b604082019050919050565b600060208201905081810360008301526149468161490a565b9050919050565b600081905092915050565b600061496382613507565b61496d818561494d565b935061497d818560208601613523565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006149bf60058361494d565b91506149ca82614989565b600582019050919050565b60006149e18284614958565b91506149ec826149b2565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a53602683613512565b9150614a5e826149f7565b604082019050919050565b60006020820190508181036000830152614a8281614a46565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614ae5602583613512565b9150614af082614a89565b604082019050919050565b60006020820190508181036000830152614b1481614ad8565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b77602483613512565b9150614b8282614b1b565b604082019050919050565b60006020820190508181036000830152614ba681614b6a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614be3602083613512565b9150614bee82614bad565b602082019050919050565b60006020820190508181036000830152614c1281614bd6565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614c4f601983613512565b9150614c5a82614c19565b602082019050919050565b60006020820190508181036000830152614c7e81614c42565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614ce1603283613512565b9150614cec82614c85565b604082019050919050565b60006020820190508181036000830152614d1081614cd4565b9050919050565b6000614d238285614958565b9150614d2f8284614958565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000614d6282614d3b565b614d6c8185614d46565b9350614d7c818560208601613523565b614d8581613556565b840191505092915050565b6000608082019050614da56000830187613657565b614db26020830186613657565b614dbf60408301856136ed565b8181036060830152614dd18184614d57565b905095945050505050565b600081519050614deb81613478565b92915050565b600060208284031215614e0757614e06613442565b5b6000614e1584828501614ddc565b91505092915050565b6000614e29826135c2565b9150614e34836135c2565b925082614e4457614e4361426e565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614e85602083613512565b9150614e9082614e4f565b602082019050919050565b60006020820190508181036000830152614eb481614e78565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614ef1601c83613512565b9150614efc82614ebb565b602082019050919050565b60006020820190508181036000830152614f2081614ee4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220405f411b388e808cd38ef71b686642bfc1938a7840e90145615c43dc7ed4214964736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001d6bb2d0c9dfe9d0da142da3e0aa8c181217e0d3000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000009414e58494f5045544800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003414e580000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : sociopeth (address): 0x1d6bB2D0c9dfe9d0dA142dA3e0aa8c181217E0d3
Arg [1] : _tokenName (string): ANXIOPETH
Arg [2] : _tokenSymbol (string): ANX
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000001d6bb2d0c9dfe9d0da142da3e0aa8c181217e0d3
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 414e58494f504554480000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 414e580000000000000000000000000000000000000000000000000000000000
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.