Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,390 CARE
Holders
572
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CARELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CaringCreatures
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
Yes with 200 runs
Other Settings:
byzantium EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.6; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract CaringCreatures is ERC721, Ownable { uint256 private _totalSupply; uint256 private _maxSupply = 9999; uint256 public price = 0.07 ether; bool public publicsaleActive; bool public presaleActive; uint8 public activePresaleRound; uint256 public giveawayMaxSupply = 222; uint256 public mintedGiveawayCount; mapping(uint8 => PresaleRound) public presaleRounds; bool _limitedSale = true; uint256 _limitedSaleLimit = 3333; address private _wallet1 = 0x78167CCEe7fff8A8a2F17bFc0018ABEa9fe2D4E7; address private _wallet2 = 0x2Bf07070baAe1176B07A4a48827e64C6efAf9Fc1; string public provenanceHash; string public baseURI; struct PresaleRound { uint256 round; uint256 perWalletLimit; mapping(address => uint256) addresses; bool active; } constructor() ERC721("Caring Creatures", "CARE") {} function mint(uint256 count) external payable { require(msg.sender == tx.origin, "Reverted"); require(publicsaleActive, "Public sale is not active"); require(_totalSupply + count <= _maxSupply, "Can not mint more than max supply"); require(count > 0 && count <= 11, "You can mint between 1 and 11 at once"); require(msg.value >= count * price, "Insufficient payment"); if (_limitedSale) { require(_totalSupply + count <= _limitedSaleLimit, "Can not mint more than limited supply"); } for (uint256 i = 0; i < count; i++) { _totalSupply++; _mint(msg.sender, _totalSupply); } bool success = false; (success,) = _wallet1.call{value : msg.value * 965 / 1000}(""); require(success, "Failed to send1"); bool success2 = false; (success2,) = _wallet2.call{value : msg.value * 35 / 1000}(""); require(success2, "Failed to send2"); } function mintPresale(uint256 count) external payable { require(msg.sender == tx.origin, "Reverted"); require(count > 0 && count <= 11, "You can mint between 1 and 11 at once"); require(_totalSupply + remainingGiveawayMintCount() + count <= _maxSupply, "Can not mint more than max supply"); require(msg.value >= count * price, "Insufficient payment"); uint8 round; (, round) = activeMintingDetails(); PresaleRound storage presaleRound = presaleRounds[round]; require(presaleActive && presaleRound.active, "Round not active"); require(presaleRound.addresses[msg.sender] >= count, "You do not have slot to mint"); for (uint256 i = 0; i < count; i++) { _totalSupply++; _mint(msg.sender, _totalSupply); presaleRounds[round].addresses[msg.sender]--; } bool success = false; (success,) = _wallet1.call{value : msg.value * 965 / 1000}(""); require(success, "Failed to send1"); bool success2 = false; (success2,) = _wallet2.call{value : msg.value * 35 / 1000}(""); require(success2, "Failed to send2"); } function mintGiveaway(uint256 count) external onlyOwner { require(msg.sender == tx.origin, "Reverted"); require(_totalSupply + count <= _maxSupply, "Can not mint more than max supply"); require(mintedGiveawayCount + count <= giveawayMaxSupply, "Giveaway limit reached"); require(count > 0 && count <= 30, "You can mint between 1 and 30 at once"); for (uint256 i = 0; i < count; i++) { _totalSupply++; _mint(msg.sender, _totalSupply); mintedGiveawayCount++; } } function toggleLimitedSale() external onlyOwner { _limitedSale = !_limitedSale; } function updateLimitedSaleLimit(uint256 newLimit) external onlyOwner { _limitedSaleLimit = newLimit; } function remainingGiveawayMintCount() public view returns (uint256) { return giveawayMaxSupply - mintedGiveawayCount; } function updateGiveawayMaxSupply(uint256 newLimit) external onlyOwner { require(newLimit >= mintedGiveawayCount, "Already has more than that"); require(_totalSupply + newLimit - mintedGiveawayCount <= _maxSupply, "More than max supply"); giveawayMaxSupply = newLimit; } function setupPresaleRound(uint8 round, uint256 perWalletLimit) external onlyOwner { PresaleRound storage presaleRound = presaleRounds[round]; presaleRound.round = round; presaleRound.perWalletLimit = perWalletLimit; } function activatePresaleRound(uint8 round) external onlyOwner { require(!publicsaleActive, "Publicsale is active"); PresaleRound storage presaleRound = presaleRounds[round]; require(presaleRound.round > 0, "Round not found"); presaleRound.active = true; presaleActive = true; activePresaleRound = round; emit PresaleRoundActivated(round); } function completePresaleRound(uint8 round) external onlyOwner { require(presaleActive, "Presale is not active"); PresaleRound storage presaleRound = presaleRounds[round]; require(presaleRound.round > 0, "Round not found"); presaleRound.active = false; presaleActive = false; activePresaleRound = 0; emit PresaleRoundCompleted(round); } function activatePublicsale() external onlyOwner { require(!presaleActive, "Presale is active"); publicsaleActive = true; emit PublicsaleActivated(); } function completePublicsale() external onlyOwner { require(publicsaleActive, "Publicsale is not active"); publicsaleActive = false; emit PublicsaleCompleted(); } function updateWhitelistOfRound(uint8 round, address[] memory addresses) external onlyOwner { require(presaleRounds[round].round > 0, "Round not found"); PresaleRound storage presaleRound = presaleRounds[round]; uint256 perWalletLimit = presaleRound.perWalletLimit; uint256 addressesLength = addresses.length; for (uint256 i = 0; i < addressesLength; i++) { presaleRound.addresses[addresses[i]] = perWalletLimit; } } function setPrice(uint256 newPrice) external onlyOwner { price = newPrice; emit PriceUpdated(newPrice); } function setProvenanceHash(string memory newProvenanceHash) public onlyOwner { provenanceHash = newProvenanceHash; } function setBaseURI(string memory newBaseURI) public onlyOwner { baseURI = newBaseURI; } function _baseURI() internal view override returns (string memory) { return baseURI; } function maxSupply() public view returns (uint256) { return _maxSupply; } function totalSupply() public view returns (uint256) { return _totalSupply; } function activeMintingDetails() public view returns (string memory publicOrPresale, uint8 round) { if (publicsaleActive) { publicOrPresale = "publicsale"; round = 0; } else if (presaleActive) { publicOrPresale = "presale"; round = activePresaleRound; } else { publicOrPresale = "mintingPaused"; round = 0; } } function isWhitelisted(address account) public view returns (bool) { uint8 round; (, round) = activeMintingDetails(); if (presaleRounds[round].addresses[account] > 0) { return true; } return false; } event PresaleRoundActivated(uint8 round); event PresaleRoundCompleted(uint8 round); event PublicsaleActivated(); event PublicsaleCompleted(); event PriceUpdated(uint256 price); }
// SPDX-License-Identifier: MIT 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT 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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { 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 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 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 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 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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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 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 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 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 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); }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "byzantium", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
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":false,"internalType":"uint8","name":"round","type":"uint8"}],"name":"PresaleRoundActivated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"round","type":"uint8"}],"name":"PresaleRoundCompleted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"PriceUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"PublicsaleActivated","type":"event"},{"anonymous":false,"inputs":[],"name":"PublicsaleCompleted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"round","type":"uint8"}],"name":"activatePresaleRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activatePublicsale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activeMintingDetails","outputs":[{"internalType":"string","name":"publicOrPresale","type":"string"},{"internalType":"uint8","name":"round","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activePresaleRound","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"round","type":"uint8"}],"name":"completePresaleRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"completePublicsale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveawayMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintedGiveawayCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"presaleRounds","outputs":[{"internalType":"uint256","name":"round","type":"uint256"},{"internalType":"uint256","name":"perWalletLimit","type":"uint256"},{"internalType":"bool","name":"active","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":"publicsaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainingGiveawayMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newProvenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"round","type":"uint8"},{"internalType":"uint256","name":"perWalletLimit","type":"uint256"}],"name":"setupPresaleRound","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":"toggleLimitedSale","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":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateGiveawayMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateLimitedSaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"round","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"updateWhitelistOfRound","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405261270f60085566f8b0a10e47000060095560de600b55600e805460ff19166001179055610d05600f5560108054600160a060020a03199081167378167ccee7fff8a8a2f17bfc0018abea9fe2d4e71790915560118054909116732bf07070baae1176b07a4a48827e64c6efaf9fc11790553480156200008257600080fd5b50604080518082018252601081527f436172696e67204372656174757265730000000000000000000000000000000060208083019182528351808501909452600484527f4341524500000000000000000000000000000000000000000000000000000000908401528151919291620000fd916000916200019e565b508051620001139060019060208401906200019e565b505050620001426200013362000148640100000000026401000000009004565b6401000000006200014c810204565b6200029a565b3390565b60068054600160a060020a03838116600160a060020a0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001ac9062000244565b90600052602060002090601f016020900481019282620001d057600085556200021b565b82601f10620001eb57805160ff19168380011785556200021b565b828001600101855582156200021b579182015b828111156200021b578251825591602001919060010190620001fe565b50620002299291506200022d565b5090565b5b808211156200022957600081556001016200022e565b6002810460018216806200025957607f821691505b6020821081141562000294577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6132cb80620002aa6000396000f3fe60806040526004361061028f576000357c01000000000000000000000000000000000000000000000000000000009004806370a082311161016c578063ae8f0fc0116100de578063d5abeb0111610097578063d5abeb0114610773578063d7032e0514610788578063e985e9c51461079e578063f2fde38b146107e7578063f663ab7214610807578063f759867a1461082757600080fd5b8063ae8f0fc0146106d3578063b0532d14146106e8578063b88d4fde14610708578063b9fb44f914610728578063c6ab67a31461073e578063c87b56dd1461075357600080fd5b806391b7f5ed1161013057806391b7f5ed1461063557806395d89b4114610655578063978fd91f1461066a578063a035b1fe1461068a578063a0712d68146106a0578063a22cb465146106b357600080fd5b806370a0823114610566578063715018a614610586578063719c83491461059b5780637af66cec146105f75780638da5cb5b1461061757600080fd5b806339dedb101161020557806355f804b3116101c957806355f804b3146104b95780635abbeb26146104d95780635c65081e146104ee5780636352211e146105115780636c0360eb146105315780636ca557971461054657600080fd5b806339dedb10146104135780633af32abf14610445578063427905ba1461046557806342842e0e1461047a57806353135ca01461049a57600080fd5b80631096952311610257578063109695231461036557806318160ddd146103855780631e7c0863146103a457806323b872dd146103b957806328ebc000146103d95780633432123d146103f957600080fd5b806301ffc9a71461029457806306fdde03146102c9578063081812fc146102eb578063095ea7b3146103235780630e7600cf14610345575b600080fd5b3480156102a057600080fd5b506102b46102af366004612c59565b61083a565b60405190151581526020015b60405180910390f35b3480156102d557600080fd5b506102de6108d7565b6040516102c09190612e89565b3480156102f757600080fd5b5061030b610306366004612cdc565b610969565b604051600160a060020a0390911681526020016102c0565b34801561032f57600080fd5b5061034361033e366004612c2f565b610a17565b005b34801561035157600080fd5b50610343610360366004612cdc565b610b4f565b34801561037157600080fd5b50610343610380366004612c93565b610b81565b34801561039157600080fd5b506007545b6040519081526020016102c0565b3480156103b057600080fd5b50610343610bc5565b3480156103c557600080fd5b506103436103d4366004612b3b565b610c7c565b3480156103e557600080fd5b506103436103f4366004612cf5565b610cb0565b34801561040557600080fd5b50600a546102b49060ff1681565b34801561041f57600080fd5b50600a546104339062010000900460ff1681565b60405160ff90911681526020016102c0565b34801561045157600080fd5b506102b4610460366004612aed565b610dd6565b34801561047157600080fd5b50610343610e27565b34801561048657600080fd5b50610343610495366004612b3b565b610e68565b3480156104a657600080fd5b50600a546102b490610100900460ff1681565b3480156104c557600080fd5b506103436104d4366004612c93565b610e83565b3480156104e557600080fd5b50610343610ec3565b3480156104fa57600080fd5b50610503610f83565b6040516102c0929190612e9c565b34801561051d57600080fd5b5061030b61052c366004612cdc565b611062565b34801561053d57600080fd5b506102de6110f0565b34801561055257600080fd5b50610343610561366004612dd6565b61117e565b34801561057257600080fd5b50610396610581366004612aed565b6111c7565b34801561059257600080fd5b50610343611264565b3480156105a757600080fd5b506105da6105b6366004612cf5565b600d6020526000908152604090208054600182015460039092015490919060ff1683565b6040805193845260208401929092521515908201526060016102c0565b34801561060357600080fd5b50610343610612366004612cdc565b61129d565b34801561062357600080fd5b50600654600160a060020a031661030b565b34801561064157600080fd5b50610343610650366004612cdc565b61145a565b34801561066157600080fd5b506102de6114c2565b34801561067657600080fd5b50610343610685366004612cf5565b6114d1565b34801561069657600080fd5b5061039660095481565b6103436106ae366004612cdc565b6115d6565b3480156106bf57600080fd5b506103436106ce366004612bf3565b61195d565b3480156106df57600080fd5b50610396611a25565b3480156106f457600080fd5b50610343610703366004612d10565b611a3c565b34801561071457600080fd5b50610343610723366004612b77565b611b22565b34801561073457600080fd5b50610396600b5481565b34801561074a57600080fd5b506102de611b5d565b34801561075f57600080fd5b506102de61076e366004612cdc565b611b6a565b34801561077f57600080fd5b50600854610396565b34801561079457600080fd5b50610396600c5481565b3480156107aa57600080fd5b506102b46107b9366004612b08565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107f357600080fd5b50610343610802366004612aed565b611c56565b34801561081357600080fd5b50610343610822366004612cdc565b611d0e565b610343610835366004612cdc565b611e04565b6000600160e060020a031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061089d5750600160e060020a031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108d157507f01ffc9a700000000000000000000000000000000000000000000000000000000600160e060020a03198316145b92915050565b6060600080546108e6906131ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610912906131ae565b801561095f5780601f106109345761010080835404028352916020019161095f565b820191906000526020600020905b81548152906001019060200180831161094257829003601f168201915b5050505050905090565b600081815260026020526040812054600160a060020a03166109fb5760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b50600090815260046020526040902054600160a060020a031690565b6000610a2282611062565b905080600160a060020a031683600160a060020a03161415610aaf5760405160e560020a62461bcd02815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016109f2565b33600160a060020a0382161480610acb5750610acb81336107b9565b610b405760405160e560020a62461bcd02815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109f2565b610b4a83836121dd565b505050565b600654600160a060020a03163314610b7c5760405160e560020a62461bcd0281526004016109f290612fb2565b600f55565b600654600160a060020a03163314610bae5760405160e560020a62461bcd0281526004016109f290612fb2565b8051610bc19060129060208401906129cf565b5050565b600654600160a060020a03163314610bf25760405160e560020a62461bcd0281526004016109f290612fb2565b600a5460ff16610c475760405160e560020a62461bcd02815260206004820152601860248201527f5075626c696373616c65206973206e6f7420616374697665000000000000000060448201526064016109f2565b600a805460ff191690556040517f3e03ee4a9ee2729ade0c98f40b043b7580ed75c2551871a5e919218d61f56f3a90600090a1565b610c863382612258565b610ca55760405160e560020a62461bcd0281526004016109f29061301e565b610b4a838383612363565b600654600160a060020a03163314610cdd5760405160e560020a62461bcd0281526004016109f290612fb2565b600a5460ff1615610d335760405160e560020a62461bcd02815260206004820152601460248201527f5075626c696373616c652069732061637469766500000000000000000000000060448201526064016109f2565b60ff81166000908152600d602052604090208054610d665760405160e560020a62461bcd0281526004016109f290612fe7565b60038101805460ff19166001179055600a805460ff8416620100000262ffff0019909116176101001790556040517fb02e62887f0d78489b1dd82512e804f7912e28b9abcdcae007f366289ad5292590610dca90849060ff91909116815260200190565b60405180910390a15050565b600080610de1610f83565b60ff81166000908152600d60209081526040808320600160a060020a0389168452600201909152902054909250159050610e1e5750600192915050565b50600092915050565b600654600160a060020a03163314610e545760405160e560020a62461bcd0281526004016109f290612fb2565b600e805460ff19811660ff90911615179055565b610b4a83838360405180602001604052806000815250611b22565b600654600160a060020a03163314610eb05760405160e560020a62461bcd0281526004016109f290612fb2565b8051610bc19060139060208401906129cf565b600654600160a060020a03163314610ef05760405160e560020a62461bcd0281526004016109f290612fb2565b600a54610100900460ff1615610f4b5760405160e560020a62461bcd02815260206004820152601160248201527f50726573616c652069732061637469766500000000000000000000000000000060448201526064016109f2565b600a805460ff191660011790556040517ff3f276a6f9e73114b4bea31ee55d7d981016a8939d2661619bb59a7e21978cd290600090a1565b600a5460609060009060ff1615610fd057505060408051808201909152600a81527f7075626c696373616c6500000000000000000000000000000000000000000000602082015260009091565b600a54610100900460ff161561102657505060408051808201909152600781527f70726573616c65000000000000000000000000000000000000000000000000006020820152600a5462010000900460ff169091565b505060408051808201909152600d81527f6d696e74696e6750617573656400000000000000000000000000000000000000602082015260009091565b600081815260026020526040812054600160a060020a0316806108d15760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016109f2565b601380546110fd906131ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611129906131ae565b80156111765780601f1061114b57610100808354040283529160200191611176565b820191906000526020600020905b81548152906001019060200180831161115957829003601f168201915b505050505081565b600654600160a060020a031633146111ab5760405160e560020a62461bcd0281526004016109f290612fb2565b60ff9091166000818152600d6020526040902090815560010155565b6000600160a060020a0382166112485760405160e560020a62461bcd02815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016109f2565b50600160a060020a031660009081526003602052604090205490565b600654600160a060020a031633146112915760405160e560020a62461bcd0281526004016109f290612fb2565b61129b6000612543565b565b600654600160a060020a031633146112ca5760405160e560020a62461bcd0281526004016109f290612fb2565b3332146112ec5760405160e560020a62461bcd0281526004016109f290612ec1565b600854816007546112fd9190613109565b111561131e5760405160e560020a62461bcd0281526004016109f29061307b565b600b5481600c5461132f9190613109565b11156113805760405160e560020a62461bcd02815260206004820152601660248201527f4769766561776179206c696d697420726561636865640000000000000000000060448201526064016109f2565b6000811180156113915750601e8111155b6114065760405160e560020a62461bcd02815260206004820152602560248201527f596f752063616e206d696e74206265747765656e203120616e6420333020617460448201527f206f6e636500000000000000000000000000000000000000000000000000000060648201526084016109f2565b60005b81811015610bc15760078054906000611421836131ec565b9190505550611432336007546125a2565b600c8054906000611442836131ec565b91905055508080611452906131ec565b915050611409565b600654600160a060020a031633146114875760405160e560020a62461bcd0281526004016109f290612fb2565b60098190556040518181527f66cbca4f3c64fecf1dcb9ce094abcf7f68c3450a1d4e3a8e917dd621edb4ebe09060200160405180910390a150565b6060600180546108e6906131ae565b600654600160a060020a031633146114fe5760405160e560020a62461bcd0281526004016109f290612fb2565b600a54610100900460ff166115585760405160e560020a62461bcd02815260206004820152601560248201527f50726573616c65206973206e6f7420616374697665000000000000000000000060448201526064016109f2565b60ff81166000908152600d60205260409020805461158b5760405160e560020a62461bcd0281526004016109f290612fe7565b60038101805460ff19169055600a805462ffff001916905560405160ff831681527fd0870cc334beac1adfe2b51ce59bb7bea5e331d4f7012299542c2d6ab5950a9f90602001610dca565b3332146115f85760405160e560020a62461bcd0281526004016109f290612ec1565b600a5460ff1661164d5760405160e560020a62461bcd02815260206004820152601960248201527f5075626c69632073616c65206973206e6f74206163746976650000000000000060448201526064016109f2565b6008548160075461165e9190613109565b111561167f5760405160e560020a62461bcd0281526004016109f29061307b565b6000811180156116905750600b8111155b6116af5760405160e560020a62461bcd0281526004016109f290612ef8565b6009546116bc9082613135565b34101561170e5760405160e560020a62461bcd02815260206004820152601460248201527f496e73756666696369656e74207061796d656e7400000000000000000000000060448201526064016109f2565b600e5460ff16156117a157600f548160075461172a9190613109565b11156117a15760405160e560020a62461bcd02815260206004820152602560248201527f43616e206e6f74206d696e74206d6f7265207468616e206c696d69746564207360448201527f7570706c7900000000000000000000000000000000000000000000000000000060648201526084016109f2565b60005b818110156117df57600780549060006117bc836131ec565b91905055506117cd336007546125a2565b806117d7816131ec565b9150506117a4565b50601054600090600160a060020a03166103e86117fe346103c5613135565b6118089190613121565b604051600081818185875af1925050503d8060008114611844576040519150601f19603f3d011682016040523d82523d6000602084013e611849565b606091505b5050809150508061189f5760405160e560020a62461bcd02815260206004820152600f60248201527f4661696c656420746f2073656e6431000000000000000000000000000000000060448201526064016109f2565b601154600090600160a060020a03166103e86118bc346023613135565b6118c69190613121565b604051600081818185875af1925050503d8060008114611902576040519150601f19603f3d011682016040523d82523d6000602084013e611907565b606091505b50508091505080610b4a5760405160e560020a62461bcd02815260206004820152600f60248201527f4661696c656420746f2073656e6432000000000000000000000000000000000060448201526064016109f2565b600160a060020a0382163314156119b95760405160e560020a62461bcd02815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109f2565b336000818152600560209081526040808320600160a060020a03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000600c54600b54611a379190613154565b905090565b600654600160a060020a03163314611a695760405160e560020a62461bcd0281526004016109f290612fb2565b60ff82166000908152600d6020526040902054611a9b5760405160e560020a62461bcd0281526004016109f290612fe7565b60ff82166000908152600d602052604081206001810154835191929091905b81811015611b1a5782846002016000878481518110611adb57611adb61324d565b6020026020010151600160a060020a0316600160a060020a03168152602001908152602001600020819055508080611b12906131ec565b915050611aba565b505050505050565b611b2c3383612258565b611b4b5760405160e560020a62461bcd0281526004016109f29061301e565b611b57848484846126f7565b50505050565b601280546110fd906131ae565b600081815260026020526040902054606090600160a060020a0316611bfa5760405160e560020a62461bcd02815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016109f2565b6000611c0461272d565b90506000815111611c245760405180602001604052806000815250611c4f565b80611c2e8461273c565b604051602001611c3f929190612e1e565b6040516020818303038152906040525b9392505050565b600654600160a060020a03163314611c835760405160e560020a62461bcd0281526004016109f290612fb2565b600160a060020a038116611d025760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109f2565b611d0b81612543565b50565b600654600160a060020a03163314611d3b5760405160e560020a62461bcd0281526004016109f290612fb2565b600c54811015611d905760405160e560020a62461bcd02815260206004820152601a60248201527f416c726561647920686173206d6f7265207468616e207468617400000000000060448201526064016109f2565b600854600c5482600754611da49190613109565b611dae9190613154565b1115611dff5760405160e560020a62461bcd02815260206004820152601460248201527f4d6f7265207468616e206d617820737570706c7900000000000000000000000060448201526064016109f2565b600b55565b333214611e265760405160e560020a62461bcd0281526004016109f290612ec1565b600081118015611e375750600b8111155b611e565760405160e560020a62461bcd0281526004016109f290612ef8565b60085481611e62611a25565b600754611e6f9190613109565b611e799190613109565b1115611e9a5760405160e560020a62461bcd0281526004016109f29061307b565b600954611ea79082613135565b341015611ef95760405160e560020a62461bcd02815260206004820152601460248201527f496e73756666696369656e74207061796d656e7400000000000000000000000060448201526064016109f2565b6000611f03610f83565b60ff8082166000908152600d60205260409020600a549294509250610100909104168015611f355750600381015460ff165b611f845760405160e560020a62461bcd02815260206004820152601060248201527f526f756e64206e6f74206163746976650000000000000000000000000000000060448201526064016109f2565b336000908152600282016020526040902054831115611fe85760405160e560020a62461bcd02815260206004820152601c60248201527f596f7520646f206e6f74206861766520736c6f7420746f206d696e740000000060448201526064016109f2565b60005b838110156120585760078054906000612003836131ec565b9190505550612014336007546125a2565b60ff83166000908152600d60209081526040808320338452600201909152812080549161204083613197565b91905055508080612050906131ec565b915050611feb565b50601054600090600160a060020a03166103e8612077346103c5613135565b6120819190613121565b604051600081818185875af1925050503d80600081146120bd576040519150601f19603f3d011682016040523d82523d6000602084013e6120c2565b606091505b505080915050806121185760405160e560020a62461bcd02815260206004820152600f60248201527f4661696c656420746f2073656e6431000000000000000000000000000000000060448201526064016109f2565b601154600090600160a060020a03166103e8612135346023613135565b61213f9190613121565b604051600081818185875af1925050503d806000811461217b576040519150601f19603f3d011682016040523d82523d6000602084013e612180565b606091505b505080915050806121d65760405160e560020a62461bcd02815260206004820152600f60248201527f4661696c656420746f2073656e6432000000000000000000000000000000000060448201526064016109f2565b5050505050565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038416908117909155819061221f82611062565b600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081815260026020526040812054600160a060020a03166122e55760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016109f2565b60006122f083611062565b905080600160a060020a031684600160a060020a0316148061232b575083600160a060020a031661232084610969565b600160a060020a0316145b8061235b5750600160a060020a0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b82600160a060020a031661237682611062565b600160a060020a0316146123f55760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016109f2565b600160a060020a0382166124735760405160e560020a62461bcd028152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109f2565b61247e6000826121dd565b600160a060020a03831660009081526003602052604081208054600192906124a7908490613154565b9091555050600160a060020a03821660009081526003602052604081208054600192906124d5908490613109565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60068054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600160a060020a0382166125fb5760405160e560020a62461bcd02815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109f2565b600081815260026020526040902054600160a060020a0316156126635760405160e560020a62461bcd02815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109f2565b600160a060020a038216600090815260036020526040812080546001929061268c908490613109565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b612702848484612363565b61270e8484848461288d565b611b575760405160e560020a62461bcd0281526004016109f290612f55565b6060601380546108e6906131ae565b60608161277c57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156127a65780612790816131ec565b915061279f9050600a83613121565b9150612780565b60008167ffffffffffffffff8111156127c1576127c1613266565b6040519080825280601f01601f1916602001820160405280156127eb576020820181803683370190505b5090505b841561235b57612800600183613154565b915061280d600a86613207565b612818906030613109565b7f01000000000000000000000000000000000000000000000000000000000000000281838151811061284c5761284c61324d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612886600a86613121565b94506127ef565b6000600160a060020a0384163b156129c4576040517f150b7a02000000000000000000000000000000000000000000000000000000008152600160a060020a0385169063150b7a02906128ea903390899088908890600401612e4d565b602060405180830381600087803b15801561290457600080fd5b505af1925050508015612934575060408051601f3d908101601f1916820190925261293191810190612c76565b60015b612991573d808015612962576040519150601f19603f3d011682016040523d82523d6000602084013e612967565b606091505b5080516129895760405160e560020a62461bcd0281526004016109f290612f55565b805181602001fd5b600160e060020a0319167f150b7a020000000000000000000000000000000000000000000000000000000014905061235b565b506001949350505050565b8280546129db906131ae565b90600052602060002090601f0160209004810192826129fd5760008555612a43565b82601f10612a1657805160ff1916838001178555612a43565b82800160010185558215612a43579182015b82811115612a43578251825591602001919060010190612a28565b50612a4f929150612a53565b5090565b5b80821115612a4f5760008155600101612a54565b600067ffffffffffffffff831115612a8257612a82613266565b612a95601f8401601f19166020016130d8565b9050828152838383011115612aa957600080fd5b828260208301376000602084830101529392505050565b8035600160a060020a0381168114612ad757600080fd5b919050565b803560ff81168114612ad757600080fd5b600060208284031215612aff57600080fd5b611c4f82612ac0565b60008060408385031215612b1b57600080fd5b612b2483612ac0565b9150612b3260208401612ac0565b90509250929050565b600080600060608486031215612b5057600080fd5b612b5984612ac0565b9250612b6760208501612ac0565b9150604084013590509250925092565b60008060008060808587031215612b8d57600080fd5b612b9685612ac0565b9350612ba460208601612ac0565b925060408501359150606085013567ffffffffffffffff811115612bc757600080fd5b8501601f81018713612bd857600080fd5b612be787823560208401612a68565b91505092959194509250565b60008060408385031215612c0657600080fd5b612c0f83612ac0565b915060208301358015158114612c2457600080fd5b809150509250929050565b60008060408385031215612c4257600080fd5b612c4b83612ac0565b946020939093013593505050565b600060208284031215612c6b57600080fd5b8135611c4f8161327f565b600060208284031215612c8857600080fd5b8151611c4f8161327f565b600060208284031215612ca557600080fd5b813567ffffffffffffffff811115612cbc57600080fd5b8201601f81018413612ccd57600080fd5b61235b84823560208401612a68565b600060208284031215612cee57600080fd5b5035919050565b600060208284031215612d0757600080fd5b611c4f82612adc565b60008060408385031215612d2357600080fd5b612d2c83612adc565b915060208084013567ffffffffffffffff80821115612d4a57600080fd5b818601915086601f830112612d5e57600080fd5b813581811115612d7057612d70613266565b8381029150612d808483016130d8565b8181528481019084860184860187018b1015612d9b57600080fd5b600095505b83861015612dc557612db181612ac0565b835260019590950194918601918601612da0565b508096505050505050509250929050565b60008060408385031215612de957600080fd5b612c4b83612adc565b60008151808452612e0a81602086016020860161316b565b601f01601f19169290920160200192915050565b60008351612e3081846020880161316b565b835190830190612e4481836020880161316b565b01949350505050565b6000600160a060020a03808716835280861660208401525083604083015260806060830152612e7f6080830184612df2565b9695505050505050565b602081526000611c4f6020830184612df2565b604081526000612eaf6040830185612df2565b905060ff831660208301529392505050565b60208082526008908201527f5265766572746564000000000000000000000000000000000000000000000000604082015260600190565b60208082526025908201527f596f752063616e206d696e74206265747765656e203120616e6420313120617460408201527f206f6e6365000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600f908201527f526f756e64206e6f7420666f756e640000000000000000000000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b60208082526021908201527f43616e206e6f74206d696e74206d6f7265207468616e206d617820737570706c60408201527f7900000000000000000000000000000000000000000000000000000000000000606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561310157613101613266565b604052919050565b6000821982111561311c5761311c61321b565b500190565b60008261313057613130613234565b500490565b600081600019048311821515161561314f5761314f61321b565b500290565b6000828210156131665761316661321b565b500390565b60005b8381101561318657818101518382015260200161316e565b83811115611b575750506000910152565b6000816131a6576131a661321b565b506000190190565b6002810460018216806131c257607f821691505b602082108114156131e65760e060020a634e487b7102600052602260045260246000fd5b50919050565b60006000198214156132005761320061321b565b5060010190565b60008261321657613216613234565b500690565b60e060020a634e487b7102600052601160045260246000fd5b60e060020a634e487b7102600052601260045260246000fd5b60e060020a634e487b7102600052603260045260246000fd5b60e060020a634e487b7102600052604160045260246000fd5b600160e060020a031981168114611d0b57600080fdfea264697066735822122077160955d552f27d1e0b5ee0373a4c327e8bc001e167957b1699c8b923ac146d64736f6c63430008060033
Deployed Bytecode
0x60806040526004361061028f576000357c01000000000000000000000000000000000000000000000000000000009004806370a082311161016c578063ae8f0fc0116100de578063d5abeb0111610097578063d5abeb0114610773578063d7032e0514610788578063e985e9c51461079e578063f2fde38b146107e7578063f663ab7214610807578063f759867a1461082757600080fd5b8063ae8f0fc0146106d3578063b0532d14146106e8578063b88d4fde14610708578063b9fb44f914610728578063c6ab67a31461073e578063c87b56dd1461075357600080fd5b806391b7f5ed1161013057806391b7f5ed1461063557806395d89b4114610655578063978fd91f1461066a578063a035b1fe1461068a578063a0712d68146106a0578063a22cb465146106b357600080fd5b806370a0823114610566578063715018a614610586578063719c83491461059b5780637af66cec146105f75780638da5cb5b1461061757600080fd5b806339dedb101161020557806355f804b3116101c957806355f804b3146104b95780635abbeb26146104d95780635c65081e146104ee5780636352211e146105115780636c0360eb146105315780636ca557971461054657600080fd5b806339dedb10146104135780633af32abf14610445578063427905ba1461046557806342842e0e1461047a57806353135ca01461049a57600080fd5b80631096952311610257578063109695231461036557806318160ddd146103855780631e7c0863146103a457806323b872dd146103b957806328ebc000146103d95780633432123d146103f957600080fd5b806301ffc9a71461029457806306fdde03146102c9578063081812fc146102eb578063095ea7b3146103235780630e7600cf14610345575b600080fd5b3480156102a057600080fd5b506102b46102af366004612c59565b61083a565b60405190151581526020015b60405180910390f35b3480156102d557600080fd5b506102de6108d7565b6040516102c09190612e89565b3480156102f757600080fd5b5061030b610306366004612cdc565b610969565b604051600160a060020a0390911681526020016102c0565b34801561032f57600080fd5b5061034361033e366004612c2f565b610a17565b005b34801561035157600080fd5b50610343610360366004612cdc565b610b4f565b34801561037157600080fd5b50610343610380366004612c93565b610b81565b34801561039157600080fd5b506007545b6040519081526020016102c0565b3480156103b057600080fd5b50610343610bc5565b3480156103c557600080fd5b506103436103d4366004612b3b565b610c7c565b3480156103e557600080fd5b506103436103f4366004612cf5565b610cb0565b34801561040557600080fd5b50600a546102b49060ff1681565b34801561041f57600080fd5b50600a546104339062010000900460ff1681565b60405160ff90911681526020016102c0565b34801561045157600080fd5b506102b4610460366004612aed565b610dd6565b34801561047157600080fd5b50610343610e27565b34801561048657600080fd5b50610343610495366004612b3b565b610e68565b3480156104a657600080fd5b50600a546102b490610100900460ff1681565b3480156104c557600080fd5b506103436104d4366004612c93565b610e83565b3480156104e557600080fd5b50610343610ec3565b3480156104fa57600080fd5b50610503610f83565b6040516102c0929190612e9c565b34801561051d57600080fd5b5061030b61052c366004612cdc565b611062565b34801561053d57600080fd5b506102de6110f0565b34801561055257600080fd5b50610343610561366004612dd6565b61117e565b34801561057257600080fd5b50610396610581366004612aed565b6111c7565b34801561059257600080fd5b50610343611264565b3480156105a757600080fd5b506105da6105b6366004612cf5565b600d6020526000908152604090208054600182015460039092015490919060ff1683565b6040805193845260208401929092521515908201526060016102c0565b34801561060357600080fd5b50610343610612366004612cdc565b61129d565b34801561062357600080fd5b50600654600160a060020a031661030b565b34801561064157600080fd5b50610343610650366004612cdc565b61145a565b34801561066157600080fd5b506102de6114c2565b34801561067657600080fd5b50610343610685366004612cf5565b6114d1565b34801561069657600080fd5b5061039660095481565b6103436106ae366004612cdc565b6115d6565b3480156106bf57600080fd5b506103436106ce366004612bf3565b61195d565b3480156106df57600080fd5b50610396611a25565b3480156106f457600080fd5b50610343610703366004612d10565b611a3c565b34801561071457600080fd5b50610343610723366004612b77565b611b22565b34801561073457600080fd5b50610396600b5481565b34801561074a57600080fd5b506102de611b5d565b34801561075f57600080fd5b506102de61076e366004612cdc565b611b6a565b34801561077f57600080fd5b50600854610396565b34801561079457600080fd5b50610396600c5481565b3480156107aa57600080fd5b506102b46107b9366004612b08565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107f357600080fd5b50610343610802366004612aed565b611c56565b34801561081357600080fd5b50610343610822366004612cdc565b611d0e565b610343610835366004612cdc565b611e04565b6000600160e060020a031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061089d5750600160e060020a031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108d157507f01ffc9a700000000000000000000000000000000000000000000000000000000600160e060020a03198316145b92915050565b6060600080546108e6906131ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610912906131ae565b801561095f5780601f106109345761010080835404028352916020019161095f565b820191906000526020600020905b81548152906001019060200180831161094257829003601f168201915b5050505050905090565b600081815260026020526040812054600160a060020a03166109fb5760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b50600090815260046020526040902054600160a060020a031690565b6000610a2282611062565b905080600160a060020a031683600160a060020a03161415610aaf5760405160e560020a62461bcd02815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016109f2565b33600160a060020a0382161480610acb5750610acb81336107b9565b610b405760405160e560020a62461bcd02815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109f2565b610b4a83836121dd565b505050565b600654600160a060020a03163314610b7c5760405160e560020a62461bcd0281526004016109f290612fb2565b600f55565b600654600160a060020a03163314610bae5760405160e560020a62461bcd0281526004016109f290612fb2565b8051610bc19060129060208401906129cf565b5050565b600654600160a060020a03163314610bf25760405160e560020a62461bcd0281526004016109f290612fb2565b600a5460ff16610c475760405160e560020a62461bcd02815260206004820152601860248201527f5075626c696373616c65206973206e6f7420616374697665000000000000000060448201526064016109f2565b600a805460ff191690556040517f3e03ee4a9ee2729ade0c98f40b043b7580ed75c2551871a5e919218d61f56f3a90600090a1565b610c863382612258565b610ca55760405160e560020a62461bcd0281526004016109f29061301e565b610b4a838383612363565b600654600160a060020a03163314610cdd5760405160e560020a62461bcd0281526004016109f290612fb2565b600a5460ff1615610d335760405160e560020a62461bcd02815260206004820152601460248201527f5075626c696373616c652069732061637469766500000000000000000000000060448201526064016109f2565b60ff81166000908152600d602052604090208054610d665760405160e560020a62461bcd0281526004016109f290612fe7565b60038101805460ff19166001179055600a805460ff8416620100000262ffff0019909116176101001790556040517fb02e62887f0d78489b1dd82512e804f7912e28b9abcdcae007f366289ad5292590610dca90849060ff91909116815260200190565b60405180910390a15050565b600080610de1610f83565b60ff81166000908152600d60209081526040808320600160a060020a0389168452600201909152902054909250159050610e1e5750600192915050565b50600092915050565b600654600160a060020a03163314610e545760405160e560020a62461bcd0281526004016109f290612fb2565b600e805460ff19811660ff90911615179055565b610b4a83838360405180602001604052806000815250611b22565b600654600160a060020a03163314610eb05760405160e560020a62461bcd0281526004016109f290612fb2565b8051610bc19060139060208401906129cf565b600654600160a060020a03163314610ef05760405160e560020a62461bcd0281526004016109f290612fb2565b600a54610100900460ff1615610f4b5760405160e560020a62461bcd02815260206004820152601160248201527f50726573616c652069732061637469766500000000000000000000000000000060448201526064016109f2565b600a805460ff191660011790556040517ff3f276a6f9e73114b4bea31ee55d7d981016a8939d2661619bb59a7e21978cd290600090a1565b600a5460609060009060ff1615610fd057505060408051808201909152600a81527f7075626c696373616c6500000000000000000000000000000000000000000000602082015260009091565b600a54610100900460ff161561102657505060408051808201909152600781527f70726573616c65000000000000000000000000000000000000000000000000006020820152600a5462010000900460ff169091565b505060408051808201909152600d81527f6d696e74696e6750617573656400000000000000000000000000000000000000602082015260009091565b600081815260026020526040812054600160a060020a0316806108d15760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016109f2565b601380546110fd906131ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611129906131ae565b80156111765780601f1061114b57610100808354040283529160200191611176565b820191906000526020600020905b81548152906001019060200180831161115957829003601f168201915b505050505081565b600654600160a060020a031633146111ab5760405160e560020a62461bcd0281526004016109f290612fb2565b60ff9091166000818152600d6020526040902090815560010155565b6000600160a060020a0382166112485760405160e560020a62461bcd02815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016109f2565b50600160a060020a031660009081526003602052604090205490565b600654600160a060020a031633146112915760405160e560020a62461bcd0281526004016109f290612fb2565b61129b6000612543565b565b600654600160a060020a031633146112ca5760405160e560020a62461bcd0281526004016109f290612fb2565b3332146112ec5760405160e560020a62461bcd0281526004016109f290612ec1565b600854816007546112fd9190613109565b111561131e5760405160e560020a62461bcd0281526004016109f29061307b565b600b5481600c5461132f9190613109565b11156113805760405160e560020a62461bcd02815260206004820152601660248201527f4769766561776179206c696d697420726561636865640000000000000000000060448201526064016109f2565b6000811180156113915750601e8111155b6114065760405160e560020a62461bcd02815260206004820152602560248201527f596f752063616e206d696e74206265747765656e203120616e6420333020617460448201527f206f6e636500000000000000000000000000000000000000000000000000000060648201526084016109f2565b60005b81811015610bc15760078054906000611421836131ec565b9190505550611432336007546125a2565b600c8054906000611442836131ec565b91905055508080611452906131ec565b915050611409565b600654600160a060020a031633146114875760405160e560020a62461bcd0281526004016109f290612fb2565b60098190556040518181527f66cbca4f3c64fecf1dcb9ce094abcf7f68c3450a1d4e3a8e917dd621edb4ebe09060200160405180910390a150565b6060600180546108e6906131ae565b600654600160a060020a031633146114fe5760405160e560020a62461bcd0281526004016109f290612fb2565b600a54610100900460ff166115585760405160e560020a62461bcd02815260206004820152601560248201527f50726573616c65206973206e6f7420616374697665000000000000000000000060448201526064016109f2565b60ff81166000908152600d60205260409020805461158b5760405160e560020a62461bcd0281526004016109f290612fe7565b60038101805460ff19169055600a805462ffff001916905560405160ff831681527fd0870cc334beac1adfe2b51ce59bb7bea5e331d4f7012299542c2d6ab5950a9f90602001610dca565b3332146115f85760405160e560020a62461bcd0281526004016109f290612ec1565b600a5460ff1661164d5760405160e560020a62461bcd02815260206004820152601960248201527f5075626c69632073616c65206973206e6f74206163746976650000000000000060448201526064016109f2565b6008548160075461165e9190613109565b111561167f5760405160e560020a62461bcd0281526004016109f29061307b565b6000811180156116905750600b8111155b6116af5760405160e560020a62461bcd0281526004016109f290612ef8565b6009546116bc9082613135565b34101561170e5760405160e560020a62461bcd02815260206004820152601460248201527f496e73756666696369656e74207061796d656e7400000000000000000000000060448201526064016109f2565b600e5460ff16156117a157600f548160075461172a9190613109565b11156117a15760405160e560020a62461bcd02815260206004820152602560248201527f43616e206e6f74206d696e74206d6f7265207468616e206c696d69746564207360448201527f7570706c7900000000000000000000000000000000000000000000000000000060648201526084016109f2565b60005b818110156117df57600780549060006117bc836131ec565b91905055506117cd336007546125a2565b806117d7816131ec565b9150506117a4565b50601054600090600160a060020a03166103e86117fe346103c5613135565b6118089190613121565b604051600081818185875af1925050503d8060008114611844576040519150601f19603f3d011682016040523d82523d6000602084013e611849565b606091505b5050809150508061189f5760405160e560020a62461bcd02815260206004820152600f60248201527f4661696c656420746f2073656e6431000000000000000000000000000000000060448201526064016109f2565b601154600090600160a060020a03166103e86118bc346023613135565b6118c69190613121565b604051600081818185875af1925050503d8060008114611902576040519150601f19603f3d011682016040523d82523d6000602084013e611907565b606091505b50508091505080610b4a5760405160e560020a62461bcd02815260206004820152600f60248201527f4661696c656420746f2073656e6432000000000000000000000000000000000060448201526064016109f2565b600160a060020a0382163314156119b95760405160e560020a62461bcd02815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109f2565b336000818152600560209081526040808320600160a060020a03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000600c54600b54611a379190613154565b905090565b600654600160a060020a03163314611a695760405160e560020a62461bcd0281526004016109f290612fb2565b60ff82166000908152600d6020526040902054611a9b5760405160e560020a62461bcd0281526004016109f290612fe7565b60ff82166000908152600d602052604081206001810154835191929091905b81811015611b1a5782846002016000878481518110611adb57611adb61324d565b6020026020010151600160a060020a0316600160a060020a03168152602001908152602001600020819055508080611b12906131ec565b915050611aba565b505050505050565b611b2c3383612258565b611b4b5760405160e560020a62461bcd0281526004016109f29061301e565b611b57848484846126f7565b50505050565b601280546110fd906131ae565b600081815260026020526040902054606090600160a060020a0316611bfa5760405160e560020a62461bcd02815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016109f2565b6000611c0461272d565b90506000815111611c245760405180602001604052806000815250611c4f565b80611c2e8461273c565b604051602001611c3f929190612e1e565b6040516020818303038152906040525b9392505050565b600654600160a060020a03163314611c835760405160e560020a62461bcd0281526004016109f290612fb2565b600160a060020a038116611d025760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109f2565b611d0b81612543565b50565b600654600160a060020a03163314611d3b5760405160e560020a62461bcd0281526004016109f290612fb2565b600c54811015611d905760405160e560020a62461bcd02815260206004820152601a60248201527f416c726561647920686173206d6f7265207468616e207468617400000000000060448201526064016109f2565b600854600c5482600754611da49190613109565b611dae9190613154565b1115611dff5760405160e560020a62461bcd02815260206004820152601460248201527f4d6f7265207468616e206d617820737570706c7900000000000000000000000060448201526064016109f2565b600b55565b333214611e265760405160e560020a62461bcd0281526004016109f290612ec1565b600081118015611e375750600b8111155b611e565760405160e560020a62461bcd0281526004016109f290612ef8565b60085481611e62611a25565b600754611e6f9190613109565b611e799190613109565b1115611e9a5760405160e560020a62461bcd0281526004016109f29061307b565b600954611ea79082613135565b341015611ef95760405160e560020a62461bcd02815260206004820152601460248201527f496e73756666696369656e74207061796d656e7400000000000000000000000060448201526064016109f2565b6000611f03610f83565b60ff8082166000908152600d60205260409020600a549294509250610100909104168015611f355750600381015460ff165b611f845760405160e560020a62461bcd02815260206004820152601060248201527f526f756e64206e6f74206163746976650000000000000000000000000000000060448201526064016109f2565b336000908152600282016020526040902054831115611fe85760405160e560020a62461bcd02815260206004820152601c60248201527f596f7520646f206e6f74206861766520736c6f7420746f206d696e740000000060448201526064016109f2565b60005b838110156120585760078054906000612003836131ec565b9190505550612014336007546125a2565b60ff83166000908152600d60209081526040808320338452600201909152812080549161204083613197565b91905055508080612050906131ec565b915050611feb565b50601054600090600160a060020a03166103e8612077346103c5613135565b6120819190613121565b604051600081818185875af1925050503d80600081146120bd576040519150601f19603f3d011682016040523d82523d6000602084013e6120c2565b606091505b505080915050806121185760405160e560020a62461bcd02815260206004820152600f60248201527f4661696c656420746f2073656e6431000000000000000000000000000000000060448201526064016109f2565b601154600090600160a060020a03166103e8612135346023613135565b61213f9190613121565b604051600081818185875af1925050503d806000811461217b576040519150601f19603f3d011682016040523d82523d6000602084013e612180565b606091505b505080915050806121d65760405160e560020a62461bcd02815260206004820152600f60248201527f4661696c656420746f2073656e6432000000000000000000000000000000000060448201526064016109f2565b5050505050565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038416908117909155819061221f82611062565b600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081815260026020526040812054600160a060020a03166122e55760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016109f2565b60006122f083611062565b905080600160a060020a031684600160a060020a0316148061232b575083600160a060020a031661232084610969565b600160a060020a0316145b8061235b5750600160a060020a0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b82600160a060020a031661237682611062565b600160a060020a0316146123f55760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016109f2565b600160a060020a0382166124735760405160e560020a62461bcd028152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109f2565b61247e6000826121dd565b600160a060020a03831660009081526003602052604081208054600192906124a7908490613154565b9091555050600160a060020a03821660009081526003602052604081208054600192906124d5908490613109565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60068054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600160a060020a0382166125fb5760405160e560020a62461bcd02815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109f2565b600081815260026020526040902054600160a060020a0316156126635760405160e560020a62461bcd02815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109f2565b600160a060020a038216600090815260036020526040812080546001929061268c908490613109565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b612702848484612363565b61270e8484848461288d565b611b575760405160e560020a62461bcd0281526004016109f290612f55565b6060601380546108e6906131ae565b60608161277c57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156127a65780612790816131ec565b915061279f9050600a83613121565b9150612780565b60008167ffffffffffffffff8111156127c1576127c1613266565b6040519080825280601f01601f1916602001820160405280156127eb576020820181803683370190505b5090505b841561235b57612800600183613154565b915061280d600a86613207565b612818906030613109565b7f01000000000000000000000000000000000000000000000000000000000000000281838151811061284c5761284c61324d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612886600a86613121565b94506127ef565b6000600160a060020a0384163b156129c4576040517f150b7a02000000000000000000000000000000000000000000000000000000008152600160a060020a0385169063150b7a02906128ea903390899088908890600401612e4d565b602060405180830381600087803b15801561290457600080fd5b505af1925050508015612934575060408051601f3d908101601f1916820190925261293191810190612c76565b60015b612991573d808015612962576040519150601f19603f3d011682016040523d82523d6000602084013e612967565b606091505b5080516129895760405160e560020a62461bcd0281526004016109f290612f55565b805181602001fd5b600160e060020a0319167f150b7a020000000000000000000000000000000000000000000000000000000014905061235b565b506001949350505050565b8280546129db906131ae565b90600052602060002090601f0160209004810192826129fd5760008555612a43565b82601f10612a1657805160ff1916838001178555612a43565b82800160010185558215612a43579182015b82811115612a43578251825591602001919060010190612a28565b50612a4f929150612a53565b5090565b5b80821115612a4f5760008155600101612a54565b600067ffffffffffffffff831115612a8257612a82613266565b612a95601f8401601f19166020016130d8565b9050828152838383011115612aa957600080fd5b828260208301376000602084830101529392505050565b8035600160a060020a0381168114612ad757600080fd5b919050565b803560ff81168114612ad757600080fd5b600060208284031215612aff57600080fd5b611c4f82612ac0565b60008060408385031215612b1b57600080fd5b612b2483612ac0565b9150612b3260208401612ac0565b90509250929050565b600080600060608486031215612b5057600080fd5b612b5984612ac0565b9250612b6760208501612ac0565b9150604084013590509250925092565b60008060008060808587031215612b8d57600080fd5b612b9685612ac0565b9350612ba460208601612ac0565b925060408501359150606085013567ffffffffffffffff811115612bc757600080fd5b8501601f81018713612bd857600080fd5b612be787823560208401612a68565b91505092959194509250565b60008060408385031215612c0657600080fd5b612c0f83612ac0565b915060208301358015158114612c2457600080fd5b809150509250929050565b60008060408385031215612c4257600080fd5b612c4b83612ac0565b946020939093013593505050565b600060208284031215612c6b57600080fd5b8135611c4f8161327f565b600060208284031215612c8857600080fd5b8151611c4f8161327f565b600060208284031215612ca557600080fd5b813567ffffffffffffffff811115612cbc57600080fd5b8201601f81018413612ccd57600080fd5b61235b84823560208401612a68565b600060208284031215612cee57600080fd5b5035919050565b600060208284031215612d0757600080fd5b611c4f82612adc565b60008060408385031215612d2357600080fd5b612d2c83612adc565b915060208084013567ffffffffffffffff80821115612d4a57600080fd5b818601915086601f830112612d5e57600080fd5b813581811115612d7057612d70613266565b8381029150612d808483016130d8565b8181528481019084860184860187018b1015612d9b57600080fd5b600095505b83861015612dc557612db181612ac0565b835260019590950194918601918601612da0565b508096505050505050509250929050565b60008060408385031215612de957600080fd5b612c4b83612adc565b60008151808452612e0a81602086016020860161316b565b601f01601f19169290920160200192915050565b60008351612e3081846020880161316b565b835190830190612e4481836020880161316b565b01949350505050565b6000600160a060020a03808716835280861660208401525083604083015260806060830152612e7f6080830184612df2565b9695505050505050565b602081526000611c4f6020830184612df2565b604081526000612eaf6040830185612df2565b905060ff831660208301529392505050565b60208082526008908201527f5265766572746564000000000000000000000000000000000000000000000000604082015260600190565b60208082526025908201527f596f752063616e206d696e74206265747765656e203120616e6420313120617460408201527f206f6e6365000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600f908201527f526f756e64206e6f7420666f756e640000000000000000000000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b60208082526021908201527f43616e206e6f74206d696e74206d6f7265207468616e206d617820737570706c60408201527f7900000000000000000000000000000000000000000000000000000000000000606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561310157613101613266565b604052919050565b6000821982111561311c5761311c61321b565b500190565b60008261313057613130613234565b500490565b600081600019048311821515161561314f5761314f61321b565b500290565b6000828210156131665761316661321b565b500390565b60005b8381101561318657818101518382015260200161316e565b83811115611b575750506000910152565b6000816131a6576131a661321b565b506000190190565b6002810460018216806131c257607f821691505b602082108114156131e65760e060020a634e487b7102600052602260045260246000fd5b50919050565b60006000198214156132005761320061321b565b5060010190565b60008261321657613216613234565b500690565b60e060020a634e487b7102600052601160045260246000fd5b60e060020a634e487b7102600052601260045260246000fd5b60e060020a634e487b7102600052603260045260246000fd5b60e060020a634e487b7102600052604160045260246000fd5b600160e060020a031981168114611d0b57600080fdfea264697066735822122077160955d552f27d1e0b5ee0373a4c327e8bc001e167957b1699c8b923ac146d64736f6c63430008060033
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.