ERC-721
Overview
Max Total Supply
4,999 EE
Holders
750
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
28 EELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EternalElves
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED /* ,------. ,--. ,--. ,------.,--. | .---',-' '-. ,---. ,--.--.,--,--, ,--,--.| | | .---'| |,--. ,--.,---. ,---. | `--, '-. .-'| .-. :| .--'| \' ,-. || | | `--, | | \ `' /| .-. :( .-' | `---. | | \ --.| | | || |\ '-' || | | `---.| | \ / \ --..-' `) `------' `--' `----'`--' `--''--' `--`--'`--' `------'`--' `--' `----'`----' Contract made by => @0charlie01 --- charlieaio.eth --- CharlieAIO#0001 */ pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract EternalElves is ERC721,Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIdTracker; string public provenanceHash; uint public maxInTx = 5; bool public saleEnabled; uint256 public price; string public metadataBaseURL; string public contractURI; uint256 public constant FREE_SUPPLY = 1750; uint256 public constant PAID_SUPPLY = 3250; uint256 public constant MAX_SUPPLY = FREE_SUPPLY + PAID_SUPPLY; bool public paidSupply; constructor () ERC721("Eternal Elves", "EE") { saleEnabled = false; paidSupply = false; price = 0 ether; provenanceHash = ""; } function setProvenanceHash(string memory _provenanceHash) public onlyOwner { provenanceHash = _provenanceHash; } function setContractURI(string memory uri) public onlyOwner { contractURI = uri; } function setBaseURI(string memory baseURL) public onlyOwner { metadataBaseURL = baseURL; } function setMaxInTx(uint num) public onlyOwner { maxInTx = num; } function toggleSaleStatus() public onlyOwner { saleEnabled = !(saleEnabled); } function setPrice(uint256 _price) public onlyOwner { price = _price; } function _baseURI() internal view virtual override returns (string memory) { return metadataBaseURL; } function withdraw() public onlyOwner { uint256 _balance = address(this).balance; address payable _sender = payable(_msgSender()); _sender.transfer(_balance); } function mintToAddress(address to) private onlyOwner { uint256 currentSupply = _tokenIdTracker.current(); require(currentSupply < MAX_SUPPLY, "All supply claimed"); require((currentSupply + 1) <= MAX_SUPPLY, "Exceed max supply"); _safeMint(to, currentSupply + 1); _tokenIdTracker.increment(); } function reserve(uint num) public onlyOwner { uint256 i; for (i=0; i<num; i++) mintToAddress(msg.sender); } function totalSupply() public view virtual returns (uint256) { return _tokenIdTracker.current(); } function mint(uint256 numOfTokens) public payable { require(saleEnabled, "Sale must be active."); require(_tokenIdTracker.current() + numOfTokens < MAX_SUPPLY, "Exceed max supply"); require(numOfTokens > 0, "You must claim at least one."); require(numOfTokens <= maxInTx, "Can't claim more than 5 in a tx."); require((price * numOfTokens) <= msg.value, "Insufficient funds to claim."); for(uint256 i=0; i< numOfTokens; i++) { if((_tokenIdTracker.current() + 1 > FREE_SUPPLY) && !paidSupply) { paidSupply = true; price = 0.006 ether; require((price * (numOfTokens - i)) <= msg.value, "Insufficient funds to claim."); } _safeMint(msg.sender, _tokenIdTracker.current() + 1); _tokenIdTracker.increment(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || 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 || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev 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 {} }
// 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 v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.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 v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (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
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxInTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataBaseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paidSupply","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"reserve","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":[],"name":"saleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"baseURL","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"setMaxInTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","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":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260056009553480156200001657600080fd5b506040518060400160405280600d81526020017f457465726e616c20456c766573000000000000000000000000000000000000008152506040518060400160405280600281526020017f454500000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200009b92919062000211565b508060019080519060200190620000b492919062000211565b505050620000d7620000cb6200014360201b60201c565b6200014b60201b60201c565b6000600a60006101000a81548160ff0219169083151502179055506000600e60006101000a81548160ff0219169083151502179055506000600b8190555060405180602001604052806000815250600890805190602001906200013c92919062000211565b5062000326565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021f90620002c1565b90600052602060002090601f0160209004810192826200024357600085556200028f565b82601f106200025e57805160ff19168380011785556200028f565b828001600101855582156200028f579182015b828111156200028e57825182559160200191906001019062000271565b5b5090506200029e9190620002a2565b5090565b5b80821115620002bd576000816000905550600101620002a3565b5090565b60006002820490506001821680620002da57607f821691505b60208210811415620002f157620002f0620002f7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613fc880620003366000396000f3fe60806040526004361061020f5760003560e01c806371b9b64611610118578063a22cb465116100a0578063d16f41261161006f578063d16f412614610742578063e8a3d4851461076d578063e985e9c514610798578063f2fde38b146107d5578063fe878b1d146107fe5761020f565b8063a22cb46514610688578063b88d4fde146106b1578063c6ab67a3146106da578063c87b56dd146107055761020f565b8063938e3d7b116100e7578063938e3d7b146105c257806395d89b41146105eb5780639858cf1914610616578063a035b1fe14610641578063a0712d681461066c5761020f565b806371b9b6461461051a578063819b25ba146105455780638da5cb5b1461056e57806391b7f5ed146105995761020f565b806332cb6b0c1161019b5780635d5e55801161016a5780635d5e558014610435578063631525c31461045e5780636352211e1461048957806370a08231146104c6578063715018a6146105035761020f565b806332cb6b0c146103a15780633ccfd60b146103cc57806342842e0e146103e357806355f804b31461040c5761020f565b8063095ea7b3116101e2578063095ea7b3146102d057806310969523146102f957806310da2eb91461032257806318160ddd1461034d57806323b872dd146103785761020f565b806301ffc9a714610214578063049c5c491461025157806306fdde0314610268578063081812fc14610293575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612d21565b610829565b604051610248919061324e565b60405180910390f35b34801561025d57600080fd5b5061026661090b565b005b34801561027457600080fd5b5061027d6109b3565b60405161028a9190613269565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190612dc4565b610a45565b6040516102c791906131e7565b60405180910390f35b3480156102dc57600080fd5b506102f760048036038101906102f29190612ce1565b610aca565b005b34801561030557600080fd5b50610320600480360381019061031b9190612d7b565b610be2565b005b34801561032e57600080fd5b50610337610c78565b6040516103449190613269565b60405180910390f35b34801561035957600080fd5b50610362610d06565b60405161036f919061354b565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190612bcb565b610d17565b005b3480156103ad57600080fd5b506103b6610d77565b6040516103c3919061354b565b60405180910390f35b3480156103d857600080fd5b506103e1610d8a565b005b3480156103ef57600080fd5b5061040a60048036038101906104059190612bcb565b610e62565b005b34801561041857600080fd5b50610433600480360381019061042e9190612d7b565b610e82565b005b34801561044157600080fd5b5061045c60048036038101906104579190612dc4565b610f18565b005b34801561046a57600080fd5b50610473610f9e565b604051610480919061324e565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190612dc4565b610fb1565b6040516104bd91906131e7565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e89190612b5e565b611063565b6040516104fa919061354b565b60405180910390f35b34801561050f57600080fd5b5061051861111b565b005b34801561052657600080fd5b5061052f6111a3565b60405161053c919061324e565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190612dc4565b6111b6565b005b34801561057a57600080fd5b5061058361125d565b60405161059091906131e7565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612dc4565b611287565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190612d7b565b61130d565b005b3480156105f757600080fd5b506106006113a3565b60405161060d9190613269565b60405180910390f35b34801561062257600080fd5b5061062b611435565b604051610638919061354b565b60405180910390f35b34801561064d57600080fd5b5061065661143b565b604051610663919061354b565b60405180910390f35b61068660048036038101906106819190612dc4565b611441565b005b34801561069457600080fd5b506106af60048036038101906106aa9190612ca1565b6116d5565b005b3480156106bd57600080fd5b506106d860048036038101906106d39190612c1e565b6116eb565b005b3480156106e657600080fd5b506106ef61174d565b6040516106fc9190613269565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190612dc4565b6117db565b6040516107399190613269565b60405180910390f35b34801561074e57600080fd5b50610757611882565b604051610764919061354b565b60405180910390f35b34801561077957600080fd5b50610782611888565b60405161078f9190613269565b60405180910390f35b3480156107a457600080fd5b506107bf60048036038101906107ba9190612b8b565b611916565b6040516107cc919061324e565b60405180910390f35b3480156107e157600080fd5b506107fc60048036038101906107f79190612b5e565b6119aa565b005b34801561080a57600080fd5b50610813611aa2565b604051610820919061354b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610904575061090382611aa8565b5b9050919050565b610913611b12565b73ffffffffffffffffffffffffffffffffffffffff1661093161125d565b73ffffffffffffffffffffffffffffffffffffffff1614610987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097e9061344b565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6060600080546109c2906137fb565b80601f01602080910402602001604051908101604052809291908181526020018280546109ee906137fb565b8015610a3b5780601f10610a1057610100808354040283529160200191610a3b565b820191906000526020600020905b815481529060010190602001808311610a1e57829003601f168201915b5050505050905090565b6000610a5082611b1a565b610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a869061342b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad582610fb1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d906134ab565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b65611b12565b73ffffffffffffffffffffffffffffffffffffffff161480610b945750610b9381610b8e611b12565b611916565b5b610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca9061336b565b60405180910390fd5b610bdd8383611b86565b505050565b610bea611b12565b73ffffffffffffffffffffffffffffffffffffffff16610c0861125d565b73ffffffffffffffffffffffffffffffffffffffff1614610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c559061344b565b60405180910390fd5b8060089080519060200190610c74929190612972565b5050565b600c8054610c85906137fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb1906137fb565b8015610cfe5780601f10610cd357610100808354040283529160200191610cfe565b820191906000526020600020905b815481529060010190602001808311610ce157829003601f168201915b505050505081565b6000610d126007611c3f565b905090565b610d28610d22611b12565b82611c4d565b610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e9061350b565b60405180910390fd5b610d72838383611d2b565b505050565b610cb26106d6610d879190613630565b81565b610d92611b12565b73ffffffffffffffffffffffffffffffffffffffff16610db061125d565b73ffffffffffffffffffffffffffffffffffffffff1614610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd9061344b565b60405180910390fd5b60004790506000610e15611b12565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610e5d573d6000803e3d6000fd5b505050565b610e7d838383604051806020016040528060008152506116eb565b505050565b610e8a611b12565b73ffffffffffffffffffffffffffffffffffffffff16610ea861125d565b73ffffffffffffffffffffffffffffffffffffffff1614610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef59061344b565b60405180910390fd5b80600c9080519060200190610f14929190612972565b5050565b610f20611b12565b73ffffffffffffffffffffffffffffffffffffffff16610f3e61125d565b73ffffffffffffffffffffffffffffffffffffffff1614610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b9061344b565b60405180910390fd5b8060098190555050565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561105a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611051906133ab565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb9061338b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611123611b12565b73ffffffffffffffffffffffffffffffffffffffff1661114161125d565b73ffffffffffffffffffffffffffffffffffffffff1614611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e9061344b565b60405180910390fd5b6111a16000611f87565b565b600a60009054906101000a900460ff1681565b6111be611b12565b73ffffffffffffffffffffffffffffffffffffffff166111dc61125d565b73ffffffffffffffffffffffffffffffffffffffff1614611232576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112299061344b565b60405180910390fd5b60005b81811015611259576112463361204d565b80806112519061385e565b915050611235565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61128f611b12565b73ffffffffffffffffffffffffffffffffffffffff166112ad61125d565b73ffffffffffffffffffffffffffffffffffffffff1614611303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fa9061344b565b60405180910390fd5b80600b8190555050565b611315611b12565b73ffffffffffffffffffffffffffffffffffffffff1661133361125d565b73ffffffffffffffffffffffffffffffffffffffff1614611389576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113809061344b565b60405180910390fd5b80600d908051906020019061139f929190612972565b5050565b6060600180546113b2906137fb565b80601f01602080910402602001604051908101604052809291908181526020018280546113de906137fb565b801561142b5780601f106114005761010080835404028352916020019161142b565b820191906000526020600020905b81548152906001019060200180831161140e57829003601f168201915b5050505050905090565b6106d681565b600b5481565b600a60009054906101000a900460ff16611490576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611487906134cb565b60405180910390fd5b610cb26106d66114a09190613630565b816114ab6007611c3f565b6114b59190613630565b106114f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ec9061340b565b60405180910390fd5b60008111611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f906132ab565b60405180910390fd5b60095481111561157d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115749061352b565b60405180910390fd5b3481600b5461158c91906136b7565b11156115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c4906134eb565b60405180910390fd5b60005b818110156116d1576106d660016115e76007611c3f565b6115f19190613630565b11801561160b5750600e60009054906101000a900460ff16155b15611695576001600e60006101000a81548160ff021916908315150217905550661550f7dca70000600b819055503481836116469190613711565b600b5461165391906136b7565b1115611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b906134eb565b60405180910390fd5b5b6116b43360016116a56007611c3f565b6116af9190613630565b6121aa565b6116be60076121c8565b80806116c99061385e565b9150506115d0565b5050565b6116e76116e0611b12565b83836121de565b5050565b6116fc6116f6611b12565b83611c4d565b61173b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117329061350b565b60405180910390fd5b6117478484848461234b565b50505050565b6008805461175a906137fb565b80601f0160208091040260200160405190810160405280929190818152602001828054611786906137fb565b80156117d35780601f106117a8576101008083540402835291602001916117d3565b820191906000526020600020905b8154815290600101906020018083116117b657829003601f168201915b505050505081565b60606117e682611b1a565b611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c9061348b565b60405180910390fd5b600061182f6123a7565b9050600081511161184f576040518060200160405280600081525061187a565b8061185984612439565b60405160200161186a9291906131c3565b6040516020818303038152906040525b915050919050565b60095481565b600d8054611895906137fb565b80601f01602080910402602001604051908101604052809291908181526020018280546118c1906137fb565b801561190e5780601f106118e35761010080835404028352916020019161190e565b820191906000526020600020905b8154815290600101906020018083116118f157829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119b2611b12565b73ffffffffffffffffffffffffffffffffffffffff166119d061125d565b73ffffffffffffffffffffffffffffffffffffffff1614611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d9061344b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8d906132cb565b60405180910390fd5b611a9f81611f87565b50565b610cb281565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bf983610fb1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611c5882611b1a565b611c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8e9061334b565b60405180910390fd5b6000611ca283610fb1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d1157508373ffffffffffffffffffffffffffffffffffffffff16611cf984610a45565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d225750611d218185611916565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d4b82610fb1565b73ffffffffffffffffffffffffffffffffffffffff1614611da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d989061346b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e089061330b565b60405180910390fd5b611e1c83838361259a565b611e27600082611b86565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e779190613711565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ece9190613630565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612055611b12565b73ffffffffffffffffffffffffffffffffffffffff1661207361125d565b73ffffffffffffffffffffffffffffffffffffffff16146120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c09061344b565b60405180910390fd5b60006120d56007611c3f565b9050610cb26106d66120e79190613630565b8110612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f906133cb565b60405180910390fd5b610cb26106d66121389190613630565b6001826121459190613630565b1115612186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217d9061340b565b60405180910390fd5b61219c826001836121979190613630565b6121aa565b6121a660076121c8565b5050565b6121c482826040518060200160405280600081525061259f565b5050565b6001816000016000828254019250508190555050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561224d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122449061332b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161233e919061324e565b60405180910390a3505050565b612356848484611d2b565b612362848484846125fa565b6123a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123989061328b565b60405180910390fd5b50505050565b6060600c80546123b6906137fb565b80601f01602080910402602001604051908101604052809291908181526020018280546123e2906137fb565b801561242f5780601f106124045761010080835404028352916020019161242f565b820191906000526020600020905b81548152906001019060200180831161241257829003601f168201915b5050505050905090565b60606000821415612481576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612595565b600082905060005b600082146124b357808061249c9061385e565b915050600a826124ac9190613686565b9150612489565b60008167ffffffffffffffff8111156124cf576124ce613994565b5b6040519080825280601f01601f1916602001820160405280156125015781602001600182028036833780820191505090505b5090505b6000851461258e5760018261251a9190613711565b9150600a8561252991906138a7565b60306125359190613630565b60f81b81838151811061254b5761254a613965565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125879190613686565b9450612505565b8093505050505b919050565b505050565b6125a98383612791565b6125b660008484846125fa565b6125f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ec9061328b565b60405180910390fd5b505050565b600061261b8473ffffffffffffffffffffffffffffffffffffffff1661295f565b15612784578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612644611b12565b8786866040518563ffffffff1660e01b81526004016126669493929190613202565b602060405180830381600087803b15801561268057600080fd5b505af19250505080156126b157506040513d601f19601f820116820180604052508101906126ae9190612d4e565b60015b612734573d80600081146126e1576040519150601f19603f3d011682016040523d82523d6000602084013e6126e6565b606091505b5060008151141561272c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127239061328b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612789565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f8906133eb565b60405180910390fd5b61280a81611b1a565b1561284a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612841906132eb565b60405180910390fd5b6128566000838361259a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128a69190613630565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461297e906137fb565b90600052602060002090601f0160209004810192826129a057600085556129e7565b82601f106129b957805160ff19168380011785556129e7565b828001600101855582156129e7579182015b828111156129e65782518255916020019190600101906129cb565b5b5090506129f491906129f8565b5090565b5b80821115612a115760008160009055506001016129f9565b5090565b6000612a28612a238461358b565b613566565b905082815260208101848484011115612a4457612a436139c8565b5b612a4f8482856137b9565b509392505050565b6000612a6a612a65846135bc565b613566565b905082815260208101848484011115612a8657612a856139c8565b5b612a918482856137b9565b509392505050565b600081359050612aa881613f36565b92915050565b600081359050612abd81613f4d565b92915050565b600081359050612ad281613f64565b92915050565b600081519050612ae781613f64565b92915050565b600082601f830112612b0257612b016139c3565b5b8135612b12848260208601612a15565b91505092915050565b600082601f830112612b3057612b2f6139c3565b5b8135612b40848260208601612a57565b91505092915050565b600081359050612b5881613f7b565b92915050565b600060208284031215612b7457612b736139d2565b5b6000612b8284828501612a99565b91505092915050565b60008060408385031215612ba257612ba16139d2565b5b6000612bb085828601612a99565b9250506020612bc185828601612a99565b9150509250929050565b600080600060608486031215612be457612be36139d2565b5b6000612bf286828701612a99565b9350506020612c0386828701612a99565b9250506040612c1486828701612b49565b9150509250925092565b60008060008060808587031215612c3857612c376139d2565b5b6000612c4687828801612a99565b9450506020612c5787828801612a99565b9350506040612c6887828801612b49565b925050606085013567ffffffffffffffff811115612c8957612c886139cd565b5b612c9587828801612aed565b91505092959194509250565b60008060408385031215612cb857612cb76139d2565b5b6000612cc685828601612a99565b9250506020612cd785828601612aae565b9150509250929050565b60008060408385031215612cf857612cf76139d2565b5b6000612d0685828601612a99565b9250506020612d1785828601612b49565b9150509250929050565b600060208284031215612d3757612d366139d2565b5b6000612d4584828501612ac3565b91505092915050565b600060208284031215612d6457612d636139d2565b5b6000612d7284828501612ad8565b91505092915050565b600060208284031215612d9157612d906139d2565b5b600082013567ffffffffffffffff811115612daf57612dae6139cd565b5b612dbb84828501612b1b565b91505092915050565b600060208284031215612dda57612dd96139d2565b5b6000612de884828501612b49565b91505092915050565b612dfa81613745565b82525050565b612e0981613757565b82525050565b6000612e1a826135ed565b612e248185613603565b9350612e348185602086016137c8565b612e3d816139d7565b840191505092915050565b6000612e53826135f8565b612e5d8185613614565b9350612e6d8185602086016137c8565b612e76816139d7565b840191505092915050565b6000612e8c826135f8565b612e968185613625565b9350612ea68185602086016137c8565b80840191505092915050565b6000612ebf603283613614565b9150612eca826139e8565b604082019050919050565b6000612ee2601c83613614565b9150612eed82613a37565b602082019050919050565b6000612f05602683613614565b9150612f1082613a60565b604082019050919050565b6000612f28601c83613614565b9150612f3382613aaf565b602082019050919050565b6000612f4b602483613614565b9150612f5682613ad8565b604082019050919050565b6000612f6e601983613614565b9150612f7982613b27565b602082019050919050565b6000612f91602c83613614565b9150612f9c82613b50565b604082019050919050565b6000612fb4603883613614565b9150612fbf82613b9f565b604082019050919050565b6000612fd7602a83613614565b9150612fe282613bee565b604082019050919050565b6000612ffa602983613614565b915061300582613c3d565b604082019050919050565b600061301d601283613614565b915061302882613c8c565b602082019050919050565b6000613040602083613614565b915061304b82613cb5565b602082019050919050565b6000613063601183613614565b915061306e82613cde565b602082019050919050565b6000613086602c83613614565b915061309182613d07565b604082019050919050565b60006130a9602083613614565b91506130b482613d56565b602082019050919050565b60006130cc602983613614565b91506130d782613d7f565b604082019050919050565b60006130ef602f83613614565b91506130fa82613dce565b604082019050919050565b6000613112602183613614565b915061311d82613e1d565b604082019050919050565b6000613135601483613614565b915061314082613e6c565b602082019050919050565b6000613158601c83613614565b915061316382613e95565b602082019050919050565b600061317b603183613614565b915061318682613ebe565b604082019050919050565b600061319e602083613614565b91506131a982613f0d565b602082019050919050565b6131bd816137af565b82525050565b60006131cf8285612e81565b91506131db8284612e81565b91508190509392505050565b60006020820190506131fc6000830184612df1565b92915050565b60006080820190506132176000830187612df1565b6132246020830186612df1565b61323160408301856131b4565b81810360608301526132438184612e0f565b905095945050505050565b60006020820190506132636000830184612e00565b92915050565b600060208201905081810360008301526132838184612e48565b905092915050565b600060208201905081810360008301526132a481612eb2565b9050919050565b600060208201905081810360008301526132c481612ed5565b9050919050565b600060208201905081810360008301526132e481612ef8565b9050919050565b6000602082019050818103600083015261330481612f1b565b9050919050565b6000602082019050818103600083015261332481612f3e565b9050919050565b6000602082019050818103600083015261334481612f61565b9050919050565b6000602082019050818103600083015261336481612f84565b9050919050565b6000602082019050818103600083015261338481612fa7565b9050919050565b600060208201905081810360008301526133a481612fca565b9050919050565b600060208201905081810360008301526133c481612fed565b9050919050565b600060208201905081810360008301526133e481613010565b9050919050565b6000602082019050818103600083015261340481613033565b9050919050565b6000602082019050818103600083015261342481613056565b9050919050565b6000602082019050818103600083015261344481613079565b9050919050565b600060208201905081810360008301526134648161309c565b9050919050565b60006020820190508181036000830152613484816130bf565b9050919050565b600060208201905081810360008301526134a4816130e2565b9050919050565b600060208201905081810360008301526134c481613105565b9050919050565b600060208201905081810360008301526134e481613128565b9050919050565b600060208201905081810360008301526135048161314b565b9050919050565b600060208201905081810360008301526135248161316e565b9050919050565b6000602082019050818103600083015261354481613191565b9050919050565b600060208201905061356060008301846131b4565b92915050565b6000613570613581565b905061357c828261382d565b919050565b6000604051905090565b600067ffffffffffffffff8211156135a6576135a5613994565b5b6135af826139d7565b9050602081019050919050565b600067ffffffffffffffff8211156135d7576135d6613994565b5b6135e0826139d7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061363b826137af565b9150613646836137af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561367b5761367a6138d8565b5b828201905092915050565b6000613691826137af565b915061369c836137af565b9250826136ac576136ab613907565b5b828204905092915050565b60006136c2826137af565b91506136cd836137af565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613706576137056138d8565b5b828202905092915050565b600061371c826137af565b9150613727836137af565b92508282101561373a576137396138d8565b5b828203905092915050565b60006137508261378f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137e65780820151818401526020810190506137cb565b838111156137f5576000848401525b50505050565b6000600282049050600182168061381357607f821691505b6020821081141561382757613826613936565b5b50919050565b613836826139d7565b810181811067ffffffffffffffff8211171561385557613854613994565b5b80604052505050565b6000613869826137af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561389c5761389b6138d8565b5b600182019050919050565b60006138b2826137af565b91506138bd836137af565b9250826138cd576138cc613907565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f596f75206d75737420636c61696d206174206c65617374206f6e652e00000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f416c6c20737570706c7920636c61696d65640000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d757374206265206163746976652e000000000000000000000000600082015250565b7f496e73756666696369656e742066756e647320746f20636c61696d2e00000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f43616e277420636c61696d206d6f7265207468616e203520696e20612074782e600082015250565b613f3f81613745565b8114613f4a57600080fd5b50565b613f5681613757565b8114613f6157600080fd5b50565b613f6d81613763565b8114613f7857600080fd5b50565b613f84816137af565b8114613f8f57600080fd5b5056fea264697066735822122035f55261148a93c012c57f75e3cf87bd453895a4310b0192a28bf71eac2ca2c264736f6c63430008070033
Deployed Bytecode
0x60806040526004361061020f5760003560e01c806371b9b64611610118578063a22cb465116100a0578063d16f41261161006f578063d16f412614610742578063e8a3d4851461076d578063e985e9c514610798578063f2fde38b146107d5578063fe878b1d146107fe5761020f565b8063a22cb46514610688578063b88d4fde146106b1578063c6ab67a3146106da578063c87b56dd146107055761020f565b8063938e3d7b116100e7578063938e3d7b146105c257806395d89b41146105eb5780639858cf1914610616578063a035b1fe14610641578063a0712d681461066c5761020f565b806371b9b6461461051a578063819b25ba146105455780638da5cb5b1461056e57806391b7f5ed146105995761020f565b806332cb6b0c1161019b5780635d5e55801161016a5780635d5e558014610435578063631525c31461045e5780636352211e1461048957806370a08231146104c6578063715018a6146105035761020f565b806332cb6b0c146103a15780633ccfd60b146103cc57806342842e0e146103e357806355f804b31461040c5761020f565b8063095ea7b3116101e2578063095ea7b3146102d057806310969523146102f957806310da2eb91461032257806318160ddd1461034d57806323b872dd146103785761020f565b806301ffc9a714610214578063049c5c491461025157806306fdde0314610268578063081812fc14610293575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612d21565b610829565b604051610248919061324e565b60405180910390f35b34801561025d57600080fd5b5061026661090b565b005b34801561027457600080fd5b5061027d6109b3565b60405161028a9190613269565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190612dc4565b610a45565b6040516102c791906131e7565b60405180910390f35b3480156102dc57600080fd5b506102f760048036038101906102f29190612ce1565b610aca565b005b34801561030557600080fd5b50610320600480360381019061031b9190612d7b565b610be2565b005b34801561032e57600080fd5b50610337610c78565b6040516103449190613269565b60405180910390f35b34801561035957600080fd5b50610362610d06565b60405161036f919061354b565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190612bcb565b610d17565b005b3480156103ad57600080fd5b506103b6610d77565b6040516103c3919061354b565b60405180910390f35b3480156103d857600080fd5b506103e1610d8a565b005b3480156103ef57600080fd5b5061040a60048036038101906104059190612bcb565b610e62565b005b34801561041857600080fd5b50610433600480360381019061042e9190612d7b565b610e82565b005b34801561044157600080fd5b5061045c60048036038101906104579190612dc4565b610f18565b005b34801561046a57600080fd5b50610473610f9e565b604051610480919061324e565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190612dc4565b610fb1565b6040516104bd91906131e7565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e89190612b5e565b611063565b6040516104fa919061354b565b60405180910390f35b34801561050f57600080fd5b5061051861111b565b005b34801561052657600080fd5b5061052f6111a3565b60405161053c919061324e565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190612dc4565b6111b6565b005b34801561057a57600080fd5b5061058361125d565b60405161059091906131e7565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612dc4565b611287565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190612d7b565b61130d565b005b3480156105f757600080fd5b506106006113a3565b60405161060d9190613269565b60405180910390f35b34801561062257600080fd5b5061062b611435565b604051610638919061354b565b60405180910390f35b34801561064d57600080fd5b5061065661143b565b604051610663919061354b565b60405180910390f35b61068660048036038101906106819190612dc4565b611441565b005b34801561069457600080fd5b506106af60048036038101906106aa9190612ca1565b6116d5565b005b3480156106bd57600080fd5b506106d860048036038101906106d39190612c1e565b6116eb565b005b3480156106e657600080fd5b506106ef61174d565b6040516106fc9190613269565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190612dc4565b6117db565b6040516107399190613269565b60405180910390f35b34801561074e57600080fd5b50610757611882565b604051610764919061354b565b60405180910390f35b34801561077957600080fd5b50610782611888565b60405161078f9190613269565b60405180910390f35b3480156107a457600080fd5b506107bf60048036038101906107ba9190612b8b565b611916565b6040516107cc919061324e565b60405180910390f35b3480156107e157600080fd5b506107fc60048036038101906107f79190612b5e565b6119aa565b005b34801561080a57600080fd5b50610813611aa2565b604051610820919061354b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610904575061090382611aa8565b5b9050919050565b610913611b12565b73ffffffffffffffffffffffffffffffffffffffff1661093161125d565b73ffffffffffffffffffffffffffffffffffffffff1614610987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097e9061344b565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6060600080546109c2906137fb565b80601f01602080910402602001604051908101604052809291908181526020018280546109ee906137fb565b8015610a3b5780601f10610a1057610100808354040283529160200191610a3b565b820191906000526020600020905b815481529060010190602001808311610a1e57829003601f168201915b5050505050905090565b6000610a5082611b1a565b610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a869061342b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad582610fb1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d906134ab565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b65611b12565b73ffffffffffffffffffffffffffffffffffffffff161480610b945750610b9381610b8e611b12565b611916565b5b610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca9061336b565b60405180910390fd5b610bdd8383611b86565b505050565b610bea611b12565b73ffffffffffffffffffffffffffffffffffffffff16610c0861125d565b73ffffffffffffffffffffffffffffffffffffffff1614610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c559061344b565b60405180910390fd5b8060089080519060200190610c74929190612972565b5050565b600c8054610c85906137fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb1906137fb565b8015610cfe5780601f10610cd357610100808354040283529160200191610cfe565b820191906000526020600020905b815481529060010190602001808311610ce157829003601f168201915b505050505081565b6000610d126007611c3f565b905090565b610d28610d22611b12565b82611c4d565b610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e9061350b565b60405180910390fd5b610d72838383611d2b565b505050565b610cb26106d6610d879190613630565b81565b610d92611b12565b73ffffffffffffffffffffffffffffffffffffffff16610db061125d565b73ffffffffffffffffffffffffffffffffffffffff1614610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd9061344b565b60405180910390fd5b60004790506000610e15611b12565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610e5d573d6000803e3d6000fd5b505050565b610e7d838383604051806020016040528060008152506116eb565b505050565b610e8a611b12565b73ffffffffffffffffffffffffffffffffffffffff16610ea861125d565b73ffffffffffffffffffffffffffffffffffffffff1614610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef59061344b565b60405180910390fd5b80600c9080519060200190610f14929190612972565b5050565b610f20611b12565b73ffffffffffffffffffffffffffffffffffffffff16610f3e61125d565b73ffffffffffffffffffffffffffffffffffffffff1614610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b9061344b565b60405180910390fd5b8060098190555050565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561105a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611051906133ab565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb9061338b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611123611b12565b73ffffffffffffffffffffffffffffffffffffffff1661114161125d565b73ffffffffffffffffffffffffffffffffffffffff1614611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e9061344b565b60405180910390fd5b6111a16000611f87565b565b600a60009054906101000a900460ff1681565b6111be611b12565b73ffffffffffffffffffffffffffffffffffffffff166111dc61125d565b73ffffffffffffffffffffffffffffffffffffffff1614611232576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112299061344b565b60405180910390fd5b60005b81811015611259576112463361204d565b80806112519061385e565b915050611235565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61128f611b12565b73ffffffffffffffffffffffffffffffffffffffff166112ad61125d565b73ffffffffffffffffffffffffffffffffffffffff1614611303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fa9061344b565b60405180910390fd5b80600b8190555050565b611315611b12565b73ffffffffffffffffffffffffffffffffffffffff1661133361125d565b73ffffffffffffffffffffffffffffffffffffffff1614611389576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113809061344b565b60405180910390fd5b80600d908051906020019061139f929190612972565b5050565b6060600180546113b2906137fb565b80601f01602080910402602001604051908101604052809291908181526020018280546113de906137fb565b801561142b5780601f106114005761010080835404028352916020019161142b565b820191906000526020600020905b81548152906001019060200180831161140e57829003601f168201915b5050505050905090565b6106d681565b600b5481565b600a60009054906101000a900460ff16611490576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611487906134cb565b60405180910390fd5b610cb26106d66114a09190613630565b816114ab6007611c3f565b6114b59190613630565b106114f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ec9061340b565b60405180910390fd5b60008111611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f906132ab565b60405180910390fd5b60095481111561157d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115749061352b565b60405180910390fd5b3481600b5461158c91906136b7565b11156115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c4906134eb565b60405180910390fd5b60005b818110156116d1576106d660016115e76007611c3f565b6115f19190613630565b11801561160b5750600e60009054906101000a900460ff16155b15611695576001600e60006101000a81548160ff021916908315150217905550661550f7dca70000600b819055503481836116469190613711565b600b5461165391906136b7565b1115611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b906134eb565b60405180910390fd5b5b6116b43360016116a56007611c3f565b6116af9190613630565b6121aa565b6116be60076121c8565b80806116c99061385e565b9150506115d0565b5050565b6116e76116e0611b12565b83836121de565b5050565b6116fc6116f6611b12565b83611c4d565b61173b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117329061350b565b60405180910390fd5b6117478484848461234b565b50505050565b6008805461175a906137fb565b80601f0160208091040260200160405190810160405280929190818152602001828054611786906137fb565b80156117d35780601f106117a8576101008083540402835291602001916117d3565b820191906000526020600020905b8154815290600101906020018083116117b657829003601f168201915b505050505081565b60606117e682611b1a565b611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c9061348b565b60405180910390fd5b600061182f6123a7565b9050600081511161184f576040518060200160405280600081525061187a565b8061185984612439565b60405160200161186a9291906131c3565b6040516020818303038152906040525b915050919050565b60095481565b600d8054611895906137fb565b80601f01602080910402602001604051908101604052809291908181526020018280546118c1906137fb565b801561190e5780601f106118e35761010080835404028352916020019161190e565b820191906000526020600020905b8154815290600101906020018083116118f157829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119b2611b12565b73ffffffffffffffffffffffffffffffffffffffff166119d061125d565b73ffffffffffffffffffffffffffffffffffffffff1614611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d9061344b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8d906132cb565b60405180910390fd5b611a9f81611f87565b50565b610cb281565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bf983610fb1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611c5882611b1a565b611c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8e9061334b565b60405180910390fd5b6000611ca283610fb1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d1157508373ffffffffffffffffffffffffffffffffffffffff16611cf984610a45565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d225750611d218185611916565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d4b82610fb1565b73ffffffffffffffffffffffffffffffffffffffff1614611da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d989061346b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e089061330b565b60405180910390fd5b611e1c83838361259a565b611e27600082611b86565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e779190613711565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ece9190613630565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612055611b12565b73ffffffffffffffffffffffffffffffffffffffff1661207361125d565b73ffffffffffffffffffffffffffffffffffffffff16146120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c09061344b565b60405180910390fd5b60006120d56007611c3f565b9050610cb26106d66120e79190613630565b8110612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f906133cb565b60405180910390fd5b610cb26106d66121389190613630565b6001826121459190613630565b1115612186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217d9061340b565b60405180910390fd5b61219c826001836121979190613630565b6121aa565b6121a660076121c8565b5050565b6121c482826040518060200160405280600081525061259f565b5050565b6001816000016000828254019250508190555050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561224d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122449061332b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161233e919061324e565b60405180910390a3505050565b612356848484611d2b565b612362848484846125fa565b6123a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123989061328b565b60405180910390fd5b50505050565b6060600c80546123b6906137fb565b80601f01602080910402602001604051908101604052809291908181526020018280546123e2906137fb565b801561242f5780601f106124045761010080835404028352916020019161242f565b820191906000526020600020905b81548152906001019060200180831161241257829003601f168201915b5050505050905090565b60606000821415612481576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612595565b600082905060005b600082146124b357808061249c9061385e565b915050600a826124ac9190613686565b9150612489565b60008167ffffffffffffffff8111156124cf576124ce613994565b5b6040519080825280601f01601f1916602001820160405280156125015781602001600182028036833780820191505090505b5090505b6000851461258e5760018261251a9190613711565b9150600a8561252991906138a7565b60306125359190613630565b60f81b81838151811061254b5761254a613965565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125879190613686565b9450612505565b8093505050505b919050565b505050565b6125a98383612791565b6125b660008484846125fa565b6125f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ec9061328b565b60405180910390fd5b505050565b600061261b8473ffffffffffffffffffffffffffffffffffffffff1661295f565b15612784578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612644611b12565b8786866040518563ffffffff1660e01b81526004016126669493929190613202565b602060405180830381600087803b15801561268057600080fd5b505af19250505080156126b157506040513d601f19601f820116820180604052508101906126ae9190612d4e565b60015b612734573d80600081146126e1576040519150601f19603f3d011682016040523d82523d6000602084013e6126e6565b606091505b5060008151141561272c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127239061328b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612789565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f8906133eb565b60405180910390fd5b61280a81611b1a565b1561284a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612841906132eb565b60405180910390fd5b6128566000838361259a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128a69190613630565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461297e906137fb565b90600052602060002090601f0160209004810192826129a057600085556129e7565b82601f106129b957805160ff19168380011785556129e7565b828001600101855582156129e7579182015b828111156129e65782518255916020019190600101906129cb565b5b5090506129f491906129f8565b5090565b5b80821115612a115760008160009055506001016129f9565b5090565b6000612a28612a238461358b565b613566565b905082815260208101848484011115612a4457612a436139c8565b5b612a4f8482856137b9565b509392505050565b6000612a6a612a65846135bc565b613566565b905082815260208101848484011115612a8657612a856139c8565b5b612a918482856137b9565b509392505050565b600081359050612aa881613f36565b92915050565b600081359050612abd81613f4d565b92915050565b600081359050612ad281613f64565b92915050565b600081519050612ae781613f64565b92915050565b600082601f830112612b0257612b016139c3565b5b8135612b12848260208601612a15565b91505092915050565b600082601f830112612b3057612b2f6139c3565b5b8135612b40848260208601612a57565b91505092915050565b600081359050612b5881613f7b565b92915050565b600060208284031215612b7457612b736139d2565b5b6000612b8284828501612a99565b91505092915050565b60008060408385031215612ba257612ba16139d2565b5b6000612bb085828601612a99565b9250506020612bc185828601612a99565b9150509250929050565b600080600060608486031215612be457612be36139d2565b5b6000612bf286828701612a99565b9350506020612c0386828701612a99565b9250506040612c1486828701612b49565b9150509250925092565b60008060008060808587031215612c3857612c376139d2565b5b6000612c4687828801612a99565b9450506020612c5787828801612a99565b9350506040612c6887828801612b49565b925050606085013567ffffffffffffffff811115612c8957612c886139cd565b5b612c9587828801612aed565b91505092959194509250565b60008060408385031215612cb857612cb76139d2565b5b6000612cc685828601612a99565b9250506020612cd785828601612aae565b9150509250929050565b60008060408385031215612cf857612cf76139d2565b5b6000612d0685828601612a99565b9250506020612d1785828601612b49565b9150509250929050565b600060208284031215612d3757612d366139d2565b5b6000612d4584828501612ac3565b91505092915050565b600060208284031215612d6457612d636139d2565b5b6000612d7284828501612ad8565b91505092915050565b600060208284031215612d9157612d906139d2565b5b600082013567ffffffffffffffff811115612daf57612dae6139cd565b5b612dbb84828501612b1b565b91505092915050565b600060208284031215612dda57612dd96139d2565b5b6000612de884828501612b49565b91505092915050565b612dfa81613745565b82525050565b612e0981613757565b82525050565b6000612e1a826135ed565b612e248185613603565b9350612e348185602086016137c8565b612e3d816139d7565b840191505092915050565b6000612e53826135f8565b612e5d8185613614565b9350612e6d8185602086016137c8565b612e76816139d7565b840191505092915050565b6000612e8c826135f8565b612e968185613625565b9350612ea68185602086016137c8565b80840191505092915050565b6000612ebf603283613614565b9150612eca826139e8565b604082019050919050565b6000612ee2601c83613614565b9150612eed82613a37565b602082019050919050565b6000612f05602683613614565b9150612f1082613a60565b604082019050919050565b6000612f28601c83613614565b9150612f3382613aaf565b602082019050919050565b6000612f4b602483613614565b9150612f5682613ad8565b604082019050919050565b6000612f6e601983613614565b9150612f7982613b27565b602082019050919050565b6000612f91602c83613614565b9150612f9c82613b50565b604082019050919050565b6000612fb4603883613614565b9150612fbf82613b9f565b604082019050919050565b6000612fd7602a83613614565b9150612fe282613bee565b604082019050919050565b6000612ffa602983613614565b915061300582613c3d565b604082019050919050565b600061301d601283613614565b915061302882613c8c565b602082019050919050565b6000613040602083613614565b915061304b82613cb5565b602082019050919050565b6000613063601183613614565b915061306e82613cde565b602082019050919050565b6000613086602c83613614565b915061309182613d07565b604082019050919050565b60006130a9602083613614565b91506130b482613d56565b602082019050919050565b60006130cc602983613614565b91506130d782613d7f565b604082019050919050565b60006130ef602f83613614565b91506130fa82613dce565b604082019050919050565b6000613112602183613614565b915061311d82613e1d565b604082019050919050565b6000613135601483613614565b915061314082613e6c565b602082019050919050565b6000613158601c83613614565b915061316382613e95565b602082019050919050565b600061317b603183613614565b915061318682613ebe565b604082019050919050565b600061319e602083613614565b91506131a982613f0d565b602082019050919050565b6131bd816137af565b82525050565b60006131cf8285612e81565b91506131db8284612e81565b91508190509392505050565b60006020820190506131fc6000830184612df1565b92915050565b60006080820190506132176000830187612df1565b6132246020830186612df1565b61323160408301856131b4565b81810360608301526132438184612e0f565b905095945050505050565b60006020820190506132636000830184612e00565b92915050565b600060208201905081810360008301526132838184612e48565b905092915050565b600060208201905081810360008301526132a481612eb2565b9050919050565b600060208201905081810360008301526132c481612ed5565b9050919050565b600060208201905081810360008301526132e481612ef8565b9050919050565b6000602082019050818103600083015261330481612f1b565b9050919050565b6000602082019050818103600083015261332481612f3e565b9050919050565b6000602082019050818103600083015261334481612f61565b9050919050565b6000602082019050818103600083015261336481612f84565b9050919050565b6000602082019050818103600083015261338481612fa7565b9050919050565b600060208201905081810360008301526133a481612fca565b9050919050565b600060208201905081810360008301526133c481612fed565b9050919050565b600060208201905081810360008301526133e481613010565b9050919050565b6000602082019050818103600083015261340481613033565b9050919050565b6000602082019050818103600083015261342481613056565b9050919050565b6000602082019050818103600083015261344481613079565b9050919050565b600060208201905081810360008301526134648161309c565b9050919050565b60006020820190508181036000830152613484816130bf565b9050919050565b600060208201905081810360008301526134a4816130e2565b9050919050565b600060208201905081810360008301526134c481613105565b9050919050565b600060208201905081810360008301526134e481613128565b9050919050565b600060208201905081810360008301526135048161314b565b9050919050565b600060208201905081810360008301526135248161316e565b9050919050565b6000602082019050818103600083015261354481613191565b9050919050565b600060208201905061356060008301846131b4565b92915050565b6000613570613581565b905061357c828261382d565b919050565b6000604051905090565b600067ffffffffffffffff8211156135a6576135a5613994565b5b6135af826139d7565b9050602081019050919050565b600067ffffffffffffffff8211156135d7576135d6613994565b5b6135e0826139d7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061363b826137af565b9150613646836137af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561367b5761367a6138d8565b5b828201905092915050565b6000613691826137af565b915061369c836137af565b9250826136ac576136ab613907565b5b828204905092915050565b60006136c2826137af565b91506136cd836137af565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613706576137056138d8565b5b828202905092915050565b600061371c826137af565b9150613727836137af565b92508282101561373a576137396138d8565b5b828203905092915050565b60006137508261378f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137e65780820151818401526020810190506137cb565b838111156137f5576000848401525b50505050565b6000600282049050600182168061381357607f821691505b6020821081141561382757613826613936565b5b50919050565b613836826139d7565b810181811067ffffffffffffffff8211171561385557613854613994565b5b80604052505050565b6000613869826137af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561389c5761389b6138d8565b5b600182019050919050565b60006138b2826137af565b91506138bd836137af565b9250826138cd576138cc613907565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f596f75206d75737420636c61696d206174206c65617374206f6e652e00000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f416c6c20737570706c7920636c61696d65640000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d757374206265206163746976652e000000000000000000000000600082015250565b7f496e73756666696369656e742066756e647320746f20636c61696d2e00000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f43616e277420636c61696d206d6f7265207468616e203520696e20612074782e600082015250565b613f3f81613745565b8114613f4a57600080fd5b50565b613f5681613757565b8114613f6157600080fd5b50565b613f6d81613763565b8114613f7857600080fd5b50565b613f84816137af565b8114613f8f57600080fd5b5056fea264697066735822122035f55261148a93c012c57f75e3cf87bd453895a4310b0192a28bf71eac2ca2c264736f6c63430008070033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.