Warning! There are reports that this address was used in a Phishing scam. Please exercise caution when interacting with this address.
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 40 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 15512030 | 918 days ago | IN | 0 ETH | 0.0002759 | ||||
Safe Transfer Fr... | 15512025 | 918 days ago | IN | 0 ETH | 0.0003065 | ||||
Withdraw | 14824826 | 1029 days ago | IN | 0 ETH | 0.00088844 | ||||
Transfer From | 14824151 | 1029 days ago | IN | 0 ETH | 0.00165373 | ||||
Transfer From | 14824150 | 1029 days ago | IN | 0 ETH | 0.00165338 | ||||
Transfer From | 14824148 | 1029 days ago | IN | 0 ETH | 0.00173437 | ||||
Transfer From | 14824145 | 1029 days ago | IN | 0 ETH | 0.00190581 | ||||
Set Approval For... | 14823338 | 1029 days ago | IN | 0 ETH | 0.00072474 | ||||
Set Approval For... | 14823133 | 1029 days ago | IN | 0 ETH | 0.00049735 | ||||
Mint | 14823070 | 1029 days ago | IN | 1 ETH | 0.00087991 | ||||
Mint | 14822982 | 1029 days ago | IN | 1 ETH | 0.00092365 | ||||
Mint | 14822931 | 1029 days ago | IN | 1 ETH | 0.00156387 | ||||
Set Approval For... | 14822912 | 1029 days ago | IN | 0 ETH | 0.00047212 | ||||
Mint | 14822908 | 1029 days ago | IN | 5 ETH | 0.00195363 | ||||
Mint | 14822900 | 1029 days ago | IN | 1 ETH | 0.00089352 | ||||
Mint | 14822891 | 1029 days ago | IN | 1 ETH | 0.00092988 | ||||
Mint | 14822883 | 1029 days ago | IN | 1 ETH | 0.0008903 | ||||
Mint | 14822823 | 1029 days ago | IN | 1 ETH | 0.00155611 | ||||
Set Approval For... | 14822816 | 1029 days ago | IN | 0 ETH | 0.00079312 | ||||
Mint | 14822813 | 1029 days ago | IN | 1 ETH | 0.00122097 | ||||
Mint | 14822797 | 1029 days ago | IN | 1 ETH | 0.00126092 | ||||
Mint | 14822792 | 1029 days ago | IN | 1 ETH | 0.00167572 | ||||
Mint | 14822780 | 1029 days ago | IN | 1 ETH | 0.00151644 | ||||
Mint | 14822771 | 1029 days ago | IN | 1 ETH | 0.00190187 | ||||
Mint | 14822769 | 1029 days ago | IN | 1 ETH | 0.00172373 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
- | 14824826 | 1029 days ago | 36 ETH |
Loading...
Loading
Contract Name:
Beeples
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/ERC721.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; contract Beeples is ERC721, Ownable { uint256 public mintPrice; uint256 public totalSupply; uint256 public maxSupply; uint256 public maxPerWallet; bool public isPublicMintEnabled; string internal baseTokenUri; address payable public withdrawWallet; mapping(address => uint256) public walletMints; constructor() payable ERC721('Beeples', 'RP') { mintPrice = 1 ether; totalSupply = 0; maxSupply = 100000; maxPerWallet = 5; withdrawWallet = payable(0xF305F6073CFa24f05FF15CA5b387DD91f871b983); } function setIsPublicMintEnabled(bool isPublicMintEnabled_) external onlyOwner { isPublicMintEnabled = isPublicMintEnabled_; } function setBaseTokenUri(string calldata baseTokenUri_) external onlyOwner { baseTokenUri = baseTokenUri_; } function tokenURI(uint256 tokenId_) public view override returns (string memory) { require(_exists(tokenId_), 'Token Does Not Exist'); return string(abi.encodePacked(baseTokenUri, Strings.toString(tokenId_), ".json")); } function withdraw() external onlyOwner { (bool success, ) = withdrawWallet.call{ value: address(this).balance }(''); require(success, 'withdraw failed'); } function mint(uint256 quantity_) public payable { require(isPublicMintEnabled, 'Minting is not enabled.'); require(msg.value == quantity_ * mintPrice, 'Mint Value Error'); require(totalSupply + quantity_ <= maxSupply, 'We are sold out.'); require(walletMints[msg.sender] + quantity_ <= maxPerWallet, 'You have exceeded the max per wallet'); for (uint256 i = 0; i < quantity_; i++) { uint256 newTokenId = totalSupply + 1; totalSupply++; _safeMint(msg.sender, newTokenId); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be 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 owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || 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 a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @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 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// 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 (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.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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 v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// 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 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" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":"isPublicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenUri_","type":"string"}],"name":"setBaseTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isPublicMintEnabled_","type":"bool"}],"name":"setIsPublicMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600781526020017f426565706c6573000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f525000000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200008892919062000216565b508060019080519060200190620000a192919062000216565b505050620000c4620000b86200014860201b60201c565b6200015060201b60201c565b670de0b6b3a76400006007819055506000600881905550620186a06009819055506005600a8190555073f305f6073cfa24f05ff15ca5b387dd91f871b983600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200032b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022490620002c6565b90600052602060002090601f01602090048101928262000248576000855562000294565b82601f106200026357805160ff191683800117855562000294565b8280016001018555821562000294579182015b828111156200029357825182559160200191906001019062000276565b5b509050620002a39190620002a7565b5090565b5b80821115620002c2576000816000905550600101620002a8565b5090565b60006002820490506001821680620002df57607f821691505b60208210811415620002f657620002f5620002fc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6137b9806200033b6000396000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610593578063e985e9c5146105be578063f0293fd3146105fb578063f2fde38b146106385761019c565b8063a22cb46514610504578063b88d4fde1461052d578063c87b56dd146105565761019c565b80638da5cb5b116100c65780638da5cb5b1461046957806395652cfa1461049457806395d89b41146104bd578063a0712d68146104e85761019c565b806370a08231146103ea578063715018a61461042757806385d178f41461043e5761019c565b80632373ac221161015957806342842e0e1161013357806342842e0e1461032e578063453c2310146103575780636352211e146103825780636817c76c146103bf5761019c565b80632373ac22146102c557806323b872dd146102ee5780633ccfd60b146103175761019c565b80630116bc2d146101a157806301ffc9a7146101cc57806306fdde0314610209578063081812fc14610234578063095ea7b31461027157806318160ddd1461029a575b600080fd5b3480156101ad57600080fd5b506101b6610661565b6040516101c39190612a9e565b60405180910390f35b3480156101d857600080fd5b506101f360048036038101906101ee9190612495565b610674565b6040516102009190612a9e565b60405180910390f35b34801561021557600080fd5b5061021e610756565b60405161022b9190612ab9565b60405180910390f35b34801561024057600080fd5b5061025b6004803603810190610256919061252c565b6107e8565b6040516102689190612a1c565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612430565b61086d565b005b3480156102a657600080fd5b506102af610985565b6040516102bc9190612d7b565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e7919061246c565b61098b565b005b3480156102fa57600080fd5b506103156004803603810190610310919061232a565b610a24565b005b34801561032357600080fd5b5061032c610a84565b005b34801561033a57600080fd5b506103556004803603810190610350919061232a565b610bd1565b005b34801561036357600080fd5b5061036c610bf1565b6040516103799190612d7b565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a4919061252c565b610bf7565b6040516103b69190612a1c565b60405180910390f35b3480156103cb57600080fd5b506103d4610ca9565b6040516103e19190612d7b565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c91906122c5565b610caf565b60405161041e9190612d7b565b60405180910390f35b34801561043357600080fd5b5061043c610d67565b005b34801561044a57600080fd5b50610453610def565b6040516104609190612a37565b60405180910390f35b34801561047557600080fd5b5061047e610e15565b60405161048b9190612a1c565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b691906124e7565b610e3f565b005b3480156104c957600080fd5b506104d2610ed1565b6040516104df9190612ab9565b60405180910390f35b61050260048036038101906104fd919061252c565b610f63565b005b34801561051057600080fd5b5061052b600480360381019061052691906123f4565b61113a565b005b34801561053957600080fd5b50610554600480360381019061054f9190612379565b611150565b005b34801561056257600080fd5b5061057d6004803603810190610578919061252c565b6111b2565b60405161058a9190612ab9565b60405180910390f35b34801561059f57600080fd5b506105a861122e565b6040516105b59190612d7b565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e091906122ee565b611234565b6040516105f29190612a9e565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d91906122c5565b6112c8565b60405161062f9190612d7b565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a91906122c5565b6112e0565b005b600b60009054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e826113d8565b5b9050919050565b6060600080546107659061302c565b80601f01602080910402602001604051908101604052809291908181526020018280546107919061302c565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f382611442565b610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990612c9b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087882610bf7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e090612cdb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109086114ae565b73ffffffffffffffffffffffffffffffffffffffff1614806109375750610936816109316114ae565b611234565b5b610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90612bfb565b60405180910390fd5b61098083836114b6565b505050565b60085481565b6109936114ae565b73ffffffffffffffffffffffffffffffffffffffff166109b1610e15565b73ffffffffffffffffffffffffffffffffffffffff1614610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe90612cbb565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b610a35610a2f6114ae565b8261156f565b610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b90612d1b565b60405180910390fd5b610a7f83838361164d565b505050565b610a8c6114ae565b73ffffffffffffffffffffffffffffffffffffffff16610aaa610e15565b73ffffffffffffffffffffffffffffffffffffffff1614610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af790612cbb565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610b4890612a07565b60006040518083038185875af1925050503d8060008114610b85576040519150601f19603f3d011682016040523d82523d6000602084013e610b8a565b606091505b5050905080610bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc590612d5b565b60405180910390fd5b50565b610bec83838360405180602001604052806000815250611150565b505050565b600a5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790612c3b565b60405180910390fd5b80915050919050565b60075481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790612c1b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d6f6114ae565b73ffffffffffffffffffffffffffffffffffffffff16610d8d610e15565b73ffffffffffffffffffffffffffffffffffffffff1614610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda90612cbb565b60405180910390fd5b610ded60006118b4565b565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e476114ae565b73ffffffffffffffffffffffffffffffffffffffff16610e65610e15565b73ffffffffffffffffffffffffffffffffffffffff1614610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290612cbb565b60405180910390fd5b8181600c9190610ecc929190612107565b505050565b606060018054610ee09061302c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0c9061302c565b8015610f595780601f10610f2e57610100808354040283529160200191610f59565b820191906000526020600020905b815481529060010190602001808311610f3c57829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa990612d3b565b60405180910390fd5b60075481610fc09190612ed6565b3414611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890612cfb565b60405180910390fd5b600954816008546110129190612e4f565b1115611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a90612b5b565b60405180910390fd5b600a5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a19190612e4f565b11156110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990612c5b565b60405180910390fd5b60005b8181101561113657600060016008546110fe9190612e4f565b9050600860008154809291906111139061308f565b9190505550611122338261197a565b50808061112e9061308f565b9150506110e5565b5050565b61114c6111456114ae565b8383611998565b5050565b61116161115b6114ae565b8361156f565b6111a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119790612d1b565b60405180910390fd5b6111ac84848484611b05565b50505050565b60606111bd82611442565b6111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390612bdb565b60405180910390fd5b600c61120783611b61565b6040516020016112189291906129d8565b6040516020818303038152906040529050919050565b60095481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e6020528060005260406000206000915090505481565b6112e86114ae565b73ffffffffffffffffffffffffffffffffffffffff16611306610e15565b73ffffffffffffffffffffffffffffffffffffffff161461135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390612cbb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c390612afb565b60405180910390fd5b6113d5816118b4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661152983610bf7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061157a82611442565b6115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090612bbb565b60405180910390fd5b60006115c483610bf7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061160657506116058185611234565b5b8061164457508373ffffffffffffffffffffffffffffffffffffffff1661162c846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661166d82610bf7565b73ffffffffffffffffffffffffffffffffffffffff16146116c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ba90612b1b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a90612b7b565b60405180910390fd5b61173e838383611d0e565b6117496000826114b6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117999190612f30565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117f09190612e4f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118af838383611d13565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611994828260405180602001604052806000815250611d18565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe90612b9b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611af89190612a9e565b60405180910390a3505050565b611b1084848461164d565b611b1c84848484611d73565b611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5290612adb565b60405180910390fd5b50505050565b60606000821415611ba9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d09565b600082905060005b60008214611bdb578080611bc49061308f565b915050600a82611bd49190612ea5565b9150611bb1565b60008167ffffffffffffffff811115611c1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c4f5781602001600182028036833780820191505090505b5090505b60008514611d0257600182611c689190612f30565b9150600a85611c7791906130d8565b6030611c839190612e4f565b60f81b818381518110611cbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cfb9190612ea5565b9450611c53565b8093505050505b919050565b505050565b505050565b611d228383611f0a565b611d2f6000848484611d73565b611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6590612adb565b60405180910390fd5b505050565b6000611d948473ffffffffffffffffffffffffffffffffffffffff166120e4565b15611efd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dbd6114ae565b8786866040518563ffffffff1660e01b8152600401611ddf9493929190612a52565b602060405180830381600087803b158015611df957600080fd5b505af1925050508015611e2a57506040513d601f19601f82011682018060405250810190611e2791906124be565b60015b611ead573d8060008114611e5a576040519150601f19603f3d011682016040523d82523d6000602084013e611e5f565b606091505b50600081511415611ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9c90612adb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f02565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7190612c7b565b60405180910390fd5b611f8381611442565b15611fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fba90612b3b565b60405180910390fd5b611fcf60008383611d0e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461201f9190612e4f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120e060008383611d13565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546121139061302c565b90600052602060002090601f016020900481019282612135576000855561217c565b82601f1061214e57803560ff191683800117855561217c565b8280016001018555821561217c579182015b8281111561217b578235825591602001919060010190612160565b5b509050612189919061218d565b5090565b5b808211156121a657600081600090555060010161218e565b5090565b60006121bd6121b884612dbb565b612d96565b9050828152602081018484840111156121d557600080fd5b6121e0848285612fea565b509392505050565b6000813590506121f781613727565b92915050565b60008135905061220c8161373e565b92915050565b60008135905061222181613755565b92915050565b60008151905061223681613755565b92915050565b600082601f83011261224d57600080fd5b813561225d8482602086016121aa565b91505092915050565b60008083601f84011261227857600080fd5b8235905067ffffffffffffffff81111561229157600080fd5b6020830191508360018202830111156122a957600080fd5b9250929050565b6000813590506122bf8161376c565b92915050565b6000602082840312156122d757600080fd5b60006122e5848285016121e8565b91505092915050565b6000806040838503121561230157600080fd5b600061230f858286016121e8565b9250506020612320858286016121e8565b9150509250929050565b60008060006060848603121561233f57600080fd5b600061234d868287016121e8565b935050602061235e868287016121e8565b925050604061236f868287016122b0565b9150509250925092565b6000806000806080858703121561238f57600080fd5b600061239d878288016121e8565b94505060206123ae878288016121e8565b93505060406123bf878288016122b0565b925050606085013567ffffffffffffffff8111156123dc57600080fd5b6123e88782880161223c565b91505092959194509250565b6000806040838503121561240757600080fd5b6000612415858286016121e8565b9250506020612426858286016121fd565b9150509250929050565b6000806040838503121561244357600080fd5b6000612451858286016121e8565b9250506020612462858286016122b0565b9150509250929050565b60006020828403121561247e57600080fd5b600061248c848285016121fd565b91505092915050565b6000602082840312156124a757600080fd5b60006124b584828501612212565b91505092915050565b6000602082840312156124d057600080fd5b60006124de84828501612227565b91505092915050565b600080602083850312156124fa57600080fd5b600083013567ffffffffffffffff81111561251457600080fd5b61252085828601612266565b92509250509250929050565b60006020828403121561253e57600080fd5b600061254c848285016122b0565b91505092915050565b61255e81612f76565b82525050565b61256d81612f64565b82525050565b61257c81612f88565b82525050565b600061258d82612e01565b6125978185612e17565b93506125a7818560208601612ff9565b6125b0816131c5565b840191505092915050565b60006125c682612e0c565b6125d08185612e33565b93506125e0818560208601612ff9565b6125e9816131c5565b840191505092915050565b60006125ff82612e0c565b6126098185612e44565b9350612619818560208601612ff9565b80840191505092915050565b600081546126328161302c565b61263c8186612e44565b9450600182166000811461265757600181146126685761269b565b60ff1983168652818601935061269b565b61267185612dec565b60005b8381101561269357815481890152600182019150602081019050612674565b838801955050505b50505092915050565b60006126b1603283612e33565b91506126bc826131d6565b604082019050919050565b60006126d4602683612e33565b91506126df82613225565b604082019050919050565b60006126f7602583612e33565b915061270282613274565b604082019050919050565b600061271a601c83612e33565b9150612725826132c3565b602082019050919050565b600061273d601083612e33565b9150612748826132ec565b602082019050919050565b6000612760602483612e33565b915061276b82613315565b604082019050919050565b6000612783601983612e33565b915061278e82613364565b602082019050919050565b60006127a6602c83612e33565b91506127b18261338d565b604082019050919050565b60006127c9601483612e33565b91506127d4826133dc565b602082019050919050565b60006127ec603883612e33565b91506127f782613405565b604082019050919050565b600061280f602a83612e33565b915061281a82613454565b604082019050919050565b6000612832602983612e33565b915061283d826134a3565b604082019050919050565b6000612855602483612e33565b9150612860826134f2565b604082019050919050565b6000612878602083612e33565b915061288382613541565b602082019050919050565b600061289b602c83612e33565b91506128a68261356a565b604082019050919050565b60006128be600583612e44565b91506128c9826135b9565b600582019050919050565b60006128e1602083612e33565b91506128ec826135e2565b602082019050919050565b6000612904602183612e33565b915061290f8261360b565b604082019050919050565b6000612927601083612e33565b91506129328261365a565b602082019050919050565b600061294a600083612e28565b915061295582613683565b600082019050919050565b600061296d603183612e33565b915061297882613686565b604082019050919050565b6000612990601783612e33565b915061299b826136d5565b602082019050919050565b60006129b3600f83612e33565b91506129be826136fe565b602082019050919050565b6129d281612fe0565b82525050565b60006129e48285612625565b91506129f082846125f4565b91506129fb826128b1565b91508190509392505050565b6000612a128261293d565b9150819050919050565b6000602082019050612a316000830184612564565b92915050565b6000602082019050612a4c6000830184612555565b92915050565b6000608082019050612a676000830187612564565b612a746020830186612564565b612a8160408301856129c9565b8181036060830152612a938184612582565b905095945050505050565b6000602082019050612ab36000830184612573565b92915050565b60006020820190508181036000830152612ad381846125bb565b905092915050565b60006020820190508181036000830152612af4816126a4565b9050919050565b60006020820190508181036000830152612b14816126c7565b9050919050565b60006020820190508181036000830152612b34816126ea565b9050919050565b60006020820190508181036000830152612b548161270d565b9050919050565b60006020820190508181036000830152612b7481612730565b9050919050565b60006020820190508181036000830152612b9481612753565b9050919050565b60006020820190508181036000830152612bb481612776565b9050919050565b60006020820190508181036000830152612bd481612799565b9050919050565b60006020820190508181036000830152612bf4816127bc565b9050919050565b60006020820190508181036000830152612c14816127df565b9050919050565b60006020820190508181036000830152612c3481612802565b9050919050565b60006020820190508181036000830152612c5481612825565b9050919050565b60006020820190508181036000830152612c7481612848565b9050919050565b60006020820190508181036000830152612c948161286b565b9050919050565b60006020820190508181036000830152612cb48161288e565b9050919050565b60006020820190508181036000830152612cd4816128d4565b9050919050565b60006020820190508181036000830152612cf4816128f7565b9050919050565b60006020820190508181036000830152612d148161291a565b9050919050565b60006020820190508181036000830152612d3481612960565b9050919050565b60006020820190508181036000830152612d5481612983565b9050919050565b60006020820190508181036000830152612d74816129a6565b9050919050565b6000602082019050612d9060008301846129c9565b92915050565b6000612da0612db1565b9050612dac828261305e565b919050565b6000604051905090565b600067ffffffffffffffff821115612dd657612dd5613196565b5b612ddf826131c5565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e5a82612fe0565b9150612e6583612fe0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e9a57612e99613109565b5b828201905092915050565b6000612eb082612fe0565b9150612ebb83612fe0565b925082612ecb57612eca613138565b5b828204905092915050565b6000612ee182612fe0565b9150612eec83612fe0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f2557612f24613109565b5b828202905092915050565b6000612f3b82612fe0565b9150612f4683612fe0565b925082821015612f5957612f58613109565b5b828203905092915050565b6000612f6f82612fc0565b9050919050565b6000612f8182612fc0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613017578082015181840152602081019050612ffc565b83811115613026576000848401525b50505050565b6000600282049050600182168061304457607f821691505b6020821081141561305857613057613167565b5b50919050565b613067826131c5565b810181811067ffffffffffffffff8211171561308657613085613196565b5b80604052505050565b600061309a82612fe0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130cd576130cc613109565b5b600182019050919050565b60006130e382612fe0565b91506130ee83612fe0565b9250826130fe576130fd613138565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f57652061726520736f6c64206f75742e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f546f6b656e20446f6573204e6f74204578697374000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f596f75206861766520657863656564656420746865206d61782070657220776160008201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e742056616c7565204572726f7200000000000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f7420656e61626c65642e000000000000000000600082015250565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b61373081612f64565b811461373b57600080fd5b50565b61374781612f88565b811461375257600080fd5b50565b61375e81612f94565b811461376957600080fd5b50565b61377581612fe0565b811461378057600080fd5b5056fea2646970667358221220457a07b5c919d4c376173cfb1c376f92bd4c41833cfd1d5f2c04d31c1fffd71464736f6c63430008040033
Deployed Bytecode
0x60806040526004361061019c5760003560e01c806370a08231116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610593578063e985e9c5146105be578063f0293fd3146105fb578063f2fde38b146106385761019c565b8063a22cb46514610504578063b88d4fde1461052d578063c87b56dd146105565761019c565b80638da5cb5b116100c65780638da5cb5b1461046957806395652cfa1461049457806395d89b41146104bd578063a0712d68146104e85761019c565b806370a08231146103ea578063715018a61461042757806385d178f41461043e5761019c565b80632373ac221161015957806342842e0e1161013357806342842e0e1461032e578063453c2310146103575780636352211e146103825780636817c76c146103bf5761019c565b80632373ac22146102c557806323b872dd146102ee5780633ccfd60b146103175761019c565b80630116bc2d146101a157806301ffc9a7146101cc57806306fdde0314610209578063081812fc14610234578063095ea7b31461027157806318160ddd1461029a575b600080fd5b3480156101ad57600080fd5b506101b6610661565b6040516101c39190612a9e565b60405180910390f35b3480156101d857600080fd5b506101f360048036038101906101ee9190612495565b610674565b6040516102009190612a9e565b60405180910390f35b34801561021557600080fd5b5061021e610756565b60405161022b9190612ab9565b60405180910390f35b34801561024057600080fd5b5061025b6004803603810190610256919061252c565b6107e8565b6040516102689190612a1c565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612430565b61086d565b005b3480156102a657600080fd5b506102af610985565b6040516102bc9190612d7b565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e7919061246c565b61098b565b005b3480156102fa57600080fd5b506103156004803603810190610310919061232a565b610a24565b005b34801561032357600080fd5b5061032c610a84565b005b34801561033a57600080fd5b506103556004803603810190610350919061232a565b610bd1565b005b34801561036357600080fd5b5061036c610bf1565b6040516103799190612d7b565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a4919061252c565b610bf7565b6040516103b69190612a1c565b60405180910390f35b3480156103cb57600080fd5b506103d4610ca9565b6040516103e19190612d7b565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c91906122c5565b610caf565b60405161041e9190612d7b565b60405180910390f35b34801561043357600080fd5b5061043c610d67565b005b34801561044a57600080fd5b50610453610def565b6040516104609190612a37565b60405180910390f35b34801561047557600080fd5b5061047e610e15565b60405161048b9190612a1c565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b691906124e7565b610e3f565b005b3480156104c957600080fd5b506104d2610ed1565b6040516104df9190612ab9565b60405180910390f35b61050260048036038101906104fd919061252c565b610f63565b005b34801561051057600080fd5b5061052b600480360381019061052691906123f4565b61113a565b005b34801561053957600080fd5b50610554600480360381019061054f9190612379565b611150565b005b34801561056257600080fd5b5061057d6004803603810190610578919061252c565b6111b2565b60405161058a9190612ab9565b60405180910390f35b34801561059f57600080fd5b506105a861122e565b6040516105b59190612d7b565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e091906122ee565b611234565b6040516105f29190612a9e565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d91906122c5565b6112c8565b60405161062f9190612d7b565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a91906122c5565b6112e0565b005b600b60009054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e826113d8565b5b9050919050565b6060600080546107659061302c565b80601f01602080910402602001604051908101604052809291908181526020018280546107919061302c565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f382611442565b610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990612c9b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087882610bf7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e090612cdb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109086114ae565b73ffffffffffffffffffffffffffffffffffffffff1614806109375750610936816109316114ae565b611234565b5b610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90612bfb565b60405180910390fd5b61098083836114b6565b505050565b60085481565b6109936114ae565b73ffffffffffffffffffffffffffffffffffffffff166109b1610e15565b73ffffffffffffffffffffffffffffffffffffffff1614610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe90612cbb565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b610a35610a2f6114ae565b8261156f565b610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b90612d1b565b60405180910390fd5b610a7f83838361164d565b505050565b610a8c6114ae565b73ffffffffffffffffffffffffffffffffffffffff16610aaa610e15565b73ffffffffffffffffffffffffffffffffffffffff1614610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af790612cbb565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610b4890612a07565b60006040518083038185875af1925050503d8060008114610b85576040519150601f19603f3d011682016040523d82523d6000602084013e610b8a565b606091505b5050905080610bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc590612d5b565b60405180910390fd5b50565b610bec83838360405180602001604052806000815250611150565b505050565b600a5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790612c3b565b60405180910390fd5b80915050919050565b60075481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790612c1b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d6f6114ae565b73ffffffffffffffffffffffffffffffffffffffff16610d8d610e15565b73ffffffffffffffffffffffffffffffffffffffff1614610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda90612cbb565b60405180910390fd5b610ded60006118b4565b565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e476114ae565b73ffffffffffffffffffffffffffffffffffffffff16610e65610e15565b73ffffffffffffffffffffffffffffffffffffffff1614610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290612cbb565b60405180910390fd5b8181600c9190610ecc929190612107565b505050565b606060018054610ee09061302c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0c9061302c565b8015610f595780601f10610f2e57610100808354040283529160200191610f59565b820191906000526020600020905b815481529060010190602001808311610f3c57829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa990612d3b565b60405180910390fd5b60075481610fc09190612ed6565b3414611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890612cfb565b60405180910390fd5b600954816008546110129190612e4f565b1115611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a90612b5b565b60405180910390fd5b600a5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a19190612e4f565b11156110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990612c5b565b60405180910390fd5b60005b8181101561113657600060016008546110fe9190612e4f565b9050600860008154809291906111139061308f565b9190505550611122338261197a565b50808061112e9061308f565b9150506110e5565b5050565b61114c6111456114ae565b8383611998565b5050565b61116161115b6114ae565b8361156f565b6111a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119790612d1b565b60405180910390fd5b6111ac84848484611b05565b50505050565b60606111bd82611442565b6111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390612bdb565b60405180910390fd5b600c61120783611b61565b6040516020016112189291906129d8565b6040516020818303038152906040529050919050565b60095481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e6020528060005260406000206000915090505481565b6112e86114ae565b73ffffffffffffffffffffffffffffffffffffffff16611306610e15565b73ffffffffffffffffffffffffffffffffffffffff161461135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390612cbb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c390612afb565b60405180910390fd5b6113d5816118b4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661152983610bf7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061157a82611442565b6115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090612bbb565b60405180910390fd5b60006115c483610bf7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061160657506116058185611234565b5b8061164457508373ffffffffffffffffffffffffffffffffffffffff1661162c846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661166d82610bf7565b73ffffffffffffffffffffffffffffffffffffffff16146116c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ba90612b1b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a90612b7b565b60405180910390fd5b61173e838383611d0e565b6117496000826114b6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117999190612f30565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117f09190612e4f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118af838383611d13565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611994828260405180602001604052806000815250611d18565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe90612b9b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611af89190612a9e565b60405180910390a3505050565b611b1084848461164d565b611b1c84848484611d73565b611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5290612adb565b60405180910390fd5b50505050565b60606000821415611ba9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d09565b600082905060005b60008214611bdb578080611bc49061308f565b915050600a82611bd49190612ea5565b9150611bb1565b60008167ffffffffffffffff811115611c1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c4f5781602001600182028036833780820191505090505b5090505b60008514611d0257600182611c689190612f30565b9150600a85611c7791906130d8565b6030611c839190612e4f565b60f81b818381518110611cbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cfb9190612ea5565b9450611c53565b8093505050505b919050565b505050565b505050565b611d228383611f0a565b611d2f6000848484611d73565b611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6590612adb565b60405180910390fd5b505050565b6000611d948473ffffffffffffffffffffffffffffffffffffffff166120e4565b15611efd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dbd6114ae565b8786866040518563ffffffff1660e01b8152600401611ddf9493929190612a52565b602060405180830381600087803b158015611df957600080fd5b505af1925050508015611e2a57506040513d601f19601f82011682018060405250810190611e2791906124be565b60015b611ead573d8060008114611e5a576040519150601f19603f3d011682016040523d82523d6000602084013e611e5f565b606091505b50600081511415611ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9c90612adb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f02565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7190612c7b565b60405180910390fd5b611f8381611442565b15611fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fba90612b3b565b60405180910390fd5b611fcf60008383611d0e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461201f9190612e4f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120e060008383611d13565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546121139061302c565b90600052602060002090601f016020900481019282612135576000855561217c565b82601f1061214e57803560ff191683800117855561217c565b8280016001018555821561217c579182015b8281111561217b578235825591602001919060010190612160565b5b509050612189919061218d565b5090565b5b808211156121a657600081600090555060010161218e565b5090565b60006121bd6121b884612dbb565b612d96565b9050828152602081018484840111156121d557600080fd5b6121e0848285612fea565b509392505050565b6000813590506121f781613727565b92915050565b60008135905061220c8161373e565b92915050565b60008135905061222181613755565b92915050565b60008151905061223681613755565b92915050565b600082601f83011261224d57600080fd5b813561225d8482602086016121aa565b91505092915050565b60008083601f84011261227857600080fd5b8235905067ffffffffffffffff81111561229157600080fd5b6020830191508360018202830111156122a957600080fd5b9250929050565b6000813590506122bf8161376c565b92915050565b6000602082840312156122d757600080fd5b60006122e5848285016121e8565b91505092915050565b6000806040838503121561230157600080fd5b600061230f858286016121e8565b9250506020612320858286016121e8565b9150509250929050565b60008060006060848603121561233f57600080fd5b600061234d868287016121e8565b935050602061235e868287016121e8565b925050604061236f868287016122b0565b9150509250925092565b6000806000806080858703121561238f57600080fd5b600061239d878288016121e8565b94505060206123ae878288016121e8565b93505060406123bf878288016122b0565b925050606085013567ffffffffffffffff8111156123dc57600080fd5b6123e88782880161223c565b91505092959194509250565b6000806040838503121561240757600080fd5b6000612415858286016121e8565b9250506020612426858286016121fd565b9150509250929050565b6000806040838503121561244357600080fd5b6000612451858286016121e8565b9250506020612462858286016122b0565b9150509250929050565b60006020828403121561247e57600080fd5b600061248c848285016121fd565b91505092915050565b6000602082840312156124a757600080fd5b60006124b584828501612212565b91505092915050565b6000602082840312156124d057600080fd5b60006124de84828501612227565b91505092915050565b600080602083850312156124fa57600080fd5b600083013567ffffffffffffffff81111561251457600080fd5b61252085828601612266565b92509250509250929050565b60006020828403121561253e57600080fd5b600061254c848285016122b0565b91505092915050565b61255e81612f76565b82525050565b61256d81612f64565b82525050565b61257c81612f88565b82525050565b600061258d82612e01565b6125978185612e17565b93506125a7818560208601612ff9565b6125b0816131c5565b840191505092915050565b60006125c682612e0c565b6125d08185612e33565b93506125e0818560208601612ff9565b6125e9816131c5565b840191505092915050565b60006125ff82612e0c565b6126098185612e44565b9350612619818560208601612ff9565b80840191505092915050565b600081546126328161302c565b61263c8186612e44565b9450600182166000811461265757600181146126685761269b565b60ff1983168652818601935061269b565b61267185612dec565b60005b8381101561269357815481890152600182019150602081019050612674565b838801955050505b50505092915050565b60006126b1603283612e33565b91506126bc826131d6565b604082019050919050565b60006126d4602683612e33565b91506126df82613225565b604082019050919050565b60006126f7602583612e33565b915061270282613274565b604082019050919050565b600061271a601c83612e33565b9150612725826132c3565b602082019050919050565b600061273d601083612e33565b9150612748826132ec565b602082019050919050565b6000612760602483612e33565b915061276b82613315565b604082019050919050565b6000612783601983612e33565b915061278e82613364565b602082019050919050565b60006127a6602c83612e33565b91506127b18261338d565b604082019050919050565b60006127c9601483612e33565b91506127d4826133dc565b602082019050919050565b60006127ec603883612e33565b91506127f782613405565b604082019050919050565b600061280f602a83612e33565b915061281a82613454565b604082019050919050565b6000612832602983612e33565b915061283d826134a3565b604082019050919050565b6000612855602483612e33565b9150612860826134f2565b604082019050919050565b6000612878602083612e33565b915061288382613541565b602082019050919050565b600061289b602c83612e33565b91506128a68261356a565b604082019050919050565b60006128be600583612e44565b91506128c9826135b9565b600582019050919050565b60006128e1602083612e33565b91506128ec826135e2565b602082019050919050565b6000612904602183612e33565b915061290f8261360b565b604082019050919050565b6000612927601083612e33565b91506129328261365a565b602082019050919050565b600061294a600083612e28565b915061295582613683565b600082019050919050565b600061296d603183612e33565b915061297882613686565b604082019050919050565b6000612990601783612e33565b915061299b826136d5565b602082019050919050565b60006129b3600f83612e33565b91506129be826136fe565b602082019050919050565b6129d281612fe0565b82525050565b60006129e48285612625565b91506129f082846125f4565b91506129fb826128b1565b91508190509392505050565b6000612a128261293d565b9150819050919050565b6000602082019050612a316000830184612564565b92915050565b6000602082019050612a4c6000830184612555565b92915050565b6000608082019050612a676000830187612564565b612a746020830186612564565b612a8160408301856129c9565b8181036060830152612a938184612582565b905095945050505050565b6000602082019050612ab36000830184612573565b92915050565b60006020820190508181036000830152612ad381846125bb565b905092915050565b60006020820190508181036000830152612af4816126a4565b9050919050565b60006020820190508181036000830152612b14816126c7565b9050919050565b60006020820190508181036000830152612b34816126ea565b9050919050565b60006020820190508181036000830152612b548161270d565b9050919050565b60006020820190508181036000830152612b7481612730565b9050919050565b60006020820190508181036000830152612b9481612753565b9050919050565b60006020820190508181036000830152612bb481612776565b9050919050565b60006020820190508181036000830152612bd481612799565b9050919050565b60006020820190508181036000830152612bf4816127bc565b9050919050565b60006020820190508181036000830152612c14816127df565b9050919050565b60006020820190508181036000830152612c3481612802565b9050919050565b60006020820190508181036000830152612c5481612825565b9050919050565b60006020820190508181036000830152612c7481612848565b9050919050565b60006020820190508181036000830152612c948161286b565b9050919050565b60006020820190508181036000830152612cb48161288e565b9050919050565b60006020820190508181036000830152612cd4816128d4565b9050919050565b60006020820190508181036000830152612cf4816128f7565b9050919050565b60006020820190508181036000830152612d148161291a565b9050919050565b60006020820190508181036000830152612d3481612960565b9050919050565b60006020820190508181036000830152612d5481612983565b9050919050565b60006020820190508181036000830152612d74816129a6565b9050919050565b6000602082019050612d9060008301846129c9565b92915050565b6000612da0612db1565b9050612dac828261305e565b919050565b6000604051905090565b600067ffffffffffffffff821115612dd657612dd5613196565b5b612ddf826131c5565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e5a82612fe0565b9150612e6583612fe0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e9a57612e99613109565b5b828201905092915050565b6000612eb082612fe0565b9150612ebb83612fe0565b925082612ecb57612eca613138565b5b828204905092915050565b6000612ee182612fe0565b9150612eec83612fe0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f2557612f24613109565b5b828202905092915050565b6000612f3b82612fe0565b9150612f4683612fe0565b925082821015612f5957612f58613109565b5b828203905092915050565b6000612f6f82612fc0565b9050919050565b6000612f8182612fc0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613017578082015181840152602081019050612ffc565b83811115613026576000848401525b50505050565b6000600282049050600182168061304457607f821691505b6020821081141561305857613057613167565b5b50919050565b613067826131c5565b810181811067ffffffffffffffff8211171561308657613085613196565b5b80604052505050565b600061309a82612fe0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130cd576130cc613109565b5b600182019050919050565b60006130e382612fe0565b91506130ee83612fe0565b9250826130fe576130fd613138565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f57652061726520736f6c64206f75742e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f546f6b656e20446f6573204e6f74204578697374000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f596f75206861766520657863656564656420746865206d61782070657220776160008201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e742056616c7565204572726f7200000000000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f7420656e61626c65642e000000000000000000600082015250565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b61373081612f64565b811461373b57600080fd5b50565b61374781612f88565b811461375257600080fd5b50565b61375e81612f94565b811461376957600080fd5b50565b61377581612fe0565b811461378057600080fd5b5056fea2646970667358221220457a07b5c919d4c376173cfb1c376f92bd4c41833cfd1d5f2c04d31c1fffd71464736f6c63430008040033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.